# HG changeset patch # User John W. Eaton # Date 1257951663 18000 # Node ID 13868ea67c7188721c1bd7e186d0ec0277ed09be # Parent ef4c4186cb477cce509827e1ab41f2e14768b89c configure.ac: fail if LT_INIT is not defined diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2009-11-11 John W. Eaton + + * configure.ac: Fail if LT_INIT it is not defined. + 2009-11-10 John W. Eaton * NEWS: Update. diff --git a/configure.ac b/configure.ac --- a/configure.ac +++ b/configure.ac @@ -879,6 +879,11 @@ OCTAVE_PROG_AR +ifdef([LT_INIT], [], [ + errprint([error: you must have libtool 2.2.2 or a more recent version +]) + m4exit([1])]) + LT_PREREQ([2.2.2]) LT_INIT([disable-static dlopen win32-dll])