diff options
author | TingPing <tingping@tingping.se> | 2015-04-21 18:34:55 -0400 |
---|---|---|
committer | TingPing <tingping@tingping.se> | 2015-04-21 18:44:30 -0400 |
commit | 9a98de1f65ac031a8d8f1c8ddcb71d3ba5a0d7aa (patch) | |
tree | 79e0b7ef123555eddf5b0370d907779fc831d093 /autogen.sh | |
parent | 7363bc03f2a8242a1fa3532a90f633e772b31084 (diff) |
Remove requirement on gnome-common
I'm sure that will make a few users happy..
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/autogen.sh b/autogen.sh index b1e4db22..ba187d37 100755 --- a/autogen.sh +++ b/autogen.sh @@ -4,19 +4,24 @@ srcdir=`dirname $0` test -z "$srcdir" && srcdir=. -NOCONFIGURE=1 -PKG_NAME="hexchat" - (test -f $srcdir/src/common/hexchat.c) || { - echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" - echo " top-level $PKG_NAME directory" + echo -n "**Error**: Directory "\`$srcdir\'" does not look like the top-level directory" exit 1 } -which gnome-autogen.sh || { - echo "You need to install gnome-common" - exit 1 -} +aclocal --install || exit 1 +glib-gettextize --force --copy || exit 1 +intltoolize --force --copy --automake || exit 1 +autoreconf --force --install -Wno-portability || exit 1 + +if [ "$NOCONFIGURE" = "" ]; then + $srcdir/configure "$@" || exit 1 -. gnome-autogen.sh + if [ "$1" = "--help" ]; then exit 0 else + echo "Now type \`make\' to compile" || exit 1 + fi +else + echo "Skipping configure process." +fi +set +x |