summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorJonathan Blandford <jrb@redhat.com>2003-12-16 06:58:30 +0000
committerJonathan Blandford <jrb@redhat.com>2003-12-16 06:58:30 +0000
commit11afaf7722d96fa26b2149d1979359b7d07769e6 (patch)
tree43f11b7caa97ccfd5400690af15ee13b62fc3c48 /autogen.sh
parente89c06eeb05f004a9633c9d2e3dbd1a1d2b18c0b (diff)
downloadshared-mime-info-11afaf7722d96fa26b2149d1979359b7d07769e6.tar.gz
Build fixes -- see changelog
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh45
1 files changed, 45 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh
new file mode 100755
index 00000000..68bac2cc
--- /dev/null
+++ b/autogen.sh
@@ -0,0 +1,45 @@
+#!/bin/sh
+# Run this to generate all the initial makefiles, etc.
+
+set -e
+
+ARGV0=$0
+
+if test -z "$ACLOCAL_FLAGS"; then
+ acdir=`aclocal --print-ac-dir`
+ if [ ! -f $acdir/pkg.m4 ]; then
+ echo "$ARGV0: Error: Could not find pkg-config macros."
+ echo " (Looked in $acdir/pkg.m4)"
+ echo " If pkg.m4 is available in /another/directory, please set"
+ echo " ACLOCAL_FLAGS=\"-I /another/directory\""
+ echo " Otherwise, please install pkg-config."
+ echo ""
+ echo "pkg-config is available from:"
+ echo "http://www.freedesktop.org/software/pkgconfig/"
+ exit 1
+ fi
+fi
+
+if test -z "$*"; then
+ echo "$ARGV0:Note: \`./configure' will be run with no arguments."
+ echo "If you wish to pass any to it, please specify them on the"
+ echo "\`$0' command line."
+ echo
+fi
+
+do_cmd() {
+ echo "$ARGV0: running \`$@'"
+ $@
+}
+
+do_cmd libtoolize --force --copy
+
+do_cmd aclocal ${ACLOCAL_FLAGS}
+
+do_cmd autoheader
+
+do_cmd automake --add-missing
+
+do_cmd autoconf
+
+do_cmd ./configure --enable-maintainer-mode ${1+"$@"} && echo "Now type \`make' to compile" || exit 1