changeset 5221:843ac57f254a

[project @ 2005-03-17 04:53:06 by jwe]
author jwe
date Thu, 17 Mar 2005 04:53:06 +0000
parents 42f9a021aac1
children 8d95c4573f96
files ChangeLog configure.in
diffstat 2 files changed, 9 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-03-17  John W. Eaton  <jwe@octave.org>
+
+	* configure.in: Change defaults to enable shared libraries and
+	dynamic linking and disable static libraries.
+
 2005-03-15  John W. Eaton  <jwe@octave.org>
 
 	* octMakefile.in (DISTFILES): Remove texi2dvi from the list.
--- a/configure.in
+++ b/configure.in
@@ -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