Re: Conditional inclusion

2007-10-15 Thread Bruno Haible
Ralf Wildenhues wrote: > > if ENABLE_LIBWCRYPT > > SUBDIR_wcrypt = wcrypt > > else > > SUBDIR_wcrypt = > > endif > > SUBDIRS = gl $(SUBDIR_wcrypt) src doc po ... > > What's the problem with "make dist" here? It will recurse into wcrypt: > it uses $(D

Re: Conditional inclusion

2007-10-15 Thread Simon Josefsson
Micah Cowan <[EMAIL PROTECTED]> writes: > If I've --import'ed md5, is there a means for me to specify in > configure.ac that it should not be included in certain circumstances? > > I'm in the process of converting portions of Wget to gnulib. We had > GNU's MD5 code in there, but only used it when

Re: Conditional inclusion

2007-10-14 Thread Ralf Wildenhues
Hello Bruno, * Bruno Haible wrote on Mon, Oct 15, 2007 at 02:08:18AM CEST: > > if ENABLE_LIBWCRYPT > SUBDIR_wcrypt = wcrypt > else > SUBDIR_wcrypt = > endif > SUBDIRS = gl $(SUBDIR_wcrypt) src doc po ... > >Such declarations will prevent "make"

Re: Conditional inclusion

2007-10-14 Thread Micah Cowan
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Bruno Haible wrote: > Hi, > > Micah Cowan asked: >> If I've --import'ed md5, is there a means for me to specify in >> configure.ac that it should not be included in certain circumstances? > > Depending on what you want, there are different answers:

Re: Conditional inclusion

2007-10-14 Thread Bruno Haible
Hi, Micah Cowan asked: > If I've --import'ed md5, is there a means for me to specify in > configure.ac that it should not be included in certain circumstances? Depending on what you want, there are different answers: 1) If it's ok to build the module even though it does not get used - this is

Conditional inclusion

2007-10-14 Thread Micah Cowan
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 If I've --import'ed md5, is there a means for me to specify in configure.ac that it should not be included in certain circumstances? I'm in the process of converting portions of Wget to gnulib. We had GNU's MD5 code in there, but only used it when w