suggestions about AC_CONFIG_MACRO_DIR

2009-04-21 Thread Lorenzo Bettini
Hi I started adding some m4 macros to my program, that I put in the m4 directory in my sources, and that will be installed during the make install. I then added aclocaldir = $(datadir)/aclocal aclocal_DATA = ax_boost_base.m4 ax_boost_regex.m4 in the m4/Makefile.am and ACLOCAL_AMFLAGS = -I

Re: suggestions about AC_CONFIG_MACRO_DIR

2009-04-21 Thread Braden McDaniel
On 4/21/09 1:35 PM, Lorenzo Bettini wrote: Hi I started adding some m4 macros to my program, that I put in the m4 directory in my sources, and that will be installed during the make install. I then added aclocaldir = $(datadir)/aclocal aclocal_DATA = ax_boost_base.m4 ax_boost_regex.m4 Unless

RFC: proposed GPLv3 license exception draft

2009-04-21 Thread Ralf Wildenhues
[ cross-posted to several groups; please followup on the autoconf list ] In order to complete the GNU Project's migration to GPLv3, every GNU program that has exceptions to its license needs to have those exceptions updated for GPLv3. We've prepared draft text for an updated version of the Autoco

Re: Documentation link 404

2009-04-21 Thread Ralf Wildenhues
Hello Fabian, * Fabian Alenius wrote on Sun, Apr 19, 2009 at 11:04:01PM CEST: > Hi, the link from the documentation does not work. Thanks! Fixed with this patch, added you to THANKS, and pushed to master and branch-1-10. Cheers, Ralf 2009-04-21 Fabian Alenius(tiny change) Fix lin

config.h as dependency

2009-04-21 Thread Jason Sewall
I have a project using autoconf + automake + autoheader, and clearly the results of my builds depends on what is in config.h. Thus, I would expect that when I run ./configure, everything in the build tree would be marked as out-of-date and everything would be rebuilt - that is, I would expect targe

Automatic debug symbol generation

2009-04-21 Thread JRS
I was setting up build infrastructure once again when it occurred to me, hmm, wouldn't it be nice if automake had default targets for installing symbols? For example, make install-syms could do objcopy --only-keep-debug on the binaries and libraries, and put the .debug files in /usr/lib/debug. It

Re: config.h as dependency

2009-04-21 Thread Ralf Wildenhues
Hello Jason, * Jason Sewall wrote on Tue, Apr 21, 2009 at 05:22:40PM CEST: > I have a project using autoconf + automake + autoheader, and clearly > the results of my builds depends on what is in config.h. Thus, I would > expect that when I run ./configure, everything in the build tree would > be m

Re: Automatic debug symbol generation

2009-04-21 Thread Ralf Wildenhues
Hello, * JRS wrote on Wed, Apr 22, 2009 at 07:02:55AM CEST: > I was setting up build infrastructure once again when it occurred to > me, hmm, wouldn't it be nice if automake had default targets for > installing symbols? > > For example, make install-syms could do objcopy --only-keep-debug on > th