Re: AC_INIT translates PACKAGE to lower case

2002-01-31 Thread Ralf Corsepius
Am Don, 2002-01-31 um 22.31 schrieb Alexandre Duret-Lutz: > >>> "Ralf" == Ralf Corsepius <[EMAIL PROTECTED]> writes: > > Ralf> Am Don, 2002-01-31 um 17.27 schrieb Russ Allbery: > > [...] > > >> Why are you lowercasing the package name? > > For the same reason a leading `GNU ' is stripped: b

Re: syntax error near unexpected token 'AM_INIT_AUTOMAKE....

2002-01-31 Thread Tom Tromey
> ">" == platter <[EMAIL PROTECTED]> writes: >> Does anyone know what the likely causes of this error are? This occurs >> when I run configure after running autoconf on the project. Probably you forgot to run `aclocal'. >> Any help would be greatly appreciated, as I am having a tough time

syntax error near unexpected token 'AM_INIT_AUTOMAKE....

2002-01-31 Thread platter
Hello all, Does anyone know what the likely causes of this error are? This occurs when I run configure after running autoconf on the project. I cannot locate any general answer to this question anywhere. I have Autoconf 2.13, Automake 1.4-p5, and libtool 1.3.5. My input files follow. Any he

Re: AC_INIT translates PACKAGE to lower case

