You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Ben Collins-Sussman <su...@collab.net> on 2002/09/10 20:33:53 UTC

Re: svn commit: rev 3157 - clients/rapidsvn/trunk/src/tests/svncpp clients/rapidsvn/trunk/src/svncpp

bmatzelle@tigris.org writes:

> Author: bmatzelle
> Date: 2002-09-10 14:50:04 -0500 (Tue, 10 Sep 2002)
> New Revision: 3157

I'm trying to compile rapidsvn with gcc 2.95.4, using wxWindows 2.3.2
on FreeBSD 4.6 ... I've had no problems in the past.

After running ./configure, I cd into src/ and run 'make'.  After a lot
of compiling, I now get this error:

g++ -c -g -I/usr/local/include/subversion-1 -g -O2  -g -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations  -D_REENTRANT -D_THREAD_SAFE                      -I/usr/local/include  -I/usr/X11R6/include -I/usr/X11R6/include -DGTK_NO_CHECK_CASTS -D__WXGTK__ -D_REENTRANT -fno-rtti -fno-exceptions -o delete_action.o delete_action.cpp
delete_action.cpp: In method `void * DeleteAction::Entry()':
delete_action.cpp:77: exception handling disabled, use -fexceptions to enable
delete_action.cpp:83: `e' undeclared (first use this function)
delete_action.cpp:83: (Each undeclared identifier is reported only once
delete_action.cpp:83: for each function it appears in.)
*** Error code 1

Any clues?

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: svn commit: rev 3157 - clients/rapidsvn/trunk/src/tests/svncpp clients/rapidsvn/trunk/src/svncpp

Posted by Alexander Mueller <al...@littleblue.de>.
Ben Collins-Sussman wrote:

