-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use the modern autoreconf in autogen.sh
- Loading branch information
Showing
1 changed file
with
4 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,10 @@ | ||
#!/bin/sh | ||
# | ||
echo "Generating build information using aclocal, automake and autoconf" | ||
echo "This may take a while ..." | ||
echo "Generating build information using autoreconf" | ||
|
||
# Touch the timestamps on all the files since CVS messes them up | ||
touch configure.ac | ||
|
||
# Regenerate configuration files | ||
aclocal | ||
automake --add-missing --force-missing | ||
autoconf | ||
autoheader && touch config.h.in | ||
# All is done by autoreconf | ||
autoreconf -f -i | ||
|
||
# Run configure for this platform | ||
echo "Now you are ready to run ./configure" | ||
|