Linux bluetooth development
 help / color / mirror / Atom feed
* [PATCH] Support libtool-2
@ 2011-11-13  9:45 Alon Bar-Lev
  2011-11-13  9:56 ` Alon Bar-Lev
  2011-11-13 10:03 ` Alon Bar-Lev
  0 siblings, 2 replies; 3+ messages in thread
From: Alon Bar-Lev @ 2011-11-13  9:45 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Alon Bar-Lev

Replace now obsolete AC_PROG_LIBTOOL with LT_INIT if available.
Add m4 aclocal directory where libtool will place its macros.
---
 .gitignore   |    6 ++++++
 Makefile.am  |    1 +
 configure.ac |    3 ++-
 m4/.keep     |    1 +
 4 files changed, 10 insertions(+), 1 deletions(-)
 create mode 100644 m4/.keep

diff --git a/.gitignore b/.gitignore
index badd1a0..7cce775 100644
--- a/.gitignore
+++ b/.gitignore
@@ -25,6 +25,12 @@ missing
 stamp-h1
 autom4te.cache
 
+m4/libtool.m4
+m4/ltoptions.m4
+m4/ltsugar.m4
+m4/ltversion.m4
+m4/lt~obsolete.m4
+
 ylwrap
 lexer.c
 parser.h
diff --git a/Makefile.am b/Makefile.am
index 57aa33c..3479d4e 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,4 +1,5 @@
 
+ACLOCAL_AMFLAGS = -I m4
 AM_MAKEFLAGS = --no-print-directory
 
 lib_LTLIBRARIES =
diff --git a/configure.ac b/configure.ac
index 2f07167..c1397f0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3,6 +3,7 @@ AC_INIT(bluez, 4.96)
 
 AM_INIT_AUTOMAKE([foreign subdir-objects color-tests])
 AM_CONFIG_HEADER(config.h)
+AC_CONFIG_MACRO_DIR([m4])
 
 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
 
@@ -30,7 +31,7 @@ m4_define([_LT_AC_TAGCONFIG], [])
 m4_ifdef([AC_LIBTOOL_TAGS], [AC_LIBTOOL_TAGS([])])
 
 AC_DISABLE_STATIC
-AC_PROG_LIBTOOL
+ifdef([LT_INIT],[LT_INIT], [AC_PROG_LIBTOOL])
 
 AC_FUNC_PPOLL
 
diff --git a/m4/.keep b/m4/.keep
new file mode 100644
index 0000000..2fa992c
--- /dev/null
+++ b/m4/.keep
@@ -0,0 +1 @@
+keep
-- 
1.7.3.4


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-11-13 10:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-13  9:45 [PATCH] Support libtool-2 Alon Bar-Lev
2011-11-13  9:56 ` Alon Bar-Lev
2011-11-13 10:03 ` Alon Bar-Lev

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox