]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* ltconfig.in: port to NEC UX/4800.
authorJiro Takabatake <jiro@din.or.jp>
Mon, 17 May 1999 15:34:53 +0000 (15:34 +0000)
committerGary V. Vaughan <gary@gnu.org>
Mon, 17 May 1999 15:34:53 +0000 (15:34 +0000)
* NEWS: updated.

ChangeLog
NEWS
ltconfig.in

index 4ac9224ca53b5baa9dc4acba79fbd2e3c736d2fa..22d5c1b38fd99cbdd5dd105b4cbb05edfc412da7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+1999-05-17  Jiro Takabatake  <jiro@din.or.jp>
+       
+       * ltconfig.in: port to NEC UX/4800.
+       * NEWS: updated.
+       
 1999-05-17  Gary V. Vaughan  <gary@oranda.demon.co.uk>
 
        * ltconfig.in (beos*, deplibs_check_method): set to pass_all.  BeOS
diff --git a/NEWS b/NEWS
index 26555092f5572d5e85bcb135348c8737924de964..86d06ca96c6f2d95b377708e4b25a515d51f4dbf 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,8 @@
 NEWS - list of user-visible changes between releases of GNU Libtool
 
+New in 1.3.1: 1999-05-??, Libtool team:
+* New port to NEC UX/4800.
+
 New in 1.3: 1999-04-29, Libtool team:
 * This is just a summary of the changes since 1.2.
   See the news of intermediate alpha releases below for details.
index 576105f70c01a8382daeeb2cd83ecccc77280d67..726e4921d5ea061e37c655c30e5ed50537c4d85c 100755 (executable)
@@ -650,6 +650,11 @@ if test "$with_gcc" = yes; then
     # like `-m68040'.
     pic_flag='-m68020 -resident32 -malways-restore-a4'
     ;;
+  sysv4*MP*)
+    if test -d /usr/nec; then
+       pic_flag=-Kconform_pic
+    fi
+    ;;
   *)
     pic_flag='-fPIC'
     ;;
@@ -713,7 +718,12 @@ else
     pic_flag='-pic'
     link_static_flag='-Bstatic'
     ;;
-
+  sysv4*MP*)
+    if test -d /usr/nec ;then
+      pic_flag='-Kconform_pic'
+      link_static_flag='-Bstatic'
+    fi
+    ;;
   *)
     can_build_shared=no
     ;;
@@ -1399,6 +1409,17 @@ else
     hardcode_shlibpath_var=no
     ;;
 
+  sysv4*MP*)
+    if test -d /usr/nec ;then
+    # archive_cmds='$LD -G -z text -h $soname -o $lib$libobjs$deplibs'
+    archive_cmds='$LD -G -h $soname -o $lib$libobjs$deplibs'
+    hardcode_shlibpath_var=no
+    runpath_var=LD_RUN_PATH
+    hardcode_runpath_var=yes
+    ld_shlibs=yes
+    fi
+    ;;
+
   *)
     ld_shlibs=no
     ;;
@@ -1961,6 +1982,15 @@ dgux*)
   shlibpath_var=LD_LIBRARY_PATH
   ;;
 
+sysv4*MP*)
+  if test -d /usr/nec ;then
+    version_type=linux
+    library_names_spec='$libname.so.$versuffix $libname.so.$major $libname.so'
+    soname_spec='$libname.so.$major'
+    shlibpath_var=LD_LIBRARY_PATH
+  fi
+  ;;
+
 *)
   dynamic_linker=no
   ;;