This is the mail archive of the gsl-discuss@sourceware.cygnus.com mailing list for the GSL project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

config.h.in and autoheader


Hi all,

The new top-level .cvsignore tells CVS to skip `config.h.in'.  If you
check out GSL and import it to a local CVS repo (as I do), config.h.in
goes missing.  Since the current `autogen.sh' doesn't run `autoheader',
this file doesn't get regenerated and things stop there.  A simple
change is to add `autoheader' right before `automake'.  I'd also suggest
adding `--force' to libtoolize:

#! /bin/sh
# Run this to generate all the auto-generated files needed by the GNU
# configure program

libtoolize --force
aclocal
autoheader
automake --add-missing
autoconf

Cheers,
Dave

-- 
David Morrison  Brookhaven National Laboratory  phone: 631-344-5840
                Physics Department, Bldg 510 C    fax: 631-344-3253
		          Upton, NY 11973-5000  email: dave@bnl.gov

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]