summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreb2008-06-18 04:58:54 +0000
committereb2008-06-18 04:58:54 +0000
commita22202008689a4a893c29af118febf5c57cb8103 (patch)
tree131a1abaa2598c4ff486e2e548661998f25d53c9
parent6051d8037f394e859a5980ef7ac37fa9db0cddac (diff)
downloadgnuradio-a22202008689a4a893c29af118febf5c57cb8103.tar.gz
gnuradio-a22202008689a4a893c29af118febf5c57cb8103.tar.bz2
gnuradio-a22202008689a4a893c29af118febf5c57cb8103.zip
libtool 2.2 compatibility fix from Don Ward. Details in ticket:249.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@8613 221aa14e-8319-0410-a670-987f0aec2ac5
-rw-r--r--configure.ac2
-rw-r--r--gr-howto-write-a-block/configure.ac2
2 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 74dde0dd1..e3cd1870f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -88,7 +88,7 @@ AC_LIBTOOL_WIN32_DLL
dnl AC_DISABLE_SHARED dnl don't build shared libraries
AC_ENABLE_SHARED dnl do build shared libraries
AC_DISABLE_STATIC dnl don't build static libraries
-AC_PROG_LIBTOOL
+m4_ifdef([LT_INIT],[LT_INIT],[AC_PROG_LIBTOOL])
GR_FORTRAN
GR_NO_UNDEFINED dnl do we need the -no-undefined linker flag
diff --git a/gr-howto-write-a-block/configure.ac b/gr-howto-write-a-block/configure.ac
index 8b1a10f69..4137858a0 100644
--- a/gr-howto-write-a-block/configure.ac
+++ b/gr-howto-write-a-block/configure.ac
@@ -41,7 +41,7 @@ AC_PATH_PROG([RM_PROG], [rm])
AC_LIBTOOL_WIN32_DLL
AC_ENABLE_SHARED dnl do build shared libraries
AC_DISABLE_STATIC dnl don't build static libraries
-AC_PROG_LIBTOOL
+m4_ifdef([LT_INIT],[LT_INIT],[AC_PROG_LIBTOOL])
dnl Locate python, SWIG, etc
GR_NO_UNDEFINED