# HG changeset patch # User jwe # Date 1056741342 0 # Node ID 64a91c8251e25d62d3677da3b0768fe749e2f85a # Parent 4cc739e3cbd8256a1bd3ba6120fe3e565d3c5026 [project @ 2003-06-27 19:13:37 by jwe] diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-06-27 John W. Eaton + + * configure.in: If user doesn't specify --enable-rpath, then + default is to enable it. + 2003-06-04 John W. Eaton * aclocal.m4 (GNUPLOT_HAS_FRAMES): Eliminate variable. diff --git a/configure.in b/configure.in --- a/configure.in +++ b/configure.in @@ -22,7 +22,7 @@ ### 02111-1307, USA. AC_INIT -AC_REVISION($Revision: 1.428 $) +AC_REVISION($Revision: 1.429 $) AC_PREREQ(2.52) AC_CONFIG_SRCDIR([src/octave.cc]) AC_CONFIG_HEADER(config.h) @@ -641,7 +641,7 @@ use_rpath=true if test "$enableval" = yes; then true; else enable_rpath_arg="$enableval"; fi - fi], [use_rpath=false]) + fi], [use_rpath=true]) DLFCN_DIR= CPICFLAG=-fPIC diff --git a/src/version.h b/src/version.h --- a/src/version.h +++ b/src/version.h @@ -23,7 +23,7 @@ #if !defined (octave_version_h) #define octave_version_h 1 -#define OCTAVE_VERSION "2.1.49" +#define OCTAVE_VERSION "2.1.50" #define OCTAVE_COPYRIGHT \ "Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 John W. Eaton."