]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* ltmain.in: Ensure that gcc on HPsUX uses -fPIC, or else
authorPavel Roskin <pavel_roskin@geocities.com>
Thu, 29 Jul 1999 23:38:07 +0000 (23:38 +0000)
committerGary V. Vaughan <gary@gnu.org>
Thu, 29 Jul 1999 23:38:07 +0000 (23:38 +0000)
initialised structures are sometimes emitted in the code section.

ChangeLog
configure.in
ltmain.in

index a3a2d0f8d44b2624f9860cef243b77246df72ce2..c179c0f75199af49cd3f34638424437aa7085818 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,16 @@
+1999-07-30  Pavel Roskin  <pavel_roskin@geocities.com>
+
+       * ltmain.in: Ensure that gcc on HPsUX uses -fPIC, or else
+       initialised structures are sometimes emitted in the code section.
+       
 1999-07-02  Gary V. Vaughan  <gary@oranda.demon.co.uk>
 
        * configure.in: bumped version to 1.3.3a.
 
        GNU libtool 1.3.3 was released.
 
+       * config.sub: updated from common.
+       * config.guess: ditto.
        * NEWS: inserted todays date.
        * configure.in: bumped version to 1.3.3.
 
index 51086408e1f0e3bc7a8e259d4347d6c4faf287aa..c21aac014bb6f3988985ee212057470a36e749a9 100644 (file)
@@ -2,7 +2,7 @@ dnl Process this file with autoconf to create configure.
 
 AC_INIT(ltmain.in)
 
-AM_INIT_AUTOMAKE(libtool, 1.3.3a)
+AM_INIT_AUTOMAKE(libtool, 1.3.3)
 
 # This is a sanity check so we can see which version is used in bug reports.
 # It is assumed that we only want to see the date extension for cvs libtool
index b0a49918050bc3dead5233bdbaa8d3e73a9c1e69..b617956ede4480f7168c7abb78583d9317b65407 100644 (file)
--- a/ltmain.in
+++ b/ltmain.in
@@ -2602,6 +2602,11 @@ static const void *lt_preloaded_setup() {
            case "$compile_command " in
            *" -static "*) ;;
            *) pic_flag_for_symtable=" $pic_flag -DPIC -DFREEBSD_WORKAROUND";;
+           esac;;
+         *-*-hpux*)
+           case "$compile_command " in
+           *" -static "*) ;;
+           *) pic_flag_for_symtable=" $pic_flag -DPIC";;
            esac
          esac