From f76fe525754c9e983443d37bd791ae84e732a345 Mon Sep 17 00:00:00 2001 From: Dan Nicholson Date: Thu, 17 Jun 2010 09:12:04 -0700 Subject: Force generation of libtool script so it can be used reliably We want to use the libtool script to determine if indirect dependencies should be listed. LT_OUTPUT forces the script to be created immediately so that the test can be run reliably. This is borrowed from glib's configure.in. --- .gitignore | 1 + configure.in | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 39896a0..0357dab 100644 --- a/.gitignore +++ b/.gitignore @@ -15,6 +15,7 @@ config.guess config.h config.h.in config.log +config.lt config.status config.sub configure diff --git a/configure.in b/configure.in index f798281..e58157d 100644 --- a/configure.in +++ b/configure.in @@ -7,6 +7,8 @@ AM_MAINTAINER_MODE AM_CONFIG_HEADER(config.h) AM_PROG_LIBTOOL +dnl when using libtool 2.x create libtool early, because it's used in configure +m4_ifdef([LT_OUTPUT], [LT_OUTPUT]) AC_PROG_CC -- cgit v1.2.3