mirror of
git://git.savannah.gnu.org/libtool.git
synced 2024-11-21 01:40:57 +08:00
Fix compilation of program sources on AIX.
* tests/lt_dlopenext.at (lt_dlopenext error messages): Do not use $LIBTOOL when compiling plain object, AIX by default does not enable static archives. * tests/ltdl-libdir.at (libdir of installed modules): Likewise. Report by Rainer Tammer. Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
This commit is contained in:
parent
3936d01df5
commit
4246f026cb
@ -1,5 +1,12 @@
|
||||
2010-08-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
||||
|
||||
Fix compilation of program sources on AIX.
|
||||
* tests/lt_dlopenext.at (lt_dlopenext error messages): Do not
|
||||
use $LIBTOOL when compiling plain object, AIX by default does
|
||||
not enable static archives.
|
||||
* tests/ltdl-libdir.at (libdir of installed modules): Likewise.
|
||||
Report by Rainer Tammer.
|
||||
|
||||
Do not call toplevel configure in non-VPATH build.
|
||||
* tests/deplibs-mingw.at (deplibs without file command): Use
|
||||
LT_AT_CONFIGURE for consistency, update comment about why it
|
||||
|
@ -1,6 +1,6 @@
|
||||
# lt_dlopenext.at -- test libltdl functionality -*- Autotest -*-
|
||||
#
|
||||
# Copyright (C) 2009 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2009, 2010 Free Software Foundation, Inc.
|
||||
# This file is part of GNU Libtool.
|
||||
#
|
||||
# GNU Libtool is free software; you can redistribute it and/or
|
||||
@ -197,7 +197,7 @@ AT_CHECK([$LIBTOOL --mode=compile $CC $CPPFLAGS $CFLAGS -c simple-module.c],
|
||||
AT_CHECK([$LIBTOOL --mode=link $CC $CFLAGS $LDFLAGS -o simple-module.la ]dnl
|
||||
[simple-module.lo -rpath $libdir -module -avoid-version],
|
||||
[], [ignore], [ignore])
|
||||
AT_CHECK([$LIBTOOL --mode=compile $CC $CPPFLAGS $CFLAGS -c ltdl-loader.c],
|
||||
AT_CHECK([$CC $CPPFLAGS $CFLAGS -c ltdl-loader.c],
|
||||
[], [ignore], [ignore])
|
||||
AT_CHECK([$LIBTOOL --mode=link $CC $CFLAGS $LDFLAGS -o ltdl-loader$EXEEXT ]dnl
|
||||
[ltdl-loader.$OBJEXT -dlopen self $LIBLTDL],
|
||||
|
@ -101,7 +101,7 @@ AT_CHECK([$LIBTOOL --mode=compile $CC $CPPFLAGS $CFLAGS -c a.c],
|
||||
AT_CHECK([$LIBTOOL --mode=link $CC $CFLAGS $LDFLAGS -o a.la ]dnl
|
||||
[a.lo -rpath $libdir -module -shared -avoid-version],
|
||||
[], [ignore], [ignore])
|
||||
AT_CHECK([$LIBTOOL --mode=compile $CC $CPPFLAGS $CFLAGS -c m.c],
|
||||
AT_CHECK([$CC $CPPFLAGS $CFLAGS -c m.c],
|
||||
[], [ignore], [ignore])
|
||||
AT_CHECK([$LIBTOOL --mode=link $CC $CFLAGS $LDFLAGS -o m$EXEEXT ]dnl
|
||||
[m.$OBJEXT $LIBLTDL],
|
||||
|
Loading…
Reference in New Issue
Block a user