changeset 2346:5baf74b55020

[project @ 1996-07-25 08:11:43 by jwe]
author jwe
date Thu, 25 Jul 1996 08:11:43 +0000
parents 0f441b4fefdb
children b360ae77cd49
files ChangeLog configure.in
diffstat 2 files changed, 6 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+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.
+
 Fri Jul 19 13:02:05 1996  John W. Eaton  <jwe@bevo.che.wisc.edu>
 
 	* configure.in: If using g77 on alpha, don't add -fpe1 to FFLAGS.
--- a/configure.in
+++ b/configure.in
@@ -20,7 +20,7 @@
 ### along with Octave; see the file COPYING.  If not, write to the Free
 ### Software Foundation, 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
-AC_REVISION($Revision: 1.211 $)
+AC_REVISION($Revision: 1.212 $)
 AC_PREREQ(2.9)
 AC_INIT(src/octave.cc)
 AC_CONFIG_HEADER(config.h)
@@ -710,7 +710,7 @@
 if test "$WITH_DL" = yes || test "$WITH_DL" = maybe; then
   case "$canonical_host_type" in
     rs6000-ibm-aix* | powerpc-ibm-aix*)
-      LIBDLFCN=-ldlfcn
+      LIBDLFCN="-ldlfcn -ll -lld"
       DLFCN_INCFLAGS='-I$(top_srcdir)/dlfcn -I$(TOPDIR)/dlfcn'
       WITH_DL=true
     ;;