From: Alexandre Oliva Date: Wed, 27 Jan 1999 05:36:49 +0000 (+0000) Subject: * libltdl/configure.in (AC_PROG_LIBTOOL): automake does not X-Git-Tag: release-1-2f~162 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ad4654e94a3c74e21c35e5d11b9775a2eb3f4122;p=thirdparty%2Flibtool.git * libltdl/configure.in (AC_PROG_LIBTOOL): automake does not recognize it and fail, better keep using AM_PROG_LIBTOOL until the next release of automake * demo/configure.in, cdemo/configure.in: ditto * depdemo/configure.in, mdemo/configure.in: ditto --- diff --git a/ChangeLog b/ChangeLog index 5a2d28b82..89b264bf5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ 1999-01-27 Alexandre Oliva + * libltdl/configure.in (AC_PROG_LIBTOOL): automake does not + recognize it and fail, better keep using AM_PROG_LIBTOOL until the + next release of automake + * demo/configure.in, cdemo/configure.in: ditto + * depdemo/configure.in, mdemo/configure.in: ditto + * libltdl/ltdl.c: make all global strings char[], not char*; check that all calls to malloc() are properly cast (strdup, strchr, strrchr, trim, free_vars): declare as inline diff --git a/cdemo/configure.in b/cdemo/configure.in index 0281c2e2f..97f3a3b47 100644 --- a/cdemo/configure.in +++ b/cdemo/configure.in @@ -4,7 +4,7 @@ AM_INIT_AUTOMAKE(cdemo,0.1) AC_PROG_CC AC_EXEEXT -AC_PROG_LIBTOOL +AM_PROG_LIBTOOL AC_CHECK_HEADERS(math.h) diff --git a/demo/configure.in b/demo/configure.in index abbb0edf4..e0fac772d 100644 --- a/demo/configure.in +++ b/demo/configure.in @@ -5,7 +5,7 @@ AM_INIT_AUTOMAKE(hell,1.0) AC_PROG_CC AC_C_CONST AC_EXEEXT -AC_PROG_LIBTOOL +AM_PROG_LIBTOOL if ${CONFIG_SHELL} ./libtool --features | grep "enable static" >/dev/null; then STATIC=-static diff --git a/depdemo/configure.in b/depdemo/configure.in index 64310fb7a..5a19db94e 100644 --- a/depdemo/configure.in +++ b/depdemo/configure.in @@ -4,7 +4,7 @@ AM_INIT_AUTOMAKE(depdemo,0.1) AC_PROG_CC AC_EXEEXT -AC_PROG_LIBTOOL +AM_PROG_LIBTOOL AC_CHECK_HEADERS(math.h) diff --git a/libltdl/configure.in b/libltdl/configure.in index a623f295f..dd7359418 100644 --- a/libltdl/configure.in +++ b/libltdl/configure.in @@ -21,7 +21,7 @@ AC_SUBST(NOINSTLIBS) AC_PROG_CC AC_C_CONST AC_C_INLINE -AC_PROG_LIBTOOL +AM_PROG_LIBTOOL AC_SUBST(LIBTOOL_DEPS) AC_CACHE_CHECK([which extension is used for shared libraries], diff --git a/mdemo/configure.in b/mdemo/configure.in index 0e137515e..c29c35906 100644 --- a/mdemo/configure.in +++ b/mdemo/configure.in @@ -5,7 +5,7 @@ AM_INIT_AUTOMAKE(mdemo,0.1) AC_PROG_CC AC_C_CONST AC_EXEEXT -AC_PROG_LIBTOOL +AM_PROG_LIBTOOL if ${CONFIG_SHELL} ./libtool --features | grep "enable static" >/dev/null; then STATIC=-static