Thread: [Cppunit-devel] possible problem with build 1.9.4
Brought to you by:
blep
From: Jeffrey M. <ku...@zo...> - 2002-04-20 00:36:48
|
I just downloaded version 1.9.4 but when I tried to compile on rh 7.2 I got an error due to the fact that the file config/depcomp didn't exist. I checked and this file was in the 1.8.0 build. If I copy this file from the 1.8.0 build into the config directory of the 1.9.4 build it compiles without problem. -Jeff |
From: Baptiste L. <gai...@fr...> - 2002-04-20 10:22:05
|
I think I finally got what this problem is related to. I used 'make dist' to make this distribution (since the build on Unix is broken (see NEWS) I got use 'make distcheck'). It seems that build rule does not works. The best I could do if somebody want to tackle the Unix build problem and does not have CVS access it a tar ball of the exported CVS. Baptiste. ----- Original Message ----- From: "Jeffrey Morgan" <ku...@zo...> To: <cpp...@li...> Sent: Saturday, April 20, 2002 2:36 AM Subject: [Cppunit-devel] possible problem with build 1.9.4 > I just downloaded version 1.9.4 but when I tried to compile > on rh 7.2 I got an error due to the fact that the file > config/depcomp didn't exist. I checked and this file was in > the 1.8.0 build. If I copy this file from the 1.8.0 build > into the config directory of the 1.9.4 build it compiles > without problem. > > -Jeff > > > _______________________________________________ > Cppunit-devel mailing list > Cpp...@li... > https://lists.sourceforge.net/lists/listinfo/cppunit-devel > |
From: Jeffrey M. <ku...@zo...> - 2002-04-20 16:54:14
Attachments:
cppunit.patch
|
Attached is a simple patch that fixes the build problem on Linux. It doesn't contain the check for --disable-test-plug-in and conditional compilation of the plugin example. If I have the time over the next couple of days I will try to add this as well. This patch also adds a newline to the end of a couple of files to keep an annoying warning from displaying when compiling with the gnu compiler. -Jeff On Sat, 2002-04-20 at 05:38, Baptiste Lepilleur wrote: > I think I finally got what this problem is related to. I used 'make dist' to > make this distribution (since the build on Unix is broken (see NEWS) I got > use 'make distcheck'). It seems that build rule does not works. > > The best I could do if somebody want to tackle the Unix build problem and > does not have CVS access it a tar ball of the exported CVS. > > Baptiste. > > ----- Original Message ----- > From: "Jeffrey Morgan" <ku...@zo...> > To: <cpp...@li...> > Sent: Saturday, April 20, 2002 2:36 AM > Subject: [Cppunit-devel] possible problem with build 1.9.4 > > > > I just downloaded version 1.9.4 but when I tried to compile > > on rh 7.2 I got an error due to the fact that the file > > config/depcomp didn't exist. I checked and this file was in > > the 1.8.0 build. If I copy this file from the 1.8.0 build > > into the config directory of the 1.9.4 build it compiles > > without problem. > > > > -Jeff > > > > > > _______________________________________________ > > Cppunit-devel mailing list > > Cpp...@li... > > https://lists.sourceforge.net/lists/listinfo/cppunit-devel > > > > |
From: Baptiste L. <gai...@fr...> - 2002-04-20 22:33:18
|
----- Original Message ----- From: "Jeffrey Morgan" <ku...@zo...> To: <cpp...@li...> Sent: Saturday, April 20, 2002 6:54 PM Subject: Re: [Cppunit-devel] possible problem with build 1.9.4 > Attached is a simple patch that fixes the build problem on Linux. I just tried it and it works great. Thanks again! > It doesn't contain the check for --disable-test-plug-in and That would be useful. I just got a patch for BeOS and that option would help. I'll try to make another snapshot by tomorrow. Baptiste. > conditional compilation of the plugin example. If I have the > time over the next couple of days I will try to add this as well. > This patch also adds a newline to the end of a couple of files to > keep an annoying warning from displaying when compiling with the > gnu compiler. > > -Jeff |
From: Jeffrey M. <ku...@zo...> - 2002-04-21 01:09:47
Attachments:
2.patch
|
Attached is another patch that will allow 'make check' to compile correctly. Please apply it after the previous patch I sent. -Jeff > > > Attached is a simple patch that fixes the build problem on Linux. > > I just tried it and it works great. Thanks again! > > |
From: Baptiste L. <gai...@fr...> - 2002-04-21 12:30:26
|
I had already fixed the make check problem (once you get the gist of it, it was not that difficult). I integrated the 'new lines' patches. Thanks Jeffrey, Baptiste. ----- Original Message ----- From: "Jeffrey Morgan" <ku...@zo...> To: <cpp...@li...> Sent: Sunday, April 21, 2002 3:09 AM Subject: Re: [Cppunit-devel] possible problem with build 1.9.4 > Attached is another patch that will allow 'make check' to compile > correctly. Please apply it after the previous patch I sent. > > -Jeff > > > > > > Attached is a simple patch that fixes the build problem on Linux. > > > > I just tried it and it works great. Thanks again! > > > > > > > |
From: Baptiste L. <gai...@fr...> - 2002-04-20 20:56:51
|
Thanks !!! I'll integrate this and keep you posted. < #endif \ No newline at end of file --- > #endif > => means that a new line should be added to the file, right ? Well, you're patch should fix the problem for most, dl.so is present on most (all?) Unix, isn't it ? Baptiste. ----- Original Message ----- From: "Jeffrey Morgan" <ku...@zo...> To: <cpp...@li...> Sent: Saturday, April 20, 2002 6:54 PM Subject: Re: [Cppunit-devel] possible problem with build 1.9.4 > Attached is a simple patch that fixes the build problem on Linux. > It doesn't contain the check for --disable-test-plug-in and > conditional compilation of the plugin example. If I have the > time over the next couple of days I will try to add this as well. > This patch also adds a newline to the end of a couple of files to > keep an annoying warning from displaying when compiling with the > gnu compiler. > > -Jeff > > On Sat, 2002-04-20 at 05:38, Baptiste Lepilleur wrote: > > I think I finally got what this problem is related to. I used 'make dist' to > > make this distribution (since the build on Unix is broken (see NEWS) I got > > use 'make distcheck'). It seems that build rule does not works. > > > > The best I could do if somebody want to tackle the Unix build problem and > > does not have CVS access it a tar ball of the exported CVS. > > > > Baptiste. > > > > ----- Original Message ----- > > From: "Jeffrey Morgan" <ku...@zo...> > > To: <cpp...@li...> > > Sent: Saturday, April 20, 2002 2:36 AM > > Subject: [Cppunit-devel] possible problem with build 1.9.4 > > > > > > > I just downloaded version 1.9.4 but when I tried to compile > > > on rh 7.2 I got an error due to the fact that the file > > > config/depcomp didn't exist. I checked and this file was in > > > the 1.8.0 build. If I copy this file from the 1.8.0 build > > > into the config directory of the 1.9.4 build it compiles > > > without problem. > > > > > > -Jeff > > > > > > > > > _______________________________________________ > > > Cppunit-devel mailing list > > > Cpp...@li... > > > https://lists.sourceforge.net/lists/listinfo/cppunit-devel > > > > > > > > > |
From: Jeffrey M. <ku...@zo...> - 2002-04-21 00:50:25
|
On Sat, 2002-04-20 at 17:04, Baptiste Lepilleur wrote: > Thanks !!! > > I'll integrate this and keep you posted. > > < #endif > \ No newline at end of file > --- > > #endif > > > > => means that a new line should be added to the file, right ? > > Well, you're patch should fix the problem for most, dl.so is present on most > (all?) Unix, isn't it ? > > Baptiste. > > ----- Original Message ----- > From: "Jeffrey Morgan" <ku...@zo...> > To: <cpp...@li...> > Sent: Saturday, April 20, 2002 6:54 PM > Subject: Re: [Cppunit-devel] possible problem with build 1.9.4 > > > > Attached is a simple patch that fixes the build problem on Linux. > > It doesn't contain the check for --disable-test-plug-in and > > conditional compilation of the plugin example. If I have the > > time over the next couple of days I will try to add this as well. > > This patch also adds a newline to the end of a couple of files to > > keep an annoying warning from displaying when compiling with the > > gnu compiler. > > > > -Jeff > > > > On Sat, 2002-04-20 at 05:38, Baptiste Lepilleur wrote: > > > I think I finally got what this problem is related to. I used 'make > dist' to > > > make this distribution (since the build on Unix is broken (see NEWS) I > got > > > use 'make distcheck'). It seems that build rule does not works. > > > > > > The best I could do if somebody want to tackle the Unix build problem > and > > > does not have CVS access it a tar ball of the exported CVS. > > > > > > Baptiste. > > > > > > ----- Original Message ----- > > > From: "Jeffrey Morgan" <ku...@zo...> > > > To: <cpp...@li...> > > > Sent: Saturday, April 20, 2002 2:36 AM > > > Subject: [Cppunit-devel] possible problem with build 1.9.4 > > > > > > > > > > I just downloaded version 1.9.4 but when I tried to compile > > > > on rh 7.2 I got an error due to the fact that the file > > > > config/depcomp didn't exist. I checked and this file was in > > > > the 1.8.0 build. If I copy this file from the 1.8.0 build > > > > into the config directory of the 1.9.4 build it compiles > > > > without problem. > > > > > > > > -Jeff > > > > > > > > > > > > _______________________________________________ > > > > Cppunit-devel mailing list > > > > Cpp...@li... > > > > https://lists.sourceforge.net/lists/listinfo/cppunit-devel > > > > > > > > > > > > > > > > |
From: Jeffrey M. <ku...@zo...> - 2002-04-21 00:53:52
|
> > < #endif > \ No newline at end of file > --- > > #endif > > > > => means that a new line should be added to the file, right ? Yes. The gnu compiler complains with a warning if the newline is not there. > > Well, you're patch should fix the problem for most, dl.so is present on most > (all?) Unix, isn't it ? I believe it should be available on almost all open systems. A more precise approach would be to check for it and setup accordingly. |