changeset 2351:af7790a4bb19

[project @ 1996-07-31 02:53:09 by jwe]
author jwe
date Wed, 31 Jul 1996 02:53:10 +0000
parents 905e19d7eef8
children f06655937d8a
files ChangeLog aclocal.m4
diffstat 2 files changed, 18 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Tue Jul 30 21:47:42 1996 +0000
+++ b/ChangeLog	Wed Jul 31 02:53:10 1996 +0000
@@ -1,3 +1,8 @@
+Tue Jul 30 12:55:43 1996  John W. Eaton  <jwe@bevo.che.wisc.edu>
+
+	* aclocal.m4 (OCTAVE_FLIBS): Also check for -bI:FILE arg to ld,
+	for AIX systems.
+
 Thu Jul 25 03:09:29 1996  John W. Eaton  <jwe@bevo.che.wisc.edu>
 
 	* configure.in: On AIX systems, add "-ll -lld" to LIBDLFCN.
--- a/aclocal.m4	Tue Jul 30 21:47:42 1996 +0000
+++ b/aclocal.m4	Wed Jul 31 02:53:10 1996 +0000
@@ -163,6 +163,19 @@
 	    lflags="$lflags $arg"
 	  fi
 	;;
+	-bI:*)
+	  exists=false
+	  for f in $lflags; do
+	    if test x$arg = x$f; then
+	      exists=true
+	    fi
+	  done
+	  if $exists; then
+	    arg=
+	  else
+	    lflags="$lflags -Xlinker $arg"
+	  fi
+	;;
 	-lang*)
 	  arg=
 	;;