Re: What to check into repository?

2007-12-04 Thread Ralf Wildenhues
Hello Hongliang Wang, * Hongliang Wang wrote on Tue, Dec 04, 2007 at 09:35:31AM CET: > > Here is the my autogen.sh [...] > case $CC in > *xlc | *xlc\ * | *lcc | *lcc\ *) am_opt=--include-deps;; > esac This piece of your autogen.sh should not be necessary. At `automake' run time (i.e., autogen.s

Re: What to check into repository?

2007-12-04 Thread Bernd Jendrissek
On Dec 4, 2007 3:35 PM, Hongliang Wang <[EMAIL PROTECTED]> wrote: > Thank you for this piece of advice and I am dropping autogen.sh from > repository now, > but compiling still fails. > > [EMAIL PROTECTED]> autoreconf > Makefile.am: required file `./NEWS' not found > Makefile.am: required file `./

Re: What to check into repository?

2007-12-04 Thread Brian Dessent
Warren Young wrote: > You can create empty versions of these files to appease the tool. (Per > the thread topic, they would go in the repository.) Or, maybe you have > a use for some of these files, so they could have actual content. He has them in a doc/ subdir, so it would be rather ugly to p

Re: What to check into repository?

2007-12-04 Thread Warren Young
Hongliang Wang wrote: > > [EMAIL PROTECTED]> autoreconf > Makefile.am: required file `./NEWS' not found You can create empty versions of these files to appease the tool. (Per the thread topic, they would go in the repository.) Or, maybe you have a use for some of these files, so they could have

RE: What to check into repository?

2007-12-04 Thread Hongliang Wang
Thank you for this piece of advice and I am dropping autogen.sh from repository now, but compiling still fails. [EMAIL PROTECTED]> autoreconf Makefile.am: required file `./NEWS' not found Makefile.am: required file `./AUTHORS' not found Makefile.am: required file `./ChangeLog' not found Makefile

Re: What to check into repository?

2007-12-04 Thread Bernd Jendrissek
On Dec 4, 2007 10:35 AM, Hongliang Wang <[EMAIL PROTECTED]> wrote: > Here is the my autogen.sh > == > #!/bin/sh > # Run this to generate all the initial makefiles, etc. [snip] > for dir in . > do > echo processing $dir > (cd $dir; \ >

RE: What to check into repository?

2007-12-04 Thread Hongliang Wang
Thanks for your advice. I checked in Makefile.in Makefile.am and configure.ac. And also an execute file called autogen.sh, because this file can be used to generate other things automatically. However, when I check out and execute the autogen.sh and make, compiling fails with the following er