Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjs <js-gajim@webkeks.org>2008-05-22 15:42:09 +0400
committerjs <js-gajim@webkeks.org>2008-05-22 15:42:09 +0400
commit4e26da4a9812488fa089bfe789a1eb8272e3bfbb (patch)
treeb37c4c60fb1f0166bcab83d3499238fa9edc7f5a /autogen.sh
parente672c81b44d4285f107f6e1aa6fe1428d9396ead (diff)
Use glibtoolize if available, we need this on OS X with MacPorts.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index a3ce4b5df..9f12783af 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -17,9 +17,11 @@
exit 1
fi
+ which glibtoolize >/dev/null 2>&1 && LIBTOOLIZE="glibtoolize" || LIBTOOLIZE="libtoolize"
+
intltoolize --force --automake \
&& aclocal -I ./m4 \
- && libtoolize --copy --force --automake \
+ && $LIBTOOLIZE --copy --force --automake \
&& autoheader \
&& autoconf \
&& automake ${AM_ARGS} \