2002-01-31 Thread Alexandre Duret-Lutz
>>> "Ralf" == Ralf Corsepius <[EMAIL PROTECTED]> writes: Ralf> Am Don, 2002-01-31 um 17.27 schrieb Russ Allbery: [...] >> Why are you lowercasing the package name? For the same reason a leading `GNU ' is stripped: because for most packages this is the way to transform a package name into a

Re: AC_INIT translates PACKAGE to lower case

2002-01-31 Thread Dan Kegel
Ralf Corsepius wrote: > On the opposite side, all automake+autoconf based packages applying > mixed case package names have the potential to be be affected. Those > which additionally apply gettext would almost for sure be affected. > > A rough estimate from grep-ing the package names of the >200

How to trigger actions after recursing in directories...

2002-01-31 Thread Daniel Shane
Hi, I have a recursive automake installation and I would like to have make go into each subdirectory and execute some code before and after the recursion. Is this possible with automake? Looking in the main Makefile, I see : all: $(BUILT_SOURCES) make ... all-recursive Is there another

Re: AC_INIT translates PACKAGE to lower case

2002-01-31 Thread Ralf Corsepius
Am Don, 2002-01-31 um 17.27 schrieb Russ Allbery: > Akim Demaille <[EMAIL PROTECTED]> writes: > > > Automake names PACKAGE what Autoconf name PACKAGE_TARNAME. In addition, > > Autoconf support PACKAGE_NAME. Because in many cases PACKAGE_TARNAME > > can be computed from the PACKAGE_NAME, such a

Re: AC_INIT translates PACKAGE to lower case

2002-01-31 Thread Akim Demaille
> "Ralf" == Ralf Corsepius <[EMAIL PROTECTED]> writes: Ralf> To give an example: What I want to see, is this: Ralf> AC_INIT([libXrc],[0.1]) AM_INIT_AUTOMAKE Yes, I have understood, for *your* application, you prefer something else. Since I will not change the semantics of the first paramet

Re: AC_INIT translates PACKAGE to lower case

2002-01-31 Thread Ralf Corsepius
Am Don, 2002-01-31 um 17.25 schrieb Alexandre Duret-Lutz: > >>> "Ralf" == Ralf Corsepius <[EMAIL PROTECTED]> writes: > > [...] > > Ralf> Example: > > Ralf> Given an autoconf-2.52 and automake-1.5 compatible configure.in: > Ralf> .. > Ralf> AC_INIT > Ralf> .. > Ralf> AM_INIT_AUTOMAKE(libXr

Re: AC_INIT translates PACKAGE to lower case

2002-01-31 Thread Tim Van Holder
On Thu, 2002-01-31 at 16:50, Tim Van Holder wrote: > You didn't translate correctly. > The CVS version of the above is: > > AC_INIT([libXrc], [0.1], [libXrc]) > AM_INIT_AUTOMAKE > > By omitting the thrid arg to AC_INIT, you basically said 'I want the > tarball to have a canonicalized name', resu

Re: AC_INIT translates PACKAGE to lower case

2002-01-31 Thread Ralf Corsepius
Am Don, 2002-01-31 um 16.50 schrieb Tim Van Holder: > On Thu, 2002-01-31 at 16:21, Ralf Corsepius wrote: > > Given an autoconf-2.52 and automake-1.5 compatible configure.in: > > .. > > AC_INIT > > .. > > AM_INIT_AUTOMAKE(libXrc, 0.1) > > .. > > > > make dist produces libXrc-0.1.tar.gz, PACKAGE is

Re: AC_INIT translates PACKAGE to lower case

2002-01-31 Thread Russ Allbery
Akim Demaille <[EMAIL PROTECTED]> writes: > Automake names PACKAGE what Autoconf name PACKAGE_TARNAME. In addition, > Autoconf support PACKAGE_NAME. Because in many cases PACKAGE_TARNAME > can be computed from the PACKAGE_NAME, such a _default_ is provided. If > you don't like it, define your

Re: AC_INIT translates PACKAGE to lower case

2002-01-31 Thread Alexandre Duret-Lutz
>>> "Ralf" == Ralf Corsepius <[EMAIL PROTECTED]> writes: [...] Ralf> Example: Ralf> Given an autoconf-2.52 and automake-1.5 compatible configure.in: Ralf> .. Ralf> AC_INIT Ralf> .. Ralf> AM_INIT_AUTOMAKE(libXrc, 0.1) Ralf> .. To be fair: this syntax is depreciated since Autoconf 2.50. T

Re: AC_INIT translates PACKAGE to lower case

2002-01-31 Thread Tim Van Holder
On Thu, 2002-01-31 at 16:21, Ralf Corsepius wrote: > Given an autoconf-2.52 and automake-1.5 compatible configure.in: > .. > AC_INIT > .. > AM_INIT_AUTOMAKE(libXrc, 0.1) > .. > > make dist produces libXrc-0.1.tar.gz, PACKAGE is set to libXrc. > > With autoconf-cvs and automake-cvs, now using the

Re: AC_INIT translates PACKAGE to lower case

2002-01-31 Thread Ralf Corsepius
Am Don, 2002-01-31 um 15.16 schrieb Akim Demaille: > > | Am Don, 2002-01-31 um 12.09 schrieb Akim Demaille: > | > > "Tom" == Tom Tromey <[EMAIL PROTECTED]> writes: > | > > | > > "Akim" == Akim Demaille <[EMAIL PROTECTED]> writes: > | > Ralf> If using the new AC_INIT and AM_INIT_AUTOMAKE

Re: AC_INIT translates PACKAGE to lower case

2002-01-31 Thread Akim Demaille
| Am Don, 2002-01-31 um 12.09 schrieb Akim Demaille: | > > "Tom" == Tom Tromey <[EMAIL PROTECTED]> writes: | > | > > "Akim" == Akim Demaille <[EMAIL PROTECTED]> writes: | > Ralf> If using the new AC_INIT and AM_INIT_AUTOMAKE syntax, PACKAGE | > Ralf> gets translated to lower case letters

[±¤°í]ÀÌ»ç ¿ª°æ¸Å Àü¹® ½ÎÀÌÆ® ¿ì¸®ÁýÀÌ»ç

2002-01-31 Thread ¿ì¸®ÁýÀÌ»ç
¿øÄ¡¾Ê´Â ¸ÞÀÏÀ» ¹ÞÀ¸¼Ì´Ù¸é Á¤¸»·Î Á˼ÛÇÕ´Ï´Ù.±ÍÇÏÀÇ ¸ÞÀÏÁÖ¼Ò´Â À¥¼­ÇÎÁß, ¹«ÀÛÀ§·Î ÃßÃâÇѰÍÀ̸ç E-Mail ÁÖ¼Ò ¿Ü¿¡, ´Ù¸¥ Á¤º¸´Â °®°í ÀÖÁö ¾Ê½À´Ï´Ù.Á¤ÅëºÎ ±Ç°í»çÇ׿¡ ÀǰŠÁ¦¸ñ¿¡ [±¤°í]¶ó°í Ç¥±âÇÑ ¸ÞÀÏÀÔ´Ï´Ù. ¿øÄ¡ ¾ÊÀ¸¸é ¼ö½Å°ÅºÎ¸¦ ´­·¯ÁÖ¼¼¿ä        

Re: AC_INIT translates PACKAGE to lower case

2002-01-31 Thread Ralf Corsepius
Am Don, 2002-01-31 um 12.09 schrieb Akim Demaille: > > "Tom" == Tom Tromey <[EMAIL PROTECTED]> writes: > > > "Akim" == Akim Demaille <[EMAIL PROTECTED]> writes: > Ralf> If using the new AC_INIT and AM_INIT_AUTOMAKE syntax, PACKAGE > Ralf> gets translated to lower case letters. - Why this

Re: AC_INIT translates PACKAGE to lower case

2002-01-31 Thread Akim Demaille
> "Tom" == Tom Tromey <[EMAIL PROTECTED]> writes: > "Akim" == Akim Demaille <[EMAIL PROTECTED]> writes: Ralf> If using the new AC_INIT and AM_INIT_AUTOMAKE syntax, PACKAGE Ralf> gets translated to lower case letters. - Why this change? Akim> Because that's the case for most packages. To

Re: spam hell

2002-01-31 Thread Alex Hornby
On Thu, 2002-01-31 at 06:41, Bob Proulx wrote: > > It is possible to set up moderation. Actually, moderation is a wrong > > word. The only responsibility of the moderator show be preventing spam. > > I help moderate a few of the GNU lists which are moderated solely to > prevent spam and I can