]> 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:42:59 +0000 (15:42 +0000)
committerGary V. Vaughan <gary@gnu.org>
Mon, 17 May 1999 15:42:59 +0000 (15:42 +0000)
* NEWS: updated.

ChangeLog
NEWS
ltconfig.in

index b3af94c7f429d0072a0b46144ee9497420003f3a..cf80c2ab997ba06da54d87630fcdfcb0176c4505 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 92657714d604ab0e13368663b7125a0d789d18fc..27e95d406a94a6e67d1e9b01bb7fb6d951d62e07 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -6,6 +6,7 @@ New in 1.3b: 1999-??-??; CVS version 1.3a, Libtool team:
 * Libtool is able to find already-installed libtool libraries,
   even if they were moved out of their installation directory.
 * Support for linking DLLs on Win32
+* New port to NEC UX/4800.
 * New `clean' mode to delete uninstalled files.
 * New demos and tests
 * Various bugfixes
index 9de6d46199e60e73447b2049e4f3ec5cd4c4daa2..76f89b9fbecd215018ceeadca6703ef78b50c6c2 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'
     ;;
@@ -714,6 +719,13 @@ else
     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
     ;;
@@ -1408,6 +1420,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
     ;;
@@ -1970,6 +1993,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
   ;;