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

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
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

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 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 `./AUTHORS'

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 put

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.sh

What to check into repository?

2007-12-03 Thread Hongliang Wang
Hello all, My company decides to make part of our software source code open-sourced. For this part, we will use automake autoconf tools to generate the installation package (.tar.gz). However, the current problem is that we cannot decide what to check into our own software repository. The .c

Re: What to check into repository?

2007-12-03 Thread Jason Curl
Hongliang Wang wrote: Hello all, My company decides to make part of our software source code open-sourced. For this part, we will use automake autoconf tools to generate the installation package (.tar.gz). However, the current problem is that we cannot decide what to check into our own

Re: What to check into repository?

2007-12-03 Thread Bob Proulx
Hongliang Wang wrote: My company decides to make part of our software source code open-sourced. For this part, we will use automake autoconf tools to generate the installation package (.tar.gz). That sounds wonderful! However, the current problem is that we cannot decide what to check