diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2008-06-21 22:00:57 +0100 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2008-06-21 22:00:57 +0100 |
commit | 6f77ed4e952aef96846321a015d95857c38a7f39 (patch) | |
tree | 40e0600d110c9e5eee77dbd0c1464f28cbd6da0b | |
parent | 3c6685fcedf97e50e385e9febdb77b93f46c187a (diff) | |
download | xine-lib-6f77ed4e952aef96846321a015d95857c38a7f39.tar.gz xine-lib-6f77ed4e952aef96846321a015d95857c38a7f39.tar.bz2 |
Partially revert fa7f53fb1656, which introduced some libtool-related problems.
With libtool 1.5, AC_LIBTOOL_SETUP was being called too early.
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 78e473b84..498f5d056 100644 --- a/configure.ac +++ b/configure.ac @@ -154,10 +154,11 @@ dnl --------------------------------------------- dnl Libtool dnl --------------------------------------------- -AC_PROG_LIBTOOL AC_LIBTOOL_DLOPEN AC_DISABLE_STATIC AC_LIBTOOL_WIN32_DLL +AC_PROG_LIBTOOL +AC_PROG_LIBTOOL_SANITYCHECK AC_SUBST(LIBTOOL_DEPS) if ${CONFIG_SHELL} ./libtool --features | grep "enable static" >/dev/null; then STATIC="-static" |