>bmatzelle@tigris.org writes:
>
>  
>
>>Author: bmatzelle
>>Date: 2002-09-10 14:50:04 -0500 (Tue, 10 Sep 2002)
>>New Revision: 3157
>>    
>>
>
>I'm trying to compile rapidsvn with gcc 2.95.4, using wxWindows 2.3.2
>on FreeBSD 4.6 ... I've had no problems in the past.
>
>After running ./configure, I cd into src/ and run 'make'.  After a lot
>of compiling, I now get this error:
>
>g++ -c -g -I/usr/local/include/subversion-1 -g -O2  -g -O2 -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations  -D_REENTRANT -D_THREAD_SAFE                      -I/usr/local/include  -I/usr/X11R6/include -I/usr/X11R6/include -DGTK_NO_CHECK_CASTS -D__WXGTK__ -D_REENTRANT -fno-rtti -fno-exceptions -o delete_action.o delete_action.cpp
>delete_action.cpp: In method `void * DeleteAction::Entry()':
>delete_action.cpp:77: exception handling disabled, use -fexceptions to enable
>delete_action.cpp:83: `e' undeclared (first use this function)
>delete_action.cpp:83: (Each undeclared identifier is reported only once
>delete_action.cpp:83: for each function it appears in.)
>*** Error code 1
>
>Any clues?
>
>---------------------------------------------------------------------
>To unsubscribe, e-mail: svn-unsubscribe@subversion.tigris.org
>For additional commands, e-mail: svn-help@subversion.tigris.org
>
>
>  
>
The CXXFLAGS are generated through a call to "wx-config". Maybe one 
would "sed" this:
CXXFLAGS=`echo $CXXFLAGS | sed -e "s/-fno-exceptions//g"'
CXXFLAGS="$CXXFLAGS -fexceptions"


Dont beat me for bad scripting style... but this should work.
Alex


Re: svn commit: rev 3157 - clients/rapidsvn/trunk/src/tests/svncpp clients/rapidsvn/trunk/src/svncpp

Posted by Alexander Mueller <al...@littleblue.de>.
Brent R. Matzelle wrote:

>--- Ben Collins-Sussman <su...@collab.net> wrote:
>  
>
>>bmatzelle@tigris.org writes:
>>
>>    
>>
>>>Author: bmatzelle
>>>Date: 2002-09-10 14:50:04 -0500 (Tue, 10 Sep 2002)
>>>New Revision: 3157
>>>      
>>>
>>I'm trying to compile rapidsvn with gcc 2.95.4, using wxWindows
>>2.3.2
>>on FreeBSD 4.6 ... I've had no problems in the past.
>>
>>After running ./configure, I cd into src/ and run 'make'.  After a
>>lot
>>of compiling, I now get this error:
>>
>>g++ -c -g -I/usr/local/include/subversion-1 -g -O2  -g -O2 -Wall
>>-Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations 
>>-D_REENTRANT -D_THREAD_SAFE                     
>>-I/usr/local/include  -I/usr/X11R6/include -I/usr/X11R6/include
>>-DGTK_NO_CHECK_CASTS -D__WXGTK__ -D_REENTRANT -fno-rtti
>>-fno-exceptions -o delete_action.o delete_action.cpp
>>delete_action.cpp: In method `void * DeleteAction::Entry()':
>>delete_action.cpp:77: exception handling disabled, use -fexceptions
>>to enable
>>delete_action.cpp:83: `e' undeclared (first use this function)
>>delete_action.cpp:83: (Each undeclared identifier is reported only
>>once
>>delete_action.cpp:83: for each function it appears in.)
>>*** Error code 1
>>
>>Any clues?
>>
>>    
>>
>
>Yes, I have been developing on Windows so I can't with good
>conscience add any changes to the Makefile.  Alex (xela) would
>normally do it but he's been on vacation.  David Mears was planning
>on making the changes in the repository but I am waiting to get a
>username and password from him so he can get an account set up.
>
>You can add the following additions to your Makefile in the mean
>time:
>
>svncpp/exception.o
>svncpp/notify.o
>svn_notify.o
>
>svncpp/error.o does not exist anymore so remove it.
>
>The -fexceptions switch needs to be added to it as well.
>
>Brent.
>
>  
>
Well, I am back from vacation... still have to catch up with my daytime work, but
hope to be on the train again very soon.

Alex



Re: svn commit: rev 3157 - clients/rapidsvn/trunk/src/tests/svncpp clients/rapidsvn/trunk/src/svncpp

Posted by "Brent R. Matzelle" <bm...@yahoo.com>.
--- Ben Collins-Sussman <su...@collab.net> wrote:
> bmatzelle@tigris.org writes:
> 
> > Author: bmatzelle
> > Date: 2002-09-10 14:50:04 -0500 (Tue, 10 Sep 2002)
> > New Revision: 3157
> 
> I'm trying to compile rapidsvn with gcc 2.95.4, using wxWindows
> 2.3.2
> on FreeBSD 4.6 ... I've had no problems in the past.
> 
> After running ./configure, I cd into src/ and run 'make'.  After a
> lot
> of compiling, I now get this error:
> 
> g++ -c -g -I/usr/local/include/subversion-1 -g -O2  -g -O2 -Wall
> -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations 
> -D_REENTRANT -D_THREAD_SAFE                     
> -I/usr/local/include  -I/usr/X11R6/include -I/usr/X11R6/include
> -DGTK_NO_CHECK_CASTS -D__WXGTK__ -D_REENTRANT -fno-rtti
> -fno-exceptions -o delete_action.o delete_action.cpp
> delete_action.cpp: In method `void * DeleteAction::Entry()':
> delete_action.cpp:77: exception handling disabled, use -fexceptions
> to enable
> delete_action.cpp:83: `e' undeclared (first use this function)
> delete_action.cpp:83: (Each undeclared identifier is reported only
> once
> delete_action.cpp:83: for each function it appears in.)
> *** Error code 1
> 
> Any clues?
> 

Yes, I have been developing on Windows so I can't with good
conscience add any changes to the Makefile.  Alex (xela) would
normally do it but he's been on vacation.  David Mears was planning
on making the changes in the repository but I am waiting to get a
username and password from him so he can get an account set up.

You can add the following additions to your Makefile in the mean
time:

svncpp/exception.o
svncpp/notify.o
svn_notify.o

svncpp/error.o does not exist anymore so remove it.

The -fexceptions switch needs to be added to it as well.

Brent.


__________________________________________________
Yahoo! - We Remember
9-11: A tribute to the more than 3,000 lives lost
http://dir.remember.yahoo.com/tribute

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org