# HG changeset patch # User jwe # Date 1111035186 0 # Node ID 843ac57f254a57157bb2a4a27a221cec6f1b2915 # Parent 42f9a021aac191f3abdef0a62910a7031042aac7 [project @ 2005-03-17 04:53:06 by jwe] diff -r 42f9a021aac1 -r 843ac57f254a ChangeLog --- a/ChangeLog Thu Mar 17 02:58:27 2005 +0000 +++ b/ChangeLog Thu Mar 17 04:53:06 2005 +0000 @@ -1,3 +1,8 @@ +2005-03-17 John W. Eaton + + * configure.in: Change defaults to enable shared libraries and + dynamic linking and disable static libraries. + 2005-03-15 John W. Eaton * octMakefile.in (DISTFILES): Remove texi2dvi from the list. diff -r 42f9a021aac1 -r 843ac57f254a configure.in --- a/configure.in Thu Mar 17 02:58:27 2005 +0000 +++ b/configure.in Thu Mar 17 04:53:06 2005 +0000 @@ -29,7 +29,7 @@ EXTERN_CXXFLAGS="$CXXFLAGS" AC_INIT -AC_REVISION($Revision: 1.465 $) +AC_REVISION($Revision: 1.466 $) AC_PREREQ(2.57) AC_CONFIG_SRCDIR([src/octave.cc]) AC_CONFIG_HEADER(config.h) @@ -659,7 +659,7 @@ [ --enable-static create static libraries], [if test "$enableval" = no; then STATIC_LIBS=false; else STATIC_LIBS=true; fi], - STATIC_LIBS=true) + STATIC_LIBS=false) AC_SUBST(STATIC_LIBS) ### Enable creation of shared libraries. Currently only works with @@ -669,7 +669,7 @@ [ --enable-shared create shared libraries (not all systems)], [if test "$enableval" = no; then SHARED_LIBS=false; else SHARED_LIBS=true; fi], - SHARED_LIBS=false) + SHARED_LIBS=true) AC_SUBST(SHARED_LIBS) ### Enable dynamic linking. --enable-shared implies this, so @@ -681,7 +681,7 @@ [ --enable-dl create shared libraries (not all systems)], [if test "$enableval" = no; then ENABLE_DYNAMIC_LINKING=false; else ENABLE_DYNAMIC_LINKING=true; fi], - ENABLE_DYNAMIC_LINKING=false) + ENABLE_DYNAMIC_LINKING=true) if $STATIC_LIBS || $SHARED_LIBS; then true