Your message dated Mon, 10 Jul 2006 19:16:15 +0930
with message-id <[EMAIL PROTECTED]>
and subject line Bug#377566: wx2.6-examples: samples/memcheck Makefile is wrong
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: wx2.6-examples
Version: 2.6.3.2.1.1
Severity: normal
Tags: patch

Program fails to compile because the makefile does not enable debugging
and the program can't compile without it.

--- Makefile    2006-07-10 00:34:15.000000000 -0400
+++ Makefile.orig       2006-07-10 00:33:53.000000000 -0400
@@ -13,7 +13,7 @@
 # under Linux.
 #

-CXX = $(shell wx-config --debug --cxx)
+CXX = $(shell wx-config --cxx)

 PROGRAM = memcheck

@@ -24,12 +24,12 @@
 .SUFFIXES:     .o .cpp

 .cpp.o :
-       $(CXX) -c `wx-config --debug --cxxflags` -o $@ $<
+       $(CXX) -c `wx-config --cxxflags` -o $@ $<

 all:    $(PROGRAM)

 $(PROGRAM):    $(OBJECTS)
-       $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --debug --libs`
+       $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`

 clean:
        rm -f *.o $(PROGRAM)


-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.16-1-686
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

-- no debconf information


--- End Message ---
--- Begin Message ---
wrt: #377567, it should be clear this isn't a bug and the patch
is incorrect (and backwards ;-) -- the memcheck stuff can be
used with any build, but is just as useless with all of them.

I'll make them vanish for the next release.  Sorry for the
confusion.  Feel free to ping me directly on some of this
stuff if it will save bouncing off the bts.  wx is full of
little treats like this, so if you are happy to sift through
and find them, I'll be happy to fix them in cvs as you do.

best,
Ron

On Mon, Jul 10, 2006 at 12:39:46AM -0400, Mark Whitis wrote:
> Package: wx2.6-examples
> Version: 2.6.3.2.1.1
> Severity: normal
> Tags: patch
> 
> Program fails to compile because the makefile does not enable debugging
> and the program can't compile without it.
> 
> --- Makefile    2006-07-10 00:34:15.000000000 -0400
> +++ Makefile.orig       2006-07-10 00:33:53.000000000 -0400
> @@ -13,7 +13,7 @@
>  # under Linux.
>  #
> 
> -CXX = $(shell wx-config --debug --cxx)
> +CXX = $(shell wx-config --cxx)
> 
>  PROGRAM = memcheck
> 
> @@ -24,12 +24,12 @@
>  .SUFFIXES:     .o .cpp
> 
>  .cpp.o :
> -       $(CXX) -c `wx-config --debug --cxxflags` -o $@ $<
> +       $(CXX) -c `wx-config --cxxflags` -o $@ $<
> 
>  all:    $(PROGRAM)
> 
>  $(PROGRAM):    $(OBJECTS)
> -       $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --debug --libs`
> +       $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs`
> 
>  clean:
>         rm -f *.o $(PROGRAM)
> 
> 
> -- System Information:
> Debian Release: 3.1
>   APT prefers unstable
>   APT policy: (500, 'unstable'), (500, 'testing')
> Architecture: i386 (i686)
> Kernel: Linux 2.6.16-1-686
> Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
> 
> -- no debconf information
> 
> 

--- End Message ---

Reply via email to