diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/acconfig.h gsl-1.10/acconfig.h *** gsl-1.9/acconfig.h 2007-01-10 17:16:41.000000000 +0000 --- gsl-1.10/acconfig.h 2007-08-30 11:32:34.000000000 +0100 *************** *** 1,26 **** @BOTTOM@ - /* Defined if this is an official release */ - #undef RELEASED - - /* Define if you have inline */ - #undef HAVE_INLINE - /* Define if you need to hide the static definitions of inline functions */ #undef HIDE_INLINE_STATIC - /* Defined if you have ansi EXIT_SUCCESS and EXIT_FAILURE in stdlib.h */ - #undef HAVE_EXIT_SUCCESS_AND_FAILURE - /* Use 0 and 1 for EXIT_SUCCESS and EXIT_FAILURE if we don't have them */ #if !HAVE_EXIT_SUCCESS_AND_FAILURE #define EXIT_SUCCESS 0 #define EXIT_FAILURE 1 #endif - /* Define this if printf can handle %Lf for long double */ - #undef HAVE_PRINTF_LONGDOUBLE - /* Define one of these if you have a known IEEE arithmetic interface */ #undef HAVE_GNUSPARC_IEEE_INTERFACE #undef HAVE_GNUM68K_IEEE_INTERFACE --- 1,14 ---- *************** *** 40,51 **** #undef HAVE_DARWIN_IEEE_INTERFACE #undef HAVE_DARWIN86_IEEE_INTERFACE - /* Define this if IEEE comparisons work correctly (e.g. NaN != NaN) */ - #undef HAVE_IEEE_COMPARISONS - - /* Define this if IEEE denormalized numbers are available */ - #undef HAVE_IEEE_DENORMALS - /* Define a rounding function which moves extended precision values out of registers and rounds them to double-precision. This should be used *sparingly*, in places where it is necessary to keep --- 28,33 ---- *************** *** 60,67 **** precision mode unless you compile a separate version of the library with HAVE_EXTENDED_PRECISION_REGISTERS turned off. */ - #undef HAVE_EXTENDED_PRECISION_REGISTERS - #if HAVE_EXTENDED_PRECISION_REGISTERS #define GSL_COERCE_DBL(x) (gsl_coerce_double(x)) #else --- 42,47 ---- *************** *** 107,118 **** #endif #if !HAVE_DECL_FINITE - #if HAVE_DECL_ISFINITE - #define finite isfinite - #else #define finite gsl_finite #endif - #endif #if !HAVE_DECL_ISNAN #define isnan gsl_isnan --- 87,94 ---- diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/aclocal.m4 gsl-1.10/aclocal.m4 *** gsl-1.9/aclocal.m4 2007-02-20 13:08:57.000000000 +0000 --- gsl-1.10/aclocal.m4 2007-09-13 16:41:31.000000000 +0100 *************** *** 1,7 **** ! # generated automatically by aclocal 1.9.6 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, ! # 2005 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,7 ---- ! # generated automatically by aclocal 1.10 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, ! # 2005, 2006 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 11,3342 **** # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. ! # Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc. ! # ! # This file is free software; the Free Software Foundation ! # gives unlimited permission to copy and/or distribute it, ! # with or without modifications, as long as this notice is preserved. ! # AM_AUTOMAKE_VERSION(VERSION) ! # ---------------------------- ! # Automake X.Y traces this macro to ensure aclocal.m4 has been ! # generated from the m4 files accompanying Automake X.Y. ! AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version="1.9"]) ! # AM_SET_CURRENT_AUTOMAKE_VERSION ! # ------------------------------- ! # Call AM_AUTOMAKE_VERSION so it can be traced. ! # This function is AC_REQUIREd by AC_INIT_AUTOMAKE. ! AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], ! [AM_AUTOMAKE_VERSION([1.9.6])]) - # AM_AUX_DIR_EXPAND -*- Autoconf -*- ! # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. ! # ! # This file is free software; the Free Software Foundation ! # gives unlimited permission to copy and/or distribute it, ! # with or without modifications, as long as this notice is preserved. - # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets - # $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to - # `$srcdir', `$srcdir/..', or `$srcdir/../..'. - # - # Of course, Automake must honor this variable whenever it calls a - # tool from the auxiliary directory. The problem is that $srcdir (and - # therefore $ac_aux_dir as well) can be either absolute or relative, - # depending on how configure is run. This is pretty annoying, since - # it makes $ac_aux_dir quite unusable in subdirectories: in the top - # source directory, any form will work fine, but in subdirectories a - # relative path needs to be adjusted first. - # - # $ac_aux_dir/missing - # fails when called from a subdirectory if $ac_aux_dir is relative - # $top_srcdir/$ac_aux_dir/missing - # fails if $ac_aux_dir is absolute, - # fails when called from a subdirectory in a VPATH build with - # a relative $ac_aux_dir - # - # The reason of the latter failure is that $top_srcdir and $ac_aux_dir - # are both prefixed by $srcdir. In an in-source build this is usually - # harmless because $srcdir is `.', but things will broke when you - # start a VPATH build or use an absolute $srcdir. - # - # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, - # iff we strip the leading $srcdir from $ac_aux_dir. That would be: - # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` - # and then we would define $MISSING as - # MISSING="\${SHELL} $am_aux_dir/missing" - # This will work as long as MISSING is not called from configure, because - # unfortunately $(top_srcdir) has no meaning in configure. - # However there are other variables, like CC, which are often used in - # configure, and could therefore not use this "fixed" $ac_aux_dir. - # - # Another solution, used here, is to always expand $ac_aux_dir to an - # absolute PATH. The drawback is that using absolute paths prevent a - # configured tree to be moved without reconfiguration. ! AC_DEFUN([AM_AUX_DIR_EXPAND], ! [dnl Rely on autoconf to set up CDPATH properly. ! AC_PREREQ([2.50])dnl ! # expand $ac_aux_dir to an absolute path ! am_aux_dir=`cd $ac_aux_dir && pwd` ! ]) ! # AM_CONDITIONAL -*- Autoconf -*- - # Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005 - # Free Software Foundation, Inc. - # - # This file is free software; the Free Software Foundation - # gives unlimited permission to copy and/or distribute it, - # with or without modifications, as long as this notice is preserved. ! # serial 7 ! # AM_CONDITIONAL(NAME, SHELL-CONDITION) ! # ------------------------------------- ! # Define a conditional. ! AC_DEFUN([AM_CONDITIONAL], ! [AC_PREREQ(2.52)dnl ! ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], ! [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl ! AC_SUBST([$1_TRUE]) ! AC_SUBST([$1_FALSE]) ! if $2; then ! $1_TRUE= ! $1_FALSE='#' ! else ! $1_TRUE='#' ! $1_FALSE= ! fi ! AC_CONFIG_COMMANDS_PRE( ! [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then ! AC_MSG_ERROR([[conditional "$1" was never defined. ! Usually this means the macro was only invoked conditionally.]]) ! fi])]) ! # Do all the work for Automake. -*- Autoconf -*- ! # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 ! # Free Software Foundation, Inc. ! # ! # This file is free software; the Free Software Foundation ! # gives unlimited permission to copy and/or distribute it, ! # with or without modifications, as long as this notice is preserved. - # serial 12 ! # This macro actually does too much. Some checks are only needed if ! # your package does certain things. But this isn't really a big deal. ! # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) ! # AM_INIT_AUTOMAKE([OPTIONS]) ! # ----------------------------------------------- ! # The call with PACKAGE and VERSION arguments is the old style ! # call (pre autoconf-2.50), which is being phased out. PACKAGE ! # and VERSION should now be passed to AC_INIT and removed from ! # the call to AM_INIT_AUTOMAKE. ! # We support both call styles for the transition. After ! # the next Automake release, Autoconf can make the AC_INIT ! # arguments mandatory, and then we can depend on a new Autoconf ! # release and drop the old call support. ! AC_DEFUN([AM_INIT_AUTOMAKE], ! [AC_PREREQ([2.58])dnl ! dnl Autoconf wants to disallow AM_ names. We explicitly allow ! dnl the ones we care about. ! m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl ! AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl ! AC_REQUIRE([AC_PROG_INSTALL])dnl ! # test to see if srcdir already configured ! if test "`cd $srcdir && pwd`" != "`pwd`" && ! test -f $srcdir/config.status; then ! AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) ! fi ! # test whether we have cygpath ! if test -z "$CYGPATH_W"; then ! if (cygpath --version) >/dev/null 2>/dev/null; then ! CYGPATH_W='cygpath -w' ! else ! CYGPATH_W=echo fi ! fi ! AC_SUBST([CYGPATH_W]) ! # Define the identity of the package. ! dnl Distinguish between old-style and new-style calls. ! m4_ifval([$2], ! [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl ! AC_SUBST([PACKAGE], [$1])dnl ! AC_SUBST([VERSION], [$2])], ! [_AM_SET_OPTIONS([$1])dnl ! AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl ! AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl ! _AM_IF_OPTION([no-define],, ! [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) ! AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl ! # Some tools Automake needs. ! AC_REQUIRE([AM_SANITY_CHECK])dnl ! AC_REQUIRE([AC_ARG_PROGRAM])dnl ! AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) ! AM_MISSING_PROG(AUTOCONF, autoconf) ! AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) ! AM_MISSING_PROG(AUTOHEADER, autoheader) ! AM_MISSING_PROG(MAKEINFO, makeinfo) ! AM_PROG_INSTALL_SH ! AM_PROG_INSTALL_STRIP ! AC_REQUIRE([AM_PROG_MKDIR_P])dnl ! # We need awk for the "check" target. The system "awk" is bad on ! # some platforms. ! AC_REQUIRE([AC_PROG_AWK])dnl ! AC_REQUIRE([AC_PROG_MAKE_SET])dnl ! AC_REQUIRE([AM_SET_LEADING_DOT])dnl ! _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], ! [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], ! [_AM_PROG_TAR([v7])])]) ! _AM_IF_OPTION([no-dependencies],, ! [AC_PROVIDE_IFELSE([AC_PROG_CC], ! [_AM_DEPENDENCIES(CC)], ! [define([AC_PROG_CC], ! defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl ! AC_PROVIDE_IFELSE([AC_PROG_CXX], ! [_AM_DEPENDENCIES(CXX)], ! [define([AC_PROG_CXX], ! defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl ! ]) ! ]) ! # When config.status generates a header, we must update the stamp-h file. ! # This file resides in the same directory as the config header ! # that is generated. The stamp files are numbered to have different names. ! # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the ! # loop where config.status creates the headers, so we can generate ! # our stamp files there. ! AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], ! [# Compute $1's index in $config_headers. ! _am_stamp_count=1 ! for _am_header in $config_headers :; do ! case $_am_header in ! $1 | $1:* ) ! break ;; ! * ) ! _am_stamp_count=`expr $_am_stamp_count + 1` ;; ! esac ! done ! echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count]) ! # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. ! # ! # This file is free software; the Free Software Foundation ! # gives unlimited permission to copy and/or distribute it, ! # with or without modifications, as long as this notice is preserved. ! # AM_PROG_INSTALL_SH ! # ------------------ ! # Define $install_sh. ! AC_DEFUN([AM_PROG_INSTALL_SH], ! [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl ! install_sh=${install_sh-"$am_aux_dir/install-sh"} ! AC_SUBST(install_sh)]) ! # Copyright (C) 2003, 2005 Free Software Foundation, Inc. ! # ! # This file is free software; the Free Software Foundation ! # gives unlimited permission to copy and/or distribute it, ! # with or without modifications, as long as this notice is preserved. ! # serial 2 ! # Check whether the underlying file-system supports filenames ! # with a leading dot. For instance MS-DOS doesn't. ! AC_DEFUN([AM_SET_LEADING_DOT], ! [rm -rf .tst 2>/dev/null ! mkdir .tst 2>/dev/null ! if test -d .tst; then ! am__leading_dot=. ! else ! am__leading_dot=_ fi - rmdir .tst 2>/dev/null - AC_SUBST([am__leading_dot])]) ! # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- ! # From Jim Meyering ! # Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005 ! # Free Software Foundation, Inc. ! # ! # This file is free software; the Free Software Foundation ! # gives unlimited permission to copy and/or distribute it, ! # with or without modifications, as long as this notice is preserved. ! # serial 4 ! AC_DEFUN([AM_MAINTAINER_MODE], ! [AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) ! dnl maintainer-mode is disabled by default ! AC_ARG_ENABLE(maintainer-mode, ! [ --enable-maintainer-mode enable make rules and dependencies not useful ! (and sometimes confusing) to the casual installer], ! USE_MAINTAINER_MODE=$enableval, ! USE_MAINTAINER_MODE=no) ! AC_MSG_RESULT([$USE_MAINTAINER_MODE]) ! AM_CONDITIONAL(MAINTAINER_MODE, [test $USE_MAINTAINER_MODE = yes]) ! MAINT=$MAINTAINER_MODE_TRUE ! AC_SUBST(MAINT)dnl ! ] ! ) ! AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) ! # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- - # Copyright (C) 1997, 1999, 2000, 2001, 2003, 2005 - # Free Software Foundation, Inc. - # - # This file is free software; the Free Software Foundation - # gives unlimited permission to copy and/or distribute it, - # with or without modifications, as long as this notice is preserved. ! # serial 4 ! # AM_MISSING_PROG(NAME, PROGRAM) ! # ------------------------------ ! AC_DEFUN([AM_MISSING_PROG], ! [AC_REQUIRE([AM_MISSING_HAS_RUN]) ! $1=${$1-"${am_missing_run}$2"} ! AC_SUBST($1)]) ! # AM_MISSING_HAS_RUN ! # ------------------ ! # Define MISSING if not defined so far and test if it supports --run. ! # If it does, set am_missing_run to use it, otherwise, to nothing. ! AC_DEFUN([AM_MISSING_HAS_RUN], ! [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl ! test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" ! # Use eval to expand $SHELL ! if eval "$MISSING --run true"; then ! am_missing_run="$MISSING --run " ! else ! am_missing_run= ! AC_MSG_WARN([`missing' script is too old or missing]) ! fi ]) - # Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc. - # - # This file is free software; the Free Software Foundation - # gives unlimited permission to copy and/or distribute it, - # with or without modifications, as long as this notice is preserved. ! # AM_PROG_MKDIR_P ! # --------------- ! # Check whether `mkdir -p' is supported, fallback to mkinstalldirs otherwise. ! # ! # Automake 1.8 used `mkdir -m 0755 -p --' to ensure that directories ! # created by `make install' are always world readable, even if the ! # installer happens to have an overly restrictive umask (e.g. 077). ! # This was a mistake. There are at least two reasons why we must not ! # use `-m 0755': ! # - it causes special bits like SGID to be ignored, ! # - it may be too restrictive (some setups expect 775 directories). ! # ! # Do not use -m 0755 and let people choose whatever they expect by ! # setting umask. ! # ! # We cannot accept any implementation of `mkdir' that recognizes `-p'. ! # Some implementations (such as Solaris 8's) are not thread-safe: if a ! # parallel make tries to run `mkdir -p a/b' and `mkdir -p a/c' ! # concurrently, both version can detect that a/ is missing, but only ! # one can create it and the other will error out. Consequently we ! # restrict ourselves to GNU make (using the --version option ensures ! # this.) ! AC_DEFUN([AM_PROG_MKDIR_P], ! [if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then ! # We used to keeping the `.' as first argument, in order to ! # allow $(mkdir_p) to be used without argument. As in ! # $(mkdir_p) $(somedir) ! # where $(somedir) is conditionally defined. However this is wrong ! # for two reasons: ! # 1. if the package is installed by a user who cannot write `.' ! # make install will fail, ! # 2. the above comment should most certainly read ! # $(mkdir_p) $(DESTDIR)$(somedir) ! # so it does not work when $(somedir) is undefined and ! # $(DESTDIR) is not. ! # To support the latter case, we have to write ! # test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir), ! # so the `.' trick is pointless. ! mkdir_p='mkdir -p --' ! else ! # On NextStep and OpenStep, the `mkdir' command does not ! # recognize any option. It will interpret all options as ! # directories to create, and then abort because `.' already ! # exists. ! for d in ./-p ./--version; ! do ! test -d $d && rmdir $d ! done ! # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists. ! if test -f "$ac_aux_dir/mkinstalldirs"; then ! mkdir_p='$(mkinstalldirs)' ! else ! mkdir_p='$(install_sh) -d' ! fi ! fi ! AC_SUBST([mkdir_p])]) - # Helper functions for option handling. -*- Autoconf -*- ! # Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc. ! # ! # This file is free software; the Free Software Foundation ! # gives unlimited permission to copy and/or distribute it, ! # with or without modifications, as long as this notice is preserved. - # serial 3 ! # _AM_MANGLE_OPTION(NAME) ! # ----------------------- ! AC_DEFUN([_AM_MANGLE_OPTION], ! [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) - # _AM_SET_OPTION(NAME) - # ------------------------------ - # Set option NAME. Presently that only means defining a flag for this option. - AC_DEFUN([_AM_SET_OPTION], - [m4_define(_AM_MANGLE_OPTION([$1]), 1)]) ! # _AM_SET_OPTIONS(OPTIONS) ! # ---------------------------------- ! # OPTIONS is a space-separated list of Automake options. ! AC_DEFUN([_AM_SET_OPTIONS], ! [AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) - # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) - # ------------------------------------------- - # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. - AC_DEFUN([_AM_IF_OPTION], - [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) ! # Check to make sure that the build environment is sane. -*- Autoconf -*- ! # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 ! # Free Software Foundation, Inc. ! # ! # This file is free software; the Free Software Foundation ! # gives unlimited permission to copy and/or distribute it, ! # with or without modifications, as long as this notice is preserved. ! # serial 4 ! # AM_SANITY_CHECK ! # --------------- ! AC_DEFUN([AM_SANITY_CHECK], ! [AC_MSG_CHECKING([whether build environment is sane]) ! # Just in case ! sleep 1 ! echo timestamp > conftest.file ! # Do `set' in a subshell so we don't clobber the current shell's ! # arguments. Must try -L first in case configure is actually a ! # symlink; some systems play weird games with the mod time of symlinks ! # (eg FreeBSD returns the mod time of the symlink's containing ! # directory). ! if ( ! set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` ! if test "$[*]" = "X"; then ! # -L didn't work. ! set X `ls -t $srcdir/configure conftest.file` ! fi ! rm -f conftest.file ! if test "$[*]" != "X $srcdir/configure conftest.file" \ ! && test "$[*]" != "X conftest.file $srcdir/configure"; then ! # If neither matched, then we have a broken ls. This can happen ! # if, for instance, CONFIG_SHELL is bash and it inherits a ! # broken ls alias from the environment. This has actually ! # happened. Such a system could not be considered "sane". ! AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken ! alias in your environment]) ! fi ! test "$[2]" = conftest.file ! ) ! then ! # Ok. ! : ! else ! AC_MSG_ERROR([newly created file is older than distributed files! ! Check your system clock]) fi - AC_MSG_RESULT(yes)]) ! # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. ! # ! # This file is free software; the Free Software Foundation ! # gives unlimited permission to copy and/or distribute it, ! # with or without modifications, as long as this notice is preserved. ! # AM_PROG_INSTALL_STRIP ! # --------------------- ! # One issue with vendor `install' (even GNU) is that you can't ! # specify the program used to strip binaries. This is especially ! # annoying in cross-compiling environments, where the build's strip ! # is unlikely to handle the host's binaries. ! # Fortunately install-sh will honor a STRIPPROG variable, so we ! # always use install-sh in `make install-strip', and initialize ! # STRIPPROG with the value of the STRIP variable (set by the user). ! AC_DEFUN([AM_PROG_INSTALL_STRIP], ! [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl ! # Installed binaries are usually stripped using `strip' when the user ! # run `make install-strip'. However `strip' might not be the right ! # tool to use in cross-compilation environments, therefore Automake ! # will honor the `STRIP' environment variable to overrule this program. ! dnl Don't test for $cross_compiling = yes, because it might be `maybe'. ! if test "$cross_compiling" != no; then ! AC_CHECK_TOOL([STRIP], [strip], :) ! fi ! INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s" ! AC_SUBST([INSTALL_STRIP_PROGRAM])]) ! # Check how to create a tarball. -*- Autoconf -*- ! # Copyright (C) 2004, 2005 Free Software Foundation, Inc. ! # ! # This file is free software; the Free Software Foundation ! # gives unlimited permission to copy and/or distribute it, ! # with or without modifications, as long as this notice is preserved. ! # serial 2 ! # _AM_PROG_TAR(FORMAT) ! # -------------------- ! # Check how to create a tarball in format FORMAT. ! # FORMAT should be one of `v7', `ustar', or `pax'. ! # ! # Substitute a variable $(am__tar) that is a command ! # writing to stdout a FORMAT-tarball containing the directory ! # $tardir. ! # tardir=directory && $(am__tar) > result.tar ! # ! # Substitute a variable $(am__untar) that extract such ! # a tarball read from stdin. ! # $(am__untar) < result.tar ! AC_DEFUN([_AM_PROG_TAR], ! [# Always define AMTAR for backward compatibility. ! AM_MISSING_PROG([AMTAR], [tar]) ! m4_if([$1], [v7], ! [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'], ! [m4_case([$1], [ustar],, [pax],, ! [m4_fatal([Unknown tar format])]) ! AC_MSG_CHECKING([how to create a $1 tar archive]) ! # Loop over all known methods to create a tar archive until one works. ! _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' ! _am_tools=${am_cv_prog_tar_$1-$_am_tools} ! # Do not fold the above two line into one, because Tru64 sh and ! # Solaris sh will not grok spaces in the rhs of `-'. ! for _am_tool in $_am_tools ! do ! case $_am_tool in ! gnutar) ! for _am_tar in tar gnutar gtar; ! do ! AM_RUN_LOG([$_am_tar --version]) && break ! done ! am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' ! am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' ! am__untar="$_am_tar -xf -" ! ;; ! plaintar) ! # Must skip GNU tar: if it does not support --format= it doesn't create ! # ustar tarball either. ! (tar --version) >/dev/null 2>&1 && continue ! am__tar='tar chf - "$$tardir"' ! am__tar_='tar chf - "$tardir"' ! am__untar='tar xf -' ! ;; ! pax) ! am__tar='pax -L -x $1 -w "$$tardir"' ! am__tar_='pax -L -x $1 -w "$tardir"' ! am__untar='pax -r' ! ;; ! cpio) ! am__tar='find "$$tardir" -print | cpio -o -H $1 -L' ! am__tar_='find "$tardir" -print | cpio -o -H $1 -L' ! am__untar='cpio -i -H $1 -d' ! ;; ! none) ! am__tar=false ! am__tar_=false ! am__untar=false ! ;; ! esac ! # If the value was cached, stop now. We just wanted to have am__tar ! # and am__untar set. ! test -n "${am_cv_prog_tar_$1}" && break - # tar/untar a dummy directory, and stop if the command works - rm -rf conftest.dir - mkdir conftest.dir - echo GrepMe > conftest.dir/file - AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) - rm -rf conftest.dir - if test -s conftest.tar; then - AM_RUN_LOG([$am__untar /dev/null 2>&1 && break - fi - done - rm -rf conftest.dir ! AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) ! AC_MSG_RESULT([$am_cv_prog_tar_$1])]) ! AC_SUBST([am__tar]) ! AC_SUBST([am__untar]) ! ]) # _AM_PROG_TAR ! # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- ! # serial 48 AC_PROG_LIBTOOL ! # AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED) ! # ----------------------------------------------------------- ! # If this macro is not defined by Autoconf, define it here. ! m4_ifdef([AC_PROVIDE_IFELSE], ! [], ! [m4_define([AC_PROVIDE_IFELSE], ! [m4_ifdef([AC_PROVIDE_$1], ! [$2], [$3])])]) ! # AC_PROG_LIBTOOL ! # --------------- ! AC_DEFUN([AC_PROG_LIBTOOL], ! [AC_REQUIRE([_AC_PROG_LIBTOOL])dnl ! dnl If AC_PROG_CXX has already been expanded, run AC_LIBTOOL_CXX ! dnl immediately, otherwise, hook it in at the end of AC_PROG_CXX. ! AC_PROVIDE_IFELSE([AC_PROG_CXX], ! [AC_LIBTOOL_CXX], ! [define([AC_PROG_CXX], defn([AC_PROG_CXX])[AC_LIBTOOL_CXX ! ])]) ! dnl And a similar setup for Fortran 77 support ! AC_PROVIDE_IFELSE([AC_PROG_F77], ! [AC_LIBTOOL_F77], ! [define([AC_PROG_F77], defn([AC_PROG_F77])[AC_LIBTOOL_F77 ! ])]) - dnl Quote A][M_PROG_GCJ so that aclocal doesn't bring it in needlessly. - dnl If either AC_PROG_GCJ or A][M_PROG_GCJ have already been expanded, run - dnl AC_LIBTOOL_GCJ immediately, otherwise, hook it in at the end of both. - AC_PROVIDE_IFELSE([AC_PROG_GCJ], - [AC_LIBTOOL_GCJ], - [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], - [AC_LIBTOOL_GCJ], - [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ], - [AC_LIBTOOL_GCJ], - [ifdef([AC_PROG_GCJ], - [define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[AC_LIBTOOL_GCJ])]) - ifdef([A][M_PROG_GCJ], - [define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[AC_LIBTOOL_GCJ])]) - ifdef([LT_AC_PROG_GCJ], - [define([LT_AC_PROG_GCJ], - defn([LT_AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])])]) - ])])# AC_PROG_LIBTOOL ! # _AC_PROG_LIBTOOL ! # ---------------- ! AC_DEFUN([_AC_PROG_LIBTOOL], ! [AC_REQUIRE([AC_LIBTOOL_SETUP])dnl ! AC_BEFORE([$0],[AC_LIBTOOL_CXX])dnl ! AC_BEFORE([$0],[AC_LIBTOOL_F77])dnl ! AC_BEFORE([$0],[AC_LIBTOOL_GCJ])dnl ! ! # This can be used to rebuild libtool when needed ! LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" - # Always use our own libtool. - LIBTOOL='$(SHELL) $(top_builddir)/libtool' - AC_SUBST(LIBTOOL)dnl ! # Prevent multiple expansion ! define([AC_PROG_LIBTOOL], []) ! ])# _AC_PROG_LIBTOOL - # AC_LIBTOOL_SETUP - # ---------------- - AC_DEFUN([AC_LIBTOOL_SETUP], - [AC_PREREQ(2.50)dnl - AC_REQUIRE([AC_ENABLE_SHARED])dnl - AC_REQUIRE([AC_ENABLE_STATIC])dnl - AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl - AC_REQUIRE([AC_CANONICAL_HOST])dnl - AC_REQUIRE([AC_CANONICAL_BUILD])dnl - AC_REQUIRE([AC_PROG_CC])dnl - AC_REQUIRE([AC_PROG_LD])dnl - AC_REQUIRE([AC_PROG_LD_RELOAD_FLAG])dnl - AC_REQUIRE([AC_PROG_NM])dnl ! AC_REQUIRE([AC_PROG_LN_S])dnl ! AC_REQUIRE([AC_DEPLIBS_CHECK_METHOD])dnl ! # Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! ! AC_REQUIRE([AC_OBJEXT])dnl ! AC_REQUIRE([AC_EXEEXT])dnl ! dnl ! AC_LIBTOOL_SYS_MAX_CMD_LEN ! AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE ! AC_LIBTOOL_OBJDIR ! AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl ! _LT_AC_PROG_ECHO_BACKSLASH ! case $host_os in ! aix3*) ! # AIX sometimes has problems with the GCC collect2 program. For some ! # reason, if we set the COLLECT_NAMES environment variable, the problems ! # vanish in a puff of smoke. ! if test "X${COLLECT_NAMES+set}" != Xset; then ! COLLECT_NAMES= ! export COLLECT_NAMES ! fi ! ;; ! esac ! # Sed substitution that helps us do robust quoting. It backslashifies ! # metacharacters that are still active within double-quoted strings. ! Xsed='sed -e 1s/^X//' ! [sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g'] ! # Same as above, but do not quote variable references. ! [double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g'] ! # Sed substitution to delay expansion of an escaped shell variable in a ! # double_quote_subst'ed string. ! delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' ! # Sed substitution to avoid accidental globbing in evaled expressions ! no_glob_subst='s/\*/\\\*/g' - # Constants: - rm="rm -f" ! # Global variables: ! default_ofile=libtool ! can_build_shared=yes - # All known linkers require a `.a' archive for static linking (except MSVC, - # which needs '.lib'). - libext=a - ltmain="$ac_aux_dir/ltmain.sh" - ofile="$default_ofile" - with_gnu_ld="$lt_cv_prog_gnu_ld" ! AC_CHECK_TOOL(AR, ar, false) ! AC_CHECK_TOOL(RANLIB, ranlib, :) ! AC_CHECK_TOOL(STRIP, strip, :) ! old_CC="$CC" ! old_CFLAGS="$CFLAGS" ! # Set sane defaults for various variables ! test -z "$AR" && AR=ar ! test -z "$AR_FLAGS" && AR_FLAGS=cru ! test -z "$AS" && AS=as ! test -z "$CC" && CC=cc ! test -z "$LTCC" && LTCC=$CC ! test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS ! test -z "$DLLTOOL" && DLLTOOL=dlltool ! test -z "$LD" && LD=ld ! test -z "$LN_S" && LN_S="ln -s" ! test -z "$MAGIC_CMD" && MAGIC_CMD=file ! test -z "$NM" && NM=nm ! test -z "$SED" && SED=sed ! test -z "$OBJDUMP" && OBJDUMP=objdump ! test -z "$RANLIB" && RANLIB=: ! test -z "$STRIP" && STRIP=: ! test -z "$ac_objext" && ac_objext=o ! # Determine commands to create old-style static archives. ! old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs$old_deplibs' ! old_postinstall_cmds='chmod 644 $oldlib' ! old_postuninstall_cmds= ! if test -n "$RANLIB"; then ! case $host_os in ! openbsd*) ! old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" ! ;; ! *) ! old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" ! ;; ! esac ! old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" ! fi ! _LT_CC_BASENAME([$compiler]) ! # Only perform the check for file, if the check method requires it ! case $deplibs_check_method in ! file_magic*) ! if test "$file_magic_cmd" = '$MAGIC_CMD'; then ! AC_PATH_MAGIC fi ! ;; ! esac - AC_PROVIDE_IFELSE([AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no) - AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL], - enable_win32_dll=yes, enable_win32_dll=no) ! AC_ARG_ENABLE([libtool-lock], ! [AC_HELP_STRING([--disable-libtool-lock], ! [avoid locking (might break parallel builds)])]) ! test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes ! AC_ARG_WITH([pic], ! [AC_HELP_STRING([--with-pic], ! [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], ! [pic_mode="$withval"], ! [pic_mode=default]) ! test -z "$pic_mode" && pic_mode=default ! # Use C for the default configuration in the libtool script ! tagname= ! AC_LIBTOOL_LANG_C_CONFIG ! _LT_AC_TAGCONFIG ! ])# AC_LIBTOOL_SETUP ! # _LT_AC_SYS_COMPILER ! # ------------------- ! AC_DEFUN([_LT_AC_SYS_COMPILER], ! [AC_REQUIRE([AC_PROG_CC])dnl ! # If no C compiler was specified, use CC. ! LTCC=${LTCC-"$CC"} ! # If no C compiler flags were specified, use CFLAGS. ! LTCFLAGS=${LTCFLAGS-"$CFLAGS"} ! # Allow CC to be a program name with arguments. ! compiler=$CC ! ])# _LT_AC_SYS_COMPILER ! # _LT_CC_BASENAME(CC) ! # ------------------- ! # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. ! AC_DEFUN([_LT_CC_BASENAME], ! [for cc_temp in $1""; do ! case $cc_temp in ! compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; ! distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; ! \-*) ;; ! *) break;; ! esac ! done ! cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` ! ]) ! # _LT_COMPILER_BOILERPLATE ! # ------------------------ ! # Check for compiler boilerplate output or warnings with ! # the simple compiler test code. ! AC_DEFUN([_LT_COMPILER_BOILERPLATE], ! [ac_outfile=conftest.$ac_objext ! printf "$lt_simple_compile_test_code" >conftest.$ac_ext ! eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err ! _lt_compiler_boilerplate=`cat conftest.err` ! $rm conftest* ! ])# _LT_COMPILER_BOILERPLATE ! ! # _LT_LINKER_BOILERPLATE ! # ---------------------- ! # Check for linker boilerplate output or warnings with ! # the simple link test code. ! AC_DEFUN([_LT_LINKER_BOILERPLATE], ! [ac_outfile=conftest.$ac_objext ! printf "$lt_simple_link_test_code" >conftest.$ac_ext ! eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err ! _lt_linker_boilerplate=`cat conftest.err` ! $rm conftest* ! ])# _LT_LINKER_BOILERPLATE ! # _LT_AC_SYS_LIBPATH_AIX ! # ---------------------- ! # Links a minimal program and checks the executable ! # for the system default hardcoded library path. In most cases, ! # this is /usr/lib:/lib, but when the MPI compilers are used ! # the location of the communication and MPI libs are included too. ! # If we don't find anything, use the default library path according ! # to the aix ld manual. ! AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX], ! [AC_LINK_IFELSE(AC_LANG_PROGRAM,[ ! aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } ! }'` ! # Check for a 64-bit object if we didn't find anything. ! if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } ! }'`; fi],[]) ! if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi ! ])# _LT_AC_SYS_LIBPATH_AIX ! # _LT_AC_SHELL_INIT(ARG) ! # ---------------------- ! AC_DEFUN([_LT_AC_SHELL_INIT], ! [ifdef([AC_DIVERSION_NOTICE], ! [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)], ! [AC_DIVERT_PUSH(NOTICE)]) ! $1 ! AC_DIVERT_POP ! ])# _LT_AC_SHELL_INIT - # _LT_AC_PROG_ECHO_BACKSLASH - # -------------------------- - # Add some code to the start of the generated configure script which - # will find an echo command which doesn't interpret backslashes. - AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH], - [_LT_AC_SHELL_INIT([ - # Check that we are running under the correct shell. - SHELL=${CONFIG_SHELL-/bin/sh} ! case X$ECHO in ! X*--fallback-echo) ! # Remove one level of quotation (which was required for Make). ! ECHO=`echo "$ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','` ! ;; ! esac ! echo=${ECHO-echo} ! if test "X[$]1" = X--no-reexec; then ! # Discard the --no-reexec flag, and continue. ! shift ! elif test "X[$]1" = X--fallback-echo; then ! # Avoid inline document here, it may be left over ! : ! elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then ! # Yippee, $echo works! ! : else ! # Restart under the correct shell. ! exec $SHELL "[$]0" --no-reexec ${1+"[$]@"} fi ! if test "X[$]1" = X--fallback-echo; then ! # used as fallback echo ! shift ! cat </dev/null 2>&1 && unset CDPATH ! if test -z "$ECHO"; then ! if test "X${echo_test_string+set}" != Xset; then ! # find a string as large as possible, as long as the shell can cope with it ! for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do ! # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... ! if (echo_test_string=`eval $cmd`) 2>/dev/null && ! echo_test_string=`eval $cmd` && ! (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null ! then ! break ! fi ! done ! fi ! if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && ! echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && ! test "X$echo_testing_string" = "X$echo_test_string"; then ! : else ! # The Solaris, AIX, and Digital Unix default echo programs unquote ! # backslashes. This makes it impossible to quote backslashes using ! # echo "$something" | sed 's/\\/\\\\/g' ! # ! # So, first we look for a working echo in the user's PATH. ! ! lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ! for dir in $PATH /usr/ucb; do ! IFS="$lt_save_ifs" ! if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && ! test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && ! echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && ! test "X$echo_testing_string" = "X$echo_test_string"; then ! echo="$dir/echo" ! break ! fi ! done ! IFS="$lt_save_ifs" ! if test "X$echo" = Xecho; then ! # We didn't find a better echo, so look for alternatives. ! if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' && ! echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` && ! test "X$echo_testing_string" = "X$echo_test_string"; then ! # This shell has a builtin print -r that does the trick. ! echo='print -r' ! elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) && ! test "X$CONFIG_SHELL" != X/bin/ksh; then ! # If we have ksh, try running configure again with it. ! ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} ! export ORIGINAL_CONFIG_SHELL ! CONFIG_SHELL=/bin/ksh ! export CONFIG_SHELL ! exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"} ! else ! # Try using printf. ! echo='printf %s\n' ! if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && ! echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && ! test "X$echo_testing_string" = "X$echo_test_string"; then ! # Cool, printf works ! : ! elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && ! test "X$echo_testing_string" = 'X\t' && ! echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && ! test "X$echo_testing_string" = "X$echo_test_string"; then ! CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL ! export CONFIG_SHELL ! SHELL="$CONFIG_SHELL" ! export SHELL ! echo="$CONFIG_SHELL [$]0 --fallback-echo" ! elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && ! test "X$echo_testing_string" = 'X\t' && ! echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && ! test "X$echo_testing_string" = "X$echo_test_string"; then ! echo="$CONFIG_SHELL [$]0 --fallback-echo" ! else ! # maybe with a smaller string... ! prev=: - for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do - if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null - then - break - fi - prev="$cmd" - done ! if test "$prev" != 'sed 50q "[$]0"'; then ! echo_test_string=`eval $prev` ! export echo_test_string ! exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"} ! else ! # Oops. We lost completely, so just stick with echo. ! echo=echo ! fi ! fi ! fi ! fi fi fi ! # Copy echo and quote the copy suitably for passing to libtool from ! # the Makefile, instead of quoting the original, which is used later. ! ECHO=$echo ! if test "X$ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then ! ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo" fi ! AC_SUBST(ECHO) ! ])])# _LT_AC_PROG_ECHO_BACKSLASH ! # _LT_AC_LOCK ! # ----------- ! AC_DEFUN([_LT_AC_LOCK], ! [AC_ARG_ENABLE([libtool-lock], ! [AC_HELP_STRING([--disable-libtool-lock], ! [avoid locking (might break parallel builds)])]) ! test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes ! # Some flags need to be propagated to the compiler or linker for good ! # libtool support. ! case $host in ! ia64-*-hpux*) ! # Find out which ABI we are using. ! echo 'int i;' > conftest.$ac_ext ! if AC_TRY_EVAL(ac_compile); then ! case `/usr/bin/file conftest.$ac_objext` in ! *ELF-32*) ! HPUX_IA64_MODE="32" ! ;; ! *ELF-64*) ! HPUX_IA64_MODE="64" ;; esac fi - rm -rf conftest* ;; ! *-*-irix6*) ! # Find out which ABI we are using. ! echo '[#]line __oline__ "configure"' > conftest.$ac_ext ! if AC_TRY_EVAL(ac_compile); then ! if test "$lt_cv_prog_gnu_ld" = yes; then ! case `/usr/bin/file conftest.$ac_objext` in ! *32-bit*) ! LD="${LD-ld} -melf32bsmip" ! ;; ! *N32*) ! LD="${LD-ld} -melf32bmipn32" ! ;; ! *64-bit*) ! LD="${LD-ld} -melf64bmip" ! ;; ! esac ! else ! case `/usr/bin/file conftest.$ac_objext` in ! *32-bit*) ! LD="${LD-ld} -32" ! ;; ! *N32*) ! LD="${LD-ld} -n32" ! ;; ! *64-bit*) ! LD="${LD-ld} -64" ! ;; ! esac ! fi ! fi ! rm -rf conftest* ;; ! x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*) ! # Find out which ABI we are using. ! echo 'int i;' > conftest.$ac_ext ! if AC_TRY_EVAL(ac_compile); then ! case `/usr/bin/file conftest.o` in ! *32-bit*) ! case $host in ! x86_64-*linux*) ! LD="${LD-ld} -m elf_i386" ! ;; ! ppc64-*linux*|powerpc64-*linux*) ! LD="${LD-ld} -m elf32ppclinux" ! ;; ! s390x-*linux*) ! LD="${LD-ld} -m elf_s390" ! ;; ! sparc64-*linux*) ! LD="${LD-ld} -m elf32_sparc" ! ;; ! esac ! ;; ! *64-bit*) ! case $host in ! x86_64-*linux*) ! LD="${LD-ld} -m elf_x86_64" ! ;; ! ppc*-*linux*|powerpc*-*linux*) ! LD="${LD-ld} -m elf64ppc" ! ;; ! s390*-*linux*) ! LD="${LD-ld} -m elf64_s390" ! ;; ! sparc*-*linux*) ! LD="${LD-ld} -m elf64_sparc" ! ;; ! esac ! ;; ! esac ! fi ! rm -rf conftest* ;; ! *-*-sco3.2v5*) ! # On SCO OpenServer 5, we need -belf to get full-featured binaries. ! SAVE_CFLAGS="$CFLAGS" ! CFLAGS="$CFLAGS -belf" ! AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, ! [AC_LANG_PUSH(C) ! AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) ! AC_LANG_POP]) ! if test x"$lt_cv_cc_needs_belf" != x"yes"; then ! # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf ! CFLAGS="$SAVE_CFLAGS" ! fi ;; ! sparc*-*solaris*) ! # Find out which ABI we are using. ! echo 'int i;' > conftest.$ac_ext ! if AC_TRY_EVAL(ac_compile); then ! case `/usr/bin/file conftest.o` in ! *64-bit*) ! case $lt_cv_prog_gnu_ld in ! yes*) LD="${LD-ld} -m elf64_sparc" ;; ! *) LD="${LD-ld} -64" ;; ! esac ;; esac fi ! rm -rf conftest* ;; ! AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL], ! [*-*-cygwin* | *-*-mingw* | *-*-pw32*) ! AC_CHECK_TOOL(DLLTOOL, dlltool, false) ! AC_CHECK_TOOL(AS, as, false) ! AC_CHECK_TOOL(OBJDUMP, objdump, false) ;; - ]) - esac ! need_locks="$enable_libtool_lock" ! ])# _LT_AC_LOCK ! # AC_LIBTOOL_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, ! # [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) ! # ---------------------------------------------------------------- ! # Check whether the given compiler option works ! AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], ! [AC_REQUIRE([LT_AC_PROG_SED]) ! AC_CACHE_CHECK([$1], [$2], ! [$2=no ! ifelse([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) ! printf "$lt_simple_compile_test_code" > conftest.$ac_ext ! lt_compiler_flag="$3" ! # Insert the option either (1) after the last *FLAGS variable, or ! # (2) before a word containing "conftest.", or (3) at the end. ! # Note that $ac_compile itself does not contain backslashes and begins ! # with a dollar sign (not a hyphen), so the echo should work correctly. ! # The option is referenced via a variable to avoid confusing sed. ! lt_compile=`echo "$ac_compile" | $SED \ ! -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ ! -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ ! -e 's:$: $lt_compiler_flag:'` ! (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) ! (eval "$lt_compile" 2>conftest.err) ! ac_status=$? ! cat conftest.err >&AS_MESSAGE_LOG_FD ! echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD ! if (exit $ac_status) && test -s "$ac_outfile"; then ! # The compiler can only warn and ignore the option if not recognized ! # So say no if there are warnings other than the usual output. ! $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp ! $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 ! if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then ! $2=yes ! fi ! fi ! $rm conftest* ! ]) ! if test x"[$]$2" = xyes; then ! ifelse([$5], , :, [$5]) ! else ! ifelse([$6], , :, [$6]) ! fi ! ])# AC_LIBTOOL_COMPILER_OPTION ! ! ! # AC_LIBTOOL_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, ! # [ACTION-SUCCESS], [ACTION-FAILURE]) ! # ------------------------------------------------------------ ! # Check whether the given compiler option works ! AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], ! [AC_CACHE_CHECK([$1], [$2], ! [$2=no ! save_LDFLAGS="$LDFLAGS" ! LDFLAGS="$LDFLAGS $3" ! printf "$lt_simple_link_test_code" > conftest.$ac_ext ! if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then ! # The linker can only warn and ignore the option if not recognized ! # So say no if there are warnings ! if test -s conftest.err; then ! # Append any errors to the config.log. ! cat conftest.err 1>&AS_MESSAGE_LOG_FD ! $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp ! $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 ! if diff conftest.exp conftest.er2 >/dev/null; then ! $2=yes ! fi ! else ! $2=yes ! fi ! fi ! $rm conftest* ! LDFLAGS="$save_LDFLAGS" ! ]) ! ! if test x"[$]$2" = xyes; then ! ifelse([$4], , :, [$4]) ! else ! ifelse([$5], , :, [$5]) ! fi ! ])# AC_LIBTOOL_LINKER_OPTION ! ! ! # AC_LIBTOOL_SYS_MAX_CMD_LEN ! # -------------------------- ! AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], ! [# find the maximum length of command line arguments ! AC_MSG_CHECKING([the maximum length of command line arguments]) ! AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl ! i=0 ! teststring="ABCD" ! ! case $build_os in ! msdosdjgpp*) ! # On DJGPP, this test can blow up pretty badly due to problems in libc ! # (any single argument exceeding 2000 bytes causes a buffer overrun ! # during glob expansion). Even if it were fixed, the result of this ! # check would be larger than it should be. ! lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; ! ! gnu*) ! # Under GNU Hurd, this test is not required because there is ! # no limit to the length of command line arguments. ! # Libtool will interpret -1 as no limit whatsoever ! lt_cv_sys_max_cmd_len=-1; ;; ! cygwin* | mingw*) ! # On Win9x/ME, this test blows up -- it succeeds, but takes ! # about 5 minutes as the teststring grows exponentially. ! # Worse, since 9x/ME are not pre-emptively multitasking, ! # you end up with a "frozen" computer, even though with patience ! # the test eventually succeeds (with a max line length of 256k). ! # Instead, let's just punt: use the minimum linelength reported by ! # all of the supported platforms: 8192 (on NT/2K/XP). ! lt_cv_sys_max_cmd_len=8192; ! ;; ! amigaos*) ! # On AmigaOS with pdksh, this test takes hours, literally. ! # So we just punt and use a minimum line length of 8192. ! lt_cv_sys_max_cmd_len=8192; ;; ! ! netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) ! # This has been around since 386BSD, at least. Likely further. ! if test -x /sbin/sysctl; then ! lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` ! elif test -x /usr/sbin/sysctl; then ! lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` ! else ! lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs ! fi ! # And add a safety zone ! lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` ! lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; ! interix*) ! # We know the value 262144 and hardcode it with a safety zone (like BSD) ! lt_cv_sys_max_cmd_len=196608 ! ;; ! osf*) ! # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure ! # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not ! # nice to cause kernel panics so lets avoid the loop below. ! # First set a reasonable default. ! lt_cv_sys_max_cmd_len=16384 ! # ! if test -x /sbin/sysconfig; then ! case `/sbin/sysconfig -q proc exec_disable_arg_limit` in ! *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ! ;; ! sco3.2v5*) ! lt_cv_sys_max_cmd_len=102400 ! ;; ! sysv5* | sco5v6* | sysv4.2uw2*) ! kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` ! if test -n "$kargmax"; then ! lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` ! else ! lt_cv_sys_max_cmd_len=32768 ! fi ! ;; ! *) ! # If test is not a shell built-in, we'll probably end up computing a ! # maximum length that is only half of the actual maximum length, but ! # we can't tell. ! SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} ! while (test "X"`$SHELL [$]0 --fallback-echo "X$teststring" 2>/dev/null` \ ! = "XX$teststring") >/dev/null 2>&1 && ! new_result=`expr "X$teststring" : ".*" 2>&1` && ! lt_cv_sys_max_cmd_len=$new_result && ! test $i != 17 # 1/2 MB should be enough ! do ! i=`expr $i + 1` ! teststring=$teststring$teststring ! done ! teststring= ! # Add a significant safety factor because C++ compilers can tack on massive ! # amounts of additional arguments before passing them to the linker. ! # It appears as though 1/2 is a usable value. ! lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` ;; esac - ]) - if test -n $lt_cv_sys_max_cmd_len ; then - AC_MSG_RESULT($lt_cv_sys_max_cmd_len) - else - AC_MSG_RESULT(none) - fi - ])# AC_LIBTOOL_SYS_MAX_CMD_LEN ! # _LT_AC_CHECK_DLFCN ! # ------------------ ! AC_DEFUN([_LT_AC_CHECK_DLFCN], ! [AC_CHECK_HEADERS(dlfcn.h)dnl ! ])# _LT_AC_CHECK_DLFCN ! ! ! # _LT_AC_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, ! # ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) ! # --------------------------------------------------------------------- ! AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF], ! [AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl ! if test "$cross_compiling" = yes; then : ! [$4] ! else ! lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 ! lt_status=$lt_dlunknown ! cat > conftest.$ac_ext < ! #endif ! ! #include ! ! #ifdef RTLD_GLOBAL ! # define LT_DLGLOBAL RTLD_GLOBAL ! #else ! # ifdef DL_GLOBAL ! # define LT_DLGLOBAL DL_GLOBAL ! # else ! # define LT_DLGLOBAL 0 ! # endif ! #endif ! ! /* We may have to define LT_DLLAZY_OR_NOW in the command line if we ! find out it does not work in some platform. */ ! #ifndef LT_DLLAZY_OR_NOW ! # ifdef RTLD_LAZY ! # define LT_DLLAZY_OR_NOW RTLD_LAZY ! # else ! # ifdef DL_LAZY ! # define LT_DLLAZY_OR_NOW DL_LAZY ! # else ! # ifdef RTLD_NOW ! # define LT_DLLAZY_OR_NOW RTLD_NOW ! # else ! # ifdef DL_NOW ! # define LT_DLLAZY_OR_NOW DL_NOW ! # else ! # define LT_DLLAZY_OR_NOW 0 ! # endif ! # endif ! # endif ! # endif ! #endif ! ! #ifdef __cplusplus ! extern "C" void exit (int); ! #endif ! void fnord() { int i=42;} ! int main () ! { ! void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); ! int status = $lt_dlunknown; ! if (self) ! { ! if (dlsym (self,"fnord")) status = $lt_dlno_uscore; ! else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; ! /* dlclose (self); */ ! } else ! puts (dlerror ()); ! ! exit (status); ! }] ! EOF ! if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then ! (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null ! lt_status=$? ! case x$lt_status in ! x$lt_dlno_uscore) $1 ;; ! x$lt_dlneed_uscore) $2 ;; ! x$lt_dlunknown|x*) $3 ;; ! esac ! else : ! # compilation failed ! $3 fi ! fi ! rm -fr conftest* ! ])# _LT_AC_TRY_DLOPEN_SELF ! # AC_LIBTOOL_DLOPEN_SELF ! # ---------------------- ! AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], ! [AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl ! if test "x$enable_dlopen" != xyes; then ! enable_dlopen=unknown ! enable_dlopen_self=unknown ! enable_dlopen_self_static=unknown ! else ! lt_cv_dlopen=no ! lt_cv_dlopen_libs= case $host_os in ! beos*) ! lt_cv_dlopen="load_add_on" ! lt_cv_dlopen_libs= ! lt_cv_dlopen_self=yes ! ;; ! ! mingw* | pw32*) ! lt_cv_dlopen="LoadLibrary" ! lt_cv_dlopen_libs= ! ;; ! ! cygwin*) ! lt_cv_dlopen="dlopen" ! lt_cv_dlopen_libs= ! ;; ! ! darwin*) ! # if libdl is installed we need to link against it ! AC_CHECK_LIB([dl], [dlopen], ! [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ ! lt_cv_dlopen="dyld" ! lt_cv_dlopen_libs= ! lt_cv_dlopen_self=yes ! ]) ! ;; ! ! *) ! AC_CHECK_FUNC([shl_load], ! [lt_cv_dlopen="shl_load"], ! [AC_CHECK_LIB([dld], [shl_load], ! [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld"], ! [AC_CHECK_FUNC([dlopen], ! [lt_cv_dlopen="dlopen"], ! [AC_CHECK_LIB([dl], [dlopen], ! [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], ! [AC_CHECK_LIB([svld], [dlopen], ! [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], ! [AC_CHECK_LIB([dld], [dld_link], ! [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"]) ! ]) ! ]) ! ]) ! ]) ! ]) ! ;; esac ! ! if test "x$lt_cv_dlopen" != xno; then ! enable_dlopen=yes else ! enable_dlopen=no fi ! case $lt_cv_dlopen in ! dlopen) ! save_CPPFLAGS="$CPPFLAGS" ! test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" ! ! save_LDFLAGS="$LDFLAGS" ! wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" ! ! save_LIBS="$LIBS" ! LIBS="$lt_cv_dlopen_libs $LIBS" ! AC_CACHE_CHECK([whether a program can dlopen itself], ! lt_cv_dlopen_self, [dnl ! _LT_AC_TRY_DLOPEN_SELF( ! lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, ! lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) ! ]) ! if test "x$lt_cv_dlopen_self" = xyes; then ! wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" ! AC_CACHE_CHECK([whether a statically linked program can dlopen itself], ! lt_cv_dlopen_self_static, [dnl ! _LT_AC_TRY_DLOPEN_SELF( ! lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, ! lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) ! ]) ! fi ! CPPFLAGS="$save_CPPFLAGS" ! LDFLAGS="$save_LDFLAGS" ! LIBS="$save_LIBS" ! ;; ! esac ! case $lt_cv_dlopen_self in ! yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; ! *) enable_dlopen_self=unknown ;; esac ! case $lt_cv_dlopen_self_static in ! yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; ! *) enable_dlopen_self_static=unknown ;; ! esac ! fi ! ])# AC_LIBTOOL_DLOPEN_SELF ! # AC_LIBTOOL_PROG_CC_C_O([TAGNAME]) ! # --------------------------------- ! # Check to see if options -c and -o are simultaneously supported by compiler ! AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O], ! [AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl ! AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], ! [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)], ! [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no ! $rm -r conftest 2>/dev/null ! mkdir conftest ! cd conftest ! mkdir out ! printf "$lt_simple_compile_test_code" > conftest.$ac_ext ! lt_compiler_flag="-o out/conftest2.$ac_objext" ! # Insert the option either (1) after the last *FLAGS variable, or ! # (2) before a word containing "conftest.", or (3) at the end. ! # Note that $ac_compile itself does not contain backslashes and begins ! # with a dollar sign (not a hyphen), so the echo should work correctly. ! lt_compile=`echo "$ac_compile" | $SED \ ! -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ ! -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ ! -e 's:$: $lt_compiler_flag:'` ! (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) ! (eval "$lt_compile" 2>out/conftest.err) ! ac_status=$? ! cat out/conftest.err >&AS_MESSAGE_LOG_FD ! echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD ! if (exit $ac_status) && test -s out/conftest2.$ac_objext ! then ! # The compiler can only warn and ignore the option if not recognized ! # So say no if there are warnings ! $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp ! $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 ! if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then ! _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes ! fi ! fi ! chmod u+w . 2>&AS_MESSAGE_LOG_FD ! $rm conftest* ! # SGI C++ compiler will create directory out/ii_files/ for ! # template instantiation ! test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files ! $rm out/* && rmdir out ! cd .. ! rmdir conftest ! $rm conftest* ! ]) ! ])# AC_LIBTOOL_PROG_CC_C_O ! # AC_LIBTOOL_SYS_HARD_LINK_LOCKS([TAGNAME]) ! # ----------------------------------------- ! # Check to see if we can do hard links to lock some files if needed ! AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], ! [AC_REQUIRE([_LT_AC_LOCK])dnl ! hard_links="nottested" ! if test "$_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then ! # do not overwrite the value of need_locks provided by the user ! AC_MSG_CHECKING([if we can lock with hard links]) ! hard_links=yes ! $rm conftest* ! ln conftest.a conftest.b 2>/dev/null && hard_links=no ! touch conftest.a ! ln conftest.a conftest.b 2>&5 || hard_links=no ! ln conftest.a conftest.b 2>/dev/null && hard_links=no ! AC_MSG_RESULT([$hard_links]) ! if test "$hard_links" = no; then ! AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) ! need_locks=warn fi - else - need_locks=no - fi - ])# AC_LIBTOOL_SYS_HARD_LINK_LOCKS ! # AC_LIBTOOL_OBJDIR ! # ----------------- ! AC_DEFUN([AC_LIBTOOL_OBJDIR], ! [AC_CACHE_CHECK([for objdir], [lt_cv_objdir], ! [rm -f .libs 2>/dev/null ! mkdir .libs 2>/dev/null ! if test -d .libs; then ! lt_cv_objdir=.libs ! else ! # MS-DOS does not allow filenames that begin with a dot. ! lt_cv_objdir=_libs ! fi ! rmdir .libs 2>/dev/null]) ! objdir=$lt_cv_objdir ! ])# AC_LIBTOOL_OBJDIR ! # AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([TAGNAME]) ! # ---------------------------------------------- ! # Check hardcoding attributes. ! AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], ! [AC_MSG_CHECKING([how to hardcode library paths into programs]) ! _LT_AC_TAGVAR(hardcode_action, $1)= ! if test -n "$_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)" || \ ! test -n "$_LT_AC_TAGVAR(runpath_var, $1)" || \ ! test "X$_LT_AC_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then ! # We can hardcode non-existant directories. ! if test "$_LT_AC_TAGVAR(hardcode_direct, $1)" != no && ! # If the only mechanism to avoid hardcoding is shlibpath_var, we ! # have to relink, otherwise we might link with an installed library ! # when we should be linking with a yet-to-be-installed one ! ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)" != no && ! test "$_LT_AC_TAGVAR(hardcode_minus_L, $1)" != no; then ! # Linking always hardcodes the temporary library directory. ! _LT_AC_TAGVAR(hardcode_action, $1)=relink ! else ! # We can link without hardcoding, and we can hardcode nonexisting dirs. ! _LT_AC_TAGVAR(hardcode_action, $1)=immediate ! fi ! else ! # We cannot hardcode anything, or else we can only hardcode existing ! # directories. ! _LT_AC_TAGVAR(hardcode_action, $1)=unsupported ! fi ! AC_MSG_RESULT([$_LT_AC_TAGVAR(hardcode_action, $1)]) ! if test "$_LT_AC_TAGVAR(hardcode_action, $1)" = relink; then ! # Fast installation is not supported ! enable_fast_install=no ! elif test "$shlibpath_overrides_runpath" = yes || ! test "$enable_shared" = no; then ! # Fast installation is not necessary ! enable_fast_install=needless ! fi ! ])# AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH ! # AC_LIBTOOL_SYS_LIB_STRIP ! # ------------------------ ! AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP], ! [striplib= ! old_striplib= ! AC_MSG_CHECKING([whether stripping libraries is possible]) ! if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then ! test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" ! test -z "$striplib" && striplib="$STRIP --strip-unneeded" ! AC_MSG_RESULT([yes]) ! else ! # FIXME - insert some real tests, host_os isn't really good enough ! case $host_os in ! darwin*) ! if test -n "$STRIP" ; then ! striplib="$STRIP -x" ! AC_MSG_RESULT([yes]) ! else ! AC_MSG_RESULT([no]) ! fi ! ;; ! *) ! AC_MSG_RESULT([no]) ! ;; ! esac ! fi ! ])# AC_LIBTOOL_SYS_LIB_STRIP ! # AC_LIBTOOL_SYS_DYNAMIC_LINKER ! # ----------------------------- ! # PORTME Fill in your ld.so characteristics ! AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER], ! [AC_MSG_CHECKING([dynamic linker characteristics]) ! library_names_spec= ! libname_spec='lib$name' ! soname_spec= ! shrext_cmds=".so" ! postinstall_cmds= ! postuninstall_cmds= ! finish_cmds= ! finish_eval= ! shlibpath_var= ! shlibpath_overrides_runpath=unknown ! version_type=none ! dynamic_linker="$host_os ld.so" ! sys_lib_dlsearch_path_spec="/lib /usr/lib" ! if test "$GCC" = yes; then ! sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` ! if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then ! # if the path contains ";" then we assume it to be the separator ! # otherwise default to the standard path separator (i.e. ":") - it is ! # assumed that no part of a normal pathname contains ";" but that should ! # okay in the real world where ";" in dirpaths is itself problematic. ! sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else ! sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi - else - sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi ! need_lib_prefix=unknown ! hardcode_into_libs=no - # when you set need_version to no, make sure it does not cause -set_version - # flags to be left without arguments - need_version=unknown ! case $host_os in ! aix3*) ! version_type=linux ! library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' ! shlibpath_var=LIBPATH - # AIX 3 has no versioning support, so we append a major version to the name. - soname_spec='${libname}${release}${shared_ext}$major' - ;; ! aix4* | aix5*) ! version_type=linux ! need_lib_prefix=no ! need_version=no ! hardcode_into_libs=yes ! if test "$host_cpu" = ia64; then ! # AIX 5 supports IA64 ! library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' ! shlibpath_var=LD_LIBRARY_PATH ! else ! # With GCC up to 2.95.x, collect2 would create an import file ! # for dependence libraries. The import file would start with ! # the line `#! .'. This would cause the generated library to ! # depend on `.', always an invalid library. This was fixed in ! # development snapshots of GCC prior to 3.0. ! case $host_os in ! aix4 | aix4.[[01]] | aix4.[[01]].*) ! if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' ! echo ' yes ' ! echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then ! : ! else ! can_build_shared=no ! fi ! ;; ! esac ! # AIX (on Power*) has no versioning support, so currently we can not hardcode correct ! # soname into executable. Probably we can add versioning support to ! # collect2, so additional links can be useful in future. ! if test "$aix_use_runtimelinking" = yes; then ! # If using run time linking (on AIX 4.2 or later) use lib.so ! # instead of lib.a to let people know that these are not ! # typical AIX shared libraries. ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ! else ! # We preserve .a as extension for shared libraries through AIX4.2 ! # and later when we are not doing run time linking. ! library_names_spec='${libname}${release}.a $libname.a' ! soname_spec='${libname}${release}${shared_ext}$major' ! fi ! shlibpath_var=LIBPATH ! fi ! ;; - amigaos*) - library_names_spec='$libname.ixlibrary $libname.a' - # Create ${libname}_ixlibrary.a entries in /sys/libs. - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' - ;; ! beos*) ! library_names_spec='${libname}${shared_ext}' ! dynamic_linker="$host_os ld.so" ! shlibpath_var=LIBRARY_PATH ! ;; - bsdi[[45]]*) - version_type=linux - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' - shlibpath_var=LD_LIBRARY_PATH - sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" - sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" - # the default ld.so.conf also contains /usr/contrib/lib and - # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow - # libtool to hard-code these into programs - ;; ! cygwin* | mingw* | pw32*) ! version_type=windows ! shrext_cmds=".dll" ! need_version=no ! need_lib_prefix=no - case $GCC,$host_os in - yes,cygwin* | yes,mingw* | yes,pw32*) - library_names_spec='$libname.dll.a' - # DLL is installed to $(libdir)/../bin by postinstall_cmds - postinstall_cmds='base_file=`basename \${file}`~ - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ - dldir=$destdir/`dirname \$dlpath`~ - test -d \$dldir || mkdir -p \$dldir~ - $install_prog $dir/$dlname \$dldir/$dlname~ - chmod a+x \$dldir/$dlname' - postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ - dlpath=$dir/\$dldll~ - $rm \$dlpath' - shlibpath_overrides_runpath=yes ! case $host_os in ! cygwin*) ! # Cygwin DLLs use 'cyg' prefix rather than 'lib' ! soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' ! sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ! ;; ! mingw*) ! # MinGW DLLs use traditional 'lib' prefix ! soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' ! sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` ! if echo "$sys_lib_search_path_spec" | [grep ';[c-zC-Z]:/' >/dev/null]; then ! # It is most probably a Windows format PATH printed by ! # mingw gcc, but we are running on Cygwin. Gcc prints its search ! # path with ; separators, and with drive letters. We can handle the ! # drive letters (cygwin fileutils understands them), so leave them, ! # especially as we might pass files found there to a mingw objdump, ! # which wouldn't understand a cygwinified path. Ahh. ! sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` ! else ! sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ! fi ;; ! pw32*) ! # pw32 DLLs use 'pw' prefix rather than 'lib' ! library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' ;; ! esac ! ;; - *) - library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' - ;; - esac - dynamic_linker='Win32 ld.exe' - # FIXME: first we should search . and the directory the executable is in - shlibpath_var=PATH - ;; ! darwin* | rhapsody*) ! dynamic_linker="$host_os dyld" ! version_type=darwin ! need_lib_prefix=no ! need_version=no ! library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' ! soname_spec='${libname}${release}${major}$shared_ext' ! shlibpath_overrides_runpath=yes ! shlibpath_var=DYLD_LIBRARY_PATH ! shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' ! # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. ! if test "$GCC" = yes; then ! sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"` ! else ! sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib' ! fi ! sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ! ;; - dgux*) - version_type=linux - need_lib_prefix=no - need_version=no - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH - ;; ! freebsd1*) ! dynamic_linker=no ;; ! kfreebsd*-gnu) ! version_type=linux ! need_lib_prefix=no ! need_version=no ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' ! soname_spec='${libname}${release}${shared_ext}$major' ! shlibpath_var=LD_LIBRARY_PATH ! shlibpath_overrides_runpath=no ! hardcode_into_libs=yes ! dynamic_linker='GNU ld.so' ;; ! freebsd* | dragonfly*) ! # DragonFly does not have aout. When/if they implement a new ! # versioning mechanism, adjust this. ! if test -x /usr/bin/objformat; then ! objformat=`/usr/bin/objformat` else ! case $host_os in ! freebsd[[123]]*) objformat=aout ;; ! *) objformat=elf ;; ! esac fi ! version_type=freebsd-$objformat ! case $version_type in ! freebsd-elf*) ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' ! need_version=no ! need_lib_prefix=no ! ;; ! freebsd-*) ! library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' ! need_version=yes ! ;; esac ! shlibpath_var=LD_LIBRARY_PATH ! case $host_os in ! freebsd2*) ! shlibpath_overrides_runpath=yes ! ;; ! freebsd3.[[01]]* | freebsdelf3.[[01]]*) ! shlibpath_overrides_runpath=yes ! hardcode_into_libs=yes ! ;; ! freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ ! freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) ! shlibpath_overrides_runpath=no ! hardcode_into_libs=yes ;; ! freebsd*) # from 4.6 on ! shlibpath_overrides_runpath=yes ! hardcode_into_libs=yes ;; esac ! ;; ! gnu*) ! version_type=linux ! need_lib_prefix=no ! need_version=no ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' ! soname_spec='${libname}${release}${shared_ext}$major' ! shlibpath_var=LD_LIBRARY_PATH ! hardcode_into_libs=yes ;; ! hpux9* | hpux10* | hpux11*) ! # Give a soname corresponding to the major version so that dld.sl refuses to ! # link against other versions. ! version_type=sunos ! need_lib_prefix=no ! need_version=no ! case $host_cpu in ! ia64*) ! shrext_cmds='.so' ! hardcode_into_libs=yes ! dynamic_linker="$host_os dld.so" ! shlibpath_var=LD_LIBRARY_PATH ! shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ! soname_spec='${libname}${release}${shared_ext}$major' ! if test "X$HPUX_IA64_MODE" = X32; then ! sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else ! sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - hppa*64*) - shrext_cmds='.sl' - hardcode_into_libs=yes - dynamic_linker="$host_os dld.sl" - shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec - ;; - *) - shrext_cmds='.sl' - dynamic_linker="$host_os dld.sl" - shlibpath_var=SHLIB_PATH - shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' ;; ! esac ! # HP-UX runs *really* slowly unless shared libraries are mode 555. ! postinstall_cmds='chmod 555 $lib' ;; ! interix3*) ! version_type=linux ! need_lib_prefix=no ! need_version=no ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' ! soname_spec='${libname}${release}${shared_ext}$major' ! dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' ! shlibpath_var=LD_LIBRARY_PATH ! shlibpath_overrides_runpath=no ! hardcode_into_libs=yes ;; ! irix5* | irix6* | nonstopux*) ! case $host_os in ! nonstopux*) version_type=nonstopux ;; ! *) ! if test "$lt_cv_prog_gnu_ld" = yes; then ! version_type=linux ! else ! version_type=irix ! fi ;; ! esac ! need_lib_prefix=no ! need_version=no ! soname_spec='${libname}${release}${shared_ext}$major' ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' ! case $host_os in ! irix5* | nonstopux*) ! libsuff= shlibsuff= ;; *) ! case $LD in # libtool.m4 will add one of these switches to LD ! *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") ! libsuff= shlibsuff= libmagic=32-bit;; ! *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") ! libsuff=32 shlibsuff=N32 libmagic=N32;; ! *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") ! libsuff=64 shlibsuff=64 libmagic=64-bit;; ! *) libsuff= shlibsuff= libmagic=never-match;; ! esac ;; esac - shlibpath_var=LD_LIBRARY${shlibsuff}_PATH - shlibpath_overrides_runpath=no - sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" - sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" - hardcode_into_libs=yes ;; ! # No shared lib support for Linux oldld, aout, or coff. ! linux*oldld* | linux*aout* | linux*coff*) ! dynamic_linker=no ;; ! # This must be Linux ELF. ! linux*) ! version_type=linux ! need_lib_prefix=no ! need_version=no ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ! soname_spec='${libname}${release}${shared_ext}$major' ! finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' ! shlibpath_var=LD_LIBRARY_PATH ! shlibpath_overrides_runpath=no ! # This implies no fast_install, which is unacceptable. ! # Some rework will be needed to allow for fast_install ! # before this can be enabled. ! hardcode_into_libs=yes ! ! # Append ld.so.conf contents to the search path ! if test -f /etc/ld.so.conf; then ! lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` ! sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" ! fi ! ! # We used to test for /lib/ld.so.1 and disable shared libraries on ! # powerpc, because MkLinux only supported shared libraries with the ! # GNU dynamic linker. Since this was broken with cross compilers, ! # most powerpc-linux boxes support dynamic linking these days and ! # people can always --disable-shared, the test was removed, and we ! # assume the GNU/Linux dynamic linker is in use. ! dynamic_linker='GNU/Linux ld.so' ;; ! knetbsd*-gnu) ! version_type=linux ! need_lib_prefix=no ! need_version=no ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' ! soname_spec='${libname}${release}${shared_ext}$major' ! shlibpath_var=LD_LIBRARY_PATH ! shlibpath_overrides_runpath=no ! hardcode_into_libs=yes ! dynamic_linker='GNU ld.so' ;; netbsd*) ! version_type=sunos ! need_lib_prefix=no ! need_version=no ! if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' ! finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' ! dynamic_linker='NetBSD (a.out) ld.so' else ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' ! soname_spec='${libname}${release}${shared_ext}$major' ! dynamic_linker='NetBSD ld.elf_so' fi - shlibpath_var=LD_LIBRARY_PATH - shlibpath_overrides_runpath=yes - hardcode_into_libs=yes ;; ! newsos6) ! version_type=linux ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ! shlibpath_var=LD_LIBRARY_PATH ! shlibpath_overrides_runpath=yes ;; nto-qnx*) ! version_type=linux ! need_lib_prefix=no ! need_version=no ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ! soname_spec='${libname}${release}${shared_ext}$major' ! shlibpath_var=LD_LIBRARY_PATH ! shlibpath_overrides_runpath=yes ;; openbsd*) - version_type=sunos - sys_lib_dlsearch_path_spec="/usr/lib" - need_lib_prefix=no - # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. - case $host_os in - openbsd3.3 | openbsd3.3.*) need_version=yes ;; - *) need_version=no ;; - esac - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' - shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then ! case $host_os in ! openbsd2.[[89]] | openbsd2.[[89]].*) ! shlibpath_overrides_runpath=no ! ;; ! *) ! shlibpath_overrides_runpath=yes ! ;; ! esac else ! shlibpath_overrides_runpath=yes fi ;; - os2*) - libname_spec='$name' - shrext_cmds=".dll" - need_lib_prefix=no - library_names_spec='$libname${shared_ext} $libname.a' - dynamic_linker='OS/2 ld.exe' - shlibpath_var=LIBPATH - ;; - osf3* | osf4* | osf5*) ! version_type=osf ! need_lib_prefix=no ! need_version=no ! soname_spec='${libname}${release}${shared_ext}$major' ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ! shlibpath_var=LD_LIBRARY_PATH ! sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" ! sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; solaris*) ! version_type=linux ! need_lib_prefix=no ! need_version=no ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ! soname_spec='${libname}${release}${shared_ext}$major' ! shlibpath_var=LD_LIBRARY_PATH ! shlibpath_overrides_runpath=yes ! hardcode_into_libs=yes ! # ldd complains unless libraries are executable ! postinstall_cmds='chmod +x $lib' ! ;; ! ! sunos4*) ! version_type=sunos ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' ! finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' ! shlibpath_var=LD_LIBRARY_PATH ! shlibpath_overrides_runpath=yes ! if test "$with_gnu_ld" = yes; then ! need_lib_prefix=no ! fi ! need_version=yes ;; sysv4 | sysv4.3*) - version_type=linux - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' - soname_spec='${libname}${release}${shared_ext}$major' - shlibpath_var=LD_LIBRARY_PATH case $host_vendor in ! sni) ! shlibpath_overrides_runpath=no ! need_lib_prefix=no ! export_dynamic_flag_spec='${wl}-Blargedynsym' ! runpath_var=LD_RUN_PATH ! ;; ! siemens) ! need_lib_prefix=no ! ;; ! motorola) ! need_lib_prefix=no ! need_version=no ! shlibpath_overrides_runpath=no ! sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ! ;; ! esac ! ;; ! ! sysv4*MP*) ! if test -d /usr/nec ;then ! version_type=linux ! library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' ! soname_spec='$libname${shared_ext}.$major' ! shlibpath_var=LD_LIBRARY_PATH ! fi ! ;; ! ! sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) ! version_type=freebsd-elf ! need_lib_prefix=no ! need_version=no ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' ! soname_spec='${libname}${release}${shared_ext}$major' ! shlibpath_var=LD_LIBRARY_PATH ! hardcode_into_libs=yes ! if test "$with_gnu_ld" = yes; then ! sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' ! shlibpath_overrides_runpath=no ! else ! sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' ! shlibpath_overrides_runpath=yes ! case $host_os in ! sco3.2v5*) ! sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ! ;; ! esac ! fi ! sys_lib_dlsearch_path_spec='/usr/lib' ;; ! uts4*) ! version_type=linux ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ! soname_spec='${libname}${release}${shared_ext}$major' ! shlibpath_var=LD_LIBRARY_PATH ;; *) ! dynamic_linker=no ;; esac ! AC_MSG_RESULT([$dynamic_linker]) ! test "$dynamic_linker" = no && can_build_shared=no - variables_saved_for_relink="PATH $shlibpath_var $runpath_var" - if test "$GCC" = yes; then - variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" - fi - ])# AC_LIBTOOL_SYS_DYNAMIC_LINKER - # _LT_AC_TAGCONFIG - # ---------------- - AC_DEFUN([_LT_AC_TAGCONFIG], - [AC_ARG_WITH([tags], - [AC_HELP_STRING([--with-tags@<:@=TAGS@:>@], - [include additional configurations @<:@automatic@:>@])], - [tagnames="$withval"]) ! if test -f "$ltmain" && test -n "$tagnames"; then ! if test ! -f "${ofile}"; then ! AC_MSG_WARN([output file `$ofile' does not exist]) fi - if test -z "$LTCC"; then - eval "`$SHELL ${ofile} --config | grep '^LTCC='`" - if test -z "$LTCC"; then - AC_MSG_WARN([output file `$ofile' does not look like a libtool script]) - else - AC_MSG_WARN([using `LTCC=$LTCC', extracted from `$ofile']) - fi - fi - if test -z "$LTCFLAGS"; then - eval "`$SHELL ${ofile} --config | grep '^LTCFLAGS='`" - fi ! # Extract list of available tagged configurations in $ofile. ! # Note that this assumes the entire list is on one line. ! available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'` - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," - for tagname in $tagnames; do - IFS="$lt_save_ifs" - # Check whether tagname contains only valid characters - case `$echo "X$tagname" | $Xsed -e 's:[[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]]::g'` in - "") ;; - *) AC_MSG_ERROR([invalid tag name: $tagname]) - ;; - esac ! if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null ! then ! AC_MSG_ERROR([tag name \"$tagname\" already exists]) ! fi ! # Update the list of available tags. ! if test -n "$tagname"; then ! echo appending configuration tag \"$tagname\" to $ofile ! case $tagname in ! CXX) ! if test -n "$CXX" && ( test "X$CXX" != "Xno" && ! ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || ! (test "X$CXX" != "Xg++"))) ; then ! AC_LIBTOOL_LANG_CXX_CONFIG ! else ! tagname="" ! fi ! ;; - F77) - if test -n "$F77" && test "X$F77" != "Xno"; then - AC_LIBTOOL_LANG_F77_CONFIG - else - tagname="" - fi - ;; ! GCJ) ! if test -n "$GCJ" && test "X$GCJ" != "Xno"; then ! AC_LIBTOOL_LANG_GCJ_CONFIG ! else ! tagname="" ! fi ! ;; - RC) - AC_LIBTOOL_LANG_RC_CONFIG - ;; ! *) ! AC_MSG_ERROR([Unsupported tag name: $tagname]) ! ;; ! esac - # Append the new tag name to the list of available tags. - if test -n "$tagname" ; then - available_tags="$available_tags $tagname" - fi - fi - done - IFS="$lt_save_ifs" ! # Now substitute the updated list of available tags. ! if eval "sed -e 's/^available_tags=.*\$/available_tags=\"$available_tags\"/' \"$ofile\" > \"${ofile}T\""; then ! mv "${ofile}T" "$ofile" ! chmod +x "$ofile" ! else ! rm -f "${ofile}T" ! AC_MSG_ERROR([unable to update list of available tagged configurations.]) ! fi ! fi ! ])# _LT_AC_TAGCONFIG ! # AC_LIBTOOL_DLOPEN ! # ----------------- ! # enable checks for dlopen support ! AC_DEFUN([AC_LIBTOOL_DLOPEN], ! [AC_BEFORE([$0],[AC_LIBTOOL_SETUP]) ! ])# AC_LIBTOOL_DLOPEN ! # AC_LIBTOOL_WIN32_DLL ! # -------------------- ! # declare package support for building win32 DLLs ! AC_DEFUN([AC_LIBTOOL_WIN32_DLL], ! [AC_BEFORE([$0], [AC_LIBTOOL_SETUP]) ! ])# AC_LIBTOOL_WIN32_DLL ! # AC_ENABLE_SHARED([DEFAULT]) ! # --------------------------- ! # implement the --enable-shared flag ! # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. ! AC_DEFUN([AC_ENABLE_SHARED], ! [define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl ! AC_ARG_ENABLE([shared], ! [AC_HELP_STRING([--enable-shared@<:@=PKGS@:>@], ! [build shared libraries @<:@default=]AC_ENABLE_SHARED_DEFAULT[@:>@])], ! [p=${PACKAGE-default} ! case $enableval in ! yes) enable_shared=yes ;; ! no) enable_shared=no ;; ! *) ! enable_shared=no ! # Look at the argument we got. We use all the common list separators. ! lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," ! for pkg in $enableval; do ! IFS="$lt_save_ifs" ! if test "X$pkg" = "X$p"; then ! enable_shared=yes ! fi ! done ! IFS="$lt_save_ifs" ! ;; ! esac], ! [enable_shared=]AC_ENABLE_SHARED_DEFAULT) ! ])# AC_ENABLE_SHARED ! # AC_DISABLE_SHARED ! # ----------------- ! # set the default shared flag to --disable-shared ! AC_DEFUN([AC_DISABLE_SHARED], ! [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl ! AC_ENABLE_SHARED(no) ! ])# AC_DISABLE_SHARED ! # AC_ENABLE_STATIC([DEFAULT]) ! # --------------------------- ! # implement the --enable-static flag ! # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. ! AC_DEFUN([AC_ENABLE_STATIC], ! [define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl ! AC_ARG_ENABLE([static], ! [AC_HELP_STRING([--enable-static@<:@=PKGS@:>@], ! [build static libraries @<:@default=]AC_ENABLE_STATIC_DEFAULT[@:>@])], ! [p=${PACKAGE-default} ! case $enableval in ! yes) enable_static=yes ;; ! no) enable_static=no ;; ! *) ! enable_static=no ! # Look at the argument we got. We use all the common list separators. ! lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," ! for pkg in $enableval; do ! IFS="$lt_save_ifs" ! if test "X$pkg" = "X$p"; then ! enable_static=yes ! fi ! done ! IFS="$lt_save_ifs" ! ;; ! esac], ! [enable_static=]AC_ENABLE_STATIC_DEFAULT) ! ])# AC_ENABLE_STATIC ! # AC_DISABLE_STATIC ! # ----------------- ! # set the default static flag to --disable-static ! AC_DEFUN([AC_DISABLE_STATIC], ! [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl ! AC_ENABLE_STATIC(no) ! ])# AC_DISABLE_STATIC ! # AC_ENABLE_FAST_INSTALL([DEFAULT]) ! # --------------------------------- ! # implement the --enable-fast-install flag ! # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. ! AC_DEFUN([AC_ENABLE_FAST_INSTALL], ! [define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl ! AC_ARG_ENABLE([fast-install], ! [AC_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], ! [optimize for fast installation @<:@default=]AC_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], ! [p=${PACKAGE-default} ! case $enableval in ! yes) enable_fast_install=yes ;; ! no) enable_fast_install=no ;; ! *) ! enable_fast_install=no ! # Look at the argument we got. We use all the common list separators. ! lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," ! for pkg in $enableval; do ! IFS="$lt_save_ifs" ! if test "X$pkg" = "X$p"; then ! enable_fast_install=yes ! fi ! done ! IFS="$lt_save_ifs" ! ;; ! esac], ! [enable_fast_install=]AC_ENABLE_FAST_INSTALL_DEFAULT) ! ])# AC_ENABLE_FAST_INSTALL ! # AC_DISABLE_FAST_INSTALL ! # ----------------------- ! # set the default to --disable-fast-install ! AC_DEFUN([AC_DISABLE_FAST_INSTALL], ! [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl ! AC_ENABLE_FAST_INSTALL(no) ! ])# AC_DISABLE_FAST_INSTALL ! # AC_LIBTOOL_PICMODE([MODE]) ! # -------------------------- ! # implement the --with-pic flag ! # MODE is either `yes' or `no'. If omitted, it defaults to `both'. ! AC_DEFUN([AC_LIBTOOL_PICMODE], ! [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl ! pic_mode=ifelse($#,1,$1,default) ! ])# AC_LIBTOOL_PICMODE ! # AC_PROG_EGREP ! # ------------- ! # This is predefined starting with Autoconf 2.54, so this conditional ! # definition can be removed once we require Autoconf 2.54 or later. ! m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP], ! [AC_CACHE_CHECK([for egrep], [ac_cv_prog_egrep], ! [if echo a | (grep -E '(a|b)') >/dev/null 2>&1 ! then ac_cv_prog_egrep='grep -E' ! else ac_cv_prog_egrep='egrep' ! fi]) ! EGREP=$ac_cv_prog_egrep ! AC_SUBST([EGREP]) ! ])]) ! # AC_PATH_TOOL_PREFIX ! # ------------------- ! # find a file program which can recognise shared library ! AC_DEFUN([AC_PATH_TOOL_PREFIX], ! [AC_REQUIRE([AC_PROG_EGREP])dnl ! AC_MSG_CHECKING([for $1]) ! AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, ! [case $MAGIC_CMD in ! [[\\/*] | ?:[\\/]*]) ! lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ! ;; ! *) ! lt_save_MAGIC_CMD="$MAGIC_CMD" ! lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ! dnl $ac_dummy forces splitting on constant user-supplied paths. ! dnl POSIX.2 word splitting is done only on the output of word expansions, ! dnl not every word. This closes a longstanding sh security hole. ! ac_dummy="ifelse([$2], , $PATH, [$2])" ! for ac_dir in $ac_dummy; do ! IFS="$lt_save_ifs" ! test -z "$ac_dir" && ac_dir=. ! if test -f $ac_dir/$1; then ! lt_cv_path_MAGIC_CMD="$ac_dir/$1" ! if test -n "$file_magic_test_file"; then ! case $deplibs_check_method in ! "file_magic "*) ! file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` ! MAGIC_CMD="$lt_cv_path_MAGIC_CMD" ! if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | ! $EGREP "$file_magic_regex" > /dev/null; then ! : ! else ! cat <&2 ! *** Warning: the command libtool uses to detect shared libraries, ! *** $file_magic_cmd, produces output that libtool cannot recognize. ! *** The result is that libtool may fail to recognize shared libraries ! *** as such. This will affect the creation of libtool libraries that ! *** depend on shared libraries, but programs linked with such libtool ! *** libraries will work regardless of this problem. Nevertheless, you ! *** may want to report the problem to your system manager and/or to ! *** bug-libtool@gnu.org ! EOF ! fi ;; ! esac ! fi ! break ! fi ! done ! IFS="$lt_save_ifs" ! MAGIC_CMD="$lt_save_MAGIC_CMD" ! ;; ! esac]) ! MAGIC_CMD="$lt_cv_path_MAGIC_CMD" ! if test -n "$MAGIC_CMD"; then ! AC_MSG_RESULT($MAGIC_CMD) ! else ! AC_MSG_RESULT(no) ! fi ! ])# AC_PATH_TOOL_PREFIX ! # AC_PATH_MAGIC ! # ------------- ! # find a file program which can recognise a shared library ! AC_DEFUN([AC_PATH_MAGIC], ! [AC_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) ! if test -z "$lt_cv_path_MAGIC_CMD"; then ! if test -n "$ac_tool_prefix"; then ! AC_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) ! else ! MAGIC_CMD=: ! fi ! fi ! ])# AC_PATH_MAGIC ! # AC_PROG_LD ! # ---------- ! # find the pathname to the GNU or non-GNU linker ! AC_DEFUN([AC_PROG_LD], ! [AC_ARG_WITH([gnu-ld], ! [AC_HELP_STRING([--with-gnu-ld], ! [assume the C compiler uses GNU ld @<:@default=no@:>@])], ! [test "$withval" = no || with_gnu_ld=yes], ! [with_gnu_ld=no]) ! AC_REQUIRE([LT_AC_PROG_SED])dnl ! AC_REQUIRE([AC_PROG_CC])dnl ! AC_REQUIRE([AC_CANONICAL_HOST])dnl ! AC_REQUIRE([AC_CANONICAL_BUILD])dnl ! ac_prog=ld ! if test "$GCC" = yes; then ! # Check if gcc -print-prog-name=ld gives a path. ! AC_MSG_CHECKING([for ld used by $CC]) ! case $host in ! *-*-mingw*) ! # gcc leaves a trailing carriage return which upsets mingw ! ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; ! *) ! ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; ! esac ! case $ac_prog in ! # Accept absolute paths. ! [[\\/]]* | ?:[[\\/]]*) ! re_direlt='/[[^/]][[^/]]*/\.\./' ! # Canonicalize the pathname of ld ! ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'` ! while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do ! ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"` ! done ! test -z "$LD" && LD="$ac_prog" ! ;; ! "") ! # If it fails, then pretend we aren't using GCC. ! ac_prog=ld ! ;; ! *) ! # If it is relative, then search for the first ld in PATH. ! with_gnu_ld=unknown ! ;; ! esac ! elif test "$with_gnu_ld" = yes; then ! AC_MSG_CHECKING([for GNU ld]) else ! AC_MSG_CHECKING([for non-GNU ld]) fi ! AC_CACHE_VAL(lt_cv_path_LD, ! [if test -z "$LD"; then ! lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ! for ac_dir in $PATH; do ! IFS="$lt_save_ifs" ! test -z "$ac_dir" && ac_dir=. ! if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then ! lt_cv_path_LD="$ac_dir/$ac_prog" ! # Check to see if the program is GNU ld. I'd rather use --version, ! # but apparently some variants of GNU ld only accept -v. ! # Break only if it was the GNU/non-GNU ld that we prefer. ! case `"$lt_cv_path_LD" -v 2>&1 &1 /dev/null; then ! case $host_cpu in ! i*86 ) ! # Not sure whether the presence of OpenBSD here was a mistake. ! # Let's accept both of them until this is cleared up. ! lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' ! lt_cv_file_magic_cmd=/usr/bin/file ! lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ! ;; ! esac ! else ! lt_cv_deplibs_check_method=pass_all ! fi ! ;; ! gnu*) ! lt_cv_deplibs_check_method=pass_all ! ;; ! hpux10.20* | hpux11*) ! lt_cv_file_magic_cmd=/usr/bin/file ! case $host_cpu in ! ia64*) ! lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' ! lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ! ;; ! hppa*64*) ! [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]'] ! lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; - *) - lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library' - lt_cv_file_magic_test_file=/usr/lib/libc.sl - ;; - esac - ;; - - interix3*) - # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' - ;; - - irix5* | irix6* | nonstopux*) - case $LD in - *-32|*"-32 ") libmagic=32-bit;; - *-n32|*"-n32 ") libmagic=N32;; - *-64|*"-64 ") libmagic=64-bit;; - *) libmagic=never-match;; - esac - lt_cv_deplibs_check_method=pass_all - ;; - - # This must be Linux ELF. - linux*) - lt_cv_deplibs_check_method=pass_all - ;; - - netbsd*) - if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' - else - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' - fi - ;; ! newos6*) ! lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' ! lt_cv_file_magic_cmd=/usr/bin/file ! lt_cv_file_magic_test_file=/usr/lib/libnls.so ! ;; ! nto-qnx*) ! lt_cv_deplibs_check_method=unknown ! ;; ! openbsd*) ! if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then ! lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' ! else ! lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' ! fi ! ;; ! osf3* | osf4* | osf5*) ! lt_cv_deplibs_check_method=pass_all ;; ! solaris*) ! lt_cv_deplibs_check_method=pass_all ! ;; ! sysv4 | sysv4.3*) ! case $host_vendor in ! motorola) ! lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' ! lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ! ;; ! ncr) ! lt_cv_deplibs_check_method=pass_all ;; ! sequent) ! lt_cv_file_magic_cmd='/bin/file' ! lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ;; ! sni) ! lt_cv_file_magic_cmd='/bin/file' ! lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" ! lt_cv_file_magic_test_file=/lib/libc.so ;; ! siemens) ! lt_cv_deplibs_check_method=pass_all ;; ! pc) ! lt_cv_deplibs_check_method=pass_all ;; ! esac ! ;; ! ! sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) ! lt_cv_deplibs_check_method=pass_all ! ;; ! esac ! ]) ! file_magic_cmd=$lt_cv_file_magic_cmd ! deplibs_check_method=$lt_cv_deplibs_check_method ! test -z "$deplibs_check_method" && deplibs_check_method=unknown ! ])# AC_DEPLIBS_CHECK_METHOD ! # AC_PROG_NM ! # ---------- ! # find the pathname to a BSD-compatible name lister ! AC_DEFUN([AC_PROG_NM], ! [AC_CACHE_CHECK([for BSD-compatible nm], lt_cv_path_NM, ! [if test -n "$NM"; then ! # Let the user override the test. ! lt_cv_path_NM="$NM" ! else ! lt_nm_to_check="${ac_tool_prefix}nm" ! if test -n "$ac_tool_prefix" && test "$build" = "$host"; then ! lt_nm_to_check="$lt_nm_to_check nm" ! fi ! for lt_tmp_nm in $lt_nm_to_check; do ! lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ! for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do ! IFS="$lt_save_ifs" ! test -z "$ac_dir" && ac_dir=. ! tmp_nm="$ac_dir/$lt_tmp_nm" ! if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then ! # Check to see if the nm accepts a BSD-compat flag. ! # Adding the `sed 1q' prevents false positives on HP-UX, which says: ! # nm: unknown option "B" ignored ! # Tru64's nm complains that /dev/null is an invalid object file ! case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in ! */dev/null* | *'Invalid file or object type'*) ! lt_cv_path_NM="$tmp_nm -B" ! break ;; *) ! case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in ! */dev/null*) ! lt_cv_path_NM="$tmp_nm -p" ! break ! ;; ! *) ! lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but ! continue # so that we can try to find one that supports BSD flags ! ;; ! esac ;; esac ! fi ! done ! IFS="$lt_save_ifs" ! done ! test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm ! fi]) ! NM="$lt_cv_path_NM" ! ])# AC_PROG_NM ! # AC_CHECK_LIBM ! # ------------- ! # check for math library ! AC_DEFUN([AC_CHECK_LIBM], ! [AC_REQUIRE([AC_CANONICAL_HOST])dnl ! LIBM= ! case $host in ! *-*-beos* | *-*-cygwin* | *-*-pw32* | *-*-darwin*) ! # These system don't have libm, or don't need it ! ;; ! *-ncr-sysv4.3*) ! AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") ! AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") ! ;; ! *) ! AC_CHECK_LIB(m, cos, LIBM="-lm") ! ;; ! esac ! ])# AC_CHECK_LIBM ! # AC_LIBLTDL_CONVENIENCE([DIRECTORY]) ! # ----------------------------------- ! # sets LIBLTDL to the link flags for the libltdl convenience library and ! # LTDLINCL to the include flags for the libltdl header and adds ! # --enable-ltdl-convenience to the configure arguments. Note that ! # AC_CONFIG_SUBDIRS is not called here. If DIRECTORY is not provided, ! # it is assumed to be `libltdl'. LIBLTDL will be prefixed with ! # '${top_builddir}/' and LTDLINCL will be prefixed with '${top_srcdir}/' ! # (note the single quotes!). If your package is not flat and you're not ! # using automake, define top_builddir and top_srcdir appropriately in ! # the Makefiles. ! AC_DEFUN([AC_LIBLTDL_CONVENIENCE], ! [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl ! case $enable_ltdl_convenience in ! no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;; ! "") enable_ltdl_convenience=yes ! ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;; ! esac ! LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdlc.la ! LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) ! # For backwards non-gettext consistent compatibility... ! INCLTDL="$LTDLINCL" ! ])# AC_LIBLTDL_CONVENIENCE ! # AC_LIBLTDL_INSTALLABLE([DIRECTORY]) ! # ----------------------------------- ! # sets LIBLTDL to the link flags for the libltdl installable library and ! # LTDLINCL to the include flags for the libltdl header and adds ! # --enable-ltdl-install to the configure arguments. Note that ! # AC_CONFIG_SUBDIRS is not called here. If DIRECTORY is not provided, ! # and an installed libltdl is not found, it is assumed to be `libltdl'. ! # LIBLTDL will be prefixed with '${top_builddir}/'# and LTDLINCL with ! # '${top_srcdir}/' (note the single quotes!). If your package is not ! # flat and you're not using automake, define top_builddir and top_srcdir ! # appropriately in the Makefiles. ! # In the future, this macro may have to be called after AC_PROG_LIBTOOL. ! AC_DEFUN([AC_LIBLTDL_INSTALLABLE], ! [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl ! AC_CHECK_LIB(ltdl, lt_dlinit, ! [test x"$enable_ltdl_install" != xyes && enable_ltdl_install=no], ! [if test x"$enable_ltdl_install" = xno; then ! AC_MSG_WARN([libltdl not installed, but installation disabled]) ! else ! enable_ltdl_install=yes ! fi ! ]) ! if test x"$enable_ltdl_install" = x"yes"; then ! ac_configure_args="$ac_configure_args --enable-ltdl-install" ! LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdl.la ! LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) ! else ! ac_configure_args="$ac_configure_args --enable-ltdl-install=no" ! LIBLTDL="-lltdl" ! LTDLINCL= ! fi ! # For backwards non-gettext consistent compatibility... ! INCLTDL="$LTDLINCL" ! ])# AC_LIBLTDL_INSTALLABLE ! ! # AC_LIBTOOL_CXX ! # -------------- ! # enable support for C++ libraries ! AC_DEFUN([AC_LIBTOOL_CXX], ! [AC_REQUIRE([_LT_AC_LANG_CXX]) ! ])# AC_LIBTOOL_CXX ! # _LT_AC_LANG_CXX ! # --------------- ! AC_DEFUN([_LT_AC_LANG_CXX], ! [AC_REQUIRE([AC_PROG_CXX]) ! AC_REQUIRE([_LT_AC_PROG_CXXCPP]) ! _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}CXX]) ! ])# _LT_AC_LANG_CXX ! # _LT_AC_PROG_CXXCPP ! # ------------------ ! AC_DEFUN([_LT_AC_PROG_CXXCPP], ! [ ! AC_REQUIRE([AC_PROG_CXX]) ! if test -n "$CXX" && ( test "X$CXX" != "Xno" && ! ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || ! (test "X$CXX" != "Xg++"))) ; then ! AC_PROG_CXXCPP ! fi ! ])# _LT_AC_PROG_CXXCPP ! # AC_LIBTOOL_F77 ! # -------------- ! # enable support for Fortran 77 libraries ! AC_DEFUN([AC_LIBTOOL_F77], ! [AC_REQUIRE([_LT_AC_LANG_F77]) ! ])# AC_LIBTOOL_F77 ! # _LT_AC_LANG_F77 ! # --------------- ! AC_DEFUN([_LT_AC_LANG_F77], ! [AC_REQUIRE([AC_PROG_F77]) ! _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}F77]) ! ])# _LT_AC_LANG_F77 ! # AC_LIBTOOL_GCJ ! # -------------- ! # enable support for GCJ libraries ! AC_DEFUN([AC_LIBTOOL_GCJ], ! [AC_REQUIRE([_LT_AC_LANG_GCJ]) ! ])# AC_LIBTOOL_GCJ ! # _LT_AC_LANG_GCJ ! # --------------- ! AC_DEFUN([_LT_AC_LANG_GCJ], ! [AC_PROVIDE_IFELSE([AC_PROG_GCJ],[], ! [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],[], ! [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ],[], ! [ifdef([AC_PROG_GCJ],[AC_REQUIRE([AC_PROG_GCJ])], ! [ifdef([A][M_PROG_GCJ],[AC_REQUIRE([A][M_PROG_GCJ])], ! [AC_REQUIRE([A][C_PROG_GCJ_OR_A][M_PROG_GCJ])])])])])]) ! _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}GCJ]) ! ])# _LT_AC_LANG_GCJ ! # AC_LIBTOOL_RC ! # ------------- ! # enable support for Windows resource files ! AC_DEFUN([AC_LIBTOOL_RC], ! [AC_REQUIRE([LT_AC_PROG_RC]) ! _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}RC]) ! ])# AC_LIBTOOL_RC ! # AC_LIBTOOL_LANG_C_CONFIG ! # ------------------------ ! # Ensure that the configuration vars for the C compiler are ! # suitably defined. Those variables are subsequently used by ! # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. ! AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG], [_LT_AC_LANG_C_CONFIG]) ! AC_DEFUN([_LT_AC_LANG_C_CONFIG], ! [lt_save_CC="$CC" ! AC_LANG_PUSH(C) ! # Source file extension for C test sources. ! ac_ext=c ! # Object file extension for compiled C test sources. ! objext=o ! _LT_AC_TAGVAR(objext, $1)=$objext ! # Code to be used in simple compile tests ! lt_simple_compile_test_code="int some_variable = 0;\n" ! # Code to be used in simple link tests ! lt_simple_link_test_code='int main(){return(0);}\n' ! _LT_AC_SYS_COMPILER ! # save warnings/boilerplate of simple test code ! _LT_COMPILER_BOILERPLATE ! _LT_LINKER_BOILERPLATE ! AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1) ! AC_LIBTOOL_PROG_COMPILER_PIC($1) ! AC_LIBTOOL_PROG_CC_C_O($1) ! AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) ! AC_LIBTOOL_PROG_LD_SHLIBS($1) ! AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) ! AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) ! AC_LIBTOOL_SYS_LIB_STRIP ! AC_LIBTOOL_DLOPEN_SELF ! # Report which library types will actually be built ! AC_MSG_CHECKING([if libtool supports shared libraries]) ! AC_MSG_RESULT([$can_build_shared]) ! AC_MSG_CHECKING([whether to build shared libraries]) ! test "$can_build_shared" = "no" && enable_shared=no ! # On AIX, shared libraries and static libraries use the same namespace, and ! # are all built from PIC. ! case $host_os in ! aix3*) ! test "$enable_shared" = yes && enable_static=no ! if test -n "$RANLIB"; then ! archive_cmds="$archive_cmds~\$RANLIB \$lib" ! postinstall_cmds='$RANLIB $lib' ! fi ! ;; ! aix4* | aix5*) ! if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then ! test "$enable_shared" = yes && enable_static=no ! fi ;; esac ! AC_MSG_RESULT([$enable_shared]) ! AC_MSG_CHECKING([whether to build static libraries]) ! # Make sure either enable_shared or enable_static is yes. ! test "$enable_shared" = yes || enable_static=yes ! AC_MSG_RESULT([$enable_static]) AC_LIBTOOL_CONFIG($1) AC_LANG_POP ! CC="$lt_save_CC" ! ])# AC_LIBTOOL_LANG_C_CONFIG ! ! ! # AC_LIBTOOL_LANG_CXX_CONFIG ! # -------------------------- ! # Ensure that the configuration vars for the C compiler are ! # suitably defined. Those variables are subsequently used by ! # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. ! AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG], [_LT_AC_LANG_CXX_CONFIG(CXX)]) ! AC_DEFUN([_LT_AC_LANG_CXX_CONFIG], ! [AC_LANG_PUSH(C++) ! AC_REQUIRE([AC_PROG_CXX]) ! AC_REQUIRE([_LT_AC_PROG_CXXCPP]) ! _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ! _LT_AC_TAGVAR(allow_undefined_flag, $1)= ! _LT_AC_TAGVAR(always_export_symbols, $1)=no ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)= _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= _LT_AC_TAGVAR(hardcode_minus_L, $1)=no - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_AC_TAGVAR(hardcode_automatic, $1)=no _LT_AC_TAGVAR(module_cmds, $1)= _LT_AC_TAGVAR(module_expsym_cmds, $1)= --- 11,3935 ---- # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. ! m4_if(m4_PACKAGE_VERSION, [2.61],, ! [m4_fatal([this file was generated for autoconf 2.61. ! You have another version of autoconf. If you want to use that, ! you should regenerate the build system entirely.], [63])]) ! # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- ! # serial 48 AC_PROG_LIBTOOL ! # AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED) ! # ----------------------------------------------------------- ! # If this macro is not defined by Autoconf, define it here. ! m4_ifdef([AC_PROVIDE_IFELSE], ! [], ! [m4_define([AC_PROVIDE_IFELSE], ! [m4_ifdef([AC_PROVIDE_$1], ! [$2], [$3])])]) ! # AC_PROG_LIBTOOL ! # --------------- ! AC_DEFUN([AC_PROG_LIBTOOL], ! [AC_REQUIRE([_AC_PROG_LIBTOOL])dnl ! dnl If AC_PROG_CXX has already been expanded, run AC_LIBTOOL_CXX ! dnl immediately, otherwise, hook it in at the end of AC_PROG_CXX. ! AC_PROVIDE_IFELSE([AC_PROG_CXX], ! [AC_LIBTOOL_CXX], ! [define([AC_PROG_CXX], defn([AC_PROG_CXX])[AC_LIBTOOL_CXX ! ])]) ! dnl And a similar setup for Fortran 77 support ! AC_PROVIDE_IFELSE([AC_PROG_F77], ! [AC_LIBTOOL_F77], ! [define([AC_PROG_F77], defn([AC_PROG_F77])[AC_LIBTOOL_F77 ! ])]) ! dnl Quote A][M_PROG_GCJ so that aclocal doesn't bring it in needlessly. ! dnl If either AC_PROG_GCJ or A][M_PROG_GCJ have already been expanded, run ! dnl AC_LIBTOOL_GCJ immediately, otherwise, hook it in at the end of both. ! AC_PROVIDE_IFELSE([AC_PROG_GCJ], ! [AC_LIBTOOL_GCJ], ! [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], ! [AC_LIBTOOL_GCJ], ! [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ], ! [AC_LIBTOOL_GCJ], ! [ifdef([AC_PROG_GCJ], ! [define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[AC_LIBTOOL_GCJ])]) ! ifdef([A][M_PROG_GCJ], ! [define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[AC_LIBTOOL_GCJ])]) ! ifdef([LT_AC_PROG_GCJ], ! [define([LT_AC_PROG_GCJ], ! defn([LT_AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])])]) ! ])])# AC_PROG_LIBTOOL ! # _AC_PROG_LIBTOOL ! # ---------------- ! AC_DEFUN([_AC_PROG_LIBTOOL], ! [AC_REQUIRE([AC_LIBTOOL_SETUP])dnl ! AC_BEFORE([$0],[AC_LIBTOOL_CXX])dnl ! AC_BEFORE([$0],[AC_LIBTOOL_F77])dnl ! AC_BEFORE([$0],[AC_LIBTOOL_GCJ])dnl ! # This can be used to rebuild libtool when needed ! LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" ! # Always use our own libtool. ! LIBTOOL='$(SHELL) $(top_builddir)/libtool' ! AC_SUBST(LIBTOOL)dnl ! # Prevent multiple expansion ! define([AC_PROG_LIBTOOL], []) ! ])# _AC_PROG_LIBTOOL ! # AC_LIBTOOL_SETUP ! # ---------------- ! AC_DEFUN([AC_LIBTOOL_SETUP], ! [AC_PREREQ(2.50)dnl ! AC_REQUIRE([AC_ENABLE_SHARED])dnl ! AC_REQUIRE([AC_ENABLE_STATIC])dnl ! AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl ! AC_REQUIRE([AC_CANONICAL_HOST])dnl ! AC_REQUIRE([AC_CANONICAL_BUILD])dnl ! AC_REQUIRE([AC_PROG_CC])dnl ! AC_REQUIRE([AC_PROG_LD])dnl ! AC_REQUIRE([AC_PROG_LD_RELOAD_FLAG])dnl ! AC_REQUIRE([AC_PROG_NM])dnl ! AC_REQUIRE([AC_PROG_LN_S])dnl ! AC_REQUIRE([AC_DEPLIBS_CHECK_METHOD])dnl ! # Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! ! AC_REQUIRE([AC_OBJEXT])dnl ! AC_REQUIRE([AC_EXEEXT])dnl ! dnl ! AC_LIBTOOL_SYS_MAX_CMD_LEN ! AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE ! AC_LIBTOOL_OBJDIR ! ! AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl ! _LT_AC_PROG_ECHO_BACKSLASH ! ! case $host_os in ! aix3*) ! # AIX sometimes has problems with the GCC collect2 program. For some ! # reason, if we set the COLLECT_NAMES environment variable, the problems ! # vanish in a puff of smoke. ! if test "X${COLLECT_NAMES+set}" != Xset; then ! COLLECT_NAMES= ! export COLLECT_NAMES fi ! ;; ! esac ! # Sed substitution that helps us do robust quoting. It backslashifies ! # metacharacters that are still active within double-quoted strings. ! Xsed='sed -e 1s/^X//' ! [sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g'] ! # Same as above, but do not quote variable references. ! [double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g'] ! # Sed substitution to delay expansion of an escaped shell variable in a ! # double_quote_subst'ed string. ! delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' + # Sed substitution to avoid accidental globbing in evaled expressions + no_glob_subst='s/\*/\\\*/g' ! # Constants: ! rm="rm -f" ! # Global variables: ! default_ofile=libtool ! can_build_shared=yes ! # All known linkers require a `.a' archive for static linking (except MSVC, ! # which needs '.lib'). ! libext=a ! ltmain="$ac_aux_dir/ltmain.sh" ! ofile="$default_ofile" ! with_gnu_ld="$lt_cv_prog_gnu_ld" ! AC_CHECK_TOOL(AR, ar, false) ! AC_CHECK_TOOL(RANLIB, ranlib, :) ! AC_CHECK_TOOL(STRIP, strip, :) ! old_CC="$CC" ! old_CFLAGS="$CFLAGS" ! # Set sane defaults for various variables ! test -z "$AR" && AR=ar ! test -z "$AR_FLAGS" && AR_FLAGS=cru ! test -z "$AS" && AS=as ! test -z "$CC" && CC=cc ! test -z "$LTCC" && LTCC=$CC ! test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS ! test -z "$DLLTOOL" && DLLTOOL=dlltool ! test -z "$LD" && LD=ld ! test -z "$LN_S" && LN_S="ln -s" ! test -z "$MAGIC_CMD" && MAGIC_CMD=file ! test -z "$NM" && NM=nm ! test -z "$SED" && SED=sed ! test -z "$OBJDUMP" && OBJDUMP=objdump ! test -z "$RANLIB" && RANLIB=: ! test -z "$STRIP" && STRIP=: ! test -z "$ac_objext" && ac_objext=o ! # Determine commands to create old-style static archives. ! old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs$old_deplibs' ! old_postinstall_cmds='chmod 644 $oldlib' ! old_postuninstall_cmds= ! ! if test -n "$RANLIB"; then ! case $host_os in ! openbsd*) ! old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" ! ;; ! *) ! old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" ! ;; ! esac ! old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" fi ! _LT_CC_BASENAME([$compiler]) ! # Only perform the check for file, if the check method requires it ! case $deplibs_check_method in ! file_magic*) ! if test "$file_magic_cmd" = '$MAGIC_CMD'; then ! AC_PATH_MAGIC ! fi ! ;; ! esac ! AC_PROVIDE_IFELSE([AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no) ! AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL], ! enable_win32_dll=yes, enable_win32_dll=no) ! AC_ARG_ENABLE([libtool-lock], ! [AC_HELP_STRING([--disable-libtool-lock], ! [avoid locking (might break parallel builds)])]) ! test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes ! AC_ARG_WITH([pic], ! [AC_HELP_STRING([--with-pic], ! [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], ! [pic_mode="$withval"], ! [pic_mode=default]) ! test -z "$pic_mode" && pic_mode=default ! # Use C for the default configuration in the libtool script ! tagname= ! AC_LIBTOOL_LANG_C_CONFIG ! _LT_AC_TAGCONFIG ! ])# AC_LIBTOOL_SETUP ! # _LT_AC_SYS_COMPILER ! # ------------------- ! AC_DEFUN([_LT_AC_SYS_COMPILER], ! [AC_REQUIRE([AC_PROG_CC])dnl ! # If no C compiler was specified, use CC. ! LTCC=${LTCC-"$CC"} + # If no C compiler flags were specified, use CFLAGS. + LTCFLAGS=${LTCFLAGS-"$CFLAGS"} ! # Allow CC to be a program name with arguments. ! compiler=$CC ! ])# _LT_AC_SYS_COMPILER ! ! ! # _LT_CC_BASENAME(CC) ! # ------------------- ! # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. ! AC_DEFUN([_LT_CC_BASENAME], ! [for cc_temp in $1""; do ! case $cc_temp in ! compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; ! distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; ! \-*) ;; ! *) break;; ! esac ! done ! cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` ]) ! # _LT_COMPILER_BOILERPLATE ! # ------------------------ ! # Check for compiler boilerplate output or warnings with ! # the simple compiler test code. ! AC_DEFUN([_LT_COMPILER_BOILERPLATE], ! [ac_outfile=conftest.$ac_objext ! printf "$lt_simple_compile_test_code" >conftest.$ac_ext ! eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err ! _lt_compiler_boilerplate=`cat conftest.err` ! $rm conftest* ! ])# _LT_COMPILER_BOILERPLATE ! # _LT_LINKER_BOILERPLATE ! # ---------------------- ! # Check for linker boilerplate output or warnings with ! # the simple link test code. ! AC_DEFUN([_LT_LINKER_BOILERPLATE], ! [ac_outfile=conftest.$ac_objext ! printf "$lt_simple_link_test_code" >conftest.$ac_ext ! eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err ! _lt_linker_boilerplate=`cat conftest.err` ! $rm conftest* ! ])# _LT_LINKER_BOILERPLATE ! # _LT_AC_SYS_LIBPATH_AIX ! # ---------------------- ! # Links a minimal program and checks the executable ! # for the system default hardcoded library path. In most cases, ! # this is /usr/lib:/lib, but when the MPI compilers are used ! # the location of the communication and MPI libs are included too. ! # If we don't find anything, use the default library path according ! # to the aix ld manual. ! AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX], ! [AC_LINK_IFELSE(AC_LANG_PROGRAM,[ ! aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } ! }'` ! # Check for a 64-bit object if we didn't find anything. ! if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } ! }'`; fi],[]) ! if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi ! ])# _LT_AC_SYS_LIBPATH_AIX ! # _LT_AC_SHELL_INIT(ARG) ! # ---------------------- ! AC_DEFUN([_LT_AC_SHELL_INIT], ! [ifdef([AC_DIVERSION_NOTICE], ! [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)], ! [AC_DIVERT_PUSH(NOTICE)]) ! $1 ! AC_DIVERT_POP ! ])# _LT_AC_SHELL_INIT ! # _LT_AC_PROG_ECHO_BACKSLASH ! # -------------------------- ! # Add some code to the start of the generated configure script which ! # will find an echo command which doesn't interpret backslashes. ! AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH], ! [_LT_AC_SHELL_INIT([ ! # Check that we are running under the correct shell. ! SHELL=${CONFIG_SHELL-/bin/sh} ! case X$ECHO in ! X*--fallback-echo) ! # Remove one level of quotation (which was required for Make). ! ECHO=`echo "$ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','` ! ;; ! esac ! echo=${ECHO-echo} ! if test "X[$]1" = X--no-reexec; then ! # Discard the --no-reexec flag, and continue. ! shift ! elif test "X[$]1" = X--fallback-echo; then ! # Avoid inline document here, it may be left over ! : ! elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then ! # Yippee, $echo works! ! : ! else ! # Restart under the correct shell. ! exec $SHELL "[$]0" --no-reexec ${1+"[$]@"} ! fi ! if test "X[$]1" = X--fallback-echo; then ! # used as fallback echo ! shift ! cat </dev/null 2>&1 && unset CDPATH ! if test -z "$ECHO"; then ! if test "X${echo_test_string+set}" != Xset; then ! # find a string as large as possible, as long as the shell can cope with it ! for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do ! # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... ! if (echo_test_string=`eval $cmd`) 2>/dev/null && ! echo_test_string=`eval $cmd` && ! (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null ! then ! break ! fi ! done fi ! if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && ! echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && ! test "X$echo_testing_string" = "X$echo_test_string"; then ! : ! else ! # The Solaris, AIX, and Digital Unix default echo programs unquote ! # backslashes. This makes it impossible to quote backslashes using ! # echo "$something" | sed 's/\\/\\\\/g' ! # ! # So, first we look for a working echo in the user's PATH. ! lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ! for dir in $PATH /usr/ucb; do ! IFS="$lt_save_ifs" ! if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && ! test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && ! echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && ! test "X$echo_testing_string" = "X$echo_test_string"; then ! echo="$dir/echo" ! break ! fi ! done ! IFS="$lt_save_ifs" ! if test "X$echo" = Xecho; then ! # We didn't find a better echo, so look for alternatives. ! if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' && ! echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` && ! test "X$echo_testing_string" = "X$echo_test_string"; then ! # This shell has a builtin print -r that does the trick. ! echo='print -r' ! elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) && ! test "X$CONFIG_SHELL" != X/bin/ksh; then ! # If we have ksh, try running configure again with it. ! ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} ! export ORIGINAL_CONFIG_SHELL ! CONFIG_SHELL=/bin/ksh ! export CONFIG_SHELL ! exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"} ! else ! # Try using printf. ! echo='printf %s\n' ! if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && ! echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && ! test "X$echo_testing_string" = "X$echo_test_string"; then ! # Cool, printf works ! : ! elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && ! test "X$echo_testing_string" = 'X\t' && ! echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && ! test "X$echo_testing_string" = "X$echo_test_string"; then ! CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL ! export CONFIG_SHELL ! SHELL="$CONFIG_SHELL" ! export SHELL ! echo="$CONFIG_SHELL [$]0 --fallback-echo" ! elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && ! test "X$echo_testing_string" = 'X\t' && ! echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && ! test "X$echo_testing_string" = "X$echo_test_string"; then ! echo="$CONFIG_SHELL [$]0 --fallback-echo" ! else ! # maybe with a smaller string... ! prev=: ! for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do ! if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null ! then ! break ! fi ! prev="$cmd" ! done ! if test "$prev" != 'sed 50q "[$]0"'; then ! echo_test_string=`eval $prev` ! export echo_test_string ! exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"} ! else ! # Oops. We lost completely, so just stick with echo. ! echo=echo ! fi ! fi ! fi ! fi ! fi ! fi ! # Copy echo and quote the copy suitably for passing to libtool from ! # the Makefile, instead of quoting the original, which is used later. ! ECHO=$echo ! if test "X$ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then ! ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo" ! fi ! AC_SUBST(ECHO) ! ])])# _LT_AC_PROG_ECHO_BACKSLASH ! # _LT_AC_LOCK ! # ----------- ! AC_DEFUN([_LT_AC_LOCK], ! [AC_ARG_ENABLE([libtool-lock], ! [AC_HELP_STRING([--disable-libtool-lock], ! [avoid locking (might break parallel builds)])]) ! test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes ! # Some flags need to be propagated to the compiler or linker for good ! # libtool support. ! case $host in ! ia64-*-hpux*) ! # Find out which ABI we are using. ! echo 'int i;' > conftest.$ac_ext ! if AC_TRY_EVAL(ac_compile); then ! case `/usr/bin/file conftest.$ac_objext` in ! *ELF-32*) ! HPUX_IA64_MODE="32" ! ;; ! *ELF-64*) ! HPUX_IA64_MODE="64" ! ;; ! esac ! fi ! rm -rf conftest* ! ;; ! *-*-irix6*) ! # Find out which ABI we are using. ! echo '[#]line __oline__ "configure"' > conftest.$ac_ext ! if AC_TRY_EVAL(ac_compile); then ! if test "$lt_cv_prog_gnu_ld" = yes; then ! case `/usr/bin/file conftest.$ac_objext` in ! *32-bit*) ! LD="${LD-ld} -melf32bsmip" ! ;; ! *N32*) ! LD="${LD-ld} -melf32bmipn32" ! ;; ! *64-bit*) ! LD="${LD-ld} -melf64bmip" ! ;; ! esac ! else ! case `/usr/bin/file conftest.$ac_objext` in ! *32-bit*) ! LD="${LD-ld} -32" ! ;; ! *N32*) ! LD="${LD-ld} -n32" ! ;; ! *64-bit*) ! LD="${LD-ld} -64" ! ;; ! esac ! fi ! fi ! rm -rf conftest* ! ;; ! x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*) ! # Find out which ABI we are using. ! echo 'int i;' > conftest.$ac_ext ! if AC_TRY_EVAL(ac_compile); then ! case `/usr/bin/file conftest.o` in ! *32-bit*) ! case $host in ! x86_64-*linux*) ! LD="${LD-ld} -m elf_i386" ! ;; ! ppc64-*linux*|powerpc64-*linux*) ! LD="${LD-ld} -m elf32ppclinux" ! ;; ! s390x-*linux*) ! LD="${LD-ld} -m elf_s390" ! ;; ! sparc64-*linux*) ! LD="${LD-ld} -m elf32_sparc" ! ;; ! esac ! ;; ! *64-bit*) ! case $host in ! x86_64-*linux*) ! LD="${LD-ld} -m elf_x86_64" ! ;; ! ppc*-*linux*|powerpc*-*linux*) ! LD="${LD-ld} -m elf64ppc" ! ;; ! s390*-*linux*) ! LD="${LD-ld} -m elf64_s390" ! ;; ! sparc*-*linux*) ! LD="${LD-ld} -m elf64_sparc" ! ;; ! esac ! ;; ! esac ! fi ! rm -rf conftest* ! ;; + *-*-sco3.2v5*) + # On SCO OpenServer 5, we need -belf to get full-featured binaries. + SAVE_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS -belf" + AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, + [AC_LANG_PUSH(C) + AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) + AC_LANG_POP]) + if test x"$lt_cv_cc_needs_belf" != x"yes"; then + # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf + CFLAGS="$SAVE_CFLAGS" + fi + ;; + sparc*-*solaris*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + case `/usr/bin/file conftest.o` in + *64-bit*) + case $lt_cv_prog_gnu_ld in + yes*) LD="${LD-ld} -m elf64_sparc" ;; + *) LD="${LD-ld} -64" ;; + esac + ;; + esac + fi + rm -rf conftest* + ;; ! AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL], ! [*-*-cygwin* | *-*-mingw* | *-*-pw32*) ! AC_CHECK_TOOL(DLLTOOL, dlltool, false) ! AC_CHECK_TOOL(AS, as, false) ! AC_CHECK_TOOL(OBJDUMP, objdump, false) ! ;; ! ]) ! esac + need_locks="$enable_libtool_lock" ! ])# _LT_AC_LOCK + # AC_LIBTOOL_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, + # [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) + # ---------------------------------------------------------------- + # Check whether the given compiler option works + AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], + [AC_REQUIRE([LT_AC_PROG_SED]) + AC_CACHE_CHECK([$1], [$2], + [$2=no + ifelse([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) + printf "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="$3" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + # The option is referenced via a variable to avoid confusing sed. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) + (eval "$lt_compile" 2>conftest.err) + ac_status=$? + cat conftest.err >&AS_MESSAGE_LOG_FD + echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + if (exit $ac_status) && test -s "$ac_outfile"; then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings other than the usual output. + $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp + $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 + if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then + $2=yes + fi + fi + $rm conftest* + ]) ! if test x"[$]$2" = xyes; then ! ifelse([$5], , :, [$5]) ! else ! ifelse([$6], , :, [$6]) ! fi ! ])# AC_LIBTOOL_COMPILER_OPTION ! # AC_LIBTOOL_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, ! # [ACTION-SUCCESS], [ACTION-FAILURE]) ! # ------------------------------------------------------------ ! # Check whether the given compiler option works ! AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], ! [AC_CACHE_CHECK([$1], [$2], ! [$2=no ! save_LDFLAGS="$LDFLAGS" ! LDFLAGS="$LDFLAGS $3" ! printf "$lt_simple_link_test_code" > conftest.$ac_ext ! if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then ! # The linker can only warn and ignore the option if not recognized ! # So say no if there are warnings ! if test -s conftest.err; then ! # Append any errors to the config.log. ! cat conftest.err 1>&AS_MESSAGE_LOG_FD ! $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp ! $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 ! if diff conftest.exp conftest.er2 >/dev/null; then ! $2=yes ! fi ! else ! $2=yes ! fi ! fi ! $rm conftest* ! LDFLAGS="$save_LDFLAGS" ! ]) + if test x"[$]$2" = xyes; then + ifelse([$4], , :, [$4]) + else + ifelse([$5], , :, [$5]) + fi + ])# AC_LIBTOOL_LINKER_OPTION ! # AC_LIBTOOL_SYS_MAX_CMD_LEN ! # -------------------------- ! AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], ! [# find the maximum length of command line arguments ! AC_MSG_CHECKING([the maximum length of command line arguments]) ! AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl ! i=0 ! teststring="ABCD" ! case $build_os in ! msdosdjgpp*) ! # On DJGPP, this test can blow up pretty badly due to problems in libc ! # (any single argument exceeding 2000 bytes causes a buffer overrun ! # during glob expansion). Even if it were fixed, the result of this ! # check would be larger than it should be. ! lt_cv_sys_max_cmd_len=12288; # 12K is about right ! ;; ! gnu*) ! # Under GNU Hurd, this test is not required because there is ! # no limit to the length of command line arguments. ! # Libtool will interpret -1 as no limit whatsoever ! lt_cv_sys_max_cmd_len=-1; ! ;; ! cygwin* | mingw*) ! # On Win9x/ME, this test blows up -- it succeeds, but takes ! # about 5 minutes as the teststring grows exponentially. ! # Worse, since 9x/ME are not pre-emptively multitasking, ! # you end up with a "frozen" computer, even though with patience ! # the test eventually succeeds (with a max line length of 256k). ! # Instead, let's just punt: use the minimum linelength reported by ! # all of the supported platforms: 8192 (on NT/2K/XP). ! lt_cv_sys_max_cmd_len=8192; ! ;; ! amigaos*) ! # On AmigaOS with pdksh, this test takes hours, literally. ! # So we just punt and use a minimum line length of 8192. ! lt_cv_sys_max_cmd_len=8192; ! ;; ! netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) ! # This has been around since 386BSD, at least. Likely further. ! if test -x /sbin/sysctl; then ! lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` ! elif test -x /usr/sbin/sysctl; then ! lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` ! else ! lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs ! fi ! # And add a safety zone ! lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` ! lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ! ;; ! interix*) ! # We know the value 262144 and hardcode it with a safety zone (like BSD) ! lt_cv_sys_max_cmd_len=196608 ! ;; ! osf*) ! # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure ! # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not ! # nice to cause kernel panics so lets avoid the loop below. ! # First set a reasonable default. ! lt_cv_sys_max_cmd_len=16384 ! # ! if test -x /sbin/sysconfig; then ! case `/sbin/sysconfig -q proc exec_disable_arg_limit` in ! *1*) lt_cv_sys_max_cmd_len=-1 ;; ! esac ! fi ! ;; ! sco3.2v5*) ! lt_cv_sys_max_cmd_len=102400 ! ;; ! sysv5* | sco5v6* | sysv4.2uw2*) ! kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` ! if test -n "$kargmax"; then ! lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` ! else ! lt_cv_sys_max_cmd_len=32768 ! fi ! ;; ! *) ! # If test is not a shell built-in, we'll probably end up computing a ! # maximum length that is only half of the actual maximum length, but ! # we can't tell. ! SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} ! while (test "X"`$SHELL [$]0 --fallback-echo "X$teststring" 2>/dev/null` \ ! = "XX$teststring") >/dev/null 2>&1 && ! new_result=`expr "X$teststring" : ".*" 2>&1` && ! lt_cv_sys_max_cmd_len=$new_result && ! test $i != 17 # 1/2 MB should be enough ! do ! i=`expr $i + 1` ! teststring=$teststring$teststring ! done ! teststring= ! # Add a significant safety factor because C++ compilers can tack on massive ! # amounts of additional arguments before passing them to the linker. ! # It appears as though 1/2 is a usable value. ! lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` ! ;; ! esac ! ]) ! if test -n $lt_cv_sys_max_cmd_len ; then ! AC_MSG_RESULT($lt_cv_sys_max_cmd_len) ! else ! AC_MSG_RESULT(none) ! fi ! ])# AC_LIBTOOL_SYS_MAX_CMD_LEN ! # _LT_AC_CHECK_DLFCN ! # ------------------ ! AC_DEFUN([_LT_AC_CHECK_DLFCN], ! [AC_CHECK_HEADERS(dlfcn.h)dnl ! ])# _LT_AC_CHECK_DLFCN ! # _LT_AC_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, ! # ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) ! # --------------------------------------------------------------------- ! AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF], ! [AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl ! if test "$cross_compiling" = yes; then : ! [$4] ! else ! lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 ! lt_status=$lt_dlunknown ! cat > conftest.$ac_ext < ! #endif ! #include ! #ifdef RTLD_GLOBAL ! # define LT_DLGLOBAL RTLD_GLOBAL ! #else ! # ifdef DL_GLOBAL ! # define LT_DLGLOBAL DL_GLOBAL ! # else ! # define LT_DLGLOBAL 0 ! # endif ! #endif ! /* We may have to define LT_DLLAZY_OR_NOW in the command line if we ! find out it does not work in some platform. */ ! #ifndef LT_DLLAZY_OR_NOW ! # ifdef RTLD_LAZY ! # define LT_DLLAZY_OR_NOW RTLD_LAZY ! # else ! # ifdef DL_LAZY ! # define LT_DLLAZY_OR_NOW DL_LAZY ! # else ! # ifdef RTLD_NOW ! # define LT_DLLAZY_OR_NOW RTLD_NOW ! # else ! # ifdef DL_NOW ! # define LT_DLLAZY_OR_NOW DL_NOW ! # else ! # define LT_DLLAZY_OR_NOW 0 ! # endif ! # endif ! # endif ! # endif ! #endif ! #ifdef __cplusplus ! extern "C" void exit (int); ! #endif ! void fnord() { int i=42;} ! int main () ! { ! void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); ! int status = $lt_dlunknown; ! ! if (self) ! { ! if (dlsym (self,"fnord")) status = $lt_dlno_uscore; ! else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; ! /* dlclose (self); */ ! } ! else ! puts (dlerror ()); ! ! exit (status); ! }] ! EOF ! if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then ! (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null ! lt_status=$? ! case x$lt_status in ! x$lt_dlno_uscore) $1 ;; ! x$lt_dlneed_uscore) $2 ;; ! x$lt_dlunknown|x*) $3 ;; ! esac ! else : ! # compilation failed ! $3 fi ! fi ! rm -fr conftest* ! ])# _LT_AC_TRY_DLOPEN_SELF ! # AC_LIBTOOL_DLOPEN_SELF ! # ---------------------- ! AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], ! [AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl ! if test "x$enable_dlopen" != xyes; then ! enable_dlopen=unknown ! enable_dlopen_self=unknown ! enable_dlopen_self_static=unknown ! else ! lt_cv_dlopen=no ! lt_cv_dlopen_libs= ! case $host_os in ! beos*) ! lt_cv_dlopen="load_add_on" ! lt_cv_dlopen_libs= ! lt_cv_dlopen_self=yes ! ;; ! mingw* | pw32*) ! lt_cv_dlopen="LoadLibrary" ! lt_cv_dlopen_libs= ! ;; + cygwin*) + lt_cv_dlopen="dlopen" + lt_cv_dlopen_libs= + ;; ! darwin*) ! # if libdl is installed we need to link against it ! AC_CHECK_LIB([dl], [dlopen], ! [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ ! lt_cv_dlopen="dyld" ! lt_cv_dlopen_libs= ! lt_cv_dlopen_self=yes ! ]) ! ;; ! *) ! AC_CHECK_FUNC([shl_load], ! [lt_cv_dlopen="shl_load"], ! [AC_CHECK_LIB([dld], [shl_load], ! [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld"], ! [AC_CHECK_FUNC([dlopen], ! [lt_cv_dlopen="dlopen"], ! [AC_CHECK_LIB([dl], [dlopen], ! [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], ! [AC_CHECK_LIB([svld], [dlopen], ! [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], ! [AC_CHECK_LIB([dld], [dld_link], ! [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"]) ! ]) ! ]) ! ]) ! ]) ! ]) ! ;; ! esac ! if test "x$lt_cv_dlopen" != xno; then ! enable_dlopen=yes ! else ! enable_dlopen=no ! fi ! case $lt_cv_dlopen in ! dlopen) ! save_CPPFLAGS="$CPPFLAGS" ! test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" + save_LDFLAGS="$LDFLAGS" + wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" ! save_LIBS="$LIBS" ! LIBS="$lt_cv_dlopen_libs $LIBS" + AC_CACHE_CHECK([whether a program can dlopen itself], + lt_cv_dlopen_self, [dnl + _LT_AC_TRY_DLOPEN_SELF( + lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, + lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) + ]) ! if test "x$lt_cv_dlopen_self" = xyes; then ! wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" ! AC_CACHE_CHECK([whether a statically linked program can dlopen itself], ! lt_cv_dlopen_self_static, [dnl ! _LT_AC_TRY_DLOPEN_SELF( ! lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, ! lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) ! ]) ! fi ! CPPFLAGS="$save_CPPFLAGS" ! LDFLAGS="$save_LDFLAGS" ! LIBS="$save_LIBS" ! ;; ! esac + case $lt_cv_dlopen_self in + yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; + *) enable_dlopen_self=unknown ;; + esac ! case $lt_cv_dlopen_self_static in ! yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; ! *) enable_dlopen_self_static=unknown ;; ! esac ! fi ! ])# AC_LIBTOOL_DLOPEN_SELF ! # AC_LIBTOOL_PROG_CC_C_O([TAGNAME]) ! # --------------------------------- ! # Check to see if options -c and -o are simultaneously supported by compiler ! AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O], ! [AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl ! AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], ! [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)], ! [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no ! $rm -r conftest 2>/dev/null ! mkdir conftest ! cd conftest ! mkdir out ! printf "$lt_simple_compile_test_code" > conftest.$ac_ext + lt_compiler_flag="-o out/conftest2.$ac_objext" + # Insert the option either (1) after the last *FLAGS variable, or + # (2) before a word containing "conftest.", or (3) at the end. + # Note that $ac_compile itself does not contain backslashes and begins + # with a dollar sign (not a hyphen), so the echo should work correctly. + lt_compile=`echo "$ac_compile" | $SED \ + -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ + -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ + -e 's:$: $lt_compiler_flag:'` + (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) + (eval "$lt_compile" 2>out/conftest.err) + ac_status=$? + cat out/conftest.err >&AS_MESSAGE_LOG_FD + echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD + if (exit $ac_status) && test -s out/conftest2.$ac_objext + then + # The compiler can only warn and ignore the option if not recognized + # So say no if there are warnings + $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp + $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 + if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then + _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes + fi + fi + chmod u+w . 2>&AS_MESSAGE_LOG_FD + $rm conftest* + # SGI C++ compiler will create directory out/ii_files/ for + # template instantiation + test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files + $rm out/* && rmdir out + cd .. + rmdir conftest + $rm conftest* + ]) + ])# AC_LIBTOOL_PROG_CC_C_O ! # AC_LIBTOOL_SYS_HARD_LINK_LOCKS([TAGNAME]) ! # ----------------------------------------- ! # Check to see if we can do hard links to lock some files if needed ! AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], ! [AC_REQUIRE([_LT_AC_LOCK])dnl ! hard_links="nottested" ! if test "$_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then ! # do not overwrite the value of need_locks provided by the user ! AC_MSG_CHECKING([if we can lock with hard links]) ! hard_links=yes ! $rm conftest* ! ln conftest.a conftest.b 2>/dev/null && hard_links=no ! touch conftest.a ! ln conftest.a conftest.b 2>&5 || hard_links=no ! ln conftest.a conftest.b 2>/dev/null && hard_links=no ! AC_MSG_RESULT([$hard_links]) ! if test "$hard_links" = no; then ! AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) ! need_locks=warn ! fi else ! need_locks=no fi + ])# AC_LIBTOOL_SYS_HARD_LINK_LOCKS ! ! # AC_LIBTOOL_OBJDIR ! # ----------------- ! AC_DEFUN([AC_LIBTOOL_OBJDIR], ! [AC_CACHE_CHECK([for objdir], [lt_cv_objdir], ! [rm -f .libs 2>/dev/null ! mkdir .libs 2>/dev/null ! if test -d .libs; then ! lt_cv_objdir=.libs ! else ! # MS-DOS does not allow filenames that begin with a dot. ! lt_cv_objdir=_libs fi + rmdir .libs 2>/dev/null]) + objdir=$lt_cv_objdir + ])# AC_LIBTOOL_OBJDIR ! # AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([TAGNAME]) ! # ---------------------------------------------- ! # Check hardcoding attributes. ! AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], ! [AC_MSG_CHECKING([how to hardcode library paths into programs]) ! _LT_AC_TAGVAR(hardcode_action, $1)= ! if test -n "$_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)" || \ ! test -n "$_LT_AC_TAGVAR(runpath_var, $1)" || \ ! test "X$_LT_AC_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then ! # We can hardcode non-existant directories. ! if test "$_LT_AC_TAGVAR(hardcode_direct, $1)" != no && ! # If the only mechanism to avoid hardcoding is shlibpath_var, we ! # have to relink, otherwise we might link with an installed library ! # when we should be linking with a yet-to-be-installed one ! ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)" != no && ! test "$_LT_AC_TAGVAR(hardcode_minus_L, $1)" != no; then ! # Linking always hardcodes the temporary library directory. ! _LT_AC_TAGVAR(hardcode_action, $1)=relink ! else ! # We can link without hardcoding, and we can hardcode nonexisting dirs. ! _LT_AC_TAGVAR(hardcode_action, $1)=immediate ! fi else ! # We cannot hardcode anything, or else we can only hardcode existing ! # directories. ! _LT_AC_TAGVAR(hardcode_action, $1)=unsupported ! fi ! AC_MSG_RESULT([$_LT_AC_TAGVAR(hardcode_action, $1)]) ! if test "$_LT_AC_TAGVAR(hardcode_action, $1)" = relink; then ! # Fast installation is not supported ! enable_fast_install=no ! elif test "$shlibpath_overrides_runpath" = yes || ! test "$enable_shared" = no; then ! # Fast installation is not necessary ! enable_fast_install=needless ! fi ! ])# AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH ! # AC_LIBTOOL_SYS_LIB_STRIP ! # ------------------------ ! AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP], ! [striplib= ! old_striplib= ! AC_MSG_CHECKING([whether stripping libraries is possible]) ! if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then ! test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" ! test -z "$striplib" && striplib="$STRIP --strip-unneeded" ! AC_MSG_RESULT([yes]) ! else ! # FIXME - insert some real tests, host_os isn't really good enough ! case $host_os in ! darwin*) ! if test -n "$STRIP" ; then ! striplib="$STRIP -x" ! AC_MSG_RESULT([yes]) ! else ! AC_MSG_RESULT([no]) fi + ;; + *) + AC_MSG_RESULT([no]) + ;; + esac fi + ])# AC_LIBTOOL_SYS_LIB_STRIP ! ! # AC_LIBTOOL_SYS_DYNAMIC_LINKER ! # ----------------------------- ! # PORTME Fill in your ld.so characteristics ! AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER], ! [AC_MSG_CHECKING([dynamic linker characteristics]) ! library_names_spec= ! libname_spec='lib$name' ! soname_spec= ! shrext_cmds=".so" ! postinstall_cmds= ! postuninstall_cmds= ! finish_cmds= ! finish_eval= ! shlibpath_var= ! shlibpath_overrides_runpath=unknown ! version_type=none ! dynamic_linker="$host_os ld.so" ! sys_lib_dlsearch_path_spec="/lib /usr/lib" ! if test "$GCC" = yes; then ! sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` ! if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then ! # if the path contains ";" then we assume it to be the separator ! # otherwise default to the standard path separator (i.e. ":") - it is ! # assumed that no part of a normal pathname contains ";" but that should ! # okay in the real world where ";" in dirpaths is itself problematic. ! sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` ! else ! sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ! fi ! else ! sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi + need_lib_prefix=unknown + hardcode_into_libs=no ! # when you set need_version to no, make sure it does not cause -set_version ! # flags to be left without arguments ! need_version=unknown + case $host_os in + aix3*) + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' + shlibpath_var=LIBPATH ! # AIX 3 has no versioning support, so we append a major version to the name. ! soname_spec='${libname}${release}${shared_ext}$major' ! ;; ! aix4* | aix5*) ! version_type=linux ! need_lib_prefix=no ! need_version=no ! hardcode_into_libs=yes ! if test "$host_cpu" = ia64; then ! # AIX 5 supports IA64 ! library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' ! shlibpath_var=LD_LIBRARY_PATH ! else ! # With GCC up to 2.95.x, collect2 would create an import file ! # for dependence libraries. The import file would start with ! # the line `#! .'. This would cause the generated library to ! # depend on `.', always an invalid library. This was fixed in ! # development snapshots of GCC prior to 3.0. ! case $host_os in ! aix4 | aix4.[[01]] | aix4.[[01]].*) ! if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' ! echo ' yes ' ! echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then ! : ! else ! can_build_shared=no ! fi ;; esac + # AIX (on Power*) has no versioning support, so currently we can not hardcode correct + # soname into executable. Probably we can add versioning support to + # collect2, so additional links can be useful in future. + if test "$aix_use_runtimelinking" = yes; then + # If using run time linking (on AIX 4.2 or later) use lib.so + # instead of lib.a to let people know that these are not + # typical AIX shared libraries. + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + else + # We preserve .a as extension for shared libraries through AIX4.2 + # and later when we are not doing run time linking. + library_names_spec='${libname}${release}.a $libname.a' + soname_spec='${libname}${release}${shared_ext}$major' + fi + shlibpath_var=LIBPATH fi ;; ! ! amigaos*) ! library_names_spec='$libname.ixlibrary $libname.a' ! # Create ${libname}_ixlibrary.a entries in /sys/libs. ! finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; ! beos*) ! library_names_spec='${libname}${shared_ext}' ! dynamic_linker="$host_os ld.so" ! shlibpath_var=LIBRARY_PATH ;; ! bsdi[[45]]*) ! version_type=linux ! need_version=no ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ! soname_spec='${libname}${release}${shared_ext}$major' ! finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' ! shlibpath_var=LD_LIBRARY_PATH ! sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" ! sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" ! # the default ld.so.conf also contains /usr/contrib/lib and ! # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow ! # libtool to hard-code these into programs ;; ! ! cygwin* | mingw* | pw32*) ! version_type=windows ! shrext_cmds=".dll" ! need_version=no ! need_lib_prefix=no ! ! case $GCC,$host_os in ! yes,cygwin* | yes,mingw* | yes,pw32*) ! library_names_spec='$libname.dll.a' ! # DLL is installed to $(libdir)/../bin by postinstall_cmds ! postinstall_cmds='base_file=`basename \${file}`~ ! dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ ! dldir=$destdir/`dirname \$dlpath`~ ! test -d \$dldir || mkdir -p \$dldir~ ! $install_prog $dir/$dlname \$dldir/$dlname~ ! chmod a+x \$dldir/$dlname' ! postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ ! dlpath=$dir/\$dldll~ ! $rm \$dlpath' ! shlibpath_overrides_runpath=yes ! ! case $host_os in ! cygwin*) ! # Cygwin DLLs use 'cyg' prefix rather than 'lib' ! soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' ! sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ! ;; ! mingw*) ! # MinGW DLLs use traditional 'lib' prefix ! soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' ! sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` ! if echo "$sys_lib_search_path_spec" | [grep ';[c-zC-Z]:/' >/dev/null]; then ! # It is most probably a Windows format PATH printed by ! # mingw gcc, but we are running on Cygwin. Gcc prints its search ! # path with ; separators, and with drive letters. We can handle the ! # drive letters (cygwin fileutils understands them), so leave them, ! # especially as we might pass files found there to a mingw objdump, ! # which wouldn't understand a cygwinified path. Ahh. ! sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` ! else ! sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ! fi ! ;; ! pw32*) ! # pw32 DLLs use 'pw' prefix rather than 'lib' ! library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' ;; esac + ;; + + *) + library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' + ;; + esac + dynamic_linker='Win32 ld.exe' + # FIXME: first we should search . and the directory the executable is in + shlibpath_var=PATH + ;; + + darwin* | rhapsody*) + dynamic_linker="$host_os dyld" + version_type=darwin + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' + soname_spec='${libname}${release}${major}$shared_ext' + shlibpath_overrides_runpath=yes + shlibpath_var=DYLD_LIBRARY_PATH + shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' + # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. + if test "$GCC" = yes; then + sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"` + else + sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib' fi ! sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; ! dgux*) ! version_type=linux ! need_lib_prefix=no ! need_version=no ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' ! soname_spec='${libname}${release}${shared_ext}$major' ! shlibpath_var=LD_LIBRARY_PATH ;; ! freebsd1*) ! dynamic_linker=no ! ;; ! kfreebsd*-gnu) ! version_type=linux ! need_lib_prefix=no ! need_version=no ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' ! soname_spec='${libname}${release}${shared_ext}$major' ! shlibpath_var=LD_LIBRARY_PATH ! shlibpath_overrides_runpath=no ! hardcode_into_libs=yes ! dynamic_linker='GNU ld.so' ! ;; + freebsd* | dragonfly*) + # DragonFly does not have aout. When/if they implement a new + # versioning mechanism, adjust this. + if test -x /usr/bin/objformat; then + objformat=`/usr/bin/objformat` + else + case $host_os in + freebsd[[123]]*) objformat=aout ;; + *) objformat=elf ;; + esac + fi + version_type=freebsd-$objformat + case $version_type in + freebsd-elf*) + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + need_version=no + need_lib_prefix=no + ;; + freebsd-*) + library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' + need_version=yes + ;; + esac + shlibpath_var=LD_LIBRARY_PATH + case $host_os in + freebsd2*) + shlibpath_overrides_runpath=yes + ;; + freebsd3.[[01]]* | freebsdelf3.[[01]]*) + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ + freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) + shlibpath_overrides_runpath=no + hardcode_into_libs=yes + ;; + freebsd*) # from 4.6 on + shlibpath_overrides_runpath=yes + hardcode_into_libs=yes + ;; + esac + ;; ! gnu*) ! version_type=linux ! need_lib_prefix=no ! need_version=no ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' ! soname_spec='${libname}${release}${shared_ext}$major' ! shlibpath_var=LD_LIBRARY_PATH ! hardcode_into_libs=yes ! ;; ! hpux9* | hpux10* | hpux11*) ! # Give a soname corresponding to the major version so that dld.sl refuses to ! # link against other versions. ! version_type=sunos ! need_lib_prefix=no ! need_version=no ! case $host_cpu in ! ia64*) ! shrext_cmds='.so' ! hardcode_into_libs=yes ! dynamic_linker="$host_os dld.so" ! shlibpath_var=LD_LIBRARY_PATH ! shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ! soname_spec='${libname}${release}${shared_ext}$major' ! if test "X$HPUX_IA64_MODE" = X32; then ! sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" ! else ! sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" ! fi ! sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; ! hppa*64*) ! shrext_cmds='.sl' ! hardcode_into_libs=yes ! dynamic_linker="$host_os dld.sl" ! shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH ! shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ! soname_spec='${libname}${release}${shared_ext}$major' ! sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" ! sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ! ;; ! *) ! shrext_cmds='.sl' ! dynamic_linker="$host_os dld.sl" ! shlibpath_var=SHLIB_PATH ! shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ! soname_spec='${libname}${release}${shared_ext}$major' ;; + esac + # HP-UX runs *really* slowly unless shared libraries are mode 555. + postinstall_cmds='chmod 555 $lib' + ;; ! interix3*) ! version_type=linux ! need_lib_prefix=no ! need_version=no ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' ! soname_spec='${libname}${release}${shared_ext}$major' ! dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' ! shlibpath_var=LD_LIBRARY_PATH ! shlibpath_overrides_runpath=no ! hardcode_into_libs=yes ! ;; ! irix5* | irix6* | nonstopux*) ! case $host_os in ! nonstopux*) version_type=nonstopux ;; ! *) ! if test "$lt_cv_prog_gnu_ld" = yes; then ! version_type=linux ! else ! version_type=irix ! fi ;; ! esac ! need_lib_prefix=no ! need_version=no ! soname_spec='${libname}${release}${shared_ext}$major' ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' ! case $host_os in ! irix5* | nonstopux*) ! libsuff= shlibsuff= ;; ! *) ! case $LD in # libtool.m4 will add one of these switches to LD ! *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") ! libsuff= shlibsuff= libmagic=32-bit;; ! *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") ! libsuff=32 shlibsuff=N32 libmagic=N32;; ! *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") ! libsuff=64 shlibsuff=64 libmagic=64-bit;; ! *) libsuff= shlibsuff= libmagic=never-match;; ! esac ;; + esac + shlibpath_var=LD_LIBRARY${shlibsuff}_PATH + shlibpath_overrides_runpath=no + sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" + sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" + hardcode_into_libs=yes + ;; ! # No shared lib support for Linux oldld, aout, or coff. ! linux*oldld* | linux*aout* | linux*coff*) ! dynamic_linker=no ! ;; ! # This must be Linux ELF. ! linux*) ! version_type=linux ! need_lib_prefix=no ! need_version=no ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ! soname_spec='${libname}${release}${shared_ext}$major' ! finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' ! shlibpath_var=LD_LIBRARY_PATH ! shlibpath_overrides_runpath=no ! # This implies no fast_install, which is unacceptable. ! # Some rework will be needed to allow for fast_install ! # before this can be enabled. ! hardcode_into_libs=yes ! ! # find out which ABI we are using ! libsuff= ! case "$host_cpu" in ! x86_64*|s390x*|powerpc64*) ! echo '[#]line __oline__ "configure"' > conftest.$ac_ext ! if AC_TRY_EVAL(ac_compile); then ! case `/usr/bin/file conftest.$ac_objext` in ! *64-bit*) ! libsuff=64 ! sys_lib_search_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/local/lib${libsuff}" ! ;; esac fi ! rm -rf conftest* ;; esac + # Append ld.so.conf contents to the search path + if test -f /etc/ld.so.conf; then + lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/^[ ]*//;s/#.*//;/^[^\/]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` + sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff} $lt_ld_extra" + fi ! # We used to test for /lib/ld.so.1 and disable shared libraries on ! # powerpc, because MkLinux only supported shared libraries with the ! # GNU dynamic linker. Since this was broken with cross compilers, ! # most powerpc-linux boxes support dynamic linking these days and ! # people can always --disable-shared, the test was removed, and we ! # assume the GNU/Linux dynamic linker is in use. ! dynamic_linker='GNU/Linux ld.so' ! ;; ! knetbsd*-gnu) ! version_type=linux ! need_lib_prefix=no ! need_version=no ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' ! soname_spec='${libname}${release}${shared_ext}$major' ! shlibpath_var=LD_LIBRARY_PATH ! shlibpath_overrides_runpath=no ! hardcode_into_libs=yes ! dynamic_linker='GNU ld.so' ! ;; ! netbsd*) ! version_type=sunos ! need_lib_prefix=no ! need_version=no ! if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' ! finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' ! dynamic_linker='NetBSD (a.out) ld.so' else ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' ! soname_spec='${libname}${release}${shared_ext}$major' ! dynamic_linker='NetBSD ld.elf_so' fi ! shlibpath_var=LD_LIBRARY_PATH ! shlibpath_overrides_runpath=yes ! hardcode_into_libs=yes ! ;; + newsos6) + version_type=linux + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' + shlibpath_var=LD_LIBRARY_PATH + shlibpath_overrides_runpath=yes + ;; ! nto-qnx*) ! version_type=linux ! need_lib_prefix=no ! need_version=no ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ! soname_spec='${libname}${release}${shared_ext}$major' ! shlibpath_var=LD_LIBRARY_PATH ! shlibpath_overrides_runpath=yes ! ;; + openbsd*) + version_type=sunos + sys_lib_dlsearch_path_spec="/usr/lib" + need_lib_prefix=no + # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in ! openbsd3.3 | openbsd3.3.*) need_version=yes ;; ! *) need_version=no ;; esac ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' ! finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' ! shlibpath_var=LD_LIBRARY_PATH ! if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then ! case $host_os in ! openbsd2.[[89]] | openbsd2.[[89]].*) ! shlibpath_overrides_runpath=no ! ;; ! *) ! shlibpath_overrides_runpath=yes ! ;; ! esac else ! shlibpath_overrides_runpath=yes fi + ;; ! os2*) ! libname_spec='$name' ! shrext_cmds=".dll" ! need_lib_prefix=no ! library_names_spec='$libname${shared_ext} $libname.a' ! dynamic_linker='OS/2 ld.exe' ! shlibpath_var=LIBPATH ! ;; ! osf3* | osf4* | osf5*) ! version_type=osf ! need_lib_prefix=no ! need_version=no ! soname_spec='${libname}${release}${shared_ext}$major' ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ! shlibpath_var=LD_LIBRARY_PATH ! sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" ! sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ! ;; ! solaris*) ! version_type=linux ! need_lib_prefix=no ! need_version=no ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ! soname_spec='${libname}${release}${shared_ext}$major' ! shlibpath_var=LD_LIBRARY_PATH ! shlibpath_overrides_runpath=yes ! hardcode_into_libs=yes ! # ldd complains unless libraries are executable ! postinstall_cmds='chmod +x $lib' ! ;; ! sunos4*) ! version_type=sunos ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' ! finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' ! shlibpath_var=LD_LIBRARY_PATH ! shlibpath_overrides_runpath=yes ! if test "$with_gnu_ld" = yes; then ! need_lib_prefix=no ! fi ! need_version=yes ! ;; ! sysv4 | sysv4.3*) ! version_type=linux ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ! soname_spec='${libname}${release}${shared_ext}$major' ! shlibpath_var=LD_LIBRARY_PATH ! case $host_vendor in ! sni) ! shlibpath_overrides_runpath=no ! need_lib_prefix=no ! export_dynamic_flag_spec='${wl}-Blargedynsym' ! runpath_var=LD_RUN_PATH ! ;; ! siemens) ! need_lib_prefix=no ! ;; ! motorola) ! need_lib_prefix=no ! need_version=no ! shlibpath_overrides_runpath=no ! sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ! ;; esac + ;; ! sysv4*MP*) ! if test -d /usr/nec ;then ! version_type=linux ! library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' ! soname_spec='$libname${shared_ext}.$major' ! shlibpath_var=LD_LIBRARY_PATH ! fi ! ;; + sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) + version_type=freebsd-elf + need_lib_prefix=no + need_version=no + library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' + soname_spec='${libname}${release}${shared_ext}$major' + shlibpath_var=LD_LIBRARY_PATH + hardcode_into_libs=yes + if test "$with_gnu_ld" = yes; then + sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' + shlibpath_overrides_runpath=no + else + sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' + shlibpath_overrides_runpath=yes + case $host_os in + sco3.2v5*) + sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" + ;; + esac + fi + sys_lib_dlsearch_path_spec='/usr/lib' + ;; ! uts4*) ! version_type=linux ! library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ! soname_spec='${libname}${release}${shared_ext}$major' ! shlibpath_var=LD_LIBRARY_PATH ! ;; ! *) ! dynamic_linker=no ! ;; ! esac ! AC_MSG_RESULT([$dynamic_linker]) ! test "$dynamic_linker" = no && can_build_shared=no ! ! variables_saved_for_relink="PATH $shlibpath_var $runpath_var" ! if test "$GCC" = yes; then ! variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" ! fi ! ])# AC_LIBTOOL_SYS_DYNAMIC_LINKER ! # _LT_AC_TAGCONFIG ! # ---------------- ! AC_DEFUN([_LT_AC_TAGCONFIG], ! [AC_ARG_WITH([tags], ! [AC_HELP_STRING([--with-tags@<:@=TAGS@:>@], ! [include additional configurations @<:@automatic@:>@])], ! [tagnames="$withval"]) ! if test -f "$ltmain" && test -n "$tagnames"; then ! if test ! -f "${ofile}"; then ! AC_MSG_WARN([output file `$ofile' does not exist]) fi + if test -z "$LTCC"; then + eval "`$SHELL ${ofile} --config | grep '^LTCC='`" + if test -z "$LTCC"; then + AC_MSG_WARN([output file `$ofile' does not look like a libtool script]) + else + AC_MSG_WARN([using `LTCC=$LTCC', extracted from `$ofile']) + fi + fi + if test -z "$LTCFLAGS"; then + eval "`$SHELL ${ofile} --config | grep '^LTCFLAGS='`" + fi ! # Extract list of available tagged configurations in $ofile. ! # Note that this assumes the entire list is on one line. ! available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'` + lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," + for tagname in $tagnames; do + IFS="$lt_save_ifs" + # Check whether tagname contains only valid characters + case `$echo "X$tagname" | $Xsed -e 's:[[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]]::g'` in + "") ;; + *) AC_MSG_ERROR([invalid tag name: $tagname]) + ;; + esac ! if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null ! then ! AC_MSG_ERROR([tag name \"$tagname\" already exists]) ! fi ! # Update the list of available tags. ! if test -n "$tagname"; then ! echo appending configuration tag \"$tagname\" to $ofile ! case $tagname in ! CXX) ! if test -n "$CXX" && ( test "X$CXX" != "Xno" && ! ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || ! (test "X$CXX" != "Xg++"))) ; then ! AC_LIBTOOL_LANG_CXX_CONFIG ! else ! tagname="" ! fi ! ;; + F77) + if test -n "$F77" && test "X$F77" != "Xno"; then + AC_LIBTOOL_LANG_F77_CONFIG + else + tagname="" + fi + ;; ! GCJ) ! if test -n "$GCJ" && test "X$GCJ" != "Xno"; then ! AC_LIBTOOL_LANG_GCJ_CONFIG ! else ! tagname="" ! fi ! ;; + RC) + AC_LIBTOOL_LANG_RC_CONFIG + ;; ! *) ! AC_MSG_ERROR([Unsupported tag name: $tagname]) ! ;; ! esac ! ! # Append the new tag name to the list of available tags. ! if test -n "$tagname" ; then ! available_tags="$available_tags $tagname" ! fi ! fi ! done ! IFS="$lt_save_ifs" ! ! # Now substitute the updated list of available tags. ! if eval "sed -e 's/^available_tags=.*\$/available_tags=\"$available_tags\"/' \"$ofile\" > \"${ofile}T\""; then ! mv "${ofile}T" "$ofile" ! chmod +x "$ofile" else ! rm -f "${ofile}T" ! AC_MSG_ERROR([unable to update list of available tagged configurations.]) fi fi ! ])# _LT_AC_TAGCONFIG ! # AC_LIBTOOL_DLOPEN ! # ----------------- ! # enable checks for dlopen support ! AC_DEFUN([AC_LIBTOOL_DLOPEN], ! [AC_BEFORE([$0],[AC_LIBTOOL_SETUP]) ! ])# AC_LIBTOOL_DLOPEN ! # AC_LIBTOOL_WIN32_DLL ! # -------------------- ! # declare package support for building win32 DLLs ! AC_DEFUN([AC_LIBTOOL_WIN32_DLL], ! [AC_BEFORE([$0], [AC_LIBTOOL_SETUP]) ! ])# AC_LIBTOOL_WIN32_DLL ! # AC_ENABLE_SHARED([DEFAULT]) ! # --------------------------- ! # implement the --enable-shared flag ! # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. ! AC_DEFUN([AC_ENABLE_SHARED], ! [define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl ! AC_ARG_ENABLE([shared], ! [AC_HELP_STRING([--enable-shared@<:@=PKGS@:>@], ! [build shared libraries @<:@default=]AC_ENABLE_SHARED_DEFAULT[@:>@])], ! [p=${PACKAGE-default} ! case $enableval in ! yes) enable_shared=yes ;; ! no) enable_shared=no ;; ! *) ! enable_shared=no ! # Look at the argument we got. We use all the common list separators. ! lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," ! for pkg in $enableval; do ! IFS="$lt_save_ifs" ! if test "X$pkg" = "X$p"; then ! enable_shared=yes ! fi ! done ! IFS="$lt_save_ifs" ! ;; ! esac], ! [enable_shared=]AC_ENABLE_SHARED_DEFAULT) ! ])# AC_ENABLE_SHARED ! # AC_DISABLE_SHARED ! # ----------------- ! # set the default shared flag to --disable-shared ! AC_DEFUN([AC_DISABLE_SHARED], ! [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl ! AC_ENABLE_SHARED(no) ! ])# AC_DISABLE_SHARED ! # AC_ENABLE_STATIC([DEFAULT]) ! # --------------------------- ! # implement the --enable-static flag ! # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. ! AC_DEFUN([AC_ENABLE_STATIC], ! [define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl ! AC_ARG_ENABLE([static], ! [AC_HELP_STRING([--enable-static@<:@=PKGS@:>@], ! [build static libraries @<:@default=]AC_ENABLE_STATIC_DEFAULT[@:>@])], ! [p=${PACKAGE-default} ! case $enableval in ! yes) enable_static=yes ;; ! no) enable_static=no ;; ! *) ! enable_static=no ! # Look at the argument we got. We use all the common list separators. ! lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," ! for pkg in $enableval; do ! IFS="$lt_save_ifs" ! if test "X$pkg" = "X$p"; then ! enable_static=yes ! fi ! done ! IFS="$lt_save_ifs" ;; ! esac], ! [enable_static=]AC_ENABLE_STATIC_DEFAULT) ! ])# AC_ENABLE_STATIC ! ! ! # AC_DISABLE_STATIC ! # ----------------- ! # set the default static flag to --disable-static ! AC_DEFUN([AC_DISABLE_STATIC], ! [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl ! AC_ENABLE_STATIC(no) ! ])# AC_DISABLE_STATIC ! ! ! # AC_ENABLE_FAST_INSTALL([DEFAULT]) ! # --------------------------------- ! # implement the --enable-fast-install flag ! # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. ! AC_DEFUN([AC_ENABLE_FAST_INSTALL], ! [define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl ! AC_ARG_ENABLE([fast-install], ! [AC_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], ! [optimize for fast installation @<:@default=]AC_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], ! [p=${PACKAGE-default} ! case $enableval in ! yes) enable_fast_install=yes ;; ! no) enable_fast_install=no ;; ! *) ! enable_fast_install=no ! # Look at the argument we got. We use all the common list separators. ! lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," ! for pkg in $enableval; do ! IFS="$lt_save_ifs" ! if test "X$pkg" = "X$p"; then ! enable_fast_install=yes ! fi ! done ! IFS="$lt_save_ifs" ;; ! esac], ! [enable_fast_install=]AC_ENABLE_FAST_INSTALL_DEFAULT) ! ])# AC_ENABLE_FAST_INSTALL ! # AC_DISABLE_FAST_INSTALL ! # ----------------------- ! # set the default to --disable-fast-install ! AC_DEFUN([AC_DISABLE_FAST_INSTALL], ! [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl ! AC_ENABLE_FAST_INSTALL(no) ! ])# AC_DISABLE_FAST_INSTALL ! # AC_LIBTOOL_PICMODE([MODE]) ! # -------------------------- ! # implement the --with-pic flag ! # MODE is either `yes' or `no'. If omitted, it defaults to `both'. ! AC_DEFUN([AC_LIBTOOL_PICMODE], ! [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl ! pic_mode=ifelse($#,1,$1,default) ! ])# AC_LIBTOOL_PICMODE ! ! ! # AC_PROG_EGREP ! # ------------- ! # This is predefined starting with Autoconf 2.54, so this conditional ! # definition can be removed once we require Autoconf 2.54 or later. ! m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP], ! [AC_CACHE_CHECK([for egrep], [ac_cv_prog_egrep], ! [if echo a | (grep -E '(a|b)') >/dev/null 2>&1 ! then ac_cv_prog_egrep='grep -E' ! else ac_cv_prog_egrep='egrep' ! fi]) ! EGREP=$ac_cv_prog_egrep ! AC_SUBST([EGREP]) ! ])]) ! ! ! # AC_PATH_TOOL_PREFIX ! # ------------------- ! # find a file program which can recognise shared library ! AC_DEFUN([AC_PATH_TOOL_PREFIX], ! [AC_REQUIRE([AC_PROG_EGREP])dnl ! AC_MSG_CHECKING([for $1]) ! AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, ! [case $MAGIC_CMD in ! [[\\/*] | ?:[\\/]*]) ! lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; + *) + lt_save_MAGIC_CMD="$MAGIC_CMD" + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + dnl $ac_dummy forces splitting on constant user-supplied paths. + dnl POSIX.2 word splitting is done only on the output of word expansions, + dnl not every word. This closes a longstanding sh security hole. + ac_dummy="ifelse([$2], , $PATH, [$2])" + for ac_dir in $ac_dummy; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + if test -f $ac_dir/$1; then + lt_cv_path_MAGIC_CMD="$ac_dir/$1" + if test -n "$file_magic_test_file"; then + case $deplibs_check_method in + "file_magic "*) + file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` + MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | + $EGREP "$file_magic_regex" > /dev/null; then + : + else + cat <&2 ! *** Warning: the command libtool uses to detect shared libraries, ! *** $file_magic_cmd, produces output that libtool cannot recognize. ! *** The result is that libtool may fail to recognize shared libraries ! *** as such. This will affect the creation of libtool libraries that ! *** depend on shared libraries, but programs linked with such libtool ! *** libraries will work regardless of this problem. Nevertheless, you ! *** may want to report the problem to your system manager and/or to ! *** bug-libtool@gnu.org ! ! EOF ! fi ;; ! esac ! fi ! break ! fi ! done ! IFS="$lt_save_ifs" ! MAGIC_CMD="$lt_save_MAGIC_CMD" ;; + esac]) + MAGIC_CMD="$lt_cv_path_MAGIC_CMD" + if test -n "$MAGIC_CMD"; then + AC_MSG_RESULT($MAGIC_CMD) + else + AC_MSG_RESULT(no) + fi + ])# AC_PATH_TOOL_PREFIX ! ! # AC_PATH_MAGIC ! # ------------- ! # find a file program which can recognise a shared library ! AC_DEFUN([AC_PATH_MAGIC], ! [AC_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) ! if test -z "$lt_cv_path_MAGIC_CMD"; then ! if test -n "$ac_tool_prefix"; then ! AC_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) else ! MAGIC_CMD=: fi ! fi ! ])# AC_PATH_MAGIC ! ! ! # AC_PROG_LD ! # ---------- ! # find the pathname to the GNU or non-GNU linker ! AC_DEFUN([AC_PROG_LD], ! [AC_ARG_WITH([gnu-ld], ! [AC_HELP_STRING([--with-gnu-ld], ! [assume the C compiler uses GNU ld @<:@default=no@:>@])], ! [test "$withval" = no || with_gnu_ld=yes], ! [with_gnu_ld=no]) ! AC_REQUIRE([LT_AC_PROG_SED])dnl ! AC_REQUIRE([AC_PROG_CC])dnl ! AC_REQUIRE([AC_CANONICAL_HOST])dnl ! AC_REQUIRE([AC_CANONICAL_BUILD])dnl ! ac_prog=ld ! if test "$GCC" = yes; then ! # Check if gcc -print-prog-name=ld gives a path. ! AC_MSG_CHECKING([for ld used by $CC]) ! case $host in ! *-*-mingw*) ! # gcc leaves a trailing carriage return which upsets mingw ! ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; ! *) ! ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac ! case $ac_prog in ! # Accept absolute paths. ! [[\\/]]* | ?:[[\\/]]*) ! re_direlt='/[[^/]][[^/]]*/\.\./' ! # Canonicalize the pathname of ld ! ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'` ! while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do ! ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"` ! done ! test -z "$LD" && LD="$ac_prog" ! ;; ! "") ! # If it fails, then pretend we aren't using GCC. ! ac_prog=ld ;; ! *) ! # If it is relative, then search for the first ld in PATH. ! with_gnu_ld=unknown ;; esac ! elif test "$with_gnu_ld" = yes; then ! AC_MSG_CHECKING([for GNU ld]) ! else ! AC_MSG_CHECKING([for non-GNU ld]) ! fi ! AC_CACHE_VAL(lt_cv_path_LD, ! [if test -z "$LD"; then ! lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ! for ac_dir in $PATH; do ! IFS="$lt_save_ifs" ! test -z "$ac_dir" && ac_dir=. ! if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then ! lt_cv_path_LD="$ac_dir/$ac_prog" ! # Check to see if the program is GNU ld. I'd rather use --version, ! # but apparently some variants of GNU ld only accept -v. ! # Break only if it was the GNU/non-GNU ld that we prefer. ! case `"$lt_cv_path_LD" -v 2>&1 &1 /dev/null; then ! case $host_cpu in ! i*86 ) ! # Not sure whether the presence of OpenBSD here was a mistake. ! # Let's accept both of them until this is cleared up. ! lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' ! lt_cv_file_magic_cmd=/usr/bin/file ! lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ! ;; ! esac ! else ! lt_cv_deplibs_check_method=pass_all ! fi ! ;; ! ! gnu*) ! lt_cv_deplibs_check_method=pass_all ! ;; ! ! hpux10.20* | hpux11*) ! lt_cv_file_magic_cmd=/usr/bin/file ! case $host_cpu in ! ia64*) ! lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' ! lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ! ;; ! hppa*64*) ! [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]'] ! lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) ! lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library' ! lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; ! interix3*) ! # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here ! lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' ;; ! irix5* | irix6* | nonstopux*) ! case $LD in ! *-32|*"-32 ") libmagic=32-bit;; ! *-n32|*"-n32 ") libmagic=N32;; ! *-64|*"-64 ") libmagic=64-bit;; ! *) libmagic=never-match;; ! esac ! lt_cv_deplibs_check_method=pass_all ;; ! # This must be Linux ELF. ! linux*) ! lt_cv_deplibs_check_method=pass_all ;; netbsd*) ! if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then ! lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' else ! lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' fi ;; ! newos6*) ! lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' ! lt_cv_file_magic_cmd=/usr/bin/file ! lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; nto-qnx*) ! lt_cv_deplibs_check_method=unknown ;; openbsd*) if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then ! lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' else ! lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) ! lt_cv_deplibs_check_method=pass_all ;; solaris*) ! lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in ! motorola) ! lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' ! lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ! ;; ! ncr) ! lt_cv_deplibs_check_method=pass_all ! ;; ! sequent) ! lt_cv_file_magic_cmd='/bin/file' ! lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ! ;; ! sni) ! lt_cv_file_magic_cmd='/bin/file' ! lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" ! lt_cv_file_magic_test_file=/lib/libc.so ! ;; ! siemens) ! lt_cv_deplibs_check_method=pass_all ! ;; ! pc) ! lt_cv_deplibs_check_method=pass_all ! ;; ! esac ;; ! sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) ! lt_cv_deplibs_check_method=pass_all ;; + esac + ]) + file_magic_cmd=$lt_cv_file_magic_cmd + deplibs_check_method=$lt_cv_deplibs_check_method + test -z "$deplibs_check_method" && deplibs_check_method=unknown + ])# AC_DEPLIBS_CHECK_METHOD + + + # AC_PROG_NM + # ---------- + # find the pathname to a BSD-compatible name lister + AC_DEFUN([AC_PROG_NM], + [AC_CACHE_CHECK([for BSD-compatible nm], lt_cv_path_NM, + [if test -n "$NM"; then + # Let the user override the test. + lt_cv_path_NM="$NM" + else + lt_nm_to_check="${ac_tool_prefix}nm" + if test -n "$ac_tool_prefix" && test "$build" = "$host"; then + lt_nm_to_check="$lt_nm_to_check nm" + fi + for lt_tmp_nm in $lt_nm_to_check; do + lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR + for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do + IFS="$lt_save_ifs" + test -z "$ac_dir" && ac_dir=. + tmp_nm="$ac_dir/$lt_tmp_nm" + if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then + # Check to see if the nm accepts a BSD-compat flag. + # Adding the `sed 1q' prevents false positives on HP-UX, which says: + # nm: unknown option "B" ignored + # Tru64's nm complains that /dev/null is an invalid object file + case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in + */dev/null* | *'Invalid file or object type'*) + lt_cv_path_NM="$tmp_nm -B" + break + ;; + *) + case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in + */dev/null*) + lt_cv_path_NM="$tmp_nm -p" + break + ;; + *) + lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but + continue # so that we can try to find one that supports BSD flags + ;; + esac + ;; + esac + fi + done + IFS="$lt_save_ifs" + done + test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm + fi]) + NM="$lt_cv_path_NM" + ])# AC_PROG_NM + + # AC_CHECK_LIBM + # ------------- + # check for math library + AC_DEFUN([AC_CHECK_LIBM], + [AC_REQUIRE([AC_CANONICAL_HOST])dnl + LIBM= + case $host in + *-*-beos* | *-*-cygwin* | *-*-pw32* | *-*-darwin*) + # These system don't have libm, or don't need it + ;; + *-ncr-sysv4.3*) + AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") + AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") + ;; *) ! AC_CHECK_LIB(m, cos, LIBM="-lm") ;; esac ! ])# AC_CHECK_LIBM + # AC_LIBLTDL_CONVENIENCE([DIRECTORY]) + # ----------------------------------- + # sets LIBLTDL to the link flags for the libltdl convenience library and + # LTDLINCL to the include flags for the libltdl header and adds + # --enable-ltdl-convenience to the configure arguments. Note that + # AC_CONFIG_SUBDIRS is not called here. If DIRECTORY is not provided, + # it is assumed to be `libltdl'. LIBLTDL will be prefixed with + # '${top_builddir}/' and LTDLINCL will be prefixed with '${top_srcdir}/' + # (note the single quotes!). If your package is not flat and you're not + # using automake, define top_builddir and top_srcdir appropriately in + # the Makefiles. + AC_DEFUN([AC_LIBLTDL_CONVENIENCE], + [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl + case $enable_ltdl_convenience in + no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;; + "") enable_ltdl_convenience=yes + ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;; + esac + LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdlc.la + LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) + # For backwards non-gettext consistent compatibility... + INCLTDL="$LTDLINCL" + ])# AC_LIBLTDL_CONVENIENCE ! # AC_LIBLTDL_INSTALLABLE([DIRECTORY]) ! # ----------------------------------- ! # sets LIBLTDL to the link flags for the libltdl installable library and ! # LTDLINCL to the include flags for the libltdl header and adds ! # --enable-ltdl-install to the configure arguments. Note that ! # AC_CONFIG_SUBDIRS is not called here. If DIRECTORY is not provided, ! # and an installed libltdl is not found, it is assumed to be `libltdl'. ! # LIBLTDL will be prefixed with '${top_builddir}/'# and LTDLINCL with ! # '${top_srcdir}/' (note the single quotes!). If your package is not ! # flat and you're not using automake, define top_builddir and top_srcdir ! # appropriately in the Makefiles. ! # In the future, this macro may have to be called after AC_PROG_LIBTOOL. ! AC_DEFUN([AC_LIBLTDL_INSTALLABLE], ! [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl ! AC_CHECK_LIB(ltdl, lt_dlinit, ! [test x"$enable_ltdl_install" != xyes && enable_ltdl_install=no], ! [if test x"$enable_ltdl_install" = xno; then ! AC_MSG_WARN([libltdl not installed, but installation disabled]) ! else ! enable_ltdl_install=yes ! fi ! ]) ! if test x"$enable_ltdl_install" = x"yes"; then ! ac_configure_args="$ac_configure_args --enable-ltdl-install" ! LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdl.la ! LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) ! else ! ac_configure_args="$ac_configure_args --enable-ltdl-install=no" ! LIBLTDL="-lltdl" ! LTDLINCL= fi + # For backwards non-gettext consistent compatibility... + INCLTDL="$LTDLINCL" + ])# AC_LIBLTDL_INSTALLABLE ! # AC_LIBTOOL_CXX ! # -------------- ! # enable support for C++ libraries ! AC_DEFUN([AC_LIBTOOL_CXX], ! [AC_REQUIRE([_LT_AC_LANG_CXX]) ! ])# AC_LIBTOOL_CXX ! # _LT_AC_LANG_CXX ! # --------------- ! AC_DEFUN([_LT_AC_LANG_CXX], ! [AC_REQUIRE([AC_PROG_CXX]) ! AC_REQUIRE([_LT_AC_PROG_CXXCPP]) ! _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}CXX]) ! ])# _LT_AC_LANG_CXX ! # _LT_AC_PROG_CXXCPP ! # ------------------ ! AC_DEFUN([_LT_AC_PROG_CXXCPP], ! [ ! AC_REQUIRE([AC_PROG_CXX]) ! if test -n "$CXX" && ( test "X$CXX" != "Xno" && ! ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || ! (test "X$CXX" != "Xg++"))) ; then ! AC_PROG_CXXCPP ! fi ! ])# _LT_AC_PROG_CXXCPP ! # AC_LIBTOOL_F77 ! # -------------- ! # enable support for Fortran 77 libraries ! AC_DEFUN([AC_LIBTOOL_F77], ! [AC_REQUIRE([_LT_AC_LANG_F77]) ! ])# AC_LIBTOOL_F77 ! # _LT_AC_LANG_F77 ! # --------------- ! AC_DEFUN([_LT_AC_LANG_F77], ! [AC_REQUIRE([AC_PROG_F77]) ! _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}F77]) ! ])# _LT_AC_LANG_F77 ! # AC_LIBTOOL_GCJ ! # -------------- ! # enable support for GCJ libraries ! AC_DEFUN([AC_LIBTOOL_GCJ], ! [AC_REQUIRE([_LT_AC_LANG_GCJ]) ! ])# AC_LIBTOOL_GCJ ! # _LT_AC_LANG_GCJ ! # --------------- ! AC_DEFUN([_LT_AC_LANG_GCJ], ! [AC_PROVIDE_IFELSE([AC_PROG_GCJ],[], ! [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],[], ! [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ],[], ! [ifdef([AC_PROG_GCJ],[AC_REQUIRE([AC_PROG_GCJ])], ! [ifdef([A][M_PROG_GCJ],[AC_REQUIRE([A][M_PROG_GCJ])], ! [AC_REQUIRE([A][C_PROG_GCJ_OR_A][M_PROG_GCJ])])])])])]) ! _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}GCJ]) ! ])# _LT_AC_LANG_GCJ ! # AC_LIBTOOL_RC ! # ------------- ! # enable support for Windows resource files ! AC_DEFUN([AC_LIBTOOL_RC], ! [AC_REQUIRE([LT_AC_PROG_RC]) ! _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}RC]) ! ])# AC_LIBTOOL_RC ! # AC_LIBTOOL_LANG_C_CONFIG ! # ------------------------ ! # Ensure that the configuration vars for the C compiler are ! # suitably defined. Those variables are subsequently used by ! # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. ! AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG], [_LT_AC_LANG_C_CONFIG]) ! AC_DEFUN([_LT_AC_LANG_C_CONFIG], ! [lt_save_CC="$CC" ! AC_LANG_PUSH(C) + # Source file extension for C test sources. + ac_ext=c ! # Object file extension for compiled C test sources. ! objext=o ! _LT_AC_TAGVAR(objext, $1)=$objext + # Code to be used in simple compile tests + lt_simple_compile_test_code="int some_variable = 0;\n" ! # Code to be used in simple link tests ! lt_simple_link_test_code='int main(){return(0);}\n' + _LT_AC_SYS_COMPILER ! # save warnings/boilerplate of simple test code ! _LT_COMPILER_BOILERPLATE ! _LT_LINKER_BOILERPLATE + AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1) + AC_LIBTOOL_PROG_COMPILER_PIC($1) + AC_LIBTOOL_PROG_CC_C_O($1) + AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) + AC_LIBTOOL_PROG_LD_SHLIBS($1) + AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) + AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) + AC_LIBTOOL_SYS_LIB_STRIP + AC_LIBTOOL_DLOPEN_SELF ! # Report which library types will actually be built ! AC_MSG_CHECKING([if libtool supports shared libraries]) ! AC_MSG_RESULT([$can_build_shared]) + AC_MSG_CHECKING([whether to build shared libraries]) + test "$can_build_shared" = "no" && enable_shared=no ! # On AIX, shared libraries and static libraries use the same namespace, and ! # are all built from PIC. ! case $host_os in ! aix3*) ! test "$enable_shared" = yes && enable_static=no ! if test -n "$RANLIB"; then ! archive_cmds="$archive_cmds~\$RANLIB \$lib" ! postinstall_cmds='$RANLIB $lib' ! fi ! ;; + aix4* | aix5*) + if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then + test "$enable_shared" = yes && enable_static=no + fi + ;; + esac + AC_MSG_RESULT([$enable_shared]) ! AC_MSG_CHECKING([whether to build static libraries]) ! # Make sure either enable_shared or enable_static is yes. ! test "$enable_shared" = yes || enable_static=yes ! AC_MSG_RESULT([$enable_static]) + AC_LIBTOOL_CONFIG($1) ! AC_LANG_POP ! CC="$lt_save_CC" ! ])# AC_LIBTOOL_LANG_C_CONFIG ! # AC_LIBTOOL_LANG_CXX_CONFIG ! # -------------------------- ! # Ensure that the configuration vars for the C compiler are ! # suitably defined. Those variables are subsequently used by ! # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. ! AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG], [_LT_AC_LANG_CXX_CONFIG(CXX)]) ! AC_DEFUN([_LT_AC_LANG_CXX_CONFIG], ! [AC_LANG_PUSH(C++) ! AC_REQUIRE([AC_PROG_CXX]) ! AC_REQUIRE([_LT_AC_PROG_CXXCPP]) + _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_AC_TAGVAR(allow_undefined_flag, $1)= + _LT_AC_TAGVAR(always_export_symbols, $1)=no + _LT_AC_TAGVAR(archive_expsym_cmds, $1)= + _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= + _LT_AC_TAGVAR(hardcode_direct, $1)=no + _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= + _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= + _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= + _LT_AC_TAGVAR(hardcode_minus_L, $1)=no + _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported + _LT_AC_TAGVAR(hardcode_automatic, $1)=no + _LT_AC_TAGVAR(module_cmds, $1)= + _LT_AC_TAGVAR(module_expsym_cmds, $1)= + _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown + _LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds + _LT_AC_TAGVAR(no_undefined_flag, $1)= + _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= + _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no ! # Dependencies to place before and after the object being linked: ! _LT_AC_TAGVAR(predep_objects, $1)= ! _LT_AC_TAGVAR(postdep_objects, $1)= ! _LT_AC_TAGVAR(predeps, $1)= ! _LT_AC_TAGVAR(postdeps, $1)= ! _LT_AC_TAGVAR(compiler_lib_search_path, $1)= ! # Source file extension for C++ test sources. ! ac_ext=cpp ! # Object file extension for compiled C++ test sources. ! objext=o ! _LT_AC_TAGVAR(objext, $1)=$objext + # Code to be used in simple compile tests + lt_simple_compile_test_code="int some_variable = 0;\n" ! # Code to be used in simple link tests ! lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }\n' + # ltmain only uses $CC for tagged configurations so make sure $CC is set. + _LT_AC_SYS_COMPILER ! # save warnings/boilerplate of simple test code ! _LT_COMPILER_BOILERPLATE ! _LT_LINKER_BOILERPLATE ! ! # Allow CC to be a program name with arguments. ! lt_save_CC=$CC ! lt_save_LD=$LD ! lt_save_GCC=$GCC ! GCC=$GXX ! lt_save_with_gnu_ld=$with_gnu_ld ! lt_save_path_LD=$lt_cv_path_LD ! if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then ! lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else ! $as_unset lt_cv_prog_gnu_ld fi ! if test -n "${lt_cv_path_LDCXX+set}"; then ! lt_cv_path_LD=$lt_cv_path_LDCXX else ! $as_unset lt_cv_path_LD ! fi ! test -z "${LDCXX+set}" || LD=$LDCXX ! CC=${CXX-"c++"} ! compiler=$CC ! _LT_AC_TAGVAR(compiler, $1)=$CC ! _LT_CC_BASENAME([$compiler]) ! ! # We don't want -fno-exception wen compiling C++ code, so set the ! # no_builtin_flag separately ! if test "$GXX" = yes; then ! _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' else ! _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= fi + if test "$GXX" = yes; then + # Set up default GNU C++ configuration ! AC_PROG_LD + # Check if GNU C++ uses GNU ld as the underlying linker, since the + # archiving commands below assume that GNU ld is being used. + if test "$with_gnu_ld" = yes; then + _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' ! ! # If archive_cmds runs LD, not CC, wlarc should be empty ! # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to ! # investigate it a little bit more. (MM) ! wlarc='${wl}' ! ! # ancient GNU ld didn't support --whole-archive et. al. ! if eval "`$CC -print-prog-name=ld` --help 2>&1" | \ ! grep 'no-whole-archive' > /dev/null; then ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= fi ! else ! with_gnu_ld=no ! wlarc= + # A generic and very simple default shared library creation + # command for GNU C++ for the case where it uses the native + # linker, instead of GNU ld. If possible, this setting should + # overridden to take advantage of the native linker features on + # the platform it is being used on. + _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' + fi ! # Commands to make compiler produce verbose output that lists ! # what "hidden" libraries, object files and flags are used when ! # linking a shared library. ! output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' ! else ! GXX=no ! with_gnu_ld=no ! wlarc= ! fi ! # PORTME: fill in a description of your system's C++ link characteristics ! AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) ! _LT_AC_TAGVAR(ld_shlibs, $1)=yes ! case $host_os in ! aix3*) ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! aix4* | aix5*) ! if test "$host_cpu" = ia64; then ! # On IA64, the linker does run time linking by default, so we don't ! # have to do anything special. ! aix_use_runtimelinking=no ! exp_sym_flag='-Bexport' ! no_entry_flag="" ! else ! aix_use_runtimelinking=no ! # Test if we are trying to use run time linking or normal ! # AIX style linking. If -brtl is somewhere in LDFLAGS, we ! # need to do runtime linking. ! case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*) ! for ld_flag in $LDFLAGS; do ! case $ld_flag in ! *-brtl*) ! aix_use_runtimelinking=yes ! break ! ;; ! esac ! done ! ;; ! esac ! exp_sym_flag='-bexport' ! no_entry_flag='-bnoentry' ! fi ! # When large executables or shared objects are built, AIX ld can ! # have problems creating the table of contents. If linking a library ! # or program results in "error TOC overflow" add -mminimal-toc to ! # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not ! # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. ! _LT_AC_TAGVAR(archive_cmds, $1)='' ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' ! _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ! if test "$GXX" = yes; then ! case $host_os in aix4.[[012]]|aix4.[[012]].*) ! # We only want to do this on AIX 4.2 and lower, the check ! # below for broken collect2 doesn't work under 4.3+ ! collect2name=`${CC} -print-prog-name=collect2` ! if test -f "$collect2name" && \ ! strings "$collect2name" | grep resolve_lib_name >/dev/null ! then ! # We have reworked collect2 ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! else ! # We have old collect2 ! _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported ! # It fails to find uninstalled libraries when the uninstalled ! # path is not listed in the libpath. Setting hardcode_minus_L ! # to unsupported forces relinking ! _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= ! fi ! ;; ! esac ! shared_flag='-shared' ! if test "$aix_use_runtimelinking" = yes; then ! shared_flag="$shared_flag "'${wl}-G' ! fi ! else ! # not using gcc ! if test "$host_cpu" = ia64; then ! # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release ! # chokes on -Wl,-G. The following line is correct: ! shared_flag='-G' ! else ! if test "$aix_use_runtimelinking" = yes; then ! shared_flag='${wl}-G' ! else ! shared_flag='${wl}-bM:SRE' ! fi ! fi ! fi ! # It seems that -bexpall does not export symbols beginning with ! # underscore (_), so it is better to generate a list of symbols to export. ! _LT_AC_TAGVAR(always_export_symbols, $1)=yes ! if test "$aix_use_runtimelinking" = yes; then ! # Warning - without using the other runtime loading flags (-brtl), ! # -berok will link without error, but may produce a broken library. ! _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok' ! # Determine the default libpath from the value encoded in an empty executable. ! _LT_AC_SYS_LIBPATH_AIX ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" ! else ! if test "$host_cpu" = ia64; then ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' ! _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs" ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" ! else ! # Determine the default libpath from the value encoded in an empty executable. ! _LT_AC_SYS_LIBPATH_AIX ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" ! # Warning - without using the other run time loading flags, ! # -berok will link without error, but may produce a broken library. ! _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' ! # Exported symbols can be pulled into shared objects from archives ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience' ! _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes ! # This is similar to how AIX traditionally builds its shared libraries. ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' ! fi ! fi ;; ! beos*) ! if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported ! # Joseph Beckenbach says some releases of gcc ! # support --undefined. This deserves some investigation. FIXME ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' ! else ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! fi ! ;; ! chorus*) ! case $cc_basename in ! *) ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! esac ! ;; ! cygwin* | mingw* | pw32*) ! # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, ! # as there is no search path for DLLs. ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported ! _LT_AC_TAGVAR(always_export_symbols, $1)=no ! _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ! if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' ! # If the export-symbols file already is a .def file (1st line ! # is EXPORTS), use it as is; otherwise, prepend... ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then ! cp $export_symbols $output_objdir/$soname.def; ! else ! echo EXPORTS > $output_objdir/$soname.def; ! cat $export_symbols >> $output_objdir/$soname.def; ! fi~ ! $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' ! else ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! fi ;; + darwin* | rhapsody*) + case $host_os in + rhapsody* | darwin1.[[012]]) + _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress' + ;; + *) # Darwin 1.3 on + if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then + _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' + else + case ${MACOSX_DEPLOYMENT_TARGET} in + 10.[[012]]) + _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' + ;; + 10.*) + _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup' + ;; + esac + fi + ;; + esac + _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no + _LT_AC_TAGVAR(hardcode_direct, $1)=no + _LT_AC_TAGVAR(hardcode_automatic, $1)=yes + _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported + _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='' + _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ! if test "$GXX" = yes ; then ! lt_int_apple_cc_single_mod=no ! output_verbose_link_cmd='echo' ! if $CC -dumpspecs 2>&1 | $EGREP 'single_module' >/dev/null ; then ! lt_int_apple_cc_single_mod=yes ! fi ! if test "X$lt_int_apple_cc_single_mod" = Xyes ; then ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' ! else ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring' ! fi ! _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' ! # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds ! if test "X$lt_int_apple_cc_single_mod" = Xyes ; then ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ! else ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ! fi ! _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ! else ! case $cc_basename in ! xlc*) ! output_verbose_link_cmd='echo' ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' ! _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' ! # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ! _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ! ;; ! *) ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! esac ! fi ! ;; ! dgux*) ! case $cc_basename in ! ec++*) ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! ghcx*) ! # Green Hills C++ Compiler ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! *) ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! esac ;; ! freebsd[[12]]*) ! # C++ shared libraries reported to be fairly broken before switch to ELF ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; ! freebsd-elf*) ! _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ;; ! freebsd* | kfreebsd*-gnu | dragonfly*) ! # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF ! # conventions ! _LT_AC_TAGVAR(ld_shlibs, $1)=yes ;; ! gnu*) ;; ! hpux9*) ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, ! # but as the default ! # location of the library. + case $cc_basename in + CC*) + # FIXME: insert proper C++ library support + _LT_AC_TAGVAR(ld_shlibs, $1)=no + ;; + aCC*) + _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking a shared library. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "[[-]]L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' + ;; + *) + if test "$GXX" = yes; then + _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' + else + # FIXME: insert proper C++ library support + _LT_AC_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + hpux10*|hpux11*) + if test $with_gnu_ld = no; then + _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' + _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ! case $host_cpu in ! hppa*64*|ia64*) ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' ! ;; ! *) ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ! ;; ! esac ! fi ! case $host_cpu in ! hppa*64*|ia64*) ! _LT_AC_TAGVAR(hardcode_direct, $1)=no ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! ;; ! *) ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, ! # but as the default ! # location of the library. ! ;; ! esac ! ! case $cc_basename in ! CC*) ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! aCC*) ! case $host_cpu in ! hppa*64*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ! ;; ! ia64*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac ! # Commands to make compiler produce verbose output that lists ! # what "hidden" libraries, object files and flags are used when ! # linking a shared library. ! # ! # There doesn't appear to be a way to prevent this compiler from ! # explicitly linking system object files so we need to strip them ! # from the output so that they don't get included in the library ! # dependencies. ! output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ! ;; ! *) ! if test "$GXX" = yes; then ! if test $with_gnu_ld = no; then ! case $host_cpu in ! hppa*64*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ! ;; ! ia64*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ! ;; ! *) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ! ;; ! esac ! fi ! else ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! fi ! ;; ! esac ! ;; ! interix3*) ! _LT_AC_TAGVAR(hardcode_direct, $1)=no ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ! # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. ! # Instead, shared libraries are loaded at an image base (0x10000000 by ! # default) and relocated if they conflict, which is a slow very memory ! # consuming and fragmenting process. To avoid this, we pick a random, ! # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link ! # time. Moving up from 0x10000000 also allows more sbrk(2) space. ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ! ;; ! irix5* | irix6*) ! case $cc_basename in ! CC*) ! # SGI C++ ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' + # Archives containing C++ object files must be created using + # "CC -ar", where "CC" is the IRIX C++ compiler. This is + # necessary to make sure instantiated templates are included + # in the archive. + _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' + ;; + *) + if test "$GXX" = yes; then + if test "$with_gnu_ld" = no; then + _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + else + _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` -o $lib' + fi + fi + _LT_AC_TAGVAR(link_all_deplibs, $1)=yes + ;; + esac + _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: + ;; + linux*) + case $cc_basename in + KCC*) + # Kuck and Associates, Inc. (KAI) C++ Compiler ! # KCC will only create a shared library if the output file ! # ends with ".so" (or ".sl" for HP-UX), so rename the library ! # to its proper name (with version) after linking. ! _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' ! # Commands to make compiler produce verbose output that lists ! # what "hidden" libraries, object files and flags are used when ! # linking a shared library. ! # ! # There doesn't appear to be a way to prevent this compiler from ! # explicitly linking system object files so we need to strip them ! # from the output so that they don't get included in the library ! # dependencies. ! output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | grep "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' + _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath,$libdir' + _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' ! # Archives containing C++ object files must be created using ! # "CC -Bstatic", where "CC" is the KAI C++ compiler. ! _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ! ;; ! icpc*) ! # Intel C++ ! with_gnu_ld=yes ! # version 8.0 and above of icpc choke on multiply defined symbols ! # if we add $predep_objects and $postdep_objects, however 7.1 and ! # earlier do not add the objects themselves. ! case `$CC -V 2>&1` in ! *"Version 7."*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ! ;; ! *) # Version 8.0 or newer ! tmp_idyn= ! case $host_cpu in ! ia64*) tmp_idyn=' -i_dynamic';; ! esac ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ! ;; ! esac ! _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' ! ;; ! pgCC*) ! # Portland Group C++ compiler ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' + _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' + _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' + _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' + ;; + cxx*) + # Compaq C++ + _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' + _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' ! runpath_var=LD_RUN_PATH ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ! # Commands to make compiler produce verbose output that lists ! # what "hidden" libraries, object files and flags are used when ! # linking a shared library. ! # ! # There doesn't appear to be a way to prevent this compiler from ! # explicitly linking system object files so we need to strip them ! # from the output so that they don't get included in the library ! # dependencies. ! output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ! ;; ! esac ! ;; ! lynxos*) ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! m88k*) ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! mvs*) ! case $cc_basename in ! cxx*) ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! *) ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! esac ! ;; ! netbsd*) ! if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' ! wlarc= ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! fi ! # Workaround some broken pre-1.5 toolchains ! output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ! ;; ! openbsd2*) ! # C++ shared libraries are fairly broken ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! openbsd*) ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' ! if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' ! fi ! output_verbose_link_cmd='echo' ! ;; ! osf3*) ! case $cc_basename in ! KCC*) ! # Kuck and Associates, Inc. (KAI) C++ Compiler + # KCC will only create a shared library if the output file + # ends with ".so" (or ".sl" for HP-UX), so rename the library + # to its proper name (with version) after linking. + _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ! # Archives containing C++ object files must be created using ! # "CC -Bstatic", where "CC" is the KAI C++ compiler. ! _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ! ;; ! RCC*) ! # Rational C++ 2.4.1 ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! cxx*) ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' + _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ! # Commands to make compiler produce verbose output that lists ! # what "hidden" libraries, object files and flags are used when ! # linking a shared library. ! # ! # There doesn't appear to be a way to prevent this compiler from ! # explicitly linking system object files so we need to strip them ! # from the output so that they don't get included in the library ! # dependencies. ! output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ! ;; ! *) ! if test "$GXX" = yes && test "$with_gnu_ld" = no; then ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' + _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' + _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ! # Commands to make compiler produce verbose output that lists ! # what "hidden" libraries, object files and flags are used when ! # linking a shared library. ! output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' + else + # FIXME: insert proper C++ library support + _LT_AC_TAGVAR(ld_shlibs, $1)=no + fi + ;; + esac + ;; + osf4* | osf5*) + case $cc_basename in + KCC*) + # Kuck and Associates, Inc. (KAI) C++ Compiler ! # KCC will only create a shared library if the output file ! # ends with ".so" (or ".sl" for HP-UX), so rename the library ! # to its proper name (with version) after linking. ! _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' + _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' + _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ! # Archives containing C++ object files must be created using ! # the KAI C++ compiler. ! _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ! ;; ! RCC*) ! # Rational C++ 2.4.1 ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! cxx*) ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ ! echo "-hidden">> $lib.exp~ ! $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname -Wl,-input -Wl,$lib.exp `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~ ! $rm $lib.exp' + _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' + _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ! # Commands to make compiler produce verbose output that lists ! # what "hidden" libraries, object files and flags are used when ! # linking a shared library. ! # ! # There doesn't appear to be a way to prevent this compiler from ! # explicitly linking system object files so we need to strip them ! # from the output so that they don't get included in the library ! # dependencies. ! output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ! ;; ! *) ! if test "$GXX" = yes && test "$with_gnu_ld" = no; then ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ! # Commands to make compiler produce verbose output that lists ! # what "hidden" libraries, object files and flags are used when ! # linking a shared library. ! output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' ! else ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! fi ! ;; ! esac ! ;; ! psos*) ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! sunos4*) ! case $cc_basename in ! CC*) ! # Sun C++ 4.x ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! lcc*) ! # Lucid ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! *) ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! esac ! ;; ! solaris*) ! case $cc_basename in ! CC*) ! # Sun C++ 4.2, 5.x and Centerline C++ ! _LT_AC_TAGVAR(archive_cmds_need_lc,$1)=yes ! _LT_AC_TAGVAR(no_undefined_flag, $1)=' -zdefs' ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ ! $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! case $host_os in ! solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; ! *) ! # The C++ compiler is used as linker so we must use $wl ! # flag to pass the commands to the underlying system ! # linker. We must also pass each convience library through ! # to the system linker between allextract/defaultextract. ! # The C++ compiler will combine linker options so we ! # cannot just pass the convience library names through ! # without $wl. ! # Supported since Solaris 2.6 (maybe 2.5.1?) ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ! ;; ! esac ! _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ! output_verbose_link_cmd='echo' ! # Archives containing C++ object files must be created using ! # "CC -xar", where "CC" is the Sun C++ compiler. This is ! # necessary to make sure instantiated templates are included ! # in the archive. ! _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ! ;; ! gcx*) ! # Green Hills C++ Compiler ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' ! # The C++ compiler must be used to create the archive. ! _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ! ;; ! *) ! # GNU C++ compiler with Solaris linker ! if test "$GXX" = yes && test "$with_gnu_ld" = no; then ! _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' ! if $CC --version | grep -v '^2\.7' > /dev/null; then ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ ! $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' ! # Commands to make compiler produce verbose output that lists ! # what "hidden" libraries, object files and flags are used when ! # linking a shared library. ! output_verbose_link_cmd="$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" ! else ! # g++ 2.7 appears to require `-G' NOT `-shared' on this ! # platform. ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ ! $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' ! # Commands to make compiler produce verbose output that lists ! # what "hidden" libraries, object files and flags are used when ! # linking a shared library. ! output_verbose_link_cmd="$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" ! fi ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' ! fi ! ;; ! esac ! ;; ! sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) ! _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' ! _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! runpath_var='LD_RUN_PATH' ! case $cc_basename in ! CC*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ! ;; ! *) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ! ;; ! esac ! ;; ! sysv5* | sco3.2v5* | sco5v6*) ! # Note: We can NOT use -z defs as we might desire, because we do not ! # link with -lc, and that would cause any symbols used from libc to ! # always be unresolved, which means just about no library would ! # ever link correctly. If we're not using GNU ld we use -z text ! # though, which does catch some bad symbols but isn't as heavy-handed ! # as -z defs. ! # For security reasons, it is highly recommended that you always ! # use absolute paths for naming shared libraries, and exclude the ! # DT_RUNPATH tag from executables and libraries. But doing so ! # requires that you compile everything twice, which is a pain. ! # So that behaviour is only enabled if SCOABSPATH is set to a ! # non-empty value in the environment. Most likely only useful for ! # creating official distributions of packages. ! # This is a hack until libtool officially supports absolute path ! # names for shared libraries. ! _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' ! _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' ! _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' ! _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' ! runpath_var='LD_RUN_PATH' ! ! case $cc_basename in ! CC*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' ! ;; ! *) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' ! ;; ! esac ! ;; ! tandem*) ! case $cc_basename in ! NCC*) ! # NonStop-UX NCC 3.20 ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! *) ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! esac ! ;; ! vxworks*) ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! *) ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; esac ! AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)]) ! test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no ! _LT_AC_TAGVAR(GCC, $1)="$GXX" ! _LT_AC_TAGVAR(LD, $1)="$LD" ! ! AC_LIBTOOL_POSTDEP_PREDEP($1) ! AC_LIBTOOL_PROG_COMPILER_PIC($1) ! AC_LIBTOOL_PROG_CC_C_O($1) ! AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) ! AC_LIBTOOL_PROG_LD_SHLIBS($1) ! AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) ! AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) AC_LIBTOOL_CONFIG($1) AC_LANG_POP ! CC=$lt_save_CC ! LDCXX=$LD ! LD=$lt_save_LD ! GCC=$lt_save_GCC ! with_gnu_ldcxx=$with_gnu_ld ! with_gnu_ld=$lt_save_with_gnu_ld ! lt_cv_path_LDCXX=$lt_cv_path_LD ! lt_cv_path_LD=$lt_save_path_LD ! lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld ! lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld ! ])# AC_LIBTOOL_LANG_CXX_CONFIG ! # AC_LIBTOOL_POSTDEP_PREDEP([TAGNAME]) ! # ------------------------------------ ! # Figure out "hidden" library dependencies from verbose ! # compiler output when linking a shared library. ! # Parse the compiler output and extract the necessary ! # objects, libraries and library flags. ! AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP],[ ! dnl we can't use the lt_simple_compile_test_code here, ! dnl because it contains code intended for an executable, ! dnl not a library. It's possible we should let each ! dnl tag define a new lt_????_link_test_code variable, ! dnl but it's only used here... ! ifelse([$1],[],[cat > conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext <&1" | \ ! grep 'no-whole-archive' > /dev/null; then ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' ! else ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= ! fi ! else ! with_gnu_ld=no ! wlarc= ! # A generic and very simple default shared library creation ! # command for GNU C++ for the case where it uses the native ! # linker, instead of GNU ld. If possible, this setting should ! # overridden to take advantage of the native linker features on ! # the platform it is being used on. ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' ! fi - # Commands to make compiler produce verbose output that lists - # what "hidden" libraries, object files and flags are used when - # linking a shared library. - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' ! else ! GXX=no ! with_gnu_ld=no ! wlarc= ! fi ! # PORTME: fill in a description of your system's C++ link characteristics ! AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) ! _LT_AC_TAGVAR(ld_shlibs, $1)=yes ! case $host_os in ! aix3*) ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! aix4* | aix5*) ! if test "$host_cpu" = ia64; then ! # On IA64, the linker does run time linking by default, so we don't ! # have to do anything special. ! aix_use_runtimelinking=no ! exp_sym_flag='-Bexport' ! no_entry_flag="" ! else ! aix_use_runtimelinking=no ! # Test if we are trying to use run time linking or normal ! # AIX style linking. If -brtl is somewhere in LDFLAGS, we ! # need to do runtime linking. ! case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*) ! for ld_flag in $LDFLAGS; do ! case $ld_flag in ! *-brtl*) ! aix_use_runtimelinking=yes ! break ! ;; ! esac ! done ! ;; ! esac ! exp_sym_flag='-bexport' ! no_entry_flag='-bnoentry' ! fi ! # When large executables or shared objects are built, AIX ld can ! # have problems creating the table of contents. If linking a library ! # or program results in "error TOC overflow" add -mminimal-toc to ! # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not ! # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. ! _LT_AC_TAGVAR(archive_cmds, $1)='' ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' ! _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ! if test "$GXX" = yes; then ! case $host_os in aix4.[[012]]|aix4.[[012]].*) ! # We only want to do this on AIX 4.2 and lower, the check ! # below for broken collect2 doesn't work under 4.3+ ! collect2name=`${CC} -print-prog-name=collect2` ! if test -f "$collect2name" && \ ! strings "$collect2name" | grep resolve_lib_name >/dev/null ! then ! # We have reworked collect2 ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! else ! # We have old collect2 ! _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported ! # It fails to find uninstalled libraries when the uninstalled ! # path is not listed in the libpath. Setting hardcode_minus_L ! # to unsupported forces relinking ! _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= ! fi ! ;; ! esac ! shared_flag='-shared' ! if test "$aix_use_runtimelinking" = yes; then ! shared_flag="$shared_flag "'${wl}-G' ! fi ! else ! # not using gcc ! if test "$host_cpu" = ia64; then ! # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release ! # chokes on -Wl,-G. The following line is correct: ! shared_flag='-G' ! else ! if test "$aix_use_runtimelinking" = yes; then ! shared_flag='${wl}-G' ! else ! shared_flag='${wl}-bM:SRE' ! fi ! fi ! fi ! # It seems that -bexpall does not export symbols beginning with ! # underscore (_), so it is better to generate a list of symbols to export. ! _LT_AC_TAGVAR(always_export_symbols, $1)=yes ! if test "$aix_use_runtimelinking" = yes; then ! # Warning - without using the other runtime loading flags (-brtl), ! # -berok will link without error, but may produce a broken library. ! _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok' ! # Determine the default libpath from the value encoded in an empty executable. ! _LT_AC_SYS_LIBPATH_AIX ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" ! else ! if test "$host_cpu" = ia64; then ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' ! _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs" ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" ! else ! # Determine the default libpath from the value encoded in an empty executable. ! _LT_AC_SYS_LIBPATH_AIX ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" ! # Warning - without using the other run time loading flags, ! # -berok will link without error, but may produce a broken library. ! _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' ! # Exported symbols can be pulled into shared objects from archives ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience' ! _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes ! # This is similar to how AIX traditionally builds its shared libraries. ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' ! fi ! fi ! ;; ! beos*) ! if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported ! # Joseph Beckenbach says some releases of gcc ! # support --undefined. This deserves some investigation. FIXME ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' ! else ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! fi ! ;; ! chorus*) ! case $cc_basename in ! *) ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! esac ! ;; ! cygwin* | mingw* | pw32*) ! # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, ! # as there is no search path for DLLs. ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported ! _LT_AC_TAGVAR(always_export_symbols, $1)=no ! _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ! if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' ! # If the export-symbols file already is a .def file (1st line ! # is EXPORTS), use it as is; otherwise, prepend... ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then ! cp $export_symbols $output_objdir/$soname.def; ! else ! echo EXPORTS > $output_objdir/$soname.def; ! cat $export_symbols >> $output_objdir/$soname.def; ! fi~ ! $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' ! else ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! fi ! ;; ! darwin* | rhapsody*) ! case $host_os in ! rhapsody* | darwin1.[[012]]) ! _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress' ! ;; ! *) # Darwin 1.3 on ! if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then ! _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ! else ! case ${MACOSX_DEPLOYMENT_TARGET} in ! 10.[[012]]) ! _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ! ;; ! 10.*) ! _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup' ! ;; ! esac ! fi ! ;; ! esac ! _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ! _LT_AC_TAGVAR(hardcode_direct, $1)=no ! _LT_AC_TAGVAR(hardcode_automatic, $1)=yes ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='' ! _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - if test "$GXX" = yes ; then - lt_int_apple_cc_single_mod=no - output_verbose_link_cmd='echo' - if $CC -dumpspecs 2>&1 | $EGREP 'single_module' >/dev/null ; then - lt_int_apple_cc_single_mod=yes - fi - if test "X$lt_int_apple_cc_single_mod" = Xyes ; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' - else - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring' - fi - _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' - # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds - if test "X$lt_int_apple_cc_single_mod" = Xyes ; then - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - else - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - fi - _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - else - case $cc_basename in - xlc*) - output_verbose_link_cmd='echo' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' - _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' - # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' - ;; - *) - _LT_AC_TAGVAR(ld_shlibs, $1)=no - ;; - esac - fi - ;; ! dgux*) ! case $cc_basename in ! ec++*) ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! ghcx*) ! # Green Hills C++ Compiler ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! *) ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! esac ! ;; ! freebsd[[12]]*) ! # C++ shared libraries reported to be fairly broken before switch to ELF ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! freebsd-elf*) ! _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ! ;; ! freebsd* | kfreebsd*-gnu | dragonfly*) ! # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF ! # conventions ! _LT_AC_TAGVAR(ld_shlibs, $1)=yes ! ;; ! gnu*) ! ;; ! hpux9*) ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, ! # but as the default ! # location of the library. ! case $cc_basename in ! CC*) ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! aCC*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' ! # Commands to make compiler produce verbose output that lists ! # what "hidden" libraries, object files and flags are used when ! # linking a shared library. ! # ! # There doesn't appear to be a way to prevent this compiler from ! # explicitly linking system object files so we need to strip them ! # from the output so that they don't get included in the library ! # dependencies. ! output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "[[-]]L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ! ;; ! *) ! if test "$GXX" = yes; then ! _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' ! else ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! fi ! ;; ! esac ! ;; ! hpux10*|hpux11*) ! if test $with_gnu_ld = no; then ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ! case $host_cpu in ! hppa*64*|ia64*) ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' ! ;; ! *) ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ! ;; ! esac ! fi ! case $host_cpu in ! hppa*64*|ia64*) ! _LT_AC_TAGVAR(hardcode_direct, $1)=no ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, ! # but as the default ! # location of the library. ;; esac ! case $cc_basename in ! CC*) ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! aCC*) ! case $host_cpu in ! hppa*64*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ! ;; ! ia64*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ! ;; ! *) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ! ;; ! esac ! # Commands to make compiler produce verbose output that lists ! # what "hidden" libraries, object files and flags are used when ! # linking a shared library. ! # ! # There doesn't appear to be a way to prevent this compiler from ! # explicitly linking system object files so we need to strip them ! # from the output so that they don't get included in the library ! # dependencies. ! output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ! ;; ! *) ! if test "$GXX" = yes; then ! if test $with_gnu_ld = no; then ! case $host_cpu in ! hppa*64*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ! ;; ! ia64*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ! ;; ! *) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ! ;; ! esac ! fi ! else ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! fi ! ;; ! esac ! ;; ! interix3*) ! _LT_AC_TAGVAR(hardcode_direct, $1)=no ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ! # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. ! # Instead, shared libraries are loaded at an image base (0x10000000 by ! # default) and relocated if they conflict, which is a slow very memory ! # consuming and fragmenting process. To avoid this, we pick a random, ! # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link ! # time. Moving up from 0x10000000 also allows more sbrk(2) space. ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; ! irix5* | irix6*) ! case $cc_basename in ! CC*) ! # SGI C++ ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' ! # Archives containing C++ object files must be created using ! # "CC -ar", where "CC" is the IRIX C++ compiler. This is ! # necessary to make sure instantiated templates are included ! # in the archive. ! _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' ! ;; ! *) ! if test "$GXX" = yes; then ! if test "$with_gnu_ld" = no; then ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ! else ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` -o $lib' ! fi ! fi ! _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ! ;; ! esac ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ! ;; ! linux*) ! case $cc_basename in ! KCC*) ! # Kuck and Associates, Inc. (KAI) C++ Compiler ! # KCC will only create a shared library if the output file ! # ends with ".so" (or ".sl" for HP-UX), so rename the library ! # to its proper name (with version) after linking. ! _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' ! # Commands to make compiler produce verbose output that lists ! # what "hidden" libraries, object files and flags are used when ! # linking a shared library. ! # ! # There doesn't appear to be a way to prevent this compiler from ! # explicitly linking system object files so we need to strip them ! # from the output so that they don't get included in the library ! # dependencies. ! output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | grep "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath,$libdir' ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' ! # Archives containing C++ object files must be created using ! # "CC -Bstatic", where "CC" is the KAI C++ compiler. ! _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ! ;; ! icpc*) ! # Intel C++ ! with_gnu_ld=yes ! # version 8.0 and above of icpc choke on multiply defined symbols ! # if we add $predep_objects and $postdep_objects, however 7.1 and ! # earlier do not add the objects themselves. ! case `$CC -V 2>&1` in ! *"Version 7."*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ! ;; ! *) # Version 8.0 or newer ! tmp_idyn= ! case $host_cpu in ! ia64*) tmp_idyn=' -i_dynamic';; ! esac ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ! ;; ! esac ! _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' ! ;; ! pgCC*) ! # Portland Group C++ compiler ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' ! ;; ! cxx*) ! # Compaq C++ ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' ! runpath_var=LD_RUN_PATH ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ! # Commands to make compiler produce verbose output that lists ! # what "hidden" libraries, object files and flags are used when ! # linking a shared library. ! # ! # There doesn't appear to be a way to prevent this compiler from ! # explicitly linking system object files so we need to strip them ! # from the output so that they don't get included in the library ! # dependencies. ! output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ! ;; ! esac ! ;; ! lynxos*) ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! m88k*) ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! mvs*) ! case $cc_basename in ! cxx*) ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! *) ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! esac ! ;; ! netbsd*) ! if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' ! wlarc= ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! fi ! # Workaround some broken pre-1.5 toolchains ! output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ! ;; ! openbsd2*) ! # C++ shared libraries are fairly broken ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! openbsd*) ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' ! if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' ! fi ! output_verbose_link_cmd='echo' ! ;; ! osf3*) ! case $cc_basename in ! KCC*) ! # Kuck and Associates, Inc. (KAI) C++ Compiler ! # KCC will only create a shared library if the output file ! # ends with ".so" (or ".sl" for HP-UX), so rename the library ! # to its proper name (with version) after linking. ! _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ! # Archives containing C++ object files must be created using ! # "CC -Bstatic", where "CC" is the KAI C++ compiler. ! _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ! ;; ! RCC*) ! # Rational C++ 2.4.1 ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! cxx*) ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ! # Commands to make compiler produce verbose output that lists ! # what "hidden" libraries, object files and flags are used when ! # linking a shared library. ! # ! # There doesn't appear to be a way to prevent this compiler from ! # explicitly linking system object files so we need to strip them ! # from the output so that they don't get included in the library ! # dependencies. ! output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ! ;; ! *) ! if test "$GXX" = yes && test "$with_gnu_ld" = no; then ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ! # Commands to make compiler produce verbose output that lists ! # what "hidden" libraries, object files and flags are used when ! # linking a shared library. ! output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' ! else ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! fi ! ;; ! esac ! ;; ! osf4* | osf5*) ! case $cc_basename in ! KCC*) ! # Kuck and Associates, Inc. (KAI) C++ Compiler ! # KCC will only create a shared library if the output file ! # ends with ".so" (or ".sl" for HP-UX), so rename the library ! # to its proper name (with version) after linking. ! _LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ! # Archives containing C++ object files must be created using ! # the KAI C++ compiler. ! _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ! ;; ! RCC*) ! # Rational C++ 2.4.1 ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! cxx*) ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ ! echo "-hidden">> $lib.exp~ ! $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname -Wl,-input -Wl,$lib.exp `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~ ! $rm $lib.exp' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ! # Commands to make compiler produce verbose output that lists ! # what "hidden" libraries, object files and flags are used when ! # linking a shared library. ! # ! # There doesn't appear to be a way to prevent this compiler from ! # explicitly linking system object files so we need to strip them ! # from the output so that they don't get included in the library ! # dependencies. ! output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ! ;; ! *) ! if test "$GXX" = yes && test "$with_gnu_ld" = no; then ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ! # Commands to make compiler produce verbose output that lists ! # what "hidden" libraries, object files and flags are used when ! # linking a shared library. ! output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' ! else ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! fi ! ;; ! esac ! ;; ! psos*) ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! sunos4*) ! case $cc_basename in ! CC*) ! # Sun C++ 4.x ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! lcc*) ! # Lucid ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! *) ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! esac ! ;; ! solaris*) ! case $cc_basename in ! CC*) ! # Sun C++ 4.2, 5.x and Centerline C++ ! _LT_AC_TAGVAR(archive_cmds_need_lc,$1)=yes ! _LT_AC_TAGVAR(no_undefined_flag, $1)=' -zdefs' ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ ! $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! case $host_os in ! solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; ! *) ! # The C++ compiler is used as linker so we must use $wl ! # flag to pass the commands to the underlying system ! # linker. We must also pass each convience library through ! # to the system linker between allextract/defaultextract. ! # The C++ compiler will combine linker options so we ! # cannot just pass the convience library names through ! # without $wl. ! # Supported since Solaris 2.6 (maybe 2.5.1?) ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ! ;; ! esac ! _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ! output_verbose_link_cmd='echo' ! # Archives containing C++ object files must be created using ! # "CC -xar", where "CC" is the Sun C++ compiler. This is ! # necessary to make sure instantiated templates are included ! # in the archive. ! _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ! ;; ! gcx*) ! # Green Hills C++ Compiler ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' ! # The C++ compiler must be used to create the archive. ! _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ! ;; ! *) ! # GNU C++ compiler with Solaris linker ! if test "$GXX" = yes && test "$with_gnu_ld" = no; then ! _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' ! if $CC --version | grep -v '^2\.7' > /dev/null; then ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ ! $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' ! # Commands to make compiler produce verbose output that lists ! # what "hidden" libraries, object files and flags are used when ! # linking a shared library. ! output_verbose_link_cmd="$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" ! else ! # g++ 2.7 appears to require `-G' NOT `-shared' on this ! # platform. ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ ! $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp' ! # Commands to make compiler produce verbose output that lists ! # what "hidden" libraries, object files and flags are used when ! # linking a shared library. ! output_verbose_link_cmd="$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" ! fi ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' ! fi ! ;; ! esac ! ;; ! sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) ! _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' ! _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! runpath_var='LD_RUN_PATH' ! case $cc_basename in ! CC*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ! ;; ! *) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ! ;; ! esac ! ;; ! sysv5* | sco3.2v5* | sco5v6*) ! # Note: We can NOT use -z defs as we might desire, because we do not ! # link with -lc, and that would cause any symbols used from libc to ! # always be unresolved, which means just about no library would ! # ever link correctly. If we're not using GNU ld we use -z text ! # though, which does catch some bad symbols but isn't as heavy-handed ! # as -z defs. ! # For security reasons, it is highly recommended that you always ! # use absolute paths for naming shared libraries, and exclude the ! # DT_RUNPATH tag from executables and libraries. But doing so ! # requires that you compile everything twice, which is a pain. ! # So that behaviour is only enabled if SCOABSPATH is set to a ! # non-empty value in the environment. Most likely only useful for ! # creating official distributions of packages. ! # This is a hack until libtool officially supports absolute path ! # names for shared libraries. ! _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' ! _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' ! _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' ! _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' ! runpath_var='LD_RUN_PATH' ! case $cc_basename in ! CC*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' ! ;; ! *) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' ! ;; ! esac ! ;; ! tandem*) ! case $cc_basename in ! NCC*) ! # NonStop-UX NCC 3.20 ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! *) ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! esac ! ;; ! vxworks*) ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! *) ! # FIXME: insert proper C++ library support ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! esac ! AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)]) ! test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no ! _LT_AC_TAGVAR(GCC, $1)="$GXX" ! _LT_AC_TAGVAR(LD, $1)="$LD" ! AC_LIBTOOL_POSTDEP_PREDEP($1) ! AC_LIBTOOL_PROG_COMPILER_PIC($1) ! AC_LIBTOOL_PROG_CC_C_O($1) ! AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) ! AC_LIBTOOL_PROG_LD_SHLIBS($1) ! AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) ! AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) ! AC_LIBTOOL_CONFIG($1) ! AC_LANG_POP ! CC=$lt_save_CC ! LDCXX=$LD ! LD=$lt_save_LD ! GCC=$lt_save_GCC ! with_gnu_ldcxx=$with_gnu_ld ! with_gnu_ld=$lt_save_with_gnu_ld ! lt_cv_path_LDCXX=$lt_cv_path_LD ! lt_cv_path_LD=$lt_save_path_LD ! lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld ! lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld ! ])# AC_LIBTOOL_LANG_CXX_CONFIG ! # AC_LIBTOOL_POSTDEP_PREDEP([TAGNAME]) ! # ------------------------------------ ! # Figure out "hidden" library dependencies from verbose ! # compiler output when linking a shared library. ! # Parse the compiler output and extract the necessary ! # objects, libraries and library flags. ! AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP],[ ! dnl we can't use the lt_simple_compile_test_code here, ! dnl because it contains code intended for an executable, ! dnl not a library. It's possible we should let each ! dnl tag define a new lt_????_link_test_code variable, ! dnl but it's only used here... ! ifelse([$1],[],[cat > conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext <> "$cfgfile" ! ifelse([$1], [], ! [#! $SHELL ! # `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services. ! # Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP) ! # NOTE: Changes made to this file will be lost: look at ltmain.sh. ! # ! # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 ! # Free Software Foundation, Inc. ! # ! # This file is part of GNU Libtool: ! # Originally by Gordon Matzigkeit , 1996 ! # ! # This program is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. ! # ! # This program is distributed in the hope that it will be useful, but ! # WITHOUT ANY WARRANTY; without even the implied warranty of ! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! # General Public License for more details. ! # ! # You should have received a copy of the GNU General Public License ! # along with this program; if not, write to the Free Software ! # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. ! # ! # As a special exception to the GNU General Public License, if you ! # distribute this file as part of a program that contains a ! # configuration script generated by Autoconf, you may include it under ! # the same distribution terms that you use for the rest of that program. ! # A sed program that does not truncate output. ! SED=$lt_SED ! # Sed that helps us avoid accidentally triggering echo(1) options like -n. ! Xsed="$SED -e 1s/^X//" ! # The HP-UX ksh and POSIX shell print the target directory to stdout ! # if CDPATH is set. ! (unset CDPATH) >/dev/null 2>&1 && unset CDPATH ! # The names of the tagged configurations supported by this script. ! available_tags= ! # ### BEGIN LIBTOOL CONFIG], ! [# ### BEGIN LIBTOOL TAG CONFIG: $tagname]) - # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: ! # Shell to use when invoking shell scripts. ! SHELL=$lt_SHELL ! # Whether or not to build shared libraries. ! build_libtool_libs=$enable_shared ! # Whether or not to build static libraries. ! build_old_libs=$enable_static ! # Whether or not to add -lc for building shared libraries. ! build_libtool_need_lc=$_LT_AC_TAGVAR(archive_cmds_need_lc, $1) - # Whether or not to disallow shared libs when runtime libs are static - allow_libtool_libs_with_static_runtimes=$_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1) ! # Whether or not to optimize for fast installation. ! fast_install=$enable_fast_install ! # The host system. ! host_alias=$host_alias ! host=$host ! host_os=$host_os ! ! # The build system. ! build_alias=$build_alias ! build=$build ! build_os=$build_os ! ! # An echo program that does not interpret backslashes. ! echo=$lt_echo ! ! # The archiver. ! AR=$lt_AR ! AR_FLAGS=$lt_AR_FLAGS ! ! # A C compiler. ! LTCC=$lt_LTCC ! ! # LTCC compiler flags. ! LTCFLAGS=$lt_LTCFLAGS ! ! # A language-specific compiler. ! CC=$lt_[]_LT_AC_TAGVAR(compiler, $1) ! ! # Is the compiler the GNU C compiler? ! with_gcc=$_LT_AC_TAGVAR(GCC, $1) ! ! # An ERE matcher. ! EGREP=$lt_EGREP ! # The linker used to build libraries. ! LD=$lt_[]_LT_AC_TAGVAR(LD, $1) ! # Whether we need hard or soft links. ! LN_S=$lt_LN_S ! # A BSD-compatible nm program. ! NM=$lt_NM ! # A symbol stripping program ! STRIP=$lt_STRIP ! # Used to examine libraries when file_magic_cmd begins "file" ! MAGIC_CMD=$MAGIC_CMD ! # Used on cygwin: DLL creation program. ! DLLTOOL="$DLLTOOL" ! # Used on cygwin: object dumper. ! OBJDUMP="$OBJDUMP" ! # Used on cygwin: assembler. ! AS="$AS" ! # The name of the directory that contains temporary libtool files. ! objdir=$objdir ! # How to create reloadable object files. ! reload_flag=$lt_reload_flag ! reload_cmds=$lt_reload_cmds ! # How to pass a linker flag through the compiler. ! wl=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) ! # Object file suffix (normally "o"). ! objext="$ac_objext" ! # Old archive suffix (normally "a"). ! libext="$libext" ! # Shared library suffix (normally ".so"). ! shrext_cmds='$shrext_cmds' ! # Executable file suffix (normally ""). ! exeext="$exeext" ! # Additional compiler flags for building library objects. ! pic_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) ! pic_mode=$pic_mode ! # What is the maximum length of a command? ! max_cmd_len=$lt_cv_sys_max_cmd_len ! # Does compiler simultaneously support -c and -o options? ! compiler_c_o=$lt_[]_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1) - # Must we lock files when doing compilation? - need_locks=$lt_need_locks ! # Do we need the lib prefix for modules? ! need_lib_prefix=$need_lib_prefix ! # Do we need a version for libraries? ! need_version=$need_version ! # Whether dlopen is supported. ! dlopen_support=$enable_dlopen ! ! # Whether dlopen of programs is supported. ! dlopen_self=$enable_dlopen_self ! ! # Whether dlopen of statically linked programs is supported. ! dlopen_self_static=$enable_dlopen_self_static ! ! # Compiler flag to prevent dynamic linking. ! link_static_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_static, $1) ! ! # Compiler flag to turn off builtin functions. ! no_builtin_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) ! ! # Compiler flag to allow reflexive dlopens. ! export_dynamic_flag_spec=$lt_[]_LT_AC_TAGVAR(export_dynamic_flag_spec, $1) ! ! # Compiler flag to generate shared objects directly from archives. ! whole_archive_flag_spec=$lt_[]_LT_AC_TAGVAR(whole_archive_flag_spec, $1) ! ! # Compiler flag to generate thread-safe objects. ! thread_safe_flag_spec=$lt_[]_LT_AC_TAGVAR(thread_safe_flag_spec, $1) ! ! # Library versioning type. ! version_type=$version_type ! ! # Format of library name prefix. ! libname_spec=$lt_libname_spec ! ! # List of archive names. First name is the real one, the rest are links. ! # The last name is the one that the linker finds with -lNAME. ! library_names_spec=$lt_library_names_spec ! ! # The coded name of the library, if different from the real name. ! soname_spec=$lt_soname_spec ! ! # Commands used to build and install an old-style archive. ! RANLIB=$lt_RANLIB ! old_archive_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_cmds, $1) ! old_postinstall_cmds=$lt_old_postinstall_cmds ! old_postuninstall_cmds=$lt_old_postuninstall_cmds ! ! # Create an old-style archive from a shared archive. ! old_archive_from_new_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_new_cmds, $1) ! ! # Create a temporary old-style archive to link instead of a shared archive. ! old_archive_from_expsyms_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) ! ! # Commands used to build and install a shared archive. ! archive_cmds=$lt_[]_LT_AC_TAGVAR(archive_cmds, $1) ! archive_expsym_cmds=$lt_[]_LT_AC_TAGVAR(archive_expsym_cmds, $1) ! postinstall_cmds=$lt_postinstall_cmds ! postuninstall_cmds=$lt_postuninstall_cmds ! ! # Commands used to build a loadable module (assumed same as above if empty) ! module_cmds=$lt_[]_LT_AC_TAGVAR(module_cmds, $1) ! module_expsym_cmds=$lt_[]_LT_AC_TAGVAR(module_expsym_cmds, $1) ! ! # Commands to strip libraries. ! old_striplib=$lt_old_striplib ! striplib=$lt_striplib ! ! # Dependencies to place before the objects being linked to create a ! # shared library. ! predep_objects=$lt_[]_LT_AC_TAGVAR(predep_objects, $1) ! ! # Dependencies to place after the objects being linked to create a ! # shared library. ! postdep_objects=$lt_[]_LT_AC_TAGVAR(postdep_objects, $1) ! ! # Dependencies to place before the objects being linked to create a ! # shared library. ! predeps=$lt_[]_LT_AC_TAGVAR(predeps, $1) ! ! # Dependencies to place after the objects being linked to create a ! # shared library. ! postdeps=$lt_[]_LT_AC_TAGVAR(postdeps, $1) ! ! # The library search path used internally by the compiler when linking ! # a shared library. ! compiler_lib_search_path=$lt_[]_LT_AC_TAGVAR(compiler_lib_search_path, $1) ! ! # Method to check whether dependent libraries are shared objects. ! deplibs_check_method=$lt_deplibs_check_method ! ! # Command to use when deplibs_check_method == file_magic. ! file_magic_cmd=$lt_file_magic_cmd ! ! # Flag that allows shared libraries with undefined symbols to be built. ! allow_undefined_flag=$lt_[]_LT_AC_TAGVAR(allow_undefined_flag, $1) ! ! # Flag that forces no undefined symbols. ! no_undefined_flag=$lt_[]_LT_AC_TAGVAR(no_undefined_flag, $1) ! ! # Commands used to finish a libtool library installation in a directory. ! finish_cmds=$lt_finish_cmds ! ! # Same as above, but a single script fragment to be evaled but not shown. ! finish_eval=$lt_finish_eval ! ! # Take the output of nm and produce a listing of raw symbols and C names. ! global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe ! ! # Transform the output of nm in a proper C declaration ! global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl ! ! # Transform the output of nm in a C name address pair ! global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address ! ! # This is the shared library runtime path variable. ! runpath_var=$runpath_var ! ! # This is the shared library path variable. ! shlibpath_var=$shlibpath_var ! ! # Is shlibpath searched before the hard-coded library search path? ! shlibpath_overrides_runpath=$shlibpath_overrides_runpath ! ! # How to hardcode a shared library path into an executable. ! hardcode_action=$_LT_AC_TAGVAR(hardcode_action, $1) ! ! # Whether we should hardcode library paths into libraries. ! hardcode_into_libs=$hardcode_into_libs ! ! # Flag to hardcode \$libdir into a binary during linking. ! # This must work even if \$libdir does not exist. ! hardcode_libdir_flag_spec=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) ! ! # If ld is used when linking, flag to hardcode \$libdir into ! # a binary during linking. This must work even if \$libdir does ! # not exist. ! hardcode_libdir_flag_spec_ld=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1) ! ! # Whether we need a single -rpath flag with a separated argument. ! hardcode_libdir_separator=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_separator, $1) ! ! # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the ! # resulting binary. ! hardcode_direct=$_LT_AC_TAGVAR(hardcode_direct, $1) ! ! # Set to yes if using the -LDIR flag during linking hardcodes DIR into the ! # resulting binary. ! hardcode_minus_L=$_LT_AC_TAGVAR(hardcode_minus_L, $1) ! ! # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into ! # the resulting binary. ! hardcode_shlibpath_var=$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1) ! ! # Set to yes if building a shared library automatically hardcodes DIR into the library ! # and all subsequent libraries and executables linked against it. ! hardcode_automatic=$_LT_AC_TAGVAR(hardcode_automatic, $1) ! # Variables whose values should be saved in libtool wrapper scripts and ! # restored at relink time. ! variables_saved_for_relink="$variables_saved_for_relink" ! # Whether libtool must link a program against all its dependency libraries. ! link_all_deplibs=$_LT_AC_TAGVAR(link_all_deplibs, $1) ! # Compile-time system search path for libraries ! sys_lib_search_path_spec=$lt_sys_lib_search_path_spec ! # Run-time system search path for libraries ! sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec ! # Fix the shell variable \$srcfile for the compiler. ! fix_srcfile_path="$_LT_AC_TAGVAR(fix_srcfile_path, $1)" ! # Set to yes if exported symbols are required. ! always_export_symbols=$_LT_AC_TAGVAR(always_export_symbols, $1) ! # The commands to list exported symbols. ! export_symbols_cmds=$lt_[]_LT_AC_TAGVAR(export_symbols_cmds, $1) ! # The commands to extract the exported symbol list from a shared archive. ! extract_expsyms_cmds=$lt_extract_expsyms_cmds ! # Symbols that should not be listed in the preloaded symbols. ! exclude_expsyms=$lt_[]_LT_AC_TAGVAR(exclude_expsyms, $1) ! # Symbols that must always be exported. ! include_expsyms=$lt_[]_LT_AC_TAGVAR(include_expsyms, $1) ! ifelse([$1],[], ! [# ### END LIBTOOL CONFIG], ! [# ### END LIBTOOL TAG CONFIG: $tagname]) ! __EOF__ ! ifelse([$1],[], [ ! case $host_os in ! aix3*) ! cat <<\EOF >> "$cfgfile" ! # AIX sometimes has problems with the GCC collect2 program. For some ! # reason, if we set the COLLECT_NAMES environment variable, the problems ! # vanish in a puff of smoke. ! if test "X${COLLECT_NAMES+set}" != Xset; then ! COLLECT_NAMES= ! export COLLECT_NAMES ! fi ! EOF ! ;; ! esac ! # We use sed instead of cat because bash on DJGPP gets confused if ! # if finds mixed CR/LF and LF-only lines. Since sed operates in ! # text mode, it properly converts lines to CR/LF. This bash problem ! # is reportedly fixed, but why not run on old versions too? ! sed '$q' "$ltmain" >> "$cfgfile" || (rm -f "$cfgfile"; exit 1) ! mv -f "$cfgfile" "$ofile" || \ ! (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") ! chmod +x "$ofile" ! ]) ! else ! # If there is no Makefile yet, we rely on a make rule to execute ! # `config.status --recheck' to rerun these tests and create the ! # libtool script then. ! ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` ! if test -f "$ltmain_in"; then ! test -f Makefile && make "$ltmain" ! fi ! fi ! ])# AC_LIBTOOL_CONFIG ! # AC_LIBTOOL_PROG_COMPILER_NO_RTTI([TAGNAME]) ! # ------------------------------------------- ! AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], ! [AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl ! _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= ! if test "$GCC" = yes; then ! _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ! AC_LIBTOOL_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], ! lt_cv_prog_compiler_rtti_exceptions, ! [-fno-rtti -fno-exceptions], [], ! [_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) ! fi ! ])# AC_LIBTOOL_PROG_COMPILER_NO_RTTI ! # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE ! # --------------------------------- ! AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], ! [AC_REQUIRE([AC_CANONICAL_HOST]) ! AC_REQUIRE([AC_PROG_NM]) ! AC_REQUIRE([AC_OBJEXT]) ! # Check for command to grab the raw symbol name followed by C symbol from nm. ! AC_MSG_CHECKING([command to parse $NM output from $compiler object]) ! AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], ! [ ! # These are sane defaults that work on at least a few old systems. ! # [They come from Ultrix. What could be older than Ultrix?!! ;)] ! # Character class describing NM global symbol codes. ! symcode='[[BCDEGRST]]' ! # Regexp to match symbols that can be accessed directly from C. ! sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' ! # Transform an extracted symbol line into a proper C declaration ! lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern int \1;/p'" - # Transform an extracted symbol line into symbol name and symbol address - lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" ! # Define system-specific variables. ! case $host_os in ! aix*) ! symcode='[[BCDT]]' ! ;; ! cygwin* | mingw* | pw32*) ! symcode='[[ABCDGISTW]]' ! ;; ! hpux*) # Its linker distinguishes data from code symbols ! if test "$host_cpu" = ia64; then ! symcode='[[ABCDEGRST]]' ! fi ! lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" ! lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" ! ;; ! linux*) ! if test "$host_cpu" = ia64; then ! symcode='[[ABCDGIRSTW]]' ! lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" ! lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" ! fi ! ;; ! irix* | nonstopux*) ! symcode='[[BCDEGRST]]' ! ;; ! osf*) ! symcode='[[BCDEGQRST]]' ! ;; ! solaris*) ! symcode='[[BDRT]]' ! ;; ! sco3.2v5*) ! symcode='[[DT]]' ! ;; ! sysv4.2uw2*) ! symcode='[[DT]]' ! ;; ! sysv5* | sco5v6* | unixware* | OpenUNIX*) ! symcode='[[ABDT]]' ;; ! sysv4) ! symcode='[[DFNSTU]]' ;; ! esac ! ! # Handle CRLF in mingw tool chain ! opt_cr= ! case $build_os in ! mingw*) ! opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; ! esac ! ! # If we're using GNU nm, then use its standard symbol codes. ! case `$NM -V 2>&1` in ! *GNU* | *'with BFD'*) ! symcode='[[ABCDGIRSTW]]' ;; ! esac ! # Try without a prefix undercore, then with it. ! for ac_symprfx in "" "_"; do ! # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. ! symxfrm="\\1 $ac_symprfx\\2 \\2" ! # Write the raw and C identifiers. ! lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" ! # Check to see that the pipe works correctly. ! pipe_works=no - rm -f conftest* - cat > conftest.$ac_ext < $nlist) && test -s "$nlist"; then - # Try sorting and uniquifying the output. - if sort "$nlist" | uniq > "$nlist"T; then - mv -f "$nlist"T "$nlist" - else - rm -f "$nlist"T fi ! # Make sure that we snagged all the symbols we need. ! if grep ' nm_test_var$' "$nlist" >/dev/null; then ! if grep ' nm_test_func$' "$nlist" >/dev/null; then ! cat < conftest.$ac_ext ! #ifdef __cplusplus ! extern "C" { ! #endif ! EOF ! # Now generate the symbol file. ! eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | grep -v main >> conftest.$ac_ext' ! cat <> conftest.$ac_ext ! #if defined (__STDC__) && __STDC__ ! # define lt_ptr_t void * ! #else ! # define lt_ptr_t char * ! # define const ! #endif ! /* The mapping between symbol names and symbols. */ ! const struct { ! const char *name; ! lt_ptr_t address; ! } ! lt_preloaded_symbols[[]] = ! { ! EOF ! $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (lt_ptr_t) \&\2},/" < "$nlist" | grep -v main >> conftest.$ac_ext ! cat <<\EOF >> conftest.$ac_ext ! {0, (lt_ptr_t) 0} ! }; ! #ifdef __cplusplus ! } ! #endif ! EOF ! # Now try linking the two files. ! mv conftest.$ac_objext conftstm.$ac_objext ! lt_save_LIBS="$LIBS" ! lt_save_CFLAGS="$CFLAGS" ! LIBS="conftstm.$ac_objext" ! CFLAGS="$CFLAGS$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" ! if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then ! pipe_works=yes ! fi ! LIBS="$lt_save_LIBS" ! CFLAGS="$lt_save_CFLAGS" else ! echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD ! fi else ! echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD fi ! else ! echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD ! fi ! else ! echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD ! cat conftest.$ac_ext >&5 ! fi ! rm -f conftest* conftst* ! ! # Do not use the global_symbol_pipe unless it works. ! if test "$pipe_works" = yes; then ! break ! else ! lt_cv_sys_global_symbol_pipe= ! fi ! done ! ]) ! if test -z "$lt_cv_sys_global_symbol_pipe"; then ! lt_cv_sys_global_symbol_to_cdecl= ! fi ! if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then ! AC_MSG_RESULT(failed) ! else ! AC_MSG_RESULT(ok) ! fi ! ]) # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE ! ! # AC_LIBTOOL_PROG_COMPILER_PIC([TAGNAME]) ! # --------------------------------------- ! AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC], ! [_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)= ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)= ! AC_MSG_CHECKING([for $compiler option to produce PIC]) ! ifelse([$1],[CXX],[ ! # C++ specific cases for pic, static, wl, etc. ! if test "$GXX" = yes; then ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' ! case $host_os in ! aix*) ! # All AIX code is PIC. ! if test "$host_cpu" = ia64; then ! # AIX 5 now supports IA64 processor ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; ! amigaos*) ! # FIXME: we need at least 68020 code to build shared libraries, but ! # adding the `-m68020' flag to GCC prevents building anything better, ! # like `-m68040'. ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ! ;; ! beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) ! # PIC is the default for these OSes. ! ;; ! mingw* | os2* | pw32*) ! # This hack is so that the source file can tell whether it is being ! # built for inclusion in a dll (and should export symbols for example). ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' ! ;; ! darwin* | rhapsody*) ! # PIC is the default on this platform ! # Common symbols not allowed in MH_DYLIB files ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ! ;; ! *djgpp*) ! # DJGPP does not support shared libraries at all ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= ! ;; ! interix3*) ! # Interix 3.x gcc -fpic/-fPIC options generate broken code. ! # Instead, we relocate shared libraries at runtime. ;; ! sysv4*MP*) ! if test -d /usr/nec; then ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; ! hpux*) ! # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but ! # not for PA HP-UX. ! case $host_cpu in ! hppa*64*|ia64*) ;; ! *) ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; ! *) ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac - else - case $host_os in - aix4* | aix5*) - # All AIX code is PIC. - if test "$host_cpu" = ia64; then - # AIX 5 now supports IA64 processor - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - else - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' - fi - ;; - chorus*) - case $cc_basename in - cxch68*) - # Green Hills C++ Compiler - # _LT_AC_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" - ;; - esac - ;; - darwin*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - case $cc_basename in - xlc*) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon' - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - ;; - esac - ;; - dgux*) - case $cc_basename in - ec++*) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - ;; - ghcx*) - # Green Hills C++ Compiler - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - ;; - *) - ;; - esac - ;; - freebsd* | kfreebsd*-gnu | dragonfly*) - # FreeBSD uses GNU C++ - ;; - hpux9* | hpux10* | hpux11*) - case $cc_basename in - CC*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' - if test "$host_cpu" != ia64; then - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' - fi - ;; - aCC*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' - case $host_cpu in - hppa*64*|ia64*) - # +Z the default - ;; - *) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' - ;; - esac - ;; - *) - ;; - esac - ;; - interix*) - # This is c89, which is MS Visual C++ (no shared libs) - # Anyone wants to do a port? - ;; - irix5* | irix6* | nonstopux*) - case $cc_basename in - CC*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - # CC pic flag -KPIC is the default. - ;; - *) - ;; - esac - ;; - linux*) - case $cc_basename in - KCC*) - # KAI C++ Compiler - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' - ;; - icpc* | ecpc*) - # Intel C++ - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' - ;; - pgCC*) - # Portland Group C++ compiler. - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - cxx*) - # Compaq C++ - # Make sure the PIC flag is empty. It appears that all Alpha - # Linux and Compaq Tru64 Unix objects are PIC. - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - *) - ;; - esac - ;; - lynxos*) - ;; - m88k*) - ;; - mvs*) - case $cc_basename in - cxx*) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' - ;; - *) - ;; - esac - ;; - netbsd*) - ;; - osf3* | osf4* | osf5*) - case $cc_basename in - KCC*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' - ;; - RCC*) - # Rational C++ 2.4.1 - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - ;; - cxx*) - # Digital/Compaq C++ - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - # Make sure the PIC flag is empty. It appears that all Alpha - # Linux and Compaq Tru64 Unix objects are PIC. - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' - ;; - *) - ;; - esac - ;; - psos*) - ;; - solaris*) - case $cc_basename in - CC*) - # Sun C++ 4.2, 5.x and Centerline C++ - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' - ;; - gcx*) - # Green Hills C++ Compiler - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' - ;; - *) - ;; - esac - ;; - sunos4*) - case $cc_basename in - CC*) - # Sun C++ 4.x - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - lcc*) - # Lucid - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' - ;; - *) - ;; - esac - ;; - tandem*) - case $cc_basename in - NCC*) - # NonStop-UX NCC 3.20 - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - ;; - *) - ;; - esac - ;; - sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) - case $cc_basename in - CC*) - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' - ;; - esac - ;; - vxworks*) - ;; - *) - _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no - ;; - esac - fi - ], - [ - if test "$GCC" = yes; then - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in ! aix*) ! # All AIX code is PIC. ! if test "$host_cpu" = ia64; then ! # AIX 5 now supports IA64 processor ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; ! amigaos*) ! # FIXME: we need at least 68020 code to build shared libraries, but ! # adding the `-m68020' flag to GCC prevents building anything better, ! # like `-m68040'. ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ! ;; ! beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) ! # PIC is the default for these OSes. ! ;; ! mingw* | pw32* | os2*) ! # This hack is so that the source file can tell whether it is being ! # built for inclusion in a dll (and should export symbols for example). ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' ! ;; ! darwin* | rhapsody*) ! # PIC is the default on this platform ! # Common symbols not allowed in MH_DYLIB files ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; ! interix3*) ! # Interix 3.x gcc -fpic/-fPIC options generate broken code. ! # Instead, we relocate shared libraries at runtime. ;; ! msdosdjgpp*) ! # Just because we use GCC doesn't mean we suddenly get shared libraries ! # on systems that don't support them. ! _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ! enable_shared=no ;; ! sysv4*MP*) ! if test -d /usr/nec; then ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic ! fi ;; ! hpux*) ! # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but ! # not for PA HP-UX. ! case $host_cpu in ! hppa*64*|ia64*) ! # +Z the default ! ;; ! *) ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ! ;; esac ;; ! *) ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ! ;; ! esac ! else ! # PORTME Check for flag to pass linker flags through the system compiler. ! case $host_os in ! aix*) ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ! if test "$host_cpu" = ia64; then ! # AIX 5 now supports IA64 processor ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ! else ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' ! fi ;; - darwin*) - # PIC is the default on this platform - # Common symbols not allowed in MH_DYLIB files - case $cc_basename in - xlc*) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon' - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' - ;; - esac - ;; ! mingw* | pw32* | os2*) ! # This hack is so that the source file can tell whether it is being ! # built for inclusion in a dll (and should export symbols for example). ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' ;; ! hpux9* | hpux10* | hpux11*) ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ! # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but ! # not for PA HP-UX. ! case $host_cpu in ! hppa*64*|ia64*) ! # +Z the default ! ;; ! *) ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ! ;; ! esac ! # Is there a better lt_prog_compiler_static that works with the bundled CC? ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' ;; ! irix5* | irix6* | nonstopux*) ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ! # PIC (with -KPIC) is the default. ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; ! newsos6) ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; ! linux*) ! case $cc_basename in ! icc* | ecc*) ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' ! ;; ! pgcc* | pgf77* | pgf90* | pgf95*) ! # Portland Group compilers (*not* the Pentium gcc compiler, ! # which looks to be a dead project) ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ! ;; ! ccc*) ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ! # All Alpha code is PIC. ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ! ;; ! esac ! ;; ! osf3* | osf4* | osf5*) ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ! # All OSF/1 code is PIC. ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; ! solaris*) ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ! case $cc_basename in ! f77* | f90* | f95*) ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; ! *) ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; ! esac ;; ! sunos4*) ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; ! sysv4 | sysv4.2uw2* | sysv4.3*) ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; ! sysv4*MP*) ! if test -d /usr/nec ;then ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; ! sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; ! unicos*) ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ! _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; ! uts4*) ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; ! *) ! _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; - esac - fi - ]) - AC_MSG_RESULT([$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)]) - - # - # Check to make sure the PIC flag actually works. - # - if test -n "$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)"; then - AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) works], - _LT_AC_TAGVAR(lt_prog_compiler_pic_works, $1), - [$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])], [], - [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) in - "" | " "*) ;; - *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)" ;; - esac], - [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= - _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) - fi - case $host_os in - # For platforms which do not support PIC, -DPIC is meaningless: - *djgpp*) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= - ;; - *) - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])" - ;; - esac - - # - # Check to make sure the static flag actually works. - # - wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_AC_TAGVAR(lt_prog_compiler_static, $1)\" - AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], - _LT_AC_TAGVAR(lt_prog_compiler_static_works, $1), - $lt_tmp_static_flag, - [], - [_LT_AC_TAGVAR(lt_prog_compiler_static, $1)=]) - ]) - - - # AC_LIBTOOL_PROG_LD_SHLIBS([TAGNAME]) - # ------------------------------------ - # See if the linker supports building shared libraries. - AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS], - [AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) - ifelse([$1],[CXX],[ - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - case $host_os in - aix4* | aix5*) - # If we're using GNU nm, then we don't want the "-C" option. - # -C means demangle to AIX nm, but means don't demangle with GNU nm - if $NM -V 2>&1 | grep 'GNU' > /dev/null; then - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' - else - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' - fi - ;; - pw32*) - _LT_AC_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" - ;; - cygwin* | mingw*) - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]] /s/.* \([[^ ]]*\)/\1 DATA/;/^.* __nm__/s/^.* __nm__\([[^ ]]*\) [[^ ]]*/\1 DATA/;/^I /d;/^[[AITW]] /s/.* //'\'' | sort | uniq > $export_symbols' - ;; - *) - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - ;; - esac - ],[ - runpath_var= - _LT_AC_TAGVAR(allow_undefined_flag, $1)= - _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no - _LT_AC_TAGVAR(archive_cmds, $1)= - _LT_AC_TAGVAR(archive_expsym_cmds, $1)= - _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)= - _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1)= - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= - _LT_AC_TAGVAR(thread_safe_flag_spec, $1)= - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= - _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= - _LT_AC_TAGVAR(hardcode_direct, $1)=no - _LT_AC_TAGVAR(hardcode_minus_L, $1)=no - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported - _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown - _LT_AC_TAGVAR(hardcode_automatic, $1)=no - _LT_AC_TAGVAR(module_cmds, $1)= - _LT_AC_TAGVAR(module_expsym_cmds, $1)= - _LT_AC_TAGVAR(always_export_symbols, $1)=no - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' - # include_expsyms should be a list of space-separated symbols to be *always* - # included in the symbol list - _LT_AC_TAGVAR(include_expsyms, $1)= - # exclude_expsyms can be an extended regexp of symbols to exclude - # it will be wrapped by ` (' and `)$', so one must not match beginning or - # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', - # as well as any symbol that contains `d'. - _LT_AC_TAGVAR(exclude_expsyms, $1)="_GLOBAL_OFFSET_TABLE_" - # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out - # platforms (ab)use it in PIC code, but their linkers get confused if - # the symbol is explicitly referenced. Since portable code cannot - # rely on this symbol name, it's probably fine to never include it in - # preloaded symbol tables. - extract_expsyms_cmds= - # Just being paranoid about ensuring that cc_basename is set. - _LT_CC_BASENAME([$compiler]) - case $host_os in - cygwin* | mingw* | pw32*) - # FIXME: the MSVC++ port hasn't been tested in a loooong time - # When not using gcc, we currently assume that we are using - # Microsoft Visual C++. - if test "$GCC" != yes; then - with_gnu_ld=no - fi - ;; - interix*) - # we just hope/assume this is gcc and not c89 (= MSVC++) - with_gnu_ld=yes - ;; - openbsd*) - with_gnu_ld=no - ;; - esac - - _LT_AC_TAGVAR(ld_shlibs, $1)=yes - if test "$with_gnu_ld" = yes; then - # If archive_cmds runs LD, not CC, wlarc should be empty - wlarc='${wl}' ! # Set some defaults for GNU ld with shared library support. These ! # are reset later if shared libraries are not supported. Putting them ! # here allows them to be overridden if necessary. ! runpath_var=LD_RUN_PATH ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' ! # ancient GNU ld didn't support --whole-archive et. al. ! if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= ! fi ! supports_anon_versioning=no ! case `$LD -v 2>/dev/null` in ! *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 ! *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... ! *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... ! *\ 2.11.*) ;; # other 2.11 versions ! *) supports_anon_versioning=yes ;; ! esac ! # See if GNU ld supports shared libraries. ! case $host_os in ! aix3* | aix4* | aix5*) ! # On AIX/PPC, the GNU linker is very broken ! if test "$host_cpu" != ia64; then ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! cat <&2 ! *** Warning: the GNU linker, at least up to release 2.9.1, is reported ! *** to be unable to reliably create shared libraries on AIX. ! *** Therefore, libtool is disabling shared libraries support. If you ! *** really care for shared libraries, you may want to modify your PATH ! *** so that a non-GNU linker is found, and then restart. ! EOF fi ;; ! amigaos*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' ! _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes ! ! # Samuel A. Falvo II reports ! # that the semantics of dynamic libraries on AmigaOS, at least up ! # to version 4, is to share data among multiple programs linked ! # with the same dynamic library. Since this doesn't match the ! # behavior of shared libraries on other platforms, we can't use ! # them. ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; ! beos*) ! if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported ! # Joseph Beckenbach says some releases of gcc ! # support --undefined. This deserves some investigation. FIXME ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' ! else ! _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; ! cygwin* | mingw* | pw32*) ! # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, ! # as there is no search path for DLLs. ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported ! _LT_AC_TAGVAR(always_export_symbols, $1)=no ! _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ! _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]] /s/.* \([[^ ]]*\)/\1 DATA/'\'' | $SED -e '\''/^[[AITW]] /s/.* //'\'' | sort | uniq > $export_symbols' ! if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' ! # If the export-symbols file already is a .def file (1st line ! # is EXPORTS), use it as is; otherwise, prepend... ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then ! cp $export_symbols $output_objdir/$soname.def; ! else ! echo EXPORTS > $output_objdir/$soname.def; ! cat $export_symbols >> $output_objdir/$soname.def; ! fi~ ! $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ! _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; ! interix3*) ! _LT_AC_TAGVAR(hardcode_direct, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ! # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. ! # Instead, shared libraries are loaded at an image base (0x10000000 by ! # default) and relocated if they conflict, which is a slow very memory ! # consuming and fragmenting process. To avoid this, we pick a random, ! # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link ! # time. Moving up from 0x10000000 also allows more sbrk(2) space. ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ! ;; ! ! linux*) ! if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then ! tmp_addflag= ! case $cc_basename,$host_cpu in ! pgcc*) # Portland Group C compiler ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' ! tmp_addflag=' $pic_flag' ! ;; ! pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' ! tmp_addflag=' $pic_flag -Mnomain' ;; ! ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 ! tmp_addflag=' -i_dynamic' ;; ! efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 ! tmp_addflag=' -i_dynamic -nofor_main' ;; ! ifc* | ifort*) # Intel Fortran compiler ! tmp_addflag=' -nofor_main' ;; ! esac ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' ! if test $supports_anon_versioning = yes; then ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $output_objdir/$libname.ver~ ! cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ ! $echo "local: *; };" >> $output_objdir/$libname.ver~ ! $CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' ! fi else ! _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; ! netbsd*) ! if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' ! wlarc= ! else ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ! fi ;; ! solaris*) ! if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! cat <&2 ! *** Warning: The releases 2.8.* of the GNU linker cannot reliably ! *** create shared libraries on Solaris systems. Therefore, libtool ! *** is disabling shared libraries support. We urge you to upgrade GNU ! *** binutils to release 2.9.1 or newer. Another option is to modify ! *** your PATH or compiler configuration so that the native linker is ! *** used, and then restart. ! EOF ! elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ! _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; - sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) - case `$LD -v 2>&1` in - *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) - _LT_AC_TAGVAR(ld_shlibs, $1)=no - cat <<_LT_EOF 1>&2 ! *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not ! *** reliably create shared libraries on SCO systems. Therefore, libtool ! *** is disabling shared libraries support. We urge you to upgrade GNU ! *** binutils to release 2.16.91.0.3 or newer. Another option is to modify ! *** your PATH or compiler configuration so that the native linker is ! *** used, and then restart. - _LT_EOF - ;; - *) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib' - else - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac - ;; ! sunos4*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' ! wlarc= ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! ;; - *) - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' - else - _LT_AC_TAGVAR(ld_shlibs, $1)=no - fi - ;; - esac ! if test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no; then ! runpath_var= ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= ! fi ! else ! # PORTME fill in a description of your system's linker (not GNU ld) ! case $host_os in ! aix3*) ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported ! _LT_AC_TAGVAR(always_export_symbols, $1)=yes ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' ! # Note: this linker hardcodes the directories in LIBPATH if there ! # are no directories specified by -L. ! _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes ! if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then ! # Neither direct hardcoding nor static linking is supported with a ! # broken collect2. ! _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported ! fi ! ;; ! aix4* | aix5*) ! if test "$host_cpu" = ia64; then ! # On IA64, the linker does run time linking by default, so we don't ! # have to do anything special. ! aix_use_runtimelinking=no ! exp_sym_flag='-Bexport' ! no_entry_flag="" ! else ! # If we're using GNU nm, then we don't want the "-C" option. ! # -C means demangle to AIX nm, but means don't demangle with GNU nm ! if $NM -V 2>&1 | grep 'GNU' > /dev/null; then ! _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' ! else ! _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' ! fi ! aix_use_runtimelinking=no ! # Test if we are trying to use run time linking or normal ! # AIX style linking. If -brtl is somewhere in LDFLAGS, we ! # need to do runtime linking. ! case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*) ! for ld_flag in $LDFLAGS; do ! if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then ! aix_use_runtimelinking=yes ! break ! fi ! done ! ;; ! esac ! exp_sym_flag='-bexport' ! no_entry_flag='-bnoentry' ! fi ! # When large executables or shared objects are built, AIX ld can ! # have problems creating the table of contents. If linking a library ! # or program results in "error TOC overflow" add -mminimal-toc to ! # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not ! # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. ! _LT_AC_TAGVAR(archive_cmds, $1)='' ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' ! _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ! if test "$GCC" = yes; then ! case $host_os in aix4.[[012]]|aix4.[[012]].*) ! # We only want to do this on AIX 4.2 and lower, the check ! # below for broken collect2 doesn't work under 4.3+ ! collect2name=`${CC} -print-prog-name=collect2` ! if test -f "$collect2name" && \ ! strings "$collect2name" | grep resolve_lib_name >/dev/null ! then ! # We have reworked collect2 ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! else ! # We have old collect2 ! _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported ! # It fails to find uninstalled libraries when the uninstalled ! # path is not listed in the libpath. Setting hardcode_minus_L ! # to unsupported forces relinking ! _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= ! fi ! ;; ! esac ! shared_flag='-shared' ! if test "$aix_use_runtimelinking" = yes; then ! shared_flag="$shared_flag "'${wl}-G' ! fi ! else ! # not using gcc ! if test "$host_cpu" = ia64; then ! # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release ! # chokes on -Wl,-G. The following line is correct: ! shared_flag='-G' ! else ! if test "$aix_use_runtimelinking" = yes; then ! shared_flag='${wl}-G' ! else ! shared_flag='${wl}-bM:SRE' ! fi ! fi ! fi ! # It seems that -bexpall does not export symbols beginning with ! # underscore (_), so it is better to generate a list of symbols to export. ! _LT_AC_TAGVAR(always_export_symbols, $1)=yes ! if test "$aix_use_runtimelinking" = yes; then ! # Warning - without using the other runtime loading flags (-brtl), ! # -berok will link without error, but may produce a broken library. ! _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok' ! # Determine the default libpath from the value encoded in an empty executable. ! _LT_AC_SYS_LIBPATH_AIX ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" ! else ! if test "$host_cpu" = ia64; then ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' ! _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs" ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" ! else ! # Determine the default libpath from the value encoded in an empty executable. ! _LT_AC_SYS_LIBPATH_AIX ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" ! # Warning - without using the other run time loading flags, ! # -berok will link without error, but may produce a broken library. ! _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' ! # Exported symbols can be pulled into shared objects from archives ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience' ! _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes ! # This is similar to how AIX traditionally builds its shared libraries. ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' ! fi ! fi ! ;; ! amigaos*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' ! _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes ! # see comment about different semantics on the GNU ld section ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! bsdi[[45]]*) ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic ! ;; ! cygwin* | mingw* | pw32*) ! # When not using gcc, we currently assume that we are using ! # Microsoft Visual C++. ! # hardcode_libdir_flag_spec is actually meaningless, as there is ! # no search path for DLLs. ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported ! # Tell ltmain to make .lib files, not .a files. ! libext=lib ! # Tell ltmain to make .dll files, not .so files. ! shrext_cmds=".dll" ! # FIXME: Setting linknames here is a bad hack. ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' ! # The linker will automatically build a .lib file if we build a DLL. ! _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='true' ! # FIXME: Should let the user specify the lib program. ! _LT_AC_TAGVAR(old_archive_cmds, $1)='lib /OUT:$oldlib$oldobjs$old_deplibs' ! _LT_AC_TAGVAR(fix_srcfile_path, $1)='`cygpath -w "$srcfile"`' ! _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ! ;; ! darwin* | rhapsody*) ! case $host_os in ! rhapsody* | darwin1.[[012]]) ! _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress' ! ;; ! *) # Darwin 1.3 on ! if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then ! _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ! else ! case ${MACOSX_DEPLOYMENT_TARGET} in ! 10.[[012]]) ! _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ! ;; ! 10.*) ! _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup' ! ;; ! esac ! fi ! ;; ! esac ! _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ! _LT_AC_TAGVAR(hardcode_direct, $1)=no ! _LT_AC_TAGVAR(hardcode_automatic, $1)=yes ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='' ! _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ! if test "$GCC" = yes ; then ! output_verbose_link_cmd='echo' ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' ! _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' ! # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ! _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ! else ! case $cc_basename in ! xlc*) ! output_verbose_link_cmd='echo' ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' ! _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' ! # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ! _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ! ;; ! *) ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! esac ! fi ! ;; ! dgux*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! ;; ! freebsd1*) ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor ! # support. Future versions do this automatically, but an explicit c++rt0.o ! # does not break anything, and helps significantly (at the cost of a little ! # extra space). ! freebsd2.2*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! ;; ! # Unfortunately, older versions of FreeBSD 2 do not have this feature. ! freebsd2*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! ;; ! # FreeBSD 3 and greater uses gcc -shared to do shared libraries. ! freebsd* | kfreebsd*-gnu | dragonfly*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! ;; ! hpux9*) ! if test "$GCC" = yes; then ! _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' ! else ! _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' ! fi ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! # hardcode_minus_L: Not really in the search PATH, ! # but as the default location of the library. ! _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ! ;; ! hpux10*) ! if test "$GCC" = yes -a "$with_gnu_ld" = no; then ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ! else ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' ! fi ! if test "$with_gnu_ld" = no; then ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ! # hardcode_minus_L: Not really in the search PATH, ! # but as the default location of the library. ! _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes ! fi ! ;; ! hpux11*) ! if test "$GCC" = yes -a "$with_gnu_ld" = no; then ! case $host_cpu in ! hppa*64*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ! ;; ! ia64*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ! ;; ! *) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ! ;; ! esac ! else ! case $host_cpu in ! hppa*64*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ! ;; ! ia64*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ! ;; ! *) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ! ;; ! esac ! fi ! if test "$with_gnu_ld" = no; then ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ! case $host_cpu in ! hppa*64*|ia64*) ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' ! _LT_AC_TAGVAR(hardcode_direct, $1)=no ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! ;; ! *) ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ! # hardcode_minus_L: Not really in the search PATH, ! # but as the default location of the library. ! _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes ! ;; ! esac ! fi ! ;; - irix5* | irix6* | nonstopux*) - if test "$GCC" = yes; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' - else - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' - _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir' - fi - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes - ;; ! netbsd*) ! if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out ! else ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF ! fi ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! ;; ! newsos6) ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! ;; ! openbsd*) ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ! else ! case $host_os in ! openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' ! ;; ! *) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' ! ;; ! esac ! fi ! ;; ! os2*) ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' ! _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported ! _LT_AC_TAGVAR(archive_cmds, $1)='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' ! _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ! ;; ! osf3*) ! if test "$GCC" = yes; then ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ! else ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' ! fi ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ! ;; ! osf4* | osf5*) # as osf3* with the addition of -msym flag ! if test "$GCC" = yes; then ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' ! else ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ ! $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' ! # Both c and cxx compiler support -rpath directly ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' ! fi ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ! ;; ! solaris*) ! _LT_AC_TAGVAR(no_undefined_flag, $1)=' -z text' ! if test "$GCC" = yes; then ! wlarc='${wl}' ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ ! $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' ! else ! wlarc='' ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ ! $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' ! fi ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! case $host_os in ! solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; ! *) ! # The compiler driver will combine linker options so we ! # cannot just pass the convience library names through ! # without $wl, iff we do not link with $LD. ! # Luckily, gcc supports the same syntax we need for Sun Studio. ! # Supported since Solaris 2.6 (maybe 2.5.1?) ! case $wlarc in ! '') ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; ! *) ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;; ! esac ;; ! esac ! _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ! ;; ! sunos4*) ! if test "x$host_vendor" = xsequent; then ! # Use $CC to link under sequent, because it throws in some extra .o ! # files that make .init and .fini sections work. ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' ! else ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' ! fi ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! ;; ! sysv4) ! case $host_vendor in ! sni) ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes # is this really true??? ! ;; ! siemens) ! ## LD is ld it makes a PLAMLIB ! ## CC just makes a GrossModule. ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' ! _LT_AC_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' ! _LT_AC_TAGVAR(hardcode_direct, $1)=no ! ;; ! motorola) ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ! _LT_AC_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie ! ;; ! esac ! runpath_var='LD_RUN_PATH' ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! ;; ! sysv4.3*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' ! ;; ! sysv4*MP*) ! if test -d /usr/nec; then ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! runpath_var=LD_RUN_PATH ! hardcode_runpath_var=yes ! _LT_AC_TAGVAR(ld_shlibs, $1)=yes ! fi ! ;; ! sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7*) ! _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' ! _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! runpath_var='LD_RUN_PATH' ! if test "$GCC" = yes; then ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ! else ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ! fi ! ;; ! sysv5* | sco3.2v5* | sco5v6*) ! # Note: We can NOT use -z defs as we might desire, because we do not ! # link with -lc, and that would cause any symbols used from libc to ! # always be unresolved, which means just about no library would ! # ever link correctly. If we're not using GNU ld we use -z text ! # though, which does catch some bad symbols but isn't as heavy-handed ! # as -z defs. ! _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' ! _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' ! _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' ! _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' ! runpath_var='LD_RUN_PATH' - if test "$GCC" = yes; then - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - else - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' - fi - ;; ! uts4*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! ;; ! *) ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! esac ! fi ]) - AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)]) - test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no # ! # Do we need to explicitly link libc? # ! case "x$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)" in ! x|xyes) ! # Assume -lc should be added ! _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes ! if test "$enable_shared" = yes && test "$GCC" = yes; then ! case $_LT_AC_TAGVAR(archive_cmds, $1) in ! *'~'*) ! # FIXME: we may have to deal with multi-command sequences. ! ;; ! '$CC '*) ! # Test whether the compiler implicitly links with -lc since on some ! # systems, -lgcc has to come before -lc. If gcc already passes -lc ! # to ld, don't add -lc before -lgcc. ! AC_MSG_CHECKING([whether -lc should be explicitly linked in]) ! $rm conftest* ! printf "$lt_simple_compile_test_code" > conftest.$ac_ext ! if AC_TRY_EVAL(ac_compile) 2>conftest.err; then ! soname=conftest ! lib=conftest ! libobjs=conftest.$ac_objext ! deplibs= ! wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) ! pic_flag=$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) ! compiler_flags=-v ! linker_flags=-v ! verstring= ! output_objdir=. ! libname=conftest ! lt_save_allow_undefined_flag=$_LT_AC_TAGVAR(allow_undefined_flag, $1) ! _LT_AC_TAGVAR(allow_undefined_flag, $1)= ! if AC_TRY_EVAL(_LT_AC_TAGVAR(archive_cmds, $1) 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) ! then ! _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ! else ! _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes ! fi ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag ! else ! cat conftest.err 1>&5 ! fi ! $rm conftest* ! AC_MSG_RESULT([$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)]) ! ;; ! esac ! fi ! ;; ! esac ! ])# AC_LIBTOOL_PROG_LD_SHLIBS ! # _LT_AC_FILE_LTDLL_C ! # ------------------- ! # Be careful that the start marker always follows a newline. ! AC_DEFUN([_LT_AC_FILE_LTDLL_C], [ ! # /* ltdll.c starts here */ ! # #define WIN32_LEAN_AND_MEAN ! # #include ! # #undef WIN32_LEAN_AND_MEAN ! # #include ! # ! # #ifndef __CYGWIN__ ! # # ifdef __CYGWIN32__ ! # # define __CYGWIN__ __CYGWIN32__ ! # # endif ! # #endif ! # ! # #ifdef __cplusplus ! # extern "C" { ! # #endif ! # BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved); ! # #ifdef __cplusplus ! # } ! # #endif ! # ! # #ifdef __CYGWIN__ ! # #include ! # DECLARE_CYGWIN_DLL( DllMain ); ! # #endif ! # HINSTANCE __hDllInstance_base; ! # ! # BOOL APIENTRY ! # DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved) ! # { ! # __hDllInstance_base = hInst; ! # return TRUE; ! # } ! # /* ltdll.c ends here */ ! ])# _LT_AC_FILE_LTDLL_C ! # _LT_AC_TAGVAR(VARNAME, [TAGNAME]) ! # --------------------------------- ! AC_DEFUN([_LT_AC_TAGVAR], [ifelse([$2], [], [$1], [$1_$2])]) ! # old names ! AC_DEFUN([AM_PROG_LIBTOOL], [AC_PROG_LIBTOOL]) ! AC_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) ! AC_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) ! AC_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) ! AC_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) ! AC_DEFUN([AM_PROG_LD], [AC_PROG_LD]) ! AC_DEFUN([AM_PROG_NM], [AC_PROG_NM]) ! # This is just to silence aclocal about the macro not being used ! ifelse([AC_DISABLE_FAST_INSTALL]) ! AC_DEFUN([LT_AC_PROG_GCJ], ! [AC_CHECK_TOOL(GCJ, gcj, no) ! test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" ! AC_SUBST(GCJFLAGS) ! ]) ! AC_DEFUN([LT_AC_PROG_RC], ! [AC_CHECK_TOOL(RC, windres, no) ! ]) ! # NOTE: This macro has been submitted for inclusion into # ! # GNU Autoconf as AC_PROG_SED. When it is available in # ! # a released version of Autoconf we should remove this # ! # macro and use it instead. # ! # LT_AC_PROG_SED ! # -------------- ! # Check for a fully-functional sed program, that truncates ! # as few characters as possible. Prefer GNU sed if found. ! AC_DEFUN([LT_AC_PROG_SED], ! [AC_MSG_CHECKING([for a sed that does not truncate output]) ! AC_CACHE_VAL(lt_cv_path_SED, ! [# Loop through the user's path and test for sed and gsed. ! # Then use that list of sed's as ones to test for truncation. ! as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ! for as_dir in $PATH do ! IFS=$as_save_IFS ! test -z "$as_dir" && as_dir=. ! for lt_ac_prog in sed gsed; do ! for ac_exec_ext in '' $ac_executable_extensions; do ! if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then ! lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" ! fi done ! done ! done ! lt_ac_max=0 ! lt_ac_count=0 ! # Add /usr/xpg4/bin/sed as it is typically found on Solaris ! # along with /bin/sed that truncates output. ! for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do ! test ! -f $lt_ac_sed && continue ! cat /dev/null > conftest.in ! lt_ac_count=0 ! echo $ECHO_N "0123456789$ECHO_C" >conftest.in ! # Check for GNU sed and select it if it is found. ! if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then ! lt_cv_path_SED=$lt_ac_sed ! break fi - while true; do - cat conftest.in conftest.in >conftest.tmp - mv conftest.tmp conftest.in - cp conftest.in conftest.nl - echo >>conftest.nl - $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break - cmp -s conftest.out conftest.nl || break - # 10000 chars as input seems more than enough - test $lt_ac_count -gt 10 && break - lt_ac_count=`expr $lt_ac_count + 1` - if test $lt_ac_count -gt $lt_ac_max; then - lt_ac_max=$lt_ac_count - lt_cv_path_SED=$lt_ac_sed - fi - done done ! ]) ! SED=$lt_cv_path_SED ! AC_MSG_RESULT([$SED]) ! ]) --- 3960,7008 ---- _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. ! lt_save_CC="$CC" ! CC=${F77-"f77"} compiler=$CC _LT_AC_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) ! AC_MSG_CHECKING([if libtool supports shared libraries]) ! AC_MSG_RESULT([$can_build_shared]) ! AC_MSG_CHECKING([whether to build shared libraries]) ! test "$can_build_shared" = "no" && enable_shared=no ! # On AIX, shared libraries and static libraries use the same namespace, and ! # are all built from PIC. ! case $host_os in ! aix3*) ! test "$enable_shared" = yes && enable_static=no ! if test -n "$RANLIB"; then ! archive_cmds="$archive_cmds~\$RANLIB \$lib" ! postinstall_cmds='$RANLIB $lib' ! fi ! ;; ! aix4* | aix5*) ! if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then ! test "$enable_shared" = yes && enable_static=no ! fi ! ;; ! esac ! AC_MSG_RESULT([$enable_shared]) ! AC_MSG_CHECKING([whether to build static libraries]) ! # Make sure either enable_shared or enable_static is yes. ! test "$enable_shared" = yes || enable_static=yes ! AC_MSG_RESULT([$enable_static]) ! _LT_AC_TAGVAR(GCC, $1)="$G77" ! _LT_AC_TAGVAR(LD, $1)="$LD" ! AC_LIBTOOL_PROG_COMPILER_PIC($1) ! AC_LIBTOOL_PROG_CC_C_O($1) ! AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) ! AC_LIBTOOL_PROG_LD_SHLIBS($1) ! AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) ! AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) ! AC_LIBTOOL_CONFIG($1) ! AC_LANG_POP ! CC="$lt_save_CC" ! ])# AC_LIBTOOL_LANG_F77_CONFIG ! # AC_LIBTOOL_LANG_GCJ_CONFIG ! # -------------------------- ! # Ensure that the configuration vars for the C compiler are ! # suitably defined. Those variables are subsequently used by ! # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. ! AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG], [_LT_AC_LANG_GCJ_CONFIG(GCJ)]) ! AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG], ! [AC_LANG_SAVE ! # Source file extension for Java test sources. ! ac_ext=java ! # Object file extension for compiled Java test sources. ! objext=o ! _LT_AC_TAGVAR(objext, $1)=$objext ! # Code to be used in simple compile tests ! lt_simple_compile_test_code="class foo {}\n" ! # Code to be used in simple link tests ! lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }\n' ! # ltmain only uses $CC for tagged configurations so make sure $CC is set. ! _LT_AC_SYS_COMPILER ! # save warnings/boilerplate of simple test code ! _LT_COMPILER_BOILERPLATE ! _LT_LINKER_BOILERPLATE ! # Allow CC to be a program name with arguments. ! lt_save_CC="$CC" ! CC=${GCJ-"gcj"} ! compiler=$CC ! _LT_AC_TAGVAR(compiler, $1)=$CC ! _LT_CC_BASENAME([$compiler]) ! # GCJ did not exist at the time GCC didn't implicitly link libc in. ! _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ! _LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds ! AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1) ! AC_LIBTOOL_PROG_COMPILER_PIC($1) ! AC_LIBTOOL_PROG_CC_C_O($1) ! AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) ! AC_LIBTOOL_PROG_LD_SHLIBS($1) ! AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) ! AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) ! AC_LIBTOOL_CONFIG($1) ! AC_LANG_RESTORE ! CC="$lt_save_CC" ! ])# AC_LIBTOOL_LANG_GCJ_CONFIG ! # AC_LIBTOOL_LANG_RC_CONFIG ! # ------------------------- ! # Ensure that the configuration vars for the Windows resource compiler are ! # suitably defined. Those variables are subsequently used by ! # AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. ! AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG], [_LT_AC_LANG_RC_CONFIG(RC)]) ! AC_DEFUN([_LT_AC_LANG_RC_CONFIG], ! [AC_LANG_SAVE ! # Source file extension for RC test sources. ! ac_ext=rc ! # Object file extension for compiled RC test sources. ! objext=o ! _LT_AC_TAGVAR(objext, $1)=$objext ! ! # Code to be used in simple compile tests ! lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }\n' ! ! # Code to be used in simple link tests ! lt_simple_link_test_code="$lt_simple_compile_test_code" ! ! # ltmain only uses $CC for tagged configurations so make sure $CC is set. ! _LT_AC_SYS_COMPILER ! ! # save warnings/boilerplate of simple test code ! _LT_COMPILER_BOILERPLATE ! _LT_LINKER_BOILERPLATE ! ! # Allow CC to be a program name with arguments. ! lt_save_CC="$CC" ! CC=${RC-"windres"} ! compiler=$CC ! _LT_AC_TAGVAR(compiler, $1)=$CC ! _LT_CC_BASENAME([$compiler]) ! _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes ! ! AC_LIBTOOL_CONFIG($1) ! ! AC_LANG_RESTORE ! CC="$lt_save_CC" ! ])# AC_LIBTOOL_LANG_RC_CONFIG ! ! ! # AC_LIBTOOL_CONFIG([TAGNAME]) ! # ---------------------------- ! # If TAGNAME is not passed, then create an initial libtool script ! # with a default configuration from the untagged config vars. Otherwise ! # add code to config.status for appending the configuration named by ! # TAGNAME from the matching tagged config vars. ! AC_DEFUN([AC_LIBTOOL_CONFIG], ! [# The else clause should only fire when bootstrapping the ! # libtool distribution, otherwise you forgot to ship ltmain.sh ! # with your package, and you will get complaints that there are ! # no rules to generate ltmain.sh. ! if test -f "$ltmain"; then ! # See if we are running on zsh, and set the options which allow our commands through ! # without removal of \ escapes. ! if test -n "${ZSH_VERSION+set}" ; then ! setopt NO_GLOB_SUBST ! fi ! # Now quote all the things that may contain metacharacters while being ! # careful not to overquote the AC_SUBSTed values. We take copies of the ! # variables and quote the copies for generation of the libtool script. ! for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \ ! SED SHELL STRIP \ ! libname_spec library_names_spec soname_spec extract_expsyms_cmds \ ! old_striplib striplib file_magic_cmd finish_cmds finish_eval \ ! deplibs_check_method reload_flag reload_cmds need_locks \ ! lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ ! lt_cv_sys_global_symbol_to_c_name_address \ ! sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ ! old_postinstall_cmds old_postuninstall_cmds \ ! _LT_AC_TAGVAR(compiler, $1) \ ! _LT_AC_TAGVAR(CC, $1) \ ! _LT_AC_TAGVAR(LD, $1) \ ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1) \ ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1) \ ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1) \ ! _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) \ ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1) \ ! _LT_AC_TAGVAR(thread_safe_flag_spec, $1) \ ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1) \ ! _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1) \ ! _LT_AC_TAGVAR(old_archive_cmds, $1) \ ! _LT_AC_TAGVAR(old_archive_from_new_cmds, $1) \ ! _LT_AC_TAGVAR(predep_objects, $1) \ ! _LT_AC_TAGVAR(postdep_objects, $1) \ ! _LT_AC_TAGVAR(predeps, $1) \ ! _LT_AC_TAGVAR(postdeps, $1) \ ! _LT_AC_TAGVAR(compiler_lib_search_path, $1) \ ! _LT_AC_TAGVAR(archive_cmds, $1) \ ! _LT_AC_TAGVAR(archive_expsym_cmds, $1) \ ! _LT_AC_TAGVAR(postinstall_cmds, $1) \ ! _LT_AC_TAGVAR(postuninstall_cmds, $1) \ ! _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) \ ! _LT_AC_TAGVAR(allow_undefined_flag, $1) \ ! _LT_AC_TAGVAR(no_undefined_flag, $1) \ ! _LT_AC_TAGVAR(export_symbols_cmds, $1) \ ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) \ ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1) \ ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1) \ ! _LT_AC_TAGVAR(hardcode_automatic, $1) \ ! _LT_AC_TAGVAR(module_cmds, $1) \ ! _LT_AC_TAGVAR(module_expsym_cmds, $1) \ ! _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1) \ ! _LT_AC_TAGVAR(exclude_expsyms, $1) \ ! _LT_AC_TAGVAR(include_expsyms, $1); do ! ! case $var in ! _LT_AC_TAGVAR(old_archive_cmds, $1) | \ ! _LT_AC_TAGVAR(old_archive_from_new_cmds, $1) | \ ! _LT_AC_TAGVAR(archive_cmds, $1) | \ ! _LT_AC_TAGVAR(archive_expsym_cmds, $1) | \ ! _LT_AC_TAGVAR(module_cmds, $1) | \ ! _LT_AC_TAGVAR(module_expsym_cmds, $1) | \ ! _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) | \ ! _LT_AC_TAGVAR(export_symbols_cmds, $1) | \ ! extract_expsyms_cmds | reload_cmds | finish_cmds | \ ! postinstall_cmds | postuninstall_cmds | \ ! old_postinstall_cmds | old_postuninstall_cmds | \ ! sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) ! # Double-quote double-evaled strings. ! eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ;; *) ! eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" ;; esac + done ! case $lt_echo in ! *'\[$]0 --fallback-echo"') ! lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\[$]0 --fallback-echo"[$]/[$]0 --fallback-echo"/'` ;; ! esac ! ifelse([$1], [], ! [cfgfile="${ofile}T" ! trap "$rm \"$cfgfile\"; exit 1" 1 2 15 ! $rm -f "$cfgfile" ! AC_MSG_NOTICE([creating $ofile])], ! [cfgfile="$ofile"]) ! cat <<__EOF__ >> "$cfgfile" ! ifelse([$1], [], ! [#! $SHELL ! # `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services. ! # Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP) ! # NOTE: Changes made to this file will be lost: look at ltmain.sh. ! # ! # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 ! # Free Software Foundation, Inc. ! # ! # This file is part of GNU Libtool: ! # Originally by Gordon Matzigkeit , 1996 ! # ! # This program is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2 of the License, or ! # (at your option) any later version. ! # ! # This program is distributed in the hope that it will be useful, but ! # WITHOUT ANY WARRANTY; without even the implied warranty of ! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! # General Public License for more details. ! # ! # You should have received a copy of the GNU General Public License ! # along with this program; if not, write to the Free Software ! # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. ! # ! # As a special exception to the GNU General Public License, if you ! # distribute this file as part of a program that contains a ! # configuration script generated by Autoconf, you may include it under ! # the same distribution terms that you use for the rest of that program. ! # A sed program that does not truncate output. ! SED=$lt_SED ! # Sed that helps us avoid accidentally triggering echo(1) options like -n. ! Xsed="$SED -e 1s/^X//" ! # The HP-UX ksh and POSIX shell print the target directory to stdout ! # if CDPATH is set. ! (unset CDPATH) >/dev/null 2>&1 && unset CDPATH ! # The names of the tagged configurations supported by this script. ! available_tags= ! # ### BEGIN LIBTOOL CONFIG], ! [# ### BEGIN LIBTOOL TAG CONFIG: $tagname]) ! # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: ! # Shell to use when invoking shell scripts. ! SHELL=$lt_SHELL ! # Whether or not to build shared libraries. ! build_libtool_libs=$enable_shared ! # Whether or not to build static libraries. ! build_old_libs=$enable_static ! # Whether or not to add -lc for building shared libraries. ! build_libtool_need_lc=$_LT_AC_TAGVAR(archive_cmds_need_lc, $1) ! # Whether or not to disallow shared libs when runtime libs are static ! allow_libtool_libs_with_static_runtimes=$_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1) ! # Whether or not to optimize for fast installation. ! fast_install=$enable_fast_install ! # The host system. ! host_alias=$host_alias ! host=$host ! host_os=$host_os ! # The build system. ! build_alias=$build_alias ! build=$build ! build_os=$build_os ! # An echo program that does not interpret backslashes. ! echo=$lt_echo ! # The archiver. ! AR=$lt_AR ! AR_FLAGS=$lt_AR_FLAGS ! # A C compiler. ! LTCC=$lt_LTCC ! # LTCC compiler flags. ! LTCFLAGS=$lt_LTCFLAGS ! # A language-specific compiler. ! CC=$lt_[]_LT_AC_TAGVAR(compiler, $1) ! # Is the compiler the GNU C compiler? ! with_gcc=$_LT_AC_TAGVAR(GCC, $1) ! # An ERE matcher. ! EGREP=$lt_EGREP ! # The linker used to build libraries. ! LD=$lt_[]_LT_AC_TAGVAR(LD, $1) ! # Whether we need hard or soft links. ! LN_S=$lt_LN_S ! # A BSD-compatible nm program. ! NM=$lt_NM ! # A symbol stripping program ! STRIP=$lt_STRIP ! # Used to examine libraries when file_magic_cmd begins "file" ! MAGIC_CMD=$MAGIC_CMD ! # Used on cygwin: DLL creation program. ! DLLTOOL="$DLLTOOL" ! # Used on cygwin: object dumper. ! OBJDUMP="$OBJDUMP" ! # Used on cygwin: assembler. ! AS="$AS" ! # The name of the directory that contains temporary libtool files. ! objdir=$objdir ! # How to create reloadable object files. ! reload_flag=$lt_reload_flag ! reload_cmds=$lt_reload_cmds ! # How to pass a linker flag through the compiler. ! wl=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) ! # Object file suffix (normally "o"). ! objext="$ac_objext" ! # Old archive suffix (normally "a"). ! libext="$libext" ! # Shared library suffix (normally ".so"). ! shrext_cmds='$shrext_cmds' ! # Executable file suffix (normally ""). ! exeext="$exeext" ! # Additional compiler flags for building library objects. ! pic_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) ! pic_mode=$pic_mode ! # What is the maximum length of a command? ! max_cmd_len=$lt_cv_sys_max_cmd_len ! # Does compiler simultaneously support -c and -o options? ! compiler_c_o=$lt_[]_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1) ! # Must we lock files when doing compilation? ! need_locks=$lt_need_locks ! # Do we need the lib prefix for modules? ! need_lib_prefix=$need_lib_prefix ! # Do we need a version for libraries? ! need_version=$need_version ! # Whether dlopen is supported. ! dlopen_support=$enable_dlopen ! # Whether dlopen of programs is supported. ! dlopen_self=$enable_dlopen_self ! # Whether dlopen of statically linked programs is supported. ! dlopen_self_static=$enable_dlopen_self_static ! # Compiler flag to prevent dynamic linking. ! link_static_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_static, $1) ! # Compiler flag to turn off builtin functions. ! no_builtin_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) ! # Compiler flag to allow reflexive dlopens. ! export_dynamic_flag_spec=$lt_[]_LT_AC_TAGVAR(export_dynamic_flag_spec, $1) ! # Compiler flag to generate shared objects directly from archives. ! whole_archive_flag_spec=$lt_[]_LT_AC_TAGVAR(whole_archive_flag_spec, $1) ! # Compiler flag to generate thread-safe objects. ! thread_safe_flag_spec=$lt_[]_LT_AC_TAGVAR(thread_safe_flag_spec, $1) ! # Library versioning type. ! version_type=$version_type ! # Format of library name prefix. ! libname_spec=$lt_libname_spec ! # List of archive names. First name is the real one, the rest are links. ! # The last name is the one that the linker finds with -lNAME. ! library_names_spec=$lt_library_names_spec ! # The coded name of the library, if different from the real name. ! soname_spec=$lt_soname_spec ! # Commands used to build and install an old-style archive. ! RANLIB=$lt_RANLIB ! old_archive_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_cmds, $1) ! old_postinstall_cmds=$lt_old_postinstall_cmds ! old_postuninstall_cmds=$lt_old_postuninstall_cmds ! # Create an old-style archive from a shared archive. ! old_archive_from_new_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_new_cmds, $1) ! # Create a temporary old-style archive to link instead of a shared archive. ! old_archive_from_expsyms_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) ! # Commands used to build and install a shared archive. ! archive_cmds=$lt_[]_LT_AC_TAGVAR(archive_cmds, $1) ! archive_expsym_cmds=$lt_[]_LT_AC_TAGVAR(archive_expsym_cmds, $1) ! postinstall_cmds=$lt_postinstall_cmds ! postuninstall_cmds=$lt_postuninstall_cmds ! # Commands used to build a loadable module (assumed same as above if empty) ! module_cmds=$lt_[]_LT_AC_TAGVAR(module_cmds, $1) ! module_expsym_cmds=$lt_[]_LT_AC_TAGVAR(module_expsym_cmds, $1) ! # Commands to strip libraries. ! old_striplib=$lt_old_striplib ! striplib=$lt_striplib ! # Dependencies to place before the objects being linked to create a ! # shared library. ! predep_objects=$lt_[]_LT_AC_TAGVAR(predep_objects, $1) ! # Dependencies to place after the objects being linked to create a ! # shared library. ! postdep_objects=$lt_[]_LT_AC_TAGVAR(postdep_objects, $1) ! # Dependencies to place before the objects being linked to create a ! # shared library. ! predeps=$lt_[]_LT_AC_TAGVAR(predeps, $1) ! # Dependencies to place after the objects being linked to create a ! # shared library. ! postdeps=$lt_[]_LT_AC_TAGVAR(postdeps, $1) ! # The library search path used internally by the compiler when linking ! # a shared library. ! compiler_lib_search_path=$lt_[]_LT_AC_TAGVAR(compiler_lib_search_path, $1) ! # Method to check whether dependent libraries are shared objects. ! deplibs_check_method=$lt_deplibs_check_method + # Command to use when deplibs_check_method == file_magic. + file_magic_cmd=$lt_file_magic_cmd ! # Flag that allows shared libraries with undefined symbols to be built. ! allow_undefined_flag=$lt_[]_LT_AC_TAGVAR(allow_undefined_flag, $1) ! # Flag that forces no undefined symbols. ! no_undefined_flag=$lt_[]_LT_AC_TAGVAR(no_undefined_flag, $1) ! # Commands used to finish a libtool library installation in a directory. ! finish_cmds=$lt_finish_cmds ! # Same as above, but a single script fragment to be evaled but not shown. ! finish_eval=$lt_finish_eval ! # Take the output of nm and produce a listing of raw symbols and C names. ! global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe ! # Transform the output of nm in a proper C declaration ! global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl ! # Transform the output of nm in a C name address pair ! global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address ! # This is the shared library runtime path variable. ! runpath_var=$runpath_var ! # This is the shared library path variable. ! shlibpath_var=$shlibpath_var ! # Is shlibpath searched before the hard-coded library search path? ! shlibpath_overrides_runpath=$shlibpath_overrides_runpath ! # How to hardcode a shared library path into an executable. ! hardcode_action=$_LT_AC_TAGVAR(hardcode_action, $1) ! # Whether we should hardcode library paths into libraries. ! hardcode_into_libs=$hardcode_into_libs ! # Flag to hardcode \$libdir into a binary during linking. ! # This must work even if \$libdir does not exist. ! hardcode_libdir_flag_spec=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) + # If ld is used when linking, flag to hardcode \$libdir into + # a binary during linking. This must work even if \$libdir does + # not exist. + hardcode_libdir_flag_spec_ld=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1) ! # Whether we need a single -rpath flag with a separated argument. ! hardcode_libdir_separator=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_separator, $1) ! # Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the ! # resulting binary. ! hardcode_direct=$_LT_AC_TAGVAR(hardcode_direct, $1) ! # Set to yes if using the -LDIR flag during linking hardcodes DIR into the ! # resulting binary. ! hardcode_minus_L=$_LT_AC_TAGVAR(hardcode_minus_L, $1) ! # Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into ! # the resulting binary. ! hardcode_shlibpath_var=$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1) ! # Set to yes if building a shared library automatically hardcodes DIR into the library ! # and all subsequent libraries and executables linked against it. ! hardcode_automatic=$_LT_AC_TAGVAR(hardcode_automatic, $1) ! # Variables whose values should be saved in libtool wrapper scripts and ! # restored at relink time. ! variables_saved_for_relink="$variables_saved_for_relink" ! # Whether libtool must link a program against all its dependency libraries. ! link_all_deplibs=$_LT_AC_TAGVAR(link_all_deplibs, $1) ! # Compile-time system search path for libraries ! sys_lib_search_path_spec=$lt_sys_lib_search_path_spec ! # Run-time system search path for libraries ! sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec + # Fix the shell variable \$srcfile for the compiler. + fix_srcfile_path="$_LT_AC_TAGVAR(fix_srcfile_path, $1)" ! # Set to yes if exported symbols are required. ! always_export_symbols=$_LT_AC_TAGVAR(always_export_symbols, $1) ! # The commands to list exported symbols. ! export_symbols_cmds=$lt_[]_LT_AC_TAGVAR(export_symbols_cmds, $1) ! # The commands to extract the exported symbol list from a shared archive. ! extract_expsyms_cmds=$lt_extract_expsyms_cmds ! # Symbols that should not be listed in the preloaded symbols. ! exclude_expsyms=$lt_[]_LT_AC_TAGVAR(exclude_expsyms, $1) ! # Symbols that must always be exported. ! include_expsyms=$lt_[]_LT_AC_TAGVAR(include_expsyms, $1) ! ifelse([$1],[], ! [# ### END LIBTOOL CONFIG], ! [# ### END LIBTOOL TAG CONFIG: $tagname]) ! __EOF__ ! ifelse([$1],[], [ ! case $host_os in ! aix3*) ! cat <<\EOF >> "$cfgfile" ! # AIX sometimes has problems with the GCC collect2 program. For some ! # reason, if we set the COLLECT_NAMES environment variable, the problems ! # vanish in a puff of smoke. ! if test "X${COLLECT_NAMES+set}" != Xset; then ! COLLECT_NAMES= ! export COLLECT_NAMES ! fi ! EOF ! ;; ! esac ! # We use sed instead of cat because bash on DJGPP gets confused if ! # if finds mixed CR/LF and LF-only lines. Since sed operates in ! # text mode, it properly converts lines to CR/LF. This bash problem ! # is reportedly fixed, but why not run on old versions too? ! sed '$q' "$ltmain" >> "$cfgfile" || (rm -f "$cfgfile"; exit 1) ! mv -f "$cfgfile" "$ofile" || \ ! (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") ! chmod +x "$ofile" ! ]) ! else ! # If there is no Makefile yet, we rely on a make rule to execute ! # `config.status --recheck' to rerun these tests and create the ! # libtool script then. ! ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'` ! if test -f "$ltmain_in"; then ! test -f Makefile && make "$ltmain" ! fi ! fi ! ])# AC_LIBTOOL_CONFIG ! # AC_LIBTOOL_PROG_COMPILER_NO_RTTI([TAGNAME]) ! # ------------------------------------------- ! AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], ! [AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl ! _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= ! if test "$GCC" = yes; then ! _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ! AC_LIBTOOL_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], ! lt_cv_prog_compiler_rtti_exceptions, ! [-fno-rtti -fno-exceptions], [], ! [_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) ! fi ! ])# AC_LIBTOOL_PROG_COMPILER_NO_RTTI ! # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE ! # --------------------------------- ! AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], ! [AC_REQUIRE([AC_CANONICAL_HOST]) ! AC_REQUIRE([AC_PROG_NM]) ! AC_REQUIRE([AC_OBJEXT]) ! # Check for command to grab the raw symbol name followed by C symbol from nm. ! AC_MSG_CHECKING([command to parse $NM output from $compiler object]) ! AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], ! [ ! # These are sane defaults that work on at least a few old systems. ! # [They come from Ultrix. What could be older than Ultrix?!! ;)] ! # Character class describing NM global symbol codes. ! symcode='[[BCDEGRST]]' ! # Regexp to match symbols that can be accessed directly from C. ! sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' ! # Transform an extracted symbol line into a proper C declaration ! lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern int \1;/p'" ! # Transform an extracted symbol line into symbol name and symbol address ! lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" ! # Define system-specific variables. ! case $host_os in ! aix*) ! symcode='[[BCDT]]' ! ;; ! cygwin* | mingw* | pw32*) ! symcode='[[ABCDGISTW]]' ! ;; ! hpux*) # Its linker distinguishes data from code symbols ! if test "$host_cpu" = ia64; then ! symcode='[[ABCDEGRST]]' ! fi ! lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" ! lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" ! ;; ! linux*) ! if test "$host_cpu" = ia64; then ! symcode='[[ABCDGIRSTW]]' ! lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" ! lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" ! fi ! ;; ! irix* | nonstopux*) ! symcode='[[BCDEGRST]]' ! ;; ! osf*) ! symcode='[[BCDEGQRST]]' ! ;; ! solaris*) ! symcode='[[BDRT]]' ! ;; ! sco3.2v5*) ! symcode='[[DT]]' ! ;; ! sysv4.2uw2*) ! symcode='[[DT]]' ! ;; ! sysv5* | sco5v6* | unixware* | OpenUNIX*) ! symcode='[[ABDT]]' ! ;; ! sysv4) ! symcode='[[DFNSTU]]' ! ;; ! esac ! # Handle CRLF in mingw tool chain ! opt_cr= ! case $build_os in ! mingw*) ! opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp ! ;; ! esac ! # If we're using GNU nm, then use its standard symbol codes. ! case `$NM -V 2>&1` in ! *GNU* | *'with BFD'*) ! symcode='[[ABCDGIRSTW]]' ;; ! esac ! # Try without a prefix undercore, then with it. ! for ac_symprfx in "" "_"; do ! # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. ! symxfrm="\\1 $ac_symprfx\\2 \\2" ! # Write the raw and C identifiers. ! lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" ! # Check to see that the pipe works correctly. ! pipe_works=no ! rm -f conftest* ! cat > conftest.$ac_ext < $nlist) && test -s "$nlist"; then ! # Try sorting and uniquifying the output. ! if sort "$nlist" | uniq > "$nlist"T; then ! mv -f "$nlist"T "$nlist" ! else ! rm -f "$nlist"T ! fi ! # Make sure that we snagged all the symbols we need. ! if grep ' nm_test_var$' "$nlist" >/dev/null; then ! if grep ' nm_test_func$' "$nlist" >/dev/null; then ! cat < conftest.$ac_ext ! #ifdef __cplusplus ! extern "C" { ! #endif ! EOF ! # Now generate the symbol file. ! eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | grep -v main >> conftest.$ac_ext' ! cat <> conftest.$ac_ext ! #if defined (__STDC__) && __STDC__ ! # define lt_ptr_t void * ! #else ! # define lt_ptr_t char * ! # define const ! #endif ! /* The mapping between symbol names and symbols. */ ! const struct { ! const char *name; ! lt_ptr_t address; ! } ! lt_preloaded_symbols[[]] = ! { ! EOF ! $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (lt_ptr_t) \&\2},/" < "$nlist" | grep -v main >> conftest.$ac_ext ! cat <<\EOF >> conftest.$ac_ext ! {0, (lt_ptr_t) 0} ! }; ! #ifdef __cplusplus ! } ! #endif ! EOF ! # Now try linking the two files. ! mv conftest.$ac_objext conftstm.$ac_objext ! lt_save_LIBS="$LIBS" ! lt_save_CFLAGS="$CFLAGS" ! LIBS="conftstm.$ac_objext" ! CFLAGS="$CFLAGS$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" ! if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then ! pipe_works=yes ! fi ! LIBS="$lt_save_LIBS" ! CFLAGS="$lt_save_CFLAGS" ! else ! echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD ! fi ! else ! echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD ! fi ! else ! echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD ! fi ! else ! echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD ! cat conftest.$ac_ext >&5 ! fi ! rm -f conftest* conftst* ! # Do not use the global_symbol_pipe unless it works. ! if test "$pipe_works" = yes; then ! break ! else ! lt_cv_sys_global_symbol_pipe= ! fi ! done ! ]) ! if test -z "$lt_cv_sys_global_symbol_pipe"; then ! lt_cv_sys_global_symbol_to_cdecl= ! fi ! if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then ! AC_MSG_RESULT(failed) ! else ! AC_MSG_RESULT(ok) ! fi ! ]) # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE ! # AC_LIBTOOL_PROG_COMPILER_PIC([TAGNAME]) ! # --------------------------------------- ! AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC], ! [_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)= ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)= ! AC_MSG_CHECKING([for $compiler option to produce PIC]) ! ifelse([$1],[CXX],[ ! # C++ specific cases for pic, static, wl, etc. ! if test "$GXX" = yes; then ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' ! case $host_os in ! aix*) ! # All AIX code is PIC. ! if test "$host_cpu" = ia64; then ! # AIX 5 now supports IA64 processor ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ! fi ! ;; ! amigaos*) ! # FIXME: we need at least 68020 code to build shared libraries, but ! # adding the `-m68020' flag to GCC prevents building anything better, ! # like `-m68040'. ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ! ;; ! beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) ! # PIC is the default for these OSes. ! ;; ! mingw* | os2* | pw32*) ! # This hack is so that the source file can tell whether it is being ! # built for inclusion in a dll (and should export symbols for example). ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' ! ;; ! darwin* | rhapsody*) ! # PIC is the default on this platform ! # Common symbols not allowed in MH_DYLIB files ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ! ;; ! *djgpp*) ! # DJGPP does not support shared libraries at all ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= ! ;; ! interix3*) ! # Interix 3.x gcc -fpic/-fPIC options generate broken code. ! # Instead, we relocate shared libraries at runtime. ! ;; ! sysv4*MP*) ! if test -d /usr/nec; then ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic ! fi ! ;; ! hpux*) ! # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but ! # not for PA HP-UX. ! case $host_cpu in ! hppa*64*|ia64*) ! ;; ! *) ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ! ;; ! esac ! ;; ! *) ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ! ;; ! esac ! else ! case $host_os in ! aix4* | aix5*) ! # All AIX code is PIC. ! if test "$host_cpu" = ia64; then ! # AIX 5 now supports IA64 processor ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ! else ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' ! fi ! ;; ! chorus*) ! case $cc_basename in ! cxch68*) ! # Green Hills C++ Compiler ! # _LT_AC_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ! ;; ! esac ! ;; ! darwin*) ! # PIC is the default on this platform ! # Common symbols not allowed in MH_DYLIB files ! case $cc_basename in ! xlc*) ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon' ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ! ;; ! esac ! ;; ! dgux*) ! case $cc_basename in ! ec++*) ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ! ;; ! ghcx*) ! # Green Hills C++ Compiler ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ! ;; ! *) ! ;; ! esac ! ;; ! freebsd* | kfreebsd*-gnu | dragonfly*) ! # FreeBSD uses GNU C++ ! ;; ! hpux9* | hpux10* | hpux11*) ! case $cc_basename in ! CC*) ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' ! if test "$host_cpu" != ia64; then ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ! fi ! ;; ! aCC*) ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' ! case $host_cpu in ! hppa*64*|ia64*) ! # +Z the default ! ;; ! *) ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ! ;; ! esac ! ;; ! *) ! ;; ! esac ! ;; ! interix*) ! # This is c89, which is MS Visual C++ (no shared libs) ! # Anyone wants to do a port? ! ;; ! irix5* | irix6* | nonstopux*) ! case $cc_basename in ! CC*) ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ! # CC pic flag -KPIC is the default. ! ;; ! *) ! ;; ! esac ! ;; ! linux*) ! case $cc_basename in ! KCC*) ! # KAI C++ Compiler ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ! ;; ! icpc* | ecpc*) ! # Intel C++ ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' ! ;; ! pgCC*) ! # Portland Group C++ compiler. ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ! ;; ! cxx*) ! # Compaq C++ ! # Make sure the PIC flag is empty. It appears that all Alpha ! # Linux and Compaq Tru64 Unix objects are PIC. ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ! ;; ! *) ! ;; ! esac ! ;; ! lynxos*) ! ;; ! m88k*) ! ;; ! mvs*) ! case $cc_basename in ! cxx*) ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' ! ;; ! *) ! ;; ! esac ! ;; ! netbsd*) ! ;; ! osf3* | osf4* | osf5*) ! case $cc_basename in ! KCC*) ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' ! ;; ! RCC*) ! # Rational C++ 2.4.1 ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ! ;; ! cxx*) ! # Digital/Compaq C++ ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ! # Make sure the PIC flag is empty. It appears that all Alpha ! # Linux and Compaq Tru64 Unix objects are PIC. ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ! ;; ! *) ! ;; ! esac ! ;; ! psos*) ! ;; ! solaris*) ! case $cc_basename in ! CC*) ! # Sun C++ 4.2, 5.x and Centerline C++ ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ! ;; ! gcx*) ! # Green Hills C++ Compiler ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' ! ;; ! *) ! ;; ! esac ! ;; ! sunos4*) ! case $cc_basename in ! CC*) ! # Sun C++ 4.x ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ! ;; ! lcc*) ! # Lucid ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ! ;; ! *) ! ;; ! esac ! ;; ! tandem*) ! case $cc_basename in ! NCC*) ! # NonStop-UX NCC 3.20 ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ! ;; ! *) ! ;; ! esac ! ;; ! sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) ! case $cc_basename in ! CC*) ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ! ;; ! esac ! ;; ! vxworks*) ! ;; ! *) ! _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ! ;; ! esac ! fi ! ], ! [ ! if test "$GCC" = yes; then ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' ! case $host_os in ! aix*) ! # All AIX code is PIC. ! if test "$host_cpu" = ia64; then ! # AIX 5 now supports IA64 processor ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ! fi ! ;; ! amigaos*) ! # FIXME: we need at least 68020 code to build shared libraries, but ! # adding the `-m68020' flag to GCC prevents building anything better, ! # like `-m68040'. ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ! ;; ! beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) ! # PIC is the default for these OSes. ! ;; ! mingw* | pw32* | os2*) ! # This hack is so that the source file can tell whether it is being ! # built for inclusion in a dll (and should export symbols for example). ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' ! ;; ! darwin* | rhapsody*) ! # PIC is the default on this platform ! # Common symbols not allowed in MH_DYLIB files ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ! ;; ! interix3*) ! # Interix 3.x gcc -fpic/-fPIC options generate broken code. ! # Instead, we relocate shared libraries at runtime. ! ;; ! msdosdjgpp*) ! # Just because we use GCC doesn't mean we suddenly get shared libraries ! # on systems that don't support them. ! _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ! enable_shared=no ! ;; ! sysv4*MP*) ! if test -d /usr/nec; then ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic ! fi ! ;; ! hpux*) ! # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but ! # not for PA HP-UX. ! case $host_cpu in ! hppa*64*|ia64*) ! # +Z the default ! ;; ! *) ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ! ;; ! esac ! ;; ! *) ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ! ;; ! esac ! else ! # PORTME Check for flag to pass linker flags through the system compiler. ! case $host_os in ! aix*) ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ! if test "$host_cpu" = ia64; then ! # AIX 5 now supports IA64 processor ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ! else ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' ! fi ! ;; ! darwin*) ! # PIC is the default on this platform ! # Common symbols not allowed in MH_DYLIB files ! case $cc_basename in ! xlc*) ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon' ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ! ;; ! esac ! ;; ! mingw* | pw32* | os2*) ! # This hack is so that the source file can tell whether it is being ! # built for inclusion in a dll (and should export symbols for example). ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' ! ;; ! hpux9* | hpux10* | hpux11*) ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ! # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but ! # not for PA HP-UX. ! case $host_cpu in ! hppa*64*|ia64*) ! # +Z the default ! ;; ! *) ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ! ;; ! esac ! # Is there a better lt_prog_compiler_static that works with the bundled CC? ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' ! ;; ! irix5* | irix6* | nonstopux*) ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ! # PIC (with -KPIC) is the default. ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ! ;; ! newsos6) ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ! ;; ! linux*) ! case $cc_basename in ! icc* | ecc*) ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' ! ;; ! pgcc* | pgf77* | pgf90* | pgf95*) ! # Portland Group compilers (*not* the Pentium gcc compiler, ! # which looks to be a dead project) ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ! ;; ! ccc*) ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ! # All Alpha code is PIC. ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ! ;; ! esac ! ;; ! osf3* | osf4* | osf5*) ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ! # All OSF/1 code is PIC. ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ! ;; + solaris*) + _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' + _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' + case $cc_basename in + f77* | f90* | f95*) + _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; + *) + _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; + esac + ;; ! sunos4*) ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ! ;; ! sysv4 | sysv4.2uw2* | sysv4.3*) ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ! ;; ! sysv4*MP*) ! if test -d /usr/nec ;then ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ! fi ! ;; ! sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) ! _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ! ;; + unicos*) + _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' + _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no + ;; ! uts4*) ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ! _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ! ;; ! *) ! _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ! ;; ! esac ! fi ! ]) ! AC_MSG_RESULT([$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)]) ! # ! # Check to make sure the PIC flag actually works. ! # ! if test -n "$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)"; then ! AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) works], ! _LT_AC_TAGVAR(lt_prog_compiler_pic_works, $1), ! [$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])], [], ! [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) in ! "" | " "*) ;; ! *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)" ;; ! esac], ! [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= ! _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) ! fi ! case $host_os in ! # For platforms which do not support PIC, -DPIC is meaningless: ! *djgpp*) ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= ! ;; ! *) ! _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])" ! ;; ! esac ! # ! # Check to make sure the static flag actually works. ! # ! wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_AC_TAGVAR(lt_prog_compiler_static, $1)\" ! AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], ! _LT_AC_TAGVAR(lt_prog_compiler_static_works, $1), ! $lt_tmp_static_flag, ! [], ! [_LT_AC_TAGVAR(lt_prog_compiler_static, $1)=]) ! ]) ! # AC_LIBTOOL_PROG_LD_SHLIBS([TAGNAME]) ! # ------------------------------------ ! # See if the linker supports building shared libraries. ! AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS], ! [AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) ! ifelse([$1],[CXX],[ ! _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ! case $host_os in ! aix4* | aix5*) ! # If we're using GNU nm, then we don't want the "-C" option. ! # -C means demangle to AIX nm, but means don't demangle with GNU nm ! if $NM -V 2>&1 | grep 'GNU' > /dev/null; then ! _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' ! else ! _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' ! fi ! ;; ! pw32*) ! _LT_AC_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" ;; ! cygwin* | mingw*) ! _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]] /s/.* \([[^ ]]*\)/\1 DATA/;/^.* __nm__/s/^.* __nm__\([[^ ]]*\) [[^ ]]*/\1 DATA/;/^I /d;/^[[AITW]] /s/.* //'\'' | sort | uniq > $export_symbols' ;; ! *) ! _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; ! esac ! ],[ ! runpath_var= ! _LT_AC_TAGVAR(allow_undefined_flag, $1)= ! _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no ! _LT_AC_TAGVAR(archive_cmds, $1)= ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)= ! _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)= ! _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1)= ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= ! _LT_AC_TAGVAR(thread_safe_flag_spec, $1)= ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= ! _LT_AC_TAGVAR(hardcode_direct, $1)=no ! _LT_AC_TAGVAR(hardcode_minus_L, $1)=no ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported ! _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown ! _LT_AC_TAGVAR(hardcode_automatic, $1)=no ! _LT_AC_TAGVAR(module_cmds, $1)= ! _LT_AC_TAGVAR(module_expsym_cmds, $1)= ! _LT_AC_TAGVAR(always_export_symbols, $1)=no ! _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ! # include_expsyms should be a list of space-separated symbols to be *always* ! # included in the symbol list ! _LT_AC_TAGVAR(include_expsyms, $1)= ! # exclude_expsyms can be an extended regexp of symbols to exclude ! # it will be wrapped by ` (' and `)$', so one must not match beginning or ! # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', ! # as well as any symbol that contains `d'. ! _LT_AC_TAGVAR(exclude_expsyms, $1)="_GLOBAL_OFFSET_TABLE_" ! # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out ! # platforms (ab)use it in PIC code, but their linkers get confused if ! # the symbol is explicitly referenced. Since portable code cannot ! # rely on this symbol name, it's probably fine to never include it in ! # preloaded symbol tables. ! extract_expsyms_cmds= ! # Just being paranoid about ensuring that cc_basename is set. ! _LT_CC_BASENAME([$compiler]) ! case $host_os in ! cygwin* | mingw* | pw32*) ! # FIXME: the MSVC++ port hasn't been tested in a loooong time ! # When not using gcc, we currently assume that we are using ! # Microsoft Visual C++. ! if test "$GCC" != yes; then ! with_gnu_ld=no ! fi ! ;; ! interix*) ! # we just hope/assume this is gcc and not c89 (= MSVC++) ! with_gnu_ld=yes ! ;; ! openbsd*) ! with_gnu_ld=no ! ;; ! esac ! _LT_AC_TAGVAR(ld_shlibs, $1)=yes ! if test "$with_gnu_ld" = yes; then ! # If archive_cmds runs LD, not CC, wlarc should be empty ! wlarc='${wl}' ! # Set some defaults for GNU ld with shared library support. These ! # are reset later if shared libraries are not supported. Putting them ! # here allows them to be overridden if necessary. ! runpath_var=LD_RUN_PATH ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' ! # ancient GNU ld didn't support --whole-archive et. al. ! if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' ! else ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= ! fi ! supports_anon_versioning=no ! case `$LD -v 2>/dev/null` in ! *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 ! *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... ! *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... ! *\ 2.11.*) ;; # other 2.11 versions ! *) supports_anon_versioning=yes ;; ! esac ! # See if GNU ld supports shared libraries. ! case $host_os in ! aix3* | aix4* | aix5*) ! # On AIX/PPC, the GNU linker is very broken ! if test "$host_cpu" != ia64; then ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! cat <&2 ! *** Warning: the GNU linker, at least up to release 2.9.1, is reported ! *** to be unable to reliably create shared libraries on AIX. ! *** Therefore, libtool is disabling shared libraries support. If you ! *** really care for shared libraries, you may want to modify your PATH ! *** so that a non-GNU linker is found, and then restart. EOF fi + ;; ! amigaos*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' ! _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes ! # Samuel A. Falvo II reports ! # that the semantics of dynamic libraries on AmigaOS, at least up ! # to version 4, is to share data among multiple programs linked ! # with the same dynamic library. Since this doesn't match the ! # behavior of shared libraries on other platforms, we can't use ! # them. ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! beos*) ! if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported ! # Joseph Beckenbach says some releases of gcc ! # support --undefined. This deserves some investigation. FIXME ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' ! else ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! fi ! ;; ! cygwin* | mingw* | pw32*) ! # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, ! # as there is no search path for DLLs. ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported ! _LT_AC_TAGVAR(always_export_symbols, $1)=no ! _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ! _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]] /s/.* \([[^ ]]*\)/\1 DATA/'\'' | $SED -e '\''/^[[AITW]] /s/.* //'\'' | sort | uniq > $export_symbols' ! if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' ! # If the export-symbols file already is a .def file (1st line ! # is EXPORTS), use it as is; otherwise, prepend... ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then ! cp $export_symbols $output_objdir/$soname.def; else ! echo EXPORTS > $output_objdir/$soname.def; ! cat $export_symbols >> $output_objdir/$soname.def; ! fi~ ! $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ! _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ! ;; ! interix3*) ! _LT_AC_TAGVAR(hardcode_direct, $1)=no ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ! # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. ! # Instead, shared libraries are loaded at an image base (0x10000000 by ! # default) and relocated if they conflict, which is a slow very memory ! # consuming and fragmenting process. To avoid this, we pick a random, ! # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link ! # time. Moving up from 0x10000000 also allows more sbrk(2) space. ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ! ;; ! linux*) ! if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then ! tmp_addflag= ! case $cc_basename,$host_cpu in ! pgcc*) # Portland Group C compiler ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' ! tmp_addflag=' $pic_flag' ! ;; ! pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive' ! tmp_addflag=' $pic_flag -Mnomain' ;; ! ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 ! tmp_addflag=' -i_dynamic' ;; ! efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 ! tmp_addflag=' -i_dynamic -nofor_main' ;; ! ifc* | ifort*) # Intel Fortran compiler ! tmp_addflag=' -nofor_main' ;; ! esac ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' ! if test $supports_anon_versioning = yes; then ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $output_objdir/$libname.ver~ ! cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ ! $echo "local: *; };" >> $output_objdir/$libname.ver~ ! $CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' ! fi ! else ! _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; ! ! netbsd*) ! if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' ! wlarc= ! else ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ! fi ;; ! ! solaris*) ! if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! cat <&2 ! ! *** Warning: The releases 2.8.* of the GNU linker cannot reliably ! *** create shared libraries on Solaris systems. Therefore, libtool ! *** is disabling shared libraries support. We urge you to upgrade GNU ! *** binutils to release 2.9.1 or newer. Another option is to modify ! *** your PATH or compiler configuration so that the native linker is ! *** used, and then restart. ! ! EOF ! elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ! else ! _LT_AC_TAGVAR(ld_shlibs, $1)=no fi ;; ! ! sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) ! case `$LD -v 2>&1` in ! *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! cat <<_LT_EOF 1>&2 ! ! *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not ! *** reliably create shared libraries on SCO systems. Therefore, libtool ! *** is disabling shared libraries support. We urge you to upgrade GNU ! *** binutils to release 2.16.91.0.3 or newer. Another option is to modify ! *** your PATH or compiler configuration so that the native linker is ! *** used, and then restart. ! ! _LT_EOF ;; ! *) ! if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib' ! else ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! fi ;; esac ;; ! ! sunos4*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' ! wlarc= ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! ;; ! ! *) ! if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ! else ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! fi ;; esac + if test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no; then + runpath_var= + _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= + _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= + _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= + fi + else + # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in ! aix3*) ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported ! _LT_AC_TAGVAR(always_export_symbols, $1)=yes ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' ! # Note: this linker hardcodes the directories in LIBPATH if there ! # are no directories specified by -L. ! _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes ! if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then ! # Neither direct hardcoding nor static linking is supported with a ! # broken collect2. ! _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported fi ;; ! aix4* | aix5*) ! if test "$host_cpu" = ia64; then ! # On IA64, the linker does run time linking by default, so we don't ! # have to do anything special. ! aix_use_runtimelinking=no ! exp_sym_flag='-Bexport' ! no_entry_flag="" ! else ! # If we're using GNU nm, then we don't want the "-C" option. ! # -C means demangle to AIX nm, but means don't demangle with GNU nm ! if $NM -V 2>&1 | grep 'GNU' > /dev/null; then ! _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' ! else ! _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' ! fi ! aix_use_runtimelinking=no ! # Test if we are trying to use run time linking or normal ! # AIX style linking. If -brtl is somewhere in LDFLAGS, we ! # need to do runtime linking. ! case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*) ! for ld_flag in $LDFLAGS; do ! if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then ! aix_use_runtimelinking=yes ! break ! fi ! done ! ;; ! esac ! exp_sym_flag='-bexport' ! no_entry_flag='-bnoentry' ! fi ! # When large executables or shared objects are built, AIX ld can ! # have problems creating the table of contents. If linking a library ! # or program results in "error TOC overflow" add -mminimal-toc to ! # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not ! # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. ! ! _LT_AC_TAGVAR(archive_cmds, $1)='' ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' ! _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ! ! if test "$GCC" = yes; then ! case $host_os in aix4.[[012]]|aix4.[[012]].*) ! # We only want to do this on AIX 4.2 and lower, the check ! # below for broken collect2 doesn't work under 4.3+ ! collect2name=`${CC} -print-prog-name=collect2` ! if test -f "$collect2name" && \ ! strings "$collect2name" | grep resolve_lib_name >/dev/null ! then ! # We have reworked collect2 ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! else ! # We have old collect2 ! _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported ! # It fails to find uninstalled libraries when the uninstalled ! # path is not listed in the libpath. Setting hardcode_minus_L ! # to unsupported forces relinking ! _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= ! fi ! ;; ! esac ! shared_flag='-shared' ! if test "$aix_use_runtimelinking" = yes; then ! shared_flag="$shared_flag "'${wl}-G' ! fi ! else ! # not using gcc ! if test "$host_cpu" = ia64; then ! # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release ! # chokes on -Wl,-G. The following line is correct: ! shared_flag='-G' ! else ! if test "$aix_use_runtimelinking" = yes; then ! shared_flag='${wl}-G' ! else ! shared_flag='${wl}-bM:SRE' ! fi ! fi ! fi ! ! # It seems that -bexpall does not export symbols beginning with ! # underscore (_), so it is better to generate a list of symbols to export. ! _LT_AC_TAGVAR(always_export_symbols, $1)=yes ! if test "$aix_use_runtimelinking" = yes; then ! # Warning - without using the other runtime loading flags (-brtl), ! # -berok will link without error, but may produce a broken library. ! _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok' ! # Determine the default libpath from the value encoded in an empty executable. ! _LT_AC_SYS_LIBPATH_AIX ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" ! else ! if test "$host_cpu" = ia64; then ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' ! _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs" ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" ! else ! # Determine the default libpath from the value encoded in an empty executable. ! _LT_AC_SYS_LIBPATH_AIX ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" ! # Warning - without using the other run time loading flags, ! # -berok will link without error, but may produce a broken library. ! _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' ! # Exported symbols can be pulled into shared objects from archives ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience' ! _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes ! # This is similar to how AIX traditionally builds its shared libraries. ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' ! fi ! fi ;; ! amigaos*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/a2ixlibrary.data~$echo "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$echo "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$echo "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$echo "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' ! _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes ! # see comment about different semantics on the GNU ld section ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; ! bsdi[[45]]*) ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic ;; ! cygwin* | mingw* | pw32*) ! # When not using gcc, we currently assume that we are using ! # Microsoft Visual C++. ! # hardcode_libdir_flag_spec is actually meaningless, as there is ! # no search path for DLLs. ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported ! # Tell ltmain to make .lib files, not .a files. ! libext=lib ! # Tell ltmain to make .dll files, not .so files. ! shrext_cmds=".dll" ! # FIXME: Setting linknames here is a bad hack. ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' ! # The linker will automatically build a .lib file if we build a DLL. ! _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='true' ! # FIXME: Should let the user specify the lib program. ! _LT_AC_TAGVAR(old_archive_cmds, $1)='lib /OUT:$oldlib$oldobjs$old_deplibs' ! _LT_AC_TAGVAR(fix_srcfile_path, $1)='`cygpath -w "$srcfile"`' ! _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; ! darwin* | rhapsody*) ! case $host_os in ! rhapsody* | darwin1.[[012]]) ! _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress' ! ;; ! *) # Darwin 1.3 on ! if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then ! _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ! else ! case ${MACOSX_DEPLOYMENT_TARGET} in ! 10.[[012]]) ! _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ! ;; ! 10.*) ! _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup' ! ;; ! esac ! fi ! ;; ! esac ! _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ! _LT_AC_TAGVAR(hardcode_direct, $1)=no ! _LT_AC_TAGVAR(hardcode_automatic, $1)=yes ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='' ! _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ! if test "$GCC" = yes ; then ! output_verbose_link_cmd='echo' ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring' ! _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' ! # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ! _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ! else ! case $cc_basename in ! xlc*) ! output_verbose_link_cmd='echo' ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring' ! _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags' ! # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ! _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' ! ;; ! *) ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; esac + fi ;; ! dgux*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; ! freebsd1*) ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ;; ! # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor ! # support. Future versions do this automatically, but an explicit c++rt0.o ! # does not break anything, and helps significantly (at the cost of a little ! # extra space). ! freebsd2.2*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; ! # Unfortunately, older versions of FreeBSD 2 do not have this feature. ! freebsd2*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; ! # FreeBSD 3 and greater uses gcc -shared to do shared libraries. ! freebsd* | kfreebsd*-gnu | dragonfly*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; ! hpux9*) ! if test "$GCC" = yes; then ! _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' ! else ! _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' ! fi ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! # hardcode_minus_L: Not really in the search PATH, ! # but as the default location of the library. ! _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; ! hpux10*) ! if test "$GCC" = yes -a "$with_gnu_ld" = no; then ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ! else ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' ! fi ! if test "$with_gnu_ld" = no; then ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ! ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ! ! # hardcode_minus_L: Not really in the search PATH, ! # but as the default location of the library. ! _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes ! fi ;; ! hpux11*) ! if test "$GCC" = yes -a "$with_gnu_ld" = no; then ! case $host_cpu in ! hppa*64*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ! ;; ! ia64*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ! ;; ! *) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ! ;; ! esac ! else ! case $host_cpu in ! hppa*64*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ! ;; ! ia64*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ! ;; ! *) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ! ;; ! esac ! fi ! if test "$with_gnu_ld" = no; then ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ! ! case $host_cpu in ! hppa*64*|ia64*) ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' ! _LT_AC_TAGVAR(hardcode_direct, $1)=no ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! ;; ! *) ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ! ! # hardcode_minus_L: Not really in the search PATH, ! # but as the default location of the library. ! _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes ! ;; ! esac ! fi ;; ! irix5* | irix6* | nonstopux*) ! if test "$GCC" = yes; then ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ! else ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir' ! fi ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ! _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ;; ! netbsd*) ! if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out ! else ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi + _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' + _LT_AC_TAGVAR(hardcode_direct, $1)=yes + _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; ! newsos6) ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; ! openbsd*) ! _LT_AC_TAGVAR(hardcode_direct, $1)=yes ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ! else ! case $host_os in ! openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' ! ;; ! *) ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' ! ;; ! esac ! fi ;; ! os2*) ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' ! _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported ! _LT_AC_TAGVAR(archive_cmds, $1)='$echo "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$echo "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$echo DATA >> $output_objdir/$libname.def~$echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~$echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' ! _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; ! osf3*) ! if test "$GCC" = yes; then ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ! else ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' ! fi ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ;; ! osf4* | osf5*) # as osf3* with the addition of -msym flag ! if test "$GCC" = yes; then ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' else ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ ! $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp' ! # Both c and cxx compiler support -rpath directly ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' ! fi ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: ! ;; ! solaris*) ! _LT_AC_TAGVAR(no_undefined_flag, $1)=' -z text' ! if test "$GCC" = yes; then ! wlarc='${wl}' ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ ! $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp' ! else ! wlarc='' ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ ! $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' ! fi ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! case $host_os in ! solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; ! *) ! # The compiler driver will combine linker options so we ! # cannot just pass the convience library names through ! # without $wl, iff we do not link with $LD. ! # Luckily, gcc supports the same syntax we need for Sun Studio. ! # Supported since Solaris 2.6 (maybe 2.5.1?) ! case $wlarc in ! '') ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; ! *) ! _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;; ! esac ;; ! esac ! _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ! ;; ! sunos4*) ! if test "x$host_vendor" = xsequent; then ! # Use $CC to link under sequent, because it throws in some extra .o ! # files that make .init and .fini sections work. ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' ! else ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi + _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' + _LT_AC_TAGVAR(hardcode_direct, $1)=yes + _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes + _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no + ;; + + sysv4) + case $host_vendor in + sni) + _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_AC_TAGVAR(hardcode_direct, $1)=yes # is this really true??? + ;; + siemens) + ## LD is ld it makes a PLAMLIB + ## CC just makes a GrossModule. + _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' + _LT_AC_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' + _LT_AC_TAGVAR(hardcode_direct, $1)=no + ;; + motorola) + _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' + _LT_AC_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie + ;; + esac + runpath_var='LD_RUN_PATH' + _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; ! sysv4.3*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' ;; ! sysv4*MP*) ! if test -d /usr/nec; then ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! runpath_var=LD_RUN_PATH ! hardcode_runpath_var=yes ! _LT_AC_TAGVAR(ld_shlibs, $1)=yes fi ;; ! sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7*) ! _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' ! _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! runpath_var='LD_RUN_PATH' ! if test "$GCC" = yes; then ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; ! sysv5* | sco3.2v5* | sco5v6*) ! # Note: We can NOT use -z defs as we might desire, because we do not ! # link with -lc, and that would cause any symbols used from libc to ! # always be unresolved, which means just about no library would ! # ever link correctly. If we're not using GNU ld we use -z text ! # though, which does catch some bad symbols but isn't as heavy-handed ! # as -z defs. ! _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' ! _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' ! _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' ! _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' ! _LT_AC_TAGVAR(link_all_deplibs, $1)=yes ! _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' ! runpath_var='LD_RUN_PATH' ! if test "$GCC" = yes; then ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' else ! _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' ! _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; ! uts4*) ! _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' ! _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' ! _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no ;; ! *) ! _LT_AC_TAGVAR(ld_shlibs, $1)=no ! ;; ! esac ! fi ! ]) ! AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)]) ! test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no ! # ! # Do we need to explicitly link libc? ! # ! case "x$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)" in ! x|xyes) ! # Assume -lc should be added ! _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes ! if test "$enable_shared" = yes && test "$GCC" = yes; then ! case $_LT_AC_TAGVAR(archive_cmds, $1) in ! *'~'*) ! # FIXME: we may have to deal with multi-command sequences. ! ;; ! '$CC '*) ! # Test whether the compiler implicitly links with -lc since on some ! # systems, -lgcc has to come before -lc. If gcc already passes -lc ! # to ld, don't add -lc before -lgcc. ! AC_MSG_CHECKING([whether -lc should be explicitly linked in]) ! $rm conftest* ! printf "$lt_simple_compile_test_code" > conftest.$ac_ext ! ! if AC_TRY_EVAL(ac_compile) 2>conftest.err; then ! soname=conftest ! lib=conftest ! libobjs=conftest.$ac_objext ! deplibs= ! wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) ! pic_flag=$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) ! compiler_flags=-v ! linker_flags=-v ! verstring= ! output_objdir=. ! libname=conftest ! lt_save_allow_undefined_flag=$_LT_AC_TAGVAR(allow_undefined_flag, $1) ! _LT_AC_TAGVAR(allow_undefined_flag, $1)= ! if AC_TRY_EVAL(_LT_AC_TAGVAR(archive_cmds, $1) 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) ! then ! _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ! else ! _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes ! fi ! _LT_AC_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag else ! cat conftest.err 1>&5 fi + $rm conftest* + AC_MSG_RESULT([$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)]) ;; + esac + fi + ;; + esac + ])# AC_LIBTOOL_PROG_LD_SHLIBS ! # _LT_AC_FILE_LTDLL_C ! # ------------------- ! # Be careful that the start marker always follows a newline. ! AC_DEFUN([_LT_AC_FILE_LTDLL_C], [ ! # /* ltdll.c starts here */ ! # #define WIN32_LEAN_AND_MEAN ! # #include ! # #undef WIN32_LEAN_AND_MEAN ! # #include ! # ! # #ifndef __CYGWIN__ ! # # ifdef __CYGWIN32__ ! # # define __CYGWIN__ __CYGWIN32__ ! # # endif ! # #endif ! # ! # #ifdef __cplusplus ! # extern "C" { ! # #endif ! # BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved); ! # #ifdef __cplusplus ! # } ! # #endif ! # ! # #ifdef __CYGWIN__ ! # #include ! # DECLARE_CYGWIN_DLL( DllMain ); ! # #endif ! # HINSTANCE __hDllInstance_base; ! # ! # BOOL APIENTRY ! # DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved) ! # { ! # __hDllInstance_base = hInst; ! # return TRUE; ! # } ! # /* ltdll.c ends here */ ! ])# _LT_AC_FILE_LTDLL_C ! # _LT_AC_TAGVAR(VARNAME, [TAGNAME]) ! # --------------------------------- ! AC_DEFUN([_LT_AC_TAGVAR], [ifelse([$2], [], [$1], [$1_$2])]) ! # old names ! AC_DEFUN([AM_PROG_LIBTOOL], [AC_PROG_LIBTOOL]) ! AC_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) ! AC_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) ! AC_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) ! AC_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) ! AC_DEFUN([AM_PROG_LD], [AC_PROG_LD]) ! AC_DEFUN([AM_PROG_NM], [AC_PROG_NM]) ! # This is just to silence aclocal about the macro not being used ! ifelse([AC_DISABLE_FAST_INSTALL]) ! AC_DEFUN([LT_AC_PROG_GCJ], ! [AC_CHECK_TOOL(GCJ, gcj, no) ! test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" ! AC_SUBST(GCJFLAGS) ! ]) ! AC_DEFUN([LT_AC_PROG_RC], ! [AC_CHECK_TOOL(RC, windres, no) ! ]) ! # NOTE: This macro has been submitted for inclusion into # ! # GNU Autoconf as AC_PROG_SED. When it is available in # ! # a released version of Autoconf we should remove this # ! # macro and use it instead. # ! # LT_AC_PROG_SED ! # -------------- ! # Check for a fully-functional sed program, that truncates ! # as few characters as possible. Prefer GNU sed if found. ! AC_DEFUN([LT_AC_PROG_SED], ! [AC_MSG_CHECKING([for a sed that does not truncate output]) ! AC_CACHE_VAL(lt_cv_path_SED, ! [# Loop through the user's path and test for sed and gsed. ! # Then use that list of sed's as ones to test for truncation. ! as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ! for as_dir in $PATH ! do ! IFS=$as_save_IFS ! test -z "$as_dir" && as_dir=. ! for lt_ac_prog in sed gsed; do ! for ac_exec_ext in '' $ac_executable_extensions; do ! if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then ! lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" ! fi ! done ! done ! done ! IFS=$as_save_IFS ! lt_ac_max=0 ! lt_ac_count=0 ! # Add /usr/xpg4/bin/sed as it is typically found on Solaris ! # along with /bin/sed that truncates output. ! for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do ! test ! -f $lt_ac_sed && continue ! cat /dev/null > conftest.in ! lt_ac_count=0 ! echo $ECHO_N "0123456789$ECHO_C" >conftest.in ! # Check for GNU sed and select it if it is found. ! if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then ! lt_cv_path_SED=$lt_ac_sed ! break ! fi ! while true; do ! cat conftest.in conftest.in >conftest.tmp ! mv conftest.tmp conftest.in ! cp conftest.in conftest.nl ! echo >>conftest.nl ! $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break ! cmp -s conftest.out conftest.nl || break ! # 10000 chars as input seems more than enough ! test $lt_ac_count -gt 10 && break ! lt_ac_count=`expr $lt_ac_count + 1` ! if test $lt_ac_count -gt $lt_ac_max; then ! lt_ac_max=$lt_ac_count ! lt_cv_path_SED=$lt_ac_sed ! fi ! done ! done ! ]) ! SED=$lt_cv_path_SED ! AC_SUBST([SED]) ! AC_MSG_RESULT([$SED]) ! ]) ! # Copyright (C) 2002, 2003, 2005, 2006 Free Software Foundation, Inc. ! # ! # This file is free software; the Free Software Foundation ! # gives unlimited permission to copy and/or distribute it, ! # with or without modifications, as long as this notice is preserved. ! # AM_AUTOMAKE_VERSION(VERSION) ! # ---------------------------- ! # Automake X.Y traces this macro to ensure aclocal.m4 has been ! # generated from the m4 files accompanying Automake X.Y. ! # (This private macro should not be called outside this file.) ! AC_DEFUN([AM_AUTOMAKE_VERSION], ! [am__api_version='1.10' ! dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to ! dnl require some minimum version. Point them to the right macro. ! m4_if([$1], [1.10], [], ! [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ! ]) ! # _AM_AUTOCONF_VERSION(VERSION) ! # ----------------------------- ! # aclocal traces this macro to find the Autoconf version. ! # This is a private macro too. Using m4_define simplifies ! # the logic in aclocal, which can simply ignore this definition. ! m4_define([_AM_AUTOCONF_VERSION], []) ! # AM_SET_CURRENT_AUTOMAKE_VERSION ! # ------------------------------- ! # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. ! # This function is AC_REQUIREd by AC_INIT_AUTOMAKE. ! AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], ! [AM_AUTOMAKE_VERSION([1.10])dnl ! _AM_AUTOCONF_VERSION(m4_PACKAGE_VERSION)]) ! # AM_AUX_DIR_EXPAND -*- Autoconf -*- ! # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. ! # ! # This file is free software; the Free Software Foundation ! # gives unlimited permission to copy and/or distribute it, ! # with or without modifications, as long as this notice is preserved. ! # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets ! # $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to ! # `$srcdir', `$srcdir/..', or `$srcdir/../..'. ! # ! # Of course, Automake must honor this variable whenever it calls a ! # tool from the auxiliary directory. The problem is that $srcdir (and ! # therefore $ac_aux_dir as well) can be either absolute or relative, ! # depending on how configure is run. This is pretty annoying, since ! # it makes $ac_aux_dir quite unusable in subdirectories: in the top ! # source directory, any form will work fine, but in subdirectories a ! # relative path needs to be adjusted first. ! # ! # $ac_aux_dir/missing ! # fails when called from a subdirectory if $ac_aux_dir is relative ! # $top_srcdir/$ac_aux_dir/missing ! # fails if $ac_aux_dir is absolute, ! # fails when called from a subdirectory in a VPATH build with ! # a relative $ac_aux_dir ! # ! # The reason of the latter failure is that $top_srcdir and $ac_aux_dir ! # are both prefixed by $srcdir. In an in-source build this is usually ! # harmless because $srcdir is `.', but things will broke when you ! # start a VPATH build or use an absolute $srcdir. ! # ! # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, ! # iff we strip the leading $srcdir from $ac_aux_dir. That would be: ! # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` ! # and then we would define $MISSING as ! # MISSING="\${SHELL} $am_aux_dir/missing" ! # This will work as long as MISSING is not called from configure, because ! # unfortunately $(top_srcdir) has no meaning in configure. ! # However there are other variables, like CC, which are often used in ! # configure, and could therefore not use this "fixed" $ac_aux_dir. ! # ! # Another solution, used here, is to always expand $ac_aux_dir to an ! # absolute PATH. The drawback is that using absolute paths prevent a ! # configured tree to be moved without reconfiguration. ! AC_DEFUN([AM_AUX_DIR_EXPAND], ! [dnl Rely on autoconf to set up CDPATH properly. ! AC_PREREQ([2.50])dnl ! # expand $ac_aux_dir to an absolute path ! am_aux_dir=`cd $ac_aux_dir && pwd` ! ]) ! # AM_CONDITIONAL -*- Autoconf -*- ! # Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006 ! # Free Software Foundation, Inc. ! # ! # This file is free software; the Free Software Foundation ! # gives unlimited permission to copy and/or distribute it, ! # with or without modifications, as long as this notice is preserved. ! # serial 8 ! # AM_CONDITIONAL(NAME, SHELL-CONDITION) ! # ------------------------------------- ! # Define a conditional. ! AC_DEFUN([AM_CONDITIONAL], ! [AC_PREREQ(2.52)dnl ! ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], ! [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl ! AC_SUBST([$1_TRUE])dnl ! AC_SUBST([$1_FALSE])dnl ! _AM_SUBST_NOTMAKE([$1_TRUE])dnl ! _AM_SUBST_NOTMAKE([$1_FALSE])dnl ! if $2; then ! $1_TRUE= ! $1_FALSE='#' ! else ! $1_TRUE='#' ! $1_FALSE= ! fi ! AC_CONFIG_COMMANDS_PRE( ! [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then ! AC_MSG_ERROR([[conditional "$1" was never defined. ! Usually this means the macro was only invoked conditionally.]]) ! fi])]) ! # Do all the work for Automake. -*- Autoconf -*- ! # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, ! # 2005, 2006 Free Software Foundation, Inc. ! # ! # This file is free software; the Free Software Foundation ! # gives unlimited permission to copy and/or distribute it, ! # with or without modifications, as long as this notice is preserved. ! # serial 12 ! # This macro actually does too much. Some checks are only needed if ! # your package does certain things. But this isn't really a big deal. ! # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) ! # AM_INIT_AUTOMAKE([OPTIONS]) ! # ----------------------------------------------- ! # The call with PACKAGE and VERSION arguments is the old style ! # call (pre autoconf-2.50), which is being phased out. PACKAGE ! # and VERSION should now be passed to AC_INIT and removed from ! # the call to AM_INIT_AUTOMAKE. ! # We support both call styles for the transition. After ! # the next Automake release, Autoconf can make the AC_INIT ! # arguments mandatory, and then we can depend on a new Autoconf ! # release and drop the old call support. ! AC_DEFUN([AM_INIT_AUTOMAKE], ! [AC_PREREQ([2.60])dnl ! dnl Autoconf wants to disallow AM_ names. We explicitly allow ! dnl the ones we care about. ! m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl ! AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl ! AC_REQUIRE([AC_PROG_INSTALL])dnl ! if test "`cd $srcdir && pwd`" != "`pwd`"; then ! # Use -I$(srcdir) only when $(srcdir) != ., so that make's output ! # is not polluted with repeated "-I." ! AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl ! # test to see if srcdir already configured ! if test -f $srcdir/config.status; then ! AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) ! fi ! fi ! ! # test whether we have cygpath ! if test -z "$CYGPATH_W"; then ! if (cygpath --version) >/dev/null 2>/dev/null; then ! CYGPATH_W='cygpath -w' ! else ! CYGPATH_W=echo ! fi ! fi ! AC_SUBST([CYGPATH_W]) ! # Define the identity of the package. ! dnl Distinguish between old-style and new-style calls. ! m4_ifval([$2], ! [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl ! AC_SUBST([PACKAGE], [$1])dnl ! AC_SUBST([VERSION], [$2])], ! [_AM_SET_OPTIONS([$1])dnl ! dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. ! m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, ! [m4_fatal([AC_INIT should be called with package and version arguments])])dnl ! AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl ! AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl ! _AM_IF_OPTION([no-define],, ! [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) ! AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl ! # Some tools Automake needs. ! AC_REQUIRE([AM_SANITY_CHECK])dnl ! AC_REQUIRE([AC_ARG_PROGRAM])dnl ! AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) ! AM_MISSING_PROG(AUTOCONF, autoconf) ! AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) ! AM_MISSING_PROG(AUTOHEADER, autoheader) ! AM_MISSING_PROG(MAKEINFO, makeinfo) ! AM_PROG_INSTALL_SH ! AM_PROG_INSTALL_STRIP ! AC_REQUIRE([AM_PROG_MKDIR_P])dnl ! # We need awk for the "check" target. The system "awk" is bad on ! # some platforms. ! AC_REQUIRE([AC_PROG_AWK])dnl ! AC_REQUIRE([AC_PROG_MAKE_SET])dnl ! AC_REQUIRE([AM_SET_LEADING_DOT])dnl ! _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], ! [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], ! [_AM_PROG_TAR([v7])])]) ! _AM_IF_OPTION([no-dependencies],, ! [AC_PROVIDE_IFELSE([AC_PROG_CC], ! [_AM_DEPENDENCIES(CC)], ! [define([AC_PROG_CC], ! defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl ! AC_PROVIDE_IFELSE([AC_PROG_CXX], ! [_AM_DEPENDENCIES(CXX)], ! [define([AC_PROG_CXX], ! defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl ! AC_PROVIDE_IFELSE([AC_PROG_OBJC], ! [_AM_DEPENDENCIES(OBJC)], ! [define([AC_PROG_OBJC], ! defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl ! ]) ! ]) ! # When config.status generates a header, we must update the stamp-h file. ! # This file resides in the same directory as the config header ! # that is generated. The stamp files are numbered to have different names. ! # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the ! # loop where config.status creates the headers, so we can generate ! # our stamp files there. ! AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], ! [# Compute $1's index in $config_headers. ! _am_stamp_count=1 ! for _am_header in $config_headers :; do ! case $_am_header in ! $1 | $1:* ) ! break ;; ! * ) ! _am_stamp_count=`expr $_am_stamp_count + 1` ;; ! esac ! done ! echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count]) ! # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. ! # ! # This file is free software; the Free Software Foundation ! # gives unlimited permission to copy and/or distribute it, ! # with or without modifications, as long as this notice is preserved. ! # AM_PROG_INSTALL_SH ! # ------------------ ! # Define $install_sh. ! AC_DEFUN([AM_PROG_INSTALL_SH], ! [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl ! install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"} ! AC_SUBST(install_sh)]) ! # Copyright (C) 2003, 2005 Free Software Foundation, Inc. ! # ! # This file is free software; the Free Software Foundation ! # gives unlimited permission to copy and/or distribute it, ! # with or without modifications, as long as this notice is preserved. ! # serial 2 ! # Check whether the underlying file-system supports filenames ! # with a leading dot. For instance MS-DOS doesn't. ! AC_DEFUN([AM_SET_LEADING_DOT], ! [rm -rf .tst 2>/dev/null ! mkdir .tst 2>/dev/null ! if test -d .tst; then ! am__leading_dot=. ! else ! am__leading_dot=_ ! fi ! rmdir .tst 2>/dev/null ! AC_SUBST([am__leading_dot])]) ! # Add --enable-maintainer-mode option to configure. -*- Autoconf -*- ! # From Jim Meyering ! ! # Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005 ! # Free Software Foundation, Inc. ! # ! # This file is free software; the Free Software Foundation ! # gives unlimited permission to copy and/or distribute it, ! # with or without modifications, as long as this notice is preserved. ! # serial 4 ! AC_DEFUN([AM_MAINTAINER_MODE], ! [AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles]) ! dnl maintainer-mode is disabled by default ! AC_ARG_ENABLE(maintainer-mode, ! [ --enable-maintainer-mode enable make rules and dependencies not useful ! (and sometimes confusing) to the casual installer], ! USE_MAINTAINER_MODE=$enableval, ! USE_MAINTAINER_MODE=no) ! AC_MSG_RESULT([$USE_MAINTAINER_MODE]) ! AM_CONDITIONAL(MAINTAINER_MODE, [test $USE_MAINTAINER_MODE = yes]) ! MAINT=$MAINTAINER_MODE_TRUE ! AC_SUBST(MAINT)dnl ! ] ! ) ! AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE]) ! # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- ! # Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005 ! # Free Software Foundation, Inc. ! # ! # This file is free software; the Free Software Foundation ! # gives unlimited permission to copy and/or distribute it, ! # with or without modifications, as long as this notice is preserved. ! # serial 5 ! # AM_MISSING_PROG(NAME, PROGRAM) ! # ------------------------------ ! AC_DEFUN([AM_MISSING_PROG], ! [AC_REQUIRE([AM_MISSING_HAS_RUN]) ! $1=${$1-"${am_missing_run}$2"} ! AC_SUBST($1)]) ! # AM_MISSING_HAS_RUN ! # ------------------ ! # Define MISSING if not defined so far and test if it supports --run. ! # If it does, set am_missing_run to use it, otherwise, to nothing. ! AC_DEFUN([AM_MISSING_HAS_RUN], ! [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl ! AC_REQUIRE_AUX_FILE([missing])dnl ! test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" ! # Use eval to expand $SHELL ! if eval "$MISSING --run true"; then ! am_missing_run="$MISSING --run " ! else ! am_missing_run= ! AC_MSG_WARN([`missing' script is too old or missing]) ! fi ! ]) ! # Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. ! # ! # This file is free software; the Free Software Foundation ! # gives unlimited permission to copy and/or distribute it, ! # with or without modifications, as long as this notice is preserved. ! ! # AM_PROG_MKDIR_P ! # --------------- ! # Check for `mkdir -p'. ! AC_DEFUN([AM_PROG_MKDIR_P], ! [AC_PREREQ([2.60])dnl ! AC_REQUIRE([AC_PROG_MKDIR_P])dnl ! dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, ! dnl while keeping a definition of mkdir_p for backward compatibility. ! dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. ! dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of ! dnl Makefile.ins that do not define MKDIR_P, so we do our own ! dnl adjustment using top_builddir (which is defined more often than ! dnl MKDIR_P). ! AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl ! case $mkdir_p in ! [[\\/$]]* | ?:[[\\/]]*) ;; ! */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; ! esac ]) + # Helper functions for option handling. -*- Autoconf -*- + + # Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc. # ! # This file is free software; the Free Software Foundation ! # gives unlimited permission to copy and/or distribute it, ! # with or without modifications, as long as this notice is preserved. ! ! # serial 3 ! ! # _AM_MANGLE_OPTION(NAME) ! # ----------------------- ! AC_DEFUN([_AM_MANGLE_OPTION], ! [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) ! ! # _AM_SET_OPTION(NAME) ! # ------------------------------ ! # Set option NAME. Presently that only means defining a flag for this option. ! AC_DEFUN([_AM_SET_OPTION], ! [m4_define(_AM_MANGLE_OPTION([$1]), 1)]) ! ! # _AM_SET_OPTIONS(OPTIONS) ! # ---------------------------------- ! # OPTIONS is a space-separated list of Automake options. ! AC_DEFUN([_AM_SET_OPTIONS], ! [AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) ! ! # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) ! # ------------------------------------------- ! # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. ! AC_DEFUN([_AM_IF_OPTION], ! [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) ! ! # Check to make sure that the build environment is sane. -*- Autoconf -*- ! ! # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005 ! # Free Software Foundation, Inc. # ! # This file is free software; the Free Software Foundation ! # gives unlimited permission to copy and/or distribute it, ! # with or without modifications, as long as this notice is preserved. ! # serial 4 ! # AM_SANITY_CHECK ! # --------------- ! AC_DEFUN([AM_SANITY_CHECK], ! [AC_MSG_CHECKING([whether build environment is sane]) ! # Just in case ! sleep 1 ! echo timestamp > conftest.file ! # Do `set' in a subshell so we don't clobber the current shell's ! # arguments. Must try -L first in case configure is actually a ! # symlink; some systems play weird games with the mod time of symlinks ! # (eg FreeBSD returns the mod time of the symlink's containing ! # directory). ! if ( ! set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null` ! if test "$[*]" = "X"; then ! # -L didn't work. ! set X `ls -t $srcdir/configure conftest.file` ! fi ! rm -f conftest.file ! if test "$[*]" != "X $srcdir/configure conftest.file" \ ! && test "$[*]" != "X conftest.file $srcdir/configure"; then + # If neither matched, then we have a broken ls. This can happen + # if, for instance, CONFIG_SHELL is bash and it inherits a + # broken ls alias from the environment. This has actually + # happened. Such a system could not be considered "sane". + AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken + alias in your environment]) + fi ! test "$[2]" = conftest.file ! ) ! then ! # Ok. ! : ! else ! AC_MSG_ERROR([newly created file is older than distributed files! ! Check your system clock]) ! fi ! AC_MSG_RESULT(yes)]) + # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. + # + # This file is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. ! # AM_PROG_INSTALL_STRIP ! # --------------------- ! # One issue with vendor `install' (even GNU) is that you can't ! # specify the program used to strip binaries. This is especially ! # annoying in cross-compiling environments, where the build's strip ! # is unlikely to handle the host's binaries. ! # Fortunately install-sh will honor a STRIPPROG variable, so we ! # always use install-sh in `make install-strip', and initialize ! # STRIPPROG with the value of the STRIP variable (set by the user). ! AC_DEFUN([AM_PROG_INSTALL_STRIP], ! [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl ! # Installed binaries are usually stripped using `strip' when the user ! # run `make install-strip'. However `strip' might not be the right ! # tool to use in cross-compilation environments, therefore Automake ! # will honor the `STRIP' environment variable to overrule this program. ! dnl Don't test for $cross_compiling = yes, because it might be `maybe'. ! if test "$cross_compiling" != no; then ! AC_CHECK_TOOL([STRIP], [strip], :) ! fi ! INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" ! AC_SUBST([INSTALL_STRIP_PROGRAM])]) + # Copyright (C) 2006 Free Software Foundation, Inc. + # + # This file is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, + # with or without modifications, as long as this notice is preserved. ! # _AM_SUBST_NOTMAKE(VARIABLE) ! # --------------------------- ! # Prevent Automake from outputing VARIABLE = @VARIABLE@ in Makefile.in. ! # This macro is traced by Automake. ! AC_DEFUN([_AM_SUBST_NOTMAKE]) ! # Check how to create a tarball. -*- Autoconf -*- ! # Copyright (C) 2004, 2005 Free Software Foundation, Inc. ! # ! # This file is free software; the Free Software Foundation ! # gives unlimited permission to copy and/or distribute it, ! # with or without modifications, as long as this notice is preserved. ! # serial 2 ! # _AM_PROG_TAR(FORMAT) ! # -------------------- ! # Check how to create a tarball in format FORMAT. ! # FORMAT should be one of `v7', `ustar', or `pax'. ! # ! # Substitute a variable $(am__tar) that is a command ! # writing to stdout a FORMAT-tarball containing the directory ! # $tardir. ! # tardir=directory && $(am__tar) > result.tar ! # ! # Substitute a variable $(am__untar) that extract such ! # a tarball read from stdin. ! # $(am__untar) < result.tar ! AC_DEFUN([_AM_PROG_TAR], ! [# Always define AMTAR for backward compatibility. ! AM_MISSING_PROG([AMTAR], [tar]) ! m4_if([$1], [v7], ! [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'], ! [m4_case([$1], [ustar],, [pax],, ! [m4_fatal([Unknown tar format])]) ! AC_MSG_CHECKING([how to create a $1 tar archive]) ! # Loop over all known methods to create a tar archive until one works. ! _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' ! _am_tools=${am_cv_prog_tar_$1-$_am_tools} ! # Do not fold the above two line into one, because Tru64 sh and ! # Solaris sh will not grok spaces in the rhs of `-'. ! for _am_tool in $_am_tools do ! case $_am_tool in ! gnutar) ! for _am_tar in tar gnutar gtar; ! do ! AM_RUN_LOG([$_am_tar --version]) && break done ! am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' ! am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' ! am__untar="$_am_tar -xf -" ! ;; ! plaintar) ! # Must skip GNU tar: if it does not support --format= it doesn't create ! # ustar tarball either. ! (tar --version) >/dev/null 2>&1 && continue ! am__tar='tar chf - "$$tardir"' ! am__tar_='tar chf - "$tardir"' ! am__untar='tar xf -' ! ;; ! pax) ! am__tar='pax -L -x $1 -w "$$tardir"' ! am__tar_='pax -L -x $1 -w "$tardir"' ! am__untar='pax -r' ! ;; ! cpio) ! am__tar='find "$$tardir" -print | cpio -o -H $1 -L' ! am__tar_='find "$tardir" -print | cpio -o -H $1 -L' ! am__untar='cpio -i -H $1 -d' ! ;; ! none) ! am__tar=false ! am__tar_=false ! am__untar=false ! ;; ! esac ! ! # If the value was cached, stop now. We just wanted to have am__tar ! # and am__untar set. ! test -n "${am_cv_prog_tar_$1}" && break ! ! # tar/untar a dummy directory, and stop if the command works ! rm -rf conftest.dir ! mkdir conftest.dir ! echo GrepMe > conftest.dir/file ! AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) ! rm -rf conftest.dir ! if test -s conftest.tar; then ! AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done ! rm -rf conftest.dir ! ! AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) ! AC_MSG_RESULT([$am_cv_prog_tar_$1])]) ! AC_SUBST([am__tar]) ! AC_SUBST([am__untar]) ! ]) # _AM_PROG_TAR diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/AUTHORS gsl-1.10/AUTHORS *** gsl-1.9/AUTHORS 2006-11-08 15:18:13.000000000 +0000 --- gsl-1.10/AUTHORS 2007-05-22 15:10:04.000000000 +0100 *************** *** 23,26 **** Ivo Alxneit (ivo.alxneit@psi.ch) - multidimensional minimization, wavelet transforms Jason H. Stover (jason@sakla.net) - cumulative distribution functions ! Patrick Alken - unsymmetric eigensystems, B-splines --- 23,26 ---- Ivo Alxneit (ivo.alxneit@psi.ch) - multidimensional minimization, wavelet transforms Jason H. Stover (jason@sakla.net) - cumulative distribution functions ! Patrick Alken - nonsymmetric and generalized eigensystems, B-splines diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/blas/blas.c gsl-1.10/blas/blas.c *** gsl-1.9/blas/blas.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/blas/blas.c 2007-07-02 17:29:28.000000000 +0100 *************** *** 5,11 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 5,11 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/blas/gsl_blas.h gsl-1.10/blas/gsl_blas.h *** gsl-1.9/blas/gsl_blas.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/blas/gsl_blas.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/blas/gsl_blas_types.h gsl-1.10/blas/gsl_blas_types.h *** gsl-1.9/blas/gsl_blas_types.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/blas/gsl_blas_types.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/blas/Makefile.in gsl-1.10/blas/Makefile.in *** gsl-1.9/blas/Makefile.in 2007-02-20 13:09:00.000000000 +0000 --- gsl-1.10/blas/Makefile.in 2007-09-13 16:41:36.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 51,67 **** libgslblas_la_LIBADD = am_libgslblas_la_OBJECTS = blas.lo libgslblas_la_OBJECTS = $(am_libgslblas_la_OBJECTS) ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslblas_la_SOURCES) DIST_SOURCES = $(libgslblas_la_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 47,64 ---- libgslblas_la_LIBADD = am_libgslblas_la_OBJECTS = blas.lo libgslblas_la_OBJECTS = $(am_libgslblas_la_OBJECTS) ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslblas_la_SOURCES) DIST_SOURCES = $(libgslblas_la_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 95,100 **** --- 92,98 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 102,108 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 100,105 ---- *************** *** 110,126 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 107,120 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 132,140 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 126,133 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 144,158 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 137,152 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 162,189 **** --- 156,194 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslblas.la pkginclude_HEADERS = gsl_blas.h gsl_blas_types.h INCLUDES = -I$(top_srcdir) *************** *** 231,237 **** rm -f "$${dir}/so_locations"; \ done libgslblas.la: $(libgslblas_la_OBJECTS) $(libgslblas_la_DEPENDENCIES) ! $(LINK) $(libgslblas_la_LDFLAGS) $(libgslblas_la_OBJECTS) $(libgslblas_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 236,242 ---- rm -f "$${dir}/so_locations"; \ done libgslblas.la: $(libgslblas_la_OBJECTS) $(libgslblas_la_DEPENDENCIES) ! $(LINK) $(libgslblas_la_OBJECTS) $(libgslblas_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 253,265 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 258,266 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 324,345 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 325,345 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 355,361 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 355,361 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 389,395 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 389,395 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 403,414 **** --- 403,422 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 428,447 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ ! install install-am install-data install-data-am install-exec \ ! install-exec-am install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS #check_PROGRAMS = test --- 436,458 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ ! install install-am install-data install-data-am install-dvi \ ! install-dvi-am install-exec install-exec-am install-html \ ! install-html-am install-info install-info-am install-man \ ! install-pdf install-pdf-am install-pkgincludeHEADERS \ ! install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-pkgincludeHEADERS #check_PROGRAMS = test diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/block/block_source.c gsl-1.10/block/block_source.c *** gsl-1.9/block/block_source.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/block/block_source.c 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* block/block_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* block/block_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/block/fprintf_source.c gsl-1.10/block/fprintf_source.c *** gsl-1.9/block/fprintf_source.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/block/fprintf_source.c 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* block/fprintf_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* block/fprintf_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/block/fwrite_source.c gsl-1.10/block/fwrite_source.c *** gsl-1.9/block/fwrite_source.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/block/fwrite_source.c 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* block/fwrite_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* block/fwrite_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/block/gsl_block_char.h gsl-1.10/block/gsl_block_char.h *** gsl-1.9/block/gsl_block_char.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/block/gsl_block_char.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* block/gsl_block_char.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* block/gsl_block_char.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/block/gsl_block_complex_double.h gsl-1.10/block/gsl_block_complex_double.h *** gsl-1.9/block/gsl_block_complex_double.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/block/gsl_block_complex_double.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* block/gsl_block_complex_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* block/gsl_block_complex_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/block/gsl_block_complex_float.h gsl-1.10/block/gsl_block_complex_float.h *** gsl-1.9/block/gsl_block_complex_float.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/block/gsl_block_complex_float.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* block/gsl_block_complex_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* block/gsl_block_complex_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/block/gsl_block_complex_long_double.h gsl-1.10/block/gsl_block_complex_long_double.h *** gsl-1.9/block/gsl_block_complex_long_double.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/block/gsl_block_complex_long_double.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* block/gsl_block_complex_long_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* block/gsl_block_complex_long_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/block/gsl_block_double.h gsl-1.10/block/gsl_block_double.h *** gsl-1.9/block/gsl_block_double.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/block/gsl_block_double.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* block/gsl_block_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* block/gsl_block_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/block/gsl_block_float.h gsl-1.10/block/gsl_block_float.h *** gsl-1.9/block/gsl_block_float.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/block/gsl_block_float.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* block/gsl_block_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* block/gsl_block_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/block/gsl_block_int.h gsl-1.10/block/gsl_block_int.h *** gsl-1.9/block/gsl_block_int.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/block/gsl_block_int.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* block/gsl_block_int.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* block/gsl_block_int.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/block/gsl_block_long_double.h gsl-1.10/block/gsl_block_long_double.h *** gsl-1.9/block/gsl_block_long_double.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/block/gsl_block_long_double.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* block/gsl_block_long_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* block/gsl_block_long_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/block/gsl_block_long.h gsl-1.10/block/gsl_block_long.h *** gsl-1.9/block/gsl_block_long.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/block/gsl_block_long.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* block/gsl_block_long.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* block/gsl_block_long.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/block/gsl_block_short.h gsl-1.10/block/gsl_block_short.h *** gsl-1.9/block/gsl_block_short.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/block/gsl_block_short.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* block/gsl_block_short.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* block/gsl_block_short.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/block/gsl_block_uchar.h gsl-1.10/block/gsl_block_uchar.h *** gsl-1.9/block/gsl_block_uchar.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/block/gsl_block_uchar.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* block/gsl_block_uchar.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* block/gsl_block_uchar.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/block/gsl_block_uint.h gsl-1.10/block/gsl_block_uint.h *** gsl-1.9/block/gsl_block_uint.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/block/gsl_block_uint.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* block/gsl_block_uint.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* block/gsl_block_uint.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/block/gsl_block_ulong.h gsl-1.10/block/gsl_block_ulong.h *** gsl-1.9/block/gsl_block_ulong.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/block/gsl_block_ulong.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* block/gsl_block_ulong.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* block/gsl_block_ulong.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/block/gsl_block_ushort.h gsl-1.10/block/gsl_block_ushort.h *** gsl-1.9/block/gsl_block_ushort.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/block/gsl_block_ushort.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* block/gsl_block_ushort.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* block/gsl_block_ushort.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/block/gsl_check_range.h gsl-1.10/block/gsl_check_range.h *** gsl-1.9/block/gsl_check_range.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/block/gsl_check_range.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* vector/gsl_check_range.h * ! * Copyright (C) 2003, 2004 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* vector/gsl_check_range.h * ! * Copyright (C) 2003, 2004, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/block/init_source.c gsl-1.10/block/init_source.c *** gsl-1.9/block/init_source.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/block/init_source.c 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* block/init_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* block/init_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/block/Makefile.in gsl-1.10/block/Makefile.in *** gsl-1.9/block/Makefile.in 2007-02-20 13:09:00.000000000 +0000 --- gsl-1.10/block/Makefile.in 2007-09-13 16:41:37.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 57,73 **** test_DEPENDENCIES = libgslblock.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslblock_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslblock_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 53,70 ---- test_DEPENDENCIES = libgslblock.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslblock_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslblock_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 101,106 **** --- 98,104 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 108,114 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 106,111 ---- *************** *** 116,132 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 113,126 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 138,146 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 132,139 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 150,164 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 143,158 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 168,195 **** --- 162,200 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslblock.la pkginclude_HEADERS = gsl_block.h gsl_block_char.h gsl_block_complex_double.h gsl_block_complex_float.h gsl_block_complex_long_double.h gsl_block_double.h gsl_block_float.h gsl_block_int.h gsl_block_long.h gsl_block_long_double.h gsl_block_short.h gsl_block_uchar.h gsl_block_uint.h gsl_block_ulong.h gsl_block_ushort.h gsl_check_range.h INCLUDES = -I$(top_builddir) -I$(top_srcdir) *************** *** 242,248 **** rm -f "$${dir}/so_locations"; \ done libgslblock.la: $(libgslblock_la_OBJECTS) $(libgslblock_la_DEPENDENCIES) ! $(LINK) $(libgslblock_la_LDFLAGS) $(libgslblock_la_OBJECTS) $(libgslblock_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 247,253 ---- rm -f "$${dir}/so_locations"; \ done libgslblock.la: $(libgslblock_la_OBJECTS) $(libgslblock_la_DEPENDENCIES) ! $(LINK) $(libgslblock_la_OBJECTS) $(libgslblock_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 252,258 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 257,263 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 274,286 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 279,287 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 345,353 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 346,354 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 356,362 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 357,363 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 368,374 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 369,375 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 418,439 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 419,439 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 451,457 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 451,457 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 486,492 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 486,492 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 500,511 **** --- 500,519 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 525,545 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 533,556 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/block/test.c gsl-1.10/block/test.c *** gsl-1.9/block/test.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/block/test.c 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* block/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* block/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/block/test_complex_io.c gsl-1.10/block/test_complex_io.c *** gsl-1.9/block/test_complex_io.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/block/test_complex_io.c 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* block/test_complex_io.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* block/test_complex_io.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/block/test_complex_source.c gsl-1.10/block/test_complex_source.c *** gsl-1.9/block/test_complex_source.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/block/test_complex_source.c 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* block/test_complex_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* block/test_complex_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/block/test_io.c gsl-1.10/block/test_io.c *** gsl-1.9/block/test_io.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/block/test_io.c 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* block/test_io.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* block/test_io.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/block/test_source.c gsl-1.10/block/test_source.c *** gsl-1.9/block/test_source.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/block/test_source.c 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* block/test_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* block/test_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/bspline/bspline.c gsl-1.10/bspline/bspline.c *** gsl-1.9/bspline/bspline.c 2007-01-04 12:41:13.000000000 +0000 --- gsl-1.10/bspline/bspline.c 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/bspline/gsl_bspline.h gsl-1.10/bspline/gsl_bspline.h *** gsl-1.9/bspline/gsl_bspline.h 2006-11-02 17:31:28.000000000 +0000 --- gsl-1.10/bspline/gsl_bspline.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/bspline/Makefile.in gsl-1.10/bspline/Makefile.in *** gsl-1.9/bspline/Makefile.in 2007-02-20 13:09:01.000000000 +0000 --- gsl-1.10/bspline/Makefile.in 2007-09-13 16:41:37.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 61,77 **** ../cblas/libgslcblas.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslbspline_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslbspline_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 57,74 ---- ../cblas/libgslcblas.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslbspline_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslbspline_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 105,110 **** --- 102,108 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 112,118 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 110,115 ---- *************** *** 120,136 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 117,130 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 142,150 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 136,143 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 154,168 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 147,162 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 172,199 **** --- 166,204 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslbspline.la pkginclude_HEADERS = gsl_bspline.h INCLUDES = -I$(top_builddir) *************** *** 244,250 **** rm -f "$${dir}/so_locations"; \ done libgslbspline.la: $(libgslbspline_la_OBJECTS) $(libgslbspline_la_DEPENDENCIES) ! $(LINK) $(libgslbspline_la_LDFLAGS) $(libgslbspline_la_OBJECTS) $(libgslbspline_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 249,255 ---- rm -f "$${dir}/so_locations"; \ done libgslbspline.la: $(libgslbspline_la_OBJECTS) $(libgslbspline_la_DEPENDENCIES) ! $(LINK) $(libgslbspline_la_OBJECTS) $(libgslbspline_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 254,260 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 259,265 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 276,288 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 281,289 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 347,355 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 348,356 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 358,364 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 359,365 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 370,376 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 371,377 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 420,441 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 421,441 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 453,459 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 453,459 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 487,493 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 487,493 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 501,512 **** --- 501,520 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 526,546 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 534,557 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/bspline/test.c gsl-1.10/bspline/test.c *** gsl-1.9/bspline/test.c 2007-02-19 15:08:41.000000000 +0000 --- gsl-1.10/bspline/test.c 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* bspline/test.c * ! * Copyright (C) 2006 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* bspline/test.c * ! * Copyright (C) 2006, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 66,72 **** int main (int argc, char **argv) { - int status = 0; size_t order, breakpoints, i; gsl_ieee_env_setup (); --- 66,71 ---- diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/BUGS gsl-1.10/BUGS *** gsl-1.9/BUGS 2007-02-19 15:09:00.000000000 +0000 --- gsl-1.10/BUGS 2007-08-27 22:27:31.000000000 +0100 *************** *** 103,135 **** 9.999999999999985567e-01 - ---------------------------------------------------------------------- - BUG#49 - fdjacobian step size causes problems - - From: eknecronzontas - To: help-gsl@gnu.org - Subject: [Help-gsl] Bug (or not?) in multiroots/fdjacobian.c - Date: Thu, 8 Jun 2006 13:38:49 -0700 (PDT) - - Since I can't quite decide if this is a bug, I'll post - it here first... - - The stepsize for finite-differencing in - gsl-1.8/multiroots/fdjacobian.c is specified by the - lines - - > double xj = gsl_vector_get (x, j); - > double dx = epsrel * fabs (xj); - - This is, of course mathematically correct. - Nevertheless, the behavior is less than ideal if one - of the elements of the vector 'x' is sufficiently - small. This occurs often if one component of the root - happens to be zero. If this occurs, then 'dx' can be - so small that one of the columns of the Jacobian is - identically zero. This immediately leads to NAN's - which are not easy to trace. - --------------------------------------------------------------------- BUG#50 - gsl_linalg_solve_symm_tridiag requires positive definite matrix --- 103,108 ---- *************** *** 170,201 **** -0.60009 1.39219 ---------------------------------------------------------------------- ! BUG#52 - beta functions do not handle negative arguments ! ! The beta functions (complete and incomplete) are well defined for ! non-integer negative arguments in terms of the gamma function but ! return domain errors or nans. The relation of I_x(a,b,x) = (1/a) x^a ! 2F1(a,1-b,a+1,x)/B(a,b) could be documented even if it is not ! implemented. ! ! DONE for beta function, still needed for incomplete beta function. ! ! ---------------------------------------------------------------------- ! BUG#57 - incorrect rounding error in deriv functions? ! ! Needs a factor of 1/h^2 ? ! ! From: Rene Girard ! To: help-gsl@gnu.org ! Subject: [Help-gsl] Origin of 2nd round-off term "dy" in function central_deriv.c ! ! double dy = GSL_MAX(fabs(r3),fabs(r5))* fabs(x)*GSL_DBL_EPSILON ! ! I understand the rest of the function very well and I am able to ! derive the equation for the optimal stepsize "h_opt" in function ! "gsl_deriv_central.c"; however, I am trying to look for a derivation ! for the expression of "dy". ! ---------------------------------------------------------------------- ! Last assigned bug number = 57 --- 143,150 ---- -0.60009 1.39219 + AUG 2007: We now return an error code for this case. To return a solution + we would need to do a permutation, see slatec/dgtsl.f ---------------------------------------------------------------------- ! Last assigned bug number = 62 diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/gsl_cblas.h gsl-1.10/cblas/gsl_cblas.h *** gsl-1.9/cblas/gsl_cblas.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/gsl_cblas.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/Makefile.am gsl-1.10/cblas/Makefile.am *** gsl-1.9/cblas/Makefile.am 2004-09-11 14:45:09.000000000 +0100 --- gsl-1.10/cblas/Makefile.am 2007-07-10 22:01:55.000000000 +0100 *************** *** 1,6 **** --- 1,11 ---- lib_LTLIBRARIES = libgslcblas.la libgslcblas_la_LDFLAGS = -version-info $(GSL_LT_CBLAS_VERSION) + MINGW32_HOST = @MINGW32_HOST@ + if MINGW32_HOST + libgslcblas_la_LDFLAGS += -no-undefined + endif + pkginclude_HEADERS = gsl_cblas.h INCLUDES= -I$(top_srcdir) diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/Makefile.in gsl-1.10/cblas/Makefile.in *** gsl-1.9/cblas/Makefile.in 2007-02-20 13:09:01.000000000 +0000 --- gsl-1.10/cblas/Makefile.in 2007-09-13 16:41:37.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 37,42 **** --- 33,39 ---- POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ + @MINGW32_HOST_TRUE@am__append_1 = -no-undefined check_PROGRAMS = test$(EXEEXT) subdir = cblas DIST_COMMON = $(noinst_HEADERS) $(pkginclude_HEADERS) \ *************** *** 81,86 **** --- 78,86 ---- ztbmv.lo ztbsv.lo ztpmv.lo ztpsv.lo ztrmm.lo ztrmv.lo ztrsm.lo \ ztrsv.lo icamax.lo idamax.lo isamax.lo izamax.lo xerbla.lo libgslcblas_la_OBJECTS = $(am_libgslcblas_la_OBJECTS) + libgslcblas_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(libgslcblas_la_LDFLAGS) $(LDFLAGS) -o $@ am_test_OBJECTS = test.$(OBJEXT) test_amax.$(OBJEXT) \ test_asum.$(OBJEXT) test_axpy.$(OBJEXT) test_copy.$(OBJEXT) \ test_dot.$(OBJEXT) test_gbmv.$(OBJEXT) test_gemm.$(OBJEXT) \ *************** *** 100,116 **** test_OBJECTS = $(am_test_OBJECTS) test_DEPENDENCIES = libgslcblas.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslcblas_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslcblas_la_SOURCES) $(test_SOURCES) pkgincludeHEADERS_INSTALL = $(INSTALL_HEADER) --- 100,117 ---- test_OBJECTS = $(am_test_OBJECTS) test_DEPENDENCIES = libgslcblas.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslcblas_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslcblas_la_SOURCES) $(test_SOURCES) pkgincludeHEADERS_INSTALL = $(INSTALL_HEADER) *************** *** 137,142 **** --- 138,144 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 144,150 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 146,151 ---- *************** *** 152,168 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 153,166 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 174,182 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 172,179 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 186,200 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 183,198 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 204,233 **** build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ datadir = @datadir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ lib_LTLIBRARIES = libgslcblas.la ! libgslcblas_la_LDFLAGS = -version-info $(GSL_LT_CBLAS_VERSION) pkginclude_HEADERS = gsl_cblas.h INCLUDES = -I$(top_srcdir) libgslcblas_la_SOURCES = sasum.c saxpy.c scasum.c scnrm2.c scopy.c \ --- 202,244 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ lib_LTLIBRARIES = libgslcblas.la ! libgslcblas_la_LDFLAGS = -version-info $(GSL_LT_CBLAS_VERSION) \ ! $(am__append_1) ! MINGW32_HOST = @MINGW32_HOST@ pkginclude_HEADERS = gsl_cblas.h INCLUDES = -I$(top_srcdir) libgslcblas_la_SOURCES = sasum.c saxpy.c scasum.c scnrm2.c scopy.c \ *************** *** 310,316 **** cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) ! test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)" @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ if test -f $$p; then \ f=$(am__strip_dir) \ --- 321,327 ---- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) ! test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ if test -f $$p; then \ f=$(am__strip_dir) \ *************** *** 321,327 **** uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) ! @set -x; list='$(lib_LTLIBRARIES)'; for p in $$list; do \ p=$(am__strip_dir) \ echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \ $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \ --- 332,338 ---- uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) ! @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ p=$(am__strip_dir) \ echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \ $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \ *************** *** 336,342 **** rm -f "$${dir}/so_locations"; \ done libgslcblas.la: $(libgslcblas_la_OBJECTS) $(libgslcblas_la_DEPENDENCIES) ! $(LINK) -rpath $(libdir) $(libgslcblas_la_LDFLAGS) $(libgslcblas_la_OBJECTS) $(libgslcblas_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 347,353 ---- rm -f "$${dir}/so_locations"; \ done libgslcblas.la: $(libgslcblas_la_OBJECTS) $(libgslcblas_la_DEPENDENCIES) ! $(libgslcblas_la_LINK) -rpath $(libdir) $(libgslcblas_la_OBJECTS) $(libgslcblas_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 346,352 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 357,363 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 368,380 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 379,387 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 439,447 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 446,454 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 450,456 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 457,463 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 462,468 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 469,475 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 512,533 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 519,539 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 545,551 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 551,557 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 579,585 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 585,591 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 593,604 **** --- 599,618 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: install-libLTLIBRARIES + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 618,638 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-libLTLIBRARIES \ ! uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libLTLIBRARIES \ clean-libtool ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ install-info install-info-am install-libLTLIBRARIES \ ! install-man install-pkgincludeHEADERS install-strip \ ! installcheck installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ uninstall-libLTLIBRARIES uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. --- 632,655 ---- ps-am: ! uninstall-am: uninstall-libLTLIBRARIES uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libLTLIBRARIES \ clean-libtool ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-libLTLIBRARIES \ ! install-man install-pdf install-pdf-am \ ! install-pkgincludeHEADERS install-ps install-ps-am \ ! install-strip installcheck installcheck-am installdirs \ ! maintainer-clean maintainer-clean-generic mostlyclean \ ! mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ ! pdf pdf-am ps ps-am tags uninstall uninstall-am \ uninstall-libLTLIBRARIES uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_asum_c.h gsl-1.10/cblas/source_asum_c.h *** gsl-1.9/cblas/source_asum_c.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_asum_c.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_asum_r.h gsl-1.10/cblas/source_asum_r.h *** gsl-1.9/cblas/source_asum_r.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_asum_r.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_axpy_c.h gsl-1.10/cblas/source_axpy_c.h *** gsl-1.9/cblas/source_axpy_c.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_axpy_c.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_axpy_r.h gsl-1.10/cblas/source_axpy_r.h *** gsl-1.9/cblas/source_axpy_r.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_axpy_r.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_copy_c.h gsl-1.10/cblas/source_copy_c.h *** gsl-1.9/cblas/source_copy_c.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_copy_c.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_copy_r.h gsl-1.10/cblas/source_copy_r.h *** gsl-1.9/cblas/source_copy_r.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_copy_r.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_dot_c.h gsl-1.10/cblas/source_dot_c.h *** gsl-1.9/cblas/source_dot_c.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_dot_c.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_dot_r.h gsl-1.10/cblas/source_dot_r.h *** gsl-1.9/cblas/source_dot_r.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_dot_r.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_gbmv_c.h gsl-1.10/cblas/source_gbmv_c.h *** gsl-1.9/cblas/source_gbmv_c.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_gbmv_c.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_gbmv_r.h gsl-1.10/cblas/source_gbmv_r.h *** gsl-1.9/cblas/source_gbmv_r.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_gbmv_r.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_gemm_c.h gsl-1.10/cblas/source_gemm_c.h *** gsl-1.9/cblas/source_gemm_c.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_gemm_c.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* blas/source_gemm_c.h * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* blas/source_gemm_c.h * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_gemm_r.h gsl-1.10/cblas/source_gemm_r.h *** gsl-1.9/cblas/source_gemm_r.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_gemm_r.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* blas/source_gemm_r.h * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* blas/source_gemm_r.h * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_gemv_c.h gsl-1.10/cblas/source_gemv_c.h *** gsl-1.9/cblas/source_gemv_c.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_gemv_c.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_gemv_r.h gsl-1.10/cblas/source_gemv_r.h *** gsl-1.9/cblas/source_gemv_r.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_gemv_r.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_gerc.h gsl-1.10/cblas/source_gerc.h *** gsl-1.9/cblas/source_gerc.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_gerc.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_ger.h gsl-1.10/cblas/source_ger.h *** gsl-1.9/cblas/source_ger.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_ger.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_geru.h gsl-1.10/cblas/source_geru.h *** gsl-1.9/cblas/source_geru.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_geru.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_hbmv.h gsl-1.10/cblas/source_hbmv.h *** gsl-1.9/cblas/source_hbmv.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_hbmv.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_hemm.h gsl-1.10/cblas/source_hemm.h *** gsl-1.9/cblas/source_hemm.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_hemm.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* blas/source_hemm.h * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* blas/source_hemm.h * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_hemv.h gsl-1.10/cblas/source_hemv.h *** gsl-1.9/cblas/source_hemv.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_hemv.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* blas/source_hemv.h * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* blas/source_hemv.h * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_her2.h gsl-1.10/cblas/source_her2.h *** gsl-1.9/cblas/source_her2.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_her2.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_her2k.h gsl-1.10/cblas/source_her2k.h *** gsl-1.9/cblas/source_her2k.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_her2k.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* blas/source_her2k_c.h * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* blas/source_her2k_c.h * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_her.h gsl-1.10/cblas/source_her.h *** gsl-1.9/cblas/source_her.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_her.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_herk.h gsl-1.10/cblas/source_herk.h *** gsl-1.9/cblas/source_herk.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_herk.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* blas/source_herk.h * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* blas/source_herk.h * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_hpmv.h gsl-1.10/cblas/source_hpmv.h *** gsl-1.9/cblas/source_hpmv.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_hpmv.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_hpr2.h gsl-1.10/cblas/source_hpr2.h *** gsl-1.9/cblas/source_hpr2.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_hpr2.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_hpr.h gsl-1.10/cblas/source_hpr.h *** gsl-1.9/cblas/source_hpr.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_hpr.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_iamax_c.h gsl-1.10/cblas/source_iamax_c.h *** gsl-1.9/cblas/source_iamax_c.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_iamax_c.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_iamax_r.h gsl-1.10/cblas/source_iamax_r.h *** gsl-1.9/cblas/source_iamax_r.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_iamax_r.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_nrm2_c.h gsl-1.10/cblas/source_nrm2_c.h *** gsl-1.9/cblas/source_nrm2_c.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_nrm2_c.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_nrm2_r.h gsl-1.10/cblas/source_nrm2_r.h *** gsl-1.9/cblas/source_nrm2_r.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_nrm2_r.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_rotg.h gsl-1.10/cblas/source_rotg.h *** gsl-1.9/cblas/source_rotg.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_rotg.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_rot.h gsl-1.10/cblas/source_rot.h *** gsl-1.9/cblas/source_rot.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_rot.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_rotmg.h gsl-1.10/cblas/source_rotmg.h *** gsl-1.9/cblas/source_rotmg.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_rotmg.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* blas/source_rotmg.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* blas/source_rotmg.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_rotm.h gsl-1.10/cblas/source_rotm.h *** gsl-1.9/cblas/source_rotm.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_rotm.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* blas/source_rotmg.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* blas/source_rotmg.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_sbmv.h gsl-1.10/cblas/source_sbmv.h *** gsl-1.9/cblas/source_sbmv.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_sbmv.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_scal_c.h gsl-1.10/cblas/source_scal_c.h *** gsl-1.9/cblas/source_scal_c.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_scal_c.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_scal_c_s.h gsl-1.10/cblas/source_scal_c_s.h *** gsl-1.9/cblas/source_scal_c_s.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_scal_c_s.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_scal_r.h gsl-1.10/cblas/source_scal_r.h *** gsl-1.9/cblas/source_scal_r.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_scal_r.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_spmv.h gsl-1.10/cblas/source_spmv.h *** gsl-1.9/cblas/source_spmv.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_spmv.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_spr2.h gsl-1.10/cblas/source_spr2.h *** gsl-1.9/cblas/source_spr2.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_spr2.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_spr.h gsl-1.10/cblas/source_spr.h *** gsl-1.9/cblas/source_spr.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_spr.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_swap_c.h gsl-1.10/cblas/source_swap_c.h *** gsl-1.9/cblas/source_swap_c.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_swap_c.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_swap_r.h gsl-1.10/cblas/source_swap_r.h *** gsl-1.9/cblas/source_swap_r.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_swap_r.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_symm_c.h gsl-1.10/cblas/source_symm_c.h *** gsl-1.9/cblas/source_symm_c.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_symm_c.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* blas/source_symm_c.h * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* blas/source_symm_c.h * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_symm_r.h gsl-1.10/cblas/source_symm_r.h *** gsl-1.9/cblas/source_symm_r.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_symm_r.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* blas/source_symm_r.h * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* blas/source_symm_r.h * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_symv.h gsl-1.10/cblas/source_symv.h *** gsl-1.9/cblas/source_symv.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_symv.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_syr2.h gsl-1.10/cblas/source_syr2.h *** gsl-1.9/cblas/source_syr2.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_syr2.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_syr2k_c.h gsl-1.10/cblas/source_syr2k_c.h *** gsl-1.9/cblas/source_syr2k_c.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_syr2k_c.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* blas/source_syr2k_c.h * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* blas/source_syr2k_c.h * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_syr2k_r.h gsl-1.10/cblas/source_syr2k_r.h *** gsl-1.9/cblas/source_syr2k_r.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_syr2k_r.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* blas/source_syr2k_r.h * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* blas/source_syr2k_r.h * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_syr.h gsl-1.10/cblas/source_syr.h *** gsl-1.9/cblas/source_syr.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_syr.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_syrk_c.h gsl-1.10/cblas/source_syrk_c.h *** gsl-1.9/cblas/source_syrk_c.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_syrk_c.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* blas/source_syrk_r.h * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* blas/source_syrk_r.h * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_syrk_r.h gsl-1.10/cblas/source_syrk_r.h *** gsl-1.9/cblas/source_syrk_r.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_syrk_r.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* blas/source_syrk_r.h * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* blas/source_syrk_r.h * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_tbmv_c.h gsl-1.10/cblas/source_tbmv_c.h *** gsl-1.9/cblas/source_tbmv_c.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_tbmv_c.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_tbmv_r.h gsl-1.10/cblas/source_tbmv_r.h *** gsl-1.9/cblas/source_tbmv_r.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_tbmv_r.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_tbsv_c.h gsl-1.10/cblas/source_tbsv_c.h *** gsl-1.9/cblas/source_tbsv_c.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_tbsv_c.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_tbsv_r.h gsl-1.10/cblas/source_tbsv_r.h *** gsl-1.9/cblas/source_tbsv_r.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_tbsv_r.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_tpmv_c.h gsl-1.10/cblas/source_tpmv_c.h *** gsl-1.9/cblas/source_tpmv_c.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_tpmv_c.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_tpmv_r.h gsl-1.10/cblas/source_tpmv_r.h *** gsl-1.9/cblas/source_tpmv_r.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_tpmv_r.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_tpsv_c.h gsl-1.10/cblas/source_tpsv_c.h *** gsl-1.9/cblas/source_tpsv_c.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_tpsv_c.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_tpsv_r.h gsl-1.10/cblas/source_tpsv_r.h *** gsl-1.9/cblas/source_tpsv_r.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_tpsv_r.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_trmm_c.h gsl-1.10/cblas/source_trmm_c.h *** gsl-1.9/cblas/source_trmm_c.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_trmm_c.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* blas/source_trmm_c.h * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* blas/source_trmm_c.h * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_trmm_r.h gsl-1.10/cblas/source_trmm_r.h *** gsl-1.9/cblas/source_trmm_r.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_trmm_r.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* blas/source_trmm_r.h * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* blas/source_trmm_r.h * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_trmv_c.h gsl-1.10/cblas/source_trmv_c.h *** gsl-1.9/cblas/source_trmv_c.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_trmv_c.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_trmv_r.h gsl-1.10/cblas/source_trmv_r.h *** gsl-1.9/cblas/source_trmv_r.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_trmv_r.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_trsm_c.h gsl-1.10/cblas/source_trsm_c.h *** gsl-1.9/cblas/source_trsm_c.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_trsm_c.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* blas/source_trsm_c.h * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* blas/source_trsm_c.h * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_trsm_r.h gsl-1.10/cblas/source_trsm_r.h *** gsl-1.9/cblas/source_trsm_r.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_trsm_r.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* blas/source_trsm_r.h * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* blas/source_trsm_r.h * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_trsv_c.h gsl-1.10/cblas/source_trsv_c.h *** gsl-1.9/cblas/source_trsv_c.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_trsv_c.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/source_trsv_r.h gsl-1.10/cblas/source_trsv_r.h *** gsl-1.9/cblas/source_trsv_r.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/source_trsv_r.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/test.c gsl-1.10/cblas/test.c *** gsl-1.9/cblas/test.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/test.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* blas/test.c * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* blas/test.c * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cblas/xerbla.c gsl-1.10/cblas/xerbla.c *** gsl-1.9/cblas/xerbla.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cblas/xerbla.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* xerbla.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* xerbla.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/beta.c gsl-1.10/cdf/beta.c *** gsl-1.9/cdf/beta.c 2006-03-09 15:53:02.000000000 +0000 --- gsl-1.10/cdf/beta.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* cdf/cdf_beta.c * ! * Copyright (C) 2003 Brian Gough. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* cdf/cdf_beta.c * ! * Copyright (C) 2003, 2007 Brian Gough. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/beta_inc.c gsl-1.10/cdf/beta_inc.c *** gsl-1.9/cdf/beta_inc.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cdf/beta_inc.c 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/betainv.c gsl-1.10/cdf/betainv.c *** gsl-1.9/cdf/betainv.c 2007-01-23 16:55:04.000000000 +0000 --- gsl-1.10/cdf/betainv.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,13 **** /* cdf/betainv.c * * Copyright (C) 2004 Free Software Foundation, Inc. ! * Copyright (C) 2006 Brian Gough * Written by Jason H. Stover. * Modified for GSL by Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,13 ---- /* cdf/betainv.c * * Copyright (C) 2004 Free Software Foundation, Inc. ! * Copyright (C) 2006, 2007 Brian Gough * Written by Jason H. Stover. * Modified for GSL by Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 45,50 **** --- 45,72 ---- #include "error.h" + static double + bisect (double x, double P, double a, double b, double xtol, double Ptol) + { + double x0 = 0, x1 = 1, Px; + + while (fabs(x1 - x0) > xtol) { + Px = gsl_cdf_beta_P (x, a, b); + if (fabs(Px - P) < Ptol) { + /* return as soon as approximation is good enough, including on + the first iteration */ + return x; + } else if (Px < P) { + x0 = x; + } else if (Px > P) { + x1 = x; + } + x = 0.5 * (x0 + x1); + } + return x; + } + + double gsl_cdf_beta_Pinv (const double P, const double a, const double b) { *************** *** 107,112 **** --- 129,137 ---- x = mean; } + /* Do bisection to get closer */ + x = bisect (x, P, a, b, 0.01, 0.01); + { double lambda, dP, phi; unsigned int n = 0; *************** *** 150,157 **** } end: - return x; } } --- 175,187 ---- } end: + if (fabs(dP) > GSL_SQRT_DBL_EPSILON * P) + { + GSL_ERROR_VAL("inverse failed to converge", GSL_EFAILED, GSL_NAN); + } + + return x; } } diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/binomial.c gsl-1.10/cdf/binomial.c *** gsl-1.9/cdf/binomial.c 2006-03-09 15:53:02.000000000 +0000 --- gsl-1.10/cdf/binomial.c 2007-07-02 17:29:28.000000000 +0100 *************** *** 5,11 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 5,11 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/cauchy.c gsl-1.10/cdf/cauchy.c *** gsl-1.9/cdf/cauchy.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cdf/cauchy.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* cdf/cauchy.c * ! * Copyright (C) 2003 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* cdf/cauchy.c * ! * Copyright (C) 2003, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/cauchyinv.c gsl-1.10/cdf/cauchyinv.c *** gsl-1.9/cdf/cauchyinv.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cdf/cauchyinv.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* cdf/cauchyinv.c * ! * Copyright (C) 2003 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* cdf/cauchyinv.c * ! * Copyright (C) 2003, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/ChangeLog gsl-1.10/cdf/ChangeLog *** gsl-1.9/cdf/ChangeLog 2007-01-23 16:55:04.000000000 +0000 --- gsl-1.10/cdf/ChangeLog 2007-08-27 22:26:30.000000000 +0100 *************** *** 1,3 **** --- 1,19 ---- + 2007-08-22 Brian Gough + + * betainv.c (gsl_cdf_beta_Pinv): added an error check for + inaccurate results + + * gammainv.c (gsl_cdf_gamma_Pinv): added an error check for + inaccurate results + + * tdistinv.c (gsl_cdf_tdist_Pinv): added an error check for + inaccurate results + + 2007-08-21 Brian Gough + + * betainv.c (gsl_cdf_beta_Pinv): added bisection method to improve + initial approximations + 2007-01-23 Brian Gough * betainv.c (gsl_cdf_beta_Pinv): avoid generating a NaN for lx > 0 diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/chisq.c gsl-1.10/cdf/chisq.c *** gsl-1.9/cdf/chisq.c 2003-07-25 16:18:09.000000000 +0100 --- gsl-1.10/cdf/chisq.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* cdf/cdf_chisq.c * ! * Copyright (C) 2003 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* cdf/cdf_chisq.c * ! * Copyright (C) 2003, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/chisqinv.c gsl-1.10/cdf/chisqinv.c *** gsl-1.9/cdf/chisqinv.c 2003-07-25 16:18:09.000000000 +0100 --- gsl-1.10/cdf/chisqinv.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* cdf/chisqinv.c * ! * Copyright (C) 2003 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* cdf/chisqinv.c * ! * Copyright (C) 2003, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/exponential.c gsl-1.10/cdf/exponential.c *** gsl-1.9/cdf/exponential.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cdf/exponential.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* cdf/exponential.c * ! * Copyright (C) 2003 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* cdf/exponential.c * ! * Copyright (C) 2003, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/exponentialinv.c gsl-1.10/cdf/exponentialinv.c *** gsl-1.9/cdf/exponentialinv.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cdf/exponentialinv.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* cdf/exponentialinv.c * ! * Copyright (C) 2003 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* cdf/exponentialinv.c * ! * Copyright (C) 2003, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/exppow.c gsl-1.10/cdf/exppow.c *** gsl-1.9/cdf/exppow.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cdf/exppow.c 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/fdist.c gsl-1.10/cdf/fdist.c *** gsl-1.9/cdf/fdist.c 2006-03-09 15:53:02.000000000 +0000 --- gsl-1.10/cdf/fdist.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,11 **** /* cdf/fdist.c * * Copyright (C) 2002 Przemyslaw Sliwa and Jason H. Stover. ! * Copyright (C) 2006 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,11 ---- /* cdf/fdist.c * * Copyright (C) 2002 Przemyslaw Sliwa and Jason H. Stover. ! * Copyright (C) 2006, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/fdistinv.c gsl-1.10/cdf/fdistinv.c *** gsl-1.9/cdf/fdistinv.c 2006-03-09 15:53:02.000000000 +0000 --- gsl-1.10/cdf/fdistinv.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,11 **** /* cdf/fdistinv.c * * Copyright (C) 2002 Przemyslaw Sliwa and Jason H. Stover. ! * Copyright (C) 2006 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,11 ---- /* cdf/fdistinv.c * * Copyright (C) 2002 Przemyslaw Sliwa and Jason H. Stover. ! * Copyright (C) 2006, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/flat.c gsl-1.10/cdf/flat.c *** gsl-1.9/cdf/flat.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cdf/flat.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* cdf/flat.c * ! * Copyright (C) 2003 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* cdf/flat.c * ! * Copyright (C) 2003, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/flatinv.c gsl-1.10/cdf/flatinv.c *** gsl-1.9/cdf/flatinv.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cdf/flatinv.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* cdf/flatinv.c * ! * Copyright (C) 2003 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* cdf/flatinv.c * ! * Copyright (C) 2003, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/gamma.c gsl-1.10/cdf/gamma.c *** gsl-1.9/cdf/gamma.c 2006-03-09 15:53:02.000000000 +0000 --- gsl-1.10/cdf/gamma.c 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/gammainv.c gsl-1.10/cdf/gammainv.c *** gsl-1.9/cdf/gammainv.c 2006-02-27 19:48:14.000000000 +0000 --- gsl-1.10/cdf/gammainv.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* cdf/gammainv.c * ! * Copyright (C) 2003 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* cdf/gammainv.c * ! * Copyright (C) 2003, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 99,108 **** goto start; } } - - end: - return b * x; } double --- 99,112 ---- goto start; } + end: + if (fabs(dP) > GSL_SQRT_DBL_EPSILON * P) + { + GSL_ERROR_VAL("inverse failed to converge", GSL_EFAILED, GSL_NAN); + } + + return b * x; } } double diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/gauss.c gsl-1.10/cdf/gauss.c *** gsl-1.9/cdf/gauss.c 2004-06-20 19:41:17.000000000 +0100 --- gsl-1.10/cdf/gauss.c 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/gaussinv.c gsl-1.10/cdf/gaussinv.c *** gsl-1.9/cdf/gaussinv.c 2003-07-25 16:18:09.000000000 +0100 --- gsl-1.10/cdf/gaussinv.c 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/geometric.c gsl-1.10/cdf/geometric.c *** gsl-1.9/cdf/geometric.c 2006-03-09 15:53:02.000000000 +0000 --- gsl-1.10/cdf/geometric.c 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/gsl_cdf.h gsl-1.10/cdf/gsl_cdf.h *** gsl-1.9/cdf/gsl_cdf.h 2006-03-09 15:53:02.000000000 +0000 --- gsl-1.10/cdf/gsl_cdf.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/gumbel1.c gsl-1.10/cdf/gumbel1.c *** gsl-1.9/cdf/gumbel1.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cdf/gumbel1.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* cdf/gumbel1.c * ! * Copyright (C) 2003 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* cdf/gumbel1.c * ! * Copyright (C) 2003, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/gumbel1inv.c gsl-1.10/cdf/gumbel1inv.c *** gsl-1.9/cdf/gumbel1inv.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cdf/gumbel1inv.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* cdf/gumbel1inv.c * ! * Copyright (C) 2003 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* cdf/gumbel1inv.c * ! * Copyright (C) 2003, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/gumbel2.c gsl-1.10/cdf/gumbel2.c *** gsl-1.9/cdf/gumbel2.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cdf/gumbel2.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* cdf/gumbel2.c * ! * Copyright (C) 2003 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* cdf/gumbel2.c * ! * Copyright (C) 2003, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/gumbel2inv.c gsl-1.10/cdf/gumbel2inv.c *** gsl-1.9/cdf/gumbel2inv.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cdf/gumbel2inv.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* cdf/gumbel2inv.c * ! * Copyright (C) 2003 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* cdf/gumbel2inv.c * ! * Copyright (C) 2003, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/hypergeometric.c gsl-1.10/cdf/hypergeometric.c *** gsl-1.9/cdf/hypergeometric.c 2006-03-09 15:53:02.000000000 +0000 --- gsl-1.10/cdf/hypergeometric.c 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/laplace.c gsl-1.10/cdf/laplace.c *** gsl-1.9/cdf/laplace.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cdf/laplace.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* cdf/laplace.c * ! * Copyright (C) 2003 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* cdf/laplace.c * ! * Copyright (C) 2003, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/laplaceinv.c gsl-1.10/cdf/laplaceinv.c *** gsl-1.9/cdf/laplaceinv.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cdf/laplaceinv.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* cdf/laplaceinv.c * ! * Copyright (C) 2003 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* cdf/laplaceinv.c * ! * Copyright (C) 2003, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/logistic.c gsl-1.10/cdf/logistic.c *** gsl-1.9/cdf/logistic.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cdf/logistic.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* cdf/logistic.c * ! * Copyright (C) 2003 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* cdf/logistic.c * ! * Copyright (C) 2003, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/logisticinv.c gsl-1.10/cdf/logisticinv.c *** gsl-1.9/cdf/logisticinv.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cdf/logisticinv.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* cdf/logisticinv.c * ! * Copyright (C) 2003 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* cdf/logisticinv.c * ! * Copyright (C) 2003, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/lognormal.c gsl-1.10/cdf/lognormal.c *** gsl-1.9/cdf/lognormal.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cdf/lognormal.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* cdf/lognormal.c * ! * Copyright (C) 2003 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* cdf/lognormal.c * ! * Copyright (C) 2003, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/lognormalinv.c gsl-1.10/cdf/lognormalinv.c *** gsl-1.9/cdf/lognormalinv.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cdf/lognormalinv.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* cdf/lognormalinv.c * ! * Copyright (C) 2003 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* cdf/lognormalinv.c * ! * Copyright (C) 2003, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/Makefile.in gsl-1.10/cdf/Makefile.in *** gsl-1.9/cdf/Makefile.in 2007-02-20 13:09:02.000000000 +0000 --- gsl-1.10/cdf/Makefile.in 2007-09-13 16:41:38.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 67,83 **** ../complex/libgslcomplex.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslcdf_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslcdf_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 63,80 ---- ../complex/libgslcomplex.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslcdf_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslcdf_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 111,116 **** --- 108,114 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 118,124 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 116,121 ---- *************** *** 126,142 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 123,136 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 148,156 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 142,149 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 160,174 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 153,168 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 178,205 **** --- 172,210 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslcdf.la pkginclude_HEADERS = gsl_cdf.h INCLUDES = -I$(top_builddir) *************** *** 251,257 **** rm -f "$${dir}/so_locations"; \ done libgslcdf.la: $(libgslcdf_la_OBJECTS) $(libgslcdf_la_DEPENDENCIES) ! $(LINK) $(libgslcdf_la_LDFLAGS) $(libgslcdf_la_OBJECTS) $(libgslcdf_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 256,262 ---- rm -f "$${dir}/so_locations"; \ done libgslcdf.la: $(libgslcdf_la_OBJECTS) $(libgslcdf_la_DEPENDENCIES) ! $(LINK) $(libgslcdf_la_OBJECTS) $(libgslcdf_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 261,267 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 266,272 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 283,295 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 288,296 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 354,362 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 355,363 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 365,371 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 366,372 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 377,383 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 378,384 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 427,448 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 428,448 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 460,466 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 460,466 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 494,500 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 494,500 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 508,519 **** --- 508,527 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 533,553 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 541,564 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/nbinomial.c gsl-1.10/cdf/nbinomial.c *** gsl-1.9/cdf/nbinomial.c 2006-03-09 15:53:02.000000000 +0000 --- gsl-1.10/cdf/nbinomial.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/pareto.c gsl-1.10/cdf/pareto.c *** gsl-1.9/cdf/pareto.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cdf/pareto.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* cdf/pareto.c * ! * Copyright (C) 2003 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* cdf/pareto.c * ! * Copyright (C) 2003, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/paretoinv.c gsl-1.10/cdf/paretoinv.c *** gsl-1.9/cdf/paretoinv.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cdf/paretoinv.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* cdf/paretoinv.c * ! * Copyright (C) 2003 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* cdf/paretoinv.c * ! * Copyright (C) 2003, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/pascal.c gsl-1.10/cdf/pascal.c *** gsl-1.9/cdf/pascal.c 2006-03-09 15:53:02.000000000 +0000 --- gsl-1.10/cdf/pascal.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* cdf/pascal.c * ! * Copyright (C) 2006 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* cdf/pascal.c * ! * Copyright (C) 2006, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/poisson.c gsl-1.10/cdf/poisson.c *** gsl-1.9/cdf/poisson.c 2006-03-09 15:53:02.000000000 +0000 --- gsl-1.10/cdf/poisson.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/rayleigh.c gsl-1.10/cdf/rayleigh.c *** gsl-1.9/cdf/rayleigh.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cdf/rayleigh.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* cdf/rayleigh.c * ! * Copyright (C) 2003 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* cdf/rayleigh.c * ! * Copyright (C) 2003, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/rayleighinv.c gsl-1.10/cdf/rayleighinv.c *** gsl-1.9/cdf/rayleighinv.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cdf/rayleighinv.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* cdf/rayleighinv.c * ! * Copyright (C) 2003 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* cdf/rayleighinv.c * ! * Copyright (C) 2003, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/tdist.c gsl-1.10/cdf/tdist.c *** gsl-1.9/cdf/tdist.c 2003-07-25 16:18:09.000000000 +0100 --- gsl-1.10/cdf/tdist.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/tdistinv.c gsl-1.10/cdf/tdistinv.c *** gsl-1.9/cdf/tdistinv.c 2006-02-27 19:48:14.000000000 +0000 --- gsl-1.10/cdf/tdistinv.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* cdf/tdistinv.c * * Copyright (C) 2002 Jason H. Stover. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,11 ---- /* cdf/tdistinv.c * + * Copyright (C) 2007 Brian Gough * Copyright (C) 2002 Jason H. Stover. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 130,140 **** if (fabs (step) > 1e-10 * fabs (x)) goto start; } } - - end: - - return x; } double --- 131,145 ---- if (fabs (step) > 1e-10 * fabs (x)) goto start; } + + end: + if (fabs(dP) > GSL_SQRT_DBL_EPSILON * P) + { + GSL_ERROR_VAL("inverse failed to converge", GSL_EFAILED, GSL_NAN); + } + + return x; } } double diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/test.c gsl-1.10/cdf/test.c *** gsl-1.9/cdf/test.c 2007-01-23 16:55:04.000000000 +0000 --- gsl-1.10/cdf/test.c 2007-08-21 21:57:53.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 1128,1133 **** --- 1128,1135 ---- TEST (gsl_cdf_beta_Qinv, ( 3.11356165874561958e-3, 1.2, 1.3), 0.99, TEST_TOL6); TEST (gsl_cdf_beta_Qinv, ( 1.56207166932365759e-4, 1.2, 1.3), 0.999, TEST_TOL6); TEST (gsl_cdf_beta_Qinv, ( 0.0, 1.2, 1.3), 1.0, TEST_TOL6); + + TEST (gsl_cdf_beta_Pinv, ( 0.025, 2133.0, 7868.0), 0.20530562929915865457928654, TEST_TOL6); } void test_gammainv (void) { diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/weibull.c gsl-1.10/cdf/weibull.c *** gsl-1.9/cdf/weibull.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cdf/weibull.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* cdf/weibull.c * ! * Copyright (C) 2003 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* cdf/weibull.c * ! * Copyright (C) 2003, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cdf/weibullinv.c gsl-1.10/cdf/weibullinv.c *** gsl-1.9/cdf/weibullinv.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cdf/weibullinv.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* cdf/weibullinv.c * ! * Copyright (C) 2003 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* cdf/weibullinv.c * ! * Copyright (C) 2003, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ChangeLog gsl-1.10/ChangeLog *** gsl-1.9/ChangeLog 2007-01-09 16:36:17.000000000 +0000 --- gsl-1.10/ChangeLog 2007-09-10 10:17:21.000000000 +0100 *************** *** 1,3 **** --- 1,26 ---- + 2007-09-01 Brian Gough + + * gsl.m4: changed default name to AX_PATH_GSL + + 2007-08-22 Brian Gough + + * configure.ac: started moving definitions out of + acconfig.h (deprecated) + + 2007-07-30 Brian Gough + + * configure.ac: check ieeefp.h for isfinite + + 2007-04-23 Brian Gough + + * acconfig.h (finite): don't redefine finite in terms of isfinite, + which causes problems with system headers, use gsl_finite instead. + + 2007-04-17 Brian Gough + + * configure.ac: use an actual floating point number instead of an + integer for testing long double I/O. + 2007-01-09 Brian Gough * gsl_math.h (M_PI_4): corrected typo in higher digits of M_PI_4 diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cheb/deriv.c gsl-1.10/cheb/deriv.c *** gsl-1.9/cheb/deriv.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cheb/deriv.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cheb/eval.c gsl-1.10/cheb/eval.c *** gsl-1.9/cheb/eval.c 2007-01-29 14:13:37.000000000 +0000 --- gsl-1.10/cheb/eval.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cheb/gsl_chebyshev.h gsl-1.10/cheb/gsl_chebyshev.h *** gsl-1.9/cheb/gsl_chebyshev.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cheb/gsl_chebyshev.h 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cheb/init.c gsl-1.10/cheb/init.c *** gsl-1.9/cheb/init.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cheb/init.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cheb/integ.c gsl-1.10/cheb/integ.c *** gsl-1.9/cheb/integ.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cheb/integ.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cheb/Makefile.in gsl-1.10/cheb/Makefile.in *** gsl-1.9/cheb/Makefile.in 2007-02-20 13:09:02.000000000 +0000 --- gsl-1.10/cheb/Makefile.in 2007-09-13 16:41:38.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 57,73 **** test_DEPENDENCIES = libgslcheb.la ../ieee-utils/libgslieeeutils.la \ ../test/libgsltest.la ../sys/libgslsys.la ../err/libgslerr.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslcheb_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslcheb_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 53,70 ---- test_DEPENDENCIES = libgslcheb.la ../ieee-utils/libgslieeeutils.la \ ../test/libgsltest.la ../sys/libgslsys.la ../err/libgslerr.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslcheb_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslcheb_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 101,106 **** --- 98,104 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 108,114 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 106,111 ---- *************** *** 116,132 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 113,126 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 138,146 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 132,139 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 150,164 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 143,158 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 168,195 **** --- 162,200 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslcheb.la pkginclude_HEADERS = gsl_chebyshev.h INCLUDES = -I$(top_builddir) *************** *** 240,246 **** rm -f "$${dir}/so_locations"; \ done libgslcheb.la: $(libgslcheb_la_OBJECTS) $(libgslcheb_la_DEPENDENCIES) ! $(LINK) $(libgslcheb_la_LDFLAGS) $(libgslcheb_la_OBJECTS) $(libgslcheb_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 245,251 ---- rm -f "$${dir}/so_locations"; \ done libgslcheb.la: $(libgslcheb_la_OBJECTS) $(libgslcheb_la_DEPENDENCIES) ! $(LINK) $(libgslcheb_la_OBJECTS) $(libgslcheb_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 250,256 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 255,261 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 272,284 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 277,285 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 343,351 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 344,352 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 354,360 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 355,361 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 366,372 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 367,373 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 416,437 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 417,437 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 449,455 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 449,455 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 483,489 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 483,489 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 497,508 **** --- 497,516 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 522,542 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 530,553 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/cheb/test.c gsl-1.10/cheb/test.c *** gsl-1.9/cheb/test.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/cheb/test.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/combination/combination.c gsl-1.10/combination/combination.c *** gsl-1.9/combination/combination.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/combination/combination.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 5,11 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 5,11 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/combination/file.c gsl-1.10/combination/file.c *** gsl-1.9/combination/file.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/combination/file.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 5,11 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 5,11 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/combination/gsl_combination.h gsl-1.10/combination/gsl_combination.h *** gsl-1.9/combination/gsl_combination.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/combination/gsl_combination.h 2007-07-02 17:29:29.000000000 +0100 *************** *** 5,11 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 5,11 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/combination/init.c gsl-1.10/combination/init.c *** gsl-1.9/combination/init.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/combination/init.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 5,11 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 5,11 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/combination/Makefile.in gsl-1.10/combination/Makefile.in *** gsl-1.9/combination/Makefile.in 2007-02-20 13:09:02.000000000 +0000 --- gsl-1.10/combination/Makefile.in 2007-09-13 16:41:38.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 58,74 **** ../block/libgslblock.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslcombination_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslcombination_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 54,71 ---- ../block/libgslblock.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslcombination_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslcombination_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 102,107 **** --- 99,105 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 109,115 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 107,112 ---- *************** *** 117,133 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 114,127 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 139,147 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 133,140 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 151,165 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 144,159 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 169,196 **** --- 163,201 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslcombination.la pkginclude_HEADERS = gsl_combination.h INCLUDES = -I$(top_builddir) -I$(top_srcdir) *************** *** 242,248 **** rm -f "$${dir}/so_locations"; \ done libgslcombination.la: $(libgslcombination_la_OBJECTS) $(libgslcombination_la_DEPENDENCIES) ! $(LINK) $(libgslcombination_la_LDFLAGS) $(libgslcombination_la_OBJECTS) $(libgslcombination_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 247,253 ---- rm -f "$${dir}/so_locations"; \ done libgslcombination.la: $(libgslcombination_la_OBJECTS) $(libgslcombination_la_DEPENDENCIES) ! $(LINK) $(libgslcombination_la_OBJECTS) $(libgslcombination_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 252,258 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 257,263 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 274,286 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 279,287 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 345,353 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 346,354 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 356,362 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 357,363 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 368,374 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 369,375 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 418,439 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 419,439 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 451,457 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 451,457 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 485,491 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 485,491 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 499,510 **** --- 499,518 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 524,544 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS #noinst_PROGRAMS = demo --- 532,555 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS #noinst_PROGRAMS = demo diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/combination/test.c gsl-1.10/combination/test.c *** gsl-1.9/combination/test.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/combination/test.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 5,11 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 5,11 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/complex/ChangeLog gsl-1.10/complex/ChangeLog *** gsl-1.9/complex/ChangeLog 2003-01-25 23:01:22.000000000 +0000 --- gsl-1.10/complex/ChangeLog 2007-09-14 11:51:10.000000000 +0100 *************** *** 1,3 **** --- 1,21 ---- + 2007-09-14 Brian Gough + + * test.c: add a margin of safety on tests for released versions, + as in special functions + + 2007-08-30 Brian Gough + + * Makefile.am (test_SOURCES): added missing file results2.h + + 2007-08-30 Brian Gough + + * Makefile.am (test_SOURCES): added missing file results2.h + + 2007-08-15 Brian Gough + + * math.c (gsl_complex_pow): handle (0,0)^(0,0) (x,y)^(1,0) + and (x,y)^(-1,0) as special cases + 2003-01-25 Brian Gough * math.c (gsl_complex_arccsc_real): fixed bug for incorrect sign diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/complex/gsl_complex.h gsl-1.10/complex/gsl_complex.h *** gsl-1.9/complex/gsl_complex.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/complex/gsl_complex.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* complex/gsl_complex.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* complex/gsl_complex.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/complex/gsl_complex_math.h gsl-1.10/complex/gsl_complex_math.h *** gsl-1.9/complex/gsl_complex_math.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/complex/gsl_complex_math.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* complex/gsl_complex_math.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2004 Jorma Olavi Tähtinen, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* complex/gsl_complex_math.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2004, 2007 Jorma Olavi Tähtinen, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/complex/Makefile.am gsl-1.10/complex/Makefile.am *** gsl-1.9/complex/Makefile.am 2004-09-11 14:45:31.000000000 +0100 --- gsl-1.10/complex/Makefile.am 2007-08-30 11:51:45.000000000 +0100 *************** *** 10,15 **** TESTS = $(check_PROGRAMS) check_PROGRAMS = test ! test_SOURCES = test.c results.h results1.h results_real.h test_LDADD = libgslcomplex.la ../err/libgslerr.la ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la --- 10,15 ---- TESTS = $(check_PROGRAMS) check_PROGRAMS = test ! test_SOURCES = test.c results.h results1.h results2.h results_real.h test_LDADD = libgslcomplex.la ../err/libgslerr.la ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/complex/Makefile.in gsl-1.10/complex/Makefile.in *** gsl-1.9/complex/Makefile.in 2007-02-20 13:09:03.000000000 +0000 --- gsl-1.10/complex/Makefile.in 2007-09-13 16:41:38.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 57,73 **** test_DEPENDENCIES = libgslcomplex.la ../err/libgslerr.la \ ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la \ ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslcomplex_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslcomplex_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 53,70 ---- test_DEPENDENCIES = libgslcomplex.la ../err/libgslerr.la \ ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la \ ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslcomplex_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslcomplex_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 101,106 **** --- 98,104 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 108,114 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 106,111 ---- *************** *** 116,132 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 113,126 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 138,146 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 132,139 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 150,164 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 143,158 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 168,195 **** --- 162,200 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslcomplex.la pkginclude_HEADERS = gsl_complex.h gsl_complex_math.h *************** *** 197,203 **** INCLUDES = -I$(top_srcdir) libgslcomplex_la_SOURCES = math.c TESTS = $(check_PROGRAMS) ! test_SOURCES = test.c results.h results1.h results_real.h test_LDADD = libgslcomplex.la ../err/libgslerr.la ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la all: all-am --- 202,208 ---- INCLUDES = -I$(top_srcdir) libgslcomplex_la_SOURCES = math.c TESTS = $(check_PROGRAMS) ! test_SOURCES = test.c results.h results1.h results2.h results_real.h test_LDADD = libgslcomplex.la ../err/libgslerr.la ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la all: all-am *************** *** 242,248 **** rm -f "$${dir}/so_locations"; \ done libgslcomplex.la: $(libgslcomplex_la_OBJECTS) $(libgslcomplex_la_DEPENDENCIES) ! $(LINK) $(libgslcomplex_la_LDFLAGS) $(libgslcomplex_la_OBJECTS) $(libgslcomplex_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 247,253 ---- rm -f "$${dir}/so_locations"; \ done libgslcomplex.la: $(libgslcomplex_la_OBJECTS) $(libgslcomplex_la_DEPENDENCIES) ! $(LINK) $(libgslcomplex_la_OBJECTS) $(libgslcomplex_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 252,258 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 257,263 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 274,286 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 279,287 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 345,353 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 346,354 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 356,362 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 357,363 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 368,374 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 369,375 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 418,439 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 419,439 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 451,457 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 451,457 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 485,491 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 485,491 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 499,510 **** --- 499,518 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 524,544 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 532,555 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/complex/math.c gsl-1.10/complex/math.c *** gsl-1.9/complex/math.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/complex/math.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* complex/math.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jorma Olavi Tähtinen, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* complex/math.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jorma Olavi Tähtinen, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 354,360 **** if (GSL_REAL (a) == 0 && GSL_IMAG (a) == 0.0) { ! GSL_SET_COMPLEX (&z, 0.0, 0.0); } else { --- 354,375 ---- if (GSL_REAL (a) == 0 && GSL_IMAG (a) == 0.0) { ! if (GSL_REAL (b) == 0 && GSL_IMAG (b) == 0.0) ! { ! GSL_SET_COMPLEX (&z, 1.0, 0.0); ! } ! else ! { ! GSL_SET_COMPLEX (&z, 0.0, 0.0); ! } ! } ! else if (GSL_REAL (b) == 1.0 && GSL_IMAG (b) == 0.0) ! { ! return a; ! } ! else if (GSL_REAL (b) == -1.0 && GSL_IMAG (b) == 0.0) ! { ! return gsl_complex_inverse (a); } else { diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/complex/results2.h gsl-1.10/complex/results2.h *** gsl-1.9/complex/results2.h 1970-01-01 01:00:00.000000000 +0100 --- gsl-1.10/complex/results2.h 2007-08-15 19:10:05.000000000 +0100 *************** *** 0 **** --- 1,42 ---- + {FN (pow), ARG(1.0e+00,0.0e+00), ARG(0.0e+00,0.0e+00), RES(1e0, 0.0)}, + {FN (pow), ARG(1.0e+00,0.0e+00), ARG(1.0e+00,0.0e+00), RES(1e0, 0.0)}, + {FN (pow), ARG(1.0e+00,0.0e+00), ARG(0.0e+00,1.0e+00), RES(1e0, 0.0)}, + {FN (pow), ARG(1.0e+00,0.0e+00), ARG(-1.0e+00,0.0e+00), RES(1e0, 0.0)}, + {FN (pow), ARG(1.0e+00,0.0e+00), ARG(0.0e+00,-1.0e+00), RES(1e0, 0.0)}, + {FN (pow), ARG(1.0e+00,0.0e+00), ARG(5.0e-01,1.00000000000000005551e-01), RES(1e0, 0.0)}, + {FN (pow), ARG(1.0e+00,0.0e+00), ARG(5.0e-01,-1.00000000000000005551e-01), RES(1e0, 0.0)}, + {FN (pow), ARG(0.0e+00,1.0e+00), ARG(0.0e+00,0.0e+00), RES(1e0, 0.0)}, + {FN (pow), ARG(0.0e+00,1.0e+00), ARG(1.0e+00,0.0e+00), RES(0, 1)}, + {FN (pow), ARG(0.0e+00,1.0e+00), ARG(0.0e+00,1.0e+00), RES(2.0787957635076190855e-1, 0.0)}, + {FN (pow), ARG(0.0e+00,1.0e+00), ARG(-1.0e+00,0.0e+00), RES(0, -1)}, + {FN (pow), ARG(0.0e+00,1.0e+00), ARG(0.0e+00,-1.0e+00), RES(4.8104773809653516555e0, 0.0)}, + {FN (pow), ARG(0.0e+00,1.0e+00), ARG(5.0e-01,1.00000000000000005551e-01), RES(6.0431891044739184057e-1, 6.0431891044739184057e-1)}, + {FN (pow), ARG(0.0e+00,1.0e+00), ARG(5.0e-01,-1.00000000000000005551e-01), RES(8.2737771622906514822e-1, 8.2737771622906514822e-1)}, + {FN (pow), ARG(-1.0e+00,0.0e+00), ARG(0.0e+00,0.0e+00), RES(1e0, 0.0)}, + {FN (pow), ARG(-1.0e+00,0.0e+00), ARG(1.0e+00,0.0e+00), RES(-1e0, 0.0)}, + {FN (pow), ARG(-1.0e+00,0.0e+00), ARG(0.0e+00,1.0e+00), RES(4.3213918263772249774e-2, 0.0)}, + {FN (pow), ARG(-1.0e+00,0.0e+00), ARG(-1.0e+00,0.0e+00), RES(-1e0, 0.0)}, + {FN (pow), ARG(-1.0e+00,0.0e+00), ARG(0.0e+00,-1.0e+00), RES(2.3140692632779269006e1, 0.0)}, + {FN (pow), ARG(-1.0e+00,0.0e+00), ARG(5.0e-01,1.00000000000000005551e-01), RES(0, 7.3040269104864559813e-1)}, + {FN (pow), ARG(-1.0e+00,0.0e+00), ARG(5.0e-01,-1.00000000000000005551e-01), RES(0, 1.3691077706248469087e0)}, + {FN (pow), ARG(0.0e+00,-1.0e+00), ARG(0.0e+00,0.0e+00), RES(1e0, 0.0)}, + {FN (pow), ARG(0.0e+00,-1.0e+00), ARG(1.0e+00,0.0e+00), RES(0, -1)}, + {FN (pow), ARG(0.0e+00,-1.0e+00), ARG(0.0e+00,1.0e+00), RES(4.8104773809653516555e0, 0.0)}, + {FN (pow), ARG(0.0e+00,-1.0e+00), ARG(-1.0e+00,0.0e+00), RES(0, 1)}, + {FN (pow), ARG(0.0e+00,-1.0e+00), ARG(0.0e+00,-1.0e+00), RES(2.0787957635076190855e-1, 0.0)}, + {FN (pow), ARG(0.0e+00,-1.0e+00), ARG(5.0e-01,1.00000000000000005551e-01), RES(8.2737771622906514822e-1, -8.2737771622906514822e-1)}, + {FN (pow), ARG(0.0e+00,-1.0e+00), ARG(5.0e-01,-1.00000000000000005551e-01), RES(6.0431891044739184057e-1, -6.0431891044739184057e-1)}, + {FN (pow), ARG(5.0e-01,1.00000000000000005551e-01), ARG(0.0e+00,0.0e+00), RES(1e0, 0.0)}, + {FN (pow), ARG(5.0e-01,1.00000000000000005551e-01), ARG(1.0e+00,0.0e+00), RES(5e-1, 1.0000000000000000555e-1)}, + {FN (pow), ARG(5.0e-01,1.00000000000000005551e-01), ARG(0.0e+00,1.0e+00), RES(6.4160554864378080418e-1, -5.1201864456768275590e-1)}, + {FN (pow), ARG(5.0e-01,1.00000000000000005551e-01), ARG(-1.0e+00,0.0e+00), RES(1.9230769230769230687e0, -3.8461538461538463509e-1)}, + {FN (pow), ARG(5.0e-01,1.00000000000000005551e-01), ARG(0.0e+00,-1.0e+00), RES(9.5219021866126714108e-1, 7.5987364224031834571e-1)}, + {FN (pow), ARG(5.0e-01,1.00000000000000005551e-01), ARG(5.0e-01,1.00000000000000005551e-01), RES(6.9977300530987816719e-1, 2.1940939105372143160e-2)}, + {FN (pow), ARG(5.0e-01,1.00000000000000005551e-01), ARG(5.0e-01,-1.00000000000000005551e-01), RES(7.1829191470060938876e-1, 1.2038189555821612762e-1)}, + {FN (pow), ARG(5.0e-01,-1.00000000000000005551e-01), ARG(0.0e+00,0.0e+00), RES(1e0, 0.0)}, + {FN (pow), ARG(5.0e-01,-1.00000000000000005551e-01), ARG(1.0e+00,0.0e+00), RES(5e-1, -1.0000000000000000555e-1)}, + {FN (pow), ARG(5.0e-01,-1.00000000000000005551e-01), ARG(0.0e+00,1.0e+00), RES(9.5219021866126714108e-1, -7.5987364224031834571e-1)}, + {FN (pow), ARG(5.0e-01,-1.00000000000000005551e-01), ARG(-1.0e+00,0.0e+00), RES(1.9230769230769230687e0, 3.8461538461538463509e-1)}, + {FN (pow), ARG(5.0e-01,-1.00000000000000005551e-01), ARG(0.0e+00,-1.0e+00), RES(6.4160554864378080418e-1, 5.1201864456768275590e-1)}, + {FN (pow), ARG(5.0e-01,-1.00000000000000005551e-01), ARG(5.0e-01,1.00000000000000005551e-01), RES(7.1829191470060938876e-1, -1.2038189555821612762e-1)}, + {FN (pow), ARG(5.0e-01,-1.00000000000000005551e-01), ARG(5.0e-01,-1.00000000000000005551e-01), RES(6.9977300530987816719e-1, -2.1940939105372143160e-2)}, diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/complex/test.c gsl-1.10/complex/test.c *** gsl-1.9/complex/test.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/complex/test.c 2007-09-14 11:51:10.000000000 +0100 *************** *** 1,10 **** /* complex/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* complex/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 46,51 **** --- 46,64 ---- double fy; }; + struct fzz + { + char *name; + gsl_complex (*f) (gsl_complex z1, gsl_complex z2); + double x1; + double y1; + double x2; + double y2; + double fx; + double fy; + }; + + struct freal { char *name; *************** *** 73,89 **** --- 86,118 ---- {"", 0, 0, 0, 0, 0} }; + struct fzz listzz[] = + { + {FN (pow), ARG(0.0,0.0), ARG(0.0,0.0), RES(1.0, 0.0)}, + #include "results2.h" + {"", 0, 0, 0, 0, 0, 0, 0} + }; + struct freal listreal[] = { #include "results_real.h" {"", 0, 0, 0, 0} }; + #ifndef TEST_FACTOR + #ifdef RELEASED + #define TEST_FACTOR 100.0 + #else + #define TEST_FACTOR 1.0 + #endif + #endif int main (void) { size_t i = 0; + const double tol = TEST_FACTOR * 10 * GSL_DBL_EPSILON; + const double tolf = TEST_FACTOR * 10 * GSL_FLT_EPSILON; gsl_ieee_env_setup(); *************** *** 94,102 **** double t = 2.0 * M_PI * i / 5 ; double x = r * cos(t), y = r * sin(t) ; gsl_complex z = gsl_complex_polar (r, t) ; ! gsl_test_rel (GSL_REAL(z), x, 10 * GSL_DBL_EPSILON, "gsl_complex_polar real part at (r=%g,t=%g)", r, t); ! ! gsl_test_rel (GSL_IMAG(z), y, 10 * GSL_DBL_EPSILON, "gsl_complex_polar imag part at (r=%g,t=%g)", r, t); } i = 0; --- 123,130 ---- double t = 2.0 * M_PI * i / 5 ; double x = r * cos(t), y = r * sin(t) ; gsl_complex z = gsl_complex_polar (r, t) ; ! gsl_test_rel (GSL_REAL(z), x, tol, "gsl_complex_polar real part at (r=%g,t=%g)", r, t); ! gsl_test_rel (GSL_IMAG(z), y, tol, "gsl_complex_polar imag part at (r=%g,t=%g)", r, t); } i = 0; *************** *** 106,112 **** struct f t = list[i]; gsl_complex z = gsl_complex_rect (t.x, t.y); double f = (t.f) (z); ! gsl_test_rel (f, t.fx, 10 * GSL_DBL_EPSILON, "%s at (%g,%g)", t.name, t.x, t.y); i++; } --- 134,140 ---- struct f t = list[i]; gsl_complex z = gsl_complex_rect (t.x, t.y); double f = (t.f) (z); ! gsl_test_rel (f, t.fx, tol, "%s at (%g,%g)", t.name, t.x, t.y); i++; } *************** *** 128,135 **** printf("ey = "); gsl_ieee_fprintf_double (stdout, &t.fy); printf("\n"); #endif ! gsl_test_rel (fx, t.fx, 10 * GSL_DBL_EPSILON, "%s real part at (%g,%g)", t.name, t.x, t.y); ! gsl_test_rel (fy, t.fy, 10 * GSL_DBL_EPSILON, "%s imag part at (%g,%g)", t.name, t.x, t.y); i++; } --- 156,189 ---- printf("ey = "); gsl_ieee_fprintf_double (stdout, &t.fy); printf("\n"); #endif ! gsl_test_rel (fx, t.fx, tol, "%s real part at (%g,%g)", t.name, t.x, t.y); ! gsl_test_rel (fy, t.fy, tol, "%s imag part at (%g,%g)", t.name, t.x, t.y); ! i++; ! } ! ! i = 0; ! ! while (listzz[i].f) ! { ! struct fzz t = listzz[i]; ! gsl_complex z1 = gsl_complex_rect (t.x1, t.y1); ! gsl_complex z2 = gsl_complex_rect (t.x2, t.y2); ! gsl_complex fz = (t.f) (z1, z2); ! double fx = GSL_REAL (fz), fy = GSL_IMAG (fz); ! ! #ifdef DEBUG ! printf("x1 = "); gsl_ieee_fprintf_double (stdout, &t.x1); printf("\n"); ! printf("y1 = "); gsl_ieee_fprintf_double (stdout, &t.y1); printf("\n"); ! printf("x2 = "); gsl_ieee_fprintf_double (stdout, &t.x2); printf("\n"); ! printf("y2 = "); gsl_ieee_fprintf_double (stdout, &t.y2); printf("\n"); ! printf("fx = "); gsl_ieee_fprintf_double (stdout, &fx); printf("\n"); ! printf("ex = "); gsl_ieee_fprintf_double (stdout, &t.fx); printf("\n"); ! printf("fy = "); gsl_ieee_fprintf_double (stdout, &fy); printf("\n"); ! printf("ey = "); gsl_ieee_fprintf_double (stdout, &t.fy); printf("\n"); ! #endif ! ! gsl_test_rel (fx, t.fx, tolf, "%s real part at (%g,%g;%g,%g)", t.name, t.x1, t.y1, t.x2, t.y2); ! gsl_test_rel (fy, t.fy, tolf, "%s imag part at (%g,%g;%g,%g)", t.name, t.x1, t.y1, t.x2, t.y2); i++; } *************** *** 150,157 **** printf("ey = "); gsl_ieee_fprintf_double (stdout, &t.fy); printf("\n"); #endif ! gsl_test_rel (fx, t.fx, 10 * GSL_DBL_EPSILON, "%s real part at (%g,0)", t.name, t.x); ! gsl_test_rel (fy, t.fy, 10 * GSL_DBL_EPSILON, "%s imag part at (%g,0)", t.name, t.x); i++; } --- 204,211 ---- printf("ey = "); gsl_ieee_fprintf_double (stdout, &t.fy); printf("\n"); #endif ! gsl_test_rel (fx, t.fx, tol, "%s real part at (%g,0)", t.name, t.x); ! gsl_test_rel (fy, t.fy, tol, "%s imag part at (%g,0)", t.name, t.x); i++; } diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/config.guess gsl-1.10/config.guess *** gsl-1.9/config.guess 2006-03-21 15:21:43.000000000 +0000 --- gsl-1.10/config.guess 2007-04-05 15:20:16.000000000 +0100 *************** *** 1,9 **** #! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, ! # 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. ! timestamp='2005-12-13' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by --- 1,10 ---- #! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, ! # 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, ! # Inc. ! timestamp='2006-07-02' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by *************** *** 106,112 **** trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; : ${TMPDIR=/tmp} ; ! { tmp=`(umask 077 && mktemp -d -q "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; --- 107,113 ---- trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; : ${TMPDIR=/tmp} ; ! { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; *************** *** 206,213 **** *:ekkoBSD:*:*) echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} exit ;; macppc:MirBSD:*:*) ! echo powerppc-unknown-mirbsd${UNAME_RELEASE} exit ;; *:MirBSD:*:*) echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} --- 207,217 ---- *:ekkoBSD:*:*) echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} exit ;; + *:SolidBSD:*:*) + echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} + exit ;; macppc:MirBSD:*:*) ! echo powerpc-unknown-mirbsd${UNAME_RELEASE} exit ;; *:MirBSD:*:*) echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} *************** *** 764,770 **** echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} exit ;; *:FreeBSD:*:*) ! echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin --- 768,781 ---- echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} exit ;; *:FreeBSD:*:*) ! case ${UNAME_MACHINE} in ! pc98) ! echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; ! amd64) ! echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; ! *) ! echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; ! esac exit ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin *************** *** 779,786 **** i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; ! x86:Interix*:[345]*) ! echo i586-pc-interix${UNAME_RELEASE}|sed -e 's/\..*//' exit ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks --- 790,800 ---- i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; ! x86:Interix*:[3456]*) ! echo i586-pc-interix${UNAME_RELEASE} ! exit ;; ! EM64T:Interix*:[3456]*) ! echo x86_64-unknown-interix${UNAME_RELEASE} exit ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks *************** *** 817,822 **** --- 831,839 ---- arm*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; + avr32*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; cris:Linux:*:*) echo cris-axis-linux-gnu exit ;; *************** *** 851,857 **** #endif #endif EOF ! eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '/^CPU/{s: ::g;p;}'`" test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; mips64:Linux:*:*) --- 868,878 ---- #endif #endif EOF ! eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' ! /^CPU/{ ! s: ::g ! p ! }'`" test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; mips64:Linux:*:*) *************** *** 870,876 **** #endif #endif EOF ! eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '/^CPU/{s: ::g;p;}'`" test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; or32:Linux:*:*) --- 891,901 ---- #endif #endif EOF ! eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' ! /^CPU/{ ! s: ::g ! p ! }'`" test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; or32:Linux:*:*) *************** *** 967,973 **** LIBC=gnulibc1 # endif #else ! #if defined(__INTEL_COMPILER) || defined(__PGI) LIBC=gnu #else LIBC=gnuaout --- 992,998 ---- LIBC=gnulibc1 # endif #else ! #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) LIBC=gnu #else LIBC=gnuaout *************** *** 977,983 **** LIBC=dietlibc #endif EOF ! eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n '/^LIBC/{s: ::g;p;}'`" test x"${LIBC}" != x && { echo "${UNAME_MACHINE}-pc-linux-${LIBC}" exit --- 1002,1012 ---- LIBC=dietlibc #endif EOF ! eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' ! /^LIBC/{ ! s: ::g ! p ! }'`" test x"${LIBC}" != x && { echo "${UNAME_MACHINE}-pc-linux-${LIBC}" exit diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/config.h.in gsl-1.10/config.h.in *** gsl-1.9/config.h.in 2007-02-20 13:10:18.000000000 +0000 --- gsl-1.10/config.h.in 2007-09-13 16:43:58.000000000 +0100 *************** *** 62,70 **** --- 62,88 ---- /* Define to 1 if you don't have `vprintf' but do have `_doprnt.' */ #undef HAVE_DOPRNT + /* Defined if you have ansi EXIT_SUCCESS and EXIT_FAILURE in stdlib.h */ + #undef HAVE_EXIT_SUCCESS_AND_FAILURE + + /* Defined on architectures with excess floating-point precision */ + #undef HAVE_EXTENDED_PRECISION_REGISTERS + + /* Define if x86 processor has sse extensions. */ + #undef HAVE_FPU_X86_SSE + /* Define to 1 if you have the header file. */ #undef HAVE_IEEEFP_H + /* Define this if IEEE comparisons work correctly (e.g. NaN != NaN) */ + #undef HAVE_IEEE_COMPARISONS + + /* Define this if IEEE denormalized numbers are available */ + #undef HAVE_IEEE_DENORMALS + + /* Define if you have inline */ + #undef HAVE_INLINE + /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H *************** *** 80,85 **** --- 98,106 ---- /* Define to 1 if you have the header file. */ #undef HAVE_MEMORY_H + /* Define this if printf can handle %Lf for long double */ + #undef HAVE_PRINTF_LONGDOUBLE + /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H *************** *** 131,176 **** /* Define to the version of this package. */ #undef PACKAGE_VERSION /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS /* Version number of package */ #undef VERSION /* Define to `__inline__' or `__inline' if that's what the C compiler calls it, or to nothing if 'inline' is not supported under any name. */ #ifndef __cplusplus #undef inline #endif ! /* Define to `unsigned' if does not define. */ #undef size_t /* Define to empty if the keyword `volatile' does not work. Warning: valid code using `volatile' can become incorrect without. Disable with care. */ #undef volatile - /* Defined if this is an official release */ - #undef RELEASED - - /* Define if you have inline */ - #undef HAVE_INLINE - /* Define if you need to hide the static definitions of inline functions */ #undef HIDE_INLINE_STATIC - /* Defined if you have ansi EXIT_SUCCESS and EXIT_FAILURE in stdlib.h */ - #undef HAVE_EXIT_SUCCESS_AND_FAILURE - /* Use 0 and 1 for EXIT_SUCCESS and EXIT_FAILURE if we don't have them */ #if !HAVE_EXIT_SUCCESS_AND_FAILURE #define EXIT_SUCCESS 0 #define EXIT_FAILURE 1 #endif - /* Define this if printf can handle %Lf for long double */ - #undef HAVE_PRINTF_LONGDOUBLE - /* Define one of these if you have a known IEEE arithmetic interface */ #undef HAVE_GNUSPARC_IEEE_INTERFACE #undef HAVE_GNUM68K_IEEE_INTERFACE --- 152,193 ---- /* Define to the version of this package. */ #undef PACKAGE_VERSION + /* Defined if this is an official release */ + #undef RELEASED + /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS /* Version number of package */ #undef VERSION + /* Define to 1 if type `char' is unsigned and you are not using gcc. */ + #ifndef __CHAR_UNSIGNED__ + # undef __CHAR_UNSIGNED__ + #endif + /* Define to `__inline__' or `__inline' if that's what the C compiler calls it, or to nothing if 'inline' is not supported under any name. */ #ifndef __cplusplus #undef inline #endif ! /* Define to `unsigned int' if does not define. */ #undef size_t /* Define to empty if the keyword `volatile' does not work. Warning: valid code using `volatile' can become incorrect without. Disable with care. */ #undef volatile /* Define if you need to hide the static definitions of inline functions */ #undef HIDE_INLINE_STATIC /* Use 0 and 1 for EXIT_SUCCESS and EXIT_FAILURE if we don't have them */ #if !HAVE_EXIT_SUCCESS_AND_FAILURE #define EXIT_SUCCESS 0 #define EXIT_FAILURE 1 #endif /* Define one of these if you have a known IEEE arithmetic interface */ #undef HAVE_GNUSPARC_IEEE_INTERFACE #undef HAVE_GNUM68K_IEEE_INTERFACE *************** *** 190,201 **** #undef HAVE_DARWIN_IEEE_INTERFACE #undef HAVE_DARWIN86_IEEE_INTERFACE - /* Define this if IEEE comparisons work correctly (e.g. NaN != NaN) */ - #undef HAVE_IEEE_COMPARISONS - - /* Define this if IEEE denormalized numbers are available */ - #undef HAVE_IEEE_DENORMALS - /* Define a rounding function which moves extended precision values out of registers and rounds them to double-precision. This should be used *sparingly*, in places where it is necessary to keep --- 207,212 ---- *************** *** 210,217 **** precision mode unless you compile a separate version of the library with HAVE_EXTENDED_PRECISION_REGISTERS turned off. */ - #undef HAVE_EXTENDED_PRECISION_REGISTERS - #if HAVE_EXTENDED_PRECISION_REGISTERS #define GSL_COERCE_DBL(x) (gsl_coerce_double(x)) #else --- 221,226 ---- *************** *** 257,268 **** #endif #if !HAVE_DECL_FINITE - #if HAVE_DECL_ISFINITE - #define finite isfinite - #else #define finite gsl_finite #endif - #endif #if !HAVE_DECL_ISNAN #define isnan gsl_isnan --- 266,273 ---- diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/config.sub gsl-1.10/config.sub *** gsl-1.9/config.sub 2006-03-21 15:21:43.000000000 +0000 --- gsl-1.10/config.sub 2007-04-05 15:20:16.000000000 +0100 *************** *** 1,9 **** #! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, ! # 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. ! timestamp='2005-12-11' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software --- 1,10 ---- #! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, ! # 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, ! # Inc. ! timestamp='2006-09-20' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software *************** *** 240,246 **** | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ ! | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \ | bfin \ | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ --- 241,247 ---- | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ ! | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ | bfin \ | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ *************** *** 248,254 **** | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ ! | m32r | m32rle | m68000 | m68k | m88k | maxq | mcore \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ --- 249,256 ---- | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ ! | m32c | m32r | m32rle | m68000 | m68k | m88k \ ! | maxq | mb | microblaze | mcore \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ *************** *** 268,293 **** | mn10200 | mn10300 \ | mt \ | msp430 \ | ns16k | ns32k \ | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ ! | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ ! | sparc | sparc64 | sparc64b | sparc86x | sparclet | sparclite \ ! | sparcv8 | sparcv9 | sparcv9b \ ! | strongarm \ | tahoe | thumb | tic4x | tic80 | tron \ | v850 | v850e \ | we32k \ ! | x86 | xscale | xscalee[bl] | xstormy16 | xtensa \ | z8k) basic_machine=$basic_machine-unknown ;; - m32c) - basic_machine=$basic_machine-unknown - ;; m6811 | m68hc11 | m6812 | m68hc12) # Motorola 68HC11/12. basic_machine=$basic_machine-unknown --- 270,294 ---- | mn10200 | mn10300 \ | mt \ | msp430 \ + | nios | nios2 \ | ns16k | ns32k \ | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ ! | score \ ! | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ ! | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ ! | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ ! | spu | strongarm \ | tahoe | thumb | tic4x | tic80 | tron \ | v850 | v850e \ | we32k \ ! | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ | z8k) basic_machine=$basic_machine-unknown ;; m6811 | m68hc11 | m6812 | m68hc12) # Motorola 68HC11/12. basic_machine=$basic_machine-unknown *************** *** 317,323 **** | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ ! | avr-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ | clipper-* | craynv-* | cydra-* \ --- 318,324 ---- | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ ! | avr-* | avr32-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ | clipper-* | craynv-* | cydra-* \ *************** *** 328,334 **** | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ ! | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | maxq-* | mcore-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ --- 329,335 ---- | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ ! | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | maxq-* | mcore-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ *************** *** 350,378 **** | mmix-* \ | mt-* \ | msp430-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ | romp-* | rs6000-* \ ! | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ ! | sparc-* | sparc64-* | sparc64b-* | sparc86x-* | sparclet-* \ | sparclite-* \ ! | sparcv8-* | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \ | tahoe-* | thumb-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tron-* \ | v850-* | v850e-* | vax-* \ | we32k-* \ ! | x86-* | x86_64-* | xps100-* | xscale-* | xscalee[bl]-* \ | xstormy16-* | xtensa-* \ | ymp-* \ | z8k-*) ;; - m32c-*) - ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) --- 351,378 ---- | mmix-* \ | mt-* \ | msp430-* \ + | nios-* | nios2-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ | romp-* | rs6000-* \ ! | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ ! | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ ! | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \ | tahoe-* | thumb-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tron-* \ | v850-* | v850e-* | vax-* \ | we32k-* \ ! | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ | xstormy16-* | xtensa-* \ | ymp-* \ | z8k-*) ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) *************** *** 818,823 **** --- 818,829 ---- pc532 | pc532-*) basic_machine=ns32k-pc532 ;; + pc98) + basic_machine=i386-pc + ;; + pc98-*) + basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc ;; *************** *** 904,909 **** --- 910,919 ---- sb1el) basic_machine=mipsisa64sb1el-unknown ;; + sde) + basic_machine=mipsisa32-sde + os=-elf + ;; sei) basic_machine=mips-sei os=-seiux *************** *** 1120,1126 **** sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; ! sparc | sparcv8 | sparcv9 | sparcv9b) basic_machine=sparc-sun ;; cydra) --- 1130,1136 ---- sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; ! sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) basic_machine=sparc-sun ;; cydra) *************** *** 1193,1199 **** | -aos* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ ! | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* | -openbsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ --- 1203,1210 ---- | -aos* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ ! | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ ! | -openbsd* | -solidbsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ *************** *** 1208,1214 **** | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ ! | -skyos* | -haiku* | -rdos*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) --- 1219,1225 ---- | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ ! | -skyos* | -haiku* | -rdos* | -toppers*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) *************** *** 1360,1365 **** --- 1371,1382 ---- # system, and we'll never get to this point. case $basic_machine in + score-*) + os=-elf + ;; + spu-*) + os=-elf + ;; *-acorn) os=-riscix1.2 ;; *************** *** 1369,1377 **** arm*-semi) os=-aout ;; ! c4x-* | tic4x-*) ! os=-coff ! ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 --- 1386,1394 ---- arm*-semi) os=-aout ;; ! c4x-* | tic4x-*) ! os=-coff ! ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/configure gsl-1.10/configure *** gsl-1.9/configure 2007-02-20 13:09:19.000000000 +0000 --- gsl-1.10/configure 2007-09-13 16:41:52.000000000 +0100 *************** *** 1,25 **** #! /bin/sh # Guess values for system-dependent variables and create Makefiles. ! # Generated by GNU Autoconf 2.59 for gsl 1.9. # ! # Copyright (C) 2003 Free Software Foundation, Inc. # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## --------------------- ## ## M4sh Initialization. ## ## --------------------- ## ! # Be Bourne compatible if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' ! elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then ! set -o posix fi - DUALCASE=1; export DUALCASE # for MKS sh # Support unset when possible. if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then --- 1,54 ---- #! /bin/sh # Guess values for system-dependent variables and create Makefiles. ! # Generated by GNU Autoconf 2.61 for gsl 1.10. # ! # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, ! # 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## --------------------- ## ## M4sh Initialization. ## ## --------------------- ## ! # Be more Bourne compatible ! DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' ! setopt NO_GLOB_SUBST ! else ! case `(set -o) 2>/dev/null` in ! *posix*) set -o posix ;; ! esac ! ! fi ! ! ! ! ! # PATH needs CR ! # Avoid depending upon Character Ranges. ! as_cr_letters='abcdefghijklmnopqrstuvwxyz' ! as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' ! as_cr_Letters=$as_cr_letters$as_cr_LETTERS ! as_cr_digits='0123456789' ! as_cr_alnum=$as_cr_Letters$as_cr_digits ! ! # The user is always right. ! if test "${PATH_SEPARATOR+set}" != set; then ! echo "#! /bin/sh" >conf$$.sh ! echo "exit 0" >>conf$$.sh ! chmod +x conf$$.sh ! if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then ! PATH_SEPARATOR=';' ! else ! PATH_SEPARATOR=: ! fi ! rm -f conf$$.sh fi # Support unset when possible. if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then *************** *** 29,36 **** fi # Work around bugs in pre-3.0 UWIN ksh. ! $as_unset ENV MAIL MAILPATH PS1='$ ' PS2='> ' PS4='+ ' --- 58,100 ---- fi + # IFS + # We need space, tab and new line, in precisely that order. Quoting is + # there to prevent editors from complaining about space-tab. + # (If _AS_PATH_WALK were called with IFS unset, it would disable word + # splitting by setting IFS to empty value.) + as_nl=' + ' + IFS=" "" $as_nl" + + # Find who we are. Look in the path if we contain no directory separator. + case $0 in + *[\\/]* ) as_myself=$0 ;; + *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR + for as_dir in $PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break + done + IFS=$as_save_IFS + + ;; + esac + # We did not find ourselves, most probably we were run as `sh COMMAND' + # in which case we are not to be found in the path. + if test "x$as_myself" = x; then + as_myself=$0 + fi + if test ! -f "$as_myself"; then + echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 + { (exit 1); exit 1; } + fi + # Work around bugs in pre-3.0 UWIN ksh. ! for as_var in ENV MAIL MAILPATH ! do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var ! done PS1='$ ' PS2='> ' PS4='+ ' *************** *** 44,61 **** if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then eval $as_var=C; export $as_var else ! $as_unset $as_var fi done # Required to use basename. ! if expr a : '\(a\)' >/dev/null 2>&1; then as_expr=expr else as_expr=false fi ! if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then as_basename=basename else as_basename=false --- 108,126 ---- if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then eval $as_var=C; export $as_var else ! ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var fi done # Required to use basename. ! if expr a : '\(a\)' >/dev/null 2>&1 && ! test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi ! if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false *************** *** 63,219 **** # Name of the executable. ! as_me=`$as_basename "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ ! X"$0" : 'X\(/\)$' \| \ ! . : '\(.\)' 2>/dev/null || echo X/"$0" | ! sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; } ! /^X\/\(\/\/\)$/{ s//\1/; q; } ! /^X\/\(\/\).*/{ s//\1/; q; } ! s/.*/./; q'` - # PATH needs CR, and LINENO needs CR and PATH. - # Avoid depending upon Character Ranges. - as_cr_letters='abcdefghijklmnopqrstuvwxyz' - as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' - as_cr_Letters=$as_cr_letters$as_cr_LETTERS - as_cr_digits='0123456789' - as_cr_alnum=$as_cr_Letters$as_cr_digits ! # The user is always right. ! if test "${PATH_SEPARATOR+set}" != set; then ! echo "#! /bin/sh" >conf$$.sh ! echo "exit 0" >>conf$$.sh ! chmod +x conf$$.sh ! if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then ! PATH_SEPARATOR=';' ! else ! PATH_SEPARATOR=: ! fi ! rm -f conf$$.sh fi ! as_lineno_1=$LINENO ! as_lineno_2=$LINENO ! as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` ! test "x$as_lineno_1" != "x$as_lineno_2" && ! test "x$as_lineno_3" = "x$as_lineno_2" || { ! # Find who we are. Look in the path if we contain no path at all ! # relative or not. ! case $0 in ! *[\\/]* ) as_myself=$0 ;; ! *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ! for as_dir in $PATH ! do ! IFS=$as_save_IFS ! test -z "$as_dir" && as_dir=. ! test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break ! done ! ;; ! esac ! # We did not find ourselves, most probably we were run as `sh COMMAND' ! # in which case we are not to be found in the path. ! if test "x$as_myself" = x; then ! as_myself=$0 ! fi ! if test ! -f "$as_myself"; then ! { echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2 ! { (exit 1); exit 1; }; } ! fi ! case $CONFIG_SHELL in ! '') as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. ! for as_base in sh bash ksh sh5; do ! case $as_dir in /*) ! if ("$as_dir/$as_base" -c ' as_lineno_1=$LINENO as_lineno_2=$LINENO - as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` test "x$as_lineno_1" != "x$as_lineno_2" && ! test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then ! $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; } ! $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; } ! CONFIG_SHELL=$as_dir/$as_base ! export CONFIG_SHELL ! exec "$CONFIG_SHELL" "$0" ${1+"$@"} ! fi;; ! esac ! done ! done ! ;; ! esac # Create $as_me.lineno as a copy of $as_myself, but with $LINENO # uniformly replaced by the line number. The first 'sed' inserts a ! # line-number line before each line; the second 'sed' does the real ! # work. The second script uses 'N' to pair each line-number line ! # with the numbered line, and appends trailing '-' during ! # substitution so that $LINENO is not a special case at line end. # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the ! # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-) ! sed '=' <$as_myself | sed ' N ! s,$,-, ! : loop ! s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3, t loop ! s,-$,, ! s,^['$as_cr_digits']*\n,, ' >$as_me.lineno && ! chmod +x $as_me.lineno || { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 { (exit 1); exit 1; }; } # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the ! # original and so on. Autoconf is especially sensible to this). ! . ./$as_me.lineno # Exit status is that of the last command. exit } ! case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in ! *c*,-n*) ECHO_N= ECHO_C=' ! ' ECHO_T=' ' ;; ! *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;; ! *) ECHO_N= ECHO_C='\c' ECHO_T= ;; esac ! if expr a : '\(a\)' >/dev/null 2>&1; then as_expr=expr else as_expr=false fi rm -f conf$$ conf$$.exe conf$$.file echo >conf$$.file if ln -s conf$$.file conf$$ 2>/dev/null; then ! # We could just check for DJGPP; but this test a) works b) is more generic ! # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04). ! if test -f conf$$.exe; then ! # Don't use ln at all; we don't have any links as_ln_s='cp -p' - else - as_ln_s='ln -s' - fi elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi ! rm -f conf$$ conf$$.exe conf$$.file if mkdir -p . 2>/dev/null; then as_mkdir_p=: --- 128,515 ---- # Name of the executable. ! as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ ! X"$0" : 'X\(/\)' \| . 2>/dev/null || echo X/"$0" | ! sed '/^.*\/\([^/][^/]*\)\/*$/{ ! s//\1/ ! q ! } ! /^X\/\(\/\/\)$/{ ! s//\1/ ! q ! } ! /^X\/\(\/\).*/{ ! s//\1/ ! q ! } ! s/.*/./; q'` + # CDPATH. + $as_unset CDPATH ! if test "x$CONFIG_SHELL" = x; then ! if (eval ":") 2>/dev/null; then ! as_have_required=yes ! else ! as_have_required=no fi + if test $as_have_required = yes && (eval ": + (as_func_return () { + (exit \$1) + } + as_func_success () { + as_func_return 0 + } + as_func_failure () { + as_func_return 1 + } + as_func_ret_success () { + return 0 + } + as_func_ret_failure () { + return 1 + } ! exitcode=0 ! if as_func_success; then ! : ! else ! exitcode=1 ! echo as_func_success failed. ! fi ! if as_func_failure; then ! exitcode=1 ! echo as_func_failure succeeded. ! fi ! ! if as_func_ret_success; then ! : ! else ! exitcode=1 ! echo as_func_ret_success failed. ! fi ! ! if as_func_ret_failure; then ! exitcode=1 ! echo as_func_ret_failure succeeded. ! fi ! ! if ( set x; as_func_ret_success y && test x = \"\$1\" ); then ! : ! else ! exitcode=1 ! echo positional parameters were not saved. ! fi ! ! test \$exitcode = 0) || { (exit 1); exit 1; } ! ! ( ! as_lineno_1=\$LINENO ! as_lineno_2=\$LINENO ! test \"x\$as_lineno_1\" != \"x\$as_lineno_2\" && ! test \"x\`expr \$as_lineno_1 + 1\`\" = \"x\$as_lineno_2\") || { (exit 1); exit 1; } ! ") 2> /dev/null; then ! : ! else ! as_candidate_shells= as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. ! case $as_dir in /*) ! for as_base in sh bash ksh sh5; do ! as_candidate_shells="$as_candidate_shells $as_dir/$as_base" ! done;; ! esac ! done ! IFS=$as_save_IFS ! ! ! for as_shell in $as_candidate_shells $SHELL; do ! # Try only shells that exist, to save several forks. ! if { test -f "$as_shell" || test -f "$as_shell.exe"; } && ! { ("$as_shell") 2> /dev/null <<\_ASEOF ! if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then ! emulate sh ! NULLCMD=: ! # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which ! # is contrary to our usage. Disable this feature. ! alias -g '${1+"$@"}'='"$@"' ! setopt NO_GLOB_SUBST ! else ! case `(set -o) 2>/dev/null` in ! *posix*) set -o posix ;; ! esac ! ! fi ! ! ! : ! _ASEOF ! }; then ! CONFIG_SHELL=$as_shell ! as_have_required=yes ! if { "$as_shell" 2> /dev/null <<\_ASEOF ! if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then ! emulate sh ! NULLCMD=: ! # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which ! # is contrary to our usage. Disable this feature. ! alias -g '${1+"$@"}'='"$@"' ! setopt NO_GLOB_SUBST ! else ! case `(set -o) 2>/dev/null` in ! *posix*) set -o posix ;; ! esac ! ! fi ! ! ! : ! (as_func_return () { ! (exit $1) ! } ! as_func_success () { ! as_func_return 0 ! } ! as_func_failure () { ! as_func_return 1 ! } ! as_func_ret_success () { ! return 0 ! } ! as_func_ret_failure () { ! return 1 ! } ! ! exitcode=0 ! if as_func_success; then ! : ! else ! exitcode=1 ! echo as_func_success failed. ! fi ! ! if as_func_failure; then ! exitcode=1 ! echo as_func_failure succeeded. ! fi ! ! if as_func_ret_success; then ! : ! else ! exitcode=1 ! echo as_func_ret_success failed. ! fi ! ! if as_func_ret_failure; then ! exitcode=1 ! echo as_func_ret_failure succeeded. ! fi ! ! if ( set x; as_func_ret_success y && test x = "$1" ); then ! : ! else ! exitcode=1 ! echo positional parameters were not saved. ! fi ! ! test $exitcode = 0) || { (exit 1); exit 1; } ! ! ( as_lineno_1=$LINENO as_lineno_2=$LINENO test "x$as_lineno_1" != "x$as_lineno_2" && ! test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2") || { (exit 1); exit 1; } ! ! _ASEOF ! }; then ! break ! fi ! ! fi ! ! done ! ! if test "x$CONFIG_SHELL" != x; then ! for as_var in BASH_ENV ENV ! do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var ! done ! export CONFIG_SHELL ! exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} ! fi ! ! ! if test $as_have_required = no; then ! echo This script requires a shell more modern than all the ! echo shells that I found on your system. Please install a ! echo modern shell, or manually run the script under such a ! echo shell if you do have one. ! { (exit 1); exit 1; } ! fi ! ! ! fi ! ! fi ! ! ! ! (eval "as_func_return () { ! (exit \$1) ! } ! as_func_success () { ! as_func_return 0 ! } ! as_func_failure () { ! as_func_return 1 ! } ! as_func_ret_success () { ! return 0 ! } ! as_func_ret_failure () { ! return 1 ! } ! ! exitcode=0 ! if as_func_success; then ! : ! else ! exitcode=1 ! echo as_func_success failed. ! fi ! ! if as_func_failure; then ! exitcode=1 ! echo as_func_failure succeeded. ! fi ! ! if as_func_ret_success; then ! : ! else ! exitcode=1 ! echo as_func_ret_success failed. ! fi ! ! if as_func_ret_failure; then ! exitcode=1 ! echo as_func_ret_failure succeeded. ! fi ! ! if ( set x; as_func_ret_success y && test x = \"\$1\" ); then ! : ! else ! exitcode=1 ! echo positional parameters were not saved. ! fi ! ! test \$exitcode = 0") || { ! echo No shell found that supports shell functions. ! echo Please tell autoconf@gnu.org about your system, ! echo including any error possibly output before this ! echo message ! } ! ! ! ! as_lineno_1=$LINENO ! as_lineno_2=$LINENO ! test "x$as_lineno_1" != "x$as_lineno_2" && ! test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { # Create $as_me.lineno as a copy of $as_myself, but with $LINENO # uniformly replaced by the line number. The first 'sed' inserts a ! # line-number line after each line using $LINENO; the second 'sed' ! # does the real work. The second script uses 'N' to pair each ! # line-number line with the line containing $LINENO, and appends ! # trailing '-' during substitution so that $LINENO is not a special ! # case at line end. # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the ! # scripts with optimization help from Paolo Bonzini. Blame Lee ! # E. McMahon (1931-1989) for sed's syntax. :-) ! sed -n ' ! p ! /[$]LINENO/= ! ' <$as_myself | sed ' + s/[$]LINENO.*/&-/ + t lineno + b + :lineno N ! :loop ! s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop ! s/-\n.*// ' >$as_me.lineno && ! chmod +x "$as_me.lineno" || { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 { (exit 1); exit 1; }; } # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the ! # original and so on. Autoconf is especially sensitive to this). ! . "./$as_me.lineno" # Exit status is that of the last command. exit } ! if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then ! as_dirname=dirname ! else ! as_dirname=false ! fi ! ! ECHO_C= ECHO_N= ECHO_T= ! case `echo -n x` in ! -n*) ! case `echo 'x\c'` in ! *c*) ECHO_T=' ';; # ECHO_T is single tab character. ! *) ECHO_C='\c';; ! esac;; ! *) ! ECHO_N='-n';; esac ! if expr a : '\(a\)' >/dev/null 2>&1 && ! test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi rm -f conf$$ conf$$.exe conf$$.file + if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file + else + rm -f conf$$.dir + mkdir conf$$.dir + fi echo >conf$$.file if ln -s conf$$.file conf$$ 2>/dev/null; then ! as_ln_s='ln -s' ! # ... but there are two gotchas: ! # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. ! # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. ! # In both cases, we have to default to `cp -p'. ! ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -p' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi ! rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file ! rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p=: *************** *** 222,228 **** as_mkdir_p=false fi ! as_executable_p="test -f" # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" --- 518,545 ---- as_mkdir_p=false fi ! if test -x / >/dev/null 2>&1; then ! as_test_x='test -x' ! else ! if ls -dL / >/dev/null 2>&1; then ! as_ls_L_option=L ! else ! as_ls_L_option= ! fi ! as_test_x=' ! eval sh -c '\'' ! if test -d "$1"; then ! test -d "$1/."; ! else ! case $1 in ! -*)set "./$1";; ! esac; ! case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in ! ???[sx]*):;;*)false;;esac;fi ! '\'' sh ! ' ! fi ! as_executable_p=$as_test_x # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" *************** *** 231,245 **** as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - # IFS - # We need space, tab and new line, in precisely that order. - as_nl=' - ' - IFS=" $as_nl" - - # CDPATH. - $as_unset CDPATH - # Check that we are running under the correct shell. --- 548,553 ---- *************** *** 391,466 **** # Name of the host. # hostname on some systems (SVR3.2, Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` - exec 6>&1 - # # Initializations. # ac_default_prefix=/usr/local ac_config_libobj_dir=. cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= SHELL=${CONFIG_SHELL-/bin/sh} - # Maximum number of lines to put in a shell here document. - # This variable seems obsolete. It should probably be removed, and - # only ac_max_sed_lines should be used. - : ${ac_max_here_lines=38} - # Identity of this package. PACKAGE_NAME='gsl' PACKAGE_TARNAME='gsl' ! PACKAGE_VERSION='1.9' ! PACKAGE_STRING='gsl 1.9' PACKAGE_BUGREPORT='' ac_unique_file="gsl_math.h" # Factoring default headers for most tests. ac_includes_default="\ #include ! #if HAVE_SYS_TYPES_H # include #endif ! #if HAVE_SYS_STAT_H # include #endif ! #if STDC_HEADERS # include # include #else ! # if HAVE_STDLIB_H # include # endif #endif ! #if HAVE_STRING_H ! # if !STDC_HEADERS && HAVE_MEMORY_H # include # endif # include #endif ! #if HAVE_STRINGS_H # include #endif ! #if HAVE_INTTYPES_H # include - #else - # if HAVE_STDINT_H - # include - # endif #endif ! #if HAVE_UNISTD_H # include #endif" ! ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT GSL_LT_VERSION GSL_LT_CBLAS_VERSION RELEASED build build_cpu build_vendor build_os host host_cpu host_vendor host_os CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT CPP LN_S EGREP ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB LIBTOOL GSL_CFLAGS GSL_LIBS HAVE_INLINE LIBOBJS HAVE_PRINTF_LONGDOUBLE HAVE_EXTENDED_PRECISION_REGISTERS HAVE_GNUSPARC_IEEE_INTERFACE HAVE_GNUM68K_IEEE_INTERFACE HAVE_GNUPPC_IEEE_INTERFACE HAVE_GNUX86_IEEE_INTERFACE HAVE_SUNOS4_IEEE_INTERFACE HAVE_SOLARIS_IEEE_INTERFACE HAVE_HPUX11_IEEE_INTERFACE HAVE_HPUX_IEEE_INTERFACE HAVE_TRU64_IEEE_INTERFACE HAVE_IRIX_IEEE_INTERFACE HAVE_AIX_IEEE_INTERFACE HAVE_FREEBSD_IEEE_INTERFACE HAVE_OS2EMX_IEEE_INTERFACE HAVE_NETBSD_IEEE_INTERFACE HAVE_OPENBSD_IEEE_INTERFACE HAVE_DARWIN_IEEE_INTERFACE HAVE_DARWIN86_IEEE_INTERFACE HAVE_IEEE_COMPARISONS HAVE_IEEE_DENORMALS LTLIBOBJS' ac_subst_files='' # Initialize some variables set by options. ac_init_help= --- 699,890 ---- + exec 7<&0 &1 + # Name of the host. # hostname on some systems (SVR3.2, Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local + ac_clean_files= ac_config_libobj_dir=. + LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= SHELL=${CONFIG_SHELL-/bin/sh} # Identity of this package. PACKAGE_NAME='gsl' PACKAGE_TARNAME='gsl' ! PACKAGE_VERSION='1.10' ! PACKAGE_STRING='gsl 1.10' PACKAGE_BUGREPORT='' ac_unique_file="gsl_math.h" # Factoring default headers for most tests. ac_includes_default="\ #include ! #ifdef HAVE_SYS_TYPES_H # include #endif ! #ifdef HAVE_SYS_STAT_H # include #endif ! #ifdef STDC_HEADERS # include # include #else ! # ifdef HAVE_STDLIB_H # include # endif #endif ! #ifdef HAVE_STRING_H ! # if !defined STDC_HEADERS && defined HAVE_MEMORY_H # include # endif # include #endif ! #ifdef HAVE_STRINGS_H # include #endif ! #ifdef HAVE_INTTYPES_H # include #endif ! #ifdef HAVE_STDINT_H ! # include ! #endif ! #ifdef HAVE_UNISTD_H # include #endif" ! ac_subst_vars='SHELL ! PATH_SEPARATOR ! PACKAGE_NAME ! PACKAGE_TARNAME ! PACKAGE_VERSION ! PACKAGE_STRING ! PACKAGE_BUGREPORT ! exec_prefix ! prefix ! program_transform_name ! bindir ! sbindir ! libexecdir ! datarootdir ! datadir ! sysconfdir ! sharedstatedir ! localstatedir ! includedir ! oldincludedir ! docdir ! infodir ! htmldir ! dvidir ! pdfdir ! psdir ! libdir ! localedir ! mandir ! DEFS ! ECHO_C ! ECHO_N ! ECHO_T ! LIBS ! build_alias ! host_alias ! target_alias ! INSTALL_PROGRAM ! INSTALL_SCRIPT ! INSTALL_DATA ! am__isrc ! CYGPATH_W ! PACKAGE ! VERSION ! ACLOCAL ! AUTOCONF ! AUTOMAKE ! AUTOHEADER ! MAKEINFO ! install_sh ! STRIP ! INSTALL_STRIP_PROGRAM ! mkdir_p ! AWK ! SET_MAKE ! am__leading_dot ! AMTAR ! am__tar ! am__untar ! MAINTAINER_MODE_TRUE ! MAINTAINER_MODE_FALSE ! MAINT ! GSL_LT_VERSION ! GSL_LT_CBLAS_VERSION ! build ! build_cpu ! build_vendor ! build_os ! host ! host_cpu ! host_vendor ! host_os ! CC ! CFLAGS ! LDFLAGS ! CPPFLAGS ! ac_ct_CC ! EXEEXT ! OBJEXT ! CPP ! LN_S ! SED ! GREP ! EGREP ! ECHO ! AR ! RANLIB ! LIBTOOL ! GSL_CFLAGS ! GSL_LIBS ! MINGW32_HOST_TRUE ! MINGW32_HOST_FALSE ! LIBOBJS ! HAVE_GNUSPARC_IEEE_INTERFACE ! HAVE_GNUM68K_IEEE_INTERFACE ! HAVE_GNUPPC_IEEE_INTERFACE ! HAVE_GNUX86_IEEE_INTERFACE ! HAVE_SUNOS4_IEEE_INTERFACE ! HAVE_SOLARIS_IEEE_INTERFACE ! HAVE_HPUX11_IEEE_INTERFACE ! HAVE_HPUX_IEEE_INTERFACE ! HAVE_TRU64_IEEE_INTERFACE ! HAVE_IRIX_IEEE_INTERFACE ! HAVE_AIX_IEEE_INTERFACE ! HAVE_FREEBSD_IEEE_INTERFACE ! HAVE_OS2EMX_IEEE_INTERFACE ! HAVE_NETBSD_IEEE_INTERFACE ! HAVE_OPENBSD_IEEE_INTERFACE ! HAVE_DARWIN_IEEE_INTERFACE ! HAVE_DARWIN86_IEEE_INTERFACE ! LTLIBOBJS' ac_subst_files='' + ac_precious_vars='build_alias + host_alias + target_alias + CC + CFLAGS + LDFLAGS + LIBS + CPPFLAGS + CPP' + # Initialize some variables set by options. ac_init_help= *************** *** 487,520 **** # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' ! datadir='${prefix}/share' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' - libdir='${exec_prefix}/lib' includedir='${prefix}/include' oldincludedir='/usr/include' ! infodir='${prefix}/info' ! mandir='${prefix}/man' ac_prev= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then ! eval "$ac_prev=\$ac_option" ac_prev= continue fi ! ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'` # Accept the important Cygnus configure options, so we can diagnose typos. ! case $ac_option in -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; --- 911,958 ---- # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. + # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' ! datarootdir='${prefix}/share' ! datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' includedir='${prefix}/include' oldincludedir='/usr/include' ! docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' ! infodir='${datarootdir}/info' ! htmldir='${docdir}' ! dvidir='${docdir}' ! pdfdir='${docdir}' ! psdir='${docdir}' ! libdir='${exec_prefix}/lib' ! localedir='${datarootdir}/locale' ! mandir='${datarootdir}/man' ac_prev= + ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then ! eval $ac_prev=\$ac_option ac_prev= continue fi ! case $ac_option in ! *=*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; ! *) ac_optarg=yes ;; ! esac # Accept the important Cygnus configure options, so we can diagnose typos. ! case $ac_dashdash$ac_option in ! --) ! ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; *************** *** 536,568 **** --config-cache | -C) cache_file=config.cache ;; ! -datadir | --datadir | --datadi | --datad | --data | --dat | --da) ac_prev=datadir ;; ! -datadir=* | --datadir=* | --datadi=* | --datad=* | --data=* | --dat=* \ ! | --da=*) datadir=$ac_optarg ;; -disable-* | --disable-*) ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. ! expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid feature name: $ac_feature" >&2 { (exit 1); exit 1; }; } ! ac_feature=`echo $ac_feature | sed 's/-/_/g'` ! eval "enable_$ac_feature=no" ;; -enable-* | --enable-*) ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. ! expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid feature name: $ac_feature" >&2 { (exit 1); exit 1; }; } ! ac_feature=`echo $ac_feature | sed 's/-/_/g'` ! case $ac_option in ! *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; ! *) ac_optarg=yes ;; ! esac ! eval "enable_$ac_feature='$ac_optarg'" ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ --- 974,1018 ---- --config-cache | -C) cache_file=config.cache ;; ! -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; ! -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; + -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ + | --dataroo | --dataro | --datar) + ac_prev=datarootdir ;; + -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ + | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) + datarootdir=$ac_optarg ;; + -disable-* | --disable-*) ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. ! expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid feature name: $ac_feature" >&2 { (exit 1); exit 1; }; } ! ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` ! eval enable_$ac_feature=no ;; ! ! -docdir | --docdir | --docdi | --doc | --do) ! ac_prev=docdir ;; ! -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) ! docdir=$ac_optarg ;; ! ! -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ! ac_prev=dvidir ;; ! -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) ! dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. ! expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid feature name: $ac_feature" >&2 { (exit 1); exit 1; }; } ! ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` ! eval enable_$ac_feature=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ *************** *** 589,594 **** --- 1039,1050 ---- -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; + -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) + ac_prev=htmldir ;; + -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ + | --ht=*) + htmldir=$ac_optarg ;; + -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; *************** *** 613,625 **** | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ ! | --localstate | --localstat | --localsta | --localst \ ! | --locals | --local | --loca | --loc | --lo) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ ! | --localstate=* | --localstat=* | --localsta=* | --localst=* \ ! | --locals=* | --local=* | --loca=* | --loc=* | --lo=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) --- 1069,1084 ---- | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; + -localedir | --localedir | --localedi | --localed | --locale) + ac_prev=localedir ;; + -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) + localedir=$ac_optarg ;; + -localstatedir | --localstatedir | --localstatedi | --localstated \ ! | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ ! | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) *************** *** 684,689 **** --- 1143,1158 ---- | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; + -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) + ac_prev=pdfdir ;; + -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) + pdfdir=$ac_optarg ;; + + -psdir | --psdir | --psdi | --psd | --ps) + ac_prev=psdir ;; + -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) + psdir=$ac_optarg ;; + -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; *************** *** 736,759 **** -with-* | --with-*) ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. ! expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid package name: $ac_package" >&2 { (exit 1); exit 1; }; } ! ac_package=`echo $ac_package| sed 's/-/_/g'` ! case $ac_option in ! *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;; ! *) ac_optarg=yes ;; ! esac ! eval "with_$ac_package='$ac_optarg'" ;; -without-* | --without-*) ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. ! expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid package name: $ac_package" >&2 { (exit 1); exit 1; }; } ! ac_package=`echo $ac_package | sed 's/-/_/g'` ! eval "with_$ac_package=no" ;; --x) # Obsolete; use --with-x. --- 1205,1224 ---- -with-* | --with-*) ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. ! expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid package name: $ac_package" >&2 { (exit 1); exit 1; }; } ! ac_package=`echo $ac_package | sed 's/[-.]/_/g'` ! eval with_$ac_package=\$ac_optarg ;; -without-* | --without-*) ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. ! expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid package name: $ac_package" >&2 { (exit 1); exit 1; }; } ! ac_package=`echo $ac_package | sed 's/[-.]/_/g'` ! eval with_$ac_package=no ;; --x) # Obsolete; use --with-x. *************** *** 784,791 **** expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 { (exit 1); exit 1; }; } ! ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ! eval "$ac_envvar='$ac_optarg'" export $ac_envvar ;; *) --- 1249,1255 ---- expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null && { echo "$as_me: error: invalid variable name: $ac_envvar" >&2 { (exit 1); exit 1; }; } ! eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) *************** *** 805,831 **** { (exit 1); exit 1; }; } fi ! # Be sure to have absolute paths. ! for ac_var in exec_prefix prefix ! do ! eval ac_val=$`echo $ac_var` ! case $ac_val in ! [\\/$]* | ?:[\\/]* | NONE | '' ) ;; ! *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 ! { (exit 1); exit 1; }; };; ! esac ! done ! ! # Be sure to have absolute paths. ! for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \ ! localstatedir libdir includedir oldincludedir infodir mandir do ! eval ac_val=$`echo $ac_var` case $ac_val in ! [\\/$]* | ?:[\\/]* ) ;; ! *) { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 ! { (exit 1); exit 1; }; };; esac done # There might be people who depend on the old broken behavior: `$host' --- 1269,1287 ---- { (exit 1); exit 1; }; } fi ! # Be sure to have absolute directory names. ! for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ ! datadir sysconfdir sharedstatedir localstatedir includedir \ ! oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ ! libdir localedir mandir do ! eval ac_val=\$$ac_var case $ac_val in ! [\\/$]* | ?:[\\/]* ) continue;; ! NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac + { echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2 + { (exit 1); exit 1; }; } done # There might be people who depend on the old broken behavior: `$host' *************** *** 852,925 **** test "$silent" = yes && exec 6>/dev/null ! # Find the source files, if location was not specified. ! if test -z "$srcdir"; then ac_srcdir_defaulted=yes ! # Try the directory containing this script, then its parent. ! ac_confdir=`(dirname "$0") 2>/dev/null || $as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$0" : 'X\(//\)[^/]' \| \ X"$0" : 'X\(//\)$' \| \ ! X"$0" : 'X\(/\)' \| \ ! . : '\(.\)' 2>/dev/null || echo X"$0" | ! sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } ! /^X\(\/\/\)[^/].*/{ s//\1/; q; } ! /^X\(\/\/\)$/{ s//\1/; q; } ! /^X\(\/\).*/{ s//\1/; q; } ! s/.*/./; q'` srcdir=$ac_confdir ! if test ! -r $srcdir/$ac_unique_file; then srcdir=.. fi else ac_srcdir_defaulted=no fi ! if test ! -r $srcdir/$ac_unique_file; then ! if test "$ac_srcdir_defaulted" = yes; then ! { echo "$as_me: error: cannot find sources ($ac_unique_file) in $ac_confdir or .." >&2 ! { (exit 1); exit 1; }; } ! else ! { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 { (exit 1); exit 1; }; } - fi fi ! (cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null || ! { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2 { (exit 1); exit 1; }; } ! srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'` ! ac_env_build_alias_set=${build_alias+set} ! ac_env_build_alias_value=$build_alias ! ac_cv_env_build_alias_set=${build_alias+set} ! ac_cv_env_build_alias_value=$build_alias ! ac_env_host_alias_set=${host_alias+set} ! ac_env_host_alias_value=$host_alias ! ac_cv_env_host_alias_set=${host_alias+set} ! ac_cv_env_host_alias_value=$host_alias ! ac_env_target_alias_set=${target_alias+set} ! ac_env_target_alias_value=$target_alias ! ac_cv_env_target_alias_set=${target_alias+set} ! ac_cv_env_target_alias_value=$target_alias ! ac_env_CC_set=${CC+set} ! ac_env_CC_value=$CC ! ac_cv_env_CC_set=${CC+set} ! ac_cv_env_CC_value=$CC ! ac_env_CFLAGS_set=${CFLAGS+set} ! ac_env_CFLAGS_value=$CFLAGS ! ac_cv_env_CFLAGS_set=${CFLAGS+set} ! ac_cv_env_CFLAGS_value=$CFLAGS ! ac_env_LDFLAGS_set=${LDFLAGS+set} ! ac_env_LDFLAGS_value=$LDFLAGS ! ac_cv_env_LDFLAGS_set=${LDFLAGS+set} ! ac_cv_env_LDFLAGS_value=$LDFLAGS ! ac_env_CPPFLAGS_set=${CPPFLAGS+set} ! ac_env_CPPFLAGS_value=$CPPFLAGS ! ac_cv_env_CPPFLAGS_set=${CPPFLAGS+set} ! ac_cv_env_CPPFLAGS_value=$CPPFLAGS ! ac_env_CPP_set=${CPP+set} ! ac_env_CPP_value=$CPP ! ac_cv_env_CPP_set=${CPP+set} ! ac_cv_env_CPP_value=$CPP # # Report the --help message. --- 1308,1383 ---- test "$silent" = yes && exec 6>/dev/null ! ac_pwd=`pwd` && test -n "$ac_pwd" && ! ac_ls_di=`ls -di .` && ! ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || ! { echo "$as_me: error: Working directory cannot be determined" >&2 ! { (exit 1); exit 1; }; } ! test "X$ac_ls_di" = "X$ac_pwd_ls_di" || ! { echo "$as_me: error: pwd does not report name of working directory" >&2 ! { (exit 1); exit 1; }; } ! ! ! # Find the source files, if location was not specified. ! if test -z "$srcdir"; then ac_srcdir_defaulted=yes ! # Try the directory containing this script, then the parent directory. ! ac_confdir=`$as_dirname -- "$0" || $as_expr X"$0" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$0" : 'X\(//\)[^/]' \| \ X"$0" : 'X\(//\)$' \| \ ! X"$0" : 'X\(/\)' \| . 2>/dev/null || echo X"$0" | ! sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ ! s//\1/ ! q ! } ! /^X\(\/\/\)[^/].*/{ ! s//\1/ ! q ! } ! /^X\(\/\/\)$/{ ! s//\1/ ! q ! } ! /^X\(\/\).*/{ ! s//\1/ ! q ! } ! s/.*/./; q'` srcdir=$ac_confdir ! if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi ! if test ! -r "$srcdir/$ac_unique_file"; then ! test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." ! { echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2 { (exit 1); exit 1; }; } fi ! ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ! ac_abs_confdir=`( ! cd "$srcdir" && test -r "./$ac_unique_file" || { echo "$as_me: error: $ac_msg" >&2 { (exit 1); exit 1; }; } ! pwd)` ! # When building in place, set srcdir=. ! if test "$ac_abs_confdir" = "$ac_pwd"; then ! srcdir=. ! fi ! # Remove unnecessary trailing slashes from srcdir. ! # Double slashes in file names in object file debugging info ! # mess up M-x gdb in Emacs. ! case $srcdir in ! */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; ! esac ! for ac_var in $ac_precious_vars; do ! eval ac_env_${ac_var}_set=\${${ac_var}+set} ! eval ac_env_${ac_var}_value=\$${ac_var} ! eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} ! eval ac_cv_env_${ac_var}_value=\$${ac_var} ! done # # Report the --help message. *************** *** 928,934 **** # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF ! \`configure' configures gsl 1.9 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... --- 1386,1392 ---- # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF ! \`configure' configures gsl 1.10 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... *************** *** 948,956 **** -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] - _ACEOF - - cat <<_ACEOF Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --- 1406,1411 ---- *************** *** 968,982 **** --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] - --datadir=DIR read-only architecture-independent data [PREFIX/share] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] ! --infodir=DIR info documentation [PREFIX/info] ! --mandir=DIR man documentation [PREFIX/man] _ACEOF cat <<\_ACEOF --- 1423,1444 ---- --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] ! --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] ! --datadir=DIR read-only architecture-independent data [DATAROOTDIR] ! --infodir=DIR info documentation [DATAROOTDIR/info] ! --localedir=DIR locale-dependent data [DATAROOTDIR/locale] ! --mandir=DIR man documentation [DATAROOTDIR/man] ! --docdir=DIR documentation root [DATAROOTDIR/doc/gsl] ! --htmldir=DIR html documentation [DOCDIR] ! --dvidir=DIR dvi documentation [DOCDIR] ! --pdfdir=DIR pdf documentation [DOCDIR] ! --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF *************** *** 994,1000 **** if test -n "$ac_init_help"; then case $ac_init_help in ! short | recursive ) echo "Configuration of gsl 1.9:";; esac cat <<\_ACEOF --- 1456,1462 ---- if test -n "$ac_init_help"; then case $ac_init_help in ! short | recursive ) echo "Configuration of gsl 1.10:";; esac cat <<\_ACEOF *************** *** 1003,1012 **** --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-maintainer-mode enable make rules and dependencies not useful (and sometimes confusing) to the casual installer ! --enable-shared[=PKGS] ! build shared libraries [default=yes] ! --enable-static[=PKGS] ! build static libraries [default=yes] --enable-fast-install[=PKGS] optimize for fast installation [default=yes] --disable-libtool-lock avoid locking (might break parallel builds) --- 1465,1472 ---- --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-maintainer-mode enable make rules and dependencies not useful (and sometimes confusing) to the casual installer ! --enable-shared[=PKGS] build shared libraries [default=yes] ! --enable-static[=PKGS] build static libraries [default=yes] --enable-fast-install[=PKGS] optimize for fast installation [default=yes] --disable-libtool-lock avoid locking (might break parallel builds) *************** *** 1017,1152 **** --with-gnu-ld assume the C compiler uses GNU ld [default=no] --with-pic try to use only PIC/non-PIC objects [default=use both] ! --with-tags[=TAGS] ! include additional configurations [automatic] Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory ! CPPFLAGS C/C++ preprocessor flags, e.g. -I if you have ! headers in a nonstandard directory CPP C preprocessor Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. _ACEOF fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. - ac_popdir=`pwd` for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue ! test -d $ac_dir || continue ac_builddir=. ! if test "$ac_dir" != .; then ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` ! # A "../" for each directory in $ac_dir_suffix. ! ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` ! else ! ac_dir_suffix= ac_top_builddir= ! fi case $srcdir in ! .) # No --srcdir option. We are building in place. ac_srcdir=. ! if test -z "$ac_top_builddir"; then ! ac_top_srcdir=. ! else ! ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` ! fi ;; ! [\\/]* | ?:[\\/]* ) # Absolute path. ac_srcdir=$srcdir$ac_dir_suffix; ! ac_top_srcdir=$srcdir ;; ! *) # Relative path. ! ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix ! ac_top_srcdir=$ac_top_builddir$srcdir ;; ! esac ! ! # Do not use `cd foo && pwd` to compute absolute paths, because ! # the directories may not exist. ! case `pwd` in ! .) ac_abs_builddir="$ac_dir";; ! *) ! case "$ac_dir" in ! .) ac_abs_builddir=`pwd`;; ! [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; ! *) ac_abs_builddir=`pwd`/"$ac_dir";; ! esac;; ! esac ! case $ac_abs_builddir in ! .) ac_abs_top_builddir=${ac_top_builddir}.;; ! *) ! case ${ac_top_builddir}. in ! .) ac_abs_top_builddir=$ac_abs_builddir;; ! [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; ! *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; ! esac;; ! esac ! case $ac_abs_builddir in ! .) ac_abs_srcdir=$ac_srcdir;; ! *) ! case $ac_srcdir in ! .) ac_abs_srcdir=$ac_abs_builddir;; ! [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; ! *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; ! esac;; ! esac ! case $ac_abs_builddir in ! .) ac_abs_top_srcdir=$ac_top_srcdir;; ! *) ! case $ac_top_srcdir in ! .) ac_abs_top_srcdir=$ac_abs_builddir;; ! [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; ! *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; ! esac;; ! esac ! ! cd $ac_dir ! # Check for guested configure; otherwise get Cygnus style configure. ! if test -f $ac_srcdir/configure.gnu; then ! echo ! $SHELL $ac_srcdir/configure.gnu --help=recursive ! elif test -f $ac_srcdir/configure; then ! echo ! $SHELL $ac_srcdir/configure --help=recursive ! elif test -f $ac_srcdir/configure.ac || ! test -f $ac_srcdir/configure.in; then ! echo ! $ac_configure --help else echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 ! fi ! cd $ac_popdir done fi ! test -n "$ac_init_help" && exit 0 if $ac_init_version; then cat <<\_ACEOF ! gsl configure 1.9 ! generated by GNU Autoconf 2.59 ! Copyright (C) 2003 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF ! exit 0 fi ! exec 5>config.log ! cat >&5 <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. ! It was created by gsl $as_me 1.9, which was ! generated by GNU Autoconf 2.59. Invocation command line was $ $0 $@ _ACEOF { cat <<_ASUNAME ## --------- ## --- 1477,1578 ---- --with-gnu-ld assume the C compiler uses GNU ld [default=no] --with-pic try to use only PIC/non-PIC objects [default=use both] ! --with-tags[=TAGS] include additional configurations [automatic] Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory ! LIBS libraries to pass to the linker, e.g. -l ! CPPFLAGS C/C++/Objective C preprocessor flags, e.g. -I if ! you have headers in a nonstandard directory CPP C preprocessor Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. _ACEOF + ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue ! test -d "$ac_dir" || continue ac_builddir=. ! case "$ac_dir" in ! .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; ! *) ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` ! # A ".." for each directory in $ac_dir_suffix. ! ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` ! case $ac_top_builddir_sub in ! "") ac_top_builddir_sub=. ac_top_build_prefix= ;; ! *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; ! esac ;; ! esac ! ac_abs_top_builddir=$ac_pwd ! ac_abs_builddir=$ac_pwd$ac_dir_suffix ! # for backward compatibility: ! ac_top_builddir=$ac_top_build_prefix case $srcdir in ! .) # We are building in place. ac_srcdir=. ! ac_top_srcdir=$ac_top_builddir_sub ! ac_abs_top_srcdir=$ac_pwd ;; ! [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ! ac_top_srcdir=$srcdir ! ac_abs_top_srcdir=$srcdir ;; ! *) # Relative name. ! ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ! ac_top_srcdir=$ac_top_build_prefix$srcdir ! ac_abs_top_srcdir=$ac_pwd/$srcdir ;; ! esac ! ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix ! ! cd "$ac_dir" || { ac_status=$?; continue; } ! # Check for guested configure. ! if test -f "$ac_srcdir/configure.gnu"; then ! echo && ! $SHELL "$ac_srcdir/configure.gnu" --help=recursive ! elif test -f "$ac_srcdir/configure"; then ! echo && ! $SHELL "$ac_srcdir/configure" --help=recursive else echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 ! fi || ac_status=$? ! cd "$ac_pwd" || { ac_status=$?; break; } done fi ! test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF ! gsl configure 1.10 ! generated by GNU Autoconf 2.61 ! Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, ! 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF ! exit fi ! cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. ! It was created by gsl $as_me 1.10, which was ! generated by GNU Autoconf 2.61. Invocation command line was $ $0 $@ _ACEOF + exec 5>>config.log { cat <<_ASUNAME ## --------- ## *************** *** 1165,1171 **** /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` ! hostinfo = `(hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` --- 1591,1597 ---- /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` ! /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` *************** *** 1179,1184 **** --- 1605,1611 ---- test -z "$as_dir" && as_dir=. echo "PATH: $as_dir" done + IFS=$as_save_IFS } >&5 *************** *** 1200,1206 **** ac_configure_args= ac_configure_args0= ac_configure_args1= - ac_sep= ac_must_keep_next=false for ac_pass in 1 2 do --- 1627,1632 ---- *************** *** 1211,1217 **** -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; ! *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in --- 1637,1643 ---- -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; ! *\'*) ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in *************** *** 1233,1241 **** -* ) ac_must_keep_next=true ;; esac fi ! ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'" ! # Get rid of the leading space. ! ac_sep=" " ;; esac done --- 1659,1665 ---- -* ) ac_must_keep_next=true ;; esac fi ! ac_configure_args="$ac_configure_args '$ac_arg'" ;; esac done *************** *** 1246,1253 **** # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. ! # WARNING: Be sure not to use single quotes in there, as some shells, ! # such as our DU 5.0 friend, will then `close' the trap. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { --- 1670,1677 ---- # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. ! # WARNING: Use '\'' to represent an apostrophe within the trap. ! # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { *************** *** 1260,1279 **** _ASBOX echo # The following way of writing the cache mishandles newlines in values, ! { (set) 2>&1 | ! case `(ac_space='"'"' '"'"'; set | grep ac_space) 2>&1` in ! *ac_space=\ *) sed -n \ ! "s/'"'"'/'"'"'\\\\'"'"''"'"'/g; ! s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='"'"'\\2'"'"'/p" ! ;; *) ! sed -n \ ! "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p" ;; ! esac; ! } echo cat <<\_ASBOX --- 1684,1717 ---- _ASBOX echo # The following way of writing the cache mishandles newlines in values, ! ( ! for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do ! eval ac_val=\$$ac_var ! case $ac_val in #( ! *${as_nl}*) ! case $ac_var in #( ! *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 ! echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; ! esac ! case $ac_var in #( ! _ | IFS | as_nl) ;; #( ! *) $as_unset $ac_var ;; ! esac ;; ! esac ! done (set) 2>&1 | ! case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( ! *${as_nl}ac_space=\ *) sed -n \ ! "s/'\''/'\''\\\\'\'''\''/g; ! s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ! ;; #( *) ! sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; ! esac | ! sort ! ) echo cat <<\_ASBOX *************** *** 1284,1305 **** echo for ac_var in $ac_subst_vars do ! eval ac_val=$`echo $ac_var` ! echo "$ac_var='"'"'$ac_val'"'"'" done | sort echo if test -n "$ac_subst_files"; then cat <<\_ASBOX ! ## ------------- ## ! ## Output files. ## ! ## ------------- ## _ASBOX echo for ac_var in $ac_subst_files do ! eval ac_val=$`echo $ac_var` ! echo "$ac_var='"'"'$ac_val'"'"'" done | sort echo fi --- 1722,1749 ---- echo for ac_var in $ac_subst_vars do ! eval ac_val=\$$ac_var ! case $ac_val in ! *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; ! esac ! echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then cat <<\_ASBOX ! ## ------------------- ## ! ## File substitutions. ## ! ## ------------------- ## _ASBOX echo for ac_var in $ac_subst_files do ! eval ac_val=\$$ac_var ! case $ac_val in ! *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; ! esac ! echo "$ac_var='\''$ac_val'\''" done | sort echo fi *************** *** 1311,1336 **** ## ----------- ## _ASBOX echo ! sed "/^$/d" confdefs.h | sort echo fi test "$ac_signal" != 0 && echo "$as_me: caught signal $ac_signal" echo "$as_me: exit $exit_status" } >&5 ! rm -f core *.core && ! rm -rf conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ! ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. ! rm -rf conftest* confdefs.h ! # AIX cpp loses on an empty file, so make sure it contains at least a newline. ! echo >confdefs.h # Predefined preprocessor variables. --- 1755,1778 ---- ## ----------- ## _ASBOX echo ! cat confdefs.h echo fi test "$ac_signal" != 0 && echo "$as_me: caught signal $ac_signal" echo "$as_me: exit $exit_status" } >&5 ! rm -f core *.core core.conftest.* && ! rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ! ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; { (exit 1); exit 1; }' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. ! rm -f -r conftest* confdefs.h # Predefined preprocessor variables. *************** *** 1361,1374 **** # Let the site file select an alternate cache file if it wants to. # Prefer explicitly selected file to automatically selected ones. ! if test -z "$CONFIG_SITE"; then ! if test "x$prefix" != xNONE; then ! CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site" ! else ! CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" ! fi fi ! for ac_site_file in $CONFIG_SITE; do if test -r "$ac_site_file"; then { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 echo "$as_me: loading site script $ac_site_file" >&6;} --- 1803,1819 ---- # Let the site file select an alternate cache file if it wants to. # Prefer explicitly selected file to automatically selected ones. ! if test -n "$CONFIG_SITE"; then ! set x "$CONFIG_SITE" ! elif test "x$prefix" != xNONE; then ! set x "$prefix/share/config.site" "$prefix/etc/config.site" ! else ! set x "$ac_default_prefix/share/config.site" \ ! "$ac_default_prefix/etc/config.site" fi ! shift ! for ac_site_file ! do if test -r "$ac_site_file"; then { echo "$as_me:$LINENO: loading site script $ac_site_file" >&5 echo "$as_me: loading site script $ac_site_file" >&6;} *************** *** 1384,1391 **** { echo "$as_me:$LINENO: loading cache $cache_file" >&5 echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in ! [\\/]* | ?:[\\/]* ) . $cache_file;; ! *) . ./$cache_file;; esac fi else --- 1829,1836 ---- { echo "$as_me:$LINENO: loading cache $cache_file" >&5 echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in ! [\\/]* | ?:[\\/]* ) . "$cache_file";; ! *) . "./$cache_file";; esac fi else *************** *** 1397,1408 **** # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false ! for ac_var in `(set) 2>&1 | ! sed -n 's/^ac_env_\([a-zA-Z_0-9]*\)_set=.*/\1/p'`; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set ! eval ac_old_val="\$ac_cv_env_${ac_var}_value" ! eval ac_new_val="\$ac_env_${ac_var}_value" case $ac_old_set,$ac_new_set in set,) { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 --- 1842,1852 ---- # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false ! for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set ! eval ac_old_val=\$ac_cv_env_${ac_var}_value ! eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 *************** *** 1427,1434 **** # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in ! *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*) ! ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in --- 1871,1877 ---- # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in ! *\'*) ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *************** *** 1445,1455 **** { (exit 1); exit 1; }; } fi - ac_ext=c - ac_cpp='$CPP $CPPFLAGS' - ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' - ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' - ac_compiler_gnu=$ac_cv_c_compiler_gnu --- 1888,1893 ---- *************** *** 1474,1509 **** - am__api_version="1.9" ac_aux_dir= ! for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do ! if test -f $ac_dir/install-sh; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break ! elif test -f $ac_dir/install.sh; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break ! elif test -f $ac_dir/shtool; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then ! { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5 ! echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;} { (exit 1); exit 1; }; } fi ! ac_config_guess="$SHELL $ac_aux_dir/config.guess" ! ac_config_sub="$SHELL $ac_aux_dir/config.sub" ! ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure. # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or --- 1912,1958 ---- + ac_ext=c + ac_cpp='$CPP $CPPFLAGS' + ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' + ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' + ac_compiler_gnu=$ac_cv_c_compiler_gnu + am__api_version='1.10' ac_aux_dir= ! for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do ! if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break ! elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break ! elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then ! { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&5 ! echo "$as_me: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&2;} { (exit 1); exit 1; }; } fi ! ! # These three variables are undocumented and unsupported, ! # and are intended to be withdrawn in a future Autoconf release. ! # They can cause serious problems if a builder's source tree is in a directory ! # whose full name contains unusual characters. ! ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ! ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ! ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. ! # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or *************** *** 1518,1525 **** # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. ! echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 ! echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6 if test -z "$INSTALL"; then if test "${ac_cv_path_install+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 --- 1967,1974 ---- # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. ! { echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 ! echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; } if test -z "$INSTALL"; then if test "${ac_cv_path_install+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 *************** *** 1541,1547 **** # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do ! if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. --- 1990,1996 ---- # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do ! if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. *************** *** 1560,1580 **** ;; esac done fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else ! # As a last resort, use the slow shell script. We don't cache a ! # path for INSTALL within a source directory, because that will # break other packages using the cache if that directory is ! # removed, or if the path is relative. INSTALL=$ac_install_sh fi fi ! echo "$as_me:$LINENO: result: $INSTALL" >&5 ! echo "${ECHO_T}$INSTALL" >&6 # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. --- 2009,2030 ---- ;; esac done + IFS=$as_save_IFS fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else ! # As a last resort, use the slow shell script. Don't cache a ! # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is ! # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi ! { echo "$as_me:$LINENO: result: $INSTALL" >&5 ! echo "${ECHO_T}$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. *************** *** 1584,1591 **** test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' ! echo "$as_me:$LINENO: checking whether build environment is sane" >&5 ! echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6 # Just in case sleep 1 echo timestamp > conftest.file --- 2034,2041 ---- test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' ! { echo "$as_me:$LINENO: checking whether build environment is sane" >&5 ! echo $ECHO_N "checking whether build environment is sane... $ECHO_C" >&6; } # Just in case sleep 1 echo timestamp > conftest.file *************** *** 1627,1646 **** Check your system clock" >&2;} { (exit 1); exit 1; }; } fi ! echo "$as_me:$LINENO: result: yes" >&5 ! echo "${ECHO_T}yes" >&6 test "$program_prefix" != NONE && ! program_transform_name="s,^,$program_prefix,;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && ! program_transform_name="s,\$,$program_suffix,;$program_transform_name" # Double any \ or $. echo might interpret backslashes. # By default was `s,x,x', remove it if useless. cat <<\_ACEOF >conftest.sed s/[\\$]/&&/g;s/;s,x,x,$// _ACEOF program_transform_name=`echo $program_transform_name | sed -f conftest.sed` ! rm conftest.sed # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` --- 2077,2096 ---- Check your system clock" >&2;} { (exit 1); exit 1; }; } fi ! { echo "$as_me:$LINENO: result: yes" >&5 ! echo "${ECHO_T}yes" >&6; } test "$program_prefix" != NONE && ! program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && ! program_transform_name="s&\$&$program_suffix&;$program_transform_name" # Double any \ or $. echo might interpret backslashes. # By default was `s,x,x', remove it if useless. cat <<\_ACEOF >conftest.sed s/[\\$]/&&/g;s/;s,x,x,$// _ACEOF program_transform_name=`echo $program_transform_name | sed -f conftest.sed` ! rm -f conftest.sed # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` *************** *** 1655,1699 **** echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} fi ! if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then ! # We used to keeping the `.' as first argument, in order to ! # allow $(mkdir_p) to be used without argument. As in ! # $(mkdir_p) $(somedir) ! # where $(somedir) is conditionally defined. However this is wrong ! # for two reasons: ! # 1. if the package is installed by a user who cannot write `.' ! # make install will fail, ! # 2. the above comment should most certainly read ! # $(mkdir_p) $(DESTDIR)$(somedir) ! # so it does not work when $(somedir) is undefined and ! # $(DESTDIR) is not. ! # To support the latter case, we have to write ! # test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir), ! # so the `.' trick is pointless. ! mkdir_p='mkdir -p --' ! else ! # On NextStep and OpenStep, the `mkdir' command does not ! # recognize any option. It will interpret all options as ! # directories to create, and then abort because `.' already ! # exists. ! for d in ./-p ./--version; ! do ! test -d $d && rmdir $d ! done ! # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists. ! if test -f "$ac_aux_dir/mkinstalldirs"; then ! mkdir_p='$(mkinstalldirs)' else ! mkdir_p='$(install_sh) -d' fi fi for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 ! echo "$as_me:$LINENO: checking for $ac_word" >&5 ! echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_AWK+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 2105,2164 ---- echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} fi ! { echo "$as_me:$LINENO: checking for a thread-safe mkdir -p" >&5 ! echo $ECHO_N "checking for a thread-safe mkdir -p... $ECHO_C" >&6; } ! if test -z "$MKDIR_P"; then ! if test "${ac_cv_path_mkdir+set}" = set; then ! echo $ECHO_N "(cached) $ECHO_C" >&6 ! else ! as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ! for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin ! do ! IFS=$as_save_IFS ! test -z "$as_dir" && as_dir=. ! for ac_prog in mkdir gmkdir; do ! for ac_exec_ext in '' $ac_executable_extensions; do ! { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue ! case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( ! 'mkdir (GNU coreutils) '* | \ ! 'mkdir (coreutils) '* | \ ! 'mkdir (fileutils) '4.1*) ! ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext ! break 3;; ! esac ! done ! done ! done ! IFS=$as_save_IFS ! ! fi ! ! if test "${ac_cv_path_mkdir+set}" = set; then ! MKDIR_P="$ac_cv_path_mkdir -p" else ! # As a last resort, use the slow shell script. Don't cache a ! # value for MKDIR_P within a source directory, because that will ! # break other packages using the cache if that directory is ! # removed, or if the value is a relative name. ! test -d ./--version && rmdir ./--version ! MKDIR_P="$ac_install_sh -d" fi fi + { echo "$as_me:$LINENO: result: $MKDIR_P" >&5 + echo "${ECHO_T}$MKDIR_P" >&6; } + + mkdir_p="$MKDIR_P" + case $mkdir_p in + [\\/$]* | ?:[\\/]*) ;; + */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; + esac for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 ! { echo "$as_me:$LINENO: checking for $ac_word" >&5 ! echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_AWK+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 1706,1759 **** IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do ! if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AWK="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then ! echo "$as_me:$LINENO: result: $AWK" >&5 ! echo "${ECHO_T}$AWK" >&6 else ! echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6 fi test -n "$AWK" && break done ! echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 ! echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6 ! set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,:./+-,___p_,'` ! if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.make <<\_ACEOF all: ! @echo 'ac_maketemp="$(MAKE)"' _ACEOF # GNU make sometimes prints "make[1]: Entering...", which would confuse us. ! eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=` ! if test -n "$ac_maketemp"; then ! eval ac_cv_prog_make_${ac_make}_set=yes ! else ! eval ac_cv_prog_make_${ac_make}_set=no ! fi rm -f conftest.make fi ! if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then ! echo "$as_me:$LINENO: result: yes" >&5 ! echo "${ECHO_T}yes" >&6 SET_MAKE= else ! echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6 SET_MAKE="MAKE=${MAKE-make}" fi --- 2171,2227 ---- IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do ! if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_AWK="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done + IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then ! { echo "$as_me:$LINENO: result: $AWK" >&5 ! echo "${ECHO_T}$AWK" >&6; } else ! { echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6; } fi + test -n "$AWK" && break done ! { echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 ! echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; } ! set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` ! if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.make <<\_ACEOF + SHELL = /bin/sh all: ! @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering...", which would confuse us. ! case `${MAKE-make} -f conftest.make 2>/dev/null` in ! *@@@%%%=?*=@@@%%%*) ! eval ac_cv_prog_make_${ac_make}_set=yes;; ! *) ! eval ac_cv_prog_make_${ac_make}_set=no;; ! esac rm -f conftest.make fi ! if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then ! { echo "$as_me:$LINENO: result: yes" >&5 ! echo "${ECHO_T}yes" >&6; } SET_MAKE= else ! { echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi *************** *** 1766,1777 **** fi rmdir .tst 2>/dev/null ! # test to see if srcdir already configured ! if test "`cd $srcdir && pwd`" != "`pwd`" && ! test -f $srcdir/config.status; then ! { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;} { (exit 1); exit 1; }; } fi # test whether we have cygpath --- 2234,2249 ---- fi rmdir .tst 2>/dev/null ! if test "`cd $srcdir && pwd`" != "`pwd`"; then ! # Use -I$(srcdir) only when $(srcdir) != ., so that make's output ! # is not polluted with repeated "-I." ! am__isrc=' -I$(srcdir)' ! # test to see if srcdir already configured ! if test -f $srcdir/config.status; then ! { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;} { (exit 1); exit 1; }; } + fi fi # test whether we have cygpath *************** *** 1786,1792 **** # Define the identity of the package. PACKAGE='gsl' ! VERSION='1.9' cat >>confdefs.h <<_ACEOF --- 2258,2264 ---- # Define the identity of the package. PACKAGE='gsl' ! VERSION='1.10' cat >>confdefs.h <<_ACEOF *************** *** 1814,1820 **** MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} ! install_sh=${install_sh-"$am_aux_dir/install-sh"} # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right --- 2286,2292 ---- MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} ! install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"} # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right *************** *** 1824,1831 **** if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 ! echo "$as_me:$LINENO: checking for $ac_word" >&5 ! echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 2296,2303 ---- if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 ! { echo "$as_me:$LINENO: checking for $ac_word" >&5 ! echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 1838,1869 **** IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do ! if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then ! echo "$as_me:$LINENO: result: $STRIP" >&5 ! echo "${ECHO_T}$STRIP" >&6 else ! echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6 fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 ! echo "$as_me:$LINENO: checking for $ac_word" >&5 ! echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 2310,2343 ---- IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do ! if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done + IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then ! { echo "$as_me:$LINENO: result: $STRIP" >&5 ! echo "${ECHO_T}$STRIP" >&6; } else ! { echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6; } fi + fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 ! { echo "$as_me:$LINENO: checking for $ac_word" >&5 ! echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 1876,1908 **** IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do ! if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done - test -z "$ac_cv_prog_ac_ct_STRIP" && ac_cv_prog_ac_ct_STRIP=":" fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then ! echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 ! echo "${ECHO_T}$ac_ct_STRIP" >&6 else ! echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6 fi ! STRIP=$ac_ct_STRIP else STRIP="$ac_cv_prog_STRIP" fi fi ! INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s" # We need awk for the "check" target. The system "awk" is bad on # some platforms. --- 2350,2396 ---- IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do ! if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_STRIP="strip" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done + IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then ! { echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 ! echo "${ECHO_T}$ac_ct_STRIP" >&6; } else ! { echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6; } fi ! if test "x$ac_ct_STRIP" = x; then ! STRIP=":" ! else ! case $cross_compiling:$ac_tool_warned in ! yes:) ! { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ! whose name does not start with the host triplet. If you think this ! configuration is useful to you, please write to autoconf@gnu.org." >&5 ! echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ! whose name does not start with the host triplet. If you think this ! configuration is useful to you, please write to autoconf@gnu.org." >&2;} ! ac_tool_warned=yes ;; ! esac ! STRIP=$ac_ct_STRIP ! fi else STRIP="$ac_cv_prog_STRIP" fi fi ! INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" # We need awk for the "check" target. The system "awk" is bad on # some platforms. *************** *** 1916,1937 **** ! ac_config_headers="$ac_config_headers config.h" ! echo "$as_me:$LINENO: checking whether to enable maintainer-specific portions of Makefiles" >&5 ! echo $ECHO_N "checking whether to enable maintainer-specific portions of Makefiles... $ECHO_C" >&6 ! # Check whether --enable-maintainer-mode or --disable-maintainer-mode was given. if test "${enable_maintainer_mode+set}" = set; then ! enableval="$enable_maintainer_mode" ! USE_MAINTAINER_MODE=$enableval else USE_MAINTAINER_MODE=no ! fi; ! echo "$as_me:$LINENO: result: $USE_MAINTAINER_MODE" >&5 ! echo "${ECHO_T}$USE_MAINTAINER_MODE" >&6 ! ! if test $USE_MAINTAINER_MODE = yes; then MAINTAINER_MODE_TRUE= MAINTAINER_MODE_FALSE='#' else --- 2404,2423 ---- ! ac_config_headers="$ac_config_headers config.h" ! { echo "$as_me:$LINENO: checking whether to enable maintainer-specific portions of Makefiles" >&5 ! echo $ECHO_N "checking whether to enable maintainer-specific portions of Makefiles... $ECHO_C" >&6; } ! # Check whether --enable-maintainer-mode was given. if test "${enable_maintainer_mode+set}" = set; then ! enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval else USE_MAINTAINER_MODE=no ! fi ! { echo "$as_me:$LINENO: result: $USE_MAINTAINER_MODE" >&5 ! echo "${ECHO_T}$USE_MAINTAINER_MODE" >&6; } ! if test $USE_MAINTAINER_MODE = yes; then MAINTAINER_MODE_TRUE= MAINTAINER_MODE_FALSE='#' else *************** *** 1951,2052 **** case "$VERSION" in *+) - cat >>confdefs.h <<\_ACEOF - #define RELEASED 0 - _ACEOF - ;; *) ! cat >>confdefs.h <<\_ACEOF ! #define RELEASED 1 _ACEOF ;; esac ! ! echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 ! echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6 ! set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,:./+-,___p_,'` ! if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.make <<\_ACEOF all: ! @echo 'ac_maketemp="$(MAKE)"' _ACEOF # GNU make sometimes prints "make[1]: Entering...", which would confuse us. ! eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=` ! if test -n "$ac_maketemp"; then ! eval ac_cv_prog_make_${ac_make}_set=yes ! else ! eval ac_cv_prog_make_${ac_make}_set=no ! fi rm -f conftest.make fi ! if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then ! echo "$as_me:$LINENO: result: yes" >&5 ! echo "${ECHO_T}yes" >&6 SET_MAKE= else ! echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6 SET_MAKE="MAKE=${MAKE-make}" fi # Make sure we can run config.sub. ! $ac_config_sub sun4 >/dev/null 2>&1 || ! { { echo "$as_me:$LINENO: error: cannot run $ac_config_sub" >&5 ! echo "$as_me: error: cannot run $ac_config_sub" >&2;} { (exit 1); exit 1; }; } ! echo "$as_me:$LINENO: checking build system type" >&5 ! echo $ECHO_N "checking build system type... $ECHO_C" >&6 if test "${ac_cv_build+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ! ac_cv_build_alias=$build_alias ! test -z "$ac_cv_build_alias" && ! ac_cv_build_alias=`$ac_config_guess` ! test -z "$ac_cv_build_alias" && { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5 echo "$as_me: error: cannot guess build type; you must specify one" >&2;} { (exit 1); exit 1; }; } ! ac_cv_build=`$ac_config_sub $ac_cv_build_alias` || ! { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_build_alias failed" >&5 ! echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed" >&2;} { (exit 1); exit 1; }; } fi ! echo "$as_me:$LINENO: result: $ac_cv_build" >&5 ! echo "${ECHO_T}$ac_cv_build" >&6 build=$ac_cv_build ! build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` ! build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` ! build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` ! echo "$as_me:$LINENO: checking host system type" >&5 ! echo $ECHO_N "checking host system type... $ECHO_C" >&6 if test "${ac_cv_host+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ! ac_cv_host_alias=$host_alias ! test -z "$ac_cv_host_alias" && ! ac_cv_host_alias=$ac_cv_build_alias ! ac_cv_host=`$ac_config_sub $ac_cv_host_alias` || ! { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_host_alias failed" >&5 ! echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;} { (exit 1); exit 1; }; } fi ! echo "$as_me:$LINENO: result: $ac_cv_host" >&5 ! echo "${ECHO_T}$ac_cv_host" >&6 host=$ac_cv_host ! host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` ! host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` ! host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` --- 2437,2564 ---- case "$VERSION" in *+) ;; *) ! ! cat >>confdefs.h <<\_ACEOF ! #define RELEASED _ACEOF ;; esac ! { echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 ! echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; } ! set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` ! if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.make <<\_ACEOF + SHELL = /bin/sh all: ! @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering...", which would confuse us. ! case `${MAKE-make} -f conftest.make 2>/dev/null` in ! *@@@%%%=?*=@@@%%%*) ! eval ac_cv_prog_make_${ac_make}_set=yes;; ! *) ! eval ac_cv_prog_make_${ac_make}_set=no;; ! esac rm -f conftest.make fi ! if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then ! { echo "$as_me:$LINENO: result: yes" >&5 ! echo "${ECHO_T}yes" >&6; } SET_MAKE= else ! { echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi # Make sure we can run config.sub. ! $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || ! { { echo "$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub" >&5 ! echo "$as_me: error: cannot run $SHELL $ac_aux_dir/config.sub" >&2;} { (exit 1); exit 1; }; } ! { echo "$as_me:$LINENO: checking build system type" >&5 ! echo $ECHO_N "checking build system type... $ECHO_C" >&6; } if test "${ac_cv_build+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ! ac_build_alias=$build_alias ! test "x$ac_build_alias" = x && ! ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` ! test "x$ac_build_alias" = x && { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5 echo "$as_me: error: cannot guess build type; you must specify one" >&2;} { (exit 1); exit 1; }; } ! ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || ! { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&5 ! echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&2;} { (exit 1); exit 1; }; } fi ! { echo "$as_me:$LINENO: result: $ac_cv_build" >&5 ! echo "${ECHO_T}$ac_cv_build" >&6; } ! case $ac_cv_build in ! *-*-*) ;; ! *) { { echo "$as_me:$LINENO: error: invalid value of canonical build" >&5 ! echo "$as_me: error: invalid value of canonical build" >&2;} ! { (exit 1); exit 1; }; };; ! esac build=$ac_cv_build ! ac_save_IFS=$IFS; IFS='-' ! set x $ac_cv_build ! shift ! build_cpu=$1 ! build_vendor=$2 ! shift; shift ! # Remember, the first character of IFS is used to create $*, ! # except with old shells: ! build_os=$* ! IFS=$ac_save_IFS ! case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac ! { echo "$as_me:$LINENO: checking host system type" >&5 ! echo $ECHO_N "checking host system type... $ECHO_C" >&6; } if test "${ac_cv_host+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ! if test "x$host_alias" = x; then ! ac_cv_host=$ac_cv_build ! else ! ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || ! { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&5 ! echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&2;} { (exit 1); exit 1; }; } + fi fi ! { echo "$as_me:$LINENO: result: $ac_cv_host" >&5 ! echo "${ECHO_T}$ac_cv_host" >&6; } ! case $ac_cv_host in ! *-*-*) ;; ! *) { { echo "$as_me:$LINENO: error: invalid value of canonical host" >&5 ! echo "$as_me: error: invalid value of canonical host" >&2;} ! { (exit 1); exit 1; }; };; ! esac host=$ac_cv_host ! ac_save_IFS=$IFS; IFS='-' ! set x $ac_cv_host ! shift ! host_cpu=$1 ! host_vendor=$2 ! shift; shift ! # Remember, the first character of IFS is used to create $*, ! # except with old shells: ! host_os=$* ! IFS=$ac_save_IFS ! case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac *************** *** 2064,2071 **** if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 ! echo "$as_me:$LINENO: checking for $ac_word" >&5 ! echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 2576,2583 ---- if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 ! { echo "$as_me:$LINENO: checking for $ac_word" >&5 ! echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 2078,2109 **** IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do ! if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then ! echo "$as_me:$LINENO: result: $CC" >&5 ! echo "${ECHO_T}$CC" >&6 else ! echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6 fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 ! echo "$as_me:$LINENO: checking for $ac_word" >&5 ! echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 2590,2623 ---- IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do ! if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}gcc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done + IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then ! { echo "$as_me:$LINENO: result: $CC" >&5 ! echo "${ECHO_T}$CC" >&6; } else ! { echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6; } fi + fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 ! { echo "$as_me:$LINENO: checking for $ac_word" >&5 ! echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 2116,2151 **** IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do ! if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then ! echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 ! echo "${ECHO_T}$ac_ct_CC" >&6 else ! echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6 fi ! CC=$ac_ct_CC else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then ! if test -n "$ac_tool_prefix"; then ! # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 ! echo "$as_me:$LINENO: checking for $ac_word" >&5 ! echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 2630,2680 ---- IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do ! if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="gcc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done + IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then ! { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 ! echo "${ECHO_T}$ac_ct_CC" >&6; } else ! { echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6; } fi ! if test "x$ac_ct_CC" = x; then ! CC="" ! else ! case $cross_compiling:$ac_tool_warned in ! yes:) ! { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ! whose name does not start with the host triplet. If you think this ! configuration is useful to you, please write to autoconf@gnu.org." >&5 ! echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ! whose name does not start with the host triplet. If you think this ! configuration is useful to you, please write to autoconf@gnu.org." >&2;} ! ac_tool_warned=yes ;; ! esac ! CC=$ac_ct_CC ! fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then ! if test -n "$ac_tool_prefix"; then ! # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 ! { echo "$as_me:$LINENO: checking for $ac_word" >&5 ! echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 2158,2231 **** IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do ! if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then ! echo "$as_me:$LINENO: result: $CC" >&5 ! echo "${ECHO_T}$CC" >&6 ! else ! echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6 ! fi ! ! fi ! if test -z "$ac_cv_prog_CC"; then ! ac_ct_CC=$CC ! # Extract the first word of "cc", so it can be a program name with args. ! set dummy cc; ac_word=$2 ! echo "$as_me:$LINENO: checking for $ac_word" >&5 ! echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 ! if test "${ac_cv_prog_ac_ct_CC+set}" = set; then ! echo $ECHO_N "(cached) $ECHO_C" >&6 ! else ! if test -n "$ac_ct_CC"; then ! ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. ! else ! as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ! for as_dir in $PATH ! do ! IFS=$as_save_IFS ! test -z "$as_dir" && as_dir=. ! for ac_exec_ext in '' $ac_executable_extensions; do ! if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ! ac_cv_prog_ac_ct_CC="cc" ! echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 ! break 2 ! fi ! done ! done ! ! fi ! fi ! ac_ct_CC=$ac_cv_prog_ac_ct_CC ! if test -n "$ac_ct_CC"; then ! echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 ! echo "${ECHO_T}$ac_ct_CC" >&6 else ! echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6 fi - CC=$ac_ct_CC - else - CC="$ac_cv_prog_CC" - fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 ! echo "$as_me:$LINENO: checking for $ac_word" >&5 ! echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 2687,2720 ---- IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do ! if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}cc" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done + IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then ! { echo "$as_me:$LINENO: result: $CC" >&5 ! echo "${ECHO_T}$CC" >&6; } else ! { echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6; } fi + fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 ! { echo "$as_me:$LINENO: checking for $ac_word" >&5 ! echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 2239,2245 **** IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do ! if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue --- 2728,2734 ---- IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do ! if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue *************** *** 2250,2255 **** --- 2739,2745 ---- fi done done + IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. *************** *** 2267,2288 **** fi CC=$ac_cv_prog_CC if test -n "$CC"; then ! echo "$as_me:$LINENO: result: $CC" >&5 ! echo "${ECHO_T}$CC" >&6 else ! echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6 fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then ! for ac_prog in cl do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 ! echo "$as_me:$LINENO: checking for $ac_word" >&5 ! echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 2757,2779 ---- fi CC=$ac_cv_prog_CC if test -n "$CC"; then ! { echo "$as_me:$LINENO: result: $CC" >&5 ! echo "${ECHO_T}$CC" >&6; } else ! { echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6; } fi + fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then ! for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 ! { echo "$as_me:$LINENO: checking for $ac_word" >&5 ! echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 2295,2330 **** IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do ! if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then ! echo "$as_me:$LINENO: result: $CC" >&5 ! echo "${ECHO_T}$CC" >&6 else ! echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6 fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC ! for ac_prog in cl do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 ! echo "$as_me:$LINENO: checking for $ac_word" >&5 ! echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 2786,2823 ---- IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do ! if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done + IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then ! { echo "$as_me:$LINENO: result: $CC" >&5 ! echo "${ECHO_T}$CC" >&6; } else ! { echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6; } fi + test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC ! for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 ! { echo "$as_me:$LINENO: checking for $ac_word" >&5 ! echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 2337,2365 **** IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do ! if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then ! echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 ! echo "${ECHO_T}$ac_ct_CC" >&6 else ! echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6 fi test -n "$ac_ct_CC" && break done ! CC=$ac_ct_CC fi fi --- 2830,2874 ---- IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do ! if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="$ac_prog" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done + IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then ! { echo "$as_me:$LINENO: result: $ac_ct_CC" >&5 ! echo "${ECHO_T}$ac_ct_CC" >&6; } else ! { echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6; } fi + test -n "$ac_ct_CC" && break done ! if test "x$ac_ct_CC" = x; then ! CC="" ! else ! case $cross_compiling:$ac_tool_warned in ! yes:) ! { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ! whose name does not start with the host triplet. If you think this ! configuration is useful to you, please write to autoconf@gnu.org." >&5 ! echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ! whose name does not start with the host triplet. If you think this ! configuration is useful to you, please write to autoconf@gnu.org." >&2;} ! ac_tool_warned=yes ;; ! esac ! CC=$ac_ct_CC ! fi fi fi *************** *** 2372,2392 **** { (exit 1); exit 1; }; } # Provide some information about the compiler. ! echo "$as_me:$LINENO:" \ ! "checking for C compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` ! { (eval echo "$as_me:$LINENO: \"$ac_compiler --version &5\"") >&5 ! (eval $ac_compiler --version &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } ! { (eval echo "$as_me:$LINENO: \"$ac_compiler -v &5\"") >&5 ! (eval $ac_compiler -v &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } ! { (eval echo "$as_me:$LINENO: \"$ac_compiler -V &5\"") >&5 ! (eval $ac_compiler -V &5) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } --- 2881,2915 ---- { (exit 1); exit 1; }; } # Provide some information about the compiler. ! echo "$as_me:$LINENO: checking for C compiler version" >&5 ac_compiler=`set X $ac_compile; echo $2` ! { (ac_try="$ac_compiler --version >&5" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compiler --version >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } ! { (ac_try="$ac_compiler -v >&5" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compiler -v >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } ! { (ac_try="$ac_compiler -V >&5" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compiler -V >&5") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } *************** *** 2411,2457 **** # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. ! echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 ! echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6 ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` ! if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5 ! (eval $ac_link_default) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then ! # Find the output, starting from the most likely. This scheme is ! # not robust to junk in `.', hence go to wildcards (a.*) only as a last ! # resort. ! ! # Be careful to initialize this variable, since it used to be cached. ! # Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile. ! ac_cv_exeext= ! # b.out is created by i960 compilers. ! for ac_file in a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out do test -f "$ac_file" || continue case $ac_file in ! *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ! ;; ! conftest.$ac_ext ) ! # This is the source file. ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) ! ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` ! # FIXME: I believe we export ac_cv_exeext for Libtool, ! # but it would be cool to find out if it's true. Does anybody ! # maintain Libtool? --akim. ! export ac_cv_exeext break;; * ) break;; esac done else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 --- 2934,3010 ---- # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. ! { echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 ! echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6; } ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` ! # ! # List of possible output files, starting from the most likely. ! # The algorithm is not robust to junk in `.', hence go to wildcards (a.*) ! # only as a last resort. b.out is created by i960 compilers. ! ac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out' ! # ! # The IRIX 6 linker writes into existing files which may not be ! # executable, retaining their permissions. Remove them first so a ! # subsequent execution test works. ! ac_rmfiles= ! for ac_file in $ac_files ! do ! case $ac_file in ! *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; ! * ) ac_rmfiles="$ac_rmfiles $ac_file";; ! esac ! done ! rm -f $ac_rmfiles ! ! if { (ac_try="$ac_link_default" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_link_default") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then ! # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. ! # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' ! # in a Makefile. We should not override ac_cv_exeext if it was cached, ! # so that the user can short-circuit this test for compilers unknown to ! # Autoconf. ! for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in ! *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) ! if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; ! then :; else ! ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` ! fi ! # We set ac_cv_exeext here because the later test for it is not ! # safe: cross compilers may not add the suffix if given an `-o' ! # argument, so we may need to know it at that point already. ! # Even if this section looks crufty: it has the advantage of ! # actually working. break;; * ) break;; esac done + test "$ac_cv_exeext" = no && ac_cv_exeext= + else + ac_file='' + fi + + { echo "$as_me:$LINENO: result: $ac_file" >&5 + echo "${ECHO_T}$ac_file" >&6; } + if test -z "$ac_file"; then echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 *************** *** 2463,2481 **** fi ac_exeext=$ac_cv_exeext - echo "$as_me:$LINENO: result: $ac_file" >&5 - echo "${ECHO_T}$ac_file" >&6 ! # Check the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. ! echo "$as_me:$LINENO: checking whether the C compiler works" >&5 ! echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6 # FIXME: These cross compiler hacks should be removed for Autoconf 3.0 # If not cross compiling, check that we can run a simple program. if test "$cross_compiling" != yes; then if { ac_try='./$ac_file' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then --- 3016,3036 ---- fi ac_exeext=$ac_cv_exeext ! # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. ! { echo "$as_me:$LINENO: checking whether the C compiler works" >&5 ! echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6; } # FIXME: These cross compiler hacks should be removed for Autoconf 3.0 # If not cross compiling, check that we can run a simple program. if test "$cross_compiling" != yes; then if { ac_try='./$ac_file' ! { (case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_try") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then *************** *** 2494,2515 **** fi fi fi ! echo "$as_me:$LINENO: result: yes" >&5 ! echo "${ECHO_T}yes" >&6 rm -f a.out a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save ! # Check the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. ! echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 ! echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6 ! echo "$as_me:$LINENO: result: $cross_compiling" >&5 ! echo "${ECHO_T}$cross_compiling" >&6 ! ! echo "$as_me:$LINENO: checking for suffix of executables" >&5 ! echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6 ! if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 ! (eval $ac_link) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then --- 3049,3075 ---- fi fi fi ! { echo "$as_me:$LINENO: result: yes" >&5 ! echo "${ECHO_T}yes" >&6; } rm -f a.out a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save ! # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. ! { echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 ! echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; } ! { echo "$as_me:$LINENO: result: $cross_compiling" >&5 ! echo "${ECHO_T}$cross_compiling" >&6; } ! ! { echo "$as_me:$LINENO: checking for suffix of executables" >&5 ! echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; } ! if { (ac_try="$ac_link" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_link") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then *************** *** 2520,2528 **** for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in ! *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` - export ac_cv_exeext break;; * ) break;; esac --- 3080,3087 ---- for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in ! *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac *************** *** 2536,2549 **** fi rm -f conftest$ac_cv_exeext ! echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 ! echo "${ECHO_T}$ac_cv_exeext" >&6 rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT ! echo "$as_me:$LINENO: checking for suffix of object files" >&5 ! echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6 if test "${ac_cv_objext+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 3095,3108 ---- fi rm -f conftest$ac_cv_exeext ! { echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 ! echo "${ECHO_T}$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT ! { echo "$as_me:$LINENO: checking for suffix of object files" >&5 ! echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6; } if test "${ac_cv_objext+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 2563,2576 **** } _ACEOF rm -f conftest.o conftest.obj ! if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ! (eval $ac_compile) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then ! for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do case $ac_file in ! *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac --- 3122,3141 ---- } _ACEOF rm -f conftest.o conftest.obj ! if { (ac_try="$ac_compile" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compile") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; then ! for ac_file in conftest.o conftest.obj conftest.*; do ! test -f "$ac_file" || continue; case $ac_file in ! *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac *************** *** 2588,2599 **** rm -f conftest.$ac_cv_objext conftest.$ac_ext fi ! echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 ! echo "${ECHO_T}$ac_cv_objext" >&6 OBJEXT=$ac_cv_objext ac_objext=$OBJEXT ! echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 ! echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6 if test "${ac_cv_c_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 3153,3164 ---- rm -f conftest.$ac_cv_objext conftest.$ac_ext fi ! { echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 ! echo "${ECHO_T}$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT ! { echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 ! echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; } if test "${ac_cv_c_compiler_gnu+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 2616,2665 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ! (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ac_compiler_gnu=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_compiler_gnu=no fi ! rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi ! echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 ! echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6 GCC=`test $ac_compiler_gnu = yes && echo yes` ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS ! CFLAGS="-g" ! echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 ! echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6 if test "${ac_cv_prog_cc_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ! cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext --- 3181,3229 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (ac_try="$ac_compile" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest.$ac_objext; then ac_compiler_gnu=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_compiler_gnu=no fi ! ! rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi ! { echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5 ! echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6; } GCC=`test $ac_compiler_gnu = yes && echo yes` ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS ! { echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5 ! echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6; } if test "${ac_cv_prog_cc_g+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ! ac_save_c_werror_flag=$ac_c_werror_flag ! ac_c_werror_flag=yes ! ac_cv_prog_cc_g=no ! CFLAGS="-g" ! cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext *************** *** 2675,2712 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ! (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ac_cv_prog_cc_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_prog_cc_g=no fi ! rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 ! echo "${ECHO_T}$ac_cv_prog_cc_g" >&6 if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then --- 3239,3356 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (ac_try="$ac_compile" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest.$ac_objext; then ! ac_cv_prog_cc_g=yes ! else ! echo "$as_me: failed program was:" >&5 ! sed 's/^/| /' conftest.$ac_ext >&5 ! ! CFLAGS="" ! cat >conftest.$ac_ext <<_ACEOF ! /* confdefs.h. */ ! _ACEOF ! cat confdefs.h >>conftest.$ac_ext ! cat >>conftest.$ac_ext <<_ACEOF ! /* end confdefs.h. */ ! ! int ! main () ! { ! ! ; ! return 0; ! } ! _ACEOF ! rm -f conftest.$ac_objext ! if { (ac_try="$ac_compile" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compile") 2>conftest.er1 ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest.$ac_objext; then ! : ! else ! echo "$as_me: failed program was:" >&5 ! sed 's/^/| /' conftest.$ac_ext >&5 ! ! ac_c_werror_flag=$ac_save_c_werror_flag ! CFLAGS="-g" ! cat >conftest.$ac_ext <<_ACEOF ! /* confdefs.h. */ ! _ACEOF ! cat confdefs.h >>conftest.$ac_ext ! cat >>conftest.$ac_ext <<_ACEOF ! /* end confdefs.h. */ ! ! int ! main () ! { ! ! ; ! return 0; ! } ! _ACEOF ! rm -f conftest.$ac_objext ! if { (ac_try="$ac_compile" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compile") 2>conftest.er1 ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest.$ac_objext; then ac_cv_prog_cc_g=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ! fi ! ! rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ! fi ! ! rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi ! ! rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ! ac_c_werror_flag=$ac_save_c_werror_flag fi ! { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 ! echo "${ECHO_T}$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then *************** *** 2722,2733 **** CFLAGS= fi fi ! echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5 ! echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6 ! if test "${ac_cv_prog_cc_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ! ac_cv_prog_cc_stdc=no ac_save_CC=$CC cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ --- 3366,3377 ---- CFLAGS= fi fi ! { echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5 ! echo $ECHO_N "checking for $CC option to accept ISO C89... $ECHO_C" >&6; } ! if test "${ac_cv_prog_cc_c89+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ! ac_cv_prog_cc_c89=no ac_save_CC=$CC cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ *************** *** 2761,2772 **** /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated ! as 'x'. The following induces an error, until -std1 is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something ! that's true only with -std1. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; --- 3405,3421 ---- /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated ! as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something ! that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; + /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters + inside strings and character constants. */ + #define FOO(x) 'x' + int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; + int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; *************** *** 2781,2985 **** return 0; } _ACEOF ! # Don't try gcc -ansi; that turns off useful extensions and ! # breaks some systems' header files. ! # AIX -qlanglvl=ansi ! # Ultrix and OSF/1 -std1 ! # HP-UX 10.20 and later -Ae ! # HP-UX older versions -Aa -D_HPUX_SOURCE ! # SVR4 -Xc -D__EXTENSIONS__ ! for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" rm -f conftest.$ac_objext ! if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ! (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ! ac_cv_prog_cc_stdc=$ac_arg ! break else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi ! rm -f conftest.err conftest.$ac_objext done ! rm -f conftest.$ac_ext conftest.$ac_objext CC=$ac_save_CC fi ! ! case "x$ac_cv_prog_cc_stdc" in ! x|xno) ! echo "$as_me:$LINENO: result: none needed" >&5 ! echo "${ECHO_T}none needed" >&6 ;; *) ! echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5 ! echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6 ! CC="$CC $ac_cv_prog_cc_stdc" ;; esac - # Some people use a C++ compiler to compile C. Since we use `exit', - # in C++ we need to declare it. In case someone uses the same compiler - # for both compiling C and C++ we need to have the C++ compiler decide - # the declaration of exit, since it's the most demanding environment. - cat >conftest.$ac_ext <<_ACEOF - #ifndef __cplusplus - choke me - #endif - _ACEOF - rm -f conftest.$ac_objext - if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - for ac_declaration in \ - '' \ - 'extern "C" void std::exit (int) throw (); using std::exit;' \ - 'extern "C" void std::exit (int); using std::exit;' \ - 'extern "C" void exit (int) throw ();' \ - 'extern "C" void exit (int);' \ - 'void exit (int);' - do - cat >conftest.$ac_ext <<_ACEOF - /* confdefs.h. */ - _ACEOF - cat confdefs.h >>conftest.$ac_ext - cat >>conftest.$ac_ext <<_ACEOF - /* end confdefs.h. */ - $ac_declaration - #include - int - main () - { - exit (42); - ; - return 0; - } - _ACEOF - rm -f conftest.$ac_objext - if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - : - else - echo "$as_me: failed program was:" >&5 - sed 's/^/| /' conftest.$ac_ext >&5 - - continue - fi - rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - cat >conftest.$ac_ext <<_ACEOF - /* confdefs.h. */ - _ACEOF - cat confdefs.h >>conftest.$ac_ext - cat >>conftest.$ac_ext <<_ACEOF - /* end confdefs.h. */ - $ac_declaration - int - main () - { - exit (42); - ; - return 0; - } - _ACEOF - rm -f conftest.$ac_objext - if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 - (eval $ac_compile) 2>conftest.er1 - ac_status=$? - grep -v '^ *+' conftest.er1 >conftest.err - rm -f conftest.er1 - cat conftest.err >&5 - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); } && - { ac_try='test -z "$ac_c_werror_flag" - || test ! -s conftest.err' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; } && - { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - break - else - echo "$as_me: failed program was:" >&5 - sed 's/^/| /' conftest.$ac_ext >&5 - - fi - rm -f conftest.err conftest.$ac_objext conftest.$ac_ext - done - rm -f conftest* - if test -n "$ac_declaration"; then - echo '#ifdef __cplusplus' >>confdefs.h - echo $ac_declaration >>confdefs.h - echo '#endif' >>confdefs.h - fi - - else - echo "$as_me: failed program was:" >&5 - sed 's/^/| /' conftest.$ac_ext >&5 - fi - rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' --- 3430,3486 ---- return 0; } _ACEOF ! for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ ! -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" rm -f conftest.$ac_objext ! if { (ac_try="$ac_compile" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest.$ac_objext; then ! ac_cv_prog_cc_c89=$ac_arg else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 + fi ! ! rm -f core conftest.err conftest.$ac_objext ! test "x$ac_cv_prog_cc_c89" != "xno" && break done ! rm -f conftest.$ac_ext CC=$ac_save_CC fi ! # AC_CACHE_VAL ! case "x$ac_cv_prog_cc_c89" in ! x) ! { echo "$as_me:$LINENO: result: none needed" >&5 ! echo "${ECHO_T}none needed" >&6; } ;; ! xno) ! { echo "$as_me:$LINENO: result: unsupported" >&5 ! echo "${ECHO_T}unsupported" >&6; } ;; *) ! CC="$CC $ac_cv_prog_cc_c89" ! { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5 ! echo "${ECHO_T}$ac_cv_prog_cc_c89" >&6; } ;; esac ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' *************** *** 2991,2998 **** ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ! echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 ! echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6 # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= --- 3492,3499 ---- ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ! { echo "$as_me:$LINENO: checking how to run the C preprocessor" >&5 ! echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6; } # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= *************** *** 3026,3049 **** #endif Syntax error _ACEOF ! if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 ! (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } >/dev/null; then ! if test -s conftest.err; then ! ac_cpp_err=$ac_c_preproc_warn_flag ! ac_cpp_err=$ac_cpp_err$ac_c_werror_flag ! else ! ac_cpp_err= ! fi ! else ! ac_cpp_err=yes ! fi ! if test -z "$ac_cpp_err"; then : else echo "$as_me: failed program was:" >&5 --- 3527,3548 ---- #endif Syntax error _ACEOF ! if { (ac_try="$ac_cpp conftest.$ac_ext" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } >/dev/null && { ! test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || ! test ! -s conftest.err ! }; then : else echo "$as_me: failed program was:" >&5 *************** *** 3052,3060 **** # Broken: fails on valid input. continue fi rm -f conftest.err conftest.$ac_ext ! # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ --- 3551,3560 ---- # Broken: fails on valid input. continue fi + rm -f conftest.err conftest.$ac_ext ! # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ *************** *** 3064,3087 **** /* end confdefs.h. */ #include _ACEOF ! if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 ! (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } >/dev/null; then ! if test -s conftest.err; then ! ac_cpp_err=$ac_c_preproc_warn_flag ! ac_cpp_err=$ac_cpp_err$ac_c_werror_flag ! else ! ac_cpp_err= ! fi ! else ! ac_cpp_err=yes ! fi ! if test -z "$ac_cpp_err"; then # Broken: success on invalid input. continue else --- 3564,3585 ---- /* end confdefs.h. */ #include _ACEOF ! if { (ac_try="$ac_cpp conftest.$ac_ext" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } >/dev/null && { ! test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || ! test ! -s conftest.err ! }; then # Broken: success on invalid input. continue else *************** *** 3092,3097 **** --- 3590,3596 ---- ac_preproc_ok=: break fi + rm -f conftest.err conftest.$ac_ext done *************** *** 3109,3116 **** else ac_cv_prog_CPP=$CPP fi ! echo "$as_me:$LINENO: result: $CPP" >&5 ! echo "${ECHO_T}$CPP" >&6 ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do --- 3608,3615 ---- else ac_cv_prog_CPP=$CPP fi ! { echo "$as_me:$LINENO: result: $CPP" >&5 ! echo "${ECHO_T}$CPP" >&6; } ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do *************** *** 3133,3156 **** #endif Syntax error _ACEOF ! if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 ! (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } >/dev/null; then ! if test -s conftest.err; then ! ac_cpp_err=$ac_c_preproc_warn_flag ! ac_cpp_err=$ac_cpp_err$ac_c_werror_flag ! else ! ac_cpp_err= ! fi ! else ! ac_cpp_err=yes ! fi ! if test -z "$ac_cpp_err"; then : else echo "$as_me: failed program was:" >&5 --- 3632,3653 ---- #endif Syntax error _ACEOF ! if { (ac_try="$ac_cpp conftest.$ac_ext" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } >/dev/null && { ! test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || ! test ! -s conftest.err ! }; then : else echo "$as_me: failed program was:" >&5 *************** *** 3159,3167 **** # Broken: fails on valid input. continue fi rm -f conftest.err conftest.$ac_ext ! # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ --- 3656,3665 ---- # Broken: fails on valid input. continue fi + rm -f conftest.err conftest.$ac_ext ! # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ *************** *** 3171,3194 **** /* end confdefs.h. */ #include _ACEOF ! if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 ! (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } >/dev/null; then ! if test -s conftest.err; then ! ac_cpp_err=$ac_c_preproc_warn_flag ! ac_cpp_err=$ac_cpp_err$ac_c_werror_flag ! else ! ac_cpp_err= ! fi ! else ! ac_cpp_err=yes ! fi ! if test -z "$ac_cpp_err"; then # Broken: success on invalid input. continue else --- 3669,3690 ---- /* end confdefs.h. */ #include _ACEOF ! if { (ac_try="$ac_cpp conftest.$ac_ext" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } >/dev/null && { ! test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || ! test ! -s conftest.err ! }; then # Broken: success on invalid input. continue else *************** *** 3199,3204 **** --- 3695,3701 ---- ac_preproc_ok=: break fi + rm -f conftest.err conftest.$ac_ext done *************** *** 3233,3240 **** # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. ! echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 ! echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6 if test -z "$INSTALL"; then if test "${ac_cv_path_install+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 --- 3730,3737 ---- # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. ! { echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5 ! echo $ECHO_N "checking for a BSD-compatible install... $ECHO_C" >&6; } if test -z "$INSTALL"; then if test "${ac_cv_path_install+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 *************** *** 3256,3262 **** # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do ! if $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. --- 3753,3759 ---- # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do ! if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. *************** *** 3275,3295 **** ;; esac done fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else ! # As a last resort, use the slow shell script. We don't cache a ! # path for INSTALL within a source directory, because that will # break other packages using the cache if that directory is ! # removed, or if the path is relative. INSTALL=$ac_install_sh fi fi ! echo "$as_me:$LINENO: result: $INSTALL" >&5 ! echo "${ECHO_T}$INSTALL" >&6 # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. --- 3772,3793 ---- ;; esac done + IFS=$as_save_IFS fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else ! # As a last resort, use the slow shell script. Don't cache a ! # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is ! # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi ! { echo "$as_me:$LINENO: result: $INSTALL" >&5 ! echo "${ECHO_T}$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. *************** *** 3299,3320 **** test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' ! echo "$as_me:$LINENO: checking whether ln -s works" >&5 ! echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6 LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then ! echo "$as_me:$LINENO: result: yes" >&5 ! echo "${ECHO_T}yes" >&6 else ! echo "$as_me:$LINENO: result: no, using $LN_S" >&5 ! echo "${ECHO_T}no, using $LN_S" >&6 fi ! # Check whether --enable-shared or --disable-shared was given. if test "${enable_shared+set}" = set; then ! enableval="$enable_shared" ! p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; --- 3797,3817 ---- test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' ! { echo "$as_me:$LINENO: checking whether ln -s works" >&5 ! echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6; } LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then ! { echo "$as_me:$LINENO: result: yes" >&5 ! echo "${ECHO_T}yes" >&6; } else ! { echo "$as_me:$LINENO: result: no, using $LN_S" >&5 ! echo "${ECHO_T}no, using $LN_S" >&6; } fi ! # Check whether --enable-shared was given. if test "${enable_shared+set}" = set; then ! enableval=$enable_shared; p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *************** *** 3333,3344 **** esac else enable_shared=yes ! fi; ! # Check whether --enable-static or --disable-static was given. if test "${enable_static+set}" = set; then ! enableval="$enable_static" ! p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; --- 3830,3841 ---- esac else enable_shared=yes ! fi ! ! # Check whether --enable-static was given. if test "${enable_static+set}" = set; then ! enableval=$enable_static; p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *************** *** 3357,3368 **** esac else enable_static=yes ! fi; ! # Check whether --enable-fast-install or --disable-fast-install was given. if test "${enable_fast_install+set}" = set; then ! enableval="$enable_fast_install" ! p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; --- 3854,3865 ---- esac else enable_static=yes ! fi ! ! # Check whether --enable-fast-install was given. if test "${enable_fast_install+set}" = set; then ! enableval=$enable_fast_install; p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *************** *** 3381,3390 **** esac else enable_fast_install=yes ! fi; ! echo "$as_me:$LINENO: checking for a sed that does not truncate output" >&5 ! echo $ECHO_N "checking for a sed that does not truncate output... $ECHO_C" >&6 if test "${lt_cv_path_SED+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 3878,3888 ---- esac else enable_fast_install=yes ! fi ! ! { echo "$as_me:$LINENO: checking for a sed that does not truncate output" >&5 ! echo $ECHO_N "checking for a sed that does not truncate output... $ECHO_C" >&6; } if test "${lt_cv_path_SED+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 3403,3408 **** --- 3901,3907 ---- done done done + IFS=$as_save_IFS lt_ac_max=0 lt_ac_count=0 # Add /usr/xpg4/bin/sed as it is typically found on Solaris *************** *** 3437,3473 **** fi SED=$lt_cv_path_SED - echo "$as_me:$LINENO: result: $SED" >&5 - echo "${ECHO_T}$SED" >&6 ! echo "$as_me:$LINENO: checking for egrep" >&5 ! echo $ECHO_N "checking for egrep... $ECHO_C" >&6 ! if test "${ac_cv_prog_egrep+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ! if echo a | (grep -E '(a|b)') >/dev/null 2>&1 ! then ac_cv_prog_egrep='grep -E' ! else ac_cv_prog_egrep='egrep' fi fi - echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5 - echo "${ECHO_T}$ac_cv_prog_egrep" >&6 - EGREP=$ac_cv_prog_egrep ! # Check whether --with-gnu-ld or --without-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then ! withval="$with_gnu_ld" ! test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no ! fi; ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. ! echo "$as_me:$LINENO: checking for ld used by $CC" >&5 ! echo $ECHO_N "checking for ld used by $CC... $ECHO_C" >&6 case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw --- 3936,4120 ---- fi SED=$lt_cv_path_SED ! { echo "$as_me:$LINENO: result: $SED" >&5 ! echo "${ECHO_T}$SED" >&6; } ! ! { echo "$as_me:$LINENO: checking for grep that handles long lines and -e" >&5 ! echo $ECHO_N "checking for grep that handles long lines and -e... $ECHO_C" >&6; } ! if test "${ac_cv_path_GREP+set}" = set; then ! echo $ECHO_N "(cached) $ECHO_C" >&6 ! else ! # Extract the first word of "grep ggrep" to use in msg output ! if test -z "$GREP"; then ! set dummy grep ggrep; ac_prog_name=$2 ! if test "${ac_cv_path_GREP+set}" = set; then ! echo $ECHO_N "(cached) $ECHO_C" >&6 ! else ! ac_path_GREP_found=false ! # Loop through the user's path and test for each of PROGNAME-LIST ! as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ! for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin ! do ! IFS=$as_save_IFS ! test -z "$as_dir" && as_dir=. ! for ac_prog in grep ggrep; do ! for ac_exec_ext in '' $ac_executable_extensions; do ! ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" ! { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue ! # Check for GNU ac_path_GREP and select it if it is found. ! # Check for GNU $ac_path_GREP ! case `"$ac_path_GREP" --version 2>&1` in ! *GNU*) ! ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; ! *) ! ac_count=0 ! echo $ECHO_N "0123456789$ECHO_C" >"conftest.in" ! while : ! do ! cat "conftest.in" "conftest.in" >"conftest.tmp" ! mv "conftest.tmp" "conftest.in" ! cp "conftest.in" "conftest.nl" ! echo 'GREP' >> "conftest.nl" ! "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break ! diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break ! ac_count=`expr $ac_count + 1` ! if test $ac_count -gt ${ac_path_GREP_max-0}; then ! # Best one so far, save it but keep looking for a better one ! ac_cv_path_GREP="$ac_path_GREP" ! ac_path_GREP_max=$ac_count ! fi ! # 10*(2^10) chars as input seems more than enough ! test $ac_count -gt 10 && break ! done ! rm -f conftest.in conftest.tmp conftest.nl conftest.out;; ! esac ! ! ! $ac_path_GREP_found && break 3 ! done ! done ! ! done ! IFS=$as_save_IFS ! ! ! fi ! ! GREP="$ac_cv_path_GREP" ! if test -z "$GREP"; then ! { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 ! echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} ! { (exit 1); exit 1; }; } ! fi ! ! else ! ac_cv_path_GREP=$GREP ! fi ! ! ! fi ! { echo "$as_me:$LINENO: result: $ac_cv_path_GREP" >&5 ! echo "${ECHO_T}$ac_cv_path_GREP" >&6; } ! GREP="$ac_cv_path_GREP" ! ! ! { echo "$as_me:$LINENO: checking for egrep" >&5 ! echo $ECHO_N "checking for egrep... $ECHO_C" >&6; } ! if test "${ac_cv_path_EGREP+set}" = set; then ! echo $ECHO_N "(cached) $ECHO_C" >&6 ! else ! if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 ! then ac_cv_path_EGREP="$GREP -E" ! else ! # Extract the first word of "egrep" to use in msg output ! if test -z "$EGREP"; then ! set dummy egrep; ac_prog_name=$2 ! if test "${ac_cv_path_EGREP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else ! ac_path_EGREP_found=false ! # Loop through the user's path and test for each of PROGNAME-LIST ! as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ! for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin ! do ! IFS=$as_save_IFS ! test -z "$as_dir" && as_dir=. ! for ac_prog in egrep; do ! for ac_exec_ext in '' $ac_executable_extensions; do ! ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" ! { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue ! # Check for GNU ac_path_EGREP and select it if it is found. ! # Check for GNU $ac_path_EGREP ! case `"$ac_path_EGREP" --version 2>&1` in ! *GNU*) ! ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; ! *) ! ac_count=0 ! echo $ECHO_N "0123456789$ECHO_C" >"conftest.in" ! while : ! do ! cat "conftest.in" "conftest.in" >"conftest.tmp" ! mv "conftest.tmp" "conftest.in" ! cp "conftest.in" "conftest.nl" ! echo 'EGREP' >> "conftest.nl" ! "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break ! diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break ! ac_count=`expr $ac_count + 1` ! if test $ac_count -gt ${ac_path_EGREP_max-0}; then ! # Best one so far, save it but keep looking for a better one ! ac_cv_path_EGREP="$ac_path_EGREP" ! ac_path_EGREP_max=$ac_count fi + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done + rm -f conftest.in conftest.tmp conftest.nl conftest.out;; + esac + + + $ac_path_EGREP_found && break 3 + done + done + + done + IFS=$as_save_IFS + + + fi + + EGREP="$ac_cv_path_EGREP" + if test -z "$EGREP"; then + { { echo "$as_me:$LINENO: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&5 + echo "$as_me: error: no acceptable $ac_prog_name could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" >&2;} + { (exit 1); exit 1; }; } fi + else + ac_cv_path_EGREP=$EGREP + fi + + + fi + fi + { echo "$as_me:$LINENO: result: $ac_cv_path_EGREP" >&5 + echo "${ECHO_T}$ac_cv_path_EGREP" >&6; } + EGREP="$ac_cv_path_EGREP" ! ! # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then ! withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no ! fi ! ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. ! { echo "$as_me:$LINENO: checking for ld used by $CC" >&5 ! echo $ECHO_N "checking for ld used by $CC... $ECHO_C" >&6; } case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw *************** *** 3496,3506 **** ;; esac elif test "$with_gnu_ld" = yes; then ! echo "$as_me:$LINENO: checking for GNU ld" >&5 ! echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6 else ! echo "$as_me:$LINENO: checking for non-GNU ld" >&5 ! echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6 fi if test "${lt_cv_path_LD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 --- 4143,4153 ---- ;; esac elif test "$with_gnu_ld" = yes; then ! { echo "$as_me:$LINENO: checking for GNU ld" >&5 ! echo $ECHO_N "checking for GNU ld... $ECHO_C" >&6; } else ! { echo "$as_me:$LINENO: checking for non-GNU ld" >&5 ! echo $ECHO_N "checking for non-GNU ld... $ECHO_C" >&6; } fi if test "${lt_cv_path_LD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 *************** *** 3533,3549 **** LD="$lt_cv_path_LD" if test -n "$LD"; then ! echo "$as_me:$LINENO: result: $LD" >&5 ! echo "${ECHO_T}$LD" >&6 else ! echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6 fi test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5 echo "$as_me: error: no acceptable ld found in \$PATH" >&2;} { (exit 1); exit 1; }; } ! echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5 ! echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6 if test "${lt_cv_prog_gnu_ld+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 4180,4196 ---- LD="$lt_cv_path_LD" if test -n "$LD"; then ! { echo "$as_me:$LINENO: result: $LD" >&5 ! echo "${ECHO_T}$LD" >&6; } else ! { echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6; } fi test -z "$LD" && { { echo "$as_me:$LINENO: error: no acceptable ld found in \$PATH" >&5 echo "$as_me: error: no acceptable ld found in \$PATH" >&2;} { (exit 1); exit 1; }; } ! { echo "$as_me:$LINENO: checking if the linker ($LD) is GNU ld" >&5 ! echo $ECHO_N "checking if the linker ($LD) is GNU ld... $ECHO_C" >&6; } if test "${lt_cv_prog_gnu_ld+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 3557,3576 **** ;; esac fi ! echo "$as_me:$LINENO: result: $lt_cv_prog_gnu_ld" >&5 ! echo "${ECHO_T}$lt_cv_prog_gnu_ld" >&6 with_gnu_ld=$lt_cv_prog_gnu_ld ! echo "$as_me:$LINENO: checking for $LD option to reload object files" >&5 ! echo $ECHO_N "checking for $LD option to reload object files... $ECHO_C" >&6 if test "${lt_cv_ld_reload_flag+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_ld_reload_flag='-r' fi ! echo "$as_me:$LINENO: result: $lt_cv_ld_reload_flag" >&5 ! echo "${ECHO_T}$lt_cv_ld_reload_flag" >&6 reload_flag=$lt_cv_ld_reload_flag case $reload_flag in "" | " "*) ;; --- 4204,4223 ---- ;; esac fi ! { echo "$as_me:$LINENO: result: $lt_cv_prog_gnu_ld" >&5 ! echo "${ECHO_T}$lt_cv_prog_gnu_ld" >&6; } with_gnu_ld=$lt_cv_prog_gnu_ld ! { echo "$as_me:$LINENO: checking for $LD option to reload object files" >&5 ! echo $ECHO_N "checking for $LD option to reload object files... $ECHO_C" >&6; } if test "${lt_cv_ld_reload_flag+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else lt_cv_ld_reload_flag='-r' fi ! { echo "$as_me:$LINENO: result: $lt_cv_ld_reload_flag" >&5 ! echo "${ECHO_T}$lt_cv_ld_reload_flag" >&6; } reload_flag=$lt_cv_ld_reload_flag case $reload_flag in "" | " "*) ;; *************** *** 3587,3594 **** ;; esac ! echo "$as_me:$LINENO: checking for BSD-compatible nm" >&5 ! echo $ECHO_N "checking for BSD-compatible nm... $ECHO_C" >&6 if test "${lt_cv_path_NM+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 4234,4241 ---- ;; esac ! { echo "$as_me:$LINENO: checking for BSD-compatible nm" >&5 ! echo $ECHO_N "checking for BSD-compatible nm... $ECHO_C" >&6; } if test "${lt_cv_path_NM+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 3636,3647 **** test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm fi fi ! echo "$as_me:$LINENO: result: $lt_cv_path_NM" >&5 ! echo "${ECHO_T}$lt_cv_path_NM" >&6 NM="$lt_cv_path_NM" ! echo "$as_me:$LINENO: checking how to recognise dependent libraries" >&5 ! echo $ECHO_N "checking how to recognise dependent libraries... $ECHO_C" >&6 if test "${lt_cv_deplibs_check_method+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 4283,4294 ---- test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm fi fi ! { echo "$as_me:$LINENO: result: $lt_cv_path_NM" >&5 ! echo "${ECHO_T}$lt_cv_path_NM" >&6; } NM="$lt_cv_path_NM" ! { echo "$as_me:$LINENO: checking how to recognise dependent libraries" >&5 ! echo $ECHO_N "checking how to recognise dependent libraries... $ECHO_C" >&6; } if test "${lt_cv_deplibs_check_method+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 3816,3823 **** esac fi ! echo "$as_me:$LINENO: result: $lt_cv_deplibs_check_method" >&5 ! echo "${ECHO_T}$lt_cv_deplibs_check_method" >&6 file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown --- 4463,4470 ---- esac fi ! { echo "$as_me:$LINENO: result: $lt_cv_deplibs_check_method" >&5 ! echo "${ECHO_T}$lt_cv_deplibs_check_method" >&6; } file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown *************** *** 3835,3845 **** compiler=$CC ! # Check whether --enable-libtool-lock or --disable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then ! enableval="$enable_libtool_lock" - fi; test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good --- 4482,4492 ---- compiler=$CC ! # Check whether --enable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then ! enableval=$enable_libtool_lock; ! fi test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good *************** *** 3866,3872 **** ;; *-*-irix6*) # Find out which ABI we are using. ! echo '#line 3869 "configure"' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? --- 4513,4519 ---- ;; *-*-irix6*) # Find out which ABI we are using. ! echo '#line 4516 "configure"' > conftest.$ac_ext if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? *************** *** 3951,3958 **** # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" ! echo "$as_me:$LINENO: checking whether the C compiler needs -belf" >&5 ! echo $ECHO_N "checking whether the C compiler needs -belf... $ECHO_C" >&6 if test "${lt_cv_cc_needs_belf+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 4598,4605 ---- # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" ! { echo "$as_me:$LINENO: checking whether the C compiler needs -belf" >&5 ! echo $ECHO_N "checking whether the C compiler needs -belf... $ECHO_C" >&6; } if test "${lt_cv_cc_needs_belf+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 3978,4012 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 ! (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then lt_cv_cc_needs_belf=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! lt_cv_cc_needs_belf=no fi ! rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext ac_ext=c ac_cpp='$CPP $CPPFLAGS' --- 4625,4656 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (ac_try="$ac_link" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest$ac_exeext && ! $as_test_x conftest$ac_exeext; then lt_cv_cc_needs_belf=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! lt_cv_cc_needs_belf=no fi ! ! rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext ac_ext=c ac_cpp='$CPP $CPPFLAGS' *************** *** 4015,4022 **** ac_compiler_gnu=$ac_cv_c_compiler_gnu fi ! echo "$as_me:$LINENO: result: $lt_cv_cc_needs_belf" >&5 ! echo "${ECHO_T}$lt_cv_cc_needs_belf" >&6 if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" --- 4659,4666 ---- ac_compiler_gnu=$ac_cv_c_compiler_gnu fi ! { echo "$as_me:$LINENO: result: $lt_cv_cc_needs_belf" >&5 ! echo "${ECHO_T}$lt_cv_cc_needs_belf" >&6; } if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" *************** *** 4049,4056 **** ! echo "$as_me:$LINENO: checking for ANSI C header files" >&5 ! echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6 if test "${ac_cv_header_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 4693,4700 ---- ! { echo "$as_me:$LINENO: checking for ANSI C header files" >&5 ! echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; } if test "${ac_cv_header_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 4074,4108 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ! (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ac_cv_header_stdc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_header_stdc=no fi ! rm -f conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. --- 4718,4748 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (ac_try="$ac_compile" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest.$ac_objext; then ac_cv_header_stdc=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_header_stdc=no fi ! ! rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. *************** *** 4158,4163 **** --- 4798,4804 ---- cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include + #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) *************** *** 4177,4194 **** for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) ! exit(2); ! exit (0); } _ACEOF rm -f conftest$ac_exeext ! if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 ! (eval $ac_link) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then --- 4818,4844 ---- for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) ! return 2; ! return 0; } _ACEOF rm -f conftest$ac_exeext ! if { (ac_try="$ac_link" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_link") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_try") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then *************** *** 4201,4212 **** ( exit $ac_status ) ac_cv_header_stdc=no fi ! rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi ! echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 ! echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then cat >>confdefs.h <<\_ACEOF --- 4851,4864 ---- ( exit $ac_status ) ac_cv_header_stdc=no fi ! rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi + + fi fi ! { echo "$as_me:$LINENO: result: $ac_cv_header_stdc" >&5 ! echo "${ECHO_T}$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then cat >>confdefs.h <<\_ACEOF *************** *** 4229,4237 **** inttypes.h stdint.h unistd.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` ! echo "$as_me:$LINENO: checking for $ac_header" >&5 ! echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 ! if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF --- 4881,4889 ---- inttypes.h stdint.h unistd.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` ! { echo "$as_me:$LINENO: checking for $ac_header" >&5 ! echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } ! if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF *************** *** 4245,4282 **** #include <$ac_header> _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ! (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then eval "$as_ac_Header=yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! eval "$as_ac_Header=no" fi ! rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 ! echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 --- 4897,4931 ---- #include <$ac_header> _ACEOF rm -f conftest.$ac_objext ! if { (ac_try="$ac_compile" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest.$ac_objext; then eval "$as_ac_Header=yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! eval "$as_ac_Header=no" fi ! ! rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi ! ac_res=`eval echo '${'$as_ac_Header'}'` ! { echo "$as_me:$LINENO: result: $ac_res" >&5 ! echo "${ECHO_T}$ac_res" >&6; } if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_header" | $as_tr_cpp` 1 *************** *** 4291,4308 **** for ac_header in dlfcn.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` ! if eval "test \"\${$as_ac_Header+set}\" = set"; then ! echo "$as_me:$LINENO: checking for $ac_header" >&5 ! echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 ! if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi ! echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 ! echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? ! echo "$as_me:$LINENO: checking $ac_header usability" >&5 ! echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF --- 4940,4958 ---- for ac_header in dlfcn.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` ! if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then ! { echo "$as_me:$LINENO: checking for $ac_header" >&5 ! echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } ! if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi ! ac_res=`eval echo '${'$as_ac_Header'}'` ! { echo "$as_me:$LINENO: result: $ac_res" >&5 ! echo "${ECHO_T}$ac_res" >&6; } else # Is the header compilable? ! { echo "$as_me:$LINENO: checking $ac_header usability" >&5 ! echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF *************** *** 4313,4353 **** #include <$ac_header> _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ! (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ac_header_compiler=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_header_compiler=no fi ! rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ! echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ! echo "${ECHO_T}$ac_header_compiler" >&6 # Is the header present? ! echo "$as_me:$LINENO: checking $ac_header presence" >&5 ! echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF --- 4963,4999 ---- #include <$ac_header> _ACEOF rm -f conftest.$ac_objext ! if { (ac_try="$ac_compile" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest.$ac_objext; then ac_header_compiler=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_header_compiler=no fi ! ! rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ! { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ! echo "${ECHO_T}$ac_header_compiler" >&6; } # Is the header present? ! { echo "$as_me:$LINENO: checking $ac_header presence" >&5 ! echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF *************** *** 4356,4379 **** /* end confdefs.h. */ #include <$ac_header> _ACEOF ! if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 ! (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } >/dev/null; then ! if test -s conftest.err; then ! ac_cpp_err=$ac_c_preproc_warn_flag ! ac_cpp_err=$ac_cpp_err$ac_c_werror_flag ! else ! ac_cpp_err= ! fi ! else ! ac_cpp_err=yes ! fi ! if test -z "$ac_cpp_err"; then ac_header_preproc=yes else echo "$as_me: failed program was:" >&5 --- 5002,5023 ---- /* end confdefs.h. */ #include <$ac_header> _ACEOF ! if { (ac_try="$ac_cpp conftest.$ac_ext" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } >/dev/null && { ! test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || ! test ! -s conftest.err ! }; then ac_header_preproc=yes else echo "$as_me: failed program was:" >&5 *************** *** 4381,4389 **** ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext ! echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ! echo "${ECHO_T}$ac_header_preproc" >&6 # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in --- 5025,5034 ---- ac_header_preproc=no fi + rm -f conftest.err conftest.$ac_ext ! { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ! echo "${ECHO_T}$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in *************** *** 4407,4431 **** echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ! ( ! cat <<\_ASBOX ! ## ------------------------------ ## ! ## Report this to the gsl lists. ## ! ## ------------------------------ ## ! _ASBOX ! ) | ! sed "s/^/$as_me: WARNING: /" >&2 ;; esac ! echo "$as_me:$LINENO: checking for $ac_header" >&5 ! echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 ! if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else eval "$as_ac_Header=\$ac_header_preproc" fi ! echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 ! echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi if test `eval echo '${'$as_ac_Header'}'` = yes; then --- 5052,5070 ---- echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ! ;; esac ! { echo "$as_me:$LINENO: checking for $ac_header" >&5 ! echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } ! if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 else eval "$as_ac_Header=\$ac_header_preproc" fi ! ac_res=`eval echo '${'$as_ac_Header'}'` ! { echo "$as_me:$LINENO: result: $ac_res" >&5 ! echo "${ECHO_T}$ac_res" >&6; } fi if test `eval echo '${'$as_ac_Header'}'` = yes; then *************** *** 4441,4448 **** # Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! # find the maximum length of command line arguments ! echo "$as_me:$LINENO: checking the maximum length of command line arguments" >&5 ! echo $ECHO_N "checking the maximum length of command line arguments... $ECHO_C" >&6 if test "${lt_cv_sys_max_cmd_len+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 5080,5087 ---- # Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! # find the maximum length of command line arguments ! { echo "$as_me:$LINENO: checking the maximum length of command line arguments" >&5 ! echo $ECHO_N "checking the maximum length of command line arguments... $ECHO_C" >&6; } if test "${lt_cv_sys_max_cmd_len+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 4550,4568 **** fi if test -n $lt_cv_sys_max_cmd_len ; then ! echo "$as_me:$LINENO: result: $lt_cv_sys_max_cmd_len" >&5 ! echo "${ECHO_T}$lt_cv_sys_max_cmd_len" >&6 else ! echo "$as_me:$LINENO: result: none" >&5 ! echo "${ECHO_T}none" >&6 fi # Check for command to grab the raw symbol name followed by C symbol from nm. ! echo "$as_me:$LINENO: checking command to parse $NM output from $compiler object" >&5 ! echo $ECHO_N "checking command to parse $NM output from $compiler object... $ECHO_C" >&6 if test "${lt_cv_sys_global_symbol_pipe+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 5189,5207 ---- fi if test -n $lt_cv_sys_max_cmd_len ; then ! { echo "$as_me:$LINENO: result: $lt_cv_sys_max_cmd_len" >&5 ! echo "${ECHO_T}$lt_cv_sys_max_cmd_len" >&6; } else ! { echo "$as_me:$LINENO: result: none" >&5 ! echo "${ECHO_T}none" >&6; } fi # Check for command to grab the raw symbol name followed by C symbol from nm. ! { echo "$as_me:$LINENO: checking command to parse $NM output from $compiler object" >&5 ! echo $ECHO_N "checking command to parse $NM output from $compiler object... $ECHO_C" >&6; } if test "${lt_cv_sys_global_symbol_pipe+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 4766,4780 **** lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then ! echo "$as_me:$LINENO: result: failed" >&5 ! echo "${ECHO_T}failed" >&6 else ! echo "$as_me:$LINENO: result: ok" >&5 ! echo "${ECHO_T}ok" >&6 fi ! echo "$as_me:$LINENO: checking for objdir" >&5 ! echo $ECHO_N "checking for objdir... $ECHO_C" >&6 if test "${lt_cv_objdir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 5405,5419 ---- lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then ! { echo "$as_me:$LINENO: result: failed" >&5 ! echo "${ECHO_T}failed" >&6; } else ! { echo "$as_me:$LINENO: result: ok" >&5 ! echo "${ECHO_T}ok" >&6; } fi ! { echo "$as_me:$LINENO: checking for objdir" >&5 ! echo $ECHO_N "checking for objdir... $ECHO_C" >&6; } if test "${lt_cv_objdir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 4788,4795 **** fi rmdir .libs 2>/dev/null fi ! echo "$as_me:$LINENO: result: $lt_cv_objdir" >&5 ! echo "${ECHO_T}$lt_cv_objdir" >&6 objdir=$lt_cv_objdir --- 5427,5434 ---- fi rmdir .libs 2>/dev/null fi ! { echo "$as_me:$LINENO: result: $lt_cv_objdir" >&5 ! echo "${ECHO_T}$lt_cv_objdir" >&6; } objdir=$lt_cv_objdir *************** *** 4840,4847 **** if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. set dummy ${ac_tool_prefix}ar; ac_word=$2 ! echo "$as_me:$LINENO: checking for $ac_word" >&5 ! echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_AR+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 5479,5486 ---- if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. set dummy ${ac_tool_prefix}ar; ac_word=$2 ! { echo "$as_me:$LINENO: checking for $ac_word" >&5 ! echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_AR+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 4854,4885 **** IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do ! if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_AR="${ac_tool_prefix}ar" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then ! echo "$as_me:$LINENO: result: $AR" >&5 ! echo "${ECHO_T}$AR" >&6 else ! echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6 fi fi if test -z "$ac_cv_prog_AR"; then ac_ct_AR=$AR # Extract the first word of "ar", so it can be a program name with args. set dummy ar; ac_word=$2 ! echo "$as_me:$LINENO: checking for $ac_word" >&5 ! echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_AR+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 5493,5526 ---- IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do ! if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_AR="${ac_tool_prefix}ar" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done + IFS=$as_save_IFS fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then ! { echo "$as_me:$LINENO: result: $AR" >&5 ! echo "${ECHO_T}$AR" >&6; } else ! { echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6; } fi + fi if test -z "$ac_cv_prog_AR"; then ac_ct_AR=$AR # Extract the first word of "ar", so it can be a program name with args. set dummy ar; ac_word=$2 ! { echo "$as_me:$LINENO: checking for $ac_word" >&5 ! echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_AR+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 4892,4918 **** IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do ! if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_AR="ar" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done - test -z "$ac_cv_prog_ac_ct_AR" && ac_cv_prog_ac_ct_AR="false" fi fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then ! echo "$as_me:$LINENO: result: $ac_ct_AR" >&5 ! echo "${ECHO_T}$ac_ct_AR" >&6 else ! echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6 fi ! AR=$ac_ct_AR else AR="$ac_cv_prog_AR" fi --- 5533,5573 ---- IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do ! if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_AR="ar" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done + IFS=$as_save_IFS fi fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then ! { echo "$as_me:$LINENO: result: $ac_ct_AR" >&5 ! echo "${ECHO_T}$ac_ct_AR" >&6; } else ! { echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6; } fi ! if test "x$ac_ct_AR" = x; then ! AR="false" ! else ! case $cross_compiling:$ac_tool_warned in ! yes:) ! { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ! whose name does not start with the host triplet. If you think this ! configuration is useful to you, please write to autoconf@gnu.org." >&5 ! echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ! whose name does not start with the host triplet. If you think this ! configuration is useful to you, please write to autoconf@gnu.org." >&2;} ! ac_tool_warned=yes ;; ! esac ! AR=$ac_ct_AR ! fi else AR="$ac_cv_prog_AR" fi *************** *** 4920,4927 **** if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 ! echo "$as_me:$LINENO: checking for $ac_word" >&5 ! echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 5575,5582 ---- if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 ! { echo "$as_me:$LINENO: checking for $ac_word" >&5 ! echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 4934,4965 **** IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do ! if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then ! echo "$as_me:$LINENO: result: $RANLIB" >&5 ! echo "${ECHO_T}$RANLIB" >&6 else ! echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6 fi fi if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 ! echo "$as_me:$LINENO: checking for $ac_word" >&5 ! echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 5589,5622 ---- IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do ! if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done + IFS=$as_save_IFS fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then ! { echo "$as_me:$LINENO: result: $RANLIB" >&5 ! echo "${ECHO_T}$RANLIB" >&6; } else ! { echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6; } fi + fi if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 ! { echo "$as_me:$LINENO: checking for $ac_word" >&5 ! echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 4972,4998 **** IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do ! if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_RANLIB="ranlib" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done - test -z "$ac_cv_prog_ac_ct_RANLIB" && ac_cv_prog_ac_ct_RANLIB=":" fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then ! echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5 ! echo "${ECHO_T}$ac_ct_RANLIB" >&6 else ! echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6 fi ! RANLIB=$ac_ct_RANLIB else RANLIB="$ac_cv_prog_RANLIB" fi --- 5629,5669 ---- IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do ! if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_RANLIB="ranlib" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done + IFS=$as_save_IFS fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then ! { echo "$as_me:$LINENO: result: $ac_ct_RANLIB" >&5 ! echo "${ECHO_T}$ac_ct_RANLIB" >&6; } else ! { echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6; } fi ! if test "x$ac_ct_RANLIB" = x; then ! RANLIB=":" ! else ! case $cross_compiling:$ac_tool_warned in ! yes:) ! { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ! whose name does not start with the host triplet. If you think this ! configuration is useful to you, please write to autoconf@gnu.org." >&5 ! echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ! whose name does not start with the host triplet. If you think this ! configuration is useful to you, please write to autoconf@gnu.org." >&2;} ! ac_tool_warned=yes ;; ! esac ! RANLIB=$ac_ct_RANLIB ! fi else RANLIB="$ac_cv_prog_RANLIB" fi *************** *** 5000,5007 **** if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 ! echo "$as_me:$LINENO: checking for $ac_word" >&5 ! echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 5671,5678 ---- if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 ! { echo "$as_me:$LINENO: checking for $ac_word" >&5 ! echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 5014,5045 **** IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do ! if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then ! echo "$as_me:$LINENO: result: $STRIP" >&5 ! echo "${ECHO_T}$STRIP" >&6 else ! echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6 fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 ! echo "$as_me:$LINENO: checking for $ac_word" >&5 ! echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 5685,5718 ---- IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do ! if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done + IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then ! { echo "$as_me:$LINENO: result: $STRIP" >&5 ! echo "${ECHO_T}$STRIP" >&6; } else ! { echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6; } fi + fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 ! { echo "$as_me:$LINENO: checking for $ac_word" >&5 ! echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6; } if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 5052,5078 **** IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do ! if $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done - test -z "$ac_cv_prog_ac_ct_STRIP" && ac_cv_prog_ac_ct_STRIP=":" fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then ! echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 ! echo "${ECHO_T}$ac_ct_STRIP" >&6 else ! echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6 fi ! STRIP=$ac_ct_STRIP else STRIP="$ac_cv_prog_STRIP" fi --- 5725,5765 ---- IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do ! if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_STRIP="strip" echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done + IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then ! { echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5 ! echo "${ECHO_T}$ac_ct_STRIP" >&6; } else ! { echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6; } fi ! if test "x$ac_ct_STRIP" = x; then ! STRIP=":" ! else ! case $cross_compiling:$ac_tool_warned in ! yes:) ! { echo "$as_me:$LINENO: WARNING: In the future, Autoconf will not detect cross-tools ! whose name does not start with the host triplet. If you think this ! configuration is useful to you, please write to autoconf@gnu.org." >&5 ! echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools ! whose name does not start with the host triplet. If you think this ! configuration is useful to you, please write to autoconf@gnu.org." >&2;} ! ac_tool_warned=yes ;; ! esac ! STRIP=$ac_ct_STRIP ! fi else STRIP="$ac_cv_prog_STRIP" fi *************** *** 5131,5138 **** case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then ! echo "$as_me:$LINENO: checking for ${ac_tool_prefix}file" >&5 ! echo $ECHO_N "checking for ${ac_tool_prefix}file... $ECHO_C" >&6 if test "${lt_cv_path_MAGIC_CMD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 5818,5825 ---- case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then ! { echo "$as_me:$LINENO: checking for ${ac_tool_prefix}file" >&5 ! echo $ECHO_N "checking for ${ac_tool_prefix}file... $ECHO_C" >&6; } if test "${lt_cv_path_MAGIC_CMD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 5184,5200 **** MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then ! echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5 ! echo "${ECHO_T}$MAGIC_CMD" >&6 else ! echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6 fi if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then ! echo "$as_me:$LINENO: checking for file" >&5 ! echo $ECHO_N "checking for file... $ECHO_C" >&6 if test "${lt_cv_path_MAGIC_CMD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 5871,5887 ---- MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then ! { echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5 ! echo "${ECHO_T}$MAGIC_CMD" >&6; } else ! { echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6; } fi if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then ! { echo "$as_me:$LINENO: checking for file" >&5 ! echo $ECHO_N "checking for file... $ECHO_C" >&6; } if test "${lt_cv_path_MAGIC_CMD+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 5246,5256 **** MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then ! echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5 ! echo "${ECHO_T}$MAGIC_CMD" >&6 else ! echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6 fi else --- 5933,5943 ---- MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then ! { echo "$as_me:$LINENO: result: $MAGIC_CMD" >&5 ! echo "${ECHO_T}$MAGIC_CMD" >&6; } else ! { echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6; } fi else *************** *** 5265,5285 **** enable_dlopen=no enable_win32_dll=no ! # Check whether --enable-libtool-lock or --disable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then ! enableval="$enable_libtool_lock" - fi; test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes ! # Check whether --with-pic or --without-pic was given. if test "${with_pic+set}" = set; then ! withval="$with_pic" ! pic_mode="$withval" else pic_mode=default ! fi; test -z "$pic_mode" && pic_mode=default # Use C for the default configuration in the libtool script --- 5952,5972 ---- enable_dlopen=no enable_win32_dll=no ! # Check whether --enable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then ! enableval=$enable_libtool_lock; ! fi test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes ! # Check whether --with-pic was given. if test "${with_pic+set}" = set; then ! withval=$with_pic; pic_mode="$withval" else pic_mode=default ! fi ! test -z "$pic_mode" && pic_mode=default # Use C for the default configuration in the libtool script *************** *** 5337,5344 **** lt_prog_compiler_no_builtin_flag=' -fno-builtin' ! echo "$as_me:$LINENO: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 ! echo $ECHO_N "checking if $compiler supports -fno-rtti -fno-exceptions... $ECHO_C" >&6 if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 6024,6031 ---- lt_prog_compiler_no_builtin_flag=' -fno-builtin' ! { echo "$as_me:$LINENO: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 ! echo $ECHO_N "checking if $compiler supports -fno-rtti -fno-exceptions... $ECHO_C" >&6; } if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 5355,5365 **** -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` ! (eval echo "\"\$as_me:5358: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 ! echo "$as_me:5362: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. --- 6042,6052 ---- -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` ! (eval echo "\"\$as_me:6045: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 ! echo "$as_me:6049: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. *************** *** 5372,5379 **** $rm conftest* fi ! echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 ! echo "${ECHO_T}$lt_cv_prog_compiler_rtti_exceptions" >&6 if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" --- 6059,6066 ---- $rm conftest* fi ! { echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 ! echo "${ECHO_T}$lt_cv_prog_compiler_rtti_exceptions" >&6; } if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" *************** *** 5387,5394 **** lt_prog_compiler_pic= lt_prog_compiler_static= ! echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 ! echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6 if test "$GCC" = yes; then lt_prog_compiler_wl='-Wl,' --- 6074,6081 ---- lt_prog_compiler_pic= lt_prog_compiler_static= ! { echo "$as_me:$LINENO: checking for $compiler option to produce PIC" >&5 ! echo $ECHO_N "checking for $compiler option to produce PIC... $ECHO_C" >&6; } if test "$GCC" = yes; then lt_prog_compiler_wl='-Wl,' *************** *** 5597,5612 **** esac fi ! echo "$as_me:$LINENO: result: $lt_prog_compiler_pic" >&5 ! echo "${ECHO_T}$lt_prog_compiler_pic" >&6 # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic"; then ! echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 ! echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic works... $ECHO_C" >&6 if test "${lt_prog_compiler_pic_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 6284,6299 ---- esac fi ! { echo "$as_me:$LINENO: result: $lt_prog_compiler_pic" >&5 ! echo "${ECHO_T}$lt_prog_compiler_pic" >&6; } # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic"; then ! { echo "$as_me:$LINENO: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 ! echo $ECHO_N "checking if $compiler PIC flag $lt_prog_compiler_pic works... $ECHO_C" >&6; } if test "${lt_prog_compiler_pic_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 5623,5633 **** -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` ! (eval echo "\"\$as_me:5626: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 ! echo "$as_me:5630: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. --- 6310,6320 ---- -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` ! (eval echo "\"\$as_me:6313: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 ! echo "$as_me:6317: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. *************** *** 5640,5647 **** $rm conftest* fi ! echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_works" >&5 ! echo "${ECHO_T}$lt_prog_compiler_pic_works" >&6 if test x"$lt_prog_compiler_pic_works" = xyes; then case $lt_prog_compiler_pic in --- 6327,6334 ---- $rm conftest* fi ! { echo "$as_me:$LINENO: result: $lt_prog_compiler_pic_works" >&5 ! echo "${ECHO_T}$lt_prog_compiler_pic_works" >&6; } if test x"$lt_prog_compiler_pic_works" = xyes; then case $lt_prog_compiler_pic in *************** *** 5668,5675 **** # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" ! echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 ! echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6 if test "${lt_prog_compiler_static_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 6355,6362 ---- # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" ! { echo "$as_me:$LINENO: checking if $compiler static flag $lt_tmp_static_flag works" >&5 ! echo $ECHO_N "checking if $compiler static flag $lt_tmp_static_flag works... $ECHO_C" >&6; } if test "${lt_prog_compiler_static_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 5696,5703 **** LDFLAGS="$save_LDFLAGS" fi ! echo "$as_me:$LINENO: result: $lt_prog_compiler_static_works" >&5 ! echo "${ECHO_T}$lt_prog_compiler_static_works" >&6 if test x"$lt_prog_compiler_static_works" = xyes; then : --- 6383,6390 ---- LDFLAGS="$save_LDFLAGS" fi ! { echo "$as_me:$LINENO: result: $lt_prog_compiler_static_works" >&5 ! echo "${ECHO_T}$lt_prog_compiler_static_works" >&6; } if test x"$lt_prog_compiler_static_works" = xyes; then : *************** *** 5706,5713 **** fi ! echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 ! echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6 if test "${lt_cv_prog_compiler_c_o+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 6393,6400 ---- fi ! { echo "$as_me:$LINENO: checking if $compiler supports -c -o file.$ac_objext" >&5 ! echo $ECHO_N "checking if $compiler supports -c -o file.$ac_objext... $ECHO_C" >&6; } if test "${lt_cv_prog_compiler_c_o+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 5727,5737 **** -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` ! (eval echo "\"\$as_me:5730: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 ! echo "$as_me:5734: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized --- 6414,6424 ---- -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` ! (eval echo "\"\$as_me:6417: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 ! echo "$as_me:6421: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized *************** *** 5753,5775 **** $rm conftest* fi ! echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o" >&5 ! echo "${ECHO_T}$lt_cv_prog_compiler_c_o" >&6 hard_links="nottested" if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user ! echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 ! echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6 hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no ! echo "$as_me:$LINENO: result: $hard_links" >&5 ! echo "${ECHO_T}$hard_links" >&6 if test "$hard_links" = no; then { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} --- 6440,6462 ---- $rm conftest* fi ! { echo "$as_me:$LINENO: result: $lt_cv_prog_compiler_c_o" >&5 ! echo "${ECHO_T}$lt_cv_prog_compiler_c_o" >&6; } hard_links="nottested" if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user ! { echo "$as_me:$LINENO: checking if we can lock with hard links" >&5 ! echo $ECHO_N "checking if we can lock with hard links... $ECHO_C" >&6; } hard_links=yes $rm conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no ! { echo "$as_me:$LINENO: result: $hard_links" >&5 ! echo "${ECHO_T}$hard_links" >&6; } if test "$hard_links" = no; then { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} *************** *** 5779,5786 **** need_locks=no fi ! echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 ! echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6 runpath_var= allow_undefined_flag= --- 6466,6473 ---- need_locks=no fi ! { echo "$as_me:$LINENO: checking whether the $compiler linker ($LD) supports shared libraries" >&5 ! echo $ECHO_N "checking whether the $compiler linker ($LD) supports shared libraries... $ECHO_C" >&6; } runpath_var= allow_undefined_flag= *************** *** 6195,6221 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 ! (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` --- 6882,6904 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (ac_try="$ac_link" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest$ac_exeext && ! $as_test_x conftest$ac_exeext; then aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` *************** *** 6226,6233 **** echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi ! rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi --- 6909,6918 ---- echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 + fi ! ! rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi *************** *** 6256,6282 **** } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 ! (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` --- 6941,6963 ---- } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (ac_try="$ac_link" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest$ac_exeext && ! $as_test_x conftest$ac_exeext; then aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` *************** *** 6287,6294 **** echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi ! rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi --- 6968,6977 ---- echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 + fi ! ! rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi *************** *** 6737,6744 **** esac fi ! echo "$as_me:$LINENO: result: $ld_shlibs" >&5 ! echo "${ECHO_T}$ld_shlibs" >&6 test "$ld_shlibs" = no && can_build_shared=no # --- 7420,7427 ---- esac fi ! { echo "$as_me:$LINENO: result: $ld_shlibs" >&5 ! echo "${ECHO_T}$ld_shlibs" >&6; } test "$ld_shlibs" = no && can_build_shared=no # *************** *** 6758,6765 **** # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. ! echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 ! echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6 $rm conftest* printf "$lt_simple_compile_test_code" > conftest.$ac_ext --- 7441,7448 ---- # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. ! { echo "$as_me:$LINENO: checking whether -lc should be explicitly linked in" >&5 ! echo $ECHO_N "checking whether -lc should be explicitly linked in... $ECHO_C" >&6; } $rm conftest* printf "$lt_simple_compile_test_code" > conftest.$ac_ext *************** *** 6796,6811 **** cat conftest.err 1>&5 fi $rm conftest* ! echo "$as_me:$LINENO: result: $archive_cmds_need_lc" >&5 ! echo "${ECHO_T}$archive_cmds_need_lc" >&6 ;; esac fi ;; esac ! echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 ! echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6 library_names_spec= libname_spec='lib$name' soname_spec= --- 7479,7494 ---- cat conftest.err 1>&5 fi $rm conftest* ! { echo "$as_me:$LINENO: result: $archive_cmds_need_lc" >&5 ! echo "${ECHO_T}$archive_cmds_need_lc" >&6; } ;; esac fi ;; esac ! { echo "$as_me:$LINENO: checking dynamic linker characteristics" >&5 ! echo $ECHO_N "checking dynamic linker characteristics... $ECHO_C" >&6; } library_names_spec= libname_spec='lib$name' soname_spec= *************** *** 7192,7204 **** # before this can be enabled. hardcode_into_libs=yes ! # Append ld.so.conf contents to the search path ! if test -f /etc/ld.so.conf; then ! lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` ! sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" ! fi ! ! # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and --- 7875,7908 ---- # before this can be enabled. hardcode_into_libs=yes ! # find out which ABI we are using ! libsuff= ! case "$host_cpu" in ! x86_64*|s390x*|powerpc64*) ! echo '#line 7882 "configure"' > conftest.$ac_ext ! if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ! (eval $ac_compile) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; then ! case `/usr/bin/file conftest.$ac_objext` in ! *64-bit*) ! libsuff=64 ! sys_lib_search_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/local/lib${libsuff}" ! ;; ! esac ! fi ! rm -rf conftest* ! ;; ! esac ! ! # Append ld.so.conf contents to the search path ! if test -f /etc/ld.so.conf; then ! lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/^ *//;s/#.*//;/^[^\/]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` ! sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff} $lt_ld_extra" ! fi ! ! # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and *************** *** 7392,7399 **** dynamic_linker=no ;; esac ! echo "$as_me:$LINENO: result: $dynamic_linker" >&5 ! echo "${ECHO_T}$dynamic_linker" >&6 test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" --- 8096,8103 ---- dynamic_linker=no ;; esac ! { echo "$as_me:$LINENO: result: $dynamic_linker" >&5 ! echo "${ECHO_T}$dynamic_linker" >&6; } test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" *************** *** 7401,7408 **** variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi ! echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 ! echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6 hardcode_action= if test -n "$hardcode_libdir_flag_spec" || \ test -n "$runpath_var" || \ --- 8105,8112 ---- variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi ! { echo "$as_me:$LINENO: checking how to hardcode library paths into programs" >&5 ! echo $ECHO_N "checking how to hardcode library paths into programs... $ECHO_C" >&6; } hardcode_action= if test -n "$hardcode_libdir_flag_spec" || \ test -n "$runpath_var" || \ *************** *** 7426,7433 **** # directories. hardcode_action=unsupported fi ! echo "$as_me:$LINENO: result: $hardcode_action" >&5 ! echo "${ECHO_T}$hardcode_action" >&6 if test "$hardcode_action" = relink; then # Fast installation is not supported --- 8130,8137 ---- # directories. hardcode_action=unsupported fi ! { echo "$as_me:$LINENO: result: $hardcode_action" >&5 ! echo "${ECHO_T}$hardcode_action" >&6; } if test "$hardcode_action" = relink; then # Fast installation is not supported *************** *** 7440,7468 **** striplib= old_striplib= ! echo "$as_me:$LINENO: checking whether stripping libraries is possible" >&5 ! echo $ECHO_N "checking whether stripping libraries is possible... $ECHO_C" >&6 if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" ! echo "$as_me:$LINENO: result: yes" >&5 ! echo "${ECHO_T}yes" >&6 else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" ! echo "$as_me:$LINENO: result: yes" >&5 ! echo "${ECHO_T}yes" >&6 else ! echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6 fi ;; *) ! echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6 ;; esac fi --- 8144,8172 ---- striplib= old_striplib= ! { echo "$as_me:$LINENO: checking whether stripping libraries is possible" >&5 ! echo $ECHO_N "checking whether stripping libraries is possible... $ECHO_C" >&6; } if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" ! { echo "$as_me:$LINENO: result: yes" >&5 ! echo "${ECHO_T}yes" >&6; } else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" ! { echo "$as_me:$LINENO: result: yes" >&5 ! echo "${ECHO_T}yes" >&6; } else ! { echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6; } fi ;; *) ! { echo "$as_me:$LINENO: result: no" >&5 ! echo "${ECHO_T}no" >&6; } ;; esac fi *************** *** 7494,7501 **** darwin*) # if libdl is installed we need to link against it ! echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 ! echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6 if test "${ac_cv_lib_dl_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 8198,8205 ---- darwin*) # if libdl is installed we need to link against it ! { echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 ! echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6; } if test "${ac_cv_lib_dl_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 7508,7563 **** cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ ! /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus extern "C" #endif - /* We use char because int might match the return type of a gcc2 - builtin and then its argument prototype would still apply. */ char dlopen (); int main () { ! dlopen (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 ! (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ac_cv_lib_dl_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_lib_dl_dlopen=no fi ! rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5 ! echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6 if test $ac_cv_lib_dl_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else --- 8212,8264 ---- cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ ! /* Override any GCC internal prototype to avoid an error. ! Use char because int might match the return type of a GCC ! builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { ! return dlopen (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (ac_try="$ac_link" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest$ac_exeext && ! $as_test_x conftest$ac_exeext; then ac_cv_lib_dl_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_lib_dl_dlopen=no fi ! ! rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! { echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5 ! echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6; } if test $ac_cv_lib_dl_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else *************** *** 7571,7578 **** ;; *) ! echo "$as_me:$LINENO: checking for shl_load" >&5 ! echo $ECHO_N "checking for shl_load... $ECHO_C" >&6 if test "${ac_cv_func_shl_load+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 8272,8279 ---- ;; *) ! { echo "$as_me:$LINENO: checking for shl_load" >&5 ! echo $ECHO_N "checking for shl_load... $ECHO_C" >&6; } if test "${ac_cv_func_shl_load+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 7599,7671 **** #undef shl_load ! /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus extern "C" - { #endif - /* We use char because int might match the return type of a gcc2 - builtin and then its argument prototype would still apply. */ char shl_load (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ ! #if defined (__stub_shl_load) || defined (__stub___shl_load) choke me - #else - char (*f) () = shl_load; - #endif - #ifdef __cplusplus - } #endif int main () { ! return f != shl_load; ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 ! (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ac_cv_func_shl_load=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_func_shl_load=no fi ! rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5 ! echo "${ECHO_T}$ac_cv_func_shl_load" >&6 if test $ac_cv_func_shl_load = yes; then lt_cv_dlopen="shl_load" else ! echo "$as_me:$LINENO: checking for shl_load in -ldld" >&5 ! echo $ECHO_N "checking for shl_load in -ldld... $ECHO_C" >&6 if test "${ac_cv_lib_dld_shl_load+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 8300,8363 ---- #undef shl_load ! /* Override any GCC internal prototype to avoid an error. ! Use char because int might match the return type of a GCC ! builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char shl_load (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ ! #if defined __stub_shl_load || defined __stub___shl_load choke me #endif int main () { ! return shl_load (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (ac_try="$ac_link" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest$ac_exeext && ! $as_test_x conftest$ac_exeext; then ac_cv_func_shl_load=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_func_shl_load=no fi ! ! rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi ! { echo "$as_me:$LINENO: result: $ac_cv_func_shl_load" >&5 ! echo "${ECHO_T}$ac_cv_func_shl_load" >&6; } if test $ac_cv_func_shl_load = yes; then lt_cv_dlopen="shl_load" else ! { echo "$as_me:$LINENO: checking for shl_load in -ldld" >&5 ! echo $ECHO_N "checking for shl_load in -ldld... $ECHO_C" >&6; } if test "${ac_cv_lib_dld_shl_load+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 7678,7738 **** cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ ! /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus extern "C" #endif - /* We use char because int might match the return type of a gcc2 - builtin and then its argument prototype would still apply. */ char shl_load (); int main () { ! shl_load (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 ! (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ac_cv_lib_dld_shl_load=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_lib_dld_shl_load=no fi ! rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:$LINENO: result: $ac_cv_lib_dld_shl_load" >&5 ! echo "${ECHO_T}$ac_cv_lib_dld_shl_load" >&6 if test $ac_cv_lib_dld_shl_load = yes; then lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld" else ! echo "$as_me:$LINENO: checking for dlopen" >&5 ! echo $ECHO_N "checking for dlopen... $ECHO_C" >&6 if test "${ac_cv_func_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 8370,8427 ---- cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ ! /* Override any GCC internal prototype to avoid an error. ! Use char because int might match the return type of a GCC ! builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char shl_load (); int main () { ! return shl_load (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (ac_try="$ac_link" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest$ac_exeext && ! $as_test_x conftest$ac_exeext; then ac_cv_lib_dld_shl_load=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_lib_dld_shl_load=no fi ! ! rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! { echo "$as_me:$LINENO: result: $ac_cv_lib_dld_shl_load" >&5 ! echo "${ECHO_T}$ac_cv_lib_dld_shl_load" >&6; } if test $ac_cv_lib_dld_shl_load = yes; then lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld" else ! { echo "$as_me:$LINENO: checking for dlopen" >&5 ! echo $ECHO_N "checking for dlopen... $ECHO_C" >&6; } if test "${ac_cv_func_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 7759,7831 **** #undef dlopen ! /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus extern "C" - { #endif - /* We use char because int might match the return type of a gcc2 - builtin and then its argument prototype would still apply. */ char dlopen (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ ! #if defined (__stub_dlopen) || defined (__stub___dlopen) choke me - #else - char (*f) () = dlopen; - #endif - #ifdef __cplusplus - } #endif int main () { ! return f != dlopen; ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 ! (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ac_cv_func_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_func_dlopen=no fi ! rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5 ! echo "${ECHO_T}$ac_cv_func_dlopen" >&6 if test $ac_cv_func_dlopen = yes; then lt_cv_dlopen="dlopen" else ! echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 ! echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6 if test "${ac_cv_lib_dl_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 8448,8511 ---- #undef dlopen ! /* Override any GCC internal prototype to avoid an error. ! Use char because int might match the return type of a GCC ! builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ ! #if defined __stub_dlopen || defined __stub___dlopen choke me #endif int main () { ! return dlopen (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (ac_try="$ac_link" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest$ac_exeext && ! $as_test_x conftest$ac_exeext; then ac_cv_func_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_func_dlopen=no fi ! ! rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi ! { echo "$as_me:$LINENO: result: $ac_cv_func_dlopen" >&5 ! echo "${ECHO_T}$ac_cv_func_dlopen" >&6; } if test $ac_cv_func_dlopen = yes; then lt_cv_dlopen="dlopen" else ! { echo "$as_me:$LINENO: checking for dlopen in -ldl" >&5 ! echo $ECHO_N "checking for dlopen in -ldl... $ECHO_C" >&6; } if test "${ac_cv_lib_dl_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 7838,7898 **** cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ ! /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus extern "C" #endif - /* We use char because int might match the return type of a gcc2 - builtin and then its argument prototype would still apply. */ char dlopen (); int main () { ! dlopen (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 ! (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ac_cv_lib_dl_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_lib_dl_dlopen=no fi ! rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5 ! echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6 if test $ac_cv_lib_dl_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else ! echo "$as_me:$LINENO: checking for dlopen in -lsvld" >&5 ! echo $ECHO_N "checking for dlopen in -lsvld... $ECHO_C" >&6 if test "${ac_cv_lib_svld_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 8518,8575 ---- cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ ! /* Override any GCC internal prototype to avoid an error. ! Use char because int might match the return type of a GCC ! builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { ! return dlopen (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (ac_try="$ac_link" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest$ac_exeext && ! $as_test_x conftest$ac_exeext; then ac_cv_lib_dl_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_lib_dl_dlopen=no fi ! ! rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! { echo "$as_me:$LINENO: result: $ac_cv_lib_dl_dlopen" >&5 ! echo "${ECHO_T}$ac_cv_lib_dl_dlopen" >&6; } if test $ac_cv_lib_dl_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else ! { echo "$as_me:$LINENO: checking for dlopen in -lsvld" >&5 ! echo $ECHO_N "checking for dlopen in -lsvld... $ECHO_C" >&6; } if test "${ac_cv_lib_svld_dlopen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 7905,7965 **** cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ ! /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus extern "C" #endif - /* We use char because int might match the return type of a gcc2 - builtin and then its argument prototype would still apply. */ char dlopen (); int main () { ! dlopen (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 ! (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ac_cv_lib_svld_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_lib_svld_dlopen=no fi ! rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:$LINENO: result: $ac_cv_lib_svld_dlopen" >&5 ! echo "${ECHO_T}$ac_cv_lib_svld_dlopen" >&6 if test $ac_cv_lib_svld_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" else ! echo "$as_me:$LINENO: checking for dld_link in -ldld" >&5 ! echo $ECHO_N "checking for dld_link in -ldld... $ECHO_C" >&6 if test "${ac_cv_lib_dld_dld_link+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 8582,8639 ---- cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ ! /* Override any GCC internal prototype to avoid an error. ! Use char because int might match the return type of a GCC ! builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { ! return dlopen (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (ac_try="$ac_link" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest$ac_exeext && ! $as_test_x conftest$ac_exeext; then ac_cv_lib_svld_dlopen=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_lib_svld_dlopen=no fi ! ! rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! { echo "$as_me:$LINENO: result: $ac_cv_lib_svld_dlopen" >&5 ! echo "${ECHO_T}$ac_cv_lib_svld_dlopen" >&6; } if test $ac_cv_lib_svld_dlopen = yes; then lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" else ! { echo "$as_me:$LINENO: checking for dld_link in -ldld" >&5 ! echo $ECHO_N "checking for dld_link in -ldld... $ECHO_C" >&6; } if test "${ac_cv_lib_dld_dld_link+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 7972,8027 **** cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ ! /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus extern "C" #endif - /* We use char because int might match the return type of a gcc2 - builtin and then its argument prototype would still apply. */ char dld_link (); int main () { ! dld_link (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 ! (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ac_cv_lib_dld_dld_link=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_lib_dld_dld_link=no fi ! rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:$LINENO: result: $ac_cv_lib_dld_dld_link" >&5 ! echo "${ECHO_T}$ac_cv_lib_dld_dld_link" >&6 if test $ac_cv_lib_dld_dld_link = yes; then lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld" fi --- 8646,8698 ---- cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ ! /* Override any GCC internal prototype to avoid an error. ! Use char because int might match the return type of a GCC ! builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dld_link (); int main () { ! return dld_link (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (ac_try="$ac_link" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest$ac_exeext && ! $as_test_x conftest$ac_exeext; then ac_cv_lib_dld_dld_link=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_lib_dld_dld_link=no fi ! ! rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! { echo "$as_me:$LINENO: result: $ac_cv_lib_dld_dld_link" >&5 ! echo "${ECHO_T}$ac_cv_lib_dld_dld_link" >&6; } if test $ac_cv_lib_dld_dld_link = yes; then lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld" fi *************** *** 8061,8068 **** save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" ! echo "$as_me:$LINENO: checking whether a program can dlopen itself" >&5 ! echo $ECHO_N "checking whether a program can dlopen itself... $ECHO_C" >&6 if test "${lt_cv_dlopen_self+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 8732,8739 ---- save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" ! { echo "$as_me:$LINENO: checking whether a program can dlopen itself" >&5 ! echo $ECHO_N "checking whether a program can dlopen itself... $ECHO_C" >&6; } if test "${lt_cv_dlopen_self+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 8072,8078 **** lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext < conftest.$ac_ext <&5 ! echo "${ECHO_T}$lt_cv_dlopen_self" >&6 if test "x$lt_cv_dlopen_self" = xyes; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" ! echo "$as_me:$LINENO: checking whether a statically linked program can dlopen itself" >&5 ! echo $ECHO_N "checking whether a statically linked program can dlopen itself... $ECHO_C" >&6 if test "${lt_cv_dlopen_self_static+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 8827,8839 ---- fi ! { echo "$as_me:$LINENO: result: $lt_cv_dlopen_self" >&5 ! echo "${ECHO_T}$lt_cv_dlopen_self" >&6; } if test "x$lt_cv_dlopen_self" = xyes; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" ! { echo "$as_me:$LINENO: checking whether a statically linked program can dlopen itself" >&5 ! echo $ECHO_N "checking whether a statically linked program can dlopen itself... $ECHO_C" >&6; } if test "${lt_cv_dlopen_self_static+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 8172,8178 **** lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext < conftest.$ac_ext <&5 ! echo "${ECHO_T}$lt_cv_dlopen_self_static" >&6 fi CPPFLAGS="$save_CPPFLAGS" --- 8927,8934 ---- fi ! { echo "$as_me:$LINENO: result: $lt_cv_dlopen_self_static" >&5 ! echo "${ECHO_T}$lt_cv_dlopen_self_static" >&6; } fi CPPFLAGS="$save_CPPFLAGS" *************** *** 8279,8291 **** # Report which library types will actually be built ! echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5 ! echo $ECHO_N "checking if libtool supports shared libraries... $ECHO_C" >&6 ! echo "$as_me:$LINENO: result: $can_build_shared" >&5 ! echo "${ECHO_T}$can_build_shared" >&6 ! echo "$as_me:$LINENO: checking whether to build shared libraries" >&5 ! echo $ECHO_N "checking whether to build shared libraries... $ECHO_C" >&6 test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and --- 8950,8962 ---- # Report which library types will actually be built ! { echo "$as_me:$LINENO: checking if libtool supports shared libraries" >&5 ! echo $ECHO_N "checking if libtool supports shared libraries... $ECHO_C" >&6; } ! { echo "$as_me:$LINENO: result: $can_build_shared" >&5 ! echo "${ECHO_T}$can_build_shared" >&6; } ! { echo "$as_me:$LINENO: checking whether to build shared libraries" >&5 ! echo $ECHO_N "checking whether to build shared libraries... $ECHO_C" >&6; } test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and *************** *** 8305,8319 **** fi ;; esac ! echo "$as_me:$LINENO: result: $enable_shared" >&5 ! echo "${ECHO_T}$enable_shared" >&6 ! echo "$as_me:$LINENO: checking whether to build static libraries" >&5 ! echo $ECHO_N "checking whether to build static libraries... $ECHO_C" >&6 # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes ! echo "$as_me:$LINENO: result: $enable_static" >&5 ! echo "${ECHO_T}$enable_static" >&6 # The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh --- 8976,8990 ---- fi ;; esac ! { echo "$as_me:$LINENO: result: $enable_shared" >&5 ! echo "${ECHO_T}$enable_shared" >&6; } ! { echo "$as_me:$LINENO: checking whether to build static libraries" >&5 ! echo $ECHO_N "checking whether to build static libraries... $ECHO_C" >&6; } # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes ! { echo "$as_me:$LINENO: result: $enable_static" >&5 ! echo "${ECHO_T}$enable_static" >&6; } # The else clause should only fire when bootstrapping the # libtool distribution, otherwise you forgot to ship ltmain.sh *************** *** 8805,8815 **** CC="$lt_save_CC" ! # Check whether --with-tags or --without-tags was given. if test "${with_tags+set}" = set; then ! withval="$with_tags" ! tagnames="$withval" ! fi; if test -f "$ltmain" && test -n "$tagnames"; then if test ! -f "${ofile}"; then --- 9476,9486 ---- CC="$lt_save_CC" ! # Check whether --with-tags was given. if test "${with_tags+set}" = set; then ! withval=$with_tags; tagnames="$withval" ! fi ! if test -f "$ltmain" && test -n "$tagnames"; then if test ! -f "${ofile}"; then *************** *** 8888,8894 **** RC) - # Source file extension for RC test sources. ac_ext=rc --- 9559,9564 ---- *************** *** 9409,9416 **** ! echo "$as_me:$LINENO: checking for size_t" >&5 ! echo $ECHO_N "checking for size_t... $ECHO_C" >&6 if test "${ac_cv_type_size_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 10079,10086 ---- ! { echo "$as_me:$LINENO: checking for size_t" >&5 ! echo $ECHO_N "checking for size_t... $ECHO_C" >&6; } if test "${ac_cv_type_size_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 9421,9482 **** cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default int main () { ! if ((size_t *) 0) return 0; ! if (sizeof (size_t)) return 0; ; return 0; } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ! (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ac_cv_type_size_t=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_type_size_t=no fi ! rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5 ! echo "${ECHO_T}$ac_cv_type_size_t" >&6 if test $ac_cv_type_size_t = yes; then : else cat >>confdefs.h <<_ACEOF ! #define size_t unsigned _ACEOF fi ! echo "$as_me:$LINENO: checking for working volatile" >&5 ! echo $ECHO_N "checking for working volatile... $ECHO_C" >&6 if test "${ac_cv_c_volatile+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 10091,10149 ---- cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default + typedef size_t ac__type_new_; int main () { ! if ((ac__type_new_ *) 0) return 0; ! if (sizeof (ac__type_new_)) return 0; ; return 0; } _ACEOF rm -f conftest.$ac_objext ! if { (ac_try="$ac_compile" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest.$ac_objext; then ac_cv_type_size_t=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_type_size_t=no fi ! ! rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi ! { echo "$as_me:$LINENO: result: $ac_cv_type_size_t" >&5 ! echo "${ECHO_T}$ac_cv_type_size_t" >&6; } if test $ac_cv_type_size_t = yes; then : else cat >>confdefs.h <<_ACEOF ! #define size_t unsigned int _ACEOF fi ! { echo "$as_me:$LINENO: checking for working volatile" >&5 ! echo $ECHO_N "checking for working volatile... $ECHO_C" >&6; } if test "${ac_cv_c_volatile+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 9492,9535 **** { volatile int x; ! int * volatile y; ; return 0; } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ! (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ac_cv_c_volatile=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_c_volatile=no fi ! rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:$LINENO: result: $ac_cv_c_volatile" >&5 ! echo "${ECHO_T}$ac_cv_c_volatile" >&6 if test $ac_cv_c_volatile = no; then cat >>confdefs.h <<\_ACEOF --- 10159,10199 ---- { volatile int x; ! int * volatile y = (int *) 0; ! return !x && !y; ; return 0; } _ACEOF rm -f conftest.$ac_objext ! if { (ac_try="$ac_compile" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest.$ac_objext; then ac_cv_c_volatile=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_c_volatile=no fi ! ! rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi ! { echo "$as_me:$LINENO: result: $ac_cv_c_volatile" >&5 ! echo "${ECHO_T}$ac_cv_c_volatile" >&6; } if test $ac_cv_c_volatile = no; then cat >>confdefs.h <<\_ACEOF *************** *** 9538,9545 **** fi ! echo "$as_me:$LINENO: checking for inline" >&5 ! echo $ECHO_N "checking for inline... $ECHO_C" >&6 if test "${ac_cv_c_inline+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 10202,10209 ---- fi ! { echo "$as_me:$LINENO: checking for inline" >&5 ! echo $ECHO_N "checking for inline... $ECHO_C" >&6; } if test "${ac_cv_c_inline+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 9559,9597 **** _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ! (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ! ac_cv_c_inline=$ac_kw; break else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi ! rm -f conftest.err conftest.$ac_objext conftest.$ac_ext done fi ! echo "$as_me:$LINENO: result: $ac_cv_c_inline" >&5 ! echo "${ECHO_T}$ac_cv_c_inline" >&6 case $ac_cv_c_inline in --- 10223,10259 ---- _ACEOF rm -f conftest.$ac_objext ! if { (ac_try="$ac_compile" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest.$ac_objext; then ! ac_cv_c_inline=$ac_kw else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 + fi ! ! rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ! test "$ac_cv_c_inline" != no && break done fi ! { echo "$as_me:$LINENO: result: $ac_cv_c_inline" >&5 ! echo "${ECHO_T}$ac_cv_c_inline" >&6; } case $ac_cv_c_inline in *************** *** 9610,9623 **** esac GSL_CFLAGS="-I$includedir" GSL_LIBS="-L$libdir -lgsl" ! echo "$as_me:$LINENO: checking for extern inline" >&5 ! echo $ECHO_N "checking for extern inline... $ECHO_C" >&6 if test "${ac_cv_c_extern_inline+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 10272,10344 ---- esac + { echo "$as_me:$LINENO: checking whether char is unsigned" >&5 + echo $ECHO_N "checking whether char is unsigned... $ECHO_C" >&6; } + if test "${ac_cv_c_char_unsigned+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ + $ac_includes_default + int + main () + { + static int test_array [1 - 2 * !(((char) -1) < 0)]; + test_array [0] = 0 + + ; + return 0; + } + _ACEOF + rm -f conftest.$ac_objext + if { (ac_try="$ac_compile" + case "(($ac_try" in + *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; + *) ac_try_echo=$ac_try;; + esac + eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 + (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { + test -z "$ac_c_werror_flag" || + test ! -s conftest.err + } && test -s conftest.$ac_objext; then + ac_cv_c_char_unsigned=no + else + echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + + ac_cv_c_char_unsigned=yes + fi + + rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi + { echo "$as_me:$LINENO: result: $ac_cv_c_char_unsigned" >&5 + echo "${ECHO_T}$ac_cv_c_char_unsigned" >&6; } + if test $ac_cv_c_char_unsigned = yes && test "$GCC" != yes; then + cat >>confdefs.h <<\_ACEOF + #define __CHAR_UNSIGNED__ 1 + _ACEOF + + fi + + GSL_CFLAGS="-I$includedir" GSL_LIBS="-L$libdir -lgsl" ! { echo "$as_me:$LINENO: checking for extern inline" >&5 ! echo $ECHO_N "checking for extern inline... $ECHO_C" >&6; } if test "${ac_cv_c_extern_inline+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 9640,9683 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ! (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ac_cv_c_extern_inline="yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi ! rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:$LINENO: result: $ac_cv_c_extern_inline" >&5 ! echo "${ECHO_T}$ac_cv_c_extern_inline" >&6 if test "$ac_cv_c_extern_inline" != no ; then - cat >>confdefs.h <<\_ACEOF - #define HAVE_INLINE 1 - _ACEOF fi --- 10361,10401 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (ac_try="$ac_compile" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest.$ac_objext; then ac_cv_c_extern_inline="yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 + fi ! ! rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi ! { echo "$as_me:$LINENO: result: $ac_cv_c_extern_inline" >&5 ! echo "${ECHO_T}$ac_cv_c_extern_inline" >&6; } if test "$ac_cv_c_extern_inline" != no ; then + cat >>confdefs.h <<\_ACEOF + #define HAVE_INLINE + _ACEOF fi *************** *** 9685,9702 **** for ac_header in ieeefp.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` ! if eval "test \"\${$as_ac_Header+set}\" = set"; then ! echo "$as_me:$LINENO: checking for $ac_header" >&5 ! echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 ! if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi ! echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 ! echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 else # Is the header compilable? ! echo "$as_me:$LINENO: checking $ac_header usability" >&5 ! echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF --- 10403,10421 ---- for ac_header in ieeefp.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` ! if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then ! { echo "$as_me:$LINENO: checking for $ac_header" >&5 ! echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } ! if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi ! ac_res=`eval echo '${'$as_ac_Header'}'` ! { echo "$as_me:$LINENO: result: $ac_res" >&5 ! echo "${ECHO_T}$ac_res" >&6; } else # Is the header compilable? ! { echo "$as_me:$LINENO: checking $ac_header usability" >&5 ! echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF *************** *** 9707,9747 **** #include <$ac_header> _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ! (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ac_header_compiler=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_header_compiler=no fi ! rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ! echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ! echo "${ECHO_T}$ac_header_compiler" >&6 # Is the header present? ! echo "$as_me:$LINENO: checking $ac_header presence" >&5 ! echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF --- 10426,10462 ---- #include <$ac_header> _ACEOF rm -f conftest.$ac_objext ! if { (ac_try="$ac_compile" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest.$ac_objext; then ac_header_compiler=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_header_compiler=no fi ! ! rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ! { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 ! echo "${ECHO_T}$ac_header_compiler" >&6; } # Is the header present? ! { echo "$as_me:$LINENO: checking $ac_header presence" >&5 ! echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF *************** *** 9750,9773 **** /* end confdefs.h. */ #include <$ac_header> _ACEOF ! if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 ! (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } >/dev/null; then ! if test -s conftest.err; then ! ac_cpp_err=$ac_c_preproc_warn_flag ! ac_cpp_err=$ac_cpp_err$ac_c_werror_flag ! else ! ac_cpp_err= ! fi ! else ! ac_cpp_err=yes ! fi ! if test -z "$ac_cpp_err"; then ac_header_preproc=yes else echo "$as_me: failed program was:" >&5 --- 10465,10486 ---- /* end confdefs.h. */ #include <$ac_header> _ACEOF ! if { (ac_try="$ac_cpp conftest.$ac_ext" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } >/dev/null && { ! test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || ! test ! -s conftest.err ! }; then ac_header_preproc=yes else echo "$as_me: failed program was:" >&5 *************** *** 9775,9783 **** ac_header_preproc=no fi rm -f conftest.err conftest.$ac_ext ! echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ! echo "${ECHO_T}$ac_header_preproc" >&6 # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in --- 10488,10497 ---- ac_header_preproc=no fi + rm -f conftest.err conftest.$ac_ext ! { echo "$as_me:$LINENO: result: $ac_header_preproc" >&5 ! echo "${ECHO_T}$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in *************** *** 9801,9825 **** echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ! ( ! cat <<\_ASBOX ! ## ------------------------------ ## ! ## Report this to the gsl lists. ## ! ## ------------------------------ ## ! _ASBOX ! ) | ! sed "s/^/$as_me: WARNING: /" >&2 ;; esac ! echo "$as_me:$LINENO: checking for $ac_header" >&5 ! echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 ! if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else eval "$as_ac_Header=\$ac_header_preproc" fi ! echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5 ! echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 fi if test `eval echo '${'$as_ac_Header'}'` = yes; then --- 10515,10533 ---- echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;} { echo "$as_me:$LINENO: WARNING: $ac_header: in the future, the compiler will take precedence" >&5 echo "$as_me: WARNING: $ac_header: in the future, the compiler will take precedence" >&2;} ! ;; esac ! { echo "$as_me:$LINENO: checking for $ac_header" >&5 ! echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6; } ! if { as_var=$as_ac_Header; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 else eval "$as_ac_Header=\$ac_header_preproc" fi ! ac_res=`eval echo '${'$as_ac_Header'}'` ! { echo "$as_me:$LINENO: result: $ac_res" >&5 ! echo "${ECHO_T}$ac_res" >&6; } fi if test `eval echo '${'$as_ac_Header'}'` = yes; then *************** *** 9833,9846 **** for ac_func in vprintf do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ! echo "$as_me:$LINENO: checking for $ac_func" >&5 ! echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 ! if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF --- 10541,10569 ---- + case "$host_os" in + *mingw*) + MINGW=true + ;; + esac + + if test "$MINGW" = "true"; then + MINGW32_HOST_TRUE= + MINGW32_HOST_FALSE='#' + else + MINGW32_HOST_TRUE='#' + MINGW32_HOST_FALSE= + fi + + for ac_func in vprintf do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ! { echo "$as_me:$LINENO: checking for $ac_func" >&5 ! echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } ! if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF *************** *** 9866,9940 **** #undef $ac_func ! /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus extern "C" - { #endif - /* We use char because int might match the return type of a gcc2 - builtin and then its argument prototype would still apply. */ char $ac_func (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ ! #if defined (__stub_$ac_func) || defined (__stub___$ac_func) choke me - #else - char (*f) () = $ac_func; - #endif - #ifdef __cplusplus - } #endif int main () { ! return f != $ac_func; ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 ! (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then eval "$as_ac_var=yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! eval "$as_ac_var=no" fi ! rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 ! echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF ! echo "$as_me:$LINENO: checking for _doprnt" >&5 ! echo $ECHO_N "checking for _doprnt... $ECHO_C" >&6 if test "${ac_cv_func__doprnt+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 10589,10655 ---- #undef $ac_func ! /* Override any GCC internal prototype to avoid an error. ! Use char because int might match the return type of a GCC ! builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $ac_func (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ ! #if defined __stub_$ac_func || defined __stub___$ac_func choke me #endif int main () { ! return $ac_func (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (ac_try="$ac_link" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest$ac_exeext && ! $as_test_x conftest$ac_exeext; then eval "$as_ac_var=yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! eval "$as_ac_var=no" fi ! ! rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi ! ac_res=`eval echo '${'$as_ac_var'}'` ! { echo "$as_me:$LINENO: result: $ac_res" >&5 ! echo "${ECHO_T}$ac_res" >&6; } if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF ! { echo "$as_me:$LINENO: checking for _doprnt" >&5 ! echo $ECHO_N "checking for _doprnt... $ECHO_C" >&6; } if test "${ac_cv_func__doprnt+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 9961,10028 **** #undef _doprnt ! /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus extern "C" - { #endif - /* We use char because int might match the return type of a gcc2 - builtin and then its argument prototype would still apply. */ char _doprnt (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ ! #if defined (__stub__doprnt) || defined (__stub____doprnt) choke me - #else - char (*f) () = _doprnt; - #endif - #ifdef __cplusplus - } #endif int main () { ! return f != _doprnt; ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 ! (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ac_cv_func__doprnt=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_func__doprnt=no fi ! rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:$LINENO: result: $ac_cv_func__doprnt" >&5 ! echo "${ECHO_T}$ac_cv_func__doprnt" >&6 if test $ac_cv_func__doprnt = yes; then cat >>confdefs.h <<\_ACEOF --- 10676,10734 ---- #undef _doprnt ! /* Override any GCC internal prototype to avoid an error. ! Use char because int might match the return type of a GCC ! builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char _doprnt (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ ! #if defined __stub__doprnt || defined __stub____doprnt choke me #endif int main () { ! return _doprnt (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (ac_try="$ac_link" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest$ac_exeext && ! $as_test_x conftest$ac_exeext; then ac_cv_func__doprnt=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_func__doprnt=no fi ! ! rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi ! { echo "$as_me:$LINENO: result: $ac_cv_func__doprnt" >&5 ! echo "${ECHO_T}$ac_cv_func__doprnt" >&6; } if test $ac_cv_func__doprnt = yes; then cat >>confdefs.h <<\_ACEOF *************** *** 10044,10052 **** for ac_func in memcpy memmove strdup strtol strtoul do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ! echo "$as_me:$LINENO: checking for $ac_func" >&5 ! echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 ! if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF --- 10750,10758 ---- for ac_func in memcpy memmove strdup strtol strtoul do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` ! { echo "$as_me:$LINENO: checking for $ac_func" >&5 ! echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6; } ! if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF *************** *** 10072,10151 **** #undef $ac_func ! /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus extern "C" - { #endif - /* We use char because int might match the return type of a gcc2 - builtin and then its argument prototype would still apply. */ char $ac_func (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ ! #if defined (__stub_$ac_func) || defined (__stub___$ac_func) choke me - #else - char (*f) () = $ac_func; - #endif - #ifdef __cplusplus - } #endif int main () { ! return f != $ac_func; ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 ! (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then eval "$as_ac_var=yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! eval "$as_ac_var=no" fi ! rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi ! echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5 ! echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF else ! case $LIBOBJS in ! "$ac_func.$ac_objext" | \ ! *" $ac_func.$ac_objext" | \ ! "$ac_func.$ac_objext "* | \ *" $ac_func.$ac_objext "* ) ;; ! *) LIBOBJS="$LIBOBJS $ac_func.$ac_objext" ;; esac fi --- 10778,10847 ---- #undef $ac_func ! /* Override any GCC internal prototype to avoid an error. ! Use char because int might match the return type of a GCC ! builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $ac_func (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ ! #if defined __stub_$ac_func || defined __stub___$ac_func choke me #endif int main () { ! return $ac_func (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (ac_try="$ac_link" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest$ac_exeext && ! $as_test_x conftest$ac_exeext; then eval "$as_ac_var=yes" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! eval "$as_ac_var=no" fi ! ! rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext fi ! ac_res=`eval echo '${'$as_ac_var'}'` ! { echo "$as_me:$LINENO: result: $ac_res" >&5 ! echo "${ECHO_T}$ac_res" >&6; } if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <<_ACEOF #define `echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF else ! case " $LIBOBJS " in *" $ac_func.$ac_objext "* ) ;; ! *) LIBOBJS="$LIBOBJS $ac_func.$ac_objext" ! ;; esac fi *************** *** 10153,10160 **** ! echo "$as_me:$LINENO: checking for EXIT_SUCCESS and EXIT_FAILURE" >&5 ! echo $ECHO_N "checking for EXIT_SUCCESS and EXIT_FAILURE... $ECHO_C" >&6 if test "${ac_cv_decl_exit_success_and_failure+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 10849,10856 ---- ! { echo "$as_me:$LINENO: checking for EXIT_SUCCESS and EXIT_FAILURE" >&5 ! echo $ECHO_N "checking for EXIT_SUCCESS and EXIT_FAILURE... $ECHO_C" >&6; } if test "${ac_cv_decl_exit_success_and_failure+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 10181,10191 **** fi ! echo "$as_me:$LINENO: result: $ac_cv_decl_exit_success_and_failure" >&5 ! echo "${ECHO_T}$ac_cv_decl_exit_success_and_failure" >&6 if test "$ac_cv_decl_exit_success_and_failure" = yes ; then ! cat >>confdefs.h <<\_ACEOF #define HAVE_EXIT_SUCCESS_AND_FAILURE 1 _ACEOF --- 10877,10888 ---- fi ! { echo "$as_me:$LINENO: result: $ac_cv_decl_exit_success_and_failure" >&5 ! echo "${ECHO_T}$ac_cv_decl_exit_success_and_failure" >&6; } if test "$ac_cv_decl_exit_success_and_failure" = yes ; then ! ! cat >>confdefs.h <<\_ACEOF #define HAVE_EXIT_SUCCESS_AND_FAILURE 1 _ACEOF *************** *** 10194,10201 **** if test "x$LIBS" = "x" ; then ! echo "$as_me:$LINENO: checking for cos in -lm" >&5 ! echo $ECHO_N "checking for cos in -lm... $ECHO_C" >&6 if test "${ac_cv_lib_m_cos+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 10891,10898 ---- if test "x$LIBS" = "x" ; then ! { echo "$as_me:$LINENO: checking for cos in -lm" >&5 ! echo $ECHO_N "checking for cos in -lm... $ECHO_C" >&6; } if test "${ac_cv_lib_m_cos+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 10208,10263 **** cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ ! /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus extern "C" #endif - /* We use char because int might match the return type of a gcc2 - builtin and then its argument prototype would still apply. */ char cos (); int main () { ! cos (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 ! (eval $ac_link) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest$ac_exeext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ac_cv_lib_m_cos=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_lib_m_cos=no fi ! rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! echo "$as_me:$LINENO: result: $ac_cv_lib_m_cos" >&5 ! echo "${ECHO_T}$ac_cv_lib_m_cos" >&6 if test $ac_cv_lib_m_cos = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBM 1 --- 10905,10957 ---- cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ ! /* Override any GCC internal prototype to avoid an error. ! Use char because int might match the return type of a GCC ! builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char cos (); int main () { ! return cos (); ; return 0; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext ! if { (ac_try="$ac_link" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_link") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest$ac_exeext && ! $as_test_x conftest$ac_exeext; then ac_cv_lib_m_cos=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_lib_m_cos=no fi ! ! rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi ! { echo "$as_me:$LINENO: result: $ac_cv_lib_m_cos" >&5 ! echo "${ECHO_T}$ac_cv_lib_m_cos" >&6; } if test $ac_cv_lib_m_cos = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_LIBM 1 *************** *** 10269,10276 **** fi ! echo "$as_me:$LINENO: checking whether feenableexcept is declared" >&5 ! echo $ECHO_N "checking whether feenableexcept is declared... $ECHO_C" >&6 if test "${ac_cv_have_decl_feenableexcept+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 10963,10970 ---- fi ! { echo "$as_me:$LINENO: checking whether feenableexcept is declared" >&5 ! echo $ECHO_N "checking whether feenableexcept is declared... $ECHO_C" >&6; } if test "${ac_cv_have_decl_feenableexcept+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 10287,10293 **** main () { #ifndef feenableexcept ! char *p = (char *) feenableexcept; #endif ; --- 10981,10987 ---- main () { #ifndef feenableexcept ! (void) feenableexcept; #endif ; *************** *** 10295,10332 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ! (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ac_cv_have_decl_feenableexcept=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_have_decl_feenableexcept=no fi ! rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:$LINENO: result: $ac_cv_have_decl_feenableexcept" >&5 ! echo "${ECHO_T}$ac_cv_have_decl_feenableexcept" >&6 if test $ac_cv_have_decl_feenableexcept = yes; then cat >>confdefs.h <<_ACEOF --- 10989,11022 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (ac_try="$ac_compile" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest.$ac_objext; then ac_cv_have_decl_feenableexcept=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_have_decl_feenableexcept=no fi ! ! rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi ! { echo "$as_me:$LINENO: result: $ac_cv_have_decl_feenableexcept" >&5 ! echo "${ECHO_T}$ac_cv_have_decl_feenableexcept" >&6; } if test $ac_cv_have_decl_feenableexcept = yes; then cat >>confdefs.h <<_ACEOF *************** *** 10343,10350 **** fi ! echo "$as_me:$LINENO: checking whether fesettrapenable is declared" >&5 ! echo $ECHO_N "checking whether fesettrapenable is declared... $ECHO_C" >&6 if test "${ac_cv_have_decl_fesettrapenable+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 11033,11040 ---- fi ! { echo "$as_me:$LINENO: checking whether fesettrapenable is declared" >&5 ! echo $ECHO_N "checking whether fesettrapenable is declared... $ECHO_C" >&6; } if test "${ac_cv_have_decl_fesettrapenable+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 10361,10367 **** main () { #ifndef fesettrapenable ! char *p = (char *) fesettrapenable; #endif ; --- 11051,11057 ---- main () { #ifndef fesettrapenable ! (void) fesettrapenable; #endif ; *************** *** 10369,10406 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ! (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ac_cv_have_decl_fesettrapenable=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_have_decl_fesettrapenable=no fi ! rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:$LINENO: result: $ac_cv_have_decl_fesettrapenable" >&5 ! echo "${ECHO_T}$ac_cv_have_decl_fesettrapenable" >&6 if test $ac_cv_have_decl_fesettrapenable = yes; then cat >>confdefs.h <<_ACEOF --- 11059,11092 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (ac_try="$ac_compile" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest.$ac_objext; then ac_cv_have_decl_fesettrapenable=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_have_decl_fesettrapenable=no fi ! ! rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi ! { echo "$as_me:$LINENO: result: $ac_cv_have_decl_fesettrapenable" >&5 ! echo "${ECHO_T}$ac_cv_have_decl_fesettrapenable" >&6; } if test $ac_cv_have_decl_fesettrapenable = yes; then cat >>confdefs.h <<_ACEOF *************** *** 10417,10424 **** fi ! echo "$as_me:$LINENO: checking whether hypot is declared" >&5 ! echo $ECHO_N "checking whether hypot is declared... $ECHO_C" >&6 if test "${ac_cv_have_decl_hypot+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 11103,11110 ---- fi ! { echo "$as_me:$LINENO: checking whether hypot is declared" >&5 ! echo $ECHO_N "checking whether hypot is declared... $ECHO_C" >&6; } if test "${ac_cv_have_decl_hypot+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 10434,10440 **** main () { #ifndef hypot ! char *p = (char *) hypot; #endif ; --- 11120,11126 ---- main () { #ifndef hypot ! (void) hypot; #endif ; *************** *** 10442,10479 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ! (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ac_cv_have_decl_hypot=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_have_decl_hypot=no fi ! rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:$LINENO: result: $ac_cv_have_decl_hypot" >&5 ! echo "${ECHO_T}$ac_cv_have_decl_hypot" >&6 if test $ac_cv_have_decl_hypot = yes; then cat >>confdefs.h <<_ACEOF --- 11128,11161 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (ac_try="$ac_compile" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest.$ac_objext; then ac_cv_have_decl_hypot=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_have_decl_hypot=no fi ! ! rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi ! { echo "$as_me:$LINENO: result: $ac_cv_have_decl_hypot" >&5 ! echo "${ECHO_T}$ac_cv_have_decl_hypot" >&6; } if test $ac_cv_have_decl_hypot = yes; then cat >>confdefs.h <<_ACEOF *************** *** 10490,10497 **** fi ! echo "$as_me:$LINENO: checking whether expm1 is declared" >&5 ! echo $ECHO_N "checking whether expm1 is declared... $ECHO_C" >&6 if test "${ac_cv_have_decl_expm1+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 11172,11179 ---- fi ! { echo "$as_me:$LINENO: checking whether expm1 is declared" >&5 ! echo $ECHO_N "checking whether expm1 is declared... $ECHO_C" >&6; } if test "${ac_cv_have_decl_expm1+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 10507,10513 **** main () { #ifndef expm1 ! char *p = (char *) expm1; #endif ; --- 11189,11195 ---- main () { #ifndef expm1 ! (void) expm1; #endif ; *************** *** 10515,10552 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ! (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ac_cv_have_decl_expm1=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_have_decl_expm1=no fi ! rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:$LINENO: result: $ac_cv_have_decl_expm1" >&5 ! echo "${ECHO_T}$ac_cv_have_decl_expm1" >&6 if test $ac_cv_have_decl_expm1 = yes; then cat >>confdefs.h <<_ACEOF --- 11197,11230 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (ac_try="$ac_compile" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest.$ac_objext; then ac_cv_have_decl_expm1=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_have_decl_expm1=no fi ! ! rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi ! { echo "$as_me:$LINENO: result: $ac_cv_have_decl_expm1" >&5 ! echo "${ECHO_T}$ac_cv_have_decl_expm1" >&6; } if test $ac_cv_have_decl_expm1 = yes; then cat >>confdefs.h <<_ACEOF *************** *** 10563,10570 **** fi ! echo "$as_me:$LINENO: checking whether acosh is declared" >&5 ! echo $ECHO_N "checking whether acosh is declared... $ECHO_C" >&6 if test "${ac_cv_have_decl_acosh+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 11241,11248 ---- fi ! { echo "$as_me:$LINENO: checking whether acosh is declared" >&5 ! echo $ECHO_N "checking whether acosh is declared... $ECHO_C" >&6; } if test "${ac_cv_have_decl_acosh+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 10580,10586 **** main () { #ifndef acosh ! char *p = (char *) acosh; #endif ; --- 11258,11264 ---- main () { #ifndef acosh ! (void) acosh; #endif ; *************** *** 10588,10625 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ! (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ac_cv_have_decl_acosh=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_have_decl_acosh=no fi ! rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:$LINENO: result: $ac_cv_have_decl_acosh" >&5 ! echo "${ECHO_T}$ac_cv_have_decl_acosh" >&6 if test $ac_cv_have_decl_acosh = yes; then cat >>confdefs.h <<_ACEOF --- 11266,11299 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (ac_try="$ac_compile" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest.$ac_objext; then ac_cv_have_decl_acosh=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_have_decl_acosh=no fi ! ! rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi ! { echo "$as_me:$LINENO: result: $ac_cv_have_decl_acosh" >&5 ! echo "${ECHO_T}$ac_cv_have_decl_acosh" >&6; } if test $ac_cv_have_decl_acosh = yes; then cat >>confdefs.h <<_ACEOF *************** *** 10636,10643 **** fi ! echo "$as_me:$LINENO: checking whether asinh is declared" >&5 ! echo $ECHO_N "checking whether asinh is declared... $ECHO_C" >&6 if test "${ac_cv_have_decl_asinh+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 11310,11317 ---- fi ! { echo "$as_me:$LINENO: checking whether asinh is declared" >&5 ! echo $ECHO_N "checking whether asinh is declared... $ECHO_C" >&6; } if test "${ac_cv_have_decl_asinh+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 10653,10659 **** main () { #ifndef asinh ! char *p = (char *) asinh; #endif ; --- 11327,11333 ---- main () { #ifndef asinh ! (void) asinh; #endif ; *************** *** 10661,10698 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ! (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ac_cv_have_decl_asinh=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_have_decl_asinh=no fi ! rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:$LINENO: result: $ac_cv_have_decl_asinh" >&5 ! echo "${ECHO_T}$ac_cv_have_decl_asinh" >&6 if test $ac_cv_have_decl_asinh = yes; then cat >>confdefs.h <<_ACEOF --- 11335,11368 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (ac_try="$ac_compile" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest.$ac_objext; then ac_cv_have_decl_asinh=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_have_decl_asinh=no fi ! ! rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi ! { echo "$as_me:$LINENO: result: $ac_cv_have_decl_asinh" >&5 ! echo "${ECHO_T}$ac_cv_have_decl_asinh" >&6; } if test $ac_cv_have_decl_asinh = yes; then cat >>confdefs.h <<_ACEOF *************** *** 10709,10716 **** fi ! echo "$as_me:$LINENO: checking whether atanh is declared" >&5 ! echo $ECHO_N "checking whether atanh is declared... $ECHO_C" >&6 if test "${ac_cv_have_decl_atanh+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 11379,11386 ---- fi ! { echo "$as_me:$LINENO: checking whether atanh is declared" >&5 ! echo $ECHO_N "checking whether atanh is declared... $ECHO_C" >&6; } if test "${ac_cv_have_decl_atanh+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 10726,10732 **** main () { #ifndef atanh ! char *p = (char *) atanh; #endif ; --- 11396,11402 ---- main () { #ifndef atanh ! (void) atanh; #endif ; *************** *** 10734,10771 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ! (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ac_cv_have_decl_atanh=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_have_decl_atanh=no fi ! rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:$LINENO: result: $ac_cv_have_decl_atanh" >&5 ! echo "${ECHO_T}$ac_cv_have_decl_atanh" >&6 if test $ac_cv_have_decl_atanh = yes; then cat >>confdefs.h <<_ACEOF --- 11404,11437 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (ac_try="$ac_compile" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest.$ac_objext; then ac_cv_have_decl_atanh=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_have_decl_atanh=no fi ! ! rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi ! { echo "$as_me:$LINENO: result: $ac_cv_have_decl_atanh" >&5 ! echo "${ECHO_T}$ac_cv_have_decl_atanh" >&6; } if test $ac_cv_have_decl_atanh = yes; then cat >>confdefs.h <<_ACEOF *************** *** 10782,10789 **** fi ! echo "$as_me:$LINENO: checking whether ldexp is declared" >&5 ! echo $ECHO_N "checking whether ldexp is declared... $ECHO_C" >&6 if test "${ac_cv_have_decl_ldexp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 11448,11455 ---- fi ! { echo "$as_me:$LINENO: checking whether ldexp is declared" >&5 ! echo $ECHO_N "checking whether ldexp is declared... $ECHO_C" >&6; } if test "${ac_cv_have_decl_ldexp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 10799,10805 **** main () { #ifndef ldexp ! char *p = (char *) ldexp; #endif ; --- 11465,11471 ---- main () { #ifndef ldexp ! (void) ldexp; #endif ; *************** *** 10807,10844 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ! (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ac_cv_have_decl_ldexp=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_have_decl_ldexp=no fi ! rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:$LINENO: result: $ac_cv_have_decl_ldexp" >&5 ! echo "${ECHO_T}$ac_cv_have_decl_ldexp" >&6 if test $ac_cv_have_decl_ldexp = yes; then cat >>confdefs.h <<_ACEOF --- 11473,11506 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (ac_try="$ac_compile" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest.$ac_objext; then ac_cv_have_decl_ldexp=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_have_decl_ldexp=no fi ! ! rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi ! { echo "$as_me:$LINENO: result: $ac_cv_have_decl_ldexp" >&5 ! echo "${ECHO_T}$ac_cv_have_decl_ldexp" >&6; } if test $ac_cv_have_decl_ldexp = yes; then cat >>confdefs.h <<_ACEOF *************** *** 10855,10862 **** fi ! echo "$as_me:$LINENO: checking whether frexp is declared" >&5 ! echo $ECHO_N "checking whether frexp is declared... $ECHO_C" >&6 if test "${ac_cv_have_decl_frexp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 11517,11524 ---- fi ! { echo "$as_me:$LINENO: checking whether frexp is declared" >&5 ! echo $ECHO_N "checking whether frexp is declared... $ECHO_C" >&6; } if test "${ac_cv_have_decl_frexp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 10872,10878 **** main () { #ifndef frexp ! char *p = (char *) frexp; #endif ; --- 11534,11540 ---- main () { #ifndef frexp ! (void) frexp; #endif ; *************** *** 10880,10917 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ! (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ac_cv_have_decl_frexp=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_have_decl_frexp=no fi ! rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:$LINENO: result: $ac_cv_have_decl_frexp" >&5 ! echo "${ECHO_T}$ac_cv_have_decl_frexp" >&6 if test $ac_cv_have_decl_frexp = yes; then cat >>confdefs.h <<_ACEOF --- 11542,11575 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (ac_try="$ac_compile" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest.$ac_objext; then ac_cv_have_decl_frexp=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_have_decl_frexp=no fi ! ! rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi ! { echo "$as_me:$LINENO: result: $ac_cv_have_decl_frexp" >&5 ! echo "${ECHO_T}$ac_cv_have_decl_frexp" >&6; } if test $ac_cv_have_decl_frexp = yes; then cat >>confdefs.h <<_ACEOF *************** *** 10928,10935 **** fi ! echo "$as_me:$LINENO: checking whether isinf is declared" >&5 ! echo $ECHO_N "checking whether isinf is declared... $ECHO_C" >&6 if test "${ac_cv_have_decl_isinf+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 11586,11593 ---- fi ! { echo "$as_me:$LINENO: checking whether isinf is declared" >&5 ! echo $ECHO_N "checking whether isinf is declared... $ECHO_C" >&6; } if test "${ac_cv_have_decl_isinf+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 10945,10951 **** main () { #ifndef isinf ! char *p = (char *) isinf; #endif ; --- 11603,11609 ---- main () { #ifndef isinf ! (void) isinf; #endif ; *************** *** 10953,10990 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ! (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ac_cv_have_decl_isinf=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_have_decl_isinf=no fi ! rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:$LINENO: result: $ac_cv_have_decl_isinf" >&5 ! echo "${ECHO_T}$ac_cv_have_decl_isinf" >&6 if test $ac_cv_have_decl_isinf = yes; then cat >>confdefs.h <<_ACEOF --- 11611,11644 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (ac_try="$ac_compile" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest.$ac_objext; then ac_cv_have_decl_isinf=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_have_decl_isinf=no fi ! ! rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi ! { echo "$as_me:$LINENO: result: $ac_cv_have_decl_isinf" >&5 ! echo "${ECHO_T}$ac_cv_have_decl_isinf" >&6; } if test $ac_cv_have_decl_isinf = yes; then cat >>confdefs.h <<_ACEOF *************** *** 11001,11009 **** fi ! echo "$as_me:$LINENO: checking whether finite is declared" >&5 ! echo $ECHO_N "checking whether finite is declared... $ECHO_C" >&6 ! if test "${ac_cv_have_decl_finite+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF --- 11655,11663 ---- fi ! { echo "$as_me:$LINENO: checking whether isfinite is declared" >&5 ! echo $ECHO_N "checking whether isfinite is declared... $ECHO_C" >&6; } ! if test "${ac_cv_have_decl_isfinite+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF *************** *** 11017,11024 **** int main () { ! #ifndef finite ! char *p = (char *) finite; #endif ; --- 11671,11678 ---- int main () { ! #ifndef isfinite ! (void) isfinite; #endif ; *************** *** 11026,11082 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ! (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ! ac_cv_have_decl_finite=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_have_decl_finite=no fi ! rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:$LINENO: result: $ac_cv_have_decl_finite" >&5 ! echo "${ECHO_T}$ac_cv_have_decl_finite" >&6 ! if test $ac_cv_have_decl_finite = yes; then cat >>confdefs.h <<_ACEOF ! #define HAVE_DECL_FINITE 1 _ACEOF else cat >>confdefs.h <<_ACEOF ! #define HAVE_DECL_FINITE 0 _ACEOF fi ! echo "$as_me:$LINENO: checking whether isfinite is declared" >&5 ! echo $ECHO_N "checking whether isfinite is declared... $ECHO_C" >&6 ! if test "${ac_cv_have_decl_isfinite+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF --- 11680,11732 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (ac_try="$ac_compile" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest.$ac_objext; then ! ac_cv_have_decl_isfinite=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_have_decl_isfinite=no fi ! ! rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi ! { echo "$as_me:$LINENO: result: $ac_cv_have_decl_isfinite" >&5 ! echo "${ECHO_T}$ac_cv_have_decl_isfinite" >&6; } ! if test $ac_cv_have_decl_isfinite = yes; then cat >>confdefs.h <<_ACEOF ! #define HAVE_DECL_ISFINITE 1 _ACEOF else cat >>confdefs.h <<_ACEOF ! #define HAVE_DECL_ISFINITE 0 _ACEOF fi ! { echo "$as_me:$LINENO: checking whether finite is declared" >&5 ! echo $ECHO_N "checking whether finite is declared... $ECHO_C" >&6; } ! if test "${ac_cv_have_decl_finite+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF *************** *** 11086,11097 **** cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include int main () { ! #ifndef isfinite ! char *p = (char *) isfinite; #endif ; --- 11736,11750 ---- cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ #include + #if HAVE_IEEEFP_H + #include + #endif int main () { ! #ifndef finite ! (void) finite; #endif ; *************** *** 11099,11154 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ! (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ! ac_cv_have_decl_isfinite=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_have_decl_isfinite=no fi ! rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:$LINENO: result: $ac_cv_have_decl_isfinite" >&5 ! echo "${ECHO_T}$ac_cv_have_decl_isfinite" >&6 ! if test $ac_cv_have_decl_isfinite = yes; then cat >>confdefs.h <<_ACEOF ! #define HAVE_DECL_ISFINITE 1 _ACEOF else cat >>confdefs.h <<_ACEOF ! #define HAVE_DECL_ISFINITE 0 _ACEOF fi ! echo "$as_me:$LINENO: checking whether isnan is declared" >&5 ! echo $ECHO_N "checking whether isnan is declared... $ECHO_C" >&6 if test "${ac_cv_have_decl_isnan+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 11752,11803 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (ac_try="$ac_compile" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest.$ac_objext; then ! ac_cv_have_decl_finite=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_have_decl_finite=no fi ! ! rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi ! { echo "$as_me:$LINENO: result: $ac_cv_have_decl_finite" >&5 ! echo "${ECHO_T}$ac_cv_have_decl_finite" >&6; } ! if test $ac_cv_have_decl_finite = yes; then cat >>confdefs.h <<_ACEOF ! #define HAVE_DECL_FINITE 1 _ACEOF else cat >>confdefs.h <<_ACEOF ! #define HAVE_DECL_FINITE 0 _ACEOF fi ! { echo "$as_me:$LINENO: checking whether isnan is declared" >&5 ! echo $ECHO_N "checking whether isnan is declared... $ECHO_C" >&6; } if test "${ac_cv_have_decl_isnan+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 11164,11170 **** main () { #ifndef isnan ! char *p = (char *) isnan; #endif ; --- 11813,11819 ---- main () { #ifndef isnan ! (void) isnan; #endif ; *************** *** 11172,11209 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ! (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ac_cv_have_decl_isnan=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_have_decl_isnan=no fi ! rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:$LINENO: result: $ac_cv_have_decl_isnan" >&5 ! echo "${ECHO_T}$ac_cv_have_decl_isnan" >&6 if test $ac_cv_have_decl_isnan = yes; then cat >>confdefs.h <<_ACEOF --- 11821,11854 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (ac_try="$ac_compile" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest.$ac_objext; then ac_cv_have_decl_isnan=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_have_decl_isnan=no fi ! ! rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi ! { echo "$as_me:$LINENO: result: $ac_cv_have_decl_isnan" >&5 ! echo "${ECHO_T}$ac_cv_have_decl_isnan" >&6; } if test $ac_cv_have_decl_isnan = yes; then cat >>confdefs.h <<_ACEOF *************** *** 11223,11234 **** case "$host" in *-*-*openbsd*) ! echo "$as_me:$LINENO: result: avoiding OpenBSD system log1p - using gsl version" >&5 ! echo "${ECHO_T}avoiding OpenBSD system log1p - using gsl version" >&6 ;; *) ! echo "$as_me:$LINENO: checking whether log1p is declared" >&5 ! echo $ECHO_N "checking whether log1p is declared... $ECHO_C" >&6 if test "${ac_cv_have_decl_log1p+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 11868,11879 ---- case "$host" in *-*-*openbsd*) ! { echo "$as_me:$LINENO: result: avoiding OpenBSD system log1p - using gsl version" >&5 ! echo "${ECHO_T}avoiding OpenBSD system log1p - using gsl version" >&6; } ;; *) ! { echo "$as_me:$LINENO: checking whether log1p is declared" >&5 ! echo $ECHO_N "checking whether log1p is declared... $ECHO_C" >&6; } if test "${ac_cv_have_decl_log1p+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 11244,11250 **** main () { #ifndef log1p ! char *p = (char *) log1p; #endif ; --- 11889,11895 ---- main () { #ifndef log1p ! (void) log1p; #endif ; *************** *** 11252,11289 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ! (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ac_cv_have_decl_log1p=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_have_decl_log1p=no fi ! rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:$LINENO: result: $ac_cv_have_decl_log1p" >&5 ! echo "${ECHO_T}$ac_cv_have_decl_log1p" >&6 if test $ac_cv_have_decl_log1p = yes; then cat >>confdefs.h <<_ACEOF --- 11897,11930 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (ac_try="$ac_compile" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest.$ac_objext; then ac_cv_have_decl_log1p=yes else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_have_decl_log1p=no fi ! ! rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi ! { echo "$as_me:$LINENO: result: $ac_cv_have_decl_log1p" >&5 ! echo "${ECHO_T}$ac_cv_have_decl_log1p" >&6; } if test $ac_cv_have_decl_log1p = yes; then cat >>confdefs.h <<_ACEOF *************** *** 11303,11310 **** ;; esac ! echo "$as_me:$LINENO: checking for long double stdio" >&5 ! echo $ECHO_N "checking for long double stdio... $ECHO_C" >&6 if test "${ac_cv_func_printf_longdouble+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 11944,11951 ---- ;; esac ! { echo "$as_me:$LINENO: checking for long double stdio" >&5 ! echo $ECHO_N "checking for long double stdio... $ECHO_C" >&6; } if test "${ac_cv_func_printf_longdouble+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 11322,11341 **** #include int main (void) { ! const char * s = "5678"; long double x = 1.234 ; fprintf(stderr,"%Lg\n",x) ; sscanf(s, "%Lg", &x); ! if (x == 5678) {exit (0);} else {exit(1); }; } _ACEOF rm -f conftest$ac_exeext ! if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 ! (eval $ac_link) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then --- 11963,11991 ---- #include int main (void) { ! const char * s = "5678.25"; long double x = 1.234 ; fprintf(stderr,"%Lg\n",x) ; sscanf(s, "%Lg", &x); ! if (x == 5678.25) {exit (0);} else {exit(1); }; } _ACEOF rm -f conftest$ac_exeext ! if { (ac_try="$ac_link" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_link") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_try") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then *************** *** 11348,11369 **** ( exit $ac_status ) ac_cv_func_printf_longdouble="no" fi ! rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi ! echo "$as_me:$LINENO: result: $ac_cv_func_printf_longdouble" >&5 ! echo "${ECHO_T}$ac_cv_func_printf_longdouble" >&6 if test "$ac_cv_func_printf_longdouble" != no; then ! cat >>confdefs.h <<\_ACEOF #define HAVE_PRINTF_LONGDOUBLE 1 _ACEOF - fi ! echo "$as_me:$LINENO: checking for extended floating point registers" >&5 ! echo $ECHO_N "checking for extended floating point registers... $ECHO_C" >&6 if test "${ac_cv_c_extended_fp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 11998,12021 ---- ( exit $ac_status ) ac_cv_func_printf_longdouble="no" fi ! rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi + + fi ! { echo "$as_me:$LINENO: result: $ac_cv_func_printf_longdouble" >&5 ! echo "${ECHO_T}$ac_cv_func_printf_longdouble" >&6; } if test "$ac_cv_func_printf_longdouble" != no; then ! ! cat >>confdefs.h <<\_ACEOF #define HAVE_PRINTF_LONGDOUBLE 1 _ACEOF fi ! { echo "$as_me:$LINENO: checking for extended floating point registers" >&5 ! echo $ECHO_N "checking for extended floating point registers... $ECHO_C" >&6; } if test "${ac_cv_c_extended_fp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 11395,11413 **** esac fi ! echo "$as_me:$LINENO: result: $ac_cv_c_extended_fp" >&5 ! echo "${ECHO_T}$ac_cv_c_extended_fp" >&6 if test $ac_cv_c_extended_fp != "no" ; then ! cat >>confdefs.h <<\_ACEOF #define HAVE_EXTENDED_PRECISION_REGISTERS 1 _ACEOF - fi ! echo "$as_me:$LINENO: checking for IEEE arithmetic interface type" >&5 ! echo $ECHO_N "checking for IEEE arithmetic interface type... $ECHO_C" >&6 if test "${ac_cv_c_ieee_interface+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 12047,12065 ---- esac fi ! { echo "$as_me:$LINENO: result: $ac_cv_c_extended_fp" >&5 ! echo "${ECHO_T}$ac_cv_c_extended_fp" >&6; } if test $ac_cv_c_extended_fp != "no" ; then ! ! cat >>confdefs.h <<\_ACEOF #define HAVE_EXTENDED_PRECISION_REGISTERS 1 _ACEOF fi ! { echo "$as_me:$LINENO: checking for IEEE arithmetic interface type" >&5 ! echo $ECHO_N "checking for IEEE arithmetic interface type... $ECHO_C" >&6; } if test "${ac_cv_c_ieee_interface+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 11469,11480 **** esac fi ! echo "$as_me:$LINENO: result: $ac_cv_c_ieee_interface" >&5 ! echo "${ECHO_T}$ac_cv_c_ieee_interface" >&6 if test "$ac_cv_c_ieee_interface" = "gnux86" ; then ! echo "$as_me:$LINENO: checking for FPU_SETCW" >&5 ! echo $ECHO_N "checking for FPU_SETCW... $ECHO_C" >&6 if test "${ac_cv_c_fpu_setcw+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 12121,12132 ---- esac fi ! { echo "$as_me:$LINENO: result: $ac_cv_c_ieee_interface" >&5 ! echo "${ECHO_T}$ac_cv_c_ieee_interface" >&6; } if test "$ac_cv_c_ieee_interface" = "gnux86" ; then ! { echo "$as_me:$LINENO: checking for FPU_SETCW" >&5 ! echo $ECHO_N "checking for FPU_SETCW... $ECHO_C" >&6; } if test "${ac_cv_c_fpu_setcw+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 11500,11538 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ! (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ! ac_cv_c_fpu_setcw="yes" else ! echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 - ac_cv_c_ieee_interface=unknown fi ! rm -f conftest.err conftest.$ac_objext conftest.$ac_ext fi ! echo "$as_me:$LINENO: result: $ac_cv_c_fpu_setcw" >&5 ! echo "${ECHO_T}$ac_cv_c_fpu_setcw" >&6 fi ac_tr_ieee_interface=HAVE_`echo $ac_cv_c_ieee_interface | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`_IEEE_INTERFACE --- 12152,12262 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (ac_try="$ac_compile" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest.$ac_objext; then ! ac_cv_c_fpu_setcw="yes" ! else ! echo "$as_me: failed program was:" >&5 ! sed 's/^/| /' conftest.$ac_ext >&5 ! ! ac_cv_c_ieee_interface=unknown ! fi ! ! rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ! ! fi ! { echo "$as_me:$LINENO: result: $ac_cv_c_fpu_setcw" >&5 ! echo "${ECHO_T}$ac_cv_c_fpu_setcw" >&6; } ! fi ! ! if test "$ac_cv_c_ieee_interface" = "gnux86" ; then ! { echo "$as_me:$LINENO: checking for SSE extensions" >&5 ! echo $ECHO_N "checking for SSE extensions... $ECHO_C" >&6; } ! if test "${ac_cv_c_fpu_sse+set}" = set; then ! echo $ECHO_N "(cached) $ECHO_C" >&6 ! else ! ac_cv_c_fpu_sse=no ! if test "$cross_compiling" = yes; then ! { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling ! See \`config.log' for more details." >&5 ! echo "$as_me: error: cannot run test program while cross compiling ! See \`config.log' for more details." >&2;} ! { (exit 1); exit 1; }; } ! else ! cat >conftest.$ac_ext <<_ACEOF ! /* confdefs.h. */ ! _ACEOF ! cat confdefs.h >>conftest.$ac_ext ! cat >>conftest.$ac_ext <<_ACEOF ! /* end confdefs.h. */ ! ! #include ! #define _FPU_SETMXCSR(cw_sse) asm volatile ("ldmxcsr %0" : : "m" (*&cw_sse)) ! ! int ! main () ! { ! unsigned int mode = 0x1f80 ; _FPU_SETMXCSR(mode); exit(0); ! ; ! return 0; ! } ! _ACEOF ! rm -f conftest$ac_exeext ! if { (ac_try="$ac_link" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_link") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_try") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ! ac_cv_c_fpu_sse="yes" else ! echo "$as_me: program exited with status $ac_status" >&5 ! echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 fi ! rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext ! fi ! ! fi ! { echo "$as_me:$LINENO: result: $ac_cv_c_fpu_sse" >&5 ! echo "${ECHO_T}$ac_cv_c_fpu_sse" >&6; } ! if test $ac_cv_c_fpu_sse = yes; then ! ! cat >>confdefs.h <<\_ACEOF ! #define HAVE_FPU_X86_SSE 1 ! _ACEOF ! ! fi fi ac_tr_ieee_interface=HAVE_`echo $ac_cv_c_ieee_interface | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`_IEEE_INTERFACE *************** *** 11562,11569 **** save_cflags="$CFLAGS" ! echo "$as_me:$LINENO: checking for IEEE compiler flags" >&5 ! echo $ECHO_N "checking for IEEE compiler flags... $ECHO_C" >&6 if test "${ac_cv_c_ieee_flags+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 12286,12293 ---- save_cflags="$CFLAGS" ! { echo "$as_me:$LINENO: checking for IEEE compiler flags" >&5 ! echo $ECHO_N "checking for IEEE compiler flags... $ECHO_C" >&6; } if test "${ac_cv_c_ieee_flags+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 11596,11636 **** } _ACEOF rm -f conftest.$ac_objext ! if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 ! (eval $ac_compile) 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && ! { ac_try='test -z "$ac_c_werror_flag" ! || test ! -s conftest.err' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; } && ! { ac_try='test -s conftest.$ac_objext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ! ac_status=$? ! echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); }; }; then ac_cv_c_ieee_flags="$ieee_flags" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_c_ieee_flags="none" fi ! rm -f conftest.err conftest.$ac_objext conftest.$ac_ext else ac_cv_c_ieee_flags="none" fi fi ! echo "$as_me:$LINENO: result: $ac_cv_c_ieee_flags" >&5 ! echo "${ECHO_T}$ac_cv_c_ieee_flags" >&6 if test "$ac_cv_c_ieee_flags" != "none" ; then CFLAGS="$ac_cv_c_ieee_flags $save_cflags" --- 12320,12356 ---- } _ACEOF rm -f conftest.$ac_objext ! if { (ac_try="$ac_compile" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_compile") 2>conftest.er1 ac_status=$? grep -v '^ *+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 ! (exit $ac_status); } && { ! test -z "$ac_c_werror_flag" || ! test ! -s conftest.err ! } && test -s conftest.$ac_objext; then ac_cv_c_ieee_flags="$ieee_flags" else echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ! ac_cv_c_ieee_flags="none" fi ! ! rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext else ac_cv_c_ieee_flags="none" fi fi ! { echo "$as_me:$LINENO: result: $ac_cv_c_ieee_flags" >&5 ! echo "${ECHO_T}$ac_cv_c_ieee_flags" >&6; } if test "$ac_cv_c_ieee_flags" != "none" ; then CFLAGS="$ac_cv_c_ieee_flags $save_cflags" *************** *** 11638,11645 **** CFLAGS="$save_cflags" fi ! echo "$as_me:$LINENO: checking for IEEE comparisons" >&5 ! echo $ECHO_N "checking for IEEE comparisons... $ECHO_C" >&6 if test "${ac_cv_c_ieee_comparisons+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 12358,12365 ---- CFLAGS="$save_cflags" fi ! { echo "$as_me:$LINENO: checking for IEEE comparisons" >&5 ! echo $ECHO_N "checking for IEEE comparisons... $ECHO_C" >&6; } if test "${ac_cv_c_ieee_comparisons+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 11664,11676 **** } _ACEOF rm -f conftest$ac_exeext ! if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 ! (eval $ac_link) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then --- 12384,12405 ---- } _ACEOF rm -f conftest$ac_exeext ! if { (ac_try="$ac_link" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_link") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_try") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then *************** *** 11683,11705 **** ( exit $ac_status ) ac_cv_c_ieee_comparisons="no" fi ! rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi ! echo "$as_me:$LINENO: result: $ac_cv_c_ieee_comparisons" >&5 ! echo "${ECHO_T}$ac_cv_c_ieee_comparisons" >&6 if test "$ac_cv_c_ieee_comparisons" != no ; then ! cat >>confdefs.h <<\_ACEOF #define HAVE_IEEE_COMPARISONS 1 _ACEOF - fi ! echo "$as_me:$LINENO: checking for IEEE denormalized values" >&5 ! echo $ECHO_N "checking for IEEE denormalized values... $ECHO_C" >&6 if test "${ac_cv_c_ieee_denormals+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else --- 12412,12436 ---- ( exit $ac_status ) ac_cv_c_ieee_comparisons="no" fi ! rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi + + fi ! { echo "$as_me:$LINENO: result: $ac_cv_c_ieee_comparisons" >&5 ! echo "${ECHO_T}$ac_cv_c_ieee_comparisons" >&6; } if test "$ac_cv_c_ieee_comparisons" != no ; then ! ! cat >>confdefs.h <<\_ACEOF #define HAVE_IEEE_COMPARISONS 1 _ACEOF fi ! { echo "$as_me:$LINENO: checking for IEEE denormalized values" >&5 ! echo $ECHO_N "checking for IEEE denormalized values... $ECHO_C" >&6; } if test "${ac_cv_c_ieee_denormals+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else *************** *** 11725,11737 **** } _ACEOF rm -f conftest$ac_exeext ! if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 ! (eval $ac_link) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 ! (eval $ac_try) 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then --- 12456,12477 ---- } _ACEOF rm -f conftest$ac_exeext ! if { (ac_try="$ac_link" ! case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_link") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' ! { (case "(($ac_try" in ! *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ! *) ac_try_echo=$ac_try;; ! esac ! eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ! (eval "$ac_try") 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); }; }; then *************** *** 11744,11765 **** ( exit $ac_status ) ac_cv_c_ieee_denormals="no" fi ! rm -f core *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi ! echo "$as_me:$LINENO: result: $ac_cv_c_ieee_denormals" >&5 ! echo "${ECHO_T}$ac_cv_c_ieee_denormals" >&6 if test "$ac_cv_c_ieee_denormals" != no ; then ! cat >>confdefs.h <<\_ACEOF #define HAVE_IEEE_DENORMALS 1 _ACEOF - fi ! ac_config_files="$ac_config_files gsl-config gsl.pc gsl_version.h gsl.spec gsl/Makefile test/Makefile err/Makefile sys/Makefile utils/Makefile const/Makefile min/Makefile multimin/Makefile ieee-utils/Makefile fft/Makefile specfunc/Makefile dht/Makefile fit/Makefile multifit/Makefile bspline/Makefile statistics/Makefile sum/Makefile roots/Makefile multiroots/Makefile ntuple/Makefile poly/Makefile qrng/Makefile rng/Makefile randist/Makefile siman/Makefile integration/Makefile interpolation/Makefile doc/Makefile block/Makefile vector/Makefile matrix/Makefile histogram/Makefile monte/Makefile ode-initval/Makefile cblas/Makefile blas/Makefile linalg/Makefile eigen/Makefile permutation/Makefile combination/Makefile sort/Makefile complex/Makefile diff/Makefile deriv/Makefile cheb/Makefile cdf/Makefile wavelet/Makefile Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure --- 12484,12507 ---- ( exit $ac_status ) ac_cv_c_ieee_denormals="no" fi ! rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi + + fi ! { echo "$as_me:$LINENO: result: $ac_cv_c_ieee_denormals" >&5 ! echo "${ECHO_T}$ac_cv_c_ieee_denormals" >&6; } if test "$ac_cv_c_ieee_denormals" != no ; then ! ! cat >>confdefs.h <<\_ACEOF #define HAVE_IEEE_DENORMALS 1 _ACEOF fi ! ac_config_files="$ac_config_files gsl-config gsl.pc gsl_version.h gsl.spec gsl/Makefile test/Makefile err/Makefile sys/Makefile utils/Makefile const/Makefile min/Makefile multimin/Makefile ieee-utils/Makefile fft/Makefile specfunc/Makefile dht/Makefile fit/Makefile multifit/Makefile bspline/Makefile statistics/Makefile sum/Makefile roots/Makefile multiroots/Makefile ntuple/Makefile poly/Makefile qrng/Makefile rng/Makefile randist/Makefile siman/Makefile integration/Makefile interpolation/Makefile doc/Makefile block/Makefile vector/Makefile matrix/Makefile histogram/Makefile monte/Makefile ode-initval/Makefile cblas/Makefile blas/Makefile linalg/Makefile eigen/Makefile permutation/Makefile combination/Makefile sort/Makefile complex/Makefile diff/Makefile deriv/Makefile cheb/Makefile cdf/Makefile wavelet/Makefile Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure *************** *** 11779,11817 **** # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. ! # So, don't put newlines in cache variables' values. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ! { (set) 2>&1 | ! case `(ac_space=' '; set | grep ac_space) 2>&1` in ! *ac_space=\ *) # `set' does not quote correctly, so add quotes (double-quote # substitution turns \\\\ into \\, and sed turns \\ into \). sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ! ;; *) # `set' quotes correctly as required by POSIX, so do not add quotes. ! sed -n \ ! "s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1=\\2/p" ;; ! esac; ! } | sed ' t clear ! : clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end ! /^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ ! : end' >>confcache ! if diff $cache_file confcache >/dev/null 2>&1; then :; else ! if test -w $cache_file; then ! test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file" cat confcache >$cache_file else ! echo "not updating unwritable cache $cache_file" fi fi rm -f confcache --- 12521,12578 ---- # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. ! # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ! ( ! for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do ! eval ac_val=\$$ac_var ! case $ac_val in #( ! *${as_nl}*) ! case $ac_var in #( ! *_cv_*) { echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." >&5 ! echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;; ! esac ! case $ac_var in #( ! _ | IFS | as_nl) ;; #( ! *) $as_unset $ac_var ;; ! esac ;; ! esac ! done ! (set) 2>&1 | ! case $as_nl`(ac_space=' '; set) 2>&1` in #( ! *${as_nl}ac_space=\ *) # `set' does not quote correctly, so add quotes (double-quote # substitution turns \\\\ into \\, and sed turns \\ into \). sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ! ;; #( *) # `set' quotes correctly as required by POSIX, so do not add quotes. ! sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; ! esac | ! sort ! ) | sed ' + /^ac_cv_env_/b end t clear ! :clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end ! s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ ! :end' >>confcache ! if diff "$cache_file" confcache >/dev/null 2>&1; then :; else ! if test -w "$cache_file"; then ! test "x$cache_file" != "x/dev/null" && ! { echo "$as_me:$LINENO: updating cache $cache_file" >&5 ! echo "$as_me: updating cache $cache_file" >&6;} cat confcache >$cache_file else ! { echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5 ! echo "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache *************** *** 11820,11851 **** # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' - # VPATH may cause trouble with some makes, so we remove $(srcdir), - # ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and - # trailing colons and then remove the whole line if VPATH becomes empty - # (actually we leave an empty line to preserve line numbers). - if test "x$srcdir" = x.; then - ac_vpsub='/^[ ]*VPATH[ ]*=/{ - s/:*\$(srcdir):*/:/; - s/:*\${srcdir}:*/:/; - s/:*@srcdir@:*/:/; - s/^\([^=]*=[ ]*\):*/\1/; - s/:*$//; - s/^[^=]*=[ ]*$//; - }' - fi - DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ! ac_i=`echo "$ac_i" | ! sed 's/\$U\././;s/\.o$//;s/\.obj$//'` ! # 2. Add them. ! ac_libobjs="$ac_libobjs $ac_i\$U.$ac_objext" ! ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo' done LIBOBJS=$ac_libobjs --- 12581,12598 ---- # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ! ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ! ac_i=`echo "$ac_i" | sed "$ac_script"` ! # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR ! # will be set to the directory where LIBOBJS objects are built. ! ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext" ! ac_ltlibobjs="$ac_ltlibobjs \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs *************** *** 11859,11864 **** --- 12606,12618 ---- Usually this means the macro was only invoked conditionally." >&2;} { (exit 1); exit 1; }; } fi + if test -z "${MINGW32_HOST_TRUE}" && test -z "${MINGW32_HOST_FALSE}"; then + { { echo "$as_me:$LINENO: error: conditional \"MINGW32_HOST\" was never defined. + Usually this means the macro was only invoked conditionally." >&5 + echo "$as_me: error: conditional \"MINGW32_HOST\" was never defined. + Usually this means the macro was only invoked conditionally." >&2;} + { (exit 1); exit 1; }; } + fi : ${CONFIG_STATUS=./config.status} ac_clean_files_save=$ac_clean_files *************** *** 11883,11955 **** ## M4sh Initialization. ## ## --------------------- ## ! # Be Bourne compatible if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' ! elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then ! set -o posix ! fi ! DUALCASE=1; export DUALCASE # for MKS sh ! ! # Support unset when possible. ! if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then ! as_unset=unset ! else ! as_unset=false ! fi ! ! ! # Work around bugs in pre-3.0 UWIN ksh. ! $as_unset ENV MAIL MAILPATH ! PS1='$ ' ! PS2='> ' ! PS4='+ ' ! ! # NLS nuisances. ! for as_var in \ ! LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ ! LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ ! LC_TELEPHONE LC_TIME ! do ! if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then ! eval $as_var=C; export $as_var ! else ! $as_unset $as_var ! fi ! done ! ! # Required to use basename. ! if expr a : '\(a\)' >/dev/null 2>&1; then ! as_expr=expr else ! as_expr=false ! fi - if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then - as_basename=basename - else - as_basename=false fi - # Name of the executable. - as_me=`$as_basename "$0" || - $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ - X"$0" : 'X\(//\)$' \| \ - X"$0" : 'X\(/\)$' \| \ - . : '\(.\)' 2>/dev/null || - echo X/"$0" | - sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/; q; } - /^X\/\(\/\/\)$/{ s//\1/; q; } - /^X\/\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` ! # PATH needs CR, and LINENO needs CR and PATH. # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' --- 12637,12662 ---- ## M4sh Initialization. ## ## --------------------- ## ! # Be more Bourne compatible ! DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' ! setopt NO_GLOB_SUBST else ! case `(set -o) 2>/dev/null` in ! *posix*) set -o posix ;; ! esac fi ! # PATH needs CR # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' *************** *** 11970,12095 **** rm -f conf$$.sh fi ! ! as_lineno_1=$LINENO ! as_lineno_2=$LINENO ! as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` ! test "x$as_lineno_1" != "x$as_lineno_2" && ! test "x$as_lineno_3" = "x$as_lineno_2" || { ! # Find who we are. Look in the path if we contain no path at all ! # relative or not. ! case $0 in ! *[\\/]* ) as_myself=$0 ;; ! *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done ! ;; ! esac ! # We did not find ourselves, most probably we were run as `sh COMMAND' ! # in which case we are not to be found in the path. ! if test "x$as_myself" = x; then ! as_myself=$0 ! fi ! if test ! -f "$as_myself"; then ! { { echo "$as_me:$LINENO: error: cannot find myself; rerun with an absolute path" >&5 ! echo "$as_me: error: cannot find myself; rerun with an absolute path" >&2;} ! { (exit 1); exit 1; }; } ! fi ! case $CONFIG_SHELL in ! '') ! as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ! for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do ! IFS=$as_save_IFS ! test -z "$as_dir" && as_dir=. ! for as_base in sh bash ksh sh5; do ! case $as_dir in ! /*) ! if ("$as_dir/$as_base" -c ' as_lineno_1=$LINENO as_lineno_2=$LINENO - as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null` test "x$as_lineno_1" != "x$as_lineno_2" && ! test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then ! $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; } ! $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; } ! CONFIG_SHELL=$as_dir/$as_base ! export CONFIG_SHELL ! exec "$CONFIG_SHELL" "$0" ${1+"$@"} ! fi;; ! esac ! done ! done ! ;; ! esac # Create $as_me.lineno as a copy of $as_myself, but with $LINENO # uniformly replaced by the line number. The first 'sed' inserts a ! # line-number line before each line; the second 'sed' does the real ! # work. The second script uses 'N' to pair each line-number line ! # with the numbered line, and appends trailing '-' during ! # substitution so that $LINENO is not a special case at line end. # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the ! # second 'sed' script. Blame Lee E. McMahon for sed's syntax. :-) ! sed '=' <$as_myself | sed ' N ! s,$,-, ! : loop ! s,^\(['$as_cr_digits']*\)\(.*\)[$]LINENO\([^'$as_cr_alnum'_]\),\1\2\1\3, t loop ! s,-$,, ! s,^['$as_cr_digits']*\n,, ' >$as_me.lineno && ! chmod +x $as_me.lineno || ! { { echo "$as_me:$LINENO: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&5 ! echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2;} { (exit 1); exit 1; }; } # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the ! # original and so on. Autoconf is especially sensible to this). ! . ./$as_me.lineno # Exit status is that of the last command. exit } ! case `echo "testing\c"; echo 1,2,3`,`echo -n testing; echo 1,2,3` in ! *c*,-n*) ECHO_N= ECHO_C=' ! ' ECHO_T=' ' ;; ! *c*,* ) ECHO_N=-n ECHO_C= ECHO_T= ;; ! *) ECHO_N= ECHO_C='\c' ECHO_T= ;; esac ! if expr a : '\(a\)' >/dev/null 2>&1; then as_expr=expr else as_expr=false fi rm -f conf$$ conf$$.exe conf$$.file echo >conf$$.file if ln -s conf$$.file conf$$ 2>/dev/null; then ! # We could just check for DJGPP; but this test a) works b) is more generic ! # and c) will remain valid once DJGPP supports symlinks (DJGPP 2.04). ! if test -f conf$$.exe; then ! # Don't use ln at all; we don't have any links as_ln_s='cp -p' - else - as_ln_s='ln -s' - fi elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi ! rm -f conf$$ conf$$.exe conf$$.file if mkdir -p . 2>/dev/null; then as_mkdir_p=: --- 12677,12874 ---- rm -f conf$$.sh fi ! # Support unset when possible. ! if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then ! as_unset=unset ! else ! as_unset=false ! fi ! ! ! # IFS ! # We need space, tab and new line, in precisely that order. Quoting is ! # there to prevent editors from complaining about space-tab. ! # (If _AS_PATH_WALK were called with IFS unset, it would disable word ! # splitting by setting IFS to empty value.) ! as_nl=' ! ' ! IFS=" "" $as_nl" ! ! # Find who we are. Look in the path if we contain no directory separator. ! case $0 in ! *[\\/]* ) as_myself=$0 ;; ! *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done + IFS=$as_save_IFS ! ;; ! esac ! # We did not find ourselves, most probably we were run as `sh COMMAND' ! # in which case we are not to be found in the path. ! if test "x$as_myself" = x; then ! as_myself=$0 ! fi ! if test ! -f "$as_myself"; then ! echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 ! { (exit 1); exit 1; } ! fi ! ! # Work around bugs in pre-3.0 UWIN ksh. ! for as_var in ENV MAIL MAILPATH ! do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var ! done ! PS1='$ ' ! PS2='> ' ! PS4='+ ' ! ! # NLS nuisances. ! for as_var in \ ! LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \ ! LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \ ! LC_TELEPHONE LC_TIME do ! if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then ! eval $as_var=C; export $as_var ! else ! ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var ! fi ! done ! ! # Required to use basename. ! if expr a : '\(a\)' >/dev/null 2>&1 && ! test "X`expr 00001 : '.*\(...\)'`" = X001; then ! as_expr=expr ! else ! as_expr=false ! fi ! ! if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then ! as_basename=basename ! else ! as_basename=false ! fi ! ! ! # Name of the executable. ! as_me=`$as_basename -- "$0" || ! $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ ! X"$0" : 'X\(//\)$' \| \ ! X"$0" : 'X\(/\)' \| . 2>/dev/null || ! echo X/"$0" | ! sed '/^.*\/\([^/][^/]*\)\/*$/{ ! s//\1/ ! q ! } ! /^X\/\(\/\/\)$/{ ! s//\1/ ! q ! } ! /^X\/\(\/\).*/{ ! s//\1/ ! q ! } ! s/.*/./; q'` ! ! # CDPATH. ! $as_unset CDPATH ! ! ! as_lineno_1=$LINENO as_lineno_2=$LINENO test "x$as_lineno_1" != "x$as_lineno_2" && ! test "x`expr $as_lineno_1 + 1`" = "x$as_lineno_2" || { # Create $as_me.lineno as a copy of $as_myself, but with $LINENO # uniformly replaced by the line number. The first 'sed' inserts a ! # line-number line after each line using $LINENO; the second 'sed' ! # does the real work. The second script uses 'N' to pair each ! # line-number line with the line containing $LINENO, and appends ! # trailing '-' during substitution so that $LINENO is not a special ! # case at line end. # (Raja R Harinath suggested sed '=', and Paul Eggert wrote the ! # scripts with optimization help from Paolo Bonzini. Blame Lee ! # E. McMahon (1931-1989) for sed's syntax. :-) ! sed -n ' ! p ! /[$]LINENO/= ! ' <$as_myself | sed ' + s/[$]LINENO.*/&-/ + t lineno + b + :lineno N ! :loop ! s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop ! s/-\n.*// ' >$as_me.lineno && ! chmod +x "$as_me.lineno" || ! { echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2 { (exit 1); exit 1; }; } # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the ! # original and so on. Autoconf is especially sensitive to this). ! . "./$as_me.lineno" # Exit status is that of the last command. exit } ! if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then ! as_dirname=dirname ! else ! as_dirname=false ! fi ! ! ECHO_C= ECHO_N= ECHO_T= ! case `echo -n x` in ! -n*) ! case `echo 'x\c'` in ! *c*) ECHO_T=' ';; # ECHO_T is single tab character. ! *) ECHO_C='\c';; ! esac;; ! *) ! ECHO_N='-n';; esac ! if expr a : '\(a\)' >/dev/null 2>&1 && ! test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi rm -f conf$$ conf$$.exe conf$$.file + if test -d conf$$.dir; then + rm -f conf$$.dir/conf$$.file + else + rm -f conf$$.dir + mkdir conf$$.dir + fi echo >conf$$.file if ln -s conf$$.file conf$$ 2>/dev/null; then ! as_ln_s='ln -s' ! # ... but there are two gotchas: ! # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. ! # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. ! # In both cases, we have to default to `cp -p'. ! ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -p' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi ! rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file ! rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p=: *************** *** 12098,12104 **** as_mkdir_p=false fi ! as_executable_p="test -f" # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" --- 12877,12904 ---- as_mkdir_p=false fi ! if test -x / >/dev/null 2>&1; then ! as_test_x='test -x' ! else ! if ls -dL / >/dev/null 2>&1; then ! as_ls_L_option=L ! else ! as_ls_L_option= ! fi ! as_test_x=' ! eval sh -c '\'' ! if test -d "$1"; then ! test -d "$1/."; ! else ! case $1 in ! -*)set "./$1";; ! esac; ! case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in ! ???[sx]*):;;*)false;;esac;fi ! '\'' sh ! ' ! fi ! as_executable_p=$as_test_x # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" *************** *** 12107,12137 **** as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" - # IFS - # We need space, tab and new line, in precisely that order. - as_nl=' - ' - IFS=" $as_nl" - - # CDPATH. - $as_unset CDPATH - exec 6>&1 ! # Open the log real soon, to keep \$[0] and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their ! # values after options handling. Logging --version etc. is OK. ! exec 5>>config.log ! { ! echo ! sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ! ## Running $as_me. ## ! _ASBOX ! } >&5 ! cat >&5 <<_CSEOF ! ! This file was extended by gsl $as_me 1.9, which was ! generated by GNU Autoconf 2.59. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS --- 12907,12920 ---- as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 ! # Save the log message, to keep $[0] and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their ! # values after options handling. ! ac_log=" ! This file was extended by gsl $as_me 1.10, which was ! generated by GNU Autoconf 2.61. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS *************** *** 12139,12168 **** CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ ! _CSEOF ! echo "on `(hostname || uname -n) 2>/dev/null | sed 1q`" >&5 ! echo >&5 _ACEOF # Files that config.status was made for. ! if test -n "$ac_config_files"; then ! echo "config_files=\"$ac_config_files\"" >>$CONFIG_STATUS ! fi ! if test -n "$ac_config_headers"; then ! echo "config_headers=\"$ac_config_headers\"" >>$CONFIG_STATUS ! fi ! ! if test -n "$ac_config_links"; then ! echo "config_links=\"$ac_config_links\"" >>$CONFIG_STATUS ! fi ! ! if test -n "$ac_config_commands"; then ! echo "config_commands=\"$ac_config_commands\"" >>$CONFIG_STATUS ! fi cat >>$CONFIG_STATUS <<\_ACEOF - ac_cs_usage="\ \`$as_me' instantiates files from templates according to the current configuration. --- 12922,12940 ---- CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ ! on `(hostname || uname -n) 2>/dev/null | sed 1q` ! " ! _ACEOF + cat >>$CONFIG_STATUS <<_ACEOF # Files that config.status was made for. ! config_files="$ac_config_files" ! config_headers="$ac_config_headers" ! _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF ac_cs_usage="\ \`$as_me' instantiates files from templates according to the current configuration. *************** *** 12170,12176 **** Usage: $0 [OPTIONS] [FILE]... -h, --help print this help, then exit ! -V, --version print version number, then exit -q, --quiet do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --- 12942,12948 ---- Usage: $0 [OPTIONS] [FILE]... -h, --help print this help, then exit ! -V, --version print version number and configuration settings, then exit -q, --quiet do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions *************** *** 12186,12204 **** $config_headers Report bugs to ." - _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ ! gsl config.status 1.9 ! configured by $0, generated by GNU Autoconf 2.59, ! with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" ! Copyright (C) 2003 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ! srcdir=$srcdir ! INSTALL="$INSTALL" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF --- 12958,12979 ---- $config_headers Report bugs to ." + _ACEOF cat >>$CONFIG_STATUS <<_ACEOF ac_cs_version="\\ ! gsl config.status 1.10 ! configured by $0, generated by GNU Autoconf 2.61, ! with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" ! Copyright (C) 2006 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ! ! ac_pwd='$ac_pwd' ! srcdir='$srcdir' ! INSTALL='$INSTALL' ! MKDIR_P='$MKDIR_P' _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF *************** *** 12209,12247 **** do case $1 in --*=*) ! ac_option=`expr "x$1" : 'x\([^=]*\)='` ! ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'` ac_shift=: ;; ! -*) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; - *) # This is not an option, so the user has probably given explicit - # arguments. - ac_option=$1 - ac_need_defaults=false;; esac case $ac_option in # Handling of the options. - _ACEOF - cat >>$CONFIG_STATUS <<\_ACEOF -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; ! --version | --vers* | -V ) ! echo "$ac_cs_version"; exit 0 ;; ! --he | --h) ! # Conflict between --help and --header ! { { echo "$as_me:$LINENO: error: ambiguous option: $1 ! Try \`$0 --help' for more information." >&5 ! echo "$as_me: error: ambiguous option: $1 ! Try \`$0 --help' for more information." >&2;} ! { (exit 1); exit 1; }; };; ! --help | --hel | -h ) ! echo "$ac_cs_usage"; exit 0 ;; ! --debug | --d* | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift --- 12984,13007 ---- do case $1 in --*=*) ! ac_option=`expr "X$1" : 'X\([^=]*\)='` ! ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; ! *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; ! --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) ! echo "$ac_cs_version"; exit ;; ! --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift *************** *** 12251,12268 **** $ac_shift CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" ac_need_defaults=false;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. ! -*) { { echo "$as_me:$LINENO: error: unrecognized option: $1 ! Try \`$0 --help' for more information." >&5 ! echo "$as_me: error: unrecognized option: $1 ! Try \`$0 --help' for more information." >&2;} { (exit 1); exit 1; }; } ;; ! *) ac_config_targets="$ac_config_targets $1" ;; esac shift --- 13011,13034 ---- $ac_shift CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg" ac_need_defaults=false;; + --he | --h) + # Conflict between --help and --header + { echo "$as_me: error: ambiguous option: $1 + Try \`$0 --help' for more information." >&2 + { (exit 1); exit 1; }; };; + --help | --hel | -h ) + echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. ! -*) { echo "$as_me: error: unrecognized option: $1 ! Try \`$0 --help' for more information." >&2 { (exit 1); exit 1; }; } ;; ! *) ac_config_targets="$ac_config_targets $1" ! ac_need_defaults=false ;; esac shift *************** *** 12278,12357 **** _ACEOF cat >>$CONFIG_STATUS <<_ACEOF if \$ac_cs_recheck; then ! echo "running $SHELL $0 " $ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 ! exec $SHELL $0 $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion fi _ACEOF ! ! ! cat >>$CONFIG_STATUS <<\_ACEOF for ac_config_target in $ac_config_targets do ! case "$ac_config_target" in ! # Handling of arguments. ! "gsl-config" ) CONFIG_FILES="$CONFIG_FILES gsl-config" ;; ! "gsl.pc" ) CONFIG_FILES="$CONFIG_FILES gsl.pc" ;; ! "gsl_version.h" ) CONFIG_FILES="$CONFIG_FILES gsl_version.h" ;; ! "gsl.spec" ) CONFIG_FILES="$CONFIG_FILES gsl.spec" ;; ! "gsl/Makefile" ) CONFIG_FILES="$CONFIG_FILES gsl/Makefile" ;; ! "test/Makefile" ) CONFIG_FILES="$CONFIG_FILES test/Makefile" ;; ! "err/Makefile" ) CONFIG_FILES="$CONFIG_FILES err/Makefile" ;; ! "sys/Makefile" ) CONFIG_FILES="$CONFIG_FILES sys/Makefile" ;; ! "utils/Makefile" ) CONFIG_FILES="$CONFIG_FILES utils/Makefile" ;; ! "const/Makefile" ) CONFIG_FILES="$CONFIG_FILES const/Makefile" ;; ! "min/Makefile" ) CONFIG_FILES="$CONFIG_FILES min/Makefile" ;; ! "multimin/Makefile" ) CONFIG_FILES="$CONFIG_FILES multimin/Makefile" ;; ! "ieee-utils/Makefile" ) CONFIG_FILES="$CONFIG_FILES ieee-utils/Makefile" ;; ! "fft/Makefile" ) CONFIG_FILES="$CONFIG_FILES fft/Makefile" ;; ! "specfunc/Makefile" ) CONFIG_FILES="$CONFIG_FILES specfunc/Makefile" ;; ! "dht/Makefile" ) CONFIG_FILES="$CONFIG_FILES dht/Makefile" ;; ! "fit/Makefile" ) CONFIG_FILES="$CONFIG_FILES fit/Makefile" ;; ! "multifit/Makefile" ) CONFIG_FILES="$CONFIG_FILES multifit/Makefile" ;; ! "bspline/Makefile" ) CONFIG_FILES="$CONFIG_FILES bspline/Makefile" ;; ! "statistics/Makefile" ) CONFIG_FILES="$CONFIG_FILES statistics/Makefile" ;; ! "sum/Makefile" ) CONFIG_FILES="$CONFIG_FILES sum/Makefile" ;; ! "roots/Makefile" ) CONFIG_FILES="$CONFIG_FILES roots/Makefile" ;; ! "multiroots/Makefile" ) CONFIG_FILES="$CONFIG_FILES multiroots/Makefile" ;; ! "ntuple/Makefile" ) CONFIG_FILES="$CONFIG_FILES ntuple/Makefile" ;; ! "poly/Makefile" ) CONFIG_FILES="$CONFIG_FILES poly/Makefile" ;; ! "qrng/Makefile" ) CONFIG_FILES="$CONFIG_FILES qrng/Makefile" ;; ! "rng/Makefile" ) CONFIG_FILES="$CONFIG_FILES rng/Makefile" ;; ! "randist/Makefile" ) CONFIG_FILES="$CONFIG_FILES randist/Makefile" ;; ! "siman/Makefile" ) CONFIG_FILES="$CONFIG_FILES siman/Makefile" ;; ! "integration/Makefile" ) CONFIG_FILES="$CONFIG_FILES integration/Makefile" ;; ! "interpolation/Makefile" ) CONFIG_FILES="$CONFIG_FILES interpolation/Makefile" ;; ! "doc/Makefile" ) CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;; ! "block/Makefile" ) CONFIG_FILES="$CONFIG_FILES block/Makefile" ;; ! "vector/Makefile" ) CONFIG_FILES="$CONFIG_FILES vector/Makefile" ;; ! "matrix/Makefile" ) CONFIG_FILES="$CONFIG_FILES matrix/Makefile" ;; ! "histogram/Makefile" ) CONFIG_FILES="$CONFIG_FILES histogram/Makefile" ;; ! "monte/Makefile" ) CONFIG_FILES="$CONFIG_FILES monte/Makefile" ;; ! "ode-initval/Makefile" ) CONFIG_FILES="$CONFIG_FILES ode-initval/Makefile" ;; ! "cblas/Makefile" ) CONFIG_FILES="$CONFIG_FILES cblas/Makefile" ;; ! "blas/Makefile" ) CONFIG_FILES="$CONFIG_FILES blas/Makefile" ;; ! "linalg/Makefile" ) CONFIG_FILES="$CONFIG_FILES linalg/Makefile" ;; ! "eigen/Makefile" ) CONFIG_FILES="$CONFIG_FILES eigen/Makefile" ;; ! "permutation/Makefile" ) CONFIG_FILES="$CONFIG_FILES permutation/Makefile" ;; ! "combination/Makefile" ) CONFIG_FILES="$CONFIG_FILES combination/Makefile" ;; ! "sort/Makefile" ) CONFIG_FILES="$CONFIG_FILES sort/Makefile" ;; ! "complex/Makefile" ) CONFIG_FILES="$CONFIG_FILES complex/Makefile" ;; ! "diff/Makefile" ) CONFIG_FILES="$CONFIG_FILES diff/Makefile" ;; ! "deriv/Makefile" ) CONFIG_FILES="$CONFIG_FILES deriv/Makefile" ;; ! "cheb/Makefile" ) CONFIG_FILES="$CONFIG_FILES cheb/Makefile" ;; ! "cdf/Makefile" ) CONFIG_FILES="$CONFIG_FILES cdf/Makefile" ;; ! "wavelet/Makefile" ) CONFIG_FILES="$CONFIG_FILES wavelet/Makefile" ;; ! "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;; ! "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely --- 13044,13137 ---- _ACEOF cat >>$CONFIG_STATUS <<_ACEOF if \$ac_cs_recheck; then ! echo "running CONFIG_SHELL=$SHELL $SHELL $0 "$ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 ! CONFIG_SHELL=$SHELL ! export CONFIG_SHELL ! exec $SHELL "$0"$ac_configure_args \$ac_configure_extra_args --no-create --no-recursion fi _ACEOF + cat >>$CONFIG_STATUS <<\_ACEOF + exec 5>>config.log + { + echo + sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX + ## Running $as_me. ## + _ASBOX + echo "$ac_log" + } >&5 ! _ACEOF ! cat >>$CONFIG_STATUS <<_ACEOF ! _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF + + # Handling of arguments. for ac_config_target in $ac_config_targets do ! case $ac_config_target in ! "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; ! "gsl-config") CONFIG_FILES="$CONFIG_FILES gsl-config" ;; ! "gsl.pc") CONFIG_FILES="$CONFIG_FILES gsl.pc" ;; ! "gsl_version.h") CONFIG_FILES="$CONFIG_FILES gsl_version.h" ;; ! "gsl.spec") CONFIG_FILES="$CONFIG_FILES gsl.spec" ;; ! "gsl/Makefile") CONFIG_FILES="$CONFIG_FILES gsl/Makefile" ;; ! "test/Makefile") CONFIG_FILES="$CONFIG_FILES test/Makefile" ;; ! "err/Makefile") CONFIG_FILES="$CONFIG_FILES err/Makefile" ;; ! "sys/Makefile") CONFIG_FILES="$CONFIG_FILES sys/Makefile" ;; ! "utils/Makefile") CONFIG_FILES="$CONFIG_FILES utils/Makefile" ;; ! "const/Makefile") CONFIG_FILES="$CONFIG_FILES const/Makefile" ;; ! "min/Makefile") CONFIG_FILES="$CONFIG_FILES min/Makefile" ;; ! "multimin/Makefile") CONFIG_FILES="$CONFIG_FILES multimin/Makefile" ;; ! "ieee-utils/Makefile") CONFIG_FILES="$CONFIG_FILES ieee-utils/Makefile" ;; ! "fft/Makefile") CONFIG_FILES="$CONFIG_FILES fft/Makefile" ;; ! "specfunc/Makefile") CONFIG_FILES="$CONFIG_FILES specfunc/Makefile" ;; ! "dht/Makefile") CONFIG_FILES="$CONFIG_FILES dht/Makefile" ;; ! "fit/Makefile") CONFIG_FILES="$CONFIG_FILES fit/Makefile" ;; ! "multifit/Makefile") CONFIG_FILES="$CONFIG_FILES multifit/Makefile" ;; ! "bspline/Makefile") CONFIG_FILES="$CONFIG_FILES bspline/Makefile" ;; ! "statistics/Makefile") CONFIG_FILES="$CONFIG_FILES statistics/Makefile" ;; ! "sum/Makefile") CONFIG_FILES="$CONFIG_FILES sum/Makefile" ;; ! "roots/Makefile") CONFIG_FILES="$CONFIG_FILES roots/Makefile" ;; ! "multiroots/Makefile") CONFIG_FILES="$CONFIG_FILES multiroots/Makefile" ;; ! "ntuple/Makefile") CONFIG_FILES="$CONFIG_FILES ntuple/Makefile" ;; ! "poly/Makefile") CONFIG_FILES="$CONFIG_FILES poly/Makefile" ;; ! "qrng/Makefile") CONFIG_FILES="$CONFIG_FILES qrng/Makefile" ;; ! "rng/Makefile") CONFIG_FILES="$CONFIG_FILES rng/Makefile" ;; ! "randist/Makefile") CONFIG_FILES="$CONFIG_FILES randist/Makefile" ;; ! "siman/Makefile") CONFIG_FILES="$CONFIG_FILES siman/Makefile" ;; ! "integration/Makefile") CONFIG_FILES="$CONFIG_FILES integration/Makefile" ;; ! "interpolation/Makefile") CONFIG_FILES="$CONFIG_FILES interpolation/Makefile" ;; ! "doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;; ! "block/Makefile") CONFIG_FILES="$CONFIG_FILES block/Makefile" ;; ! "vector/Makefile") CONFIG_FILES="$CONFIG_FILES vector/Makefile" ;; ! "matrix/Makefile") CONFIG_FILES="$CONFIG_FILES matrix/Makefile" ;; ! "histogram/Makefile") CONFIG_FILES="$CONFIG_FILES histogram/Makefile" ;; ! "monte/Makefile") CONFIG_FILES="$CONFIG_FILES monte/Makefile" ;; ! "ode-initval/Makefile") CONFIG_FILES="$CONFIG_FILES ode-initval/Makefile" ;; ! "cblas/Makefile") CONFIG_FILES="$CONFIG_FILES cblas/Makefile" ;; ! "blas/Makefile") CONFIG_FILES="$CONFIG_FILES blas/Makefile" ;; ! "linalg/Makefile") CONFIG_FILES="$CONFIG_FILES linalg/Makefile" ;; ! "eigen/Makefile") CONFIG_FILES="$CONFIG_FILES eigen/Makefile" ;; ! "permutation/Makefile") CONFIG_FILES="$CONFIG_FILES permutation/Makefile" ;; ! "combination/Makefile") CONFIG_FILES="$CONFIG_FILES combination/Makefile" ;; ! "sort/Makefile") CONFIG_FILES="$CONFIG_FILES sort/Makefile" ;; ! "complex/Makefile") CONFIG_FILES="$CONFIG_FILES complex/Makefile" ;; ! "diff/Makefile") CONFIG_FILES="$CONFIG_FILES diff/Makefile" ;; ! "deriv/Makefile") CONFIG_FILES="$CONFIG_FILES deriv/Makefile" ;; ! "cheb/Makefile") CONFIG_FILES="$CONFIG_FILES cheb/Makefile" ;; ! "cdf/Makefile") CONFIG_FILES="$CONFIG_FILES cdf/Makefile" ;; ! "wavelet/Makefile") CONFIG_FILES="$CONFIG_FILES wavelet/Makefile" ;; ! "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; ! *) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac done + # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely *************** *** 12362,12723 **** fi # Have a temporary directory for convenience. Make it in the build tree ! # simply because there is no reason to put it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. ! # Create a temporary directory, and hook for its removal unless debugging. $debug || { ! trap 'exit_status=$?; rm -rf $tmp && exit $exit_status' 0 trap '{ (exit 1); exit 1; }' 1 2 13 15 } - # Create a (secure) tmp directory for tmp files. { ! tmp=`(umask 077 && mktemp -d -q "./confstatXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" } || { ! tmp=./confstat$$-$RANDOM ! (umask 077 && mkdir $tmp) } || { echo "$me: cannot create a temporary directory in ." >&2 { (exit 1); exit 1; } } - _ACEOF - - cat >>$CONFIG_STATUS <<_ACEOF - # ! # CONFIG_FILES section. # # No need to generate the scripts if there are no CONFIG_FILES. # This happens for instance when ./config.status config.h ! if test -n "\$CONFIG_FILES"; then ! # Protect against being on the right side of a sed subst in config.status. ! sed 's/,@/@@/; s/@,/@@/; s/,;t t\$/@;t t/; /@;t t\$/s/[\\\\&,]/\\\\&/g; ! s/@@/,@/; s/@@/@,/; s/@;t t\$/,;t t/' >\$tmp/subs.sed <<\\CEOF ! s,@SHELL@,$SHELL,;t t ! s,@PATH_SEPARATOR@,$PATH_SEPARATOR,;t t ! s,@PACKAGE_NAME@,$PACKAGE_NAME,;t t ! s,@PACKAGE_TARNAME@,$PACKAGE_TARNAME,;t t ! s,@PACKAGE_VERSION@,$PACKAGE_VERSION,;t t ! s,@PACKAGE_STRING@,$PACKAGE_STRING,;t t ! s,@PACKAGE_BUGREPORT@,$PACKAGE_BUGREPORT,;t t ! s,@exec_prefix@,$exec_prefix,;t t ! s,@prefix@,$prefix,;t t ! s,@program_transform_name@,$program_transform_name,;t t ! s,@bindir@,$bindir,;t t ! s,@sbindir@,$sbindir,;t t ! s,@libexecdir@,$libexecdir,;t t ! s,@datadir@,$datadir,;t t ! s,@sysconfdir@,$sysconfdir,;t t ! s,@sharedstatedir@,$sharedstatedir,;t t ! s,@localstatedir@,$localstatedir,;t t ! s,@libdir@,$libdir,;t t ! s,@includedir@,$includedir,;t t ! s,@oldincludedir@,$oldincludedir,;t t ! s,@infodir@,$infodir,;t t ! s,@mandir@,$mandir,;t t ! s,@build_alias@,$build_alias,;t t ! s,@host_alias@,$host_alias,;t t ! s,@target_alias@,$target_alias,;t t ! s,@DEFS@,$DEFS,;t t ! s,@ECHO_C@,$ECHO_C,;t t ! s,@ECHO_N@,$ECHO_N,;t t ! s,@ECHO_T@,$ECHO_T,;t t ! s,@LIBS@,$LIBS,;t t ! s,@INSTALL_PROGRAM@,$INSTALL_PROGRAM,;t t ! s,@INSTALL_SCRIPT@,$INSTALL_SCRIPT,;t t ! s,@INSTALL_DATA@,$INSTALL_DATA,;t t ! s,@CYGPATH_W@,$CYGPATH_W,;t t ! s,@PACKAGE@,$PACKAGE,;t t ! s,@VERSION@,$VERSION,;t t ! s,@ACLOCAL@,$ACLOCAL,;t t ! s,@AUTOCONF@,$AUTOCONF,;t t ! s,@AUTOMAKE@,$AUTOMAKE,;t t ! s,@AUTOHEADER@,$AUTOHEADER,;t t ! s,@MAKEINFO@,$MAKEINFO,;t t ! s,@install_sh@,$install_sh,;t t ! s,@STRIP@,$STRIP,;t t ! s,@ac_ct_STRIP@,$ac_ct_STRIP,;t t ! s,@INSTALL_STRIP_PROGRAM@,$INSTALL_STRIP_PROGRAM,;t t ! s,@mkdir_p@,$mkdir_p,;t t ! s,@AWK@,$AWK,;t t ! s,@SET_MAKE@,$SET_MAKE,;t t ! s,@am__leading_dot@,$am__leading_dot,;t t ! s,@AMTAR@,$AMTAR,;t t ! s,@am__tar@,$am__tar,;t t ! s,@am__untar@,$am__untar,;t t ! s,@MAINTAINER_MODE_TRUE@,$MAINTAINER_MODE_TRUE,;t t ! s,@MAINTAINER_MODE_FALSE@,$MAINTAINER_MODE_FALSE,;t t ! s,@MAINT@,$MAINT,;t t ! s,@GSL_LT_VERSION@,$GSL_LT_VERSION,;t t ! s,@GSL_LT_CBLAS_VERSION@,$GSL_LT_CBLAS_VERSION,;t t ! s,@RELEASED@,$RELEASED,;t t ! s,@build@,$build,;t t ! s,@build_cpu@,$build_cpu,;t t ! s,@build_vendor@,$build_vendor,;t t ! s,@build_os@,$build_os,;t t ! s,@host@,$host,;t t ! s,@host_cpu@,$host_cpu,;t t ! s,@host_vendor@,$host_vendor,;t t ! s,@host_os@,$host_os,;t t ! s,@CC@,$CC,;t t ! s,@CFLAGS@,$CFLAGS,;t t ! s,@LDFLAGS@,$LDFLAGS,;t t ! s,@CPPFLAGS@,$CPPFLAGS,;t t ! s,@ac_ct_CC@,$ac_ct_CC,;t t ! s,@EXEEXT@,$EXEEXT,;t t ! s,@OBJEXT@,$OBJEXT,;t t ! s,@CPP@,$CPP,;t t ! s,@LN_S@,$LN_S,;t t ! s,@EGREP@,$EGREP,;t t ! s,@ECHO@,$ECHO,;t t ! s,@AR@,$AR,;t t ! s,@ac_ct_AR@,$ac_ct_AR,;t t ! s,@RANLIB@,$RANLIB,;t t ! s,@ac_ct_RANLIB@,$ac_ct_RANLIB,;t t ! s,@LIBTOOL@,$LIBTOOL,;t t ! s,@GSL_CFLAGS@,$GSL_CFLAGS,;t t ! s,@GSL_LIBS@,$GSL_LIBS,;t t ! s,@HAVE_INLINE@,$HAVE_INLINE,;t t ! s,@LIBOBJS@,$LIBOBJS,;t t ! s,@HAVE_PRINTF_LONGDOUBLE@,$HAVE_PRINTF_LONGDOUBLE,;t t ! s,@HAVE_EXTENDED_PRECISION_REGISTERS@,$HAVE_EXTENDED_PRECISION_REGISTERS,;t t ! s,@HAVE_GNUSPARC_IEEE_INTERFACE@,$HAVE_GNUSPARC_IEEE_INTERFACE,;t t ! s,@HAVE_GNUM68K_IEEE_INTERFACE@,$HAVE_GNUM68K_IEEE_INTERFACE,;t t ! s,@HAVE_GNUPPC_IEEE_INTERFACE@,$HAVE_GNUPPC_IEEE_INTERFACE,;t t ! s,@HAVE_GNUX86_IEEE_INTERFACE@,$HAVE_GNUX86_IEEE_INTERFACE,;t t ! s,@HAVE_SUNOS4_IEEE_INTERFACE@,$HAVE_SUNOS4_IEEE_INTERFACE,;t t ! s,@HAVE_SOLARIS_IEEE_INTERFACE@,$HAVE_SOLARIS_IEEE_INTERFACE,;t t ! s,@HAVE_HPUX11_IEEE_INTERFACE@,$HAVE_HPUX11_IEEE_INTERFACE,;t t ! s,@HAVE_HPUX_IEEE_INTERFACE@,$HAVE_HPUX_IEEE_INTERFACE,;t t ! s,@HAVE_TRU64_IEEE_INTERFACE@,$HAVE_TRU64_IEEE_INTERFACE,;t t ! s,@HAVE_IRIX_IEEE_INTERFACE@,$HAVE_IRIX_IEEE_INTERFACE,;t t ! s,@HAVE_AIX_IEEE_INTERFACE@,$HAVE_AIX_IEEE_INTERFACE,;t t ! s,@HAVE_FREEBSD_IEEE_INTERFACE@,$HAVE_FREEBSD_IEEE_INTERFACE,;t t ! s,@HAVE_OS2EMX_IEEE_INTERFACE@,$HAVE_OS2EMX_IEEE_INTERFACE,;t t ! s,@HAVE_NETBSD_IEEE_INTERFACE@,$HAVE_NETBSD_IEEE_INTERFACE,;t t ! s,@HAVE_OPENBSD_IEEE_INTERFACE@,$HAVE_OPENBSD_IEEE_INTERFACE,;t t ! s,@HAVE_DARWIN_IEEE_INTERFACE@,$HAVE_DARWIN_IEEE_INTERFACE,;t t ! s,@HAVE_DARWIN86_IEEE_INTERFACE@,$HAVE_DARWIN86_IEEE_INTERFACE,;t t ! s,@HAVE_IEEE_COMPARISONS@,$HAVE_IEEE_COMPARISONS,;t t ! s,@HAVE_IEEE_DENORMALS@,$HAVE_IEEE_DENORMALS,;t t ! s,@LTLIBOBJS@,$LTLIBOBJS,;t t ! CEOF ! ! _ACEOF ! ! cat >>$CONFIG_STATUS <<\_ACEOF ! # Split the substitutions into bite-sized pieces for seds with ! # small command number limits, like on Digital OSF/1 and HP-UX. ! ac_max_sed_lines=48 ! ac_sed_frag=1 # Number of current file. ! ac_beg=1 # First line for current file. ! ac_end=$ac_max_sed_lines # Line after last line for current file. ! ac_more_lines=: ! ac_sed_cmds= ! while $ac_more_lines; do ! if test $ac_beg -gt 1; then ! sed "1,${ac_beg}d; ${ac_end}q" $tmp/subs.sed >$tmp/subs.frag ! else ! sed "${ac_end}q" $tmp/subs.sed >$tmp/subs.frag ! fi ! if test ! -s $tmp/subs.frag; then ! ac_more_lines=false ! else ! # The purpose of the label and of the branching condition is to ! # speed up the sed processing (if there are no `@' at all, there ! # is no need to browse any of the substitutions). ! # These are the two extra sed commands mentioned above. ! (echo ':t ! /@[a-zA-Z_][a-zA-Z_0-9]*@/!b' && cat $tmp/subs.frag) >$tmp/subs-$ac_sed_frag.sed ! if test -z "$ac_sed_cmds"; then ! ac_sed_cmds="sed -f $tmp/subs-$ac_sed_frag.sed" ! else ! ac_sed_cmds="$ac_sed_cmds | sed -f $tmp/subs-$ac_sed_frag.sed" ! fi ! ac_sed_frag=`expr $ac_sed_frag + 1` ! ac_beg=$ac_end ! ac_end=`expr $ac_end + $ac_max_sed_lines` ! fi ! done ! if test -z "$ac_sed_cmds"; then ! ac_sed_cmds=cat fi ! fi # test -n "$CONFIG_FILES" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF ! for ac_file in : $CONFIG_FILES; do test "x$ac_file" = x: && continue ! # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". ! case $ac_file in ! - | *:- | *:-:* ) # input from stdin ! cat >$tmp/stdin ! ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` ! ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; ! *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` ! ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; ! * ) ac_file_in=$ac_file.in ;; esac ! # Compute @srcdir@, @top_srcdir@, and @INSTALL@ for subdirectories. ! ac_dir=`(dirname "$ac_file") 2>/dev/null || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ ! X"$ac_file" : 'X\(/\)' \| \ ! . : '\(.\)' 2>/dev/null || echo X"$ac_file" | ! sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } ! /^X\(\/\/\)[^/].*/{ s//\1/; q; } ! /^X\(\/\/\)$/{ s//\1/; q; } ! /^X\(\/\).*/{ s//\1/; q; } ! s/.*/./; q'` ! { if $as_mkdir_p; then ! mkdir -p "$ac_dir" ! else ! as_dir="$ac_dir" as_dirs= ! while test ! -d "$as_dir"; do ! as_dirs="$as_dir $as_dirs" ! as_dir=`(dirname "$as_dir") 2>/dev/null || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ ! X"$as_dir" : 'X\(/\)' \| \ ! . : '\(.\)' 2>/dev/null || echo X"$as_dir" | ! sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } ! /^X\(\/\/\)[^/].*/{ s//\1/; q; } ! /^X\(\/\/\)$/{ s//\1/; q; } ! /^X\(\/\).*/{ s//\1/; q; } ! s/.*/./; q'` done ! test ! -n "$as_dirs" || mkdir $as_dirs ! fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5 ! echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;} { (exit 1); exit 1; }; }; } - ac_builddir=. ! if test "$ac_dir" != .; then ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` ! # A "../" for each directory in $ac_dir_suffix. ! ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'` ! else ! ac_dir_suffix= ac_top_builddir= ! fi case $srcdir in ! .) # No --srcdir option. We are building in place. ac_srcdir=. ! if test -z "$ac_top_builddir"; then ! ac_top_srcdir=. ! else ! ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'` ! fi ;; ! [\\/]* | ?:[\\/]* ) # Absolute path. ac_srcdir=$srcdir$ac_dir_suffix; ! ac_top_srcdir=$srcdir ;; ! *) # Relative path. ! ac_srcdir=$ac_top_builddir$srcdir$ac_dir_suffix ! ac_top_srcdir=$ac_top_builddir$srcdir ;; esac - # Do not use `cd foo && pwd` to compute absolute paths, because - # the directories may not exist. - case `pwd` in - .) ac_abs_builddir="$ac_dir";; - *) - case "$ac_dir" in - .) ac_abs_builddir=`pwd`;; - [\\/]* | ?:[\\/]* ) ac_abs_builddir="$ac_dir";; - *) ac_abs_builddir=`pwd`/"$ac_dir";; - esac;; - esac - case $ac_abs_builddir in - .) ac_abs_top_builddir=${ac_top_builddir}.;; - *) - case ${ac_top_builddir}. in - .) ac_abs_top_builddir=$ac_abs_builddir;; - [\\/]* | ?:[\\/]* ) ac_abs_top_builddir=${ac_top_builddir}.;; - *) ac_abs_top_builddir=$ac_abs_builddir/${ac_top_builddir}.;; - esac;; - esac - case $ac_abs_builddir in - .) ac_abs_srcdir=$ac_srcdir;; - *) - case $ac_srcdir in - .) ac_abs_srcdir=$ac_abs_builddir;; - [\\/]* | ?:[\\/]* ) ac_abs_srcdir=$ac_srcdir;; - *) ac_abs_srcdir=$ac_abs_builddir/$ac_srcdir;; - esac;; - esac - case $ac_abs_builddir in - .) ac_abs_top_srcdir=$ac_top_srcdir;; - *) - case $ac_top_srcdir in - .) ac_abs_top_srcdir=$ac_abs_builddir;; - [\\/]* | ?:[\\/]* ) ac_abs_top_srcdir=$ac_top_srcdir;; - *) ac_abs_top_srcdir=$ac_abs_builddir/$ac_top_srcdir;; - esac;; - esac case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; ! *) ac_INSTALL=$ac_top_builddir$INSTALL ;; esac ! if test x"$ac_file" != x-; then ! { echo "$as_me:$LINENO: creating $ac_file" >&5 ! echo "$as_me: creating $ac_file" >&6;} ! rm -f "$ac_file" ! fi ! # Let's still pretend it is `configure' which instantiates (i.e., don't ! # use $as_me), people would be surprised to read: ! # /* config.h. Generated by config.status. */ ! if test x"$ac_file" = x-; then ! configure_input= ! else ! configure_input="$ac_file. " ! fi ! configure_input=$configure_input"Generated from `echo $ac_file_in | ! sed 's,.*/,,'` by configure." ! ! # First look for the input files in the build tree, otherwise in the ! # src tree. ! ac_file_inputs=`IFS=: ! for f in $ac_file_in; do ! case $f in ! -) echo $tmp/stdin ;; ! [\\/$]*) ! # Absolute (can't be DOS-style, as IFS=:) ! test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 ! echo "$as_me: error: cannot find input file: $f" >&2;} ! { (exit 1); exit 1; }; } ! echo "$f";; ! *) # Relative ! if test -f "$f"; then ! # Build tree ! echo "$f" ! elif test -f "$srcdir/$f"; then ! # Source tree ! echo "$srcdir/$f" ! else ! # /dev/null tree ! { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 ! echo "$as_me: error: cannot find input file: $f" >&2;} ! { (exit 1); exit 1; }; } ! fi;; ! esac ! done` || { (exit 1); exit 1; } _ACEOF cat >>$CONFIG_STATUS <<_ACEOF sed "$ac_vpsub $extrasub --- 13142,13612 ---- fi # Have a temporary directory for convenience. Make it in the build tree ! # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. ! # Hook for its removal unless debugging. ! # Note that there is a small window in which the directory will not be cleaned: ! # after its creation but before its name has been assigned to `$tmp'. $debug || { ! tmp= ! trap 'exit_status=$? ! { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status ! ' 0 trap '{ (exit 1); exit 1; }' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { ! tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" } || { ! tmp=./conf$$-$RANDOM ! (umask 077 && mkdir "$tmp") } || { echo "$me: cannot create a temporary directory in ." >&2 { (exit 1); exit 1; } } # ! # Set up the sed scripts for CONFIG_FILES section. # # No need to generate the scripts if there are no CONFIG_FILES. # This happens for instance when ./config.status config.h ! if test -n "$CONFIG_FILES"; then ! ! _ACEOF ! ! ! ! ac_delim='%!_!# ' ! for ac_last_try in false false false false false :; do ! cat >conf$$subs.sed <<_ACEOF ! SHELL!$SHELL$ac_delim ! PATH_SEPARATOR!$PATH_SEPARATOR$ac_delim ! PACKAGE_NAME!$PACKAGE_NAME$ac_delim ! PACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim ! PACKAGE_VERSION!$PACKAGE_VERSION$ac_delim ! PACKAGE_STRING!$PACKAGE_STRING$ac_delim ! PACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim ! exec_prefix!$exec_prefix$ac_delim ! prefix!$prefix$ac_delim ! program_transform_name!$program_transform_name$ac_delim ! bindir!$bindir$ac_delim ! sbindir!$sbindir$ac_delim ! libexecdir!$libexecdir$ac_delim ! datarootdir!$datarootdir$ac_delim ! datadir!$datadir$ac_delim ! sysconfdir!$sysconfdir$ac_delim ! sharedstatedir!$sharedstatedir$ac_delim ! localstatedir!$localstatedir$ac_delim ! includedir!$includedir$ac_delim ! oldincludedir!$oldincludedir$ac_delim ! docdir!$docdir$ac_delim ! infodir!$infodir$ac_delim ! htmldir!$htmldir$ac_delim ! dvidir!$dvidir$ac_delim ! pdfdir!$pdfdir$ac_delim ! psdir!$psdir$ac_delim ! libdir!$libdir$ac_delim ! localedir!$localedir$ac_delim ! mandir!$mandir$ac_delim ! DEFS!$DEFS$ac_delim ! ECHO_C!$ECHO_C$ac_delim ! ECHO_N!$ECHO_N$ac_delim ! ECHO_T!$ECHO_T$ac_delim ! LIBS!$LIBS$ac_delim ! build_alias!$build_alias$ac_delim ! host_alias!$host_alias$ac_delim ! target_alias!$target_alias$ac_delim ! INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim ! INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim ! INSTALL_DATA!$INSTALL_DATA$ac_delim ! am__isrc!$am__isrc$ac_delim ! CYGPATH_W!$CYGPATH_W$ac_delim ! PACKAGE!$PACKAGE$ac_delim ! VERSION!$VERSION$ac_delim ! ACLOCAL!$ACLOCAL$ac_delim ! AUTOCONF!$AUTOCONF$ac_delim ! AUTOMAKE!$AUTOMAKE$ac_delim ! AUTOHEADER!$AUTOHEADER$ac_delim ! MAKEINFO!$MAKEINFO$ac_delim ! install_sh!$install_sh$ac_delim ! STRIP!$STRIP$ac_delim ! INSTALL_STRIP_PROGRAM!$INSTALL_STRIP_PROGRAM$ac_delim ! mkdir_p!$mkdir_p$ac_delim ! AWK!$AWK$ac_delim ! SET_MAKE!$SET_MAKE$ac_delim ! am__leading_dot!$am__leading_dot$ac_delim ! AMTAR!$AMTAR$ac_delim ! am__tar!$am__tar$ac_delim ! am__untar!$am__untar$ac_delim ! MAINTAINER_MODE_TRUE!$MAINTAINER_MODE_TRUE$ac_delim ! MAINTAINER_MODE_FALSE!$MAINTAINER_MODE_FALSE$ac_delim ! MAINT!$MAINT$ac_delim ! GSL_LT_VERSION!$GSL_LT_VERSION$ac_delim ! GSL_LT_CBLAS_VERSION!$GSL_LT_CBLAS_VERSION$ac_delim ! build!$build$ac_delim ! build_cpu!$build_cpu$ac_delim ! build_vendor!$build_vendor$ac_delim ! build_os!$build_os$ac_delim ! host!$host$ac_delim ! host_cpu!$host_cpu$ac_delim ! host_vendor!$host_vendor$ac_delim ! host_os!$host_os$ac_delim ! CC!$CC$ac_delim ! CFLAGS!$CFLAGS$ac_delim ! LDFLAGS!$LDFLAGS$ac_delim ! CPPFLAGS!$CPPFLAGS$ac_delim ! ac_ct_CC!$ac_ct_CC$ac_delim ! EXEEXT!$EXEEXT$ac_delim ! OBJEXT!$OBJEXT$ac_delim ! CPP!$CPP$ac_delim ! LN_S!$LN_S$ac_delim ! SED!$SED$ac_delim ! GREP!$GREP$ac_delim ! EGREP!$EGREP$ac_delim ! ECHO!$ECHO$ac_delim ! AR!$AR$ac_delim ! RANLIB!$RANLIB$ac_delim ! LIBTOOL!$LIBTOOL$ac_delim ! GSL_CFLAGS!$GSL_CFLAGS$ac_delim ! GSL_LIBS!$GSL_LIBS$ac_delim ! MINGW32_HOST_TRUE!$MINGW32_HOST_TRUE$ac_delim ! MINGW32_HOST_FALSE!$MINGW32_HOST_FALSE$ac_delim ! LIBOBJS!$LIBOBJS$ac_delim ! HAVE_GNUSPARC_IEEE_INTERFACE!$HAVE_GNUSPARC_IEEE_INTERFACE$ac_delim ! HAVE_GNUM68K_IEEE_INTERFACE!$HAVE_GNUM68K_IEEE_INTERFACE$ac_delim ! HAVE_GNUPPC_IEEE_INTERFACE!$HAVE_GNUPPC_IEEE_INTERFACE$ac_delim ! HAVE_GNUX86_IEEE_INTERFACE!$HAVE_GNUX86_IEEE_INTERFACE$ac_delim ! _ACEOF ! ! if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then ! break ! elif $ac_last_try; then ! { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 ! echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} ! { (exit 1); exit 1; }; } ! else ! ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi ! done ! ! ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` ! if test -n "$ac_eof"; then ! ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` ! ac_eof=`expr $ac_eof + 1` ! fi + cat >>$CONFIG_STATUS <<_ACEOF + cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof + /@[a-zA-Z_][a-zA-Z_0-9]*@/!b + _ACEOF + sed ' + s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g + s/^/s,@/; s/!/@,|#_!!_#|/ + :n + t n + s/'"$ac_delim"'$/,g/; t + s/$/\\/; p + N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n + ' >>$CONFIG_STATUS >$CONFIG_STATUS <<_ACEOF + CEOF$ac_eof _ACEOF + + + ac_delim='%!_!# ' + for ac_last_try in false false false false false :; do + cat >conf$$subs.sed <<_ACEOF + HAVE_SUNOS4_IEEE_INTERFACE!$HAVE_SUNOS4_IEEE_INTERFACE$ac_delim + HAVE_SOLARIS_IEEE_INTERFACE!$HAVE_SOLARIS_IEEE_INTERFACE$ac_delim + HAVE_HPUX11_IEEE_INTERFACE!$HAVE_HPUX11_IEEE_INTERFACE$ac_delim + HAVE_HPUX_IEEE_INTERFACE!$HAVE_HPUX_IEEE_INTERFACE$ac_delim + HAVE_TRU64_IEEE_INTERFACE!$HAVE_TRU64_IEEE_INTERFACE$ac_delim + HAVE_IRIX_IEEE_INTERFACE!$HAVE_IRIX_IEEE_INTERFACE$ac_delim + HAVE_AIX_IEEE_INTERFACE!$HAVE_AIX_IEEE_INTERFACE$ac_delim + HAVE_FREEBSD_IEEE_INTERFACE!$HAVE_FREEBSD_IEEE_INTERFACE$ac_delim + HAVE_OS2EMX_IEEE_INTERFACE!$HAVE_OS2EMX_IEEE_INTERFACE$ac_delim + HAVE_NETBSD_IEEE_INTERFACE!$HAVE_NETBSD_IEEE_INTERFACE$ac_delim + HAVE_OPENBSD_IEEE_INTERFACE!$HAVE_OPENBSD_IEEE_INTERFACE$ac_delim + HAVE_DARWIN_IEEE_INTERFACE!$HAVE_DARWIN_IEEE_INTERFACE$ac_delim + HAVE_DARWIN86_IEEE_INTERFACE!$HAVE_DARWIN86_IEEE_INTERFACE$ac_delim + LTLIBOBJS!$LTLIBOBJS$ac_delim + _ACEOF + + if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 14; then + break + elif $ac_last_try; then + { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 + echo "$as_me: error: could not make $CONFIG_STATUS" >&2;} + { (exit 1); exit 1; }; } + else + ac_delim="$ac_delim!$ac_delim _$ac_delim!! " + fi + done + + ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` + if test -n "$ac_eof"; then + ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` + ac_eof=`expr $ac_eof + 1` + fi + + cat >>$CONFIG_STATUS <<_ACEOF + cat >"\$tmp/subs-2.sed" <<\CEOF$ac_eof + /@[a-zA-Z_][a-zA-Z_0-9]*@/!b end + _ACEOF + sed ' + s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g + s/^/s,@/; s/!/@,|#_!!_#|/ + :n + t n + s/'"$ac_delim"'$/,g/; t + s/$/\\/; p + N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n + ' >>$CONFIG_STATUS >$CONFIG_STATUS <<_ACEOF + :end + s/|#_!!_#|//g + CEOF$ac_eof + _ACEOF + + + # VPATH may cause trouble with some makes, so we remove $(srcdir), + # ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and + # trailing colons and then remove the whole line if VPATH becomes empty + # (actually we leave an empty line to preserve line numbers). + if test "x$srcdir" = x.; then + ac_vpsub='/^[ ]*VPATH[ ]*=/{ + s/:*\$(srcdir):*/:/ + s/:*\${srcdir}:*/:/ + s/:*@srcdir@:*/:/ + s/^\([^=]*=[ ]*\):*/\1/ + s/:*$// + s/^[^=]*=[ ]*$// + }' + fi + cat >>$CONFIG_STATUS <<\_ACEOF ! fi # test -n "$CONFIG_FILES" ! ! ! for ac_tag in :F $CONFIG_FILES :H $CONFIG_HEADERS ! do ! case $ac_tag in ! :[FHLC]) ac_mode=$ac_tag; continue;; ! esac ! case $ac_mode$ac_tag in ! :[FHL]*:*);; ! :L* | :C*:*) { { echo "$as_me:$LINENO: error: Invalid tag $ac_tag." >&5 ! echo "$as_me: error: Invalid tag $ac_tag." >&2;} ! { (exit 1); exit 1; }; };; ! :[FH]-) ac_tag=-:-;; ! :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; ! esac ! ac_save_IFS=$IFS ! IFS=: ! set x $ac_tag ! IFS=$ac_save_IFS ! shift ! ac_file=$1 ! shift ! ! case $ac_mode in ! :L) ac_source=$1;; ! :[FH]) ! ac_file_inputs= ! for ac_f ! do ! case $ac_f in ! -) ac_f="$tmp/stdin";; ! *) # Look for the file first in the build tree, then in the source tree ! # (if the path is not absolute). The absolute path cannot be DOS-style, ! # because $ac_f cannot contain `:'. ! test -f "$ac_f" || ! case $ac_f in ! [\\/$]*) false;; ! *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; ! esac || ! { { echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5 ! echo "$as_me: error: cannot find input file: $ac_f" >&2;} ! { (exit 1); exit 1; }; };; ! esac ! ac_file_inputs="$ac_file_inputs $ac_f" ! done ! ! # Let's still pretend it is `configure' which instantiates (i.e., don't ! # use $as_me), people would be surprised to read: ! # /* config.h. Generated by config.status. */ ! configure_input="Generated from "`IFS=: ! echo $* | sed 's|^[^:]*/||;s|:[^:]*/|, |g'`" by configure." ! if test x"$ac_file" != x-; then ! configure_input="$ac_file. $configure_input" ! { echo "$as_me:$LINENO: creating $ac_file" >&5 ! echo "$as_me: creating $ac_file" >&6;} ! fi ! ! case $ac_tag in ! *:-:* | *:-) cat >"$tmp/stdin";; ! esac ! ;; esac ! ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ ! X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || echo X"$ac_file" | ! sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ ! s//\1/ ! q ! } ! /^X\(\/\/\)[^/].*/{ ! s//\1/ ! q ! } ! /^X\(\/\/\)$/{ ! s//\1/ ! q ! } ! /^X\(\/\).*/{ ! s//\1/ ! q ! } ! s/.*/./; q'` ! { as_dir="$ac_dir" ! case $as_dir in #( ! -*) as_dir=./$as_dir;; ! esac ! test -d "$as_dir" || { $as_mkdir_p && mkdir -p "$as_dir"; } || { as_dirs= ! while :; do ! case $as_dir in #( ! *\'*) as_qdir=`echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #( ! *) as_qdir=$as_dir;; ! esac ! as_dirs="'$as_qdir' $as_dirs" ! as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ ! X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || echo X"$as_dir" | ! sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ ! s//\1/ ! q ! } ! /^X\(\/\/\)[^/].*/{ ! s//\1/ ! q ! } ! /^X\(\/\/\)$/{ ! s//\1/ ! q ! } ! /^X\(\/\).*/{ ! s//\1/ ! q ! } ! s/.*/./; q'` ! test -d "$as_dir" && break done ! test -z "$as_dirs" || eval "mkdir $as_dirs" ! } || test -d "$as_dir" || { { echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5 ! echo "$as_me: error: cannot create directory $as_dir" >&2;} { (exit 1); exit 1; }; }; } ac_builddir=. ! case "$ac_dir" in ! .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; ! *) ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'` ! # A ".." for each directory in $ac_dir_suffix. ! ac_top_builddir_sub=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,/..,g;s,/,,'` ! case $ac_top_builddir_sub in ! "") ac_top_builddir_sub=. ac_top_build_prefix= ;; ! *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; ! esac ;; ! esac ! ac_abs_top_builddir=$ac_pwd ! ac_abs_builddir=$ac_pwd$ac_dir_suffix ! # for backward compatibility: ! ac_top_builddir=$ac_top_build_prefix case $srcdir in ! .) # We are building in place. ac_srcdir=. ! ac_top_srcdir=$ac_top_builddir_sub ! ac_abs_top_srcdir=$ac_pwd ;; ! [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ! ac_top_srcdir=$srcdir ! ac_abs_top_srcdir=$srcdir ;; ! *) # Relative name. ! ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ! ac_top_srcdir=$ac_top_build_prefix$srcdir ! ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac + ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix + case $ac_mode in + :F) + # + # CONFIG_FILE + # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; ! *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac + ac_MKDIR_P=$MKDIR_P + case $MKDIR_P in + [\\/$]* | ?:[\\/]* ) ;; + */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; + esac + _ACEOF ! cat >>$CONFIG_STATUS <<\_ACEOF ! # If the template does not know about datarootdir, expand it. ! # FIXME: This hack should be removed a few years after 2.60. ! ac_datarootdir_hack=; ac_datarootdir_seen= ! ! case `sed -n '/datarootdir/ { ! p ! q ! } ! /@datadir@/p ! /@docdir@/p ! /@infodir@/p ! /@localedir@/p ! /@mandir@/p ! ' $ac_file_inputs` in ! *datarootdir*) ac_datarootdir_seen=yes;; ! *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) ! { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 ! echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} ! _ACEOF ! cat >>$CONFIG_STATUS <<_ACEOF ! ac_datarootdir_hack=' ! s&@datadir@&$datadir&g ! s&@docdir@&$docdir&g ! s&@infodir@&$infodir&g ! s&@localedir@&$localedir&g ! s&@mandir@&$mandir&g ! s&\\\${datarootdir}&$datarootdir&g' ;; ! esac _ACEOF + + # Neutralize VPATH when `$srcdir' = `.'. + # Shell code in configure.ac might set extrasub. + # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF sed "$ac_vpsub $extrasub *************** *** 12725,12972 **** cat >>$CONFIG_STATUS <<\_ACEOF :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b ! s,@configure_input@,$configure_input,;t t ! s,@srcdir@,$ac_srcdir,;t t ! s,@abs_srcdir@,$ac_abs_srcdir,;t t ! s,@top_srcdir@,$ac_top_srcdir,;t t ! s,@abs_top_srcdir@,$ac_abs_top_srcdir,;t t ! s,@builddir@,$ac_builddir,;t t ! s,@abs_builddir@,$ac_abs_builddir,;t t ! s,@top_builddir@,$ac_top_builddir,;t t ! s,@abs_top_builddir@,$ac_abs_top_builddir,;t t ! s,@INSTALL@,$ac_INSTALL,;t t ! " $ac_file_inputs | (eval "$ac_sed_cmds") >$tmp/out ! rm -f $tmp/stdin ! if test x"$ac_file" != x-; then ! mv $tmp/out $ac_file ! else ! cat $tmp/out ! rm -f $tmp/out ! fi ! ! done ! _ACEOF ! cat >>$CONFIG_STATUS <<\_ACEOF ! ! # ! # CONFIG_HEADER section. ! # ! ! # These sed commands are passed to sed as "A NAME B NAME C VALUE D", where ! # NAME is the cpp macro being defined and VALUE is the value it is being given. ! # ! # ac_d sets the value in "#define NAME VALUE" lines. ! ac_dA='s,^\([ ]*\)#\([ ]*define[ ][ ]*\)' ! ac_dB='[ ].*$,\1#\2' ! ac_dC=' ' ! ac_dD=',;t' ! # ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE". ! ac_uA='s,^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)' ! ac_uB='$,\1#\2define\3' ! ac_uC=' ' ! ac_uD=',;t' ! for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue ! # Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in". case $ac_file in ! - | *:- | *:-:* ) # input from stdin ! cat >$tmp/stdin ! ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` ! ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; ! *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'` ! ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;; ! * ) ac_file_in=$ac_file.in ;; esac ! ! test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5 ! echo "$as_me: creating $ac_file" >&6;} ! ! # First look for the input files in the build tree, otherwise in the ! # src tree. ! ac_file_inputs=`IFS=: ! for f in $ac_file_in; do ! case $f in ! -) echo $tmp/stdin ;; ! [\\/$]*) ! # Absolute (can't be DOS-style, as IFS=:) ! test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 ! echo "$as_me: error: cannot find input file: $f" >&2;} ! { (exit 1); exit 1; }; } ! # Do quote $f, to prevent DOS paths from being IFS'd. ! echo "$f";; ! *) # Relative ! if test -f "$f"; then ! # Build tree ! echo "$f" ! elif test -f "$srcdir/$f"; then ! # Source tree ! echo "$srcdir/$f" ! else ! # /dev/null tree ! { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5 ! echo "$as_me: error: cannot find input file: $f" >&2;} ! { (exit 1); exit 1; }; } ! fi;; ! esac ! done` || { (exit 1); exit 1; } ! # Remove the trailing spaces. ! sed 's/[ ]*$//' $ac_file_inputs >$tmp/in ! _ACEOF ! # Transform confdefs.h into two sed scripts, `conftest.defines' and ! # `conftest.undefs', that substitutes the proper values into ! # config.h.in to produce config.h. The first handles `#define' ! # templates, and the second `#undef' templates. ! # And first: Protect against being on the right side of a sed subst in ! # config.status. Protect against being in an unquoted here document ! # in config.status. ! rm -f conftest.defines conftest.undefs ! # Using a here document instead of a string reduces the quoting nightmare. ! # Putting comments in sed scripts is not portable. ! # ! # `end' is used to avoid that the second main sed command (meant for ! # 0-ary CPP macros) applies to n-ary macro definitions. ! # See the Autoconf documentation for `clear'. ! cat >confdef2sed.sed <<\_ACEOF ! s/[\\&,]/\\&/g ! s,[\\$`],\\&,g ! t clear ! : clear ! s,^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*\)\(([^)]*)\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1\2${ac_dC}\3${ac_dD},gp ! t end ! s,^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp ! : end ! _ACEOF ! # If some macros were called several times there might be several times ! # the same #defines, which is useless. Nevertheless, we may not want to ! # sort them, since we want the *last* AC-DEFINE to be honored. ! uniq confdefs.h | sed -n -f confdef2sed.sed >conftest.defines ! sed 's/ac_d/ac_u/g' conftest.defines >conftest.undefs ! rm -f confdef2sed.sed ! # This sed command replaces #undef with comments. This is necessary, for # example, in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. ! cat >>conftest.undefs <<\_ACEOF ! s,^[ ]*#[ ]*undef[ ][ ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */, _ACEOF ! ! # Break up conftest.defines because some shells have a limit on the size ! # of here documents, and old seds have small limits too (100 cmds). ! echo ' # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS ! echo ' if grep "^[ ]*#[ ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS ! echo ' # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS ! echo ' :' >>$CONFIG_STATUS ! rm -f conftest.tail ! while grep . conftest.defines >/dev/null ! do ! # Write a limited-size here document to $tmp/defines.sed. ! echo ' cat >$tmp/defines.sed <>$CONFIG_STATUS ! # Speed up: don't consider the non `#define' lines. ! echo '/^[ ]*#[ ]*define/!b' >>$CONFIG_STATUS ! # Work around the forget-to-reset-the-flag bug. ! echo 't clr' >>$CONFIG_STATUS ! echo ': clr' >>$CONFIG_STATUS ! sed ${ac_max_here_lines}q conftest.defines >>$CONFIG_STATUS echo 'CEOF ! sed -f $tmp/defines.sed $tmp/in >$tmp/out ! rm -f $tmp/in ! mv $tmp/out $tmp/in ! ' >>$CONFIG_STATUS ! sed 1,${ac_max_here_lines}d conftest.defines >conftest.tail rm -f conftest.defines mv conftest.tail conftest.defines done ! rm -f conftest.defines ! echo ' fi # grep' >>$CONFIG_STATUS ! echo >>$CONFIG_STATUS ! ! # Break up conftest.undefs because some shells have a limit on the size ! # of here documents, and old seds have small limits too (100 cmds). ! echo ' # Handle all the #undef templates' >>$CONFIG_STATUS ! rm -f conftest.tail ! while grep . conftest.undefs >/dev/null ! do ! # Write a limited-size here document to $tmp/undefs.sed. ! echo ' cat >$tmp/undefs.sed <>$CONFIG_STATUS ! # Speed up: don't consider the non `#undef' ! echo '/^[ ]*#[ ]*undef/!b' >>$CONFIG_STATUS ! # Work around the forget-to-reset-the-flag bug. ! echo 't clr' >>$CONFIG_STATUS ! echo ': clr' >>$CONFIG_STATUS ! sed ${ac_max_here_lines}q conftest.undefs >>$CONFIG_STATUS ! echo 'CEOF ! sed -f $tmp/undefs.sed $tmp/in >$tmp/out ! rm -f $tmp/in ! mv $tmp/out $tmp/in ! ' >>$CONFIG_STATUS ! sed 1,${ac_max_here_lines}d conftest.undefs >conftest.tail ! rm -f conftest.undefs ! mv conftest.tail conftest.undefs ! done ! rm -f conftest.undefs cat >>$CONFIG_STATUS <<\_ACEOF - # Let's still pretend it is `configure' which instantiates (i.e., don't - # use $as_me), people would be surprised to read: - # /* config.h. Generated by config.status. */ - if test x"$ac_file" = x-; then - echo "/* Generated by configure. */" >$tmp/config.h - else - echo "/* $ac_file. Generated by configure. */" >$tmp/config.h - fi - cat $tmp/in >>$tmp/config.h - rm -f $tmp/in if test x"$ac_file" != x-; then ! if diff $ac_file $tmp/config.h >/dev/null 2>&1; then { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 echo "$as_me: $ac_file is unchanged" >&6;} else - ac_dir=`(dirname "$ac_file") 2>/dev/null || - $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$ac_file" : 'X\(//\)[^/]' \| \ - X"$ac_file" : 'X\(//\)$' \| \ - X"$ac_file" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || - echo X"$ac_file" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - { if $as_mkdir_p; then - mkdir -p "$ac_dir" - else - as_dir="$ac_dir" - as_dirs= - while test ! -d "$as_dir"; do - as_dirs="$as_dir $as_dirs" - as_dir=`(dirname "$as_dir") 2>/dev/null || - $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ - X"$as_dir" : 'X\(//\)[^/]' \| \ - X"$as_dir" : 'X\(//\)$' \| \ - X"$as_dir" : 'X\(/\)' \| \ - . : '\(.\)' 2>/dev/null || - echo X"$as_dir" | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } - /^X\(\/\/\)[^/].*/{ s//\1/; q; } - /^X\(\/\/\)$/{ s//\1/; q; } - /^X\(\/\).*/{ s//\1/; q; } - s/.*/./; q'` - done - test ! -n "$as_dirs" || mkdir $as_dirs - fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5 - echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;} - { (exit 1); exit 1; }; }; } - rm -f $ac_file ! mv $tmp/config.h $ac_file fi else ! cat $tmp/config.h ! rm -f $tmp/config.h fi # Compute $ac_file's index in $config_headers. _am_stamp_count=1 for _am_header in $config_headers :; do --- 13614,13744 ---- cat >>$CONFIG_STATUS <<\_ACEOF :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b ! s&@configure_input@&$configure_input&;t t ! s&@top_builddir@&$ac_top_builddir_sub&;t t ! s&@srcdir@&$ac_srcdir&;t t ! s&@abs_srcdir@&$ac_abs_srcdir&;t t ! s&@top_srcdir@&$ac_top_srcdir&;t t ! s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t ! s&@builddir@&$ac_builddir&;t t ! s&@abs_builddir@&$ac_abs_builddir&;t t ! s&@abs_top_builddir@&$ac_abs_top_builddir&;t t ! s&@INSTALL@&$ac_INSTALL&;t t ! s&@MKDIR_P@&$ac_MKDIR_P&;t t ! $ac_datarootdir_hack ! " $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" >$tmp/out ! ! test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && ! { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && ! { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && ! { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir' ! which seems to be undefined. Please make sure it is defined." >&5 ! echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' ! which seems to be undefined. Please make sure it is defined." >&2;} ! rm -f "$tmp/stdin" case $ac_file in ! -) cat "$tmp/out"; rm -f "$tmp/out";; ! *) rm -f "$ac_file"; mv "$tmp/out" $ac_file;; esac ! ;; ! :H) ! # ! # CONFIG_HEADER ! # _ACEOF ! # Transform confdefs.h into a sed script `conftest.defines', that ! # substitutes the proper values into config.h.in to produce config.h. ! rm -f conftest.defines conftest.tail ! # First, append a space to every undef/define line, to ease matching. ! echo 's/$/ /' >conftest.defines ! # Then, protect against being on the right side of a sed subst, or in ! # an unquoted here document, in config.status. If some macros were ! # called several times there might be several #defines for the same ! # symbol, which is useless. But do not sort them, since the last ! # AC_DEFINE must be honored. ! ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* ! # These sed commands are passed to sed as "A NAME B PARAMS C VALUE D", where ! # NAME is the cpp macro being defined, VALUE is the value it is being given. ! # PARAMS is the parameter list in the macro definition--in most cases, it's ! # just an empty string. ! ac_dA='s,^\\([ #]*\\)[^ ]*\\([ ]*' ! ac_dB='\\)[ (].*,\\1define\\2' ! ac_dC=' ' ! ac_dD=' ,' ! ! uniq confdefs.h | ! sed -n ' ! t rset ! :rset ! s/^[ ]*#[ ]*define[ ][ ]*// ! t ok ! d ! :ok ! s/[\\&,]/\\&/g ! s/^\('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/ '"$ac_dA"'\1'"$ac_dB"'\2'"${ac_dC}"'\3'"$ac_dD"'/p ! s/^\('"$ac_word_re"'\)[ ]*\(.*\)/'"$ac_dA"'\1'"$ac_dB$ac_dC"'\2'"$ac_dD"'/p ! ' >>conftest.defines ! # Remove the space that was appended to ease matching. ! # Then replace #undef with comments. This is necessary, for # example, in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. ! # (The regexp can be short, since the line contains either #define or #undef.) ! echo 's/ $// ! s,^[ #]*u.*,/* & */,' >>conftest.defines ! ! # Break up conftest.defines: ! ac_max_sed_lines=50 ! ! # First sed command is: sed -f defines.sed $ac_file_inputs >"$tmp/out1" ! # Second one is: sed -f defines.sed "$tmp/out1" >"$tmp/out2" ! # Third one will be: sed -f defines.sed "$tmp/out2" >"$tmp/out1" ! # et cetera. ! ac_in='$ac_file_inputs' ! ac_out='"$tmp/out1"' ! ac_nxt='"$tmp/out2"' ! ! while : ! do ! # Write a here document: ! cat >>$CONFIG_STATUS <<_ACEOF ! # First, check the format of the line: ! cat >"\$tmp/defines.sed" <<\\CEOF ! /^[ ]*#[ ]*undef[ ][ ]*$ac_word_re[ ]*\$/b def ! /^[ ]*#[ ]*define[ ][ ]*$ac_word_re[( ]/b def ! b ! :def _ACEOF ! sed ${ac_max_sed_lines}q conftest.defines >>$CONFIG_STATUS echo 'CEOF ! sed -f "$tmp/defines.sed"' "$ac_in >$ac_out" >>$CONFIG_STATUS ! ac_in=$ac_out; ac_out=$ac_nxt; ac_nxt=$ac_in ! sed 1,${ac_max_sed_lines}d conftest.defines >conftest.tail ! grep . conftest.tail >/dev/null || break rm -f conftest.defines mv conftest.tail conftest.defines done ! rm -f conftest.defines conftest.tail + echo "ac_result=$ac_in" >>$CONFIG_STATUS cat >>$CONFIG_STATUS <<\_ACEOF if test x"$ac_file" != x-; then ! echo "/* $configure_input */" >"$tmp/config.h" ! cat "$ac_result" >>"$tmp/config.h" ! if diff $ac_file "$tmp/config.h" >/dev/null 2>&1; then { echo "$as_me:$LINENO: $ac_file is unchanged" >&5 echo "$as_me: $ac_file is unchanged" >&6;} else rm -f $ac_file ! mv "$tmp/config.h" $ac_file fi else ! echo "/* $configure_input */" ! cat "$ac_result" fi + rm -f "$tmp/out12" # Compute $ac_file's index in $config_headers. _am_stamp_count=1 for _am_header in $config_headers :; do *************** *** 12977,12998 **** _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done ! echo "timestamp for $ac_file" >`(dirname $ac_file) 2>/dev/null || $as_expr X$ac_file : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X$ac_file : 'X\(//\)[^/]' \| \ X$ac_file : 'X\(//\)$' \| \ ! X$ac_file : 'X\(/\)' \| \ ! . : '\(.\)' 2>/dev/null || echo X$ac_file | ! sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } ! /^X\(\/\/\)[^/].*/{ s//\1/; q; } ! /^X\(\/\/\)$/{ s//\1/; q; } ! /^X\(\/\).*/{ s//\1/; q; } ! s/.*/./; q'`/stamp-h$_am_stamp_count ! done ! _ACEOF - cat >>$CONFIG_STATUS <<\_ACEOF { (exit 0); exit 0; } _ACEOF --- 13749,13784 ---- _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done ! echo "timestamp for $ac_file" >`$as_dirname -- $ac_file || $as_expr X$ac_file : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X$ac_file : 'X\(//\)[^/]' \| \ X$ac_file : 'X\(//\)$' \| \ ! X$ac_file : 'X\(/\)' \| . 2>/dev/null || echo X$ac_file | ! sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ ! s//\1/ ! q ! } ! /^X\(\/\/\)[^/].*/{ ! s//\1/ ! q ! } ! /^X\(\/\/\)$/{ ! s//\1/ ! q ! } ! /^X\(\/\).*/{ ! s//\1/ ! q ! } ! s/.*/./; q'`/stamp-h$_am_stamp_count ! ;; ! ! ! esac ! ! done # for ac_tag { (exit 0); exit 0; } _ACEOF diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/configure.ac gsl-1.10/configure.ac *** gsl-1.9/configure.ac 2007-02-20 13:08:16.000000000 +0000 --- gsl-1.10/configure.ac 2007-09-13 16:41:09.000000000 +0100 *************** *** 1,6 **** dnl Process this file with autoconf to produce a configure script. ! AC_INIT([gsl],[1.9]) AC_CONFIG_SRCDIR(gsl_math.h) AM_INIT_AUTOMAKE([gnu no-dependencies]) --- 1,6 ---- dnl Process this file with autoconf to produce a configure script. ! AC_INIT([gsl],[1.10]) AC_CONFIG_SRCDIR(gsl_math.h) AM_INIT_AUTOMAKE([gnu no-dependencies]) *************** *** 29,41 **** case "$VERSION" in *+) - AC_DEFINE(RELEASED,0) ;; *) ! AC_DEFINE(RELEASED,1) ;; esac - AC_SUBST(RELEASED) dnl things required by automake dnl AC_ARG_PROGRAM --- 29,39 ---- case "$VERSION" in *+) ;; *) ! AC_DEFINE(RELEASED,[],[Defined if this is an official release]) ;; esac dnl things required by automake dnl AC_ARG_PROGRAM *************** *** 62,67 **** --- 60,66 ---- dnl AC_C_CONST AC_C_VOLATILE AC_C_INLINE + AC_C_CHAR_UNSIGNED GSL_CFLAGS="-I$includedir" GSL_LIBS="-L$libdir -lgsl" *************** *** 80,87 **** ]) if test "$ac_cv_c_extern_inline" != no ; then ! AC_DEFINE(HAVE_INLINE,1) ! AC_SUBST(HAVE_INLINE) fi dnl Checks for header files. --- 79,85 ---- ]) if test "$ac_cv_c_extern_inline" != no ; then ! AC_DEFINE(HAVE_INLINE,[],[Define if you have inline]) fi dnl Checks for header files. *************** *** 89,94 **** --- 87,100 ---- dnl Checks for typedefs, structures, and compiler characteristics. + case "$host_os" in + *mingw*) + MINGW=true + ;; + esac + + AM_CONDITIONAL(MINGW32_HOST, test "$MINGW" = "true") + dnl Checks for library functions. dnl AC_FUNC_ALLOCA *************** *** 115,121 **** ) if test "$ac_cv_decl_exit_success_and_failure" = yes ; then ! AC_DEFINE(HAVE_EXIT_SUCCESS_AND_FAILURE) fi ; dnl Use alternate libm if specified by user --- 121,127 ---- ) if test "$ac_cv_decl_exit_success_and_failure" = yes ; then ! AC_DEFINE(HAVE_EXIT_SUCCESS_AND_FAILURE,1,[Defined if you have ansi EXIT_SUCCESS and EXIT_FAILURE in stdlib.h]) fi ; dnl Use alternate libm if specified by user *************** *** 137,144 **** AC_CHECK_DECLS(ldexp,,,[#include ]) AC_CHECK_DECLS(frexp,,,[#include ]) AC_CHECK_DECLS(isinf,,,[#include ]) - AC_CHECK_DECLS(finite,,,[#include ]) AC_CHECK_DECLS(isfinite,,,[#include ]) AC_CHECK_DECLS(isnan,,,[#include ]) dnl OpenBSD has a broken implementation of log1p. --- 143,153 ---- AC_CHECK_DECLS(ldexp,,,[#include ]) AC_CHECK_DECLS(frexp,,,[#include ]) AC_CHECK_DECLS(isinf,,,[#include ]) AC_CHECK_DECLS(isfinite,,,[#include ]) + AC_CHECK_DECLS(finite,,,[#include + #if HAVE_IEEEFP_H + #include + #endif]) AC_CHECK_DECLS(isnan,,,[#include ]) dnl OpenBSD has a broken implementation of log1p. *************** *** 157,171 **** #include int main (void) { ! const char * s = "5678"; long double x = 1.234 ; fprintf(stderr,"%Lg\n",x) ; sscanf(s, "%Lg", &x); ! if (x == 5678) {exit (0);} else {exit(1); }; }]])],[ac_cv_func_printf_longdouble="yes"],[ac_cv_func_printf_longdouble="no"],[ac_cv_func_printf_longdouble="no"])]) if test "$ac_cv_func_printf_longdouble" != no; then ! AC_DEFINE(HAVE_PRINTF_LONGDOUBLE,1) ! AC_SUBST(HAVE_PRINTF_LONGDOUBLE) fi AC_CACHE_CHECK([for extended floating point registers],ac_cv_c_extended_fp, --- 166,179 ---- #include int main (void) { ! const char * s = "5678.25"; long double x = 1.234 ; fprintf(stderr,"%Lg\n",x) ; sscanf(s, "%Lg", &x); ! if (x == 5678.25) {exit (0);} else {exit(1); }; }]])],[ac_cv_func_printf_longdouble="yes"],[ac_cv_func_printf_longdouble="no"],[ac_cv_func_printf_longdouble="no"])]) if test "$ac_cv_func_printf_longdouble" != no; then ! AC_DEFINE(HAVE_PRINTF_LONGDOUBLE,1,[Define this if printf can handle %Lf for long double]) fi AC_CACHE_CHECK([for extended floating point registers],ac_cv_c_extended_fp, *************** *** 198,205 **** ]) if test $ac_cv_c_extended_fp != "no" ; then ! AC_DEFINE(HAVE_EXTENDED_PRECISION_REGISTERS,1) ! AC_SUBST(HAVE_EXTENDED_PRECISION_REGISTERS) fi AC_CACHE_CHECK([for IEEE arithmetic interface type], ac_cv_c_ieee_interface, --- 206,212 ---- ]) if test $ac_cv_c_extended_fp != "no" ; then ! AC_DEFINE(HAVE_EXTENDED_PRECISION_REGISTERS,1,[Defined on architectures with excess floating-point precision]) fi AC_CACHE_CHECK([for IEEE arithmetic interface type], ac_cv_c_ieee_interface, *************** *** 273,278 **** --- 280,299 ---- ]) fi + if test "$ac_cv_c_ieee_interface" = "gnux86" ; then + AC_CACHE_CHECK([for SSE extensions], ac_cv_c_fpu_sse, + [ac_cv_c_fpu_sse=no + AC_RUN_IFELSE([AC_LANG_PROGRAM([[ + #include + #define _FPU_SETMXCSR(cw_sse) asm volatile ("ldmxcsr %0" : : "m" (*&cw_sse)) + ]], [[ unsigned int mode = 0x1f80 ; _FPU_SETMXCSR(mode); exit(0); ]])],[ac_cv_c_fpu_sse="yes"]) + ]) + if test $ac_cv_c_fpu_sse = yes; then + AC_DEFINE([HAVE_FPU_X86_SSE], 1, + [Define if x86 processor has sse extensions.]) + fi + fi + ac_tr_ieee_interface=HAVE_`echo $ac_cv_c_ieee_interface | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`_IEEE_INTERFACE AC_DEFINE_UNQUOTED($ac_tr_ieee_interface,1,[IEEE Interface Type]) *************** *** 338,345 **** ]) if test "$ac_cv_c_ieee_comparisons" != no ; then ! AC_DEFINE(HAVE_IEEE_COMPARISONS,1) ! AC_SUBST(HAVE_IEEE_COMPARISONS) fi dnl Check for IEEE denormalized arithmetic --- 359,365 ---- ]) if test "$ac_cv_c_ieee_comparisons" != no ; then ! AC_DEFINE(HAVE_IEEE_COMPARISONS,1,[Define this if IEEE comparisons work correctly (e.g. NaN != NaN)]) fi dnl Check for IEEE denormalized arithmetic *************** *** 359,366 **** ]) if test "$ac_cv_c_ieee_denormals" != no ; then ! AC_DEFINE(HAVE_IEEE_DENORMALS,1) ! AC_SUBST(HAVE_IEEE_DENORMALS) fi dnl --- 379,385 ---- ]) if test "$ac_cv_c_ieee_denormals" != no ; then ! AC_DEFINE(HAVE_IEEE_DENORMALS,1,[Define this if IEEE denormalized numbers are available]) fi dnl diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/const/gsl_const_cgs.h gsl-1.10/const/gsl_const_cgs.h *** gsl-1.9/const/gsl_const_cgs.h 2006-03-17 15:52:09.000000000 +0000 --- gsl-1.10/const/gsl_const_cgs.h 2007-07-02 17:29:29.000000000 +0100 *************** *** 5,11 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 5,11 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/const/gsl_const_cgsm.h gsl-1.10/const/gsl_const_cgsm.h *** gsl-1.9/const/gsl_const_cgsm.h 2006-03-17 15:52:09.000000000 +0000 --- gsl-1.10/const/gsl_const_cgsm.h 2007-07-02 17:29:29.000000000 +0100 *************** *** 5,11 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 5,11 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/const/gsl_const.h gsl-1.10/const/gsl_const.h *** gsl-1.9/const/gsl_const.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/const/gsl_const.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* const/gsl_const.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2004 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* const/gsl_const.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2004, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/const/gsl_const_mksa.h gsl-1.10/const/gsl_const_mksa.h *** gsl-1.9/const/gsl_const_mksa.h 2006-03-21 14:26:46.000000000 +0000 --- gsl-1.10/const/gsl_const_mksa.h 2007-07-02 17:29:29.000000000 +0100 *************** *** 5,11 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 5,11 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/const/gsl_const_mks.h gsl-1.10/const/gsl_const_mks.h *** gsl-1.9/const/gsl_const_mks.h 2006-03-21 14:26:46.000000000 +0000 --- gsl-1.10/const/gsl_const_mks.h 2007-07-02 17:29:29.000000000 +0100 *************** *** 5,11 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 5,11 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/const/gsl_const_num.h gsl-1.10/const/gsl_const_num.h *** gsl-1.9/const/gsl_const_num.h 2006-03-17 15:52:09.000000000 +0000 --- gsl-1.10/const/gsl_const_num.h 2007-07-02 17:29:29.000000000 +0100 *************** *** 5,11 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 5,11 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/const/Makefile.in gsl-1.10/const/Makefile.in *** gsl-1.9/const/Makefile.in 2007-02-20 13:09:03.000000000 +0000 --- gsl-1.10/const/Makefile.in 2007-09-13 16:41:39.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 14,28 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 14,24 ---- *************** *** 52,68 **** test_DEPENDENCIES = ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(test_SOURCES) DIST_SOURCES = $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 48,65 ---- test_DEPENDENCIES = ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(test_SOURCES) DIST_SOURCES = $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 96,101 **** --- 93,99 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 103,109 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 101,106 ---- *************** *** 111,127 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 108,121 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 133,141 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 127,134 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 145,159 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 138,153 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 163,190 **** --- 157,195 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ pkginclude_HEADERS = gsl_const.h gsl_const_cgs.h gsl_const_mks.h gsl_const_cgsm.h gsl_const_mksa.h gsl_const_num.h INCLUDES = -I$(top_builddir) TESTS = $(check_PROGRAMS) *************** *** 232,238 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 237,243 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 254,266 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 259,267 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 325,333 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 326,334 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 336,342 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 337,343 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 348,354 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 349,355 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 398,419 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 399,419 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 431,437 **** all-am: Makefile $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 431,437 ---- all-am: Makefile $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 465,471 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 465,471 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 479,490 **** --- 479,498 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 504,523 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool ctags \ distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ ! install-data-am install-exec install-exec-am install-info \ ! install-info-am install-man install-pkgincludeHEADERS \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ pdf pdf-am ps ps-am tags uninstall uninstall-am \ ! uninstall-info-am uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 512,535 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool ctags \ distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir dvi dvi-am html \ html-am info info-am install install-am install-data \ ! install-data-am install-dvi install-dvi-am install-exec \ ! install-exec-am install-html install-html-am install-info \ ! install-info-am install-man install-pdf install-pdf-am \ ! install-pkgincludeHEADERS install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ pdf pdf-am ps ps-am tags uninstall uninstall-am \ ! uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/const/test.c gsl-1.10/const/test.c *** gsl-1.9/const/test.c 2006-03-30 20:04:07.000000000 +0100 --- gsl-1.10/const/test.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* const/test.c * ! * Copyright (C) 2003 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* const/test.c * ! * Copyright (C) 2003, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/COPYING gsl-1.10/COPYING *** gsl-1.9/COPYING 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/COPYING 2007-07-02 17:29:28.000000000 +0100 *************** *** 1,285 **** ! GNU GENERAL PUBLIC LICENSE ! Version 2, June 1991 ! Copyright (C) 1989, 1991 Free Software Foundation, Inc. ! 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. ! Preamble ! The licenses for most software are designed to take away your ! freedom to share and change it. By contrast, the GNU General Public ! License is intended to guarantee your freedom to share and change free ! software--to make sure the software is free for all its users. This ! General Public License applies to most of the Free Software ! Foundation's software and to any other program whose authors commit to ! using it. (Some other Free Software Foundation software is covered by ! the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for ! this service if you wish), that you receive source code or can get it ! if you want it, that you can change the software or use pieces of it ! in new free programs; and that you know you can do these things. ! ! To protect your rights, we need to make restrictions that forbid ! anyone to deny you these rights or to ask you to surrender the rights. ! These restrictions translate to certain responsibilities for you if you ! distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether ! gratis or for a fee, you must give the recipients all the rights that ! you have. You must make sure that they, too, receive or can get the ! source code. And you must show them these terms so they know their ! rights. ! ! We protect your rights with two steps: (1) copyright the software, and ! (2) offer you this license which gives you legal permission to copy, ! distribute and/or modify the software. ! ! Also, for each author's protection and ours, we want to make certain ! that everyone understands that there is no warranty for this free ! software. If the software is modified by someone else and passed on, we ! want its recipients to know that what they have is not the original, so ! that any problems introduced by others will not reflect on the original ! authors' reputations. ! ! Finally, any free program is threatened constantly by software ! patents. We wish to avoid the danger that redistributors of a free ! program will individually obtain patent licenses, in effect making the ! program proprietary. To prevent this, we have made it clear that any ! patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. ! ! GNU GENERAL PUBLIC LICENSE ! TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION ! ! 0. This License applies to any program or other work which contains ! a notice placed by the copyright holder saying it may be distributed ! under the terms of this General Public License. The "Program", below, ! refers to any such program or work, and a "work based on the Program" ! means either the Program or any derivative work under copyright law: ! that is to say, a work containing the Program or a portion of it, ! either verbatim or with modifications and/or translated into another ! language. (Hereinafter, translation is included without limitation in ! the term "modification".) Each licensee is addressed as "you". ! ! Activities other than copying, distribution and modification are not ! covered by this License; they are outside its scope. The act of ! running the Program is not restricted, and the output from the Program ! is covered only if its contents constitute a work based on the ! Program (independent of having been made by running the Program). ! Whether that is true depends on what the Program does. ! ! 1. You may copy and distribute verbatim copies of the Program's ! source code as you receive it, in any medium, provided that you ! conspicuously and appropriately publish on each copy an appropriate ! copyright notice and disclaimer of warranty; keep intact all the ! notices that refer to this License and to the absence of any warranty; ! and give any other recipients of the Program a copy of this License ! along with the Program. ! ! You may charge a fee for the physical act of transferring a copy, and ! you may at your option offer warranty protection in exchange for a fee. ! ! 2. You may modify your copy or copies of the Program or any portion ! of it, thus forming a work based on the Program, and copy and ! distribute such modifications or work under the terms of Section 1 ! above, provided that you also meet all of these conditions: ! ! a) You must cause the modified files to carry prominent notices ! stating that you changed the files and the date of any change. ! ! b) You must cause any work that you distribute or publish, that in ! whole or in part contains or is derived from the Program or any ! part thereof, to be licensed as a whole at no charge to all third ! parties under the terms of this License. ! ! c) If the modified program normally reads commands interactively ! when run, you must cause it, when started running for such ! interactive use in the most ordinary way, to print or display an ! announcement including an appropriate copyright notice and a ! notice that there is no warranty (or else, saying that you provide ! a warranty) and that users may redistribute the program under ! these conditions, and telling the user how to view a copy of this ! License. (Exception: if the Program itself is interactive but ! does not normally print such an announcement, your work based on ! the Program is not required to print an announcement.) ! ! These requirements apply to the modified work as a whole. If ! identifiable sections of that work are not derived from the Program, ! and can be reasonably considered independent and separate works in ! themselves, then this License, and its terms, do not apply to those ! sections when you distribute them as separate works. But when you ! distribute the same sections as part of a whole which is a work based ! on the Program, the distribution of the whole must be on the terms of ! this License, whose permissions for other licensees extend to the ! entire whole, and thus to each and every part regardless of who wrote it. ! ! Thus, it is not the intent of this section to claim rights or contest ! your rights to work written entirely by you; rather, the intent is to ! exercise the right to control the distribution of derivative or ! collective works based on the Program. ! ! In addition, mere aggregation of another work not based on the Program ! with the Program (or with a work based on the Program) on a volume of ! a storage or distribution medium does not bring the other work under ! the scope of this License. ! ! 3. You may copy and distribute the Program (or a work based on it, ! under Section 2) in object code or executable form under the terms of ! Sections 1 and 2 above provided that you also do one of the following: ! ! a) Accompany it with the complete corresponding machine-readable ! source code, which must be distributed under the terms of Sections ! 1 and 2 above on a medium customarily used for software interchange; or, ! ! b) Accompany it with a written offer, valid for at least three ! years, to give any third party, for a charge no more than your ! cost of physically performing source distribution, a complete ! machine-readable copy of the corresponding source code, to be ! distributed under the terms of Sections 1 and 2 above on a medium ! customarily used for software interchange; or, ! ! c) Accompany it with the information you received as to the offer ! to distribute corresponding source code. (This alternative is ! allowed only for noncommercial distribution and only if you ! received the program in object code or executable form with such ! an offer, in accord with Subsection b above.) ! ! The source code for a work means the preferred form of the work for ! making modifications to it. For an executable work, complete source ! code means all the source code for all modules it contains, plus any ! associated interface definition files, plus the scripts used to ! control compilation and installation of the executable. However, as a ! special exception, the source code distributed need not include ! anything that is normally distributed (in either source or binary ! form) with the major components (compiler, kernel, and so on) of the ! operating system on which the executable runs, unless that component ! itself accompanies the executable. ! ! If distribution of executable or object code is made by offering ! access to copy from a designated place, then offering equivalent ! access to copy the source code from the same place counts as ! distribution of the source code, even though third parties are not ! compelled to copy the source along with the object code. ! ! 4. You may not copy, modify, sublicense, or distribute the Program ! except as expressly provided under this License. Any attempt ! otherwise to copy, modify, sublicense or distribute the Program is ! void, and will automatically terminate your rights under this License. ! However, parties who have received copies, or rights, from you under ! this License will not have their licenses terminated so long as such ! parties remain in full compliance. ! ! 5. You are not required to accept this License, since you have not ! signed it. However, nothing else grants you permission to modify or ! distribute the Program or its derivative works. These actions are ! prohibited by law if you do not accept this License. Therefore, by ! modifying or distributing the Program (or any work based on the ! Program), you indicate your acceptance of this License to do so, and ! all its terms and conditions for copying, distributing or modifying ! the Program or works based on it. ! ! 6. Each time you redistribute the Program (or any work based on the ! Program), the recipient automatically receives a license from the ! original licensor to copy, distribute or modify the Program subject to ! these terms and conditions. You may not impose any further ! restrictions on the recipients' exercise of the rights granted herein. ! You are not responsible for enforcing compliance by third parties to this License. ! 7. If, as a consequence of a court judgment or allegation of patent ! infringement or for any other reason (not limited to patent issues), ! conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not ! excuse you from the conditions of this License. If you cannot ! distribute so as to satisfy simultaneously your obligations under this ! License and any other pertinent obligations, then as a consequence you ! may not distribute the Program at all. For example, if a patent ! license would not permit royalty-free redistribution of the Program by ! all those who receive copies directly or indirectly through you, then ! the only way you could satisfy both it and this License would be to ! refrain entirely from distribution of the Program. ! ! If any portion of this section is held invalid or unenforceable under ! any particular circumstance, the balance of the section is intended to ! apply and the section as a whole is intended to apply in other ! circumstances. ! ! It is not the purpose of this section to induce you to infringe any ! patents or other property right claims or to contest validity of any ! such claims; this section has the sole purpose of protecting the ! integrity of the free software distribution system, which is ! implemented by public license practices. Many people have made ! generous contributions to the wide range of software distributed ! through that system in reliance on consistent application of that ! system; it is up to the author/donor to decide if he or she is willing ! to distribute software through any other system and a licensee cannot ! impose that choice. ! ! This section is intended to make thoroughly clear what is believed to ! be a consequence of the rest of this License. ! ! 8. If the distribution and/or use of the Program is restricted in ! certain countries either by patents or by copyrighted interfaces, the ! original copyright holder who places the Program under this License ! may add an explicit geographical distribution limitation excluding ! those countries, so that distribution is permitted only in or among ! countries not thus excluded. In such case, this License incorporates ! the limitation as if written in the body of this License. ! 9. The Free Software Foundation may publish revised and/or new versions ! of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. ! Each version is given a distinguishing version number. If the Program ! specifies a version number of this License which applies to it and "any ! later version", you have the option of following the terms and conditions ! either of that version or of any later version published by the Free ! Software Foundation. If the Program does not specify a version number of ! this License, you may choose any version ever published by the Free Software ! Foundation. ! ! 10. If you wish to incorporate parts of the Program into other free ! programs whose distribution conditions are different, write to the author ! to ask for permission. For software which is copyrighted by the Free ! Software Foundation, write to the Free Software Foundation; we sometimes ! make exceptions for this. Our decision will be guided by the two goals ! of preserving the free status of all derivatives of our free software and ! of promoting the sharing and reuse of software generally. ! ! NO WARRANTY ! ! 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY ! FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN ! OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES ! PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED ! OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS ! TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE ! PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, ! REPAIR OR CORRECTION. ! ! 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING ! WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR ! REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, ! INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING ! OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED ! TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY ! YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER ! PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE ! POSSIBILITY OF SUCH DAMAGES. ! ! END OF TERMS AND CONDITIONS ! ! How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it --- 1,626 ---- ! GNU GENERAL PUBLIC LICENSE ! Version 3, 29 June 2007 ! Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. ! Preamble ! The GNU General Public License is a free, copyleft license for ! software and other kinds of works. ! ! The licenses for most software and other practical works are designed ! to take away your freedom to share and change the works. By contrast, ! the GNU General Public License is intended to guarantee your freedom to ! share and change all versions of a program--to make sure it remains free ! software for all its users. We, the Free Software Foundation, use the ! GNU General Public License for most of our software; it applies also to ! any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for ! them if you wish), that you receive source code or can get it if you ! want it, that you can change the software or use pieces of it in new ! free programs, and that you know you can do these things. ! ! To protect your rights, we need to prevent others from denying you ! these rights or asking you to surrender the rights. Therefore, you have ! certain responsibilities if you distribute copies of the software, or if ! you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether ! gratis or for a fee, you must pass on to the recipients the same ! freedoms that you received. You must make sure that they, too, receive ! or can get the source code. And you must show them these terms so they ! know their rights. ! ! Developers that use the GNU GPL protect your rights with two steps: ! (1) assert copyright on the software, and (2) offer you this License ! giving you legal permission to copy, distribute and/or modify it. ! ! For the developers' and authors' protection, the GPL clearly explains ! that there is no warranty for this free software. For both users' and ! authors' sake, the GPL requires that modified versions be marked as ! changed, so that their problems will not be attributed erroneously to ! authors of previous versions. ! ! Some devices are designed to deny users access to install or run ! modified versions of the software inside them, although the manufacturer ! can do so. This is fundamentally incompatible with the aim of ! protecting users' freedom to change the software. The systematic ! pattern of such abuse occurs in the area of products for individuals to ! use, which is precisely where it is most unacceptable. Therefore, we ! have designed this version of the GPL to prohibit the practice for those ! products. If such problems arise substantially in other domains, we ! stand ready to extend this provision to those domains in future versions ! of the GPL, as needed to protect the freedom of users. ! ! Finally, every program is threatened constantly by software patents. ! States should not allow patents to restrict development and use of ! software on general-purpose computers, but in those that do, we wish to ! avoid the special danger that patents applied to a free program could ! make it effectively proprietary. To prevent this, the GPL assures that ! patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. ! ! TERMS AND CONDITIONS ! ! 0. Definitions. ! ! "This License" refers to version 3 of the GNU General Public License. ! ! "Copyright" also means copyright-like laws that apply to other kinds of ! works, such as semiconductor masks. ! ! "The Program" refers to any copyrightable work licensed under this ! License. Each licensee is addressed as "you". "Licensees" and ! "recipients" may be individuals or organizations. ! ! To "modify" a work means to copy from or adapt all or part of the work ! in a fashion requiring copyright permission, other than the making of an ! exact copy. The resulting work is called a "modified version" of the ! earlier work or a work "based on" the earlier work. ! ! A "covered work" means either the unmodified Program or a work based ! on the Program. ! ! To "propagate" a work means to do anything with it that, without ! permission, would make you directly or secondarily liable for ! infringement under applicable copyright law, except executing it on a ! computer or modifying a private copy. Propagation includes copying, ! distribution (with or without modification), making available to the ! public, and in some countries other activities as well. ! ! To "convey" a work means any kind of propagation that enables other ! parties to make or receive copies. Mere interaction with a user through ! a computer network, with no transfer of a copy, is not conveying. ! ! An interactive user interface displays "Appropriate Legal Notices" ! to the extent that it includes a convenient and prominently visible ! feature that (1) displays an appropriate copyright notice, and (2) ! tells the user that there is no warranty for the work (except to the ! extent that warranties are provided), that licensees may convey the ! work under this License, and how to view a copy of this License. If ! the interface presents a list of user commands or options, such as a ! menu, a prominent item in the list meets this criterion. ! ! 1. Source Code. ! ! The "source code" for a work means the preferred form of the work ! for making modifications to it. "Object code" means any non-source ! form of a work. ! ! A "Standard Interface" means an interface that either is an official ! standard defined by a recognized standards body, or, in the case of ! interfaces specified for a particular programming language, one that ! is widely used among developers working in that language. ! ! The "System Libraries" of an executable work include anything, other ! than the work as a whole, that (a) is included in the normal form of ! packaging a Major Component, but which is not part of that Major ! Component, and (b) serves only to enable use of the work with that ! Major Component, or to implement a Standard Interface for which an ! implementation is available to the public in source code form. A ! "Major Component", in this context, means a major essential component ! (kernel, window system, and so on) of the specific operating system ! (if any) on which the executable work runs, or a compiler used to ! produce the work, or an object code interpreter used to run it. ! ! The "Corresponding Source" for a work in object code form means all ! the source code needed to generate, install, and (for an executable ! work) run the object code and to modify the work, including scripts to ! control those activities. However, it does not include the work's ! System Libraries, or general-purpose tools or generally available free ! programs which are used unmodified in performing those activities but ! which are not part of the work. For example, Corresponding Source ! includes interface definition files associated with source files for ! the work, and the source code for shared libraries and dynamically ! linked subprograms that the work is specifically designed to require, ! such as by intimate data communication or control flow between those ! subprograms and other parts of the work. ! ! The Corresponding Source need not include anything that users ! can regenerate automatically from other parts of the Corresponding ! Source. ! ! The Corresponding Source for a work in source code form is that ! same work. ! ! 2. Basic Permissions. ! ! All rights granted under this License are granted for the term of ! copyright on the Program, and are irrevocable provided the stated ! conditions are met. This License explicitly affirms your unlimited ! permission to run the unmodified Program. The output from running a ! covered work is covered by this License only if the output, given its ! content, constitutes a covered work. This License acknowledges your ! rights of fair use or other equivalent, as provided by copyright law. ! ! You may make, run and propagate covered works that you do not ! convey, without conditions so long as your license otherwise remains ! in force. You may convey covered works to others for the sole purpose ! of having them make modifications exclusively for you, or provide you ! with facilities for running those works, provided that you comply with ! the terms of this License in conveying all material for which you do ! not control copyright. Those thus making or running the covered works ! for you must do so exclusively on your behalf, under your direction ! and control, on terms that prohibit them from making any copies of ! your copyrighted material outside their relationship with you. ! ! Conveying under any other circumstances is permitted solely under ! the conditions stated below. Sublicensing is not allowed; section 10 ! makes it unnecessary. ! ! 3. Protecting Users' Legal Rights From Anti-Circumvention Law. ! ! No covered work shall be deemed part of an effective technological ! measure under any applicable law fulfilling obligations under article ! 11 of the WIPO copyright treaty adopted on 20 December 1996, or ! similar laws prohibiting or restricting circumvention of such ! measures. ! ! When you convey a covered work, you waive any legal power to forbid ! circumvention of technological measures to the extent such circumvention ! is effected by exercising rights under this License with respect to ! the covered work, and you disclaim any intention to limit operation or ! modification of the work as a means of enforcing, against the work's ! users, your or third parties' legal rights to forbid circumvention of ! technological measures. ! ! 4. Conveying Verbatim Copies. ! ! You may convey verbatim copies of the Program's source code as you ! receive it, in any medium, provided that you conspicuously and ! appropriately publish on each copy an appropriate copyright notice; ! keep intact all notices stating that this License and any ! non-permissive terms added in accord with section 7 apply to the code; ! keep intact all notices of the absence of any warranty; and give all ! recipients a copy of this License along with the Program. ! ! You may charge any price or no price for each copy that you convey, ! and you may offer support or warranty protection for a fee. ! ! 5. Conveying Modified Source Versions. ! ! You may convey a work based on the Program, or the modifications to ! produce it from the Program, in the form of source code under the ! terms of section 4, provided that you also meet all of these conditions: ! ! a) The work must carry prominent notices stating that you modified ! it, and giving a relevant date. ! ! b) The work must carry prominent notices stating that it is ! released under this License and any conditions added under section ! 7. This requirement modifies the requirement in section 4 to ! "keep intact all notices". ! ! c) You must license the entire work, as a whole, under this ! License to anyone who comes into possession of a copy. This ! License will therefore apply, along with any applicable section 7 ! additional terms, to the whole of the work, and all its parts, ! regardless of how they are packaged. This License gives no ! permission to license the work in any other way, but it does not ! invalidate such permission if you have separately received it. ! ! d) If the work has interactive user interfaces, each must display ! Appropriate Legal Notices; however, if the Program has interactive ! interfaces that do not display Appropriate Legal Notices, your ! work need not make them do so. ! ! A compilation of a covered work with other separate and independent ! works, which are not by their nature extensions of the covered work, ! and which are not combined with it such as to form a larger program, ! in or on a volume of a storage or distribution medium, is called an ! "aggregate" if the compilation and its resulting copyright are not ! used to limit the access or legal rights of the compilation's users ! beyond what the individual works permit. Inclusion of a covered work ! in an aggregate does not cause this License to apply to the other ! parts of the aggregate. ! ! 6. Conveying Non-Source Forms. ! ! You may convey a covered work in object code form under the terms ! of sections 4 and 5, provided that you also convey the ! machine-readable Corresponding Source under the terms of this License, ! in one of these ways: ! ! a) Convey the object code in, or embodied in, a physical product ! (including a physical distribution medium), accompanied by the ! Corresponding Source fixed on a durable physical medium ! customarily used for software interchange. ! ! b) Convey the object code in, or embodied in, a physical product ! (including a physical distribution medium), accompanied by a ! written offer, valid for at least three years and valid for as ! long as you offer spare parts or customer support for that product ! model, to give anyone who possesses the object code either (1) a ! copy of the Corresponding Source for all the software in the ! product that is covered by this License, on a durable physical ! medium customarily used for software interchange, for a price no ! more than your reasonable cost of physically performing this ! conveying of source, or (2) access to copy the ! Corresponding Source from a network server at no charge. ! ! c) Convey individual copies of the object code with a copy of the ! written offer to provide the Corresponding Source. This ! alternative is allowed only occasionally and noncommercially, and ! only if you received the object code with such an offer, in accord ! with subsection 6b. ! ! d) Convey the object code by offering access from a designated ! place (gratis or for a charge), and offer equivalent access to the ! Corresponding Source in the same way through the same place at no ! further charge. You need not require recipients to copy the ! Corresponding Source along with the object code. If the place to ! copy the object code is a network server, the Corresponding Source ! may be on a different server (operated by you or a third party) ! that supports equivalent copying facilities, provided you maintain ! clear directions next to the object code saying where to find the ! Corresponding Source. Regardless of what server hosts the ! Corresponding Source, you remain obligated to ensure that it is ! available for as long as needed to satisfy these requirements. ! ! e) Convey the object code using peer-to-peer transmission, provided ! you inform other peers where the object code and Corresponding ! Source of the work are being offered to the general public at no ! charge under subsection 6d. ! ! A separable portion of the object code, whose source code is excluded ! from the Corresponding Source as a System Library, need not be ! included in conveying the object code work. ! ! A "User Product" is either (1) a "consumer product", which means any ! tangible personal property which is normally used for personal, family, ! or household purposes, or (2) anything designed or sold for incorporation ! into a dwelling. In determining whether a product is a consumer product, ! doubtful cases shall be resolved in favor of coverage. For a particular ! product received by a particular user, "normally used" refers to a ! typical or common use of that class of product, regardless of the status ! of the particular user or of the way in which the particular user ! actually uses, or expects or is expected to use, the product. A product ! is a consumer product regardless of whether the product has substantial ! commercial, industrial or non-consumer uses, unless such uses represent ! the only significant mode of use of the product. ! ! "Installation Information" for a User Product means any methods, ! procedures, authorization keys, or other information required to install ! and execute modified versions of a covered work in that User Product from ! a modified version of its Corresponding Source. The information must ! suffice to ensure that the continued functioning of the modified object ! code is in no case prevented or interfered with solely because ! modification has been made. ! ! If you convey an object code work under this section in, or with, or ! specifically for use in, a User Product, and the conveying occurs as ! part of a transaction in which the right of possession and use of the ! User Product is transferred to the recipient in perpetuity or for a ! fixed term (regardless of how the transaction is characterized), the ! Corresponding Source conveyed under this section must be accompanied ! by the Installation Information. But this requirement does not apply ! if neither you nor any third party retains the ability to install ! modified object code on the User Product (for example, the work has ! been installed in ROM). ! ! The requirement to provide Installation Information does not include a ! requirement to continue to provide support service, warranty, or updates ! for a work that has been modified or installed by the recipient, or for ! the User Product in which it has been modified or installed. Access to a ! network may be denied when the modification itself materially and ! adversely affects the operation of the network or violates the rules and ! protocols for communication across the network. ! ! Corresponding Source conveyed, and Installation Information provided, ! in accord with this section must be in a format that is publicly ! documented (and with an implementation available to the public in ! source code form), and must require no special password or key for ! unpacking, reading or copying. ! ! 7. Additional Terms. ! ! "Additional permissions" are terms that supplement the terms of this ! License by making exceptions from one or more of its conditions. ! Additional permissions that are applicable to the entire Program shall ! be treated as though they were included in this License, to the extent ! that they are valid under applicable law. If additional permissions ! apply only to part of the Program, that part may be used separately ! under those permissions, but the entire Program remains governed by ! this License without regard to the additional permissions. ! ! When you convey a copy of a covered work, you may at your option ! remove any additional permissions from that copy, or from any part of ! it. (Additional permissions may be written to require their own ! removal in certain cases when you modify the work.) You may place ! additional permissions on material, added by you to a covered work, ! for which you have or can give appropriate copyright permission. ! ! Notwithstanding any other provision of this License, for material you ! add to a covered work, you may (if authorized by the copyright holders of ! that material) supplement the terms of this License with terms: ! ! a) Disclaiming warranty or limiting liability differently from the ! terms of sections 15 and 16 of this License; or ! ! b) Requiring preservation of specified reasonable legal notices or ! author attributions in that material or in the Appropriate Legal ! Notices displayed by works containing it; or ! ! c) Prohibiting misrepresentation of the origin of that material, or ! requiring that modified versions of such material be marked in ! reasonable ways as different from the original version; or ! ! d) Limiting the use for publicity purposes of names of licensors or ! authors of the material; or ! ! e) Declining to grant rights under trademark law for use of some ! trade names, trademarks, or service marks; or ! ! f) Requiring indemnification of licensors and authors of that ! material by anyone who conveys the material (or modified versions of ! it) with contractual assumptions of liability to the recipient, for ! any liability that these contractual assumptions directly impose on ! those licensors and authors. ! ! All other non-permissive additional terms are considered "further ! restrictions" within the meaning of section 10. If the Program as you ! received it, or any part of it, contains a notice stating that it is ! governed by this License along with a term that is a further ! restriction, you may remove that term. If a license document contains ! a further restriction but permits relicensing or conveying under this ! License, you may add to a covered work material governed by the terms ! of that license document, provided that the further restriction does ! not survive such relicensing or conveying. ! ! If you add terms to a covered work in accord with this section, you ! must place, in the relevant source files, a statement of the ! additional terms that apply to those files, or a notice indicating ! where to find the applicable terms. ! ! Additional terms, permissive or non-permissive, may be stated in the ! form of a separately written license, or stated as exceptions; ! the above requirements apply either way. ! ! 8. Termination. ! ! You may not propagate or modify a covered work except as expressly ! provided under this License. Any attempt otherwise to propagate or ! modify it is void, and will automatically terminate your rights under ! this License (including any patent licenses granted under the third ! paragraph of section 11). ! ! However, if you cease all violation of this License, then your ! license from a particular copyright holder is reinstated (a) ! provisionally, unless and until the copyright holder explicitly and ! finally terminates your license, and (b) permanently, if the copyright ! holder fails to notify you of the violation by some reasonable means ! prior to 60 days after the cessation. ! ! Moreover, your license from a particular copyright holder is ! reinstated permanently if the copyright holder notifies you of the ! violation by some reasonable means, this is the first time you have ! received notice of violation of this License (for any work) from that ! copyright holder, and you cure the violation prior to 30 days after ! your receipt of the notice. ! ! Termination of your rights under this section does not terminate the ! licenses of parties who have received copies or rights from you under ! this License. If your rights have been terminated and not permanently ! reinstated, you do not qualify to receive new licenses for the same ! material under section 10. ! ! 9. Acceptance Not Required for Having Copies. ! ! You are not required to accept this License in order to receive or ! run a copy of the Program. Ancillary propagation of a covered work ! occurring solely as a consequence of using peer-to-peer transmission ! to receive a copy likewise does not require acceptance. However, ! nothing other than this License grants you permission to propagate or ! modify any covered work. These actions infringe copyright if you do ! not accept this License. Therefore, by modifying or propagating a ! covered work, you indicate your acceptance of this License to do so. ! ! 10. Automatic Licensing of Downstream Recipients. ! ! Each time you convey a covered work, the recipient automatically ! receives a license from the original licensors, to run, modify and ! propagate that work, subject to this License. You are not responsible ! for enforcing compliance by third parties with this License. ! ! An "entity transaction" is a transaction transferring control of an ! organization, or substantially all assets of one, or subdividing an ! organization, or merging organizations. If propagation of a covered ! work results from an entity transaction, each party to that ! transaction who receives a copy of the work also receives whatever ! licenses to the work the party's predecessor in interest had or could ! give under the previous paragraph, plus a right to possession of the ! Corresponding Source of the work from the predecessor in interest, if ! the predecessor has it or can get it with reasonable efforts. ! ! You may not impose any further restrictions on the exercise of the ! rights granted or affirmed under this License. For example, you may ! not impose a license fee, royalty, or other charge for exercise of ! rights granted under this License, and you may not initiate litigation ! (including a cross-claim or counterclaim in a lawsuit) alleging that ! any patent claim is infringed by making, using, selling, offering for ! sale, or importing the Program or any portion of it. ! ! 11. Patents. ! ! A "contributor" is a copyright holder who authorizes use under this ! License of the Program or a work on which the Program is based. The ! work thus licensed is called the contributor's "contributor version". ! ! A contributor's "essential patent claims" are all patent claims ! owned or controlled by the contributor, whether already acquired or ! hereafter acquired, that would be infringed by some manner, permitted ! by this License, of making, using, or selling its contributor version, ! but do not include claims that would be infringed only as a ! consequence of further modification of the contributor version. For ! purposes of this definition, "control" includes the right to grant ! patent sublicenses in a manner consistent with the requirements of this License. ! Each contributor grants you a non-exclusive, worldwide, royalty-free ! patent license under the contributor's essential patent claims, to ! make, use, sell, offer for sale, import and otherwise run, modify and ! propagate the contents of its contributor version. ! ! In the following three paragraphs, a "patent license" is any express ! agreement or commitment, however denominated, not to enforce a patent ! (such as an express permission to practice a patent or covenant not to ! sue for patent infringement). To "grant" such a patent license to a ! party means to make such an agreement or commitment not to enforce a ! patent against the party. ! ! If you convey a covered work, knowingly relying on a patent license, ! and the Corresponding Source of the work is not available for anyone ! to copy, free of charge and under the terms of this License, through a ! publicly available network server or other readily accessible means, ! then you must either (1) cause the Corresponding Source to be so ! available, or (2) arrange to deprive yourself of the benefit of the ! patent license for this particular work, or (3) arrange, in a manner ! consistent with the requirements of this License, to extend the patent ! license to downstream recipients. "Knowingly relying" means you have ! actual knowledge that, but for the patent license, your conveying the ! covered work in a country, or your recipient's use of the covered work ! in a country, would infringe one or more identifiable patents in that ! country that you have reason to believe are valid. ! ! If, pursuant to or in connection with a single transaction or ! arrangement, you convey, or propagate by procuring conveyance of, a ! covered work, and grant a patent license to some of the parties ! receiving the covered work authorizing them to use, propagate, modify ! or convey a specific copy of the covered work, then the patent license ! you grant is automatically extended to all recipients of the covered ! work and works based on it. ! ! A patent license is "discriminatory" if it does not include within ! the scope of its coverage, prohibits the exercise of, or is ! conditioned on the non-exercise of one or more of the rights that are ! specifically granted under this License. You may not convey a covered ! work if you are a party to an arrangement with a third party that is ! in the business of distributing software, under which you make payment ! to the third party based on the extent of your activity of conveying ! the work, and under which the third party grants, to any of the ! parties who would receive the covered work from you, a discriminatory ! patent license (a) in connection with copies of the covered work ! conveyed by you (or copies made from those copies), or (b) primarily ! for and in connection with specific products or compilations that ! contain the covered work, unless you entered into that arrangement, ! or that patent license was granted, prior to 28 March 2007. ! ! Nothing in this License shall be construed as excluding or limiting ! any implied license or other defenses to infringement that may ! otherwise be available to you under applicable patent law. ! ! 12. No Surrender of Others' Freedom. ! ! If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not ! excuse you from the conditions of this License. If you cannot convey a ! covered work so as to satisfy simultaneously your obligations under this ! License and any other pertinent obligations, then as a consequence you may ! not convey it at all. For example, if you agree to terms that obligate you ! to collect a royalty for further conveying from those to whom you convey ! the Program, the only way you could satisfy both those terms and this ! License would be to refrain entirely from conveying the Program. ! ! 13. Use with the GNU Affero General Public License. ! ! Notwithstanding any other provision of this License, you have ! permission to link or combine any covered work with a work licensed ! under version 3 of the GNU Affero General Public License into a single ! combined work, and to convey the resulting work. The terms of this ! License will continue to apply to the part which is the covered work, ! but the special requirements of the GNU Affero General Public License, ! section 13, concerning interaction through a network will apply to the ! combination as such. ! ! 14. Revised Versions of this License. ! The Free Software Foundation may publish revised and/or new versions of ! the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. ! Each version is given a distinguishing version number. If the ! Program specifies that a certain numbered version of the GNU General ! Public License "or any later version" applies to it, you have the ! option of following the terms and conditions either of that numbered ! version or of any later version published by the Free Software ! Foundation. If the Program does not specify a version number of the ! GNU General Public License, you may choose any version ever published ! by the Free Software Foundation. ! ! If the Program specifies that a proxy can decide which future ! versions of the GNU General Public License can be used, that proxy's ! public statement of acceptance of a version permanently authorizes you ! to choose that version for the Program. ! ! Later license versions may give you additional or different ! permissions. However, no additional obligations are imposed on any ! author or copyright holder as a result of your choosing to follow a ! later version. ! ! 15. Disclaimer of Warranty. ! ! THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY ! APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT ! HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY ! OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, ! THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR ! PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM ! IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ! ALL NECESSARY SERVICING, REPAIR OR CORRECTION. ! ! 16. Limitation of Liability. ! ! IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING ! WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS ! THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY ! GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE ! USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF ! DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD ! PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), ! EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF ! SUCH DAMAGES. ! ! 17. Interpretation of Sections 15 and 16. ! ! If the disclaimer of warranty and limitation of liability provided ! above cannot be given local legal effect according to their terms, ! reviewing courts shall apply local law that most closely approximates ! an absolute waiver of all civil liability in connection with the ! Program, unless a warranty or assumption of liability accompanies a ! copy of the Program in return for a fee. ! ! END OF TERMS AND CONDITIONS ! ! How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it *************** *** 287,301 **** To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively ! convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) ! This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by ! the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, --- 628,642 ---- To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively ! state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) ! This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by ! the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, *************** *** 304,340 **** GNU General Public License for more details. You should have received a copy of the GNU General Public License ! along with this program; if not, write to the Free Software ! Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ! Also add information on how to contact you by electronic and paper mail. ! If the program is interactive, make it output a short notice like this ! when it starts in an interactive mode: ! Gnomovision version 69, Copyright (C) year name of author ! Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate ! parts of the General Public License. Of course, the commands you use may ! be called something other than `show w' and `show c'; they could even be ! mouse-clicks or menu items--whatever suits your program. ! ! You should also get your employer (if you work as a programmer) or your ! school, if any, to sign a "copyright disclaimer" for the program, if ! necessary. Here is a sample; alter the names: ! ! Yoyodyne, Inc., hereby disclaims all copyright interest in the program ! `Gnomovision' (which makes passes at compilers) written by James Hacker. ! ! , 1 April 1989 ! Ty Coon, President of Vice ! ! This General Public License does not permit incorporating your program into ! proprietary programs. If your program is a subroutine library, you may ! consider it more useful to permit linking proprietary applications with the ! library. If this is what you want to do, use the GNU Library General ! Public License instead of this License. --- 645,674 ---- GNU General Public License for more details. You should have received a copy of the GNU General Public License ! along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. ! If the program does terminal interaction, make it output a short ! notice like this when it starts in an interactive mode: ! Copyright (C) ! This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate ! parts of the General Public License. Of course, your program's commands ! might be different; for a GUI interface, you would use an "about box". ! ! You should also get your employer (if you work as a programmer) or school, ! if any, to sign a "copyright disclaimer" for the program, if necessary. ! For more information on this, and how to apply and follow the GNU GPL, see ! . ! ! The GNU General Public License does not permit incorporating your program ! into proprietary programs. If your program is a subroutine library, you ! may consider it more useful to permit linking proprietary applications with ! the library. If this is what you want to do, use the GNU Lesser General ! Public License instead of this License. But first, please read ! . diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/deriv/ChangeLog gsl-1.10/deriv/ChangeLog *** gsl-1.9/deriv/ChangeLog 2004-03-20 23:07:20.000000000 +0000 --- gsl-1.10/deriv/ChangeLog 2007-08-27 22:26:56.000000000 +0100 *************** *** 1,3 **** --- 1,8 ---- + 2007-08-22 Brian Gough + + * deriv.c (central_deriv): corrected dy term for error in h + (forward_deriv): corrected dy term for error in h + 2004-03-06 Brian Gough * reworking API of gsl_diff diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/deriv/deriv.c gsl-1.10/deriv/deriv.c *** gsl-1.9/deriv/deriv.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/deriv/deriv.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* deriv/deriv.c * ! * Copyright (C) 2004 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* deriv/deriv.c * ! * Copyright (C) 2004, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 46,52 **** double e3 = (fabs (fp1) + fabs (fm1)) * GSL_DBL_EPSILON; double e5 = 2.0 * (fabs (fph) + fabs (fmh)) * GSL_DBL_EPSILON + e3; ! double dy = GSL_MAX (fabs (r3), fabs (r5)) * fabs (x) * GSL_DBL_EPSILON; /* The truncation error in the r5 approximation itself is O(h^4). However, for safety, we estimate the error from r5-r3, which is --- 46,54 ---- double e3 = (fabs (fp1) + fabs (fm1)) * GSL_DBL_EPSILON; double e5 = 2.0 * (fabs (fph) + fabs (fmh)) * GSL_DBL_EPSILON + e3; ! /* The next term is due to finite precision in x+h = O (eps * x) */ ! ! double dy = GSL_MAX (fabs (r3 / h), fabs (r5 / h)) *(fabs (x) / h) * GSL_DBL_EPSILON; /* The truncation error in the r5 approximation itself is O(h^4). However, for safety, we estimate the error from r5-r3, which is *************** *** 118,124 **** double e4 = 2 * 20.67 * (fabs (f4) + fabs (f3) + fabs (f2) + fabs (f1)) * GSL_DBL_EPSILON; ! double dy = GSL_MAX (fabs (r2), fabs (r4)) * fabs (x) * GSL_DBL_EPSILON; /* The truncation error in the r4 approximation itself is O(h^3). However, for safety, we estimate the error from r4-r2, which is --- 120,128 ---- double e4 = 2 * 20.67 * (fabs (f4) + fabs (f3) + fabs (f2) + fabs (f1)) * GSL_DBL_EPSILON; ! /* The next term is due to finite precision in x+h = O (eps * x) */ ! ! double dy = GSL_MAX (fabs (r2 / h), fabs (r4 / h)) * fabs (x / h) * GSL_DBL_EPSILON; /* The truncation error in the r4 approximation itself is O(h^3). However, for safety, we estimate the error from r4-r2, which is diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/deriv/gsl_deriv.h gsl-1.10/deriv/gsl_deriv.h *** gsl-1.9/deriv/gsl_deriv.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/deriv/gsl_deriv.h 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/deriv/Makefile.in gsl-1.10/deriv/Makefile.in *** gsl-1.9/deriv/Makefile.in 2007-02-20 13:09:04.000000000 +0000 --- gsl-1.10/deriv/Makefile.in 2007-09-13 16:41:39.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 57,73 **** test_DEPENDENCIES = libgslderiv.la ../vector/libgslvector.la \ ../block/libgslblock.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslderiv_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslderiv_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 53,70 ---- test_DEPENDENCIES = libgslderiv.la ../vector/libgslvector.la \ ../block/libgslblock.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslderiv_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslderiv_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 101,106 **** --- 98,104 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 108,114 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 106,111 ---- *************** *** 116,132 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 113,126 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 138,146 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 132,139 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 150,164 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 143,158 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 168,195 **** --- 162,200 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslderiv.la INCLUDES = -I$(top_builddir) libgslderiv_la_SOURCES = deriv.c *************** *** 240,246 **** rm -f "$${dir}/so_locations"; \ done libgslderiv.la: $(libgslderiv_la_OBJECTS) $(libgslderiv_la_DEPENDENCIES) ! $(LINK) $(libgslderiv_la_LDFLAGS) $(libgslderiv_la_OBJECTS) $(libgslderiv_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 245,251 ---- rm -f "$${dir}/so_locations"; \ done libgslderiv.la: $(libgslderiv_la_OBJECTS) $(libgslderiv_la_DEPENDENCIES) ! $(LINK) $(libgslderiv_la_OBJECTS) $(libgslderiv_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 250,256 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 255,261 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 272,284 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 277,285 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 343,351 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 344,352 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 354,360 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 355,361 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 366,372 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 367,373 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 416,437 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 417,437 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 449,455 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 449,455 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 483,489 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 483,489 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 497,508 **** --- 497,516 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 522,542 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS #demo_SOURCES = demo.c --- 530,553 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS #demo_SOURCES = demo.c diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/deriv/test.c gsl-1.10/deriv/test.c *** gsl-1.9/deriv/test.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/deriv/test.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/dht/dht.c gsl-1.10/dht/dht.c *** gsl-1.9/dht/dht.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/dht/dht.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/dht/gsl_dht.h gsl-1.10/dht/gsl_dht.h *** gsl-1.9/dht/gsl_dht.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/dht/gsl_dht.h 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/dht/Makefile.in gsl-1.10/dht/Makefile.in *** gsl-1.9/dht/Makefile.in 2007-02-20 13:09:04.000000000 +0000 --- gsl-1.10/dht/Makefile.in 2007-09-13 16:41:39.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 58,74 **** ../complex/libgslcomplex.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgsldht_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgsldht_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 54,71 ---- ../complex/libgslcomplex.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgsldht_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgsldht_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 102,107 **** --- 99,105 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 109,115 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 107,112 ---- *************** *** 117,133 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 114,127 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 139,147 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 133,140 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 151,165 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 144,159 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 169,196 **** --- 163,201 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgsldht.la pkginclude_HEADERS = gsl_dht.h INCLUDES = -I$(top_builddir) *************** *** 241,247 **** rm -f "$${dir}/so_locations"; \ done libgsldht.la: $(libgsldht_la_OBJECTS) $(libgsldht_la_DEPENDENCIES) ! $(LINK) $(libgsldht_la_LDFLAGS) $(libgsldht_la_OBJECTS) $(libgsldht_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 246,252 ---- rm -f "$${dir}/so_locations"; \ done libgsldht.la: $(libgsldht_la_OBJECTS) $(libgsldht_la_DEPENDENCIES) ! $(LINK) $(libgsldht_la_OBJECTS) $(libgsldht_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 251,257 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 256,262 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 273,285 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 278,286 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 344,352 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 345,353 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 355,361 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 356,362 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 367,373 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 368,374 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 417,438 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 418,438 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 450,456 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 450,456 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 484,490 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 484,490 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 498,509 **** --- 498,517 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 523,543 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 531,554 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/dht/test.c gsl-1.10/dht/test.c *** gsl-1.9/dht/test.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/dht/test.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/diff/diff.c gsl-1.10/diff/diff.c *** gsl-1.9/diff/diff.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/diff/diff.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/diff/gsl_diff.h gsl-1.10/diff/gsl_diff.h *** gsl-1.9/diff/gsl_diff.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/diff/gsl_diff.h 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/diff/Makefile.in gsl-1.10/diff/Makefile.in *** gsl-1.9/diff/Makefile.in 2007-02-20 13:09:04.000000000 +0000 --- gsl-1.10/diff/Makefile.in 2007-09-13 16:41:40.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 57,73 **** test_DEPENDENCIES = libgsldiff.la ../vector/libgslvector.la \ ../block/libgslblock.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgsldiff_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgsldiff_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 53,70 ---- test_DEPENDENCIES = libgsldiff.la ../vector/libgslvector.la \ ../block/libgslblock.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgsldiff_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgsldiff_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 101,106 **** --- 98,104 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 108,114 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 106,111 ---- *************** *** 116,132 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 113,126 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 138,146 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 132,139 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 150,164 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 143,158 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 168,195 **** --- 162,200 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgsldiff.la INCLUDES = -I$(top_builddir) libgsldiff_la_SOURCES = diff.c *************** *** 240,246 **** rm -f "$${dir}/so_locations"; \ done libgsldiff.la: $(libgsldiff_la_OBJECTS) $(libgsldiff_la_DEPENDENCIES) ! $(LINK) $(libgsldiff_la_LDFLAGS) $(libgsldiff_la_OBJECTS) $(libgsldiff_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 245,251 ---- rm -f "$${dir}/so_locations"; \ done libgsldiff.la: $(libgsldiff_la_OBJECTS) $(libgsldiff_la_DEPENDENCIES) ! $(LINK) $(libgsldiff_la_OBJECTS) $(libgsldiff_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 250,256 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 255,261 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 272,284 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 277,285 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 343,351 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 344,352 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 354,360 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 355,361 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 366,372 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 367,373 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 416,437 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 417,437 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 449,455 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 449,455 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 483,489 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 483,489 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 497,508 **** --- 497,516 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 522,542 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS #demo_SOURCES = demo.c --- 530,553 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS #demo_SOURCES = demo.c diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/diff/test.c gsl-1.10/diff/test.c *** gsl-1.9/diff/test.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/diff/test.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/autoconf.texi gsl-1.10/doc/autoconf.texi *** gsl-1.9/doc/autoconf.texi 2006-03-16 18:00:21.000000000 +0000 --- gsl-1.10/doc/autoconf.texi 2007-09-10 10:17:21.000000000 +0100 *************** *** 9,17 **** these tests, @example ! AC_CHECK_LIB(m,main) ! AC_CHECK_LIB(gslcblas,main) ! AC_CHECK_LIB(gsl,main) @end example @noindent --- 9,17 ---- these tests, @example ! AC_CHECK_LIB([m],[cos]) ! AC_CHECK_LIB([gslcblas],[cblas_dgemm]) ! AC_CHECK_LIB([gsl],[gsl_blas_dgemm]) @end example @noindent *************** *** 20,28 **** are found the output during the configure stage looks like this, @example ! checking for main in -lm... yes ! checking for main in -lgslcblas... yes ! checking for main in -lgsl... yes @end example @noindent --- 20,28 ---- are found the output during the configure stage looks like this, @example ! checking for cos in -lm... yes ! checking for cblas_dgemm in -lgslcblas... yes ! checking for gsl_blas_dgemm in -lgsl... yes @end example @noindent *************** *** 38,44 **** above: @example ! AM_PATH_GSL(GSL_VERSION, [action-if-found], [action-if-not-found]) @end example --- 38,44 ---- above: @example ! AX_PATH_GSL(GSL_VERSION, [action-if-found], [action-if-not-found]) @end example *************** *** 64,70 **** @end example @noindent ! Note that the macro @code{AM_PATH_GSL} needs to use the C compiler so it should appear in the @file{configure.in} file before the macro @code{AC_LANG_CPLUSPLUS} for programs that use C++. --- 64,70 ---- @end example @noindent ! Note that the macro @code{AX_PATH_GSL} needs to use the C compiler so it should appear in the @file{configure.in} file before the macro @code{AC_LANG_CPLUSPLUS} for programs that use C++. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/bspline.texi gsl-1.10/doc/bspline.texi *** gsl-1.9/doc/bspline.texi 2007-01-04 12:41:13.000000000 +0000 --- gsl-1.10/doc/bspline.texi 2007-03-09 15:10:26.000000000 +0000 *************** *** 24,31 **** of each interval are called @dfn{breakpoints}. These breakpoints are then converted to @dfn{knots} by imposing various continuity and smoothness conditions at each interface. Given a nondecreasing ! knot vector @math{t = \{t_0, t_1, \dots, t_{n+k-1}\}}, the ! @math{n} basis splines of order @math{k} are defined by @tex \beforedisplay $$ --- 24,33 ---- of each interval are called @dfn{breakpoints}. These breakpoints are then converted to @dfn{knots} by imposing various continuity and smoothness conditions at each interface. Given a nondecreasing ! knot vector ! @c{$t = \{t_0, t_1, \dots, t_{n+k-1}\}$} ! @math{t = @{t_0, t_1, @dots{}, t_@{n+k-1@}@}}, ! the @math{n} basis splines of order @math{k} are defined by @tex \beforedisplay $$ *************** *** 47,53 **** @end example @end ifinfo ! for @math{i = 0, \dots, n-1}. The common case of cubic B-splines is given by @math{k = 4}. The above recurrence relation can be evaluated in a numerically stable way by the de Boor algorithm. --- 49,55 ---- @end example @end ifinfo ! for @math{i = 0, @dots{}, n-1}. The common case of cubic B-splines is given by @math{k = 4}. The above recurrence relation can be evaluated in a numerically stable way by the de Boor algorithm. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/combination.texi gsl-1.10/doc/combination.texi *** gsl-1.9/doc/combination.texi 2006-03-16 18:00:21.000000000 +0000 --- gsl-1.10/doc/combination.texi 2007-09-10 10:17:56.000000000 +0100 *************** *** 90,96 **** @deftypefun size_t gsl_combination_get (const gsl_combination * @var{c}, const size_t @var{i}) This function returns the value of the @var{i}-th element of the combination @var{c}. If @var{i} lies outside the allowed range of 0 to ! @math{@var{k}-1} then the error handler is invoked and 0 is returned. @end deftypefun @node Combination properties --- 90,96 ---- @deftypefun size_t gsl_combination_get (const gsl_combination * @var{c}, const size_t @var{i}) This function returns the value of the @var{i}-th element of the combination @var{c}. If @var{i} lies outside the allowed range of 0 to ! @math{@var{k}-1} then the error handler is invoked and 0 is returned. @inlinefn{} @end deftypefun @node Combination properties *************** *** 165,173 **** @deftypefun int gsl_combination_fprintf (FILE * @var{stream}, const gsl_combination * @var{c}, const char * @var{format}) This function writes the elements of the combination @var{c} line-by-line to the stream @var{stream} using the format specifier ! @var{format}, which should be suitable for a type of @var{size_t}. On a ! GNU system the type modifier @code{Z} represents @code{size_t}, so ! @code{"%Zu\n"} is a suitable format. The function returns @code{GSL_EFAILED} if there was a problem writing to the file. @end deftypefun --- 165,175 ---- @deftypefun int gsl_combination_fprintf (FILE * @var{stream}, const gsl_combination * @var{c}, const char * @var{format}) This function writes the elements of the combination @var{c} line-by-line to the stream @var{stream} using the format specifier ! @var{format}, which should be suitable for a type of @var{size_t}. ! In ISO C99 the type modifier @code{z} represents @code{size_t}, so ! @code{"%zu\n"} is a suitable format.@footnote{In versions of the ! GNU C library prior to the ISO C99 standard, ! the type modifier @code{Z} was used instead.} The function returns @code{GSL_EFAILED} if there was a problem writing to the file. @end deftypefun diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/complex.texi gsl-1.10/doc/complex.texi *** gsl-1.9/doc/complex.texi 2007-01-04 12:14:37.000000000 +0000 --- gsl-1.10/doc/complex.texi 2007-09-10 10:17:56.000000000 +0100 *************** *** 36,42 **** @section Complex numbers @cindex representations of complex numbers @cindex polar form of complex numbers ! @tpindex gsl_complex Complex numbers are represented using the type @code{gsl_complex}. The internal representation of this type may vary across platforms and --- 36,42 ---- @section Complex numbers @cindex representations of complex numbers @cindex polar form of complex numbers ! @tindex gsl_complex Complex numbers are represented using the type @code{gsl_complex}. The internal representation of this type may vary across platforms and *************** *** 61,67 **** @deftypefun gsl_complex gsl_complex_rect (double @var{x}, double @var{y}) This function uses the rectangular cartesian components ! (@var{x},@var{y}) to return the complex number @math{z = x + i y}. @end deftypefun @deftypefun gsl_complex gsl_complex_polar (double @var{r}, double @var{theta}) --- 61,67 ---- @deftypefun gsl_complex gsl_complex_rect (double @var{x}, double @var{y}) This function uses the rectangular cartesian components ! (@var{x},@var{y}) to return the complex number @math{z = x + i y}. @inlinefn{} @end deftypefun @deftypefun gsl_complex gsl_complex_polar (double @var{r}, double @var{theta}) diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/eigen.texi gsl-1.10/doc/eigen.texi *** gsl-1.9/doc/eigen.texi 2007-01-24 15:30:54.000000000 +0000 --- gsl-1.10/doc/eigen.texi 2007-09-10 10:17:05.000000000 +0100 *************** *** 1,17 **** @cindex eigenvalues and eigenvectors This chapter describes functions for computing eigenvalues and eigenvectors of matrices. There are routines for real symmetric, ! real nonsymmetric, and complex hermitian matrices. Eigenvalues can ! be computed with or without eigenvectors. The hermitian matrix algorithms ! used are symmetric bidiagonalization followed by QR reduction. The ! nonsymmetric algorithm is the Francis QR double-shift. ! ! @cindex LAPACK, recommended for linear algebra ! These routines are intended for ``small'' systems where simple algorithms are ! acceptable. Anyone interested in finding eigenvalues and eigenvectors of ! large matrices will want to use the sophisticated routines found in ! @sc{lapack}. The Fortran version of @sc{lapack} is recommended as the ! standard package for large-scale linear algebra. The functions described in this chapter are declared in the header file @file{gsl_eigen.h}. --- 1,13 ---- @cindex eigenvalues and eigenvectors This chapter describes functions for computing eigenvalues and eigenvectors of matrices. There are routines for real symmetric, ! real nonsymmetric, complex hermitian, real generalized symmetric-definite, ! complex generalized hermitian-definite, and real generalized nonsymmetric ! eigensystems. Eigenvalues can be computed with or without eigenvectors. ! The hermitian and real symmetric matrix algorithms are symmetric bidiagonalization ! followed by QR reduction. The nonsymmetric algorithm is the Francis QR ! double-shift. The generalized nonsymmetric algorithm is the QZ method due ! to Moler and Stewart. The functions described in this chapter are declared in the header file @file{gsl_eigen.h}. *************** *** 19,25 **** @menu * Real Symmetric Matrices:: * Complex Hermitian Matrices:: ! * Real Nonsymmetric Matrices:: * Sorting Eigenvalues and Eigenvectors:: * Eigenvalue and Eigenvector Examples:: * Eigenvalue and Eigenvector References:: --- 15,24 ---- @menu * Real Symmetric Matrices:: * Complex Hermitian Matrices:: ! * Real Nonsymmetric Matrices:: ! * Real Generalized Symmetric-Definite Eigensystems:: ! * Complex Generalized Hermitian-Definite Eigensystems:: ! * Real Generalized Nonsymmetric Eigensystems:: * Sorting Eigenvalues and Eigenvectors:: * Eigenvalue and Eigenvector Examples:: * Eigenvalue and Eigenvector References:: *************** *** 30,35 **** --- 29,40 ---- @cindex symmetric matrix, real, eigensystem @cindex real symmetric matrix, eigensystem + For real symmetric matrices, the library uses the symmetric + bidiagonalization and QR reduction method. This is described in Golub + & van Loan, section 8.3. The computed eigenvalues are accurate to an + absolute accuracy of @math{\epsilon ||A||_2}, where @math{\epsilon} is + the machine precision. + @deftypefun {gsl_eigen_symm_workspace *} gsl_eigen_symm_alloc (const size_t @var{n}) This function allocates a workspace for computing eigenvalues of @var{n}-by-@var{n} real symmetric matrices. The size of the workspace *************** *** 224,230 **** Otherwise, on output, the diagonal of @var{A} will contain the @math{1}-by-@math{1} real eigenvalues and @math{2}-by-@math{2} complex conjugate eigenvalue systems, and the rest of @var{A} is ! destroyed. In rare cases, this function will fail to find all eigenvalues. If this happens, an error code is returned and the number of converged eigenvalues is stored in @code{w->n_evals}. The converged eigenvalues are stored in the beginning of @var{eval}. --- 229,235 ---- Otherwise, on output, the diagonal of @var{A} will contain the @math{1}-by-@math{1} real eigenvalues and @math{2}-by-@math{2} complex conjugate eigenvalue systems, and the rest of @var{A} is ! destroyed. In rare cases, this function may fail to find all eigenvalues. If this happens, an error code is returned and the number of converged eigenvalues is stored in @code{w->n_evals}. The converged eigenvalues are stored in the beginning of @var{eval}. *************** *** 252,258 **** Schur vectors. Then it finds eigenvectors of @math{T} and backtransforms them using the Schur vectors. The Schur vectors are destroyed in the process, but can be saved by using @code{gsl_eigen_nonsymmv_Z}. The ! computed eigenvectors are normalized to have Euclidean norm 1. On output, the upper portion of @var{A} contains the Schur form @math{T}. If @code{gsl_eigen_nonsymm} fails, no eigenvectors are computed, and an error code is returned. --- 257,263 ---- Schur vectors. Then it finds eigenvectors of @math{T} and backtransforms them using the Schur vectors. The Schur vectors are destroyed in the process, but can be saved by using @code{gsl_eigen_nonsymmv_Z}. The ! computed eigenvectors are normalized to have unit magnitude. On output, the upper portion of @var{A} contains the Schur form @math{T}. If @code{gsl_eigen_nonsymm} fails, no eigenvectors are computed, and an error code is returned. *************** *** 263,268 **** --- 268,597 ---- the Schur vectors into @var{Z}. @end deftypefun + @node Real Generalized Symmetric-Definite Eigensystems + @section Real Generalized Symmetric-Definite Eigensystems + @cindex generalized symmetric eigensystems + + The real generalized symmetric-definite eigenvalue problem is to find + eigenvalues @math{\lambda} and eigenvectors @math{x} such that + @tex + \beforedisplay + $$ + A x = \lambda B x + $$ + \afterdisplay + @end tex + @ifinfo + @example + A x = \lambda B x + @end example + @end ifinfo + where @math{A} and @math{B} are symmetric matrices, and @math{B} is + positive-definite. This problem reduces to the standard symmetric + eigenvalue problem by applying the Cholesky decomposition to @math{B}: + @tex + \beforedisplay + $$ + \eqalign{ + A x & = \lambda B x \cr + A x & = \lambda L L^t x \cr + \left( L^{-1} A L^{-t} \right) L^t x & = \lambda L^t x + } + $$ + \afterdisplay + @end tex + @ifinfo + @example + A x = \lambda B x + A x = \lambda L L^t x + ( L^@{-1@} A L^@{-t@} ) L^t x = \lambda L^t x + @end example + @end ifinfo + Therefore, the problem becomes @math{C y = \lambda y} where + @c{$C = L^{-1} A L^{-t}$} + @math{C = L^@{-1@} A L^@{-t@}} + is symmetric, and @math{y = L^t x}. The standard + symmetric eigensolver can be applied to the matrix @math{C}. + The resulting eigenvectors are backtransformed to find the + vectors of the original problem. The eigenvalues and eigenvectors + of the generalized symmetric-definite eigenproblem are always real. + + @deftypefun {gsl_eigen_gensymm_workspace *} gsl_eigen_gensymm_alloc (const size_t @var{n}) + This function allocates a workspace for computing eigenvalues of + @var{n}-by-@var{n} real generalized symmetric-definite eigensystems. The + size of the workspace is @math{O(2n)}. + @end deftypefun + + @deftypefun void gsl_eigen_gensymm_free (gsl_eigen_gensymm_workspace * @var{w}) + This function frees the memory associated with the workspace @var{w}. + @end deftypefun + + @deftypefun int gsl_eigen_gensymm (gsl_matrix * @var{A}, gsl_matrix * @var{B}, gsl_vector * @var{eval}, gsl_eigen_gensymm_workspace * @var{w}) + This function computes the eigenvalues of the real generalized + symmetric-definite matrix pair (@var{A}, @var{B}), and stores them + in @var{eval}, using the method outlined above. On output, @var{B} + contains its Cholesky decomposition and @var{A} is destroyed. + @end deftypefun + + @deftypefun {gsl_eigen_gensymmv_workspace *} gsl_eigen_gensymmv_alloc (const size_t @var{n}) + This function allocates a workspace for computing eigenvalues and + eigenvectors of @var{n}-by-@var{n} real generalized symmetric-definite + eigensystems. The size of the workspace is @math{O(4n)}. + @end deftypefun + + @deftypefun void gsl_eigen_gensymmv_free (gsl_eigen_gensymmv_workspace * @var{w}) + This function frees the memory associated with the workspace @var{w}. + @end deftypefun + + @deftypefun int gsl_eigen_gensymmv (gsl_matrix * @var{A}, gsl_matrix * @var{B}, gsl_vector * @var{eval}, gsl_matrix * @var{evec}, gsl_eigen_gensymmv_workspace * @var{w}) + This function computes the eigenvalues and eigenvectors of the real + generalized symmetric-definite matrix pair (@var{A}, @var{B}), and + stores them in @var{eval} and @var{evec} respectively. The computed + eigenvectors are normalized to have unit magnitude. On output, + @var{B} contains its Cholesky decomposition and @var{A} is destroyed. + @end deftypefun + + @node Complex Generalized Hermitian-Definite Eigensystems + @section Complex Generalized Hermitian-Definite Eigensystems + @cindex generalized hermitian definite eigensystems + + The complex generalized hermitian-definite eigenvalue problem is to find + eigenvalues @math{\lambda} and eigenvectors @math{x} such that + @tex + \beforedisplay + $$ + A x = \lambda B x + $$ + \afterdisplay + @end tex + @ifinfo + @example + A x = \lambda B x + @end example + @end ifinfo + where @math{A} and @math{B} are hermitian matrices, and @math{B} is + positive-definite. Similarly to the real case, this can be reduced + to @math{C y = \lambda y} where + @c{$C = L^{-1} A L^{-\dagger}$} + @math{C = L^@{-1@} A L^@{-H@}} + is hermitian, and + @c{$y = L^{\dagger} x$} + @math{y = L^H x}. The standard + hermitian eigensolver can be applied to the matrix @math{C}. + The resulting eigenvectors are backtransformed to find the + vectors of the original problem. The eigenvalues + of the generalized hermitian-definite eigenproblem are always real. + + @deftypefun {gsl_eigen_genherm_workspace *} gsl_eigen_genherm_alloc (const size_t @var{n}) + This function allocates a workspace for computing eigenvalues of + @var{n}-by-@var{n} complex generalized hermitian-definite eigensystems. The + size of the workspace is @math{O(3n)}. + @end deftypefun + + @deftypefun void gsl_eigen_genherm_free (gsl_eigen_genherm_workspace * @var{w}) + This function frees the memory associated with the workspace @var{w}. + @end deftypefun + + @deftypefun int gsl_eigen_genherm (gsl_matrix_complex * @var{A}, gsl_matrix_complex * @var{B}, gsl_vector * @var{eval}, gsl_eigen_genherm_workspace * @var{w}) + This function computes the eigenvalues of the complex generalized + hermitian-definite matrix pair (@var{A}, @var{B}), and stores them + in @var{eval}, using the method outlined above. On output, @var{B} + contains its Cholesky decomposition and @var{A} is destroyed. + @end deftypefun + + @deftypefun {gsl_eigen_genhermv_workspace *} gsl_eigen_genhermv_alloc (const size_t @var{n}) + This function allocates a workspace for computing eigenvalues and + eigenvectors of @var{n}-by-@var{n} complex generalized hermitian-definite + eigensystems. The size of the workspace is @math{O(5n)}. + @end deftypefun + + @deftypefun void gsl_eigen_genhermv_free (gsl_eigen_genhermv_workspace * @var{w}) + This function frees the memory associated with the workspace @var{w}. + @end deftypefun + + @deftypefun int gsl_eigen_genhermv (gsl_matrix_complex * @var{A}, gsl_matrix_complex * @var{B}, gsl_vector * @var{eval}, gsl_matrix_complex * @var{evec}, gsl_eigen_genhermv_workspace * @var{w}) + This function computes the eigenvalues and eigenvectors of the complex + generalized hermitian-definite matrix pair (@var{A}, @var{B}), and + stores them in @var{eval} and @var{evec} respectively. The computed + eigenvectors are normalized to have unit magnitude. On output, + @var{B} contains its Cholesky decomposition and @var{A} is destroyed. + @end deftypefun + + @node Real Generalized Nonsymmetric Eigensystems + @section Real Generalized Nonsymmetric Eigensystems + @cindex generalized eigensystems + + Given two square matrices (@math{A}, @math{B}), the generalized + nonsymmetric eigenvalue problem is to find eigenvalues @math{\lambda} and + eigenvectors @math{x} such that + @tex + \beforedisplay + $$ + A x = \lambda B x + $$ + \afterdisplay + @end tex + @ifinfo + @example + A x = \lambda B x + @end example + @end ifinfo + We may also define the problem as finding eigenvalues @math{\mu} and + eigenvectors @math{y} such that + @tex + \beforedisplay + $$ + \mu A y = B y + $$ + \afterdisplay + @end tex + @ifinfo + @example + \mu A y = B y + @end example + @end ifinfo + Note that these two problems are equivalent (with @math{\lambda = 1/\mu}) + if neither @math{\lambda} nor @math{\mu} is zero. If say, @math{\lambda} + is zero, then it is still a well defined eigenproblem, but its alternate + problem involving @math{\mu} is not. Therefore, to allow for zero + (and infinite) eigenvalues, the problem which is actually solved is + @tex + \beforedisplay + $$ + \beta A x = \alpha B x + $$ + \afterdisplay + @end tex + @ifinfo + @example + \beta A x = \alpha B x + @end example + @end ifinfo + The eigensolver routines below will return two values @math{\alpha} + and @math{\beta} and leave it to the user to perform the divisions + @math{\lambda = \alpha / \beta} and @math{\mu = \beta / \alpha}. + + If the determinant of the matrix pencil @math{A - \lambda B} is zero + for all @math{\lambda}, the problem is said to be singular; otherwise + it is called regular. Singularity normally leads to some + @math{\alpha = \beta = 0} which means the eigenproblem is ill-conditioned + and generally does not have well defined eigenvalue solutions. The + routines below are intended for regular matrix pencils and could yield + unpredictable results when applied to singular pencils. + + The solution of the real generalized nonsymmetric eigensystem problem for a + matrix pair @math{(A, B)} involves computing the generalized Schur + decomposition + @tex + \beforedisplay + $$ + A = Q S Z^T + $$ + $$ + B = Q T Z^T + $$ + \afterdisplay + @end tex + @ifinfo + @example + A = Q S Z^T + B = Q T Z^T + @end example + @end ifinfo + where @math{Q} and @math{Z} are orthogonal matrices of left and right + Schur vectors respectively, and @math{(S, T)} is the generalized Schur + form whose diagonal elements give the @math{\alpha} and @math{\beta} + values. The algorithm used is the QZ method due to Moler and Stewart + (see references). + + @deftypefun {gsl_eigen_gen_workspace *} gsl_eigen_gen_alloc (const size_t @var{n}) + This function allocates a workspace for computing eigenvalues of + @var{n}-by-@var{n} real generalized nonsymmetric eigensystems. The + size of the workspace is @math{O(n)}. + @end deftypefun + + @deftypefun void gsl_eigen_gen_free (gsl_eigen_gen_workspace * @var{w}) + This function frees the memory associated with the workspace @var{w}. + @end deftypefun + + @deftypefun void gsl_eigen_gen_params (const int @var{compute_s}, const int @var{compute_t}, const int @var{balance}, gsl_eigen_gen_workspace * @var{w}) + This function sets some parameters which determine how the eigenvalue + problem is solved in subsequent calls to @code{gsl_eigen_gen}. + + If @var{compute_s} is set to 1, the full Schur form @math{S} will be + computed by @code{gsl_eigen_gen}. If it is set to 0, + @math{S} will not be computed (this is the default setting). @math{S} + is a quasi upper triangular matrix with 1-by-1 and 2-by-2 blocks + on its diagonal. 1-by-1 blocks correspond to real eigenvalues, and + 2-by-2 blocks correspond to complex eigenvalues. + + If @var{compute_t} is set to 1, the full Schur form @math{T} will be + computed by @code{gsl_eigen_gen}. If it is set to 0, + @math{T} will not be computed (this is the default setting). @math{T} + is an upper triangular matrix with non-negative elements on its diagonal. + Any 2-by-2 blocks in @math{S} will correspond to a 2-by-2 diagonal + block in @math{T}. + + The @var{balance} parameter is currently ignored, since generalized + balancing is not yet implemented. + @end deftypefun + + @deftypefun int gsl_eigen_gen (gsl_matrix * @var{A}, gsl_matrix * @var{B}, gsl_vector_complex * @var{alpha}, gsl_vector * @var{beta}, gsl_eigen_gen_workspace * @var{w}) + This function computes the eigenvalues of the real generalized nonsymmetric + matrix pair (@var{A}, @var{B}), and stores them as pairs in + (@var{alpha}, @var{beta}), where @var{alpha} is complex and @var{beta} is + real. If @math{\beta_i} is non-zero, then + @math{\lambda = \alpha_i / \beta_i} is an eigenvalue. Likewise, + if @math{\alpha_i} is non-zero, then + @math{\mu = \beta_i / \alpha_i} is an eigenvalue of the alternate + problem @math{\mu A y = B y}. The elements of @var{beta} are normalized + to be non-negative. + + If @math{S} is desired, it is stored in @var{A} on output. If @math{T} + is desired, it is stored in @var{B} on output. The ordering of + eigenvalues in (@var{alpha}, @var{beta}) follows the ordering + of the diagonal blocks in the Schur forms @math{S} and @math{T}. In rare + cases, this function may fail to find all eigenvalues. If this occurs, an + error code is returned. + @end deftypefun + + @deftypefun int gsl_eigen_gen_QZ (gsl_matrix * @var{A}, gsl_matrix * @var{B}, gsl_vector_complex * @var{alpha}, gsl_vector * @var{beta}, gsl_matrix * @var{Q}, gsl_matrix * @var{Z}, gsl_eigen_gen_workspace * @var{w}) + This function is identical to @code{gsl_eigen_gen} except it also + computes the left and right Schur vectors and stores them into @var{Q} + and @var{Z} respectively. + @end deftypefun + + @deftypefun {gsl_eigen_genv_workspace *} gsl_eigen_genv_alloc (const size_t @var{n}) + This function allocates a workspace for computing eigenvalues and + eigenvectors of @var{n}-by-@var{n} real generalized nonsymmetric + eigensystems. The size of the workspace is @math{O(7n)}. + @end deftypefun + + @deftypefun void gsl_eigen_genv_free (gsl_eigen_genv_workspace * @var{w}) + This function frees the memory associated with the workspace @var{w}. + @end deftypefun + + @deftypefun int gsl_eigen_genv (gsl_matrix * @var{A}, gsl_matrix * @var{B}, gsl_vector_complex * @var{alpha}, gsl_vector * @var{beta}, gsl_matrix_complex * @var{evec}, gsl_eigen_genv_workspace * @var{w}) + This function computes eigenvalues and right eigenvectors of the + @var{n}-by-@var{n} real generalized nonsymmetric matrix pair + (@var{A}, @var{B}). The eigenvalues are stored in (@var{alpha}, @var{beta}) + and the eigenvectors are stored in @var{evec}. It first calls + @code{gsl_eigen_gen} to compute the eigenvalues, Schur forms, and + Schur vectors. Then it finds eigenvectors of the Schur forms and + backtransforms them using the Schur vectors. The Schur vectors are + destroyed in the process, but can be saved by using + @code{gsl_eigen_genv_QZ}. The computed eigenvectors are normalized + to have unit magnitude. On output, (@var{A}, @var{B}) contains + the generalized Schur form (@math{S}, @math{T}). If @code{gsl_eigen_gen} + fails, no eigenvectors are computed, and an error code is returned. + @end deftypefun + + @deftypefun int gsl_eigen_genv_QZ (gsl_matrix * @var{A}, gsl_matrix * @var{B}, gsl_vector_complex * @var{alpha}, gsl_vector * @var{beta}, gsl_matrix_complex * @var{evec}, gsl_matrix * @var{Q}, gsl_matrix * @var{Z}, gsl_eigen_genv_workspace * @var{w}) + This function is identical to @code{gsl_eigen_genv} except it also + computes the left and right Schur vectors and stores them into @var{Q} + and @var{Z} respectively. + @end deftypefun + @node Sorting Eigenvalues and Eigenvectors @section Sorting Eigenvalues and Eigenvectors @cindex sorting eigenvalues and eigenvectors *************** *** 298,307 **** @var{eval} and the corresponding complex eigenvectors stored in the columns of the matrix @var{evec} into ascending or descending order according to the value of the parameter @var{sort_type} as shown above. ! Only GSL_EIGEN_SORT_ABS_ASC and GSL_EIGEN_SORT_ABS_DESC are supported ! due to the eigenvalues being complex. @end deftypefun @comment @deftypefun int gsl_eigen_jacobi (gsl_matrix * @var{matrix}, gsl_vector * @var{eval}, gsl_matrix * @var{evec}, unsigned int @var{max_rot}, unsigned int * @var{nrot}) @comment This function finds the eigenvectors and eigenvalues of a real symmetric --- 627,659 ---- @var{eval} and the corresponding complex eigenvectors stored in the columns of the matrix @var{evec} into ascending or descending order according to the value of the parameter @var{sort_type} as shown above. ! Only @code{GSL_EIGEN_SORT_ABS_ASC} and @code{GSL_EIGEN_SORT_ABS_DESC} are ! supported due to the eigenvalues being complex. ! @end deftypefun ! ! @deftypefun int gsl_eigen_gensymmv_sort (gsl_vector * @var{eval}, gsl_matrix * @var{evec}, gsl_eigen_sort_t @var{sort_type}) ! This function simultaneously sorts the eigenvalues stored in the vector ! @var{eval} and the corresponding real eigenvectors stored in the columns ! of the matrix @var{evec} into ascending or descending order according to ! the value of the parameter @var{sort_type} as shown above. ! @end deftypefun ! ! @deftypefun int gsl_eigen_genhermv_sort (gsl_vector * @var{eval}, gsl_matrix_complex * @var{evec}, gsl_eigen_sort_t @var{sort_type}) ! This function simultaneously sorts the eigenvalues stored in the vector ! @var{eval} and the corresponding complex eigenvectors stored in the columns ! of the matrix @var{evec} into ascending or descending order according to ! the value of the parameter @var{sort_type} as shown above. @end deftypefun + @deftypefun int gsl_eigen_genv_sort (gsl_vector_complex * @var{alpha}, gsl_vector * @var{beta}, gsl_matrix_complex * @var{evec}, gsl_eigen_sort_t @var{sort_type}) + This function simultaneously sorts the eigenvalues stored in the vectors + (@var{alpha}, @var{beta}) and the corresponding complex eigenvectors + stored in the columns of the matrix @var{evec} into ascending or + descending order according to the value of the parameter @var{sort_type} + as shown above. Only @code{GSL_EIGEN_SORT_ABS_ASC} and + @code{GSL_EIGEN_SORT_ABS_DESC} are supported due to the eigenvalues being + complex. + @end deftypefun @comment @deftypefun int gsl_eigen_jacobi (gsl_matrix * @var{matrix}, gsl_vector * @var{eval}, gsl_matrix * @var{evec}, unsigned int @var{max_rot}, unsigned int * @var{nrot}) @comment This function finds the eigenvectors and eigenvalues of a real symmetric *************** *** 371,378 **** The following program illustrates the use of the nonsymmetric eigensolver, by computing the eigenvalues and eigenvectors of ! the Vandermonde matrix @math{V(x;i,j) = x_i^{n - j}} with ! @math{x = (-1,-2,3,4)}. @example @verbatiminclude examples/eigen_nonsymm.c --- 723,732 ---- The following program illustrates the use of the nonsymmetric eigensolver, by computing the eigenvalues and eigenvectors of ! the Vandermonde matrix ! @c{$V(x;i,j) = x_i^{n - j}$} ! @math{V(x;i,j) = x_i^@{n - j@}} ! with @math{x = (-1,-2,3,4)}. @example @verbatiminclude examples/eigen_nonsymm.c *************** *** 447,453 **** @end itemize @noindent ! The @sc{lapack} library is described in, @itemize @asis @item --- 801,819 ---- @end itemize @noindent ! Further information on the generalized eigensystems QZ algorithm ! can be found in this paper, ! ! @itemize @asis ! @item ! C. Moler, G. Stewart, "An Algorithm for Generalized Matrix Eigenvalue ! Problems," SIAM J. Numer. Anal., Vol 10, No 2, 1973. ! @end itemize ! ! @noindent ! @cindex LAPACK ! Eigensystem routines for very large matrices can be found in the ! Fortran library @sc{lapack}. The @sc{lapack} library is described in, @itemize @asis @item diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/err.texi gsl-1.10/doc/err.texi *** gsl-1.9/doc/err.texi 2007-01-04 12:15:13.000000000 +0000 --- gsl-1.10/doc/err.texi 2007-04-17 17:25:41.000000000 +0100 *************** *** 161,167 **** function @code{gsl_set_error_handler} which is also declared in @file{gsl_errno.h}, ! @deftypefun {gsl_error_handler_t *} gsl_set_error_handler (gsl_error_handler_t @var{new_handler}) This function sets a new error handler, @var{new_handler}, for the GSL library routines. The previous handler is returned (so that you can --- 161,167 ---- function @code{gsl_set_error_handler} which is also declared in @file{gsl_errno.h}, ! @deftypefun {gsl_error_handler_t *} gsl_set_error_handler (gsl_error_handler_t * @var{new_handler}) This function sets a new error handler, @var{new_handler}, for the GSL library routines. The previous handler is returned (so that you can diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/examples/multimin.c gsl-1.10/doc/examples/multimin.c *** gsl-1.9/doc/examples/multimin.c 1970-01-01 01:00:00.000000000 +0100 --- gsl-1.10/doc/examples/multimin.c 2007-08-21 15:41:21.000000000 +0100 *************** *** 0 **** --- 1,58 ---- + int + main (void) + { + size_t iter = 0; + int status; + + const gsl_multimin_fdfminimizer_type *T; + gsl_multimin_fdfminimizer *s; + + /* Position of the minimum (1,2), scale factors + 10,20, height 30. */ + double par[5] = { 1.0, 2.0, 10.0, 20.0, 30.0 }; + + gsl_vector *x; + gsl_multimin_function_fdf my_func; + + my_func.n = 2; + my_func.f = &my_f; + my_func.df = &my_df; + my_func.fdf = &my_fdf; + my_func.params = ∥ + + /* Starting point, x = (5,7) */ + x = gsl_vector_alloc (2); + gsl_vector_set (x, 0, 5.0); + gsl_vector_set (x, 1, 7.0); + + T = gsl_multimin_fdfminimizer_conjugate_fr; + s = gsl_multimin_fdfminimizer_alloc (T, 2); + + gsl_multimin_fdfminimizer_set (s, &my_func, x, 0.01, 1e-4); + + do + { + iter++; + status = gsl_multimin_fdfminimizer_iterate (s); + + if (status) + break; + + status = gsl_multimin_test_gradient (s->gradient, 1e-3); + + if (status == GSL_SUCCESS) + printf ("Minimum found at:\n"); + + printf ("%5d %.5f %.5f %10.5f\n", iter, + gsl_vector_get (s->x, 0), + gsl_vector_get (s->x, 1), + s->f); + + } + while (status == GSL_CONTINUE && iter < 100); + + gsl_multimin_fdfminimizer_free (s); + gsl_vector_free (x); + + return 0; + } diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/examples/multiminfn.c gsl-1.10/doc/examples/multiminfn.c *** gsl-1.9/doc/examples/multiminfn.c 1970-01-01 01:00:00.000000000 +0100 --- gsl-1.10/doc/examples/multiminfn.c 2007-08-21 15:41:21.000000000 +0100 *************** *** 0 **** --- 1,39 ---- + /* Paraboloid centered on (p[0],p[1]), with + scale factors (p[2],p[3]) and minimum p[4] */ + + double + my_f (const gsl_vector *v, void *params) + { + double x, y; + double *p = (double *)params; + + x = gsl_vector_get(v, 0); + y = gsl_vector_get(v, 1); + + return p[2] * (x - p[0]) * (x - p[0]) + + p[3] * (y - p[1]) * (y - p[1]) + p[4]; + } + + /* The gradient of f, df = (df/dx, df/dy). */ + void + my_df (const gsl_vector *v, void *params, + gsl_vector *df) + { + double x, y; + double *p = (double *)params; + + x = gsl_vector_get(v, 0); + y = gsl_vector_get(v, 1); + + gsl_vector_set(df, 0, 2.0 * p[2] * (x - p[0])); + gsl_vector_set(df, 1, 2.0 * p[3] * (y - p[1])); + } + + /* Compute both f and df together. */ + void + my_fdf (const gsl_vector *x, void *params, + double *f, gsl_vector *df) + { + *f = my_f(x, params); + my_df(x, params, df); + } diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/examples/multimin.out gsl-1.10/doc/examples/multimin.out *** gsl-1.9/doc/examples/multimin.out 1970-01-01 01:00:00.000000000 +0100 --- gsl-1.10/doc/examples/multimin.out 2007-08-21 15:41:21.000000000 +0100 *************** *** 0 **** --- 1,15 ---- + x y f + 1 4.99629 6.99072 687.84780 + 2 4.98886 6.97215 683.55456 + 3 4.97400 6.93501 675.01278 + 4 4.94429 6.86073 658.10798 + 5 4.88487 6.71217 625.01340 + 6 4.76602 6.41506 561.68440 + 7 4.52833 5.82083 446.46694 + 8 4.05295 4.63238 261.79422 + 9 3.10219 2.25548 75.49762 + 10 2.85185 1.62963 67.03704 + 11 2.19088 1.76182 45.31640 + 12 0.86892 2.02622 30.18555 + Minimum found at: + 13 1.00000 2.00000 30.00000 diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/examples/nmsimplex.c gsl-1.10/doc/examples/nmsimplex.c *** gsl-1.9/doc/examples/nmsimplex.c 1970-01-01 01:00:00.000000000 +0100 --- gsl-1.10/doc/examples/nmsimplex.c 2007-08-21 15:41:21.000000000 +0100 *************** *** 0 **** --- 1,62 ---- + int + main(void) + { + double par[5] = {1.0, 2.0, 10.0, 20.0, 30.0}; + + const gsl_multimin_fminimizer_type *T = + gsl_multimin_fminimizer_nmsimplex; + gsl_multimin_fminimizer *s = NULL; + gsl_vector *ss, *x; + gsl_multimin_function minex_func; + + size_t iter = 0; + int status; + double size; + + /* Starting point */ + x = gsl_vector_alloc (2); + gsl_vector_set (x, 0, 5.0); + gsl_vector_set (x, 1, 7.0); + + /* Set initial step sizes to 1 */ + ss = gsl_vector_alloc (2); + gsl_vector_set_all (ss, 1.0); + + /* Initialize method and iterate */ + minex_func.n = 2; + minex_func.f = &my_f; + minex_func.params = (void *)∥ + + s = gsl_multimin_fminimizer_alloc (T, 2); + gsl_multimin_fminimizer_set (s, &minex_func, x, ss); + + do + { + iter++; + status = gsl_multimin_fminimizer_iterate(s); + + if (status) + break; + + size = gsl_multimin_fminimizer_size (s); + status = gsl_multimin_test_size (size, 1e-2); + + if (status == GSL_SUCCESS) + { + printf ("converged to minimum at\n"); + } + + printf ("%5d %10.3e %10.3ef f() = %7.3f size = %.3f\n", + iter, + gsl_vector_get (s->x, 0), + gsl_vector_get (s->x, 1), + s->fval, size); + } + while (status == GSL_CONTINUE && iter < 100); + + gsl_vector_free(x); + gsl_vector_free(ss); + gsl_multimin_fminimizer_free (s); + + return status; + } diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/examples/nmsimplex.out gsl-1.10/doc/examples/nmsimplex.out *** gsl-1.9/doc/examples/nmsimplex.out 1970-01-01 01:00:00.000000000 +0100 --- gsl-1.10/doc/examples/nmsimplex.out 2007-08-21 15:41:21.000000000 +0100 *************** *** 0 **** --- 1,26 ---- + 1 6.500e+00 5.000e+00 f() = 512.500 size = 1.082 + 2 5.250e+00 4.000e+00 f() = 290.625 size = 1.372 + 3 5.250e+00 4.000e+00 f() = 290.625 size = 1.372 + 4 5.500e+00 1.000e+00 f() = 252.500 size = 1.372 + 5 2.625e+00 3.500e+00 f() = 101.406 size = 1.823 + 6 3.469e+00 1.375e+00 f() = 98.760 size = 1.526 + 7 1.820e+00 3.156e+00 f() = 63.467 size = 1.105 + 8 1.820e+00 3.156e+00 f() = 63.467 size = 1.105 + 9 1.016e+00 2.812e+00 f() = 43.206 size = 1.105 + 10 2.041e+00 2.008e+00 f() = 40.838 size = 0.645 + 11 1.236e+00 1.664e+00 f() = 32.816 size = 0.645 + 12 1.236e+00 1.664e+00 f() = 32.816 size = 0.447 + 13 5.225e-01 1.980e+00 f() = 32.288 size = 0.447 + 14 1.103e+00 2.073e+00 f() = 30.214 size = 0.345 + 15 1.103e+00 2.073e+00 f() = 30.214 size = 0.264 + 16 1.103e+00 2.073e+00 f() = 30.214 size = 0.160 + 17 9.864e-01 1.934e+00 f() = 30.090 size = 0.132 + 18 9.190e-01 1.987e+00 f() = 30.069 size = 0.092 + 19 1.028e+00 2.017e+00 f() = 30.013 size = 0.056 + 20 1.028e+00 2.017e+00 f() = 30.013 size = 0.046 + 21 1.028e+00 2.017e+00 f() = 30.013 size = 0.033 + 22 9.874e-01 1.985e+00 f() = 30.006 size = 0.028 + 23 9.846e-01 1.995e+00 f() = 30.003 size = 0.023 + 24 1.007e+00 2.003e+00 f() = 30.001 size = 0.012 + converged to minimum at + 25 1.007e+00 2.003e+00 f() = 30.001 size = 0.010 diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/fitting.texi gsl-1.10/doc/fitting.texi *** gsl-1.9/doc/fitting.texi 2007-01-04 12:15:49.000000000 +0000 --- gsl-1.10/doc/fitting.texi 2007-05-30 11:34:12.000000000 +0100 *************** *** 129,138 **** --- 129,142 ---- square root of the corresponding diagonal elements of the covariance matrix, @c{$\sigma_{c_a} = \sqrt{C_{aa}}$} @math{\sigma_@{c_a@} = \sqrt@{C_@{aa@}@}}. + The correlation coefficient of the fit parameters @math{c_a} and @math{c_b} + is given by @c{$\rho_{ab} = C_{ab} / \sqrt{C_{aa} C_{bb}}$} + @math{\rho_@{ab@} = C_@{ab@} / \sqrt@{C_@{aa@} C_@{bb@}@}}. @node Linear regression @section Linear regression @cindex linear regression + The functions described in this section can be used to perform least-squares fits to a straight line model, @math{Y(c,x) = c_0 + c_1 x}. *************** *** 147,153 **** points around the best-fit line and returned via the parameters (@var{cov00}, @var{cov01}, @var{cov11}). The sum of squares of the residuals from the best-fit line is returned ! in @var{sumsq}. @end deftypefun @deftypefun int gsl_fit_wlinear (const double * @var{x}, const size_t @var{xstride}, const double * @var{w}, const size_t @var{wstride}, const double * @var{y}, const size_t @var{ystride}, size_t @var{n}, double * @var{c0}, double * @var{c1}, double * @var{cov00}, double * @var{cov01}, double * @var{cov11}, double * @var{chisq}) --- 151,157 ---- points around the best-fit line and returned via the parameters (@var{cov00}, @var{cov01}, @var{cov11}). The sum of squares of the residuals from the best-fit line is returned ! in @var{sumsq}. Note: the correlation coefficient of the data can be computed using @code{gsl_stats_correlation} (@pxref{Correlation}), it does not depend on the fit. @end deftypefun @deftypefun int gsl_fit_wlinear (const double * @var{x}, const size_t @var{xstride}, const double * @var{w}, const size_t @var{wstride}, const double * @var{y}, const size_t @var{ystride}, size_t @var{n}, double * @var{c0}, double * @var{c1}, double * @var{cov00}, double * @var{cov01}, double * @var{cov11}, double * @var{chisq}) *************** *** 165,174 **** @var{chisq}. @end deftypefun ! @deftypefun int gsl_fit_linear_est (double @var{x}, double @var{c0}, double @var{c1}, double @var{c00}, double @var{c01}, double @var{c11}, double * @var{y}, double * @var{y_err}) This function uses the best-fit linear regression coefficients ! @var{c0},@var{c1} and their covariance ! @var{cov00},@var{cov01},@var{cov11} to compute the fitted function @var{y} and its standard deviation @var{y_err} for the model @math{Y = c_0 + c_1 X} at the point @var{x}. @end deftypefun --- 169,178 ---- @var{chisq}. @end deftypefun ! @deftypefun int gsl_fit_linear_est (double @var{x}, double @var{c0}, double @var{c1}, double @var{cov00}, double @var{cov01}, double @var{cov11}, double * @var{y}, double * @var{y_err}) This function uses the best-fit linear regression coefficients ! @var{c0}, @var{c1} and their covariance ! @var{cov00}, @var{cov01}, @var{cov11} to compute the fitted function @var{y} and its standard deviation @var{y_err} for the model @math{Y = c_0 + c_1 X} at the point @var{x}. @end deftypefun *************** *** 205,211 **** returned in @var{chisq}. @end deftypefun ! @deftypefun int gsl_fit_mul_est (double @var{x}, double @var{c1}, double @var{c11}, double * @var{y}, double * @var{y_err}) This function uses the best-fit linear regression coefficient @var{c1} and its covariance @var{cov11} to compute the fitted function @var{y} and its standard deviation @var{y_err} for the model @math{Y = --- 209,215 ---- returned in @var{chisq}. @end deftypefun ! @deftypefun int gsl_fit_mul_est (double @var{x}, double @var{c1}, double @var{cov11}, double * @var{y}, double * @var{y_err}) This function uses the best-fit linear regression coefficient @var{c1} and its covariance @var{cov11} to compute the fitted function @var{y} and its standard deviation @var{y_err} for the model @math{Y = diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/gpl.texi gsl-1.10/doc/gpl.texi *** gsl-1.9/doc/gpl.texi 2005-05-21 14:28:05.000000000 +0100 --- gsl-1.10/doc/gpl.texi 2007-07-02 17:29:29.000000000 +0100 *************** *** 1,4 **** ! @center Version 2, June 1991 @iftex @smallerfonts @rm @end iftex --- 1,4 ---- ! @center Version 3, 29 June 2007 @iftex @smallerfonts @rm @end iftex *************** *** 6,13 **** @c This file is intended to be included in another file. @display ! Copyright @copyright{} 1989, 1991 Free Software Foundation, Inc. ! 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. --- 6,12 ---- @c This file is intended to be included in another file. @display ! Copyright @copyright{} 2007 Free Software Foundation, Inc. @url{http://fsf.org/} Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. *************** *** 15,405 **** @heading Preamble ! The licenses for most software are designed to take away your ! freedom to share and change it. By contrast, the GNU General Public ! License is intended to guarantee your freedom to share and change free ! software---to make sure the software is free for all its users. This ! General Public License applies to most of the Free Software ! Foundation's software and to any other program whose authors commit to ! using it. (Some other Free Software Foundation software is covered by ! the GNU Library General Public License instead.) You can apply it to ! your programs, too. ! When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for ! this service if you wish), that you receive source code or can get it ! if you want it, that you can change the software or use pieces of it ! in new free programs; and that you know you can do these things. ! ! To protect your rights, we need to make restrictions that forbid ! anyone to deny you these rights or to ask you to surrender the rights. ! These restrictions translate to certain responsibilities for you if you ! distribute copies of the software, or if you modify it. ! ! For example, if you distribute copies of such a program, whether ! gratis or for a fee, you must give the recipients all the rights that ! you have. You must make sure that they, too, receive or can get the ! source code. And you must show them these terms so they know their ! rights. ! ! We protect your rights with two steps: (1) copyright the software, and ! (2) offer you this license which gives you legal permission to copy, ! distribute and/or modify the software. ! ! Also, for each author's protection and ours, we want to make certain ! that everyone understands that there is no warranty for this free ! software. If the software is modified by someone else and passed on, we ! want its recipients to know that what they have is not the original, so ! that any problems introduced by others will not reflect on the original ! authors' reputations. ! ! Finally, any free program is threatened constantly by software ! patents. We wish to avoid the danger that redistributors of a free ! program will individually obtain patent licenses, in effect making the ! program proprietary. To prevent this, we have made it clear that any ! patent must be licensed for everyone's free use or not licensed at all. ! The precise terms and conditions for copying, distribution and modification follow. ! @iftex ! @heading TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION ! @end iftex ! @ifinfo ! @center TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION ! @end ifinfo @enumerate 0 ! @item ! This License applies to any program or other work which contains ! a notice placed by the copyright holder saying it may be distributed ! under the terms of this General Public License. The ``Program'', below, ! refers to any such program or work, and a ``work based on the Program'' ! means either the Program or any derivative work under copyright law: ! that is to say, a work containing the Program or a portion of it, ! either verbatim or with modifications and/or translated into another ! language. (Hereinafter, translation is included without limitation in ! the term ``modification''.) Each licensee is addressed as ``you''. ! ! Activities other than copying, distribution and modification are not ! covered by this License; they are outside its scope. The act of ! running the Program is not restricted, and the output from the Program ! is covered only if its contents constitute a work based on the ! Program (independent of having been made by running the Program). ! Whether that is true depends on what the Program does. ! ! @item ! You may copy and distribute verbatim copies of the Program's ! source code as you receive it, in any medium, provided that you ! conspicuously and appropriately publish on each copy an appropriate ! copyright notice and disclaimer of warranty; keep intact all the ! notices that refer to this License and to the absence of any warranty; ! and give any other recipients of the Program a copy of this License ! along with the Program. ! ! You may charge a fee for the physical act of transferring a copy, and ! you may at your option offer warranty protection in exchange for a fee. ! ! @item ! You may modify your copy or copies of the Program or any portion ! of it, thus forming a work based on the Program, and copy and ! distribute such modifications or work under the terms of Section 1 ! above, provided that you also meet all of these conditions: ! @enumerate a ! @item ! You must cause the modified files to carry prominent notices ! stating that you changed the files and the date of any change. ! @item ! You must cause any work that you distribute or publish, that in ! whole or in part contains or is derived from the Program or any ! part thereof, to be licensed as a whole at no charge to all third ! parties under the terms of this License. ! ! @item ! If the modified program normally reads commands interactively ! when run, you must cause it, when started running for such ! interactive use in the most ordinary way, to print or display an ! announcement including an appropriate copyright notice and a ! notice that there is no warranty (or else, saying that you provide ! a warranty) and that users may redistribute the program under ! these conditions, and telling the user how to view a copy of this ! License. (Exception: if the Program itself is interactive but ! does not normally print such an announcement, your work based on ! the Program is not required to print an announcement.) @end enumerate ! These requirements apply to the modified work as a whole. If ! identifiable sections of that work are not derived from the Program, ! and can be reasonably considered independent and separate works in ! themselves, then this License, and its terms, do not apply to those ! sections when you distribute them as separate works. But when you ! distribute the same sections as part of a whole which is a work based ! on the Program, the distribution of the whole must be on the terms of ! this License, whose permissions for other licensees extend to the ! entire whole, and thus to each and every part regardless of who wrote it. ! ! Thus, it is not the intent of this section to claim rights or contest ! your rights to work written entirely by you; rather, the intent is to ! exercise the right to control the distribution of derivative or ! collective works based on the Program. ! ! In addition, mere aggregation of another work not based on the Program ! with the Program (or with a work based on the Program) on a volume of ! a storage or distribution medium does not bring the other work under ! the scope of this License. ! ! @item ! You may copy and distribute the Program (or a work based on it, ! under Section 2) in object code or executable form under the terms of ! Sections 1 and 2 above provided that you also do one of the following: @enumerate a @item ! Accompany it with the complete corresponding machine-readable ! source code, which must be distributed under the terms of Sections ! 1 and 2 above on a medium customarily used for software interchange; or, ! ! @item ! Accompany it with a written offer, valid for at least three ! years, to give any third party, for a charge no more than your ! cost of physically performing source distribution, a complete ! machine-readable copy of the corresponding source code, to be ! distributed under the terms of Sections 1 and 2 above on a medium ! customarily used for software interchange; or, ! ! @item ! Accompany it with the information you received as to the offer ! to distribute corresponding source code. (This alternative is ! allowed only for noncommercial distribution and only if you ! received the program in object code or executable form with such ! an offer, in accord with Subsection b above.) @end enumerate ! The source code for a work means the preferred form of the work for ! making modifications to it. For an executable work, complete source ! code means all the source code for all modules it contains, plus any ! associated interface definition files, plus the scripts used to ! control compilation and installation of the executable. However, as a ! special exception, the source code distributed need not include ! anything that is normally distributed (in either source or binary ! form) with the major components (compiler, kernel, and so on) of the ! operating system on which the executable runs, unless that component ! itself accompanies the executable. ! ! If distribution of executable or object code is made by offering ! access to copy from a designated place, then offering equivalent ! access to copy the source code from the same place counts as ! distribution of the source code, even though third parties are not ! compelled to copy the source along with the object code. ! ! @item ! You may not copy, modify, sublicense, or distribute the Program ! except as expressly provided under this License. Any attempt ! otherwise to copy, modify, sublicense or distribute the Program is ! void, and will automatically terminate your rights under this License. ! However, parties who have received copies, or rights, from you under ! this License will not have their licenses terminated so long as such ! parties remain in full compliance. ! ! @item ! You are not required to accept this License, since you have not ! signed it. However, nothing else grants you permission to modify or ! distribute the Program or its derivative works. These actions are ! prohibited by law if you do not accept this License. Therefore, by ! modifying or distributing the Program (or any work based on the ! Program), you indicate your acceptance of this License to do so, and ! all its terms and conditions for copying, distributing or modifying ! the Program or works based on it. ! ! @item ! Each time you redistribute the Program (or any work based on the ! Program), the recipient automatically receives a license from the ! original licensor to copy, distribute or modify the Program subject to ! these terms and conditions. You may not impose any further ! restrictions on the recipients' exercise of the rights granted herein. ! You are not responsible for enforcing compliance by third parties to ! this License. @item ! If, as a consequence of a court judgment or allegation of patent ! infringement or for any other reason (not limited to patent issues), ! conditions are imposed on you (whether by court order, agreement or ! otherwise) that contradict the conditions of this License, they do not ! excuse you from the conditions of this License. If you cannot ! distribute so as to satisfy simultaneously your obligations under this ! License and any other pertinent obligations, then as a consequence you ! may not distribute the Program at all. For example, if a patent ! license would not permit royalty-free redistribution of the Program by ! all those who receive copies directly or indirectly through you, then ! the only way you could satisfy both it and this License would be to ! refrain entirely from distribution of the Program. ! ! If any portion of this section is held invalid or unenforceable under ! any particular circumstance, the balance of the section is intended to ! apply and the section as a whole is intended to apply in other ! circumstances. ! ! It is not the purpose of this section to induce you to infringe any ! patents or other property right claims or to contest validity of any ! such claims; this section has the sole purpose of protecting the ! integrity of the free software distribution system, which is ! implemented by public license practices. Many people have made ! generous contributions to the wide range of software distributed ! through that system in reliance on consistent application of that ! system; it is up to the author/donor to decide if he or she is willing ! to distribute software through any other system and a licensee cannot ! impose that choice. ! ! This section is intended to make thoroughly clear what is believed to ! be a consequence of the rest of this License. ! ! @item ! If the distribution and/or use of the Program is restricted in ! certain countries either by patents or by copyrighted interfaces, the ! original copyright holder who places the Program under this License ! may add an explicit geographical distribution limitation excluding ! those countries, so that distribution is permitted only in or among ! countries not thus excluded. In such case, this License incorporates ! the limitation as if written in the body of this License. @item ! The Free Software Foundation may publish revised and/or new versions ! of the General Public License from time to time. Such new versions will ! be similar in spirit to the present version, but may differ in detail to ! address new problems or concerns. ! ! Each version is given a distinguishing version number. If the Program ! specifies a version number of this License which applies to it and ``any ! later version'', you have the option of following the terms and conditions ! either of that version or of any later version published by the Free ! Software Foundation. If the Program does not specify a version number of ! this License, you may choose any version ever published by the Free Software ! Foundation. @item ! If you wish to incorporate parts of the Program into other free ! programs whose distribution conditions are different, write to the author ! to ask for permission. For software which is copyrighted by the Free ! Software Foundation, write to the Free Software Foundation; we sometimes ! make exceptions for this. Our decision will be guided by the two goals ! of preserving the free status of all derivatives of our free software and ! of promoting the sharing and reuse of software generally. ! @iftex ! @heading NO WARRANTY ! @end iftex ! @ifinfo ! @center NO WARRANTY ! @end ifinfo @item ! BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY ! FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN ! OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES ! PROVIDE THE PROGRAM ``AS IS'' WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED ! OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF ! MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS ! TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE ! PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, ! REPAIR OR CORRECTION. @item IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING ! WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR ! REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, ! INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING ! OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED ! TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY ! YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER ! PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE ! POSSIBILITY OF SUCH DAMAGES. @end enumerate - @iftex @heading END OF TERMS AND CONDITIONS - @end iftex - @ifinfo - @center END OF TERMS AND CONDITIONS - @end ifinfo ! @page ! @heading Appendix: How to Apply These Terms to Your New Programs ! If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it ! free software which everyone can redistribute and change under these terms. ! To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively ! convey the exclusion of warranty; and each file should have at least the ``copyright'' line and a pointer to where the full notice is found. @smallexample ! @var{one line to give the program's name and a brief idea @*of what it does.} ! Copyright (C) @var{yyyy} @var{name of author} ! This program is free software; you can redistribute it ! and/or modify it under the terms of the GNU General Public ! License as published by the Free Software Foundation; either ! version 2 of the License, or (at your option) any later ! version. ! ! This program is distributed in the hope that it will be ! useful, but WITHOUT ANY WARRANTY; without even the implied ! warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR ! PURPOSE. See the GNU General Public License for more ! details. ! ! You should have received a copy of the GNU General Public ! License along with this program; if not, write to the Free ! Software Foundation, Inc., 59 Temple Place - Suite 330, ! Boston, MA 02111-1307, USA. @end smallexample Also add information on how to contact you by electronic and paper mail. ! If the program is interactive, make it output a short notice like this ! when it starts in an interactive mode: @smallexample ! Gnomovision version 69, Copyright (C) 19@var{yy} @var{name of author} ! Gnomovision comes with ABSOLUTELY NO WARRANTY; for details ! type `show w'. This is free software, and you are welcome ! to redistribute it under certain conditions; type `show c' ! for details. @end smallexample The hypothetical commands @samp{show w} and @samp{show c} should show ! the appropriate parts of the General Public License. Of course, the ! commands you use may be called something other than @samp{show w} and ! @samp{show c}; they could even be mouse-clicks or menu items---whatever ! suits your program. ! ! @need 1500 ! You should also get your employer (if you work as a programmer) or your ! school, if any, to sign a ``copyright disclaimer'' for the program, if ! necessary. Here is a sample; alter the names: ! ! @smallexample ! Yoyodyne, Inc., hereby disclaims all copyright interest in ! the program `Gnomovision' (which makes passes at compilers) ! written by James Hacker. ! ! @var{signature of Ty Coon}, 1 April 1989 ! Ty Coon, President of Vice ! @end smallexample ! ! @iftex ! @smallerfonts @rm ! @end iftex ! This General Public License does not permit incorporating your program into ! proprietary programs. If your program is a subroutine library, you may ! consider it more useful to permit linking proprietary applications with the ! library. If this is what you want to do, use the GNU Library General ! Public License instead of this License. @iftex @* --- 14,721 ---- @heading Preamble ! The GNU General Public License is a free, copyleft license for ! software and other kinds of works. ! The licenses for most software and other practical works are designed ! to take away your freedom to share and change the works. By contrast, ! the GNU General Public License is intended to guarantee your freedom ! to share and change all versions of a program--to make sure it remains ! free software for all its users. We, the Free Software Foundation, ! use the GNU General Public License for most of our software; it ! applies also to any other work released this way by its authors. You ! can apply it to your programs, too. ! ! When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for ! them if you wish), that you receive source code or can get it if you ! want it, that you can change the software or use pieces of it in new ! free programs, and that you know you can do these things. ! ! To protect your rights, we need to prevent others from denying you ! these rights or asking you to surrender the rights. Therefore, you ! have certain responsibilities if you distribute copies of the ! software, or if you modify it: responsibilities to respect the freedom ! of others. ! ! For example, if you distribute copies of such a program, whether ! gratis or for a fee, you must pass on to the recipients the same ! freedoms that you received. You must make sure that they, too, ! receive or can get the source code. And you must show them these ! terms so they know their rights. ! ! Developers that use the GNU GPL protect your rights with two steps: ! (1) assert copyright on the software, and (2) offer you this License ! giving you legal permission to copy, distribute and/or modify it. ! ! For the developers' and authors' protection, the GPL clearly explains ! that there is no warranty for this free software. For both users' and ! authors' sake, the GPL requires that modified versions be marked as ! changed, so that their problems will not be attributed erroneously to ! authors of previous versions. ! ! Some devices are designed to deny users access to install or run ! modified versions of the software inside them, although the ! manufacturer can do so. This is fundamentally incompatible with the ! aim of protecting users' freedom to change the software. The ! systematic pattern of such abuse occurs in the area of products for ! individuals to use, which is precisely where it is most unacceptable. ! Therefore, we have designed this version of the GPL to prohibit the ! practice for those products. If such problems arise substantially in ! other domains, we stand ready to extend this provision to those ! domains in future versions of the GPL, as needed to protect the ! freedom of users. ! ! Finally, every program is threatened constantly by software patents. ! States should not allow patents to restrict development and use of ! software on general-purpose computers, but in those that do, we wish ! to avoid the special danger that patents applied to a free program ! could make it effectively proprietary. To prevent this, the GPL ! assures that patents cannot be used to render the program non-free. ! The precise terms and conditions for copying, distribution and modification follow. ! @heading TERMS AND CONDITIONS @enumerate 0 ! @item Definitions. ! ``This License'' refers to version 3 of the GNU General Public License. ! ``Copyright'' also means copyright-like laws that apply to other kinds ! of works, such as semiconductor masks. ! ! ``The Program'' refers to any copyrightable work licensed under this ! License. Each licensee is addressed as ``you''. ``Licensees'' and ! ``recipients'' may be individuals or organizations. ! ! To ``modify'' a work means to copy from or adapt all or part of the work ! in a fashion requiring copyright permission, other than the making of ! an exact copy. The resulting work is called a ``modified version'' of ! the earlier work or a work ``based on'' the earlier work. ! ! A ``covered work'' means either the unmodified Program or a work based ! on the Program. ! ! To ``propagate'' a work means to do anything with it that, without ! permission, would make you directly or secondarily liable for ! infringement under applicable copyright law, except executing it on a ! computer or modifying a private copy. Propagation includes copying, ! distribution (with or without modification), making available to the ! public, and in some countries other activities as well. ! ! To ``convey'' a work means any kind of propagation that enables other ! parties to make or receive copies. Mere interaction with a user ! through a computer network, with no transfer of a copy, is not ! conveying. ! ! An interactive user interface displays ``Appropriate Legal Notices'' to ! the extent that it includes a convenient and prominently visible ! feature that (1) displays an appropriate copyright notice, and (2) ! tells the user that there is no warranty for the work (except to the ! extent that warranties are provided), that licensees may convey the ! work under this License, and how to view a copy of this License. If ! the interface presents a list of user commands or options, such as a ! menu, a prominent item in the list meets this criterion. ! ! @item Source Code. ! ! The ``source code'' for a work means the preferred form of the work for ! making modifications to it. ``Object code'' means any non-source form ! of a work. ! ! A ``Standard Interface'' means an interface that either is an official ! standard defined by a recognized standards body, or, in the case of ! interfaces specified for a particular programming language, one that ! is widely used among developers working in that language. ! ! The ``System Libraries'' of an executable work include anything, other ! than the work as a whole, that (a) is included in the normal form of ! packaging a Major Component, but which is not part of that Major ! Component, and (b) serves only to enable use of the work with that ! Major Component, or to implement a Standard Interface for which an ! implementation is available to the public in source code form. A ! ``Major Component'', in this context, means a major essential component ! (kernel, window system, and so on) of the specific operating system ! (if any) on which the executable work runs, or a compiler used to ! produce the work, or an object code interpreter used to run it. ! ! The ``Corresponding Source'' for a work in object code form means all ! the source code needed to generate, install, and (for an executable ! work) run the object code and to modify the work, including scripts to ! control those activities. However, it does not include the work's ! System Libraries, or general-purpose tools or generally available free ! programs which are used unmodified in performing those activities but ! which are not part of the work. For example, Corresponding Source ! includes interface definition files associated with source files for ! the work, and the source code for shared libraries and dynamically ! linked subprograms that the work is specifically designed to require, ! such as by intimate data communication or control flow between those ! subprograms and other parts of the work. ! ! The Corresponding Source need not include anything that users can ! regenerate automatically from other parts of the Corresponding Source. ! ! The Corresponding Source for a work in source code form is that same ! work. ! ! @item Basic Permissions. ! ! All rights granted under this License are granted for the term of ! copyright on the Program, and are irrevocable provided the stated ! conditions are met. This License explicitly affirms your unlimited ! permission to run the unmodified Program. The output from running a ! covered work is covered by this License only if the output, given its ! content, constitutes a covered work. This License acknowledges your ! rights of fair use or other equivalent, as provided by copyright law. ! ! You may make, run and propagate covered works that you do not convey, ! without conditions so long as your license otherwise remains in force. ! You may convey covered works to others for the sole purpose of having ! them make modifications exclusively for you, or provide you with ! facilities for running those works, provided that you comply with the ! terms of this License in conveying all material for which you do not ! control copyright. Those thus making or running the covered works for ! you must do so exclusively on your behalf, under your direction and ! control, on terms that prohibit them from making any copies of your ! copyrighted material outside their relationship with you. ! ! Conveying under any other circumstances is permitted solely under the ! conditions stated below. Sublicensing is not allowed; section 10 ! makes it unnecessary. ! ! @item Protecting Users' Legal Rights From Anti-Circumvention Law. ! ! No covered work shall be deemed part of an effective technological ! measure under any applicable law fulfilling obligations under article ! 11 of the WIPO copyright treaty adopted on 20 December 1996, or ! similar laws prohibiting or restricting circumvention of such ! measures. ! ! When you convey a covered work, you waive any legal power to forbid ! circumvention of technological measures to the extent such ! circumvention is effected by exercising rights under this License with ! respect to the covered work, and you disclaim any intention to limit ! operation or modification of the work as a means of enforcing, against ! the work's users, your or third parties' legal rights to forbid ! circumvention of technological measures. ! ! @item Conveying Verbatim Copies. ! ! You may convey verbatim copies of the Program's source code as you ! receive it, in any medium, provided that you conspicuously and ! appropriately publish on each copy an appropriate copyright notice; ! keep intact all notices stating that this License and any ! non-permissive terms added in accord with section 7 apply to the code; ! keep intact all notices of the absence of any warranty; and give all ! recipients a copy of this License along with the Program. ! ! You may charge any price or no price for each copy that you convey, ! and you may offer support or warranty protection for a fee. ! ! @item Conveying Modified Source Versions. ! ! You may convey a work based on the Program, or the modifications to ! produce it from the Program, in the form of source code under the ! terms of section 4, provided that you also meet all of these ! conditions: ! ! @enumerate a ! @item ! The work must carry prominent notices stating that you modified it, ! and giving a relevant date. ! ! @item ! The work must carry prominent notices stating that it is released ! under this License and any conditions added under section 7. This ! requirement modifies the requirement in section 4 to ``keep intact all ! notices''. ! ! @item ! You must license the entire work, as a whole, under this License to ! anyone who comes into possession of a copy. This License will ! therefore apply, along with any applicable section 7 additional terms, ! to the whole of the work, and all its parts, regardless of how they ! are packaged. This License gives no permission to license the work in ! any other way, but it does not invalidate such permission if you have ! separately received it. ! ! @item ! If the work has interactive user interfaces, each must display ! Appropriate Legal Notices; however, if the Program has interactive ! interfaces that do not display Appropriate Legal Notices, your work ! need not make them do so. @end enumerate ! A compilation of a covered work with other separate and independent ! works, which are not by their nature extensions of the covered work, ! and which are not combined with it such as to form a larger program, ! in or on a volume of a storage or distribution medium, is called an ! ``aggregate'' if the compilation and its resulting copyright are not ! used to limit the access or legal rights of the compilation's users ! beyond what the individual works permit. Inclusion of a covered work ! in an aggregate does not cause this License to apply to the other ! parts of the aggregate. ! ! @item Conveying Non-Source Forms. ! ! You may convey a covered work in object code form under the terms of ! sections 4 and 5, provided that you also convey the machine-readable ! Corresponding Source under the terms of this License, in one of these ! ways: @enumerate a @item ! Convey the object code in, or embodied in, a physical product ! (including a physical distribution medium), accompanied by the ! Corresponding Source fixed on a durable physical medium customarily ! used for software interchange. ! ! @item ! Convey the object code in, or embodied in, a physical product ! (including a physical distribution medium), accompanied by a written ! offer, valid for at least three years and valid for as long as you ! offer spare parts or customer support for that product model, to give ! anyone who possesses the object code either (1) a copy of the ! Corresponding Source for all the software in the product that is ! covered by this License, on a durable physical medium customarily used ! for software interchange, for a price no more than your reasonable ! cost of physically performing this conveying of source, or (2) access ! to copy the Corresponding Source from a network server at no charge. ! ! @item ! Convey individual copies of the object code with a copy of the written ! offer to provide the Corresponding Source. This alternative is ! allowed only occasionally and noncommercially, and only if you ! received the object code with such an offer, in accord with subsection ! 6b. ! ! @item ! Convey the object code by offering access from a designated place ! (gratis or for a charge), and offer equivalent access to the ! Corresponding Source in the same way through the same place at no ! further charge. You need not require recipients to copy the ! Corresponding Source along with the object code. If the place to copy ! the object code is a network server, the Corresponding Source may be ! on a different server (operated by you or a third party) that supports ! equivalent copying facilities, provided you maintain clear directions ! next to the object code saying where to find the Corresponding Source. ! Regardless of what server hosts the Corresponding Source, you remain ! obligated to ensure that it is available for as long as needed to ! satisfy these requirements. ! ! @item ! Convey the object code using peer-to-peer transmission, provided you ! inform other peers where the object code and Corresponding Source of ! the work are being offered to the general public at no charge under ! subsection 6d. ! @end enumerate ! A separable portion of the object code, whose source code is excluded ! from the Corresponding Source as a System Library, need not be ! included in conveying the object code work. ! ! A ``User Product'' is either (1) a ``consumer product'', which means any ! tangible personal property which is normally used for personal, ! family, or household purposes, or (2) anything designed or sold for ! incorporation into a dwelling. In determining whether a product is a ! consumer product, doubtful cases shall be resolved in favor of ! coverage. For a particular product received by a particular user, ! ``normally used'' refers to a typical or common use of that class of ! product, regardless of the status of the particular user or of the way ! in which the particular user actually uses, or expects or is expected ! to use, the product. A product is a consumer product regardless of ! whether the product has substantial commercial, industrial or ! non-consumer uses, unless such uses represent the only significant ! mode of use of the product. ! ! ``Installation Information'' for a User Product means any methods, ! procedures, authorization keys, or other information required to ! install and execute modified versions of a covered work in that User ! Product from a modified version of its Corresponding Source. The ! information must suffice to ensure that the continued functioning of ! the modified object code is in no case prevented or interfered with ! solely because modification has been made. ! ! If you convey an object code work under this section in, or with, or ! specifically for use in, a User Product, and the conveying occurs as ! part of a transaction in which the right of possession and use of the ! User Product is transferred to the recipient in perpetuity or for a ! fixed term (regardless of how the transaction is characterized), the ! Corresponding Source conveyed under this section must be accompanied ! by the Installation Information. But this requirement does not apply ! if neither you nor any third party retains the ability to install ! modified object code on the User Product (for example, the work has ! been installed in ROM). ! ! The requirement to provide Installation Information does not include a ! requirement to continue to provide support service, warranty, or ! updates for a work that has been modified or installed by the ! recipient, or for the User Product in which it has been modified or ! installed. Access to a network may be denied when the modification ! itself materially and adversely affects the operation of the network ! or violates the rules and protocols for communication across the ! network. ! ! Corresponding Source conveyed, and Installation Information provided, ! in accord with this section must be in a format that is publicly ! documented (and with an implementation available to the public in ! source code form), and must require no special password or key for ! unpacking, reading or copying. ! ! @item Additional Terms. ! ! ``Additional permissions'' are terms that supplement the terms of this ! License by making exceptions from one or more of its conditions. ! Additional permissions that are applicable to the entire Program shall ! be treated as though they were included in this License, to the extent ! that they are valid under applicable law. If additional permissions ! apply only to part of the Program, that part may be used separately ! under those permissions, but the entire Program remains governed by ! this License without regard to the additional permissions. ! ! When you convey a copy of a covered work, you may at your option ! remove any additional permissions from that copy, or from any part of ! it. (Additional permissions may be written to require their own ! removal in certain cases when you modify the work.) You may place ! additional permissions on material, added by you to a covered work, ! for which you have or can give appropriate copyright permission. ! ! Notwithstanding any other provision of this License, for material you ! add to a covered work, you may (if authorized by the copyright holders ! of that material) supplement the terms of this License with terms: + @enumerate a @item ! Disclaiming warranty or limiting liability differently from the terms ! of sections 15 and 16 of this License; or @item ! Requiring preservation of specified reasonable legal notices or author ! attributions in that material or in the Appropriate Legal Notices ! displayed by works containing it; or @item ! Prohibiting misrepresentation of the origin of that material, or ! requiring that modified versions of such material be marked in ! reasonable ways as different from the original version; or ! @item ! Limiting the use for publicity purposes of names of licensors or ! authors of the material; or @item ! Declining to grant rights under trademark law for use of some trade ! names, trademarks, or service marks; or @item + Requiring indemnification of licensors and authors of that material by + anyone who conveys the material (or modified versions of it) with + contractual assumptions of liability to the recipient, for any + liability that these contractual assumptions directly impose on those + licensors and authors. + @end enumerate + + All other non-permissive additional terms are considered ``further + restrictions'' within the meaning of section 10. If the Program as you + received it, or any part of it, contains a notice stating that it is + governed by this License along with a term that is a further + restriction, you may remove that term. If a license document contains + a further restriction but permits relicensing or conveying under this + License, you may add to a covered work material governed by the terms + of that license document, provided that the further restriction does + not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you + must place, in the relevant source files, a statement of the + additional terms that apply to those files, or a notice indicating + where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the + form of a separately written license, or stated as exceptions; the + above requirements apply either way. + + @item Termination. + + You may not propagate or modify a covered work except as expressly + provided under this License. Any attempt otherwise to propagate or + modify it is void, and will automatically terminate your rights under + this License (including any patent licenses granted under the third + paragraph of section 11). + + However, if you cease all violation of this License, then your license + from a particular copyright holder is reinstated (a) provisionally, + unless and until the copyright holder explicitly and finally + terminates your license, and (b) permanently, if the copyright holder + fails to notify you of the violation by some reasonable means prior to + 60 days after the cessation. + + Moreover, your license from a particular copyright holder is + reinstated permanently if the copyright holder notifies you of the + violation by some reasonable means, this is the first time you have + received notice of violation of this License (for any work) from that + copyright holder, and you cure the violation prior to 30 days after + your receipt of the notice. + + Termination of your rights under this section does not terminate the + licenses of parties who have received copies or rights from you under + this License. If your rights have been terminated and not permanently + reinstated, you do not qualify to receive new licenses for the same + material under section 10. + + @item Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or run + a copy of the Program. Ancillary propagation of a covered work + occurring solely as a consequence of using peer-to-peer transmission + to receive a copy likewise does not require acceptance. However, + nothing other than this License grants you permission to propagate or + modify any covered work. These actions infringe copyright if you do + not accept this License. Therefore, by modifying or propagating a + covered work, you indicate your acceptance of this License to do so. + + @item Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically + receives a license from the original licensors, to run, modify and + propagate that work, subject to this License. You are not responsible + for enforcing compliance by third parties with this License. + + An ``entity transaction'' is a transaction transferring control of an + organization, or substantially all assets of one, or subdividing an + organization, or merging organizations. If propagation of a covered + work results from an entity transaction, each party to that + transaction who receives a copy of the work also receives whatever + licenses to the work the party's predecessor in interest had or could + give under the previous paragraph, plus a right to possession of the + Corresponding Source of the work from the predecessor in interest, if + the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the + rights granted or affirmed under this License. For example, you may + not impose a license fee, royalty, or other charge for exercise of + rights granted under this License, and you may not initiate litigation + (including a cross-claim or counterclaim in a lawsuit) alleging that + any patent claim is infringed by making, using, selling, offering for + sale, or importing the Program or any portion of it. + + @item Patents. + + A ``contributor'' is a copyright holder who authorizes use under this + License of the Program or a work on which the Program is based. The + work thus licensed is called the contributor's ``contributor version''. + + A contributor's ``essential patent claims'' are all patent claims owned + or controlled by the contributor, whether already acquired or + hereafter acquired, that would be infringed by some manner, permitted + by this License, of making, using, or selling its contributor version, + but do not include claims that would be infringed only as a + consequence of further modification of the contributor version. For + purposes of this definition, ``control'' includes the right to grant + patent sublicenses in a manner consistent with the requirements of + this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free + patent license under the contributor's essential patent claims, to + make, use, sell, offer for sale, import and otherwise run, modify and + propagate the contents of its contributor version. + + In the following three paragraphs, a ``patent license'' is any express + agreement or commitment, however denominated, not to enforce a patent + (such as an express permission to practice a patent or covenant not to + sue for patent infringement). To ``grant'' such a patent license to a + party means to make such an agreement or commitment not to enforce a + patent against the party. + + If you convey a covered work, knowingly relying on a patent license, + and the Corresponding Source of the work is not available for anyone + to copy, free of charge and under the terms of this License, through a + publicly available network server or other readily accessible means, + then you must either (1) cause the Corresponding Source to be so + available, or (2) arrange to deprive yourself of the benefit of the + patent license for this particular work, or (3) arrange, in a manner + consistent with the requirements of this License, to extend the patent + license to downstream recipients. ``Knowingly relying'' means you have + actual knowledge that, but for the patent license, your conveying the + covered work in a country, or your recipient's use of the covered work + in a country, would infringe one or more identifiable patents in that + country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or + arrangement, you convey, or propagate by procuring conveyance of, a + covered work, and grant a patent license to some of the parties + receiving the covered work authorizing them to use, propagate, modify + or convey a specific copy of the covered work, then the patent license + you grant is automatically extended to all recipients of the covered + work and works based on it. + + A patent license is ``discriminatory'' if it does not include within the + scope of its coverage, prohibits the exercise of, or is conditioned on + the non-exercise of one or more of the rights that are specifically + granted under this License. You may not convey a covered work if you + are a party to an arrangement with a third party that is in the + business of distributing software, under which you make payment to the + third party based on the extent of your activity of conveying the + work, and under which the third party grants, to any of the parties + who would receive the covered work from you, a discriminatory patent + license (a) in connection with copies of the covered work conveyed by + you (or copies made from those copies), or (b) primarily for and in + connection with specific products or compilations that contain the + covered work, unless you entered into that arrangement, or that patent + license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting + any implied license or other defenses to infringement that may + otherwise be available to you under applicable patent law. + + @item No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or + otherwise) that contradict the conditions of this License, they do not + excuse you from the conditions of this License. If you cannot convey + a covered work so as to satisfy simultaneously your obligations under + this License and any other pertinent obligations, then as a + consequence you may not convey it at all. For example, if you agree + to terms that obligate you to collect a royalty for further conveying + from those to whom you convey the Program, the only way you could + satisfy both those terms and this License would be to refrain entirely + from conveying the Program. + + @item Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have + permission to link or combine any covered work with a work licensed + under version 3 of the GNU Affero General Public License into a single + combined work, and to convey the resulting work. The terms of this + License will continue to apply to the part which is the covered work, + but the special requirements of the GNU Affero General Public License, + section 13, concerning interaction through a network will apply to the + combination as such. + + @item Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions + of the GNU General Public License from time to time. Such new + versions will be similar in spirit to the present version, but may + differ in detail to address new problems or concerns. + + Each version is given a distinguishing version number. If the Program + specifies that a certain numbered version of the GNU General Public + License ``or any later version'' applies to it, you have the option of + following the terms and conditions either of that numbered version or + of any later version published by the Free Software Foundation. If + the Program does not specify a version number of the GNU General + Public License, you may choose any version ever published by the Free + Software Foundation. + + If the Program specifies that a proxy can decide which future versions + of the GNU General Public License can be used, that proxy's public + statement of acceptance of a version permanently authorizes you to + choose that version for the Program. + + Later license versions may give you additional or different + permissions. However, no additional obligations are imposed on any + author or copyright holder as a result of your choosing to follow a + later version. + + @item Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY + APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT + HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM ``AS IS'' WITHOUT + WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT + LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND + PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE + DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR + CORRECTION. + + @item Limitation of Liability. + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING ! WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR ! CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, ! INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ! ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT ! NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR ! LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM ! TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER ! PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. ! ! @item Interpretation of Sections 15 and 16. ! ! If the disclaimer of warranty and limitation of liability provided ! above cannot be given local legal effect according to their terms, ! reviewing courts shall apply local law that most closely approximates ! an absolute waiver of all civil liability in connection with the ! Program, unless a warranty or assumption of liability accompanies a ! copy of the Program in return for a fee. ! @end enumerate @heading END OF TERMS AND CONDITIONS ! @heading How to Apply These Terms to Your New Programs ! If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it ! free software which everyone can redistribute and change under these ! terms. ! To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively ! state the exclusion of warranty; and each file should have at least the ``copyright'' line and a pointer to where the full notice is found. @smallexample ! @var{one line to give the program's name and a brief idea @*of what it does.} ! Copyright (C) @var{year} @var{name of author} ! ! This program is free software: you can redistribute it and/or modify ! it under the terms of the GNU General Public License as published by ! the Free Software Foundation, either version 3 of the License, or (at ! your option) any later version. ! ! This program is distributed in the hope that it will be useful, but ! WITHOUT ANY WARRANTY; without even the implied warranty of ! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ! General Public License for more details. ! You should have received a copy of the GNU General Public License ! along with this program. If not, see @url{http://www.gnu.org/licenses/}. @end smallexample Also add information on how to contact you by electronic and paper mail. ! If the program does terminal interaction, make it output a short ! notice like this when it starts in an interactive mode: @smallexample ! @var{program} Copyright (C) @var{year} @var{name of author} ! This program comes with ABSOLUTELY NO WARRANTY; for details type @samp{show w}. ! This is free software, and you are welcome to redistribute it ! under certain conditions; type @samp{show c} for details. @end smallexample The hypothetical commands @samp{show w} and @samp{show c} should show ! the appropriate parts of the General Public License. Of course, your ! program's commands might be different; for a GUI interface, you would ! use an ``about box''. ! ! You should also get your employer (if you work as a programmer) or school, ! if any, to sign a ``copyright disclaimer'' for the program, if necessary. ! For more information on this, and how to apply and follow the GNU GPL, see ! @url{http://www.gnu.org/licenses/}. ! ! The GNU General Public License does not permit incorporating your ! program into proprietary programs. If your program is a subroutine ! library, you may consider it more useful to permit linking proprietary ! applications with the library. If this is what you want to do, use ! the GNU Lesser General Public License instead of this License. But ! first, please read @url{http://www.gnu.org/philosophy/why-not-lgpl.html}. @iftex @* diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/gsl-ref.texi gsl-1.10/doc/gsl-ref.texi *** gsl-1.9/doc/gsl-ref.texi 2007-02-20 13:07:06.000000000 +0000 --- gsl-1.10/doc/gsl-ref.texi 2007-09-10 10:17:56.000000000 +0100 *************** *** 119,124 **** --- 119,132 ---- \gdef\arg{\hbox{\rm arg}} % avoid temporary clobbering of arg in texinfo-4.8 @end tex + @macro inlinefn + An inline version of this function is used when @code{HAVE_INLINE} is defined. + @end macro + + @macro inlinefns + Inline versions of these function are used when @code{HAVE_INLINE} is defined. + @end macro + @include version-ref.texi @set GSL @i{GNU Scientific Library} *************** *** 518,524 **** Implementation of the Mathieu functions. @item Patrick Alken ! Implementation of non-symmetric eigensystems and B-splines. @end table --- 526,532 ---- Implementation of the Mathieu functions. @item Patrick Alken ! Implementation of non-symmetric and generalized eigensystems and B-splines. @end table diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/histogram.texi gsl-1.10/doc/histogram.texi *** gsl-1.9/doc/histogram.texi 2006-03-31 18:44:53.000000000 +0100 --- gsl-1.10/doc/histogram.texi 2007-04-14 11:17:02.000000000 +0100 *************** *** 1055,1061 **** @deftypefun int gsl_histogram2d_fscanf (FILE * @var{stream}, gsl_histogram2d * @var{h}) This function reads formatted data from the stream @var{stream} into the histogram @var{h}. The data is assumed to be in the five-column format ! used by @code{gsl_histogram_fprintf}. The histogram @var{h} must be preallocated with the correct lengths since the function uses the sizes of @var{h} to determine how many numbers to read. The function returns 0 for success and @code{GSL_EFAILED} if there was a problem reading from --- 1055,1061 ---- @deftypefun int gsl_histogram2d_fscanf (FILE * @var{stream}, gsl_histogram2d * @var{h}) This function reads formatted data from the stream @var{stream} into the histogram @var{h}. The data is assumed to be in the five-column format ! used by @code{gsl_histogram2d_fprintf}. The histogram @var{h} must be preallocated with the correct lengths since the function uses the sizes of @var{h} to determine how many numbers to read. The function returns 0 for success and @code{GSL_EFAILED} if there was a problem reading from diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/ieee754.texi gsl-1.10/doc/ieee754.texi *** gsl-1.9/doc/ieee754.texi 2006-03-16 18:00:21.000000000 +0000 --- gsl-1.10/doc/ieee754.texi 2007-04-23 14:44:01.000000000 +0100 *************** *** 285,291 **** If the requested modes are not supported by the platform being used then the function calls the error handler and returns an error code of ! @code{GSL_EUNSUP}. When options are specified using this method, the resulting mode is based on a default setting of the highest available precision (double --- 285,291 ---- If the requested modes are not supported by the platform being used then the function calls the error handler and returns an error code of ! @code{GSL_EUNSUP}. When options are specified using this method, the resulting mode is based on a default setting of the highest available precision (double *************** *** 311,316 **** --- 311,323 ---- This choice ignores any errors relating to small numbers (either denormalized, or underflowing to zero) but traps overflows, division by zero and invalid operations. + + Note that on the x86 series of processors this function sets both the + original x87 mode and the newer @sc{mxcsr} mode, which controls SSE + floating-point operations. The SSE floating-point units do not have a + precision-control bit, and always work in double-precision. The + single-precision and extended-precision keywords have no effect in + this case. @end deftypefun @noindent *************** *** 371,382 **** below the correct value, an order of magnitude worse than the result obtained in the @code{round-to-nearest} mode. ! If we change to rounding mode to @code{round-up} then the series no ! longer converges (the reason is that when we add each term to the sum ! the final result is always rounded up. This is guaranteed to increase the sum ! by at least one tick on each iteration). To avoid this problem we would ! need to use a safer converge criterion, such as @code{while (fabs(sum - ! oldsum) > epsilon)}, with a suitably chosen value of epsilon. Finally we can see the effect of computing the sum using single-precision rounding, in the default @code{round-to-nearest} --- 378,390 ---- below the correct value, an order of magnitude worse than the result obtained in the @code{round-to-nearest} mode. ! If we change to rounding mode to @code{round-up} then the final result ! is higher than the correct value (when we add each term to the sum the ! final result is always rounded up, which increases the sum by at least ! one tick until the added term underflows to zero). To avoid this ! problem we would need to use a safer converge criterion, such as ! @code{while (fabs(sum - oldsum) > epsilon)}, with a suitably chosen ! value of epsilon. Finally we can see the effect of computing the sum using single-precision rounding, in the default @code{round-to-nearest} diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/integration.texi gsl-1.10/doc/integration.texi *** gsl-1.9/doc/integration.texi 2007-01-04 12:16:25.000000000 +0000 --- gsl-1.10/doc/integration.texi 2007-05-17 12:45:12.000000000 +0100 *************** *** 387,393 **** @ifinfo @example ! \int_@{+\infty@}^@{b@} dx f(x) = \int_0^1 dt f(b - (1-t)/t)/t^2 @end example --- 387,393 ---- @ifinfo @example ! \int_@{-\infty@}^@{b@} dx f(x) = \int_0^1 dt f(b - (1-t)/t)/t^2 @end example diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/interp.texi gsl-1.10/doc/interp.texi *** gsl-1.9/doc/interp.texi 2006-03-16 18:00:21.000000000 +0000 --- gsl-1.10/doc/interp.texi 2007-09-10 10:17:56.000000000 +0100 *************** *** 49,55 **** @var{size}. The interpolation object (@code{gsl_interp}) does not save the data arrays @var{xa} and @var{ya} and only stores the static state computed from the data. The @var{xa} data array is always assumed to be ! strictly ordered; the behavior for other arrangements is not defined. @end deftypefun @deftypefun void gsl_interp_free (gsl_interp * @var{interp}) --- 49,56 ---- @var{size}. The interpolation object (@code{gsl_interp}) does not save the data arrays @var{xa} and @var{ya} and only stores the static state computed from the data. The @var{xa} data array is always assumed to be ! strictly ordered, with increasing @math{x} values; ! the behavior for other arrangements is not defined. @end deftypefun @deftypefun void gsl_interp_free (gsl_interp * @var{interp}) *************** *** 143,149 **** @deftypefun size_t gsl_interp_bsearch (const double @var{x_array}[], double @var{x}, size_t @var{index_lo}, size_t @var{index_hi}) This function returns the index @math{i} of the array @var{x_array} such that @code{x_array[i] <= x < x_array[i+1]}. The index is searched for ! in the range [@var{index_lo},@var{index_hi}]. @end deftypefun @deftypefun {gsl_interp_accel *} gsl_interp_accel_alloc (void) --- 144,150 ---- @deftypefun size_t gsl_interp_bsearch (const double @var{x_array}[], double @var{x}, size_t @var{index_lo}, size_t @var{index_hi}) This function returns the index @math{i} of the array @var{x_array} such that @code{x_array[i] <= x < x_array[i+1]}. The index is searched for ! in the range [@var{index_lo},@var{index_hi}]. @inlinefn{} @end deftypefun @deftypefun {gsl_interp_accel *} gsl_interp_accel_alloc (void) *************** *** 158,164 **** of size @var{size}, using the given accelerator @var{a}. This is how lookups are performed during evaluation of an interpolation. The function returns an index @math{i} such that @code{x_array[i] <= x < ! x_array[i+1]}. @end deftypefun @deftypefun void gsl_interp_accel_free (gsl_interp_accel* @var{acc}) --- 159,165 ---- of size @var{size}, using the given accelerator @var{a}. This is how lookups are performed during evaluation of an interpolation. The function returns an index @math{i} such that @code{x_array[i] <= x < ! x_array[i+1]}. @inlinefn{} @end deftypefun @deftypefun void gsl_interp_accel_free (gsl_interp_accel* @var{acc}) diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/linalg.texi gsl-1.10/doc/linalg.texi *** gsl-1.9/doc/linalg.texi 2007-01-04 12:46:02.000000000 +0000 --- gsl-1.10/doc/linalg.texi 2007-09-10 10:17:05.000000000 +0100 *************** *** 7,18 **** library provides linear algebra operations which operate directly on the @code{gsl_vector} and @code{gsl_matrix} objects. These routines use the standard algorithms from Golub & Van Loan's @cite{Matrix ! Computations}. ! ! @cindex LAPACK, recommended for linear algebra ! When dealing with very large systems the routines found in @sc{lapack} ! should be considered. These support specialized data representations ! and other optimizations. The functions described in this chapter are declared in the header file @file{gsl_linalg.h}. --- 7,13 ---- library provides linear algebra operations which operate directly on the @code{gsl_vector} and @code{gsl_matrix} objects. These routines use the standard algorithms from Golub & Van Loan's @cite{Matrix ! Computations} with Level-1 and Level-2 BLAS calls for efficiency. The functions described in this chapter are declared in the header file @file{gsl_linalg.h}. *************** *** 27,32 **** --- 22,28 ---- * Tridiagonal Decomposition of Real Symmetric Matrices:: * Tridiagonal Decomposition of Hermitian Matrices:: * Hessenberg Decomposition of Real Matrices:: + * Hessenberg-Triangular Decomposition of Real Matrices:: * Bidiagonalization:: * Householder Transformations:: * Householder solver for linear systems:: *************** *** 241,246 **** --- 237,250 ---- matrix @math{Q}. @end deftypefun + @deftypefun int gsl_linalg_QR_QTmat (const gsl_matrix * @var{QR}, const gsl_vector * @var{tau}, gsl_matrix * @var{A}) + This function applies the matrix @math{Q^T} encoded in the decomposition + (@var{QR},@var{tau}) to the matrix @var{A}, storing the result @math{Q^T + A} in @var{A}. The matrix multiplication is carried out directly using + the encoding of the Householder vectors without needing to form the full + matrix @math{Q^T}. + @end deftypefun + @deftypefun int gsl_linalg_QR_Rsolve (const gsl_matrix * @var{QR}, const gsl_vector * @var{b}, gsl_vector * @var{x}) This function solves the triangular system @math{R x = b} for @var{x}. It may be useful if the product @math{b' = Q^T b} has already *************** *** 507,533 **** back-substitution. @deftypefun int gsl_linalg_cholesky_decomp (gsl_matrix * @var{A}) ! This function factorizes the positive-definite symmetric square matrix ! @var{A} into the Cholesky decomposition @math{A = L L^T}. On input only the diagonal and lower-triangular part of the matrix @var{A} are needed. On output the diagonal and lower triangular part of the input matrix @var{A} contain the matrix @math{L}. The upper triangular part of the input matrix contains @math{L^T}, the diagonal terms being identical for both @math{L} and @math{L^T}. If the matrix is not positive-definite then the decomposition will fail, returning the ! error code @code{GSL_EDOM}. @end deftypefun @deftypefun int gsl_linalg_cholesky_solve (const gsl_matrix * @var{cholesky}, const gsl_vector * @var{b}, gsl_vector * @var{x}) ! This function solves the system @math{A x = b} using the Cholesky decomposition of @math{A} into the matrix @var{cholesky} given by ! @code{gsl_linalg_cholesky_decomp}. @end deftypefun @deftypefun int gsl_linalg_cholesky_svx (const gsl_matrix * @var{cholesky}, gsl_vector * @var{x}) ! This function solves the system @math{A x = b} in-place using the Cholesky decomposition of @math{A} into the matrix @var{cholesky} given ! by @code{gsl_linalg_cholesky_decomp}. On input @var{x} should contain the right-hand side @math{b}, which is replaced by the solution on output. @end deftypefun --- 511,548 ---- back-substitution. @deftypefun int gsl_linalg_cholesky_decomp (gsl_matrix * @var{A}) ! @deftypefunx int gsl_linalg_complex_cholesky_decomp (gsl_matrix_complex * @var{A}) ! These functions factorize the positive-definite square matrix ! @var{A} into the Cholesky decomposition @math{A = L L^T} (or ! @c{$A = L L^{\dagger}$} ! @math{A = L L^H} ! for the complex case). On input only the diagonal and lower-triangular part of the matrix @var{A} are needed. On output the diagonal and lower triangular part of the input matrix @var{A} contain the matrix @math{L}. The upper triangular part of the input matrix contains @math{L^T}, the diagonal terms being identical for both @math{L} and @math{L^T}. If the matrix is not positive-definite then the decomposition will fail, returning the ! error code @code{GSL_EDOM}. ! ! When testing whether a matrix is positive-definite, disable the error ! handler first to avoid triggering an error. @end deftypefun @deftypefun int gsl_linalg_cholesky_solve (const gsl_matrix * @var{cholesky}, const gsl_vector * @var{b}, gsl_vector * @var{x}) ! @deftypefunx int gsl_linalg_complex_cholesky_solve (const gsl_matrix_complex * @var{cholesky}, const gsl_vector_complex * @var{b}, gsl_vector_complex * @var{x}) ! These functions solve the system @math{A x = b} using the Cholesky decomposition of @math{A} into the matrix @var{cholesky} given by ! @code{gsl_linalg_cholesky_decomp} or ! @code{gsl_linalg_complex_cholesky_decomp}. @end deftypefun @deftypefun int gsl_linalg_cholesky_svx (const gsl_matrix * @var{cholesky}, gsl_vector * @var{x}) ! @deftypefunx int gsl_linalg_complex_cholesky_svx (const gsl_matrix_complex * @var{cholesky}, gsl_vector_complex * @var{x}) ! These functions solve the system @math{A x = b} in-place using the Cholesky decomposition of @math{A} into the matrix @var{cholesky} given ! by @code{gsl_linalg_cholesky_decomp} or ! @code{gsl_linalg_complex_cholesky_decomp}. On input @var{x} should contain the right-hand side @math{b}, which is replaced by the solution on output. @end deftypefun *************** *** 635,641 **** @section Hessenberg Decomposition of Real Matrices @cindex hessenberg decomposition ! A general matrix @math{A} can be decomposed by orthogonal similarity transformations into the form @tex \beforedisplay --- 650,656 ---- @section Hessenberg Decomposition of Real Matrices @cindex hessenberg decomposition ! A general real matrix @math{A} can be decomposed by orthogonal similarity transformations into the form @tex \beforedisplay *************** *** 657,663 **** for the nonsymmetric eigenvalue problem, but has applications in other areas as well. ! @deftypefun int gsl_linalg_hessenberg (gsl_matrix * @var{A}, gsl_vector * @var{tau}) This function computes the Hessenberg decomposition of the matrix @var{A} by applying the similarity transformation @math{H = U^T A U}. On output, @math{H} is stored in the upper portion of @var{A}. The --- 672,678 ---- for the nonsymmetric eigenvalue problem, but has applications in other areas as well. ! @deftypefun int gsl_linalg_hessenberg_decomp (gsl_matrix * @var{A}, gsl_vector * @var{tau}) This function computes the Hessenberg decomposition of the matrix @var{A} by applying the similarity transformation @math{H = U^T A U}. On output, @math{H} is stored in the upper portion of @var{A}. The *************** *** 673,679 **** This function constructs the orthogonal matrix @math{U} from the information stored in the Hessenberg matrix @var{H} along with the vector @var{tau}. @var{H} and @var{tau} are outputs from ! @code{gsl_linalg_hessenberg}. @end deftypefun @deftypefun int gsl_linalg_hessenberg_unpack_accum (gsl_matrix * @var{H}, gsl_vector * @var{tau}, gsl_matrix * @var{V}) --- 688,694 ---- This function constructs the orthogonal matrix @math{U} from the information stored in the Hessenberg matrix @var{H} along with the vector @var{tau}. @var{H} and @var{tau} are outputs from ! @code{gsl_linalg_hessenberg_decomp}. @end deftypefun @deftypefun int gsl_linalg_hessenberg_unpack_accum (gsl_matrix * @var{H}, gsl_vector * @var{tau}, gsl_matrix * @var{V}) *************** *** 685,694 **** @var{V} must have @var{N} columns but may have any number of rows. @end deftypefun ! @deftypefun void gsl_linalg_hessenberg_set_zero (gsl_matrix * @var{H}) This function sets the lower triangular portion of @var{H}, below the subdiagonal, to zero. It is useful for clearing out the ! Householder vectors after calling @code{gsl_linalg_hessenberg}. @end deftypefun @node Bidiagonalization --- 700,746 ---- @var{V} must have @var{N} columns but may have any number of rows. @end deftypefun ! @deftypefun int gsl_linalg_hessenberg_set_zero (gsl_matrix * @var{H}) This function sets the lower triangular portion of @var{H}, below the subdiagonal, to zero. It is useful for clearing out the ! Householder vectors after calling @code{gsl_linalg_hessenberg_decomp}. ! @end deftypefun ! ! @node Hessenberg-Triangular Decomposition of Real Matrices ! @section Hessenberg-Triangular Decomposition of Real Matrices ! @cindex hessenberg triangular decomposition ! ! A general real matrix pair (@math{A}, @math{B}) can be decomposed by ! orthogonal similarity transformations into the form ! @tex ! \beforedisplay ! $$ ! A = U H V^T ! $$ ! $$ ! B = U R V^T ! $$ ! \afterdisplay ! @end tex ! @ifinfo ! ! @example ! A = U H V^T ! B = U R V^T ! @end example ! ! @end ifinfo ! where @math{U} and @math{V} are orthogonal, @math{H} is an upper ! Hessenberg matrix, and @math{R} is upper triangular. The ! Hessenberg-Triangular reduction is the first step in the generalized ! Schur decomposition for the generalized eigenvalue problem. ! ! @deftypefun int gsl_linalg_hesstri_decomp (gsl_matrix * @var{A}, gsl_matrix * @var{B}, gsl_matrix * @var{U}, gsl_matrix * @var{V}, gsl_vector * @var{work}) ! This function computes the Hessenberg-Triangular decomposition of the ! matrix pair (@var{A}, @var{B}). On output, @math{H} is stored in @var{A}, ! and @math{R} is stored in @var{B}. If @var{U} and @var{V} are provided ! (they may be null), the similarity transformations are stored in them. ! Additional workspace of length @math{N} is needed in @var{work}. @end deftypefun @node Bidiagonalization *************** *** 782,787 **** --- 834,840 ---- Householder transformations efficiently. @deftypefun double gsl_linalg_householder_transform (gsl_vector * @var{v}) + @deftypefunx gsl_complex gsl_linalg_complex_householder_transform (gsl_vector_complex * @var{v}) This function prepares a Householder transformation @math{P = I - \tau v v^T} which can be used to zero all the elements of the input vector except the first. On output the transformation is stored in the vector @var{v} *************** *** 789,806 **** --- 842,862 ---- @end deftypefun @deftypefun int gsl_linalg_householder_hm (double tau, const gsl_vector * v, gsl_matrix * A) + @deftypefunx int gsl_linalg_complex_householder_hm (gsl_complex tau, const gsl_vector_complex * v, gsl_matrix_complex * A) This function applies the Householder matrix @math{P} defined by the scalar @var{tau} and the vector @var{v} to the left-hand side of the matrix @var{A}. On output the result @math{P A} is stored in @var{A}. @end deftypefun @deftypefun int gsl_linalg_householder_mh (double tau, const gsl_vector * v, gsl_matrix * A) + @deftypefunx int gsl_linalg_complex_householder_mh (gsl_complex tau, const gsl_vector_complex * v, gsl_matrix_complex * A) This function applies the Householder matrix @math{P} defined by the scalar @var{tau} and the vector @var{v} to the right-hand side of the matrix @var{A}. On output the result @math{A P} is stored in @var{A}. @end deftypefun @deftypefun int gsl_linalg_householder_hv (double tau, const gsl_vector * v, gsl_vector * w) + @deftypefunx int gsl_linalg_complex_householder_hv (gsl_complex tau, const gsl_vector_complex * v, gsl_vector_complex * w) This function applies the Householder transformation @math{P} defined by the scalar @var{tau} and the vector @var{v} to the vector @var{w}. On output the result @math{P w} is stored in @var{w}. *************** *** 835,840 **** --- 891,903 ---- @section Tridiagonal Systems @cindex tridiagonal systems + The functions described in this section efficiently solve symmetric, + non-symmetric and cyclic tridiagonal systems with minimal storage. + Note that the current implementations of these functions use a variant + of Cholesky decomposition, so the tridiagonal matrix must be positive + definite. For non-positive definite matrices, the functions return + the error code @code{GSL_ESING}. + @deftypefun int gsl_linalg_solve_tridiag (const gsl_vector * @var{diag}, const gsl_vector * @var{e}, const gsl_vector * @var{f}, const gsl_vector * @var{b}, gsl_vector * @var{x}) This function solves the general @math{N}-by-@math{N} system @math{A x = b} where @var{A} is tridiagonal (@c{$N\geq 2$} *************** *** 861,866 **** --- 924,930 ---- ( 0 0 f_2 d_3 ) @end example @end ifinfo + @noindent @end deftypefun @deftypefun int gsl_linalg_solve_symm_tridiag (const gsl_vector * @var{diag}, const gsl_vector * @var{e}, const gsl_vector * @var{b}, gsl_vector * @var{x}) *************** *** 888,895 **** ( 0 0 e_2 d_3 ) @end example @end ifinfo - The current implementation uses a variant of Cholesky decomposition - which can cause division by zero if the matrix is not positive definite. @end deftypefun @deftypefun int gsl_linalg_solve_cyc_tridiag (const gsl_vector * @var{diag}, const gsl_vector * @var{e}, const gsl_vector * @var{f}, const gsl_vector * @var{b}, gsl_vector * @var{x}) --- 952,957 ---- diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/Makefile.am gsl-1.10/doc/Makefile.am *** gsl-1.9/doc/Makefile.am 2007-01-24 15:30:54.000000000 +0000 --- gsl-1.10/doc/Makefile.am 2007-08-21 15:39:31.000000000 +0100 *************** *** 8,16 **** figures = multimin.eps siman-test.eps siman-energy.eps 12-cities.eps initial-route.eps final-route.eps fft-complex-radix2-f.eps fft-complex-radix2-t.eps fft-complex-radix2.eps fft-real-mixedradix.eps roots-bisection.eps roots-false-position.eps roots-newtons-method.eps roots-secant-method.eps histogram.eps histogram2d.eps min-interval.eps fit-wlinear.eps fit-wlinear2.eps fit-exp.eps ntuple.eps qrng.eps cheb.eps vdp.eps interp2.eps rand-beta.tex rand-binomial.tex rand-cauchy.tex rand-chisq.tex rand-erlang.tex rand-exponential.tex rand-fdist.tex rand-flat.tex rand-gamma.tex rand-gaussian.tex rand-geometric.tex rand-laplace.tex rand-logarithmic.tex rand-logistic.tex rand-lognormal.tex rand-pareto.tex rand-poisson.tex rand-hypergeometric.tex rand-nbinomial.tex rand-pascal.tex rand-bivariate-gaussian.tex rand-rayleigh.tex rand-rayleigh-tail.tex rand-tdist.tex rand-weibull.tex random-walk.tex randplots.gnp rand-exppow.tex rand-levy.tex rand-levyskew.tex rand-gumbel.tex rand-bernoulli.tex rand-gaussian-tail.tex rand-gumbel1.tex rand-gumbel2.tex landau.dat rand-landau.tex dwt-orig.eps dwt-samp.eps interpp2.eps bspline.eps ! examples_src = examples/blas.c examples/block.c examples/cblas.c examples/cdf.c examples/cheb.c examples/combination.c examples/const.c examples/demo_fn.c examples/diff.c examples/eigen.c examples/fft.c examples/fftmr.c examples/fftreal.c examples/fitting.c examples/fitting2.c examples/fitting3.c examples/histogram.c examples/histogram2d.c examples/ieee.c examples/ieeeround.c examples/integration.c examples/interp.c examples/intro.c examples/linalglu.c examples/matrix.c examples/matrixw.c examples/min.c examples/monte.c examples/ntupler.c examples/ntuplew.c examples/ode-initval.c examples/odefixed.c examples/permseq.c examples/permshuffle.c examples/polyroots.c examples/qrng.c examples/randpoisson.c examples/randwalk.c examples/rng.c examples/rngunif.c examples/rootnewt.c examples/roots.c examples/siman.c examples/sortsmall.c examples/specfun.c examples/specfun_e.c examples/stat.c examples/statsort.c examples/sum.c examples/vector.c examples/vectorr.c examples/vectorview.c examples/vectorw.c examples/demo_fn.h examples/dwt.c examples/expfit.c examples/nlfit.c examples/interpp.c examples/eigen_nonsymm.c examples/bspline.c ! examples_out = examples/blas.out examples/block.out examples/cblas.out examples/cdf.out examples/combination.out examples/const.out examples/diff.out examples/integration.out examples/intro.out examples/linalglu.out examples/min.out examples/polyroots.out examples/randpoisson.2.out examples/randpoisson.out examples/rng.out examples/rngunif.2.out examples/rngunif.out examples/sortsmall.out examples/specfun.out examples/specfun_e.out examples/stat.out examples/statsort.out examples/sum.out examples/vectorview.out examples/ecg.dat examples/dwt.dat noinst_DATA = $(examples_src) $(examples_out) $(figures) --- 8,16 ---- figures = multimin.eps siman-test.eps siman-energy.eps 12-cities.eps initial-route.eps final-route.eps fft-complex-radix2-f.eps fft-complex-radix2-t.eps fft-complex-radix2.eps fft-real-mixedradix.eps roots-bisection.eps roots-false-position.eps roots-newtons-method.eps roots-secant-method.eps histogram.eps histogram2d.eps min-interval.eps fit-wlinear.eps fit-wlinear2.eps fit-exp.eps ntuple.eps qrng.eps cheb.eps vdp.eps interp2.eps rand-beta.tex rand-binomial.tex rand-cauchy.tex rand-chisq.tex rand-erlang.tex rand-exponential.tex rand-fdist.tex rand-flat.tex rand-gamma.tex rand-gaussian.tex rand-geometric.tex rand-laplace.tex rand-logarithmic.tex rand-logistic.tex rand-lognormal.tex rand-pareto.tex rand-poisson.tex rand-hypergeometric.tex rand-nbinomial.tex rand-pascal.tex rand-bivariate-gaussian.tex rand-rayleigh.tex rand-rayleigh-tail.tex rand-tdist.tex rand-weibull.tex random-walk.tex randplots.gnp rand-exppow.tex rand-levy.tex rand-levyskew.tex rand-gumbel.tex rand-bernoulli.tex rand-gaussian-tail.tex rand-gumbel1.tex rand-gumbel2.tex landau.dat rand-landau.tex dwt-orig.eps dwt-samp.eps interpp2.eps bspline.eps ! examples_src = examples/blas.c examples/block.c examples/cblas.c examples/cdf.c examples/cheb.c examples/combination.c examples/const.c examples/demo_fn.c examples/diff.c examples/eigen.c examples/fft.c examples/fftmr.c examples/fftreal.c examples/fitting.c examples/fitting2.c examples/fitting3.c examples/histogram.c examples/histogram2d.c examples/ieee.c examples/ieeeround.c examples/integration.c examples/interp.c examples/intro.c examples/linalglu.c examples/matrix.c examples/matrixw.c examples/min.c examples/monte.c examples/ntupler.c examples/ntuplew.c examples/ode-initval.c examples/odefixed.c examples/permseq.c examples/permshuffle.c examples/polyroots.c examples/qrng.c examples/randpoisson.c examples/randwalk.c examples/rng.c examples/rngunif.c examples/rootnewt.c examples/roots.c examples/siman.c examples/sortsmall.c examples/specfun.c examples/specfun_e.c examples/stat.c examples/statsort.c examples/sum.c examples/vector.c examples/vectorr.c examples/vectorview.c examples/vectorw.c examples/demo_fn.h examples/dwt.c examples/expfit.c examples/nlfit.c examples/interpp.c examples/eigen_nonsymm.c examples/bspline.c examples/multimin.c examples/multiminfn.c examples/nmsimplex.c ! examples_out = examples/blas.out examples/block.out examples/cblas.out examples/cdf.out examples/combination.out examples/const.out examples/diff.out examples/integration.out examples/intro.out examples/linalglu.out examples/min.out examples/polyroots.out examples/randpoisson.2.out examples/randpoisson.out examples/rng.out examples/rngunif.2.out examples/rngunif.out examples/sortsmall.out examples/specfun.out examples/specfun_e.out examples/stat.out examples/statsort.out examples/sum.out examples/vectorview.out examples/ecg.dat examples/dwt.dat examples/multimin.out examples/nmsimplex.out noinst_DATA = $(examples_src) $(examples_out) $(figures) diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/Makefile.in gsl-1.10/doc/Makefile.in *** gsl-1.9/doc/Makefile.in 2007-02-20 13:09:05.000000000 +0000 --- gsl-1.10/doc/Makefile.in 2007-09-13 16:41:40.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 14,28 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 14,24 ---- *************** *** 65,70 **** --- 61,72 ---- DVIPS = dvips am__installdirs = "$(DESTDIR)$(infodir)" "$(DESTDIR)$(man1dir)" \ "$(DESTDIR)$(man3dir)" + am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; + am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; + am__strip_dir = `echo $$p | sed -e 's|^.*/||'`; man1dir = $(mandir)/man1 man3dir = $(mandir)/man3 NROFF = nroff *************** *** 90,95 **** --- 92,98 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 97,103 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 100,105 ---- *************** *** 105,121 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 107,120 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 127,135 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 126,133 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 139,153 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 137,152 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 157,184 **** --- 156,194 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ info_TEXINFOS = gsl-ref.texi noinst_TEXINFOS = gsl-design.texi gsl_ref_TEXINFOS = err.texi cblas.texi blas.texi min.texi fft.texi \ *************** *** 245,252 **** examples/vectorr.c examples/vectorview.c examples/vectorw.c \ examples/demo_fn.h examples/dwt.c examples/expfit.c \ examples/nlfit.c examples/interpp.c examples/eigen_nonsymm.c \ ! examples/bspline.c ! examples_out = examples/blas.out examples/block.out examples/cblas.out examples/cdf.out examples/combination.out examples/const.out examples/diff.out examples/integration.out examples/intro.out examples/linalglu.out examples/min.out examples/polyroots.out examples/randpoisson.2.out examples/randpoisson.out examples/rng.out examples/rngunif.2.out examples/rngunif.out examples/sortsmall.out examples/specfun.out examples/specfun_e.out examples/stat.out examples/statsort.out examples/sum.out examples/vectorview.out examples/ecg.dat examples/dwt.dat noinst_DATA = $(examples_src) $(examples_out) $(figures) EXTRA_DIST = $(man_MANS) $(noinst_DATA) gsl-design.texi fftalgorithms.tex fftalgorithms.bib algorithm.sty algorithmic.sty calc.sty all: all-am --- 255,263 ---- examples/vectorr.c examples/vectorview.c examples/vectorw.c \ examples/demo_fn.h examples/dwt.c examples/expfit.c \ examples/nlfit.c examples/interpp.c examples/eigen_nonsymm.c \ ! examples/bspline.c examples/multimin.c examples/multiminfn.c \ ! examples/nmsimplex.c ! examples_out = examples/blas.out examples/block.out examples/cblas.out examples/cdf.out examples/combination.out examples/const.out examples/diff.out examples/integration.out examples/intro.out examples/linalglu.out examples/min.out examples/polyroots.out examples/randpoisson.2.out examples/randpoisson.out examples/rng.out examples/rngunif.2.out examples/rngunif.out examples/sortsmall.out examples/specfun.out examples/specfun_e.out examples/stat.out examples/statsort.out examples/sum.out examples/vectorview.out examples/ecg.dat examples/dwt.dat examples/multimin.out examples/nmsimplex.out noinst_DATA = $(examples_src) $(examples_out) $(figures) EXTRA_DIST = $(man_MANS) $(noinst_DATA) gsl-design.texi fftalgorithms.tex fftalgorithms.bib algorithm.sty algorithmic.sty calc.sty all: all-am *************** *** 289,297 **** clean-libtool: -rm -rf .libs _libs - distclean-libtool: - -rm -f libtool - .texi.info: restore=: && backupdir="$(am__leading_dot)am$$$$" && \ am__cwd=`pwd` && cd $(srcdir) && \ --- 300,305 ---- *************** *** 364,372 **** TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \ $(DVIPS) -o $@ $< uninstall-info-am: @$(PRE_UNINSTALL) ! @if (install-info --version && \ install-info --version 2>&1 | sed 1q | grep -i -v debian) >/dev/null 2>&1; then \ list='$(INFO_DEPS)'; \ for file in $$list; do \ --- 372,397 ---- TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \ $(DVIPS) -o $@ $< + uninstall-dvi-am: + @$(NORMAL_UNINSTALL) + @list='$(DVIS)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(dvidir)/$$f'"; \ + rm -f "$(DESTDIR)$(dvidir)/$$f"; \ + done + + uninstall-html-am: + @$(NORMAL_UNINSTALL) + @list='$(HTMLS)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -rf '$(DESTDIR)$(htmldir)/$$f'"; \ + rm -rf "$(DESTDIR)$(htmldir)/$$f"; \ + done + uninstall-info-am: @$(PRE_UNINSTALL) ! @if test -d '$(DESTDIR)$(infodir)' && \ ! (install-info --version && \ install-info --version 2>&1 | sed 1q | grep -i -v debian) >/dev/null 2>&1; then \ list='$(INFO_DEPS)'; \ for file in $$list; do \ *************** *** 380,391 **** for file in $$list; do \ relfile=`echo "$$file" | sed 's|^.*/||'`; \ relfile_i=`echo "$$relfile" | sed 's|\.info$$||;s|$$|.i|'`; \ ! (if cd "$(DESTDIR)$(infodir)"; then \ echo " cd '$(DESTDIR)$(infodir)' && rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9]"; \ rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9]; \ else :; fi); \ done dist-info: $(INFO_DEPS) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ list='$(INFO_DEPS)'; \ --- 405,432 ---- for file in $$list; do \ relfile=`echo "$$file" | sed 's|^.*/||'`; \ relfile_i=`echo "$$relfile" | sed 's|\.info$$||;s|$$|.i|'`; \ ! (if test -d "$(DESTDIR)$(infodir)" && cd "$(DESTDIR)$(infodir)"; then \ echo " cd '$(DESTDIR)$(infodir)' && rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9]"; \ rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9]; \ else :; fi); \ done + uninstall-pdf-am: + @$(NORMAL_UNINSTALL) + @list='$(PDFS)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(pdfdir)/$$f'"; \ + rm -f "$(DESTDIR)$(pdfdir)/$$f"; \ + done + + uninstall-ps-am: + @$(NORMAL_UNINSTALL) + @list='$(PSS)'; for p in $$list; do \ + f=$(am__strip_dir) \ + echo " rm -f '$(DESTDIR)$(psdir)/$$f'"; \ + rm -f "$(DESTDIR)$(psdir)/$$f"; \ + done + dist-info: $(INFO_DEPS) @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ list='$(INFO_DEPS)'; \ *************** *** 394,403 **** $(srcdir)/*) base=`echo "$$base" | sed "s|^$$srcdirstrip/||"`;; \ esac; \ if test -f $$base; then d=.; else d=$(srcdir); fi; \ ! for file in $$d/$$base*; do \ ! relfile=`expr "$$file" : "$$d/\(.*\)"`; \ ! test -f $(distdir)/$$relfile || \ ! cp -p $$file $(distdir)/$$relfile; \ done; \ done --- 435,447 ---- $(srcdir)/*) base=`echo "$$base" | sed "s|^$$srcdirstrip/||"`;; \ esac; \ if test -f $$base; then d=.; else d=$(srcdir); fi; \ ! base_i=`echo "$$base" | sed 's|\.info$$||;s|$$|.i|'`; \ ! for file in $$d/$$base $$d/$$base-[0-9] $$d/$$base-[0-9][0-9] $$d/$$base_i[0-9] $$d/$$base_i[0-9][0-9]; do \ ! if test -f $$file; then \ ! relfile=`expr "$$file" : "$$d/\(.*\)"`; \ ! test -f $(distdir)/$$relfile || \ ! cp -p $$file $(distdir)/$$relfile; \ ! else :; fi; \ done; \ done *************** *** 415,421 **** done install-man1: $(man1_MANS) $(man_MANS) @$(NORMAL_INSTALL) ! test -z "$(man1dir)" || $(mkdir_p) "$(DESTDIR)$(man1dir)" @list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \ l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ for i in $$l2; do \ --- 459,465 ---- done install-man1: $(man1_MANS) $(man_MANS) @$(NORMAL_INSTALL) ! test -z "$(man1dir)" || $(MKDIR_P) "$(DESTDIR)$(man1dir)" @list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \ l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ for i in $$l2; do \ *************** *** 460,466 **** done install-man3: $(man3_MANS) $(man_MANS) @$(NORMAL_INSTALL) ! test -z "$(man3dir)" || $(mkdir_p) "$(DESTDIR)$(man3dir)" @list='$(man3_MANS) $(dist_man3_MANS) $(nodist_man3_MANS)'; \ l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ for i in $$l2; do \ --- 504,510 ---- done install-man3: $(man3_MANS) $(man_MANS) @$(NORMAL_INSTALL) ! test -z "$(man3dir)" || $(MKDIR_P) "$(DESTDIR)$(man3dir)" @list='$(man3_MANS) $(dist_man3_MANS) $(nodist_man3_MANS)'; \ l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ for i in $$l2; do \ *************** *** 511,533 **** distdir: $(DISTFILES) ! $(mkdir_p) $(distdir)/examples ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 555,575 ---- distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 546,552 **** all-am: Makefile $(INFO_DEPS) $(MANS) $(DATA) installdirs: for dir in "$(DESTDIR)$(infodir)" "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man3dir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 588,594 ---- all-am: Makefile $(INFO_DEPS) $(MANS) $(DATA) installdirs: for dir in "$(DESTDIR)$(infodir)" "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man3dir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 578,584 **** distclean: distclean-am -rm -f Makefile ! distclean-am: clean-am distclean-generic distclean-libtool dvi: dvi-am --- 620,626 ---- distclean: distclean-am -rm -f Makefile ! distclean-am: clean-am distclean-generic dvi: dvi-am *************** *** 594,606 **** install-data-am: install-info-am install-man install-exec-am: install-info: install-info-am install-info-am: $(INFO_DEPS) @$(NORMAL_INSTALL) ! test -z "$(infodir)" || $(mkdir_p) "$(DESTDIR)$(infodir)" @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ list='$(INFO_DEPS)'; \ for file in $$list; do \ --- 636,677 ---- install-data-am: install-info-am install-man + install-dvi: install-dvi-am + + install-dvi-am: $(DVIS) + @$(NORMAL_INSTALL) + test -z "$(dvidir)" || $(MKDIR_P) "$(DESTDIR)$(dvidir)" + @list='$(DVIS)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(dvidir)/$$f'"; \ + $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(dvidir)/$$f"; \ + done install-exec-am: + install-html: install-html-am + + install-html-am: $(HTMLS) + @$(NORMAL_INSTALL) + test -z "$(htmldir)" || $(MKDIR_P) "$(DESTDIR)$(htmldir)" + @list='$(HTMLS)'; for p in $$list; do \ + if test -f "$$p" || test -d "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + if test -d "$$d$$p"; then \ + echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)/$$f'"; \ + $(MKDIR_P) "$(DESTDIR)$(htmldir)/$$f" || exit 1; \ + echo " $(INSTALL_DATA) '$$d$$p'/* '$(DESTDIR)$(htmldir)/$$f'"; \ + $(INSTALL_DATA) "$$d$$p"/* "$(DESTDIR)$(htmldir)/$$f"; \ + else \ + echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(htmldir)/$$f'"; \ + $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(htmldir)/$$f"; \ + fi; \ + done install-info: install-info-am install-info-am: $(INFO_DEPS) @$(NORMAL_INSTALL) ! test -z "$(infodir)" || $(MKDIR_P) "$(DESTDIR)$(infodir)" @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ list='$(INFO_DEPS)'; \ for file in $$list; do \ *************** *** 630,635 **** --- 701,728 ---- else : ; fi install-man: install-man1 install-man3 + install-pdf: install-pdf-am + + install-pdf-am: $(PDFS) + @$(NORMAL_INSTALL) + test -z "$(pdfdir)" || $(MKDIR_P) "$(DESTDIR)$(pdfdir)" + @list='$(PDFS)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(pdfdir)/$$f'"; \ + $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(pdfdir)/$$f"; \ + done + install-ps: install-ps-am + + install-ps-am: $(PSS) + @$(NORMAL_INSTALL) + test -z "$(psdir)" || $(MKDIR_P) "$(DESTDIR)$(psdir)" + @list='$(PSS)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ + echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(psdir)/$$f'"; \ + $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(psdir)/$$f"; \ + done installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 648,669 **** ps-am: $(PSS) ! uninstall-am: uninstall-info-am uninstall-man uninstall-man: uninstall-man1 uninstall-man3 .PHONY: all all-am check check-am clean clean-generic clean-libtool \ dist-info distclean distclean-generic distclean-libtool \ distdir dvi dvi-am html html-am info info-am install \ ! install-am install-data install-data-am install-exec \ ! install-exec-am install-info install-info-am install-man \ ! install-man1 install-man3 install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-aminfo maintainer-clean-generic \ maintainer-clean-vti mostlyclean mostlyclean-aminfo \ mostlyclean-generic mostlyclean-libtool mostlyclean-vti pdf \ ! pdf-am ps ps-am uninstall uninstall-am uninstall-info-am \ ! uninstall-man uninstall-man1 uninstall-man3 # pdf disabled, use postscript and ps2pdf --- 741,768 ---- ps-am: $(PSS) ! uninstall-am: uninstall-dvi-am uninstall-html-am uninstall-info-am \ ! uninstall-man uninstall-pdf-am uninstall-ps-am uninstall-man: uninstall-man1 uninstall-man3 + .MAKE: install-am install-strip + .PHONY: all all-am check check-am clean clean-generic clean-libtool \ dist-info distclean distclean-generic distclean-libtool \ distdir dvi dvi-am html html-am info info-am install \ ! install-am install-data install-data-am install-dvi \ ! install-dvi-am install-exec install-exec-am install-html \ ! install-html-am install-info install-info-am install-man \ ! install-man1 install-man3 install-pdf install-pdf-am \ ! install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-aminfo maintainer-clean-generic \ maintainer-clean-vti mostlyclean mostlyclean-aminfo \ mostlyclean-generic mostlyclean-libtool mostlyclean-vti pdf \ ! pdf-am ps ps-am uninstall uninstall-am uninstall-dvi-am \ ! uninstall-html-am uninstall-info-am uninstall-man \ ! uninstall-man1 uninstall-man3 uninstall-pdf-am uninstall-ps-am # pdf disabled, use postscript and ps2pdf diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/math.texi gsl-1.10/doc/math.texi *** gsl-1.9/doc/math.texi 2006-06-01 13:22:43.000000000 +0100 --- gsl-1.10/doc/math.texi 2007-09-10 10:17:56.000000000 +0100 *************** *** 162,167 **** --- 162,175 ---- alternative to the BSD math function @code{hypot(x,y)}. @end deftypefun + @deftypefun double gsl_hypot3 (const double @var{x}, const double @var{y}, const double @var{z}) + @cindex euclidean distance function, hypot + @cindex length, computed accurately using hypot + This function computes the value of + @c{$\sqrt{x^2 + y^2 + z^2}$} + @math{\sqrt@{x^2 + y^2 + z^2@}} in a way that avoids overflow. + @end deftypefun + @deftypefun double gsl_acosh (const double @var{x}) @cindex acosh @cindex hyperbolic cosine, inverse *************** *** 229,237 **** @deftypefunx double gsl_pow_8 (const double @var{x}) @deftypefunx double gsl_pow_9 (const double @var{x}) These functions can be used to compute small integer powers @math{x^2}, ! @math{x^3}, etc. efficiently. The functions will be inlined when ! possible so that use of these functions should be as efficient as ! explicitly writing the corresponding product expression. @end deftypefun @example --- 237,246 ---- @deftypefunx double gsl_pow_8 (const double @var{x}) @deftypefunx double gsl_pow_9 (const double @var{x}) These functions can be used to compute small integer powers @math{x^2}, ! @math{x^3}, etc. efficiently. The functions will be inlined when ! @code{HAVE_INLINE} is defined, so that use of these functions ! should be as efficient as explicitly writing the corresponding ! product expression. @end deftypefun @example *************** *** 335,339 **** --- 344,352 ---- y}, the function returns @math{-1}, or if @math{x > y}, the function returns @math{+1}. + Note that @math{x} and @math{y} are compared to relative accuracy, so + this function is not suitable for testing whether a value is + approximately zero. + The implementation is based on the package @code{fcmp} by T.C. Belding. @end deftypefun diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/mdate-sh gsl-1.10/doc/mdate-sh *** gsl-1.9/doc/mdate-sh 2005-03-19 18:14:48.000000000 +0000 --- gsl-1.10/doc/mdate-sh 2007-02-20 12:56:51.000000000 +0000 *************** *** 1,7 **** #!/bin/sh # Get modification time of a file or directory and pretty-print it. ! scriptversion=2005-02-07.09 # Copyright (C) 1995, 1996, 1997, 2003, 2004, 2005 Free Software # Foundation, Inc. --- 1,7 ---- #!/bin/sh # Get modification time of a file or directory and pretty-print it. ! scriptversion=2005-06-29.22 # Copyright (C) 1995, 1996, 1997, 2003, 2004, 2005 Free Software # Foundation, Inc. *************** *** 19,25 **** # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, ! # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a --- 19,25 ---- # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, ! # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a *************** *** 59,65 **** LC_TIME=C export LC_TIME ! save_arg1="$1" # Find out how to get the extended ls output of a file or directory. if ls -L /dev/null 1>/dev/null 2>&1; then --- 59,73 ---- LC_TIME=C export LC_TIME ! # GNU ls changes its time format in response to the TIME_STYLE ! # variable. Since we cannot assume `unset' works, revert this ! # variable to its documented default. ! if test "${TIME_STYLE+set}" = set; then ! TIME_STYLE=posix-long-iso ! export TIME_STYLE ! fi ! ! save_arg1=$1 # Find out how to get the extended ls output of a file or directory. if ls -L /dev/null 1>/dev/null 2>&1; then diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/multimin.texi gsl-1.10/doc/multimin.texi *** gsl-1.9/doc/multimin.texi 2007-02-08 20:04:12.000000000 +0000 --- gsl-1.10/doc/multimin.texi 2007-08-21 15:39:31.000000000 +0100 *************** *** 223,270 **** @end deftp @noindent ! The following example function defines a simple paraboloid with two ! parameters, @example ! /* Paraboloid centered on (dp[0],dp[1]) */ ! ! double ! my_f (const gsl_vector *v, void *params) ! @{ ! double x, y; ! double *dp = (double *)params; ! ! x = gsl_vector_get(v, 0); ! y = gsl_vector_get(v, 1); ! ! return 10.0 * (x - dp[0]) * (x - dp[0]) + ! 20.0 * (y - dp[1]) * (y - dp[1]) + 30.0; ! @} ! ! /* The gradient of f, df = (df/dx, df/dy). */ ! void ! my_df (const gsl_vector *v, void *params, ! gsl_vector *df) ! @{ ! double x, y; ! double *dp = (double *)params; ! ! x = gsl_vector_get(v, 0); ! y = gsl_vector_get(v, 1); ! ! gsl_vector_set(df, 0, 20.0 * (x - dp[0])); ! gsl_vector_set(df, 1, 40.0 * (y - dp[1])); ! @} ! ! /* Compute both f and df together. */ ! void ! my_fdf (const gsl_vector *x, void *params, ! double *f, gsl_vector *df) ! @{ ! *f = my_f(x, params); ! my_df(x, params, df); ! @} @end example @noindent --- 223,233 ---- @end deftp @noindent ! The following example function defines a simple two-dimensional ! paraboloid with five parameters, @example ! @verbatiminclude examples/multiminfn.c @end example @noindent *************** *** 273,284 **** @example gsl_multimin_function_fdf my_func; ! double p[2] = @{ 1.0, 2.0 @}; /* center at (1,2) */ my_func.f = &my_f; my_func.df = &my_df; my_func.fdf = &my_fdf; - my_func.n = 2; my_func.params = (void *)p; @end example --- 236,249 ---- @example gsl_multimin_function_fdf my_func; ! /* Paraboloid center at (1,2), scale factors (10, 20), ! minimum value 30 */ ! double p[5] = @{ 1.0, 2.0, 10.0, 20.0, 30.0 @}; + my_func.n = 2; /* number of function components */ my_func.f = &my_f; my_func.df = &my_df; my_func.fdf = &my_fdf; my_func.params = (void *)p; @end example *************** *** 509,571 **** function given earlier in this chapter. @smallexample ! int ! main (void) ! @{ ! size_t iter = 0; ! int status; ! ! const gsl_multimin_fdfminimizer_type *T; ! gsl_multimin_fdfminimizer *s; ! ! /* Position of the minimum (1,2). */ ! double par[2] = @{ 1.0, 2.0 @}; ! ! gsl_vector *x; ! gsl_multimin_function_fdf my_func; ! ! my_func.f = &my_f; ! my_func.df = &my_df; ! my_func.fdf = &my_fdf; ! my_func.n = 2; ! my_func.params = ∥ ! ! /* Starting point, x = (5,7) */ ! x = gsl_vector_alloc (2); ! gsl_vector_set (x, 0, 5.0); ! gsl_vector_set (x, 1, 7.0); ! ! T = gsl_multimin_fdfminimizer_conjugate_fr; ! s = gsl_multimin_fdfminimizer_alloc (T, 2); ! ! gsl_multimin_fdfminimizer_set (s, &my_func, x, 0.01, 1e-4); ! ! do ! @{ ! iter++; ! status = gsl_multimin_fdfminimizer_iterate (s); ! ! if (status) ! break; ! ! status = gsl_multimin_test_gradient (s->gradient, 1e-3); ! ! if (status == GSL_SUCCESS) ! printf ("Minimum found at:\n"); ! ! printf ("%5d %.5f %.5f %10.5f\n", iter, ! gsl_vector_get (s->x, 0), ! gsl_vector_get (s->x, 1), ! s->f); ! ! @} ! while (status == GSL_CONTINUE && iter < 100); ! ! gsl_multimin_fdfminimizer_free (s); ! gsl_vector_free (x); ! ! return 0; ! @} @end smallexample @noindent --- 474,480 ---- function given earlier in this chapter. @smallexample ! @verbatiminclude examples/multimin.c @end smallexample @noindent *************** *** 575,595 **** 0.001. The output of the program is shown below, @example ! x y f ! 1 4.99629 6.99072 687.84780 ! 2 4.98886 6.97215 683.55456 ! 3 4.97400 6.93501 675.01278 ! 4 4.94429 6.86073 658.10798 ! 5 4.88487 6.71217 625.01340 ! 6 4.76602 6.41506 561.68440 ! 7 4.52833 5.82083 446.46694 ! 8 4.05295 4.63238 261.79422 ! 9 3.10219 2.25548 75.49762 ! 10 2.85185 1.62963 67.03704 ! 11 2.19088 1.76182 45.31640 ! 12 0.86892 2.02622 30.18555 ! Minimum found at: ! 13 1.00000 2.00000 30.00000 @end example @noindent --- 484,490 ---- 0.001. The output of the program is shown below, @example ! @verbatiminclude examples/multimin.out @end example @noindent *************** *** 611,683 **** minimize the same example object function, as above. @smallexample ! int ! main(void) ! @{ ! size_t np = 2; ! double par[2] = @{1.0, 2.0@}; ! ! const gsl_multimin_fminimizer_type *T = ! gsl_multimin_fminimizer_nmsimplex; ! gsl_multimin_fminimizer *s = NULL; ! gsl_vector *ss, *x; ! gsl_multimin_function minex_func; ! ! size_t iter = 0, i; ! int status; ! double size; ! ! /* Initial vertex size vector */ ! ss = gsl_vector_alloc (np); ! ! /* Set all step sizes to 1 */ ! gsl_vector_set_all (ss, 1.0); ! ! /* Starting point */ ! x = gsl_vector_alloc (np); ! ! gsl_vector_set (x, 0, 5.0); ! gsl_vector_set (x, 1, 7.0); ! ! /* Initialize method and iterate */ ! minex_func.f = &my_f; ! minex_func.n = np; ! minex_func.params = (void *)∥ ! ! s = gsl_multimin_fminimizer_alloc (T, np); ! gsl_multimin_fminimizer_set (s, &minex_func, x, ss); ! ! do ! @{ ! iter++; ! status = gsl_multimin_fminimizer_iterate(s); ! ! if (status) ! break; ! ! size = gsl_multimin_fminimizer_size (s); ! status = gsl_multimin_test_size (size, 1e-2); ! ! if (status == GSL_SUCCESS) ! @{ ! printf ("converged to minimum at\n"); ! @} ! ! printf ("%5d ", iter); ! for (i = 0; i < np; i++) ! @{ ! printf ("%10.3e ", gsl_vector_get (s->x, i)); ! @} ! printf ("f() = %7.3f size = %.3f\n", s->fval, size); ! @} ! while (status == GSL_CONTINUE && iter < 100); ! ! gsl_vector_free(x); ! gsl_vector_free(ss); ! gsl_multimin_fminimizer_free (s); ! ! return status; ! @} @end smallexample @noindent --- 506,512 ---- minimize the same example object function, as above. @smallexample ! @verbatiminclude examples/nmsimplex.c @end smallexample @noindent *************** *** 685,716 **** shown below. @example ! 1 6.500e+00 5.000e+00 f() = 512.500 size = 1.082 ! 2 5.250e+00 4.000e+00 f() = 290.625 size = 1.372 ! 3 5.250e+00 4.000e+00 f() = 290.625 size = 1.372 ! 4 5.500e+00 1.000e+00 f() = 252.500 size = 1.372 ! 5 2.625e+00 3.500e+00 f() = 101.406 size = 1.823 ! 6 3.469e+00 1.375e+00 f() = 98.760 size = 1.526 ! 7 1.820e+00 3.156e+00 f() = 63.467 size = 1.105 ! 8 1.820e+00 3.156e+00 f() = 63.467 size = 1.105 ! 9 1.016e+00 2.812e+00 f() = 43.206 size = 1.105 ! 10 2.041e+00 2.008e+00 f() = 40.838 size = 0.645 ! 11 1.236e+00 1.664e+00 f() = 32.816 size = 0.645 ! 12 1.236e+00 1.664e+00 f() = 32.816 size = 0.447 ! 13 5.225e-01 1.980e+00 f() = 32.288 size = 0.447 ! 14 1.103e+00 2.073e+00 f() = 30.214 size = 0.345 ! 15 1.103e+00 2.073e+00 f() = 30.214 size = 0.264 ! 16 1.103e+00 2.073e+00 f() = 30.214 size = 0.160 ! 17 9.864e-01 1.934e+00 f() = 30.090 size = 0.132 ! 18 9.190e-01 1.987e+00 f() = 30.069 size = 0.092 ! 19 1.028e+00 2.017e+00 f() = 30.013 size = 0.056 ! 20 1.028e+00 2.017e+00 f() = 30.013 size = 0.046 ! 21 1.028e+00 2.017e+00 f() = 30.013 size = 0.033 ! 22 9.874e-01 1.985e+00 f() = 30.006 size = 0.028 ! 23 9.846e-01 1.995e+00 f() = 30.003 size = 0.023 ! 24 1.007e+00 2.003e+00 f() = 30.001 size = 0.012 ! converged to minimum at ! 25 1.007e+00 2.003e+00 f() = 30.001 size = 0.010 @end example @noindent --- 514,520 ---- shown below. @example ! @verbatiminclude examples/nmsimplex.out @end example @noindent diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/ode-initval.texi gsl-1.10/doc/ode-initval.texi *** gsl-1.9/doc/ode-initval.texi 2007-01-04 12:14:19.000000000 +0000 --- gsl-1.10/doc/ode-initval.texi 2007-08-02 20:07:43.000000000 +0100 *************** *** 493,502 **** @end iftex @noindent ! To obtain the values at regular intervals, rather than the variable ! spacings chosen by the control function, the main loop can be modified ! to advance the solution from one point to the next. For example, the ! following main loop prints the solution at the fixed points @math{t = 0, 1, 2, \dots, 100}, @example --- 493,502 ---- @end iftex @noindent ! To obtain the values at user-specified positions, rather than those ! chosen automatically by the control function, the main loop can be modified ! to advance the solution from one chosen point to the next. For example, the ! following main loop prints the solution at the points @math{t_i = 0, 1, 2, \dots, 100}, @example *************** *** 517,522 **** --- 517,526 ---- @end example @noindent + Note that arbitrary values of @math{t_i} can be used for each stage of + the integration. The equally spaced points in this example are just + used as an illustration. + It is also possible to work with a non-adaptive integrator, using only the stepping function itself. The following program uses the @code{rk4} fourth-order Runge-Kutta stepping function with a fixed stepsize of diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/permutation.texi gsl-1.10/doc/permutation.texi *** gsl-1.9/doc/permutation.texi 2006-03-16 18:00:21.000000000 +0000 --- gsl-1.10/doc/permutation.texi 2007-09-10 10:17:56.000000000 +0100 *************** *** 92,98 **** @deftypefun size_t gsl_permutation_get (const gsl_permutation * @var{p}, const size_t @var{i}) This function returns the value of the @var{i}-th element of the permutation @var{p}. If @var{i} lies outside the allowed range of 0 to ! @math{@var{n}-1} then the error handler is invoked and 0 is returned. @end deftypefun @deftypefun int gsl_permutation_swap (gsl_permutation * @var{p}, const size_t @var{i}, const size_t @var{j}) --- 92,98 ---- @deftypefun size_t gsl_permutation_get (const gsl_permutation * @var{p}, const size_t @var{i}) This function returns the value of the @var{i}-th element of the permutation @var{p}. If @var{i} lies outside the allowed range of 0 to ! @math{@var{n}-1} then the error handler is invoked and 0 is returned. @inlinefn{} @end deftypefun @deftypefun int gsl_permutation_swap (gsl_permutation * @var{p}, const size_t @var{i}, const size_t @var{j}) *************** *** 218,227 **** @deftypefun int gsl_permutation_fprintf (FILE * @var{stream}, const gsl_permutation * @var{p}, const char * @var{format}) This function writes the elements of the permutation @var{p} line-by-line to the stream @var{stream} using the format specifier ! @var{format}, which should be suitable for a type of @var{size_t}. On a ! GNU system the type modifier @code{Z} represents @code{size_t}, so ! @code{"%Zu\n"} is a suitable format. The function returns ! @code{GSL_EFAILED} if there was a problem writing to the file. @end deftypefun @deftypefun int gsl_permutation_fscanf (FILE * @var{stream}, gsl_permutation * @var{p}) --- 218,230 ---- @deftypefun int gsl_permutation_fprintf (FILE * @var{stream}, const gsl_permutation * @var{p}, const char * @var{format}) This function writes the elements of the permutation @var{p} line-by-line to the stream @var{stream} using the format specifier ! @var{format}, which should be suitable for a type of @var{size_t}. ! In ISO C99 the type modifier @code{z} represents @code{size_t}, so ! @code{"%zu\n"} is a suitable format.@footnote{In versions of the ! GNU C library prior to the ISO C99 standard, ! the type modifier @code{Z} was used instead.} ! The function returns @code{GSL_EFAILED} if there was a problem writing ! to the file. @end deftypefun @deftypefun int gsl_permutation_fscanf (FILE * @var{stream}, gsl_permutation * @var{p}) diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/poly.texi gsl-1.10/doc/poly.texi *** gsl-1.9/doc/poly.texi 2006-06-01 13:19:59.000000000 +0100 --- gsl-1.10/doc/poly.texi 2007-09-10 10:17:56.000000000 +0100 *************** *** 26,32 **** This function evaluates the polynomial @c{$c[0] + c[1] x + c[2] x^2 + \dots + c[len-1] x^{len-1}$} @math{c[0] + c[1] x + c[2] x^2 + \dots + c[len-1] x^@{len-1@}} using ! Horner's method for stability. The function is inlined when possible. @end deftypefun @node Divided Difference Representation of Polynomials --- 26,32 ---- This function evaluates the polynomial @c{$c[0] + c[1] x + c[2] x^2 + \dots + c[len-1] x^{len-1}$} @math{c[0] + c[1] x + c[2] x^2 + \dots + c[len-1] x^@{len-1@}} using ! Horner's method for stability. @inlinefn{} @end deftypefun @node Divided Difference Representation of Polynomials *************** *** 49,55 **** @deftypefun double gsl_poly_dd_eval (const double @var{dd}[], const double @var{xa}[], const size_t @var{size}, const double @var{x}) This function evaluates the polynomial stored in divided-difference form in the arrays @var{dd} and @var{xa} of length @var{size} at the point ! @var{x}. @end deftypefun @deftypefun int gsl_poly_dd_taylor (double @var{c}[], double @var{xp}, const double @var{dd}[], const double @var{xa}[], size_t @var{size}, double @var{w}[]) --- 49,55 ---- @deftypefun double gsl_poly_dd_eval (const double @var{dd}[], const double @var{xa}[], const size_t @var{size}, const double @var{x}) This function evaluates the polynomial stored in divided-difference form in the arrays @var{dd} and @var{xa} of length @var{size} at the point ! @var{x}. @inlinefn{} @end deftypefun @deftypefun int gsl_poly_dd_taylor (double @var{c}[], double @var{xp}, const double @var{dd}[], const double @var{xa}[], size_t @var{size}, double @var{w}[]) diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/qrng.texi gsl-1.10/doc/qrng.texi *** gsl-1.9/doc/qrng.texi 2006-03-16 18:00:21.000000000 +0000 --- gsl-1.10/doc/qrng.texi 2007-09-10 10:17:56.000000000 +0100 *************** *** 52,58 **** This function stores the next point from the sequence generator @var{q} in the array @var{x}. The space available for @var{x} must match the dimension of the generator. The point @var{x} will lie in the range ! @math{0 < x_i < 1} for each @math{x_i}. @end deftypefun @node Auxiliary quasi-random number generator functions --- 52,58 ---- This function stores the next point from the sequence generator @var{q} in the array @var{x}. The space available for @var{x} must match the dimension of the generator. The point @var{x} will lie in the range ! @math{0 < x_i < 1} for each @math{x_i}. @inlinefn{} @end deftypefun @node Auxiliary quasi-random number generator functions diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/rng.texi gsl-1.10/doc/rng.texi *** gsl-1.9/doc/rng.texi 2007-02-14 15:27:13.000000000 +0000 --- gsl-1.10/doc/rng.texi 2007-09-10 10:17:56.000000000 +0100 *************** *** 139,146 **** @section Sampling from a random number generator The following functions return uniformly distributed random numbers, ! either as integers or double precision floating point numbers. To obtain ! non-uniform distributions @pxref{Random Number Distributions}. @deftypefun {unsigned long int} gsl_rng_get (const gsl_rng * @var{r}) This function returns a random integer from the generator @var{r}. The --- 139,146 ---- @section Sampling from a random number generator The following functions return uniformly distributed random numbers, ! either as integers or double precision floating point numbers. @inlinefns{} ! To obtain non-uniform distributions @pxref{Random Number Distributions}. @deftypefun {unsigned long int} gsl_rng_get (const gsl_rng * @var{r}) This function returns a random integer from the generator @var{r}. The diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/siman.texi gsl-1.10/doc/siman.texi *** gsl-1.9/doc/siman.texi 2007-01-09 16:35:29.000000000 +0000 --- gsl-1.10/doc/siman.texi 2007-05-17 12:45:24.000000000 +0100 *************** *** 238,244 **** $ ./siman_test | awk '!/^#/ @{print $1, $4@}' | graph -y 1.34 1.4 -W0 -X generation -Y position | plot -Tps > siman-test.eps ! $ ./siman_test | awk '!/^#/ @{print $1, $4@}' | graph -y -0.88 -0.83 -W0 -X generation -Y energy | plot -Tps > siman-energy.eps @end example --- 238,244 ---- $ ./siman_test | awk '!/^#/ @{print $1, $4@}' | graph -y 1.34 1.4 -W0 -X generation -Y position | plot -Tps > siman-test.eps ! $ ./siman_test | awk '!/^#/ @{print $1, $5@}' | graph -y -0.88 -0.83 -W0 -X generation -Y energy | plot -Tps > siman-energy.eps @end example diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/specfunc-expint.texi gsl-1.10/doc/specfunc-expint.texi *** gsl-1.9/doc/specfunc-expint.texi 2006-03-16 18:00:21.000000000 +0000 --- gsl-1.10/doc/specfunc-expint.texi 2007-09-10 10:18:24.000000000 +0100 *************** *** 62,67 **** --- 62,90 ---- @comment Exceptional Return Values: GSL_EDOM, GSL_EOVRFLW, GSL_EUNDRFLW @end deftypefun + @deftypefun double gsl_sf_expint_En (int @var{n}, double @var{x}) + @deftypefunx int gsl_sf_expint_En_e (int @var{n}, double @var{x}, gsl_sf_result * @var{result}) + These routines compute the exponential integral @math{E_n(x)} of order @math{n}, + @tex + \beforedisplay + $$ + E_n(x) := \Re \int_1^\infty dt \exp(-xt)/t^n. + $$ + \afterdisplay + @end tex + @ifinfo + + @example + E_n(x) := \Re \int_1^\infty dt \exp(-xt)/t^n. + @end example + + @end ifinfo + @noindent + @comment Domain: x != 0.0 + @comment Exceptional Return Values: GSL_EDOM, GSL_EOVRFLW, GSL_EUNDRFLW + @end deftypefun + + @node Ei(x) @subsection Ei(x) diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/specfunc-gamma.texi gsl-1.10/doc/specfunc-gamma.texi *** gsl-1.9/doc/specfunc-gamma.texi 2007-01-31 17:46:31.000000000 +0000 --- gsl-1.10/doc/specfunc-gamma.texi 2007-08-27 22:27:06.000000000 +0100 *************** *** 304,311 **** These routines compute the normalized incomplete Beta function @math{I_x(a,b)=B_x(a,b)/B(a,b)} where @c{$B_x(a,b) = \int_0^x t^{a-1} (1-t)^{b-1} dt$} @math{B_x(a,b) = \int_0^x t^@{a-1@} (1-t)^@{b-1@} dt} ! for @math{a > 0}, @math{b > 0}, and @c{$0 \le x \le 1$} ! @math{0 <= x <= 1}. @end deftypefun --- 304,314 ---- These routines compute the normalized incomplete Beta function @math{I_x(a,b)=B_x(a,b)/B(a,b)} where @c{$B_x(a,b) = \int_0^x t^{a-1} (1-t)^{b-1} dt$} @math{B_x(a,b) = \int_0^x t^@{a-1@} (1-t)^@{b-1@} dt} ! for @c{$0 \le x \le 1$} ! @math{0 <= x <= 1}. For @math{a > 0}, @math{b > 0} the value is computed using ! a continued fraction expansion. For all other values it is computed using ! the relation @c{$I_x(a,b,x) = (1/a) x^a {}_2F_1(a,1-b,a+1,x)/B(a,b)$} ! @math{I_x(a,b,x) = (1/a) x^a 2F1(a,1-b,a+1,x)/B(a,b)}. @end deftypefun diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/specfunc-legendre.texi gsl-1.10/doc/specfunc-legendre.texi *** gsl-1.9/doc/specfunc-legendre.texi 2006-06-01 13:22:43.000000000 +0100 --- gsl-1.10/doc/specfunc-legendre.texi 2007-09-10 10:17:56.000000000 +0100 *************** *** 145,151 **** @deftypefun int gsl_sf_legendre_array_size (const int @var{lmax}, const int @var{m}) This function returns the size of @var{result_array}[] needed for the array ! versions of @math{P_l^m(x)}, @math{@var{lmax} - @var{m} + 1}. @comment Exceptional Return Values: none @end deftypefun --- 145,151 ---- @deftypefun int gsl_sf_legendre_array_size (const int @var{lmax}, const int @var{m}) This function returns the size of @var{result_array}[] needed for the array ! versions of @math{P_l^m(x)}, @math{@var{lmax} - @var{m} + 1}. @inlinefn{} @comment Exceptional Return Values: none @end deftypefun diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/stamp-vti gsl-1.10/doc/stamp-vti *** gsl-1.9/doc/stamp-vti 2007-02-20 13:17:57.000000000 +0000 --- gsl-1.10/doc/stamp-vti 2007-09-13 16:44:07.000000000 +0100 *************** *** 1,4 **** ! @set UPDATED 20 February 2007 ! @set UPDATED-MONTH February 2007 ! @set EDITION 1.9 ! @set VERSION 1.9 --- 1,4 ---- ! @set UPDATED 10 September 2007 ! @set UPDATED-MONTH September 2007 ! @set EDITION 1.10 ! @set VERSION 1.10 diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/statistics.texi gsl-1.10/doc/statistics.texi *** gsl-1.9/doc/statistics.texi 2006-04-21 13:08:12.000000000 +0100 --- gsl-1.10/doc/statistics.texi 2007-03-20 13:27:35.000000000 +0000 *************** *** 30,35 **** --- 30,36 ---- * Higher moments (skewness and kurtosis):: * Autocorrelation:: * Covariance:: + * Correlation:: * Weighted Samples:: * Maximum and Minimum values:: * Median and Percentiles:: *************** *** 362,367 **** --- 363,398 ---- @var{data1} and @var{data2} and want to avoid recomputing them. @end deftypefun + @node Correlation + @section Correlation + @cindex correlation, of two datasets + + @deftypefun double gsl_stats_correlation (const double @var{data1}[], const size_t @var{stride1}, const double @var{data2}[], const size_t @var{stride2}, const size_t @var{n}) + This function efficiently computes the Pearson correlation coefficient + between the datasets @var{data1} and @var{data2} which must both be of + the same length @var{n}. + @tex + \beforedisplay + $$ + r = {cov(x, y) \over \Hat\sigma_x \Hat\sigma_y} = + {{1 \over n-1} \sum (x_i - \Hat x) (y_i - \Hat y) + \over + \sqrt{{1 \over n-1} \sum (x_i - {\Hat x})^2} + \sqrt{{1 \over n-1} \sum (y_i - {\Hat y})^2} + } + $$ + \afterdisplay + @end tex + @ifinfo + @example + r = cov(x, y) / (\Hat\sigma_x \Hat\sigma_y) + = @{1/(n-1) \sum (x_i - \Hat x) (y_i - \Hat y) + \over + \sqrt@{1/(n-1) \sum (x_i - \Hat x)^2@} \sqrt@{1/(n-1) \sum (y_i - \Hat y)^2@} + @} + @end example + @end ifinfo + @end deftypefun @node Weighted Samples @section Weighted Samples diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/vectors.texi gsl-1.10/doc/vectors.texi *** gsl-1.9/doc/vectors.texi 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/doc/vectors.texi 2007-09-10 10:17:56.000000000 +0100 *************** *** 305,324 **** @deftypefun double gsl_vector_get (const gsl_vector * @var{v}, size_t @var{i}) This function returns the @var{i}-th element of a vector @var{v}. If @var{i} lies outside the allowed range of 0 to @math{@var{n}-1} then the error ! handler is invoked and 0 is returned. @end deftypefun @deftypefun void gsl_vector_set (gsl_vector * @var{v}, size_t @var{i}, double @var{x}) This function sets the value of the @var{i}-th element of a vector @var{v} to @var{x}. If @var{i} lies outside the allowed range of 0 to ! @math{@var{n}-1} then the error handler is invoked. @end deftypefun @deftypefun {double *} gsl_vector_ptr (gsl_vector * @var{v}, size_t @var{i}) @deftypefunx {const double *} gsl_vector_const_ptr (const gsl_vector * @var{v}, size_t @var{i}) These functions return a pointer to the @var{i}-th element of a vector @var{v}. If @var{i} lies outside the allowed range of 0 to @math{@var{n}-1} ! then the error handler is invoked and a null pointer is returned. @end deftypefun @node Initializing vector elements --- 305,324 ---- @deftypefun double gsl_vector_get (const gsl_vector * @var{v}, size_t @var{i}) This function returns the @var{i}-th element of a vector @var{v}. If @var{i} lies outside the allowed range of 0 to @math{@var{n}-1} then the error ! handler is invoked and 0 is returned. @inlinefn{} @end deftypefun @deftypefun void gsl_vector_set (gsl_vector * @var{v}, size_t @var{i}, double @var{x}) This function sets the value of the @var{i}-th element of a vector @var{v} to @var{x}. If @var{i} lies outside the allowed range of 0 to ! @math{@var{n}-1} then the error handler is invoked. @inlinefn{} @end deftypefun @deftypefun {double *} gsl_vector_ptr (gsl_vector * @var{v}, size_t @var{i}) @deftypefunx {const double *} gsl_vector_const_ptr (const gsl_vector * @var{v}, size_t @var{i}) These functions return a pointer to the @var{i}-th element of a vector @var{v}. If @var{i} lies outside the allowed range of 0 to @math{@var{n}-1} ! then the error handler is invoked and a null pointer is returned. @inlinefns{} @end deftypefun @node Initializing vector elements *************** *** 741,750 **** @deftypefun int gsl_vector_isnull (const gsl_vector * @var{v}) @deftypefunx int gsl_vector_ispos (const gsl_vector * @var{v}) @deftypefunx int gsl_vector_isneg (const gsl_vector * @var{v}) ! These functions return 1 if all the elements of the vector @var{v} ! are zero, strictly positive, or strictly negative respectively, and 0 ! otherwise. To test for a non-negative vector, use the expression ! @code{!gsl_vector_isneg(v)}. @end deftypefun @node Example programs for vectors --- 741,750 ---- @deftypefun int gsl_vector_isnull (const gsl_vector * @var{v}) @deftypefunx int gsl_vector_ispos (const gsl_vector * @var{v}) @deftypefunx int gsl_vector_isneg (const gsl_vector * @var{v}) ! @deftypefunx int gsl_vector_isnonneg (const gsl_vector * @var{v}) ! These functions return 1 if all the elements of the vector @var{v} are ! zero, strictly positive, strictly negative, or non-negative ! respectively, and 0 otherwise. @end deftypefun @node Example programs for vectors *************** *** 940,953 **** This function returns the @math{(i,j)}-th element of a matrix @var{m}. If @var{i} or @var{j} lie outside the allowed range of 0 to @math{@var{n1}-1} and 0 to @math{@var{n2}-1} then the error handler is invoked and 0 ! is returned. @end deftypefun @deftypefun void gsl_matrix_set (gsl_matrix * @var{m}, size_t @var{i}, size_t @var{j}, double @var{x}) This function sets the value of the @math{(i,j)}-th element of a matrix @var{m} to @var{x}. If @var{i} or @var{j} lies outside the allowed range of 0 to @math{@var{n1}-1} and 0 to @math{@var{n2}-1} then the error ! handler is invoked. @end deftypefun @deftypefun {double *} gsl_matrix_ptr (gsl_matrix * @var{m}, size_t @var{i}, size_t @var{j}) --- 940,953 ---- This function returns the @math{(i,j)}-th element of a matrix @var{m}. If @var{i} or @var{j} lie outside the allowed range of 0 to @math{@var{n1}-1} and 0 to @math{@var{n2}-1} then the error handler is invoked and 0 ! is returned. @inlinefn{} @end deftypefun @deftypefun void gsl_matrix_set (gsl_matrix * @var{m}, size_t @var{i}, size_t @var{j}, double @var{x}) This function sets the value of the @math{(i,j)}-th element of a matrix @var{m} to @var{x}. If @var{i} or @var{j} lies outside the allowed range of 0 to @math{@var{n1}-1} and 0 to @math{@var{n2}-1} then the error ! handler is invoked. @inlinefn{} @end deftypefun @deftypefun {double *} gsl_matrix_ptr (gsl_matrix * @var{m}, size_t @var{i}, size_t @var{j}) *************** *** 955,961 **** These functions return a pointer to the @math{(i,j)}-th element of a matrix @var{m}. If @var{i} or @var{j} lie outside the allowed range of 0 to @math{@var{n1}-1} and 0 to @math{@var{n2}-1} then the error handler is invoked ! and a null pointer is returned. @end deftypefun @node Initializing matrix elements --- 955,961 ---- These functions return a pointer to the @math{(i,j)}-th element of a matrix @var{m}. If @var{i} or @var{j} lie outside the allowed range of 0 to @math{@var{n1}-1} and 0 to @math{@var{n2}-1} then the error handler is invoked ! and a null pointer is returned. @inlinefns{} @end deftypefun @node Initializing matrix elements *************** *** 1299,1304 **** --- 1299,1328 ---- @code{const}. @end deftypefun + @deftypefun gsl_vector_view gsl_matrix_subrow (gsl_matrix * @var{m}, size_t @var{i}, size_t @var{offset}, size_t @var{n}) + @deftypefunx {gsl_vector_const_view} gsl_matrix_const_subrow (const gsl_matrix * @var{m}, size_t @var{i}, size_t @var{offset}, size_t @var{n}) + These functions return a vector view of the @var{i}-th row of the matrix + @var{m} beginning at @var{offset} elements past the first column and + containing @var{n} elements. The @code{data} pointer of the new vector + is set to null if @var{i}, @var{offset}, or @var{n} are out of range. + + The function @code{gsl_vector_const_subrow} is equivalent to + @code{gsl_matrix_subrow} but can be used for matrices which are declared + @code{const}. + @end deftypefun + + @deftypefun gsl_vector_view gsl_matrix_subcolumn (gsl_matrix * @var{m}, size_t @var{j}, size_t @var{offset}, size_t @var{n}) + @deftypefunx {gsl_vector_const_view} gsl_matrix_const_subcolumn (const gsl_matrix * @var{m}, size_t @var{j}, size_t @var{offset}, size_t @var{n}) + These functions return a vector view of the @var{j}-th column of the matrix + @var{m} beginning at @var{offset} elements past the first row and + containing @var{n} elements. The @code{data} pointer of the new vector + is set to null if @var{j}, @var{offset}, or @var{n} are out of range. + + The function @code{gsl_vector_const_subcolumn} is equivalent to + @code{gsl_matrix_subcolumn} but can be used for matrices which are declared + @code{const}. + @end deftypefun + @cindex matrix diagonal @cindex diagonal, of a matrix @deftypefun gsl_vector_view gsl_matrix_diagonal (gsl_matrix * @var{m}) *************** *** 1516,1526 **** @deftypefun int gsl_matrix_isnull (const gsl_matrix * @var{m}) @deftypefunx int gsl_matrix_ispos (const gsl_matrix * @var{m}) @deftypefunx int gsl_matrix_isneg (const gsl_matrix * @var{m}) These functions return 1 if all the elements of the matrix @var{m} are ! zero, strictly positive, or strictly negative respectively, and 0 ! otherwise. To test for a non-negative matrix, use the expression ! @code{!gsl_matrix_isneg(m)}. To test whether a matrix is ! positive-definite, use the Cholesky decomposition (@pxref{Cholesky Decomposition}). @end deftypefun @node Example programs for matrices --- 1540,1551 ---- @deftypefun int gsl_matrix_isnull (const gsl_matrix * @var{m}) @deftypefunx int gsl_matrix_ispos (const gsl_matrix * @var{m}) @deftypefunx int gsl_matrix_isneg (const gsl_matrix * @var{m}) + @deftypefunx int gsl_matrix_isnonneg (const gsl_matrix * @var{m}) These functions return 1 if all the elements of the matrix @var{m} are ! zero, strictly positive, strictly negative, or non-negative ! respectively, and 0 otherwise. To test whether a matrix is ! positive-definite, use the Cholesky decomposition (@pxref{Cholesky ! Decomposition}). @end deftypefun @node Example programs for matrices diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/doc/version-ref.texi gsl-1.10/doc/version-ref.texi *** gsl-1.9/doc/version-ref.texi 2007-02-20 13:17:57.000000000 +0000 --- gsl-1.10/doc/version-ref.texi 2007-09-13 16:44:06.000000000 +0100 *************** *** 1,4 **** ! @set UPDATED 20 February 2007 ! @set UPDATED-MONTH February 2007 ! @set EDITION 1.9 ! @set VERSION 1.9 --- 1,4 ---- ! @set UPDATED 10 September 2007 ! @set UPDATED-MONTH September 2007 ! @set EDITION 1.10 ! @set VERSION 1.10 diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/eigen/ChangeLog gsl-1.10/eigen/ChangeLog *** gsl-1.9/eigen/ChangeLog 2006-09-14 14:23:15.000000000 +0100 --- gsl-1.10/eigen/ChangeLog 2007-08-30 11:30:58.000000000 +0100 *************** *** 1,3 **** --- 1,14 ---- + 2007-08-30 Brian Gough + + * test.c (test_eigen_symm): added new test case for underflow + + * qrstep.c (trailing_eigenvalue): handle underflow for small tab, + also handle dt==0 directly. + + 2007-07-30 Brian Gough + + * testgen.c (main): use gsl_finite instead of finite + 2006-09-14 Brian Gough * test.c (test_eigen_symm): fix duplicate VAL_DESC to ABS_DESC diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/eigen/francis.c gsl-1.10/eigen/francis.c *** gsl-1.9/eigen/francis.c 2007-02-20 11:11:35.000000000 +0000 --- gsl-1.10/eigen/francis.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 1,10 **** /* eigen/francis.c * ! * Copyright (C) 2006 Patrick Alken * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* eigen/francis.c * ! * Copyright (C) 2006, 2007 Patrick Alken * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 28,35 **** #include #include #include ! ! #include "schur.h" /* * This module computes the eigenvalues of a real upper hessenberg --- 28,35 ---- #include #include #include ! #include ! #include /* * This module computes the eigenvalues of a real upper hessenberg *************** *** 55,63 **** gsl_complex *eval1, gsl_complex *eval2, gsl_eigen_francis_workspace *w); ! static inline void francis_get_submatrix(gsl_matrix *A, gsl_matrix *B, ! size_t *top); ! /* gsl_eigen_francis_alloc() --- 55,62 ---- gsl_complex *eval1, gsl_complex *eval2, gsl_eigen_francis_workspace *w); ! static inline size_t francis_get_submatrix(gsl_matrix *A, gsl_matrix *B); ! static void francis_standard_form(gsl_matrix *A, double *cs, double *sn); /* gsl_eigen_francis_alloc() *************** *** 76,82 **** gsl_eigen_francis_workspace *w; w = (gsl_eigen_francis_workspace *) ! malloc (sizeof (gsl_eigen_francis_workspace)); if (w == 0) { --- 75,81 ---- gsl_eigen_francis_workspace *w; w = (gsl_eigen_francis_workspace *) ! calloc (1, sizeof (gsl_eigen_francis_workspace)); if (w == 0) { *************** *** 94,107 **** w->Z = NULL; w->H = NULL; - w->hv2 = gsl_vector_alloc(2); - w->hv3 = gsl_vector_alloc(3); - - if ((w->hv2 == 0) || (w->hv3 == 0)) - { - GSL_ERROR_NULL ("failed to allocate space for householder vectors", GSL_ENOMEM); - } - return (w); } /* gsl_eigen_francis_alloc() */ --- 93,98 ---- *************** *** 113,121 **** void gsl_eigen_francis_free (gsl_eigen_francis_workspace *w) { - gsl_vector_free(w->hv2); - gsl_vector_free(w->hv3); - free(w); } /* gsl_eigen_francis_free() */ --- 104,109 ---- *************** *** 308,332 **** lambda2; N = H->size1; - - if (N == 1) - { - GSL_SET_COMPLEX(&lambda1, gsl_matrix_get(H, 0, 0), 0.0); - gsl_vector_complex_set(eval, w->n_evals, lambda1); - w->n_evals += 1; - w->n_iter = 0; - return; - } - else if (N == 2) - { - francis_schur_standardize(H, &lambda1, &lambda2, w); - gsl_vector_complex_set(eval, w->n_evals, lambda1); - gsl_vector_complex_set(eval, w->n_evals + 1, lambda2); - w->n_evals += 2; - w->n_iter = 0; - return; - } - m = gsl_matrix_submatrix(H, 0, 0, N, N); while ((N > 2) && ((w->n_iter)++ < w->max_iterations)) --- 296,301 ---- *************** *** 435,440 **** --- 404,411 ---- } } + /* handle special cases of N = 1 or 2 */ + if (N == 1) { GSL_SET_COMPLEX(&lambda1, gsl_matrix_get(&m.matrix, 0, 0), 0.0); *************** *** 475,487 **** francis_qrstep(gsl_matrix * H, gsl_eigen_francis_workspace * w) { const size_t N = H->size1; - double x, y, z; /* householder vector elements */ - double scale; /* scale factor to avoid overflow */ size_t i; /* looping */ gsl_matrix_view m; double tau_i; /* householder coefficient */ size_t q, r; ! size_t top; /* location of H in original matrix */ double s, disc; double h_nn, /* H(n,n) */ --- 446,459 ---- francis_qrstep(gsl_matrix * H, gsl_eigen_francis_workspace * w) { const size_t N = H->size1; size_t i; /* looping */ gsl_matrix_view m; double tau_i; /* householder coefficient */ + double dat[3]; /* householder vector */ + double scale; /* scale factor to avoid overflow */ + gsl_vector_view v2, v3; size_t q, r; ! size_t top = 0; /* location of H in original matrix */ double s, disc; double h_nn, /* H(n,n) */ *************** *** 490,502 **** h_tmp1, h_tmp2; ! if ((w->n_iter == 10) || (w->n_iter == 20)) { /* ! * exceptional shifts: we have gone 10 or 20 iterations * without finding a new eigenvalue, try a new choice of shifts. ! * See Numerical Recipes in C, eq 11.6.27 and LAPACK routine ! * DLAHQR */ s = fabs(gsl_matrix_get(H, N - 1, N - 2)) + fabs(gsl_matrix_get(H, N - 2, N - 3)); --- 462,476 ---- h_tmp1, h_tmp2; ! v2 = gsl_vector_view_array(dat, 2); ! v3 = gsl_vector_view_array(dat, 3); ! ! if ((w->n_iter % 10) == 0) { /* ! * exceptional shifts: we have gone 10 iterations * without finding a new eigenvalue, try a new choice of shifts. ! * See LAPACK routine DLAHQR */ s = fabs(gsl_matrix_get(H, N - 1, N - 2)) + fabs(gsl_matrix_get(H, N - 2, N - 3)); *************** *** 550,567 **** * are small */ ! x = (h_tmp1*h_tmp2 - h_cross) / gsl_matrix_get(H, 1, 0) + ! gsl_matrix_get(H, 0, 1); ! y = gsl_matrix_get(H, 1, 1) - gsl_matrix_get(H, 0, 0) - h_tmp1 - h_tmp2; ! z = gsl_matrix_get(H, 2, 1); ! scale = fabs(x) + fabs(y) + fabs(z); if (scale != 0.0) { /* scale to prevent overflow or underflow */ ! x /= scale; ! y /= scale; ! z /= scale; } if (w->Z || w->compute_t) --- 524,542 ---- * are small */ ! dat[0] = (h_tmp1*h_tmp2 - h_cross) / gsl_matrix_get(H, 1, 0) + ! gsl_matrix_get(H, 0, 1); ! dat[1] = gsl_matrix_get(H, 1, 1) - gsl_matrix_get(H, 0, 0) - h_tmp1 - ! h_tmp2; ! dat[2] = gsl_matrix_get(H, 2, 1); ! scale = fabs(dat[0]) + fabs(dat[1]) + fabs(dat[2]); if (scale != 0.0) { /* scale to prevent overflow or underflow */ ! dat[0] /= scale; ! dat[1] /= scale; ! dat[2] /= scale; } if (w->Z || w->compute_t) *************** *** 570,584 **** * get absolute indices of this (sub)matrix relative to the * original Hessenberg matrix */ ! francis_get_submatrix(w->H, H, &top); } for (i = 0; i < N - 2; ++i) { ! gsl_vector_set(w->hv3, 0, x); ! gsl_vector_set(w->hv3, 1, y); ! gsl_vector_set(w->hv3, 2, z); ! tau_i = gsl_linalg_householder_transform(w->hv3); if (tau_i != 0.0) { --- 545,556 ---- * get absolute indices of this (sub)matrix relative to the * original Hessenberg matrix */ ! top = francis_get_submatrix(w->H, H); } for (i = 0; i < N - 2; ++i) { ! tau_i = gsl_linalg_householder_transform(&v3.vector); if (tau_i != 0.0) { *************** *** 605,611 **** top + q, 3, w->size - top - q); ! gsl_linalg_householder_hm(tau_i, w->hv3, &m.matrix); /* apply right householder matrix (I - tau_i v v') to H */ m = gsl_matrix_submatrix(w->H, --- 577,583 ---- top + q, 3, w->size - top - q); ! gsl_linalg_householder_hm(tau_i, &v3.vector, &m.matrix); /* apply right householder matrix (I - tau_i v v') to H */ m = gsl_matrix_submatrix(w->H, *************** *** 613,619 **** top + i, top + r + 1, 3); ! gsl_linalg_householder_mh(tau_i, w->hv3, &m.matrix); } else { --- 585,591 ---- top + i, top + r + 1, 3); ! gsl_linalg_householder_mh(tau_i, &v3.vector, &m.matrix); } else { *************** *** 624,664 **** /* apply left householder matrix (I - tau_i v v') to H */ m = gsl_matrix_submatrix(H, i, q, 3, N - q); ! gsl_linalg_householder_hm(tau_i, w->hv3, &m.matrix); /* apply right householder matrix (I - tau_i v v') to H */ m = gsl_matrix_submatrix(H, 0, i, r + 1, 3); ! gsl_linalg_householder_mh(tau_i, w->hv3, &m.matrix); } if (w->Z) { /* accumulate the similarity transformation into Z */ m = gsl_matrix_submatrix(w->Z, 0, top + i, w->size, 3); ! gsl_linalg_householder_mh(tau_i, w->hv3, &m.matrix); } } /* if (tau_i != 0.0) */ ! x = gsl_matrix_get(H, i + 1, i); ! y = gsl_matrix_get(H, i + 2, i); if (i < (N - 3)) { ! z = gsl_matrix_get(H, i + 3, i); } ! scale = fabs(x) + fabs(y) + fabs(z); if (scale != 0.0) { /* scale to prevent overflow or underflow */ ! x /= scale; ! y /= scale; ! z /= scale; } } /* for (i = 0; i < N - 2; ++i) */ ! gsl_vector_set(w->hv2, 0, x); ! gsl_vector_set(w->hv2, 1, y); ! tau_i = gsl_linalg_householder_transform(w->hv2); if (w->compute_t) { --- 596,642 ---- /* apply left householder matrix (I - tau_i v v') to H */ m = gsl_matrix_submatrix(H, i, q, 3, N - q); ! gsl_linalg_householder_hm(tau_i, &v3.vector, &m.matrix); /* apply right householder matrix (I - tau_i v v') to H */ m = gsl_matrix_submatrix(H, 0, i, r + 1, 3); ! gsl_linalg_householder_mh(tau_i, &v3.vector, &m.matrix); } if (w->Z) { /* accumulate the similarity transformation into Z */ m = gsl_matrix_submatrix(w->Z, 0, top + i, w->size, 3); ! gsl_linalg_householder_mh(tau_i, &v3.vector, &m.matrix); } } /* if (tau_i != 0.0) */ ! dat[0] = gsl_matrix_get(H, i + 1, i); ! dat[1] = gsl_matrix_get(H, i + 2, i); if (i < (N - 3)) { ! dat[2] = gsl_matrix_get(H, i + 3, i); } ! scale = fabs(dat[0]) + fabs(dat[1]) + fabs(dat[2]); if (scale != 0.0) { /* scale to prevent overflow or underflow */ ! dat[0] /= scale; ! dat[1] /= scale; ! dat[2] /= scale; } } /* for (i = 0; i < N - 2; ++i) */ ! scale = fabs(dat[0]) + fabs(dat[1]); ! if (scale != 0.0) ! { ! /* scale to prevent overflow or underflow */ ! dat[0] /= scale; ! dat[1] /= scale; ! } ! ! tau_i = gsl_linalg_householder_transform(&v2.vector); if (w->compute_t) { *************** *** 667,695 **** top + N - 3, 2, w->size - top - N + 3); ! gsl_linalg_householder_hm(tau_i, w->hv2, &m.matrix); m = gsl_matrix_submatrix(w->H, 0, top + N - 2, top + N, 2); ! gsl_linalg_householder_mh(tau_i, w->hv2, &m.matrix); } else { m = gsl_matrix_submatrix(H, N - 2, N - 3, 2, 3); ! gsl_linalg_householder_hm(tau_i, w->hv2, &m.matrix); m = gsl_matrix_submatrix(H, 0, N - 2, N, 2); ! gsl_linalg_householder_mh(tau_i, w->hv2, &m.matrix); } if (w->Z) { /* accumulate transformation into Z */ m = gsl_matrix_submatrix(w->Z, 0, top + N - 2, w->size, 2); ! gsl_linalg_householder_mh(tau_i, w->hv2, &m.matrix); } return GSL_SUCCESS; --- 645,673 ---- top + N - 3, 2, w->size - top - N + 3); ! gsl_linalg_householder_hm(tau_i, &v2.vector, &m.matrix); m = gsl_matrix_submatrix(w->H, 0, top + N - 2, top + N, 2); ! gsl_linalg_householder_mh(tau_i, &v2.vector, &m.matrix); } else { m = gsl_matrix_submatrix(H, N - 2, N - 3, 2, 3); ! gsl_linalg_householder_hm(tau_i, &v2.vector, &m.matrix); m = gsl_matrix_submatrix(H, 0, N - 2, N, 2); ! gsl_linalg_householder_mh(tau_i, &v2.vector, &m.matrix); } if (w->Z) { /* accumulate transformation into Z */ m = gsl_matrix_submatrix(w->Z, 0, top + N - 2, w->size, 2); ! gsl_linalg_householder_mh(tau_i, &v2.vector, &m.matrix); } return GSL_SUCCESS; *************** *** 751,766 **** gsl_complex *eval2, gsl_eigen_francis_workspace *w) { size_t top; /* * figure out where the submatrix A resides in the * original matrix H */ ! francis_get_submatrix(w->H, A, &top); ! /* convert A to standard form and store eigenvalues */ ! gsl_schur_standardize(w->H, top, eval1, eval2, w->compute_t, w->Z); } /* francis_schur_standardize() */ /* --- 729,856 ---- gsl_complex *eval2, gsl_eigen_francis_workspace *w) { + const size_t N = w->size; + double cs, sn; size_t top; /* * figure out where the submatrix A resides in the * original matrix H */ ! top = francis_get_submatrix(w->H, A); ! ! /* convert 2-by-2 block to standard form */ ! francis_standard_form(A, &cs, &sn); ! ! /* set eigenvalues */ ! ! GSL_SET_REAL(eval1, gsl_matrix_get(A, 0, 0)); ! GSL_SET_REAL(eval2, gsl_matrix_get(A, 1, 1)); ! if (gsl_matrix_get(A, 1, 0) == 0.0) ! { ! GSL_SET_IMAG(eval1, 0.0); ! GSL_SET_IMAG(eval2, 0.0); ! } ! else ! { ! double tmp = sqrt(fabs(gsl_matrix_get(A, 0, 1)) * ! fabs(gsl_matrix_get(A, 1, 0))); ! GSL_SET_IMAG(eval1, tmp); ! GSL_SET_IMAG(eval2, -tmp); ! } ! ! if (w->compute_t) ! { ! gsl_vector_view xv, yv; ! ! /* ! * The above call to francis_standard_form transformed a 2-by-2 block ! * of T into upper triangular form via the transformation ! * ! * U = [ CS -SN ] ! * [ SN CS ] ! * ! * The original matrix T was ! * ! * T = [ T_{11} | T_{12} | T_{13} ] ! * [ 0* | A | T_{23} ] ! * [ 0 | 0* | T_{33} ] ! * ! * where 0* indicates all zeros except for possibly ! * one subdiagonal element next to A. ! * ! * After francis_standard_form, T looks like this: ! * ! * T = [ T_{11} | T_{12} | T_{13} ] ! * [ 0* | U^t A U | T_{23} ] ! * [ 0 | 0* | T_{33} ] ! * ! * since only the 2-by-2 block of A was changed. However, ! * in order to be able to back transform T at the end, ! * we need to apply the U transformation to the rest ! * of the matrix T since there is no way to apply a ! * similarity transformation to T and change only the ! * middle 2-by-2 block. In other words, let ! * ! * M = [ I 0 0 ] ! * [ 0 U 0 ] ! * [ 0 0 I ] ! * ! * and compute ! * ! * M^t T M = [ T_{11} | T_{12} U | T_{13} ] ! * [ U^t 0* | U^t A U | U^t T_{23} ] ! * [ 0 | 0* U | T_{33} ] ! * ! * So basically we need to apply the transformation U ! * to the i x 2 matrix T_{12} and the 2 x (n - i + 2) ! * matrix T_{23}, where i is the index of the top of A ! * in T. ! * ! * The BLAS routine drot() is suited for this. ! */ ! ! if (top < (N - 2)) ! { ! /* transform the 2 rows of T_{23} */ ! ! xv = gsl_matrix_subrow(w->H, top, top + 2, N - top - 2); ! yv = gsl_matrix_subrow(w->H, top + 1, top + 2, N - top - 2); ! gsl_blas_drot(&xv.vector, &yv.vector, cs, sn); ! } ! ! if (top > 0) ! { ! /* transform the 2 columns of T_{12} */ ! ! xv = gsl_matrix_subcolumn(w->H, top, 0, top); ! yv = gsl_matrix_subcolumn(w->H, top + 1, 0, top); ! gsl_blas_drot(&xv.vector, &yv.vector, cs, sn); ! } ! } /* if (w->compute_t) */ ! if (w->Z) ! { ! gsl_vector_view xv, yv; ! ! /* ! * Accumulate the transformation in Z. Here, Z -> Z * M ! * ! * So: ! * ! * Z -> [ Z_{11} | Z_{12} U | Z_{13} ] ! * [ Z_{21} | Z_{22} U | Z_{23} ] ! * [ Z_{31} | Z_{32} U | Z_{33} ] ! * ! * So we just need to apply drot() to the 2 columns ! * starting at index 'top' ! */ ! ! xv = gsl_matrix_column(w->Z, top); ! yv = gsl_matrix_column(w->Z, top + 1); ! ! gsl_blas_drot(&xv.vector, &yv.vector, cs, sn); ! } /* if (w->Z) */ } /* francis_schur_standardize() */ /* *************** *** 769,783 **** compute the indices in A of where the matrix B resides */ ! static inline void ! francis_get_submatrix(gsl_matrix *A, gsl_matrix *B, size_t *top) { size_t diff; double ratio; diff = (size_t) (B->data - A->data); ratio = (double)diff / ((double) (A->tda + 1)); ! *top = (size_t) floor(ratio); } /* francis_get_submatrix() */ --- 859,1046 ---- compute the indices in A of where the matrix B resides */ ! static inline size_t ! francis_get_submatrix(gsl_matrix *A, gsl_matrix *B) { size_t diff; double ratio; + size_t top; diff = (size_t) (B->data - A->data); ratio = (double)diff / ((double) (A->tda + 1)); ! top = (size_t) floor(ratio); ! ! return top; } /* francis_get_submatrix() */ + + /* + francis_standard_form() + Compute the Schur factorization of a real 2-by-2 matrix in + standard form: + + [ A B ] = [ CS -SN ] [ T11 T12 ] [ CS SN ] + [ C D ] [ SN CS ] [ T21 T22 ] [-SN CS ] + + where either: + 1) T21 = 0 so that T11 and T22 are real eigenvalues of the matrix, or + 2) T11 = T22 and T21*T12 < 0, so that T11 +/- sqrt(|T21*T12|) are + complex conjugate eigenvalues + + Inputs: A - 2-by-2 matrix + cs - where to store cosine parameter of rotation matrix + sn - where to store sine parameter of rotation matrix + + Notes: 1) based on LAPACK routine DLANV2 + 2) On output, A is modified to contain the matrix in standard form + */ + + static void + francis_standard_form(gsl_matrix *A, double *cs, double *sn) + { + double a, b, c, d; /* input matrix values */ + double tmp; + double p, z; + double bcmax, bcmis, scale; + double tau, sigma; + double cs1, sn1; + double aa, bb, cc, dd; + double sab, sac; + + a = gsl_matrix_get(A, 0, 0); + b = gsl_matrix_get(A, 0, 1); + c = gsl_matrix_get(A, 1, 0); + d = gsl_matrix_get(A, 1, 1); + + if (c == 0.0) + { + /* + * matrix is already upper triangular - set rotation matrix + * to the identity + */ + *cs = 1.0; + *sn = 0.0; + } + else if (b == 0.0) + { + /* swap rows and columns to make it upper triangular */ + + *cs = 0.0; + *sn = 1.0; + + tmp = d; + d = a; + a = tmp; + b = -c; + c = 0.0; + } + else if (((a - d) == 0.0) && (GSL_SIGN(b) != GSL_SIGN(c))) + { + /* the matrix has complex eigenvalues with a == d */ + *cs = 1.0; + *sn = 0.0; + } + else + { + tmp = a - d; + p = 0.5 * tmp; + bcmax = GSL_MAX(fabs(b), fabs(c)); + bcmis = GSL_MIN(fabs(b), fabs(c)) * GSL_SIGN(b) * GSL_SIGN(c); + scale = GSL_MAX(fabs(p), bcmax); + z = (p / scale) * p + (bcmax / scale) * bcmis; + + if (z >= 4.0 * GSL_DBL_EPSILON) + { + /* real eigenvalues, compute a and d */ + + z = p + GSL_SIGN(p) * fabs(sqrt(scale) * sqrt(z)); + a = d + z; + d -= (bcmax / z) * bcmis; + + /* compute b and the rotation matrix */ + + tau = gsl_hypot(c, z); + *cs = z / tau; + *sn = c / tau; + b -= c; + c = 0.0; + } + else + { + /* + * complex eigenvalues, or real (almost) equal eigenvalues - + * make diagonal elements equal + */ + + sigma = b + c; + tau = gsl_hypot(sigma, tmp); + *cs = sqrt(0.5 * (1.0 + fabs(sigma) / tau)); + *sn = -(p / (tau * (*cs))) * GSL_SIGN(sigma); + + /* + * Compute [ AA BB ] = [ A B ] [ CS -SN ] + * [ CC DD ] [ C D ] [ SN CS ] + */ + aa = a * (*cs) + b * (*sn); + bb = -a * (*sn) + b * (*cs); + cc = c * (*cs) + d * (*sn); + dd = -c * (*sn) + d * (*cs); + + /* + * Compute [ A B ] = [ CS SN ] [ AA BB ] + * [ C D ] [-SN CS ] [ CC DD ] + */ + a = aa * (*cs) + cc * (*sn); + b = bb * (*cs) + dd * (*sn); + c = -aa * (*sn) + cc * (*cs); + d = -bb * (*sn) + dd * (*cs); + + tmp = 0.5 * (a + d); + a = d = tmp; + + if (c != 0.0) + { + if (b != 0.0) + { + if (GSL_SIGN(b) == GSL_SIGN(c)) + { + /* + * real eigenvalues: reduce to upper triangular + * form + */ + sab = sqrt(fabs(b)); + sac = sqrt(fabs(c)); + p = GSL_SIGN(c) * fabs(sab * sac); + tau = 1.0 / sqrt(fabs(b + c)); + a = tmp + p; + d = tmp - p; + b -= c; + c = 0.0; + + cs1 = sab * tau; + sn1 = sac * tau; + tmp = (*cs) * cs1 - (*sn) * sn1; + *sn = (*cs) * sn1 + (*sn) * cs1; + *cs = tmp; + } + } + else + { + b = -c; + c = 0.0; + tmp = *cs; + *cs = -(*sn); + *sn = tmp; + } + } + } + } + + /* set new matrix elements */ + + gsl_matrix_set(A, 0, 0, a); + gsl_matrix_set(A, 0, 1, b); + gsl_matrix_set(A, 1, 0, c); + gsl_matrix_set(A, 1, 1, d); + } /* francis_standard_form() */ diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/eigen/gen.c gsl-1.10/eigen/gen.c *** gsl-1.9/eigen/gen.c 1970-01-01 01:00:00.000000000 +0100 --- gsl-1.10/eigen/gen.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 0 **** --- 1,2114 ---- + /* eigen/gen.c + * + * Copyright (C) 2006, 2007 Patrick Alken + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or (at + * your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + + #include + #include + + #include + #include + #include + #include + #include + #include + #include + #include + + /* + * This module computes the eigenvalues of a real generalized + * eigensystem A x = \lambda B x. Left and right Schur vectors + * are optionally computed as well. + * + * Based on the algorithm from Moler and Stewart + * [1] C. Moler, G. Stewart, "An Algorithm for Generalized Matrix + * Eigenvalue Problems", SIAM J. Numer. Anal., Vol 10, No 2, 1973. + * + * This algorithm is also described in the book + * [2] Golub & Van Loan, "Matrix Computations" (3rd ed), algorithm 7.7.3 + * + * This file contains routines based on original code from LAPACK + * which is distributed under the modified BSD license. + */ + + #define GEN_ESHIFT_COEFF (1.736) + + static void gen_schur_decomp(gsl_matrix *H, gsl_matrix *R, + gsl_vector_complex *alpha, gsl_vector *beta, + gsl_eigen_gen_workspace *w); + static inline int gen_qzstep(gsl_matrix *H, gsl_matrix *R, + gsl_eigen_gen_workspace *w); + static inline void gen_qzstep_d(gsl_matrix *H, gsl_matrix *R, + gsl_eigen_gen_workspace *w); + static void gen_tri_split_top(gsl_matrix *H, gsl_matrix *R, + gsl_eigen_gen_workspace *w); + static inline void gen_tri_chase_zero(gsl_matrix *H, gsl_matrix *R, + size_t q, + gsl_eigen_gen_workspace *w); + static inline void gen_tri_zero_H(gsl_matrix *H, gsl_matrix *R, + gsl_eigen_gen_workspace *w); + static inline size_t gen_search_small_elements(gsl_matrix *H, + gsl_matrix *R, + int *flag, + gsl_eigen_gen_workspace *w); + static int gen_schur_standardize1(gsl_matrix *A, gsl_matrix *B, + double *alphar, double *beta, + gsl_eigen_gen_workspace *w); + static int gen_schur_standardize2(gsl_matrix *A, gsl_matrix *B, + gsl_complex *alpha1, + gsl_complex *alpha2, + double *beta1, double *beta2, + gsl_eigen_gen_workspace *w); + static int gen_compute_eigenvals(gsl_matrix *A, gsl_matrix *B, + gsl_complex *alpha1, + gsl_complex *alpha2, double *beta1, + double *beta2); + static void gen_store_eigval1(const gsl_matrix *H, const double a, + const double b, gsl_vector_complex *alpha, + gsl_vector *beta, + gsl_eigen_gen_workspace *w); + static void gen_store_eigval2(const gsl_matrix *H, + const gsl_complex *alpha1, + const double beta1, + const gsl_complex *alpha2, + const double beta2, + gsl_vector_complex *alpha, + gsl_vector *beta, + gsl_eigen_gen_workspace *w); + static inline size_t gen_get_submatrix(const gsl_matrix *A, + const gsl_matrix *B); + + /*FIX**/ + inline static double normF (gsl_matrix * A); + inline static void create_givens (const double a, const double b, double *c, double *s); + + /* + gsl_eigen_gen_alloc() + + Allocate a workspace for solving the generalized eigenvalue problem. + The size of this workspace is O(n) + + Inputs: n - size of matrices + + Return: pointer to workspace + */ + + gsl_eigen_gen_workspace * + gsl_eigen_gen_alloc(const size_t n) + { + gsl_eigen_gen_workspace *w; + + if (n == 0) + { + GSL_ERROR_NULL ("matrix dimension must be positive integer", + GSL_EINVAL); + } + + w = calloc (1, sizeof (gsl_eigen_gen_workspace)); + + if (w == 0) + { + GSL_ERROR_NULL ("failed to allocate space for workspace", GSL_ENOMEM); + } + + w->size = n; + w->max_iterations = 30 * n; + w->n_evals = 0; + w->n_iter = 0; + w->needtop = 0; + w->atol = 0.0; + w->btol = 0.0; + w->ascale = 0.0; + w->bscale = 0.0; + w->eshift = 0.0; + w->H = NULL; + w->R = NULL; + w->compute_s = 0; + w->compute_t = 0; + w->Q = NULL; + w->Z = NULL; + + w->work = gsl_vector_alloc(n); + + if (w->work == 0) + { + gsl_eigen_gen_free(w); + GSL_ERROR_NULL ("failed to allocate space for additional workspace", GSL_ENOMEM); + } + + return (w); + } /* gsl_eigen_gen_alloc() */ + + /* + gsl_eigen_gen_free() + Free workspace w + */ + + void + gsl_eigen_gen_free (gsl_eigen_gen_workspace * w) + { + if (w->work) + gsl_vector_free(w->work); + + free(w); + } /* gsl_eigen_gen_free() */ + + /* + gsl_eigen_gen_params() + Set parameters which define how we solve the eigenvalue problem + + Inputs: compute_s - 1 if we want to compute S, 0 if not + compute_t - 1 if we want to compute T, 0 if not + balance - 1 if we want to balance matrices, 0 if not + w - gen workspace + + Return: none + */ + + void + gsl_eigen_gen_params (const int compute_s, const int compute_t, + const int balance, gsl_eigen_gen_workspace *w) + { + w->compute_s = compute_s; + w->compute_t = compute_t; + } /* gsl_eigen_gen_params() */ + + /* + gsl_eigen_gen() + + Solve the generalized eigenvalue problem + + A x = \lambda B x + + for the eigenvalues \lambda. + + Inputs: A - general real matrix + B - general real matrix + alpha - where to store eigenvalue numerators + beta - where to store eigenvalue denominators + w - workspace + + Return: success or error + */ + + int + gsl_eigen_gen (gsl_matrix * A, gsl_matrix * B, gsl_vector_complex * alpha, + gsl_vector * beta, gsl_eigen_gen_workspace * w) + { + const size_t N = A->size1; + + /* check matrix and vector sizes */ + + if (N != A->size2) + { + GSL_ERROR ("matrix must be square to compute eigenvalues", GSL_ENOTSQR); + } + else if ((N != B->size1) || (N != B->size2)) + { + GSL_ERROR ("B matrix dimensions must match A", GSL_EBADLEN); + } + else if (alpha->size != N || beta->size != N) + { + GSL_ERROR ("eigenvalue vector must match matrix size", GSL_EBADLEN); + } + else if (w->size != N) + { + GSL_ERROR ("matrix size does not match workspace", GSL_EBADLEN); + } + else + { + double anorm, bnorm; + + /* compute the Hessenberg-Triangular reduction of (A, B) */ + gsl_linalg_hesstri_decomp(A, B, w->Q, w->Z, w->work); + + /* save pointers to original matrices */ + w->H = A; + w->R = B; + + w->n_evals = 0; + w->n_iter = 0; + w->eshift = 0.0; + + /* determine if we need to compute top indices in QZ step */ + w->needtop = w->Q != 0 || w->Z != 0 || w->compute_t || w->compute_s; + + /* compute matrix norms */ + anorm = normF(A); + bnorm = normF(B); + + /* compute tolerances and scaling factors */ + w->atol = GSL_MAX(GSL_DBL_MIN, GSL_DBL_EPSILON * anorm); + w->btol = GSL_MAX(GSL_DBL_MIN, GSL_DBL_EPSILON * bnorm); + w->ascale = 1.0 / GSL_MAX(GSL_DBL_MIN, anorm); + w->bscale = 1.0 / GSL_MAX(GSL_DBL_MIN, bnorm); + + /* compute the generalized Schur decomposition and eigenvalues */ + gen_schur_decomp(A, B, alpha, beta, w); + + if (w->n_evals != N) + return GSL_EMAXITER; + + return GSL_SUCCESS; + } + } /* gsl_eigen_gen() */ + + /* + gsl_eigen_gen_QZ() + + Solve the generalized eigenvalue problem + + A x = \lambda B x + + for the eigenvalues \lambda. Optionally compute left and/or right + Schur vectors Q and Z which satisfy: + + A = Q S Z^t + B = Q T Z^t + + where (S, T) is the generalized Schur form of (A, B) + + Inputs: A - general real matrix + B - general real matrix + alpha - where to store eigenvalue numerators + beta - where to store eigenvalue denominators + Q - if non-null, where to store left Schur vectors + Z - if non-null, where to store right Schur vectors + w - workspace + + Return: success or error + */ + + int + gsl_eigen_gen_QZ (gsl_matrix * A, gsl_matrix * B, + gsl_vector_complex * alpha, gsl_vector * beta, + gsl_matrix * Q, gsl_matrix * Z, + gsl_eigen_gen_workspace * w) + { + if (Q && (A->size1 != Q->size1 || A->size1 != Q->size2)) + { + GSL_ERROR("Q matrix has wrong dimensions", GSL_EBADLEN); + } + else if (Z && (A->size1 != Z->size1 || A->size1 != Z->size2)) + { + GSL_ERROR("Z matrix has wrong dimensions", GSL_EBADLEN); + } + else + { + int s; + + w->Q = Q; + w->Z = Z; + + s = gsl_eigen_gen(A, B, alpha, beta, w); + + w->Q = NULL; + w->Z = NULL; + + return s; + } + } /* gsl_eigen_gen_QZ() */ + + /******************************************** + * INTERNAL ROUTINES * + ********************************************/ + + /* + gen_schur_decomp() + Compute the generalized Schur decomposition of the matrix pencil + (H, R) which is in Hessenberg-Triangular form + + Inputs: H - upper hessenberg matrix + R - upper triangular matrix + alpha - (output) where to store eigenvalue numerators + beta - (output) where to store eigenvalue denominators + w - workspace + + Return: none + + Notes: 1) w->n_evals is updated to keep track of how many eigenvalues + are found + */ + + static void + gen_schur_decomp(gsl_matrix *H, gsl_matrix *R, gsl_vector_complex *alpha, + gsl_vector *beta, gsl_eigen_gen_workspace *w) + { + size_t N; + gsl_matrix_view h, r; + gsl_matrix_view vh, vr; + size_t q; /* index of small subdiagonal element */ + gsl_complex z1, z2; /* complex values */ + double a, b; + int s; + int flag; + + N = H->size1; + + h = gsl_matrix_submatrix(H, 0, 0, N, N); + r = gsl_matrix_submatrix(R, 0, 0, N, N); + + while ((N > 1) && (w->n_iter)++ < w->max_iterations) + { + q = gen_search_small_elements(&h.matrix, &r.matrix, &flag, w); + + if (flag == 0) + { + /* no small elements found - do a QZ sweep */ + s = gen_qzstep(&h.matrix, &r.matrix, w); + + if (s == GSL_CONTINUE) + { + /* + * (h, r) is a 2-by-2 block with complex eigenvalues - + * standardize and read off eigenvalues + */ + s = gen_schur_standardize2(&h.matrix, + &r.matrix, + &z1, + &z2, + &a, + &b, + w); + if (s != GSL_SUCCESS) + { + /* + * if we get here, then the standardization process + * perturbed the eigenvalues onto the real line - + * continue QZ iteration to break them into 1-by-1 + * blocks + */ + continue; + } + + gen_store_eigval2(&h.matrix, &z1, a, &z2, b, alpha, beta, w); + N = 0; + } /* if (s) */ + + continue; + } /* if (flag == 0) */ + else if (flag == 2) + { + if (q == 0) + { + /* + * the leading element of R is zero, split off a block + * at the top + */ + gen_tri_split_top(&h.matrix, &r.matrix, w); + } + else + { + /* + * we found a small element on the diagonal of R - chase the + * zero to the bottom of the active block and then zero + * H(n, n - 1) to split off a 1-by-1 block + */ + + if (q != N - 1) + gen_tri_chase_zero(&h.matrix, &r.matrix, q, w); + + /* now zero H(n, n - 1) */ + gen_tri_zero_H(&h.matrix, &r.matrix, w); + } + + /* continue so the next iteration detects the zero in H */ + continue; + } + + /* + * a small subdiagonal element of H was found - one or two + * eigenvalues have converged or the matrix has split into + * two smaller matrices + */ + + if (q == (N - 1)) + { + /* + * the last subdiagonal element of the hessenberg matrix is 0 - + * H_{NN} / R_{NN} is a real eigenvalue - standardize so + * R_{NN} > 0 + */ + + vh = gsl_matrix_submatrix(&h.matrix, q, q, 1, 1); + vr = gsl_matrix_submatrix(&r.matrix, q, q, 1, 1); + gen_schur_standardize1(&vh.matrix, &vr.matrix, &a, &b, w); + + gen_store_eigval1(&vh.matrix, a, b, alpha, beta, w); + + --N; + h = gsl_matrix_submatrix(&h.matrix, 0, 0, N, N); + r = gsl_matrix_submatrix(&r.matrix, 0, 0, N, N); + } + else if (q == (N - 2)) + { + /* bottom right 2-by-2 block may have converged */ + + vh = gsl_matrix_submatrix(&h.matrix, q, q, 2, 2); + vr = gsl_matrix_submatrix(&r.matrix, q, q, 2, 2); + s = gen_schur_standardize2(&vh.matrix, + &vr.matrix, + &z1, + &z2, + &a, + &b, + w); + if (s != GSL_SUCCESS) + { + /* + * this 2-by-2 block contains real eigenvalues that + * have not yet separated into 1-by-1 blocks - + * recursively call gen_schur_decomp() to finish off + * this block + */ + gen_schur_decomp(&vh.matrix, &vr.matrix, alpha, beta, w); + } + else + { + /* we got 2 complex eigenvalues */ + + gen_store_eigval2(&vh.matrix, &z1, a, &z2, b, alpha, beta, w); + } + + N -= 2; + h = gsl_matrix_submatrix(&h.matrix, 0, 0, N, N); + r = gsl_matrix_submatrix(&r.matrix, 0, 0, N, N); + } + else if (q == 1) + { + /* H_{11} / R_{11} is an eigenvalue */ + + vh = gsl_matrix_submatrix(&h.matrix, 0, 0, 1, 1); + vr = gsl_matrix_submatrix(&r.matrix, 0, 0, 1, 1); + gen_schur_standardize1(&vh.matrix, &vr.matrix, &a, &b, w); + + gen_store_eigval1(&vh.matrix, a, b, alpha, beta, w); + + --N; + h = gsl_matrix_submatrix(&h.matrix, 1, 1, N, N); + r = gsl_matrix_submatrix(&r.matrix, 1, 1, N, N); + } + else if (q == 2) + { + /* upper left 2-by-2 block may have converged */ + + vh = gsl_matrix_submatrix(&h.matrix, 0, 0, 2, 2); + vr = gsl_matrix_submatrix(&r.matrix, 0, 0, 2, 2); + s = gen_schur_standardize2(&vh.matrix, + &vr.matrix, + &z1, + &z2, + &a, + &b, + w); + if (s != GSL_SUCCESS) + { + /* + * this 2-by-2 block contains real eigenvalues that + * have not yet separated into 1-by-1 blocks - + * recursively call gen_schur_decomp() to finish off + * this block + */ + gen_schur_decomp(&vh.matrix, &vr.matrix, alpha, beta, w); + } + else + { + /* we got 2 complex eigenvalues */ + gen_store_eigval2(&vh.matrix, &z1, a, &z2, b, alpha, beta, w); + } + + N -= 2; + h = gsl_matrix_submatrix(&h.matrix, 2, 2, N, N); + r = gsl_matrix_submatrix(&r.matrix, 2, 2, N, N); + } + else + { + /* + * There is a zero element on the subdiagonal somewhere + * in the middle of the matrix - we can now operate + * separately on the two submatrices split by this + * element. q is the row index of the zero element. + */ + + /* operate on lower right (N - q)-by-(N - q) block first */ + vh = gsl_matrix_submatrix(&h.matrix, q, q, N - q, N - q); + vr = gsl_matrix_submatrix(&r.matrix, q, q, N - q, N - q); + gen_schur_decomp(&vh.matrix, &vr.matrix, alpha, beta, w); + + /* operate on upper left q-by-q block */ + vh = gsl_matrix_submatrix(&h.matrix, 0, 0, q, q); + vr = gsl_matrix_submatrix(&r.matrix, 0, 0, q, q); + gen_schur_decomp(&vh.matrix, &vr.matrix, alpha, beta, w); + + N = 0; + } + } /* while ((N > 1) && (w->n_iter)++ < w->max_iterations) */ + + /* handle special case of N = 1 */ + + if (N == 1) + { + gen_schur_standardize1(&h.matrix, &r.matrix, &a, &b, w); + gen_store_eigval1(&h.matrix, a, b, alpha, beta, w); + } + } /* gen_schur_decomp() */ + + /* + gen_qzstep() + This routine determines what type of QZ step to perform on + the generalized matrix pair (H, R). If the pair is 3-by-3 or bigger, + we look at the bottom right 2-by-2 block. If this block has complex + eigenvalues, we perform a Francis double shift QZ sweep. If it + has real eigenvalues, we perform an implicit single shift QZ sweep. + + If the pair is 2-by-2 with real eigenvalues, we perform a single + shift sweep. If it has complex eigenvalues, we return GSL_CONTINUE + to notify the calling function that a 2-by-2 block with complex + eigenvalues has converged, so that it may then call + gen_schur_standardize2(). In the real eigenvalue case, we want to + continue doing QZ sweeps to break it up into two 1-by-1 blocks. + + See LAPACK routine DHGEQZ and [1] for more information. + + Inputs: H - upper Hessenberg matrix (at least 2-by-2) + R - upper triangular matrix (at least 2-by-2) + w - workspace + + Return: GSL_SUCCESS on normal completion + GSL_CONTINUE if we detect a 2-by-2 block with complex eigenvalues + */ + + static inline int + gen_qzstep(gsl_matrix *H, gsl_matrix *R, gsl_eigen_gen_workspace *w) + { + const size_t N = H->size1; + gsl_matrix_view vh, vr; /* views of bottom right 2-by-2 block */ + double wr1, wr2, wi; + double scale1, scale2, scale; + double cs, sn; /* givens rotation */ + double temp, /* temporary variables */ + temp2; + size_t j; /* looping */ + gsl_vector_view xv, yv; /* temporary views */ + size_t top; + size_t rows; + + if (w->n_iter % 10 == 0) + { + /* + * Exceptional shift - we have gone 10 iterations without finding + * a new eigenvalue, do a single shift sweep with an + * exceptional shift + */ + + if ((GSL_DBL_MIN * w->max_iterations) * + fabs(gsl_matrix_get(H, N - 2, N - 1)) < + fabs(gsl_matrix_get(R, N - 2, N - 2))) + { + w->eshift += gsl_matrix_get(H, N - 2, N - 1) / + gsl_matrix_get(R, N - 2, N - 2); + } + else + w->eshift += 1.0 / (GSL_DBL_MIN * w->max_iterations); + + if ((w->eshift < GSL_DBL_EPSILON) && + (GSL_DBL_MIN * w->max_iterations) * + fabs(gsl_matrix_get(H, N - 1, N - 2)) < + fabs(gsl_matrix_get(R, N - 2, N - 2))) + { + w->eshift = GEN_ESHIFT_COEFF * + (w->ascale * gsl_matrix_get(H, N - 1, N - 2)) / + (w->bscale * gsl_matrix_get(R, N - 2, N - 2)); + } + + scale1 = 1.0; + wr1 = w->eshift; + } + else + { + /* + * Compute generalized eigenvalues of bottom right 2-by-2 block + * to be used as shifts - wr1 is the Wilkinson shift + */ + + vh = gsl_matrix_submatrix(H, N - 2, N - 2, 2, 2); + vr = gsl_matrix_submatrix(R, N - 2, N - 2, 2, 2); + gsl_schur_gen_eigvals(&vh.matrix, + &vr.matrix, + &wr1, + &wr2, + &wi, + &scale1, + &scale2); + + if (wi != 0.0) + { + /* complex eigenvalues */ + + if (N == 2) + { + /* + * its a 2-by-2 block with complex eigenvalues - notify + * the calling function to deflate + */ + return (GSL_CONTINUE); + } + else + { + /* do a francis double shift sweep */ + gen_qzstep_d(H, R, w); + } + + return GSL_SUCCESS; + } + } + + /* real eigenvalues - perform single shift QZ step */ + + temp = GSL_MIN(w->ascale, 1.0) * (0.5 / GSL_DBL_MIN); + if (scale1 > temp) + scale = temp / scale1; + else + scale = 1.0; + + temp = GSL_MIN(w->bscale, 1.0) * (0.5 / GSL_DBL_MIN); + if (fabs(wr1) > temp) + scale = GSL_MIN(scale, temp / fabs(wr1)); + + scale1 *= scale; + wr1 *= scale; + + if (w->needtop) + { + /* get absolute index of this matrix relative to original matrix */ + top = gen_get_submatrix(w->H, H); + } + + temp = scale1*gsl_matrix_get(H, 0, 0) - wr1*gsl_matrix_get(R, 0, 0); + temp2 = scale1*gsl_matrix_get(H, 1, 0); + + create_givens(temp, temp2, &cs, &sn); + sn = -sn; + + for (j = 0; j < N - 1; ++j) + { + if (j > 0) + { + temp = gsl_matrix_get(H, j, j - 1); + temp2 = gsl_matrix_get(H, j + 1, j - 1); + create_givens(temp, temp2, &cs, &sn); + sn = -sn; + + /* apply to column (j - 1) */ + temp = cs * gsl_matrix_get(H, j, j - 1) + + sn * gsl_matrix_get(H, j + 1, j - 1); + gsl_matrix_set(H, j, j - 1, temp); + gsl_matrix_set(H, j + 1, j - 1, 0.0); + } + + /* apply G to H(j:j+1,:) and T(j:j+1,:) */ + + if (w->compute_s) + { + xv = gsl_matrix_subrow(w->H, top + j, top + j, w->size - top - j); + yv = gsl_matrix_subrow(w->H, top + j + 1, top + j, w->size - top - j); + } + else + { + xv = gsl_matrix_subrow(H, j, j, N - j); + yv = gsl_matrix_subrow(H, j + 1, j, N - j); + } + + gsl_blas_drot(&xv.vector, &yv.vector, cs, sn); + + if (w->compute_t) + { + xv = gsl_matrix_subrow(w->R, top + j, top + j, w->size - top - j); + yv = gsl_matrix_subrow(w->R, top + j + 1, top + j, w->size - top - j); + } + else + { + xv = gsl_matrix_subrow(R, j, j, N - j); + yv = gsl_matrix_subrow(R, j + 1, j, N - j); + } + + gsl_blas_drot(&xv.vector, &yv.vector, cs, sn); + + if (w->Q) + { + /* accumulate Q: Q -> QG */ + xv = gsl_matrix_column(w->Q, top + j); + yv = gsl_matrix_column(w->Q, top + j + 1); + gsl_blas_drot(&xv.vector, &yv.vector, cs, sn); + } + + temp = gsl_matrix_get(R, j + 1, j + 1); + temp2 = gsl_matrix_get(R, j + 1, j); + create_givens(temp, temp2, &cs, &sn); + + rows = GSL_MIN(j + 3, N); + + if (w->compute_s) + { + xv = gsl_matrix_subcolumn(w->H, top + j, 0, top + rows); + yv = gsl_matrix_subcolumn(w->H, top + j + 1, 0, top + rows); + } + else + { + xv = gsl_matrix_subcolumn(H, j, 0, rows); + yv = gsl_matrix_subcolumn(H, j + 1, 0, rows); + } + + gsl_blas_drot(&xv.vector, &yv.vector, cs, sn); + + rows = GSL_MIN(j + 2, N); + + if (w->compute_t) + { + xv = gsl_matrix_subcolumn(w->R, top + j, 0, top + rows); + yv = gsl_matrix_subcolumn(w->R, top + j + 1, 0, top + rows); + } + else + { + xv = gsl_matrix_subcolumn(R, j, 0, rows); + yv = gsl_matrix_subcolumn(R, j + 1, 0, rows); + } + + gsl_blas_drot(&xv.vector, &yv.vector, cs, sn); + + if (w->Z) + { + /* accumulate Z: Z -> ZG */ + xv = gsl_matrix_column(w->Z, top + j); + yv = gsl_matrix_column(w->Z, top + j + 1); + gsl_blas_drot(&xv.vector, &yv.vector, cs, sn); + } + } /* for (j = 0; j < N - 1; ++j) */ + + return GSL_SUCCESS; + } /* gen_qzstep() */ + + /* + gen_qzstep_d() + Perform an implicit double shift QZ step. + + See Golub & Van Loan, "Matrix Computations" (3rd ed), algorithm 7.7.2 + + Inputs: H - upper Hessenberg matrix (at least 3-by-3) + R - upper triangular matrix (at least 3-by-3) + w - workspace + */ + + static inline void + gen_qzstep_d(gsl_matrix *H, gsl_matrix *R, gsl_eigen_gen_workspace *w) + { + const size_t N = H->size1; + size_t j; /* looping */ + double dat[3]; /* householder vector */ + double tau; /* householder coefficient */ + gsl_vector_view v2, v3; /* views into 'dat' */ + gsl_matrix_view m; /* temporary view */ + double tmp; + size_t q, r; + size_t top; /* location of H in original matrix */ + double scale; + double AB11, /* various matrix element ratios */ + AB22, + ABNN, + ABMM, + AMNBNN, + ANMBMM, + A21B11, + A12B22, + A32B22, + B12B22, + BMNBNN; + + v2 = gsl_vector_view_array(dat, 2); + v3 = gsl_vector_view_array(dat, 3); + + if (w->needtop) + { + /* get absolute index of this matrix relative to original matrix */ + top = gen_get_submatrix(w->H, H); + } + + /* + * Similar to the QR method, we take the shifts to be the two + * zeros of the problem + * + * det[H(n-1:n,n-1:n) - s*R(n-1:n,n-1:n)] = 0 + * + * The initial householder vector elements are then given by + * Eq. 4.1 of [1], which are designed to reduce errors when + * off diagonal elements are small. + */ + + ABMM = (w->ascale * gsl_matrix_get(H, N - 2, N - 2)) / + (w->bscale * gsl_matrix_get(R, N - 2, N - 2)); + ABNN = (w->ascale * gsl_matrix_get(H, N - 1, N - 1)) / + (w->bscale * gsl_matrix_get(R, N - 1, N - 1)); + AB11 = (w->ascale * gsl_matrix_get(H, 0, 0)) / + (w->bscale * gsl_matrix_get(R, 0, 0)); + AB22 = (w->ascale * gsl_matrix_get(H, 1, 1)) / + (w->bscale * gsl_matrix_get(R, 1, 1)); + AMNBNN = (w->ascale * gsl_matrix_get(H, N - 2, N - 1)) / + (w->bscale * gsl_matrix_get(R, N - 1, N - 1)); + ANMBMM = (w->ascale * gsl_matrix_get(H, N - 1, N - 2)) / + (w->bscale * gsl_matrix_get(R, N - 2, N - 2)); + BMNBNN = gsl_matrix_get(R, N - 2, N - 1) / + gsl_matrix_get(R, N - 1, N - 1); + A21B11 = (w->ascale * gsl_matrix_get(H, 1, 0)) / + (w->bscale * gsl_matrix_get(R, 0, 0)); + A12B22 = (w->ascale * gsl_matrix_get(H, 0, 1)) / + (w->bscale * gsl_matrix_get(R, 1, 1)); + A32B22 = (w->ascale * gsl_matrix_get(H, 2, 1)) / + (w->bscale * gsl_matrix_get(R, 1, 1)); + B12B22 = gsl_matrix_get(R, 0, 1) / gsl_matrix_get(R, 1, 1); + + /* + * These are the Eqs (4.1) of [1], just multiplied by the factor + * (A_{21} / B_{11}) + */ + dat[0] = (ABMM - AB11) * (ABNN - AB11) - (AMNBNN * ANMBMM) + + (ANMBMM * BMNBNN * AB11) + (A12B22 - (AB11 * B12B22)) * A21B11; + dat[1] = ((AB22 - AB11) - (A21B11 * B12B22) - (ABMM - AB11) - + (ABNN - AB11) + (ANMBMM * BMNBNN)) * A21B11; + dat[2] = A32B22 * A21B11; + + scale = fabs(dat[0]) + fabs(dat[1]) + fabs(dat[2]); + if (scale != 0.0) + { + dat[0] /= scale; + dat[1] /= scale; + dat[2] /= scale; + } + + for (j = 0; j < N - 2; ++j) + { + r = GSL_MIN(j + 4, N); + + /* + * Find householder Q so that + * + * Q [x y z]^t = [ * 0 0 ]^t + */ + + tau = gsl_linalg_householder_transform(&v3.vector); + + if (tau != 0.0) + { + /* + * q is the initial column to start applying the householder + * transformation. The GSL_MAX() simply ensures we don't + * try to apply it to column (-1), since we are zeroing out + * column (j - 1) except for the first iteration which + * introduces the bulge. + */ + q = (size_t) GSL_MAX(0, (int)j - 1); + + /* H -> QH, R -> QR */ + + if (w->compute_s) + { + /* + * We are computing the Schur form S, so we need to + * transform the whole matrix H + */ + m = gsl_matrix_submatrix(w->H, + top + j, + top + q, + 3, + w->size - top - q); + gsl_linalg_householder_hm(tau, &v3.vector, &m.matrix); + } + else + { + /* just transform the active block */ + m = gsl_matrix_submatrix(H, j, q, 3, N - q); + gsl_linalg_householder_hm(tau, &v3.vector, &m.matrix); + } + + if (w->compute_t) + { + /* + * We are computing the Schur form T, so we need to + * transform the whole matrix R + */ + m = gsl_matrix_submatrix(w->R, + top + j, + top + j, + 3, + w->size - top - j); + gsl_linalg_householder_hm(tau, &v3.vector, &m.matrix); + } + else + { + /* just transform the active block */ + m = gsl_matrix_submatrix(R, j, j, 3, N - j); + gsl_linalg_householder_hm(tau, &v3.vector, &m.matrix); + } + + if (w->Q) + { + /* accumulate the transformation into Q */ + m = gsl_matrix_submatrix(w->Q, 0, top + j, w->size, 3); + gsl_linalg_householder_mh(tau, &v3.vector, &m.matrix); + } + } /* if (tau != 0.0) */ + + /* + * Find householder Z so that + * + * [ r_{j+2,j} r_{j+2, j+1}, r_{j+2, j+2} ] Z = [ 0 0 * ] + * + * This isn't exactly what gsl_linalg_householder_transform + * does, so we need to rotate the input vector so it preserves + * the last element, and then rotate it back afterwards. + * + * So instead of transforming [x y z], we transform [z x y], + * and the resulting HH vector [1 v2 v3] -> [v2 v3 1] but + * then needs to be scaled to have the first element = 1, so + * it becomes [1 v3/v2 1/v2] (tau must also be scaled accordingly). + */ + + dat[0] = gsl_matrix_get(R, j + 2, j + 2); + dat[1] = gsl_matrix_get(R, j + 2, j); + dat[2] = gsl_matrix_get(R, j + 2, j + 1); + scale = fabs(dat[0]) + fabs(dat[1]) + fabs(dat[2]); + if (scale != 0.0) + { + dat[0] /= scale; + dat[1] /= scale; + dat[2] /= scale; + } + + tau = gsl_linalg_householder_transform(&v3.vector); + + if (tau != 0.0) + { + /* rotate back */ + tmp = gsl_vector_get(&v3.vector, 1); + gsl_vector_set(&v3.vector, 1, gsl_vector_get(&v3.vector, 2)/tmp); + gsl_vector_set(&v3.vector, 2, 1.0 / tmp); + tau *= tmp * tmp; + + /* H -> HZ, R -> RZ */ + + if (w->compute_s) + { + m = gsl_matrix_submatrix(w->H, 0, top + j, top + r, 3); + gsl_linalg_householder_mh(tau, &v3.vector, &m.matrix); + } + else + { + m = gsl_matrix_submatrix(H, 0, j, r, 3); + gsl_linalg_householder_mh(tau, &v3.vector, &m.matrix); + } + + if (w->compute_t) + { + m = gsl_matrix_submatrix(w->R, 0, top + j, top + j + 3, 3); + gsl_linalg_householder_mh(tau, &v3.vector, &m.matrix); + } + else + { + m = gsl_matrix_submatrix(R, 0, j, j + 3, 3); + gsl_linalg_householder_mh(tau, &v3.vector, &m.matrix); + } + + if (w->Z) + { + /* accumulate transformation into Z */ + m = gsl_matrix_submatrix(w->Z, 0, top + j, w->size, 3); + gsl_linalg_householder_mh(tau, &v3.vector, &m.matrix); + } + } /* if (tau != 0.0) */ + + /* + * Find householder Z so that + * + * [ r_{j+1,j} r_{j+1, j+1} ] Z = [ 0 * ] + */ + + dat[0] = gsl_matrix_get(R, j + 1, j + 1); + dat[1] = gsl_matrix_get(R, j + 1, j); + scale = fabs(dat[0]) + fabs(dat[1]); + if (scale != 0.0) + { + dat[0] /= scale; + dat[1] /= scale; + } + + tau = gsl_linalg_householder_transform(&v2.vector); + + if (tau != 0.0) + { + /* rotate back */ + tmp = gsl_vector_get(&v2.vector, 1); + gsl_vector_set(&v2.vector, 1, 1.0 / tmp); + tau *= tmp * tmp; + + /* H -> HZ, R -> RZ */ + + if (w->compute_s) + { + m = gsl_matrix_submatrix(w->H, 0, top + j, top + r, 2); + gsl_linalg_householder_mh(tau, &v2.vector, &m.matrix); + } + else + { + m = gsl_matrix_submatrix(H, 0, j, r, 2); + gsl_linalg_householder_mh(tau, &v2.vector, &m.matrix); + } + + if (w->compute_t) + { + m = gsl_matrix_submatrix(w->R, 0, top + j, top + j + 3, 2); + gsl_linalg_householder_mh(tau, &v2.vector, &m.matrix); + } + else + { + m = gsl_matrix_submatrix(R, 0, j, j + 3, 2); + gsl_linalg_householder_mh(tau, &v2.vector, &m.matrix); + } + + if (w->Z) + { + /* accumulate transformation into Z */ + m = gsl_matrix_submatrix(w->Z, 0, top + j, w->size, 2); + gsl_linalg_householder_mh(tau, &v2.vector, &m.matrix); + } + } /* if (tau != 0.0) */ + + dat[0] = gsl_matrix_get(H, j + 1, j); + dat[1] = gsl_matrix_get(H, j + 2, j); + if (j < N - 3) + dat[2] = gsl_matrix_get(H, j + 3, j); + + scale = fabs(dat[0]) + fabs(dat[1]) + fabs(dat[2]); + if (scale != 0.0) + { + dat[0] /= scale; + dat[1] /= scale; + dat[2] /= scale; + } + } /* for (j = 0; j < N - 2; ++j) */ + + /* + * Find Householder Q so that + * + * Q [ x y ]^t = [ * 0 ]^t + */ + + scale = fabs(dat[0]) + fabs(dat[1]); + if (scale != 0.0) + { + dat[0] /= scale; + dat[1] /= scale; + } + + tau = gsl_linalg_householder_transform(&v2.vector); + + if (w->compute_s) + { + m = gsl_matrix_submatrix(w->H, + top + N - 2, + top + N - 3, + 2, + w->size - top - N + 3); + gsl_linalg_householder_hm(tau, &v2.vector, &m.matrix); + } + else + { + m = gsl_matrix_submatrix(H, N - 2, N - 3, 2, 3); + gsl_linalg_householder_hm(tau, &v2.vector, &m.matrix); + } + + if (w->compute_t) + { + m = gsl_matrix_submatrix(w->R, + top + N - 2, + top + N - 2, + 2, + w->size - top - N + 2); + gsl_linalg_householder_hm(tau, &v2.vector, &m.matrix); + } + else + { + m = gsl_matrix_submatrix(R, N - 2, N - 2, 2, 2); + gsl_linalg_householder_hm(tau, &v2.vector, &m.matrix); + } + + if (w->Q) + { + /* accumulate the transformation into Q */ + m = gsl_matrix_submatrix(w->Q, 0, top + N - 2, w->size, 2); + gsl_linalg_householder_mh(tau, &v2.vector, &m.matrix); + } + + /* + * Find Householder Z so that + * + * [ b_{n,n-1} b_{nn} ] Z = [ 0 * ] + */ + + dat[0] = gsl_matrix_get(R, N - 1, N - 1); + dat[1] = gsl_matrix_get(R, N - 1, N - 2); + scale = fabs(dat[0]) + fabs(dat[1]); + if (scale != 0.0) + { + dat[0] /= scale; + dat[1] /= scale; + } + + tau = gsl_linalg_householder_transform(&v2.vector); + + /* rotate back */ + tmp = gsl_vector_get(&v2.vector, 1); + gsl_vector_set(&v2.vector, 1, 1.0 / tmp); + tau *= tmp * tmp; + + if (w->compute_s) + { + m = gsl_matrix_submatrix(w->H, 0, top + N - 2, top + N, 2); + gsl_linalg_householder_mh(tau, &v2.vector, &m.matrix); + } + else + { + m = gsl_matrix_submatrix(H, 0, N - 2, N, 2); + gsl_linalg_householder_mh(tau, &v2.vector, &m.matrix); + } + + if (w->compute_t) + { + m = gsl_matrix_submatrix(w->R, 0, top + N - 2, top + N, 2); + gsl_linalg_householder_mh(tau, &v2.vector, &m.matrix); + } + else + { + m = gsl_matrix_submatrix(R, 0, N - 2, N, 2); + gsl_linalg_householder_mh(tau, &v2.vector, &m.matrix); + } + + if (w->Z) + { + /* accumulate the transformation into Z */ + m = gsl_matrix_submatrix(w->Z, 0, top + N - 2, w->size, 2); + gsl_linalg_householder_mh(tau, &v2.vector, &m.matrix); + } + } /* gen_qzstep_d() */ + + /* + gen_tri_split_top() + This routine is called when the leading element on the diagonal of R + has become negligible. Split off a 1-by-1 block at the top. + + Inputs: H - upper hessenberg matrix + R - upper triangular matrix + w - workspace + */ + + static void + gen_tri_split_top(gsl_matrix *H, gsl_matrix *R, gsl_eigen_gen_workspace *w) + { + const size_t N = H->size1; + size_t j, top; + double cs, sn; + gsl_vector_view xv, yv; + + if (w->needtop) + top = gen_get_submatrix(w->H, H); + + j = 0; + + create_givens(gsl_matrix_get(H, j, j), + gsl_matrix_get(H, j + 1, j), + &cs, + &sn); + sn = -sn; + + if (w->compute_s) + { + xv = gsl_matrix_subrow(w->H, top + j, top, w->size - top); + yv = gsl_matrix_subrow(w->H, top + j + 1, top, w->size - top); + } + else + { + xv = gsl_matrix_row(H, j); + yv = gsl_matrix_row(H, j + 1); + } + + gsl_blas_drot(&xv.vector, &yv.vector, cs, sn); + gsl_matrix_set(H, j + 1, j, 0.0); + + if (w->compute_t) + { + xv = gsl_matrix_subrow(w->R, top + j, top + 1, w->size - top - 1); + yv = gsl_matrix_subrow(w->R, top + j + 1, top + 1, w->size - top - 1); + } + else + { + xv = gsl_matrix_subrow(R, j, 1, N - 1); + yv = gsl_matrix_subrow(R, j + 1, 1, N - 1); + } + + gsl_blas_drot(&xv.vector, &yv.vector, cs, sn); + + if (w->Q) + { + xv = gsl_matrix_column(w->Q, top + j); + yv = gsl_matrix_column(w->Q, top + j + 1); + gsl_blas_drot(&xv.vector, &yv.vector, cs, sn); + } + } /* gen_tri_split_top() */ + + /* + gen_tri_chase_zero() + This routine is called when an element on the diagonal of R + has become negligible. Chase the zero to the bottom of the active + block so we can split off a 1-by-1 block. + + Inputs: H - upper hessenberg matrix + R - upper triangular matrix + q - index such that R(q,q) = 0 (q must be > 0) + w - workspace + */ + + static inline void + gen_tri_chase_zero(gsl_matrix *H, gsl_matrix *R, size_t q, + gsl_eigen_gen_workspace *w) + { + const size_t N = H->size1; + size_t j, top; + double cs, sn; + gsl_vector_view xv, yv; + + if (w->needtop) + top = gen_get_submatrix(w->H, H); + + for (j = q; j < N - 1; ++j) + { + create_givens(gsl_matrix_get(R, j, j + 1), + gsl_matrix_get(R, j + 1, j + 1), + &cs, + &sn); + sn = -sn; + + if (w->compute_t) + { + xv = gsl_matrix_subrow(w->R, top + j, top + j + 1, w->size - top - j - 1); + yv = gsl_matrix_subrow(w->R, top + j + 1, top + j + 1, w->size - top - j - 1); + } + else + { + xv = gsl_matrix_subrow(R, j, j + 1, N - j - 1); + yv = gsl_matrix_subrow(R, j + 1, j + 1, N - j - 1); + } + + gsl_blas_drot(&xv.vector, &yv.vector, cs, sn); + gsl_matrix_set(R, j + 1, j + 1, 0.0); + + if (w->compute_s) + { + xv = gsl_matrix_subrow(w->H, top + j, top + j - 1, w->size - top - j + 1); + yv = gsl_matrix_subrow(w->H, top + j + 1, top + j - 1, w->size - top - j + 1); + } + else + { + xv = gsl_matrix_subrow(H, j, j - 1, N - j + 1); + yv = gsl_matrix_subrow(H, j + 1, j - 1, N - j + 1); + } + + gsl_blas_drot(&xv.vector, &yv.vector, cs, sn); + + if (w->Q) + { + /* accumulate Q */ + xv = gsl_matrix_column(w->Q, top + j); + yv = gsl_matrix_column(w->Q, top + j + 1); + gsl_blas_drot(&xv.vector, &yv.vector, cs, sn); + } + + create_givens(gsl_matrix_get(H, j + 1, j), + gsl_matrix_get(H, j + 1, j - 1), + &cs, + &sn); + sn = -sn; + + if (w->compute_s) + { + xv = gsl_matrix_subcolumn(w->H, top + j, 0, top + j + 2); + yv = gsl_matrix_subcolumn(w->H, top + j - 1, 0, top + j + 2); + } + else + { + xv = gsl_matrix_subcolumn(H, j, 0, j + 2); + yv = gsl_matrix_subcolumn(H, j - 1, 0, j + 2); + } + + gsl_blas_drot(&xv.vector, &yv.vector, cs, sn); + gsl_matrix_set(H, j + 1, j - 1, 0.0); + + if (w->compute_t) + { + xv = gsl_matrix_subcolumn(w->R, top + j, 0, top + j + 1); + yv = gsl_matrix_subcolumn(w->R, top + j - 1, 0, top + j + 1); + } + else + { + xv = gsl_matrix_subcolumn(R, j, 0, j + 1); + yv = gsl_matrix_subcolumn(R, j - 1, 0, j + 1); + } + + gsl_blas_drot(&xv.vector, &yv.vector, cs, sn); + + if (w->Z) + { + /* accumulate Z */ + xv = gsl_matrix_column(w->Z, top + j); + yv = gsl_matrix_column(w->Z, top + j - 1); + gsl_blas_drot(&xv.vector, &yv.vector, cs, sn); + } + } + } /* gen_tri_chase_zero() */ + + /* + gen_tri_zero_H() + Companion function to get_tri_chase_zero(). After the zero on + the diagonal of R has been chased to the bottom, we zero the element + H(n, n - 1) in order to split off a 1-by-1 block. + */ + + static inline void + gen_tri_zero_H(gsl_matrix *H, gsl_matrix *R, gsl_eigen_gen_workspace *w) + { + const size_t N = H->size1; + size_t top; + double cs, sn; + gsl_vector_view xv, yv; + + if (w->needtop) + top = gen_get_submatrix(w->H, H); + + create_givens(gsl_matrix_get(H, N - 1, N - 1), + gsl_matrix_get(H, N - 1, N - 2), + &cs, + &sn); + sn = -sn; + + if (w->compute_s) + { + xv = gsl_matrix_subcolumn(w->H, top + N - 1, 0, top + N); + yv = gsl_matrix_subcolumn(w->H, top + N - 2, 0, top + N); + } + else + { + xv = gsl_matrix_column(H, N - 1); + yv = gsl_matrix_column(H, N - 2); + } + + gsl_blas_drot(&xv.vector, &yv.vector, cs, sn); + + gsl_matrix_set(H, N - 1, N - 2, 0.0); + + if (w->compute_t) + { + xv = gsl_matrix_subcolumn(w->R, top + N - 1, 0, top + N - 1); + yv = gsl_matrix_subcolumn(w->R, top + N - 2, 0, top + N - 1); + } + else + { + xv = gsl_matrix_subcolumn(R, N - 1, 0, N - 1); + yv = gsl_matrix_subcolumn(R, N - 2, 0, N - 1); + } + + gsl_blas_drot(&xv.vector, &yv.vector, cs, sn); + + if (w->Z) + { + /* accumulate Z */ + xv = gsl_matrix_column(w->Z, top + N - 1); + yv = gsl_matrix_column(w->Z, top + N - 2); + gsl_blas_drot(&xv.vector, &yv.vector, cs, sn); + } + } /* gen_tri_zero_H() */ + + /* + gen_search_small_elements() + This routine searches for small elements in the matrix pencil + (H, R) to determine if any eigenvalues have converged. + + Tests: + + 1. Test if the Hessenberg matrix has a small subdiagonal element: + H(i, i - 1) < tolerance + + 2. Test if the Triangular matrix has a small diagonal element: + R(i, i) < tolerance + + Possible outcomes: + + (A) Neither test passed: in this case 'flag' is set to 0 and the + function returns 0 + + (B) Test 1 passes and 2 does not: in this case 'flag' is set to 1 + and we return the row index i such that H(i, i - 1) < tol + + (C) Test 2 passes and 1 does not: in this case 'flag' is set to 2 + and we return the index i such that R(i, i) < tol + + (D) Tests 1 and 2 both pass: in this case 'flag' is set to 3 and + we return the index i such that H(i, i - 1) < tol and R(i, i) < tol + + Inputs: H - upper Hessenberg matrix + R - upper Triangular matrix + flag - (output) flag set on output (see above) + w - workspace + + Return: see above + */ + + static inline size_t + gen_search_small_elements(gsl_matrix *H, gsl_matrix *R, + int *flag, gsl_eigen_gen_workspace *w) + { + const size_t N = H->size1; + int k; + size_t i; + int pass1 = 0; + int pass2 = 0; + + for (k = (int) N - 1; k >= 0; --k) + { + i = (size_t) k; + + if (i != 0 && fabs(gsl_matrix_get(H, i, i - 1)) <= w->atol) + { + gsl_matrix_set(H, i, i - 1, 0.0); + pass1 = 1; + } + + if (fabs(gsl_matrix_get(R, i, i)) < w->btol) + { + gsl_matrix_set(R, i, i, 0.0); + pass2 = 1; + } + + if (pass1 && !pass2) /* case B */ + { + *flag = 1; + return (i); + } + else if (!pass1 && pass2) /* case C */ + { + *flag = 2; + return (i); + } + else if (pass1 && pass2) /* case D */ + { + *flag = 3; + return (i); + } + } + + /* neither test passed: case A */ + + *flag = 0; + return (0); + } /* gen_search_subdiag_small_elements() */ + + /* + gen_schur_standardize1() + This function is called when a 1-by-1 block has converged - + convert the block to standard form and update the Schur forms and + vectors if required. Standard form here means that the diagonal + element of B is positive. + + Inputs: A - 1-by-1 matrix in Schur form S + B - 1-by-1 matrix in Schur form T + alphar - where to store real part of eigenvalue numerator + beta - where to store eigenvalue denominator + w - workspace + + Return: success + */ + + static int + gen_schur_standardize1(gsl_matrix *A, gsl_matrix *B, double *alphar, + double *beta, gsl_eigen_gen_workspace *w) + { + size_t i; + size_t top; + + /* + * it is a 1-by-1 block - the only requirement is that + * B_{00} is > 0, so if it isn't apply a -I transformation + */ + if (gsl_matrix_get(B, 0, 0) < 0.0) + { + if (w->needtop) + top = gen_get_submatrix(w->H, A); + + if (w->compute_t) + { + for (i = 0; i <= top; ++i) + gsl_matrix_set(w->R, i, top, -gsl_matrix_get(w->R, i, top)); + } + else + gsl_matrix_set(B, 0, 0, -gsl_matrix_get(B, 0, 0)); + + if (w->compute_s) + { + for (i = 0; i <= top; ++i) + gsl_matrix_set(w->H, i, top, -gsl_matrix_get(w->H, i, top)); + } + else + gsl_matrix_set(A, 0, 0, -gsl_matrix_get(A, 0, 0)); + + if (w->Z) + { + for (i = 0; i < w->size; ++i) + gsl_matrix_set(w->Z, i, top, -gsl_matrix_get(w->Z, i, top)); + } + } + + *alphar = gsl_matrix_get(A, 0, 0); + *beta = gsl_matrix_get(B, 0, 0); + + return GSL_SUCCESS; + } /* gen_schur_standardize1() */ + + /* + gen_schur_standardize2() + This function is called when a 2-by-2 generalized block has + converged. Convert the block to standard form, which means B + is rotated so that + + B = [ B11 0 ] with B11, B22 non-negative + [ 0 B22 ] + + If the resulting block (A, B) has complex eigenvalues, they are + computed. Otherwise, the function will return GSL_CONTINUE to + notify caller that we need to do more single shift sweeps to + convert the 2-by-2 block into two 1-by-1 blocks. + + Inputs: A - 2-by-2 submatrix of schur form S + B - 2-by-2 submatrix of schur form T + alpha1 - (output) where to store eigenvalue 1 numerator + alpha2 - (output) where to store eigenvalue 2 numerator + beta1 - (output) where to store eigenvalue 1 denominator + beta2 - (output) where to store eigenvalue 2 denominator + w - workspace + + Return: GSL_SUCCESS if block has complex eigenvalues (they are computed) + GSL_CONTINUE if block has real eigenvalues (they are not computed) + */ + + static int + gen_schur_standardize2(gsl_matrix *A, gsl_matrix *B, gsl_complex *alpha1, + gsl_complex *alpha2, double *beta1, double *beta2, + gsl_eigen_gen_workspace *w) + { + double datB[4], + datV[4], + datS[2], + work[2]; + gsl_matrix_view uv = gsl_matrix_view_array(datB, 2, 2); + gsl_matrix_view vv = gsl_matrix_view_array(datV, 2, 2); + gsl_vector_view sv = gsl_vector_view_array(datS, 2); + gsl_vector_view wv = gsl_vector_view_array(work, 2); + double B11, B22; + size_t top; + double det; + double cr, sr, cl, sl; + gsl_vector_view xv, yv; + int s; + + if (w->needtop) + top = gen_get_submatrix(w->H, A); + + /* + * Rotate B so that + * + * B = [ B11 0 ] + * [ 0 B22 ] + * + * with B11 non-negative + */ + + gsl_matrix_memcpy(&uv.matrix, B); + gsl_linalg_SV_decomp(&uv.matrix, &vv.matrix, &sv.vector, &wv.vector); + + /* + * Right now, B = U S V^t, where S = diag(s) + * + * The SVD routine may have computed reflection matrices U and V, + * but it would be much nicer to have rotations since we won't have + * to use BLAS mat-mat multiplications to update our matrices, + * and can instead use drot. So convert them to rotations if + * necessary + */ + + det = gsl_matrix_get(&vv.matrix, 0, 0) * gsl_matrix_get(&vv.matrix, 1, 1) - + gsl_matrix_get(&vv.matrix, 0, 1) * gsl_matrix_get(&vv.matrix, 1, 0); + if (det < 0.0) + { + /* V is a reflection, convert it to a rotation by inserting + * F = [1 0; 0 -1] so that: + * + * B = U S [1 0] [1 0] V^t + * [0 -1] [0 -1] + * + * so S -> S F and V -> V F where F is the reflection matrix + * We just need to invert S22 since the first column of V + * will remain unchanged and we can just read off the CS and SN + * parameters. + */ + datS[1] = -datS[1]; + } + + cr = gsl_matrix_get(&vv.matrix, 0, 0); + sr = gsl_matrix_get(&vv.matrix, 1, 0); + + /* same for U */ + det = gsl_matrix_get(&uv.matrix, 0, 0) * gsl_matrix_get(&uv.matrix, 1, 1) - + gsl_matrix_get(&uv.matrix, 0, 1) * gsl_matrix_get(&uv.matrix, 1, 0); + if (det < 0.0) + datS[1] = -datS[1]; + + cl = gsl_matrix_get(&uv.matrix, 0, 0); + sl = gsl_matrix_get(&uv.matrix, 1, 0); + + B11 = gsl_vector_get(&sv.vector, 0); + B22 = gsl_vector_get(&sv.vector, 1); + + /* make sure B11 is positive */ + if (B11 < 0.0) + { + B11 = -B11; + B22 = -B22; + cr = -cr; + sr = -sr; + } + + /* + * At this point, + * + * [ S11 0 ] = [ CSL SNL ] B [ CSR -SNR ] + * [ 0 S22 ] [-SNL CSL ] [ SNR CSR ] + * + * apply rotations to H and rest of R + */ + + if (w->compute_s) + { + xv = gsl_matrix_subrow(w->H, top, top, w->size - top); + yv = gsl_matrix_subrow(w->H, top + 1, top, w->size - top); + gsl_blas_drot(&xv.vector, &yv.vector, cl, sl); + + xv = gsl_matrix_subcolumn(w->H, top, 0, top + 2); + yv = gsl_matrix_subcolumn(w->H, top + 1, 0, top + 2); + gsl_blas_drot(&xv.vector, &yv.vector, cr, sr); + } + else + { + xv = gsl_matrix_row(A, 0); + yv = gsl_matrix_row(A, 1); + gsl_blas_drot(&xv.vector, &yv.vector, cl, sl); + + xv = gsl_matrix_column(A, 0); + yv = gsl_matrix_column(A, 1); + gsl_blas_drot(&xv.vector, &yv.vector, cr, sr); + } + + if (w->compute_t) + { + if (top != (w->size - 2)) + { + xv = gsl_matrix_subrow(w->R, top, top + 2, w->size - top - 2); + yv = gsl_matrix_subrow(w->R, top + 1, top + 2, w->size - top - 2); + gsl_blas_drot(&xv.vector, &yv.vector, cl, sl); + } + + if (top != 0) + { + xv = gsl_matrix_subcolumn(w->R, top, 0, top); + yv = gsl_matrix_subcolumn(w->R, top + 1, 0, top); + gsl_blas_drot(&xv.vector, &yv.vector, cr, sr); + } + } + + if (w->Q) + { + xv = gsl_matrix_column(w->Q, top); + yv = gsl_matrix_column(w->Q, top + 1); + gsl_blas_drot(&xv.vector, &yv.vector, cl, sl); + } + + if (w->Z) + { + xv = gsl_matrix_column(w->Z, top); + yv = gsl_matrix_column(w->Z, top + 1); + gsl_blas_drot(&xv.vector, &yv.vector, cr, sr); + } + + gsl_matrix_set(B, 0, 0, B11); + gsl_matrix_set(B, 0, 1, 0.0); + gsl_matrix_set(B, 1, 0, 0.0); + gsl_matrix_set(B, 1, 1, B22); + + /* if B22 is < 0, make it positive by negating its column */ + if (B22 < 0.0) + { + size_t i; + + if (w->compute_s) + { + for (i = 0; i < top + 2; ++i) + gsl_matrix_set(w->H, i, top + 1, -gsl_matrix_get(w->H, i, top + 1)); + } + else + { + gsl_matrix_set(A, 0, 1, -gsl_matrix_get(A, 0, 1)); + gsl_matrix_set(A, 1, 1, -gsl_matrix_get(A, 1, 1)); + } + + if (w->compute_t) + { + for (i = 0; i < top + 2; ++i) + gsl_matrix_set(w->R, i, top + 1, -gsl_matrix_get(w->R, i, top + 1)); + } + else + { + gsl_matrix_set(B, 0, 1, -gsl_matrix_get(B, 0, 1)); + gsl_matrix_set(B, 1, 1, -gsl_matrix_get(B, 1, 1)); + } + + if (w->Z) + { + xv = gsl_matrix_column(w->Z, top + 1); + gsl_vector_scale(&xv.vector, -1.0); + } + } + + /* our block is now in standard form - compute eigenvalues */ + + s = gen_compute_eigenvals(A, B, alpha1, alpha2, beta1, beta2); + + return s; + } /* gen_schur_standardize2() */ + + /* + gen_compute_eigenvals() + Compute the complex eigenvalues of a 2-by-2 block + + Return: GSL_CONTINUE if block contains real eigenvalues (they are not + computed) + GSL_SUCCESS on normal completion + */ + + static int + gen_compute_eigenvals(gsl_matrix *A, gsl_matrix *B, gsl_complex *alpha1, + gsl_complex *alpha2, double *beta1, double *beta2) + { + double wr1, wr2, wi, scale1, scale2; + double s1inv; + double A11, A12, A21, A22; + double B11, B22; + double c11r, c11i, c12, c21, c22r, c22i; + double cz, cq; + double szr, szi, sqr, sqi; + double a1r, a1i, a2r, a2i, b1r, b1i, b1a, b2r, b2i, b2a; + double alphar, alphai; + double t1, an, bn, tempr, tempi, wabs; + + /* + * This function is called from gen_schur_standardize2() and + * its possible the standardization has perturbed the eigenvalues + * onto the real line - so check for this before computing them + */ + + gsl_schur_gen_eigvals(A, B, &wr1, &wr2, &wi, &scale1, &scale2); + if (wi == 0.0) + return GSL_CONTINUE; /* real eigenvalues - continue QZ iteration */ + + /* complex eigenvalues - compute alpha and beta */ + + s1inv = 1.0 / scale1; + + A11 = gsl_matrix_get(A, 0, 0); + A12 = gsl_matrix_get(A, 0, 1); + A21 = gsl_matrix_get(A, 1, 0); + A22 = gsl_matrix_get(A, 1, 1); + + B11 = gsl_matrix_get(B, 0, 0); + B22 = gsl_matrix_get(B, 1, 1); + + c11r = scale1 * A11 - wr1 * B11; + c11i = -wi * B11; + c12 = scale1 * A12; + c21 = scale1 * A21; + c22r = scale1 * A22 - wr1 * B22; + c22i = -wi * B22; + + if (fabs(c11r) + fabs(c11i) + fabs(c12) > + fabs(c21) + fabs(c22r) + fabs(c22i)) + { + t1 = gsl_hypot3(c12, c11r, c11i); + if (t1 != 0.0) + { + cz = c12 / t1; + szr = -c11r / t1; + szi = -c11i / t1; + } + else + { + cz = 0.0; + szr = 1.0; + szi = 0.0; + } + } + else + { + cz = hypot(c22r, c22i); + if (cz <= GSL_DBL_MIN) + { + cz = 0.0; + szr = 1.0; + szi = 0.0; + } + else + { + tempr = c22r / cz; + tempi = c22i / cz; + t1 = hypot(cz, c21); + cz /= t1; + szr = -c21*tempr / t1; + szi = c21*tempi / t1; + } + } + + an = fabs(A11) + fabs(A12) + fabs(A21) + fabs(A22); + bn = fabs(B11) + fabs(B22); + wabs = fabs(wr1) + fabs(wi); + if (scale1*an > wabs*bn) + { + cq = cz * B11; + if (cq <= GSL_DBL_MIN) + { + cq = 0.0; + sqr = 1.0; + sqi = 0.0; + } + else + { + sqr = szr * B22; + sqi = -szi * B22; + } + } + else + { + a1r = cz * A11 + szr * A12; + a1i = szi * A12; + a2r = cz * A21 + szr * A22; + a2i = szi * A22; + cq = hypot(a1r, a1i); + if (cq <= GSL_DBL_MIN) + { + cq = 0.0; + sqr = 1.0; + sqi = 0.0; + } + else + { + tempr = a1r / cq; + tempi = a1i / cq; + sqr = tempr * a2r + tempi * a2i; + sqi = tempi * a2r - tempr * a2i; + } + } + + t1 = gsl_hypot3(cq, sqr, sqi); + cq /= t1; + sqr /= t1; + sqi /= t1; + + tempr = sqr*szr - sqi*szi; + tempi = sqr*szi + sqi*szr; + b1r = cq*cz*B11 + tempr*B22; + b1i = tempi*B22; + b1a = hypot(b1r, b1i); + b2r = cq*cz*B22 + tempr*B11; + b2i = -tempi*B11; + b2a = hypot(b2r, b2i); + + *beta1 = b1a; + *beta2 = b2a; + + alphar = (wr1 * b1a) * s1inv; + alphai = (wi * b1a) * s1inv; + GSL_SET_COMPLEX(alpha1, alphar, alphai); + + alphar = (wr1 * b2a) * s1inv; + alphai = -(wi * b2a) * s1inv; + GSL_SET_COMPLEX(alpha2, alphar, alphai); + + return GSL_SUCCESS; + } /* gen_compute_eigenvals() */ + + /* + gen_store_eigval1() + Store eigenvalue of a 1-by-1 block into the alpha and beta + output vectors. This routine ensures that eigenvalues are stored + in the same order as they appear in the Schur form and updates + various internal workspace quantities. + */ + + static void + gen_store_eigval1(const gsl_matrix *H, const double a, const double b, + gsl_vector_complex *alpha, + gsl_vector *beta, gsl_eigen_gen_workspace *w) + { + size_t top = gen_get_submatrix(w->H, H); + gsl_complex z; + + GSL_SET_COMPLEX(&z, a, 0.0); + + gsl_vector_complex_set(alpha, top, z); + gsl_vector_set(beta, top, b); + + w->n_evals += 1; + w->n_iter = 0; + w->eshift = 0.0; + } /* gen_store_eigval1() */ + + /* + gen_store_eigval2() + Store eigenvalues of a 2-by-2 block into the alpha and beta + output vectors. This routine ensures that eigenvalues are stored + in the same order as they appear in the Schur form and updates + various internal workspace quantities. + */ + + static void + gen_store_eigval2(const gsl_matrix *H, const gsl_complex *alpha1, + const double beta1, const gsl_complex *alpha2, + const double beta2, gsl_vector_complex *alpha, + gsl_vector *beta, gsl_eigen_gen_workspace *w) + { + size_t top = gen_get_submatrix(w->H, H); + + gsl_vector_complex_set(alpha, top, *alpha1); + gsl_vector_set(beta, top, beta1); + + gsl_vector_complex_set(alpha, top + 1, *alpha2); + gsl_vector_set(beta, top + 1, beta2); + + w->n_evals += 2; + w->n_iter = 0; + w->eshift = 0.0; + } /* gen_store_eigval2() */ + + /* + gen_get_submatrix() + B is a submatrix of A. The goal of this function is to + compute the indices in A of where the matrix B resides + */ + + static inline size_t + gen_get_submatrix(const gsl_matrix *A, const gsl_matrix *B) + { + size_t diff; + double ratio; + size_t top; + + diff = (size_t) (B->data - A->data); + + /* B is on the diagonal of A, so measure distance in units of + tda+1 */ + + ratio = (double)diff / ((double) (A->tda + 1)); + + top = (size_t) floor(ratio); + + return top; + } /* gen_get_submatrix() */ + + /* Frobenius norm */ + inline static double + normF (gsl_matrix * A) + { + size_t i, j, M = A->size1, N = A->size2; + double sum = 0.0, scale = 0.0, ssq = 1.0; + + for (i = 0; i < M; i++) + { + for (j = 0; j < N; j++) + { + double Aij = gsl_matrix_get (A, i, j); + + if (Aij != 0.0) + { + double ax = fabs (Aij); + + if (scale < ax) + { + ssq = 1.0 + ssq * (scale / ax) * (scale / ax); + scale = ax; + } + else + { + ssq += (ax / scale) * (ax / scale); + } + } + + } + } + + sum = scale * sqrt (ssq); + + return sum; + } + + /* Generate a Givens rotation (cos,sin) which takes v=(x,y) to (|v|,0) + + From Golub and Van Loan, "Matrix Computations", Section 5.1.8 */ + + inline static void + create_givens (const double a, const double b, double *c, double *s) + { + if (b == 0) + { + *c = 1; + *s = 0; + } + else if (fabs (b) > fabs (a)) + { + double t = -a / b; + double s1 = 1.0 / sqrt (1 + t * t); + *s = s1; + *c = s1 * t; + } + else + { + double t = -b / a; + double c1 = 1.0 / sqrt (1 + t * t); + *c = c1; + *s = c1 * t; + } + } diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/eigen/genherm.c gsl-1.10/eigen/genherm.c *** gsl-1.9/eigen/genherm.c 1970-01-01 01:00:00.000000000 +0100 --- gsl-1.10/eigen/genherm.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 0 **** --- 1,225 ---- + /* eigen/genherm.c + * + * Copyright (C) 2007 Patrick Alken + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or (at + * your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + + #include + + #include + #include + #include + #include + #include + #include + #include + #include + #include + + /* + * This module computes the eigenvalues of a complex generalized + * hermitian-definite eigensystem A x = \lambda B x, where A and + * B are hermitian, and B is positive-definite. + */ + + /* + gsl_eigen_genherm_alloc() + + Allocate a workspace for solving the generalized hermitian-definite + eigenvalue problem. The size of this workspace is O(3n). + + Inputs: n - size of matrices + + Return: pointer to workspace + */ + + gsl_eigen_genherm_workspace * + gsl_eigen_genherm_alloc(const size_t n) + { + gsl_eigen_genherm_workspace *w; + + if (n == 0) + { + GSL_ERROR_NULL ("matrix dimension must be positive integer", + GSL_EINVAL); + } + + w = calloc (1, sizeof (gsl_eigen_genherm_workspace)); + + if (w == 0) + { + GSL_ERROR_NULL ("failed to allocate space for workspace", GSL_ENOMEM); + } + + w->size = n; + + w->herm_workspace_p = gsl_eigen_herm_alloc(n); + if (!w->herm_workspace_p) + { + gsl_eigen_genherm_free(w); + GSL_ERROR_NULL("failed to allocate space for herm workspace", GSL_ENOMEM); + } + + return (w); + } /* gsl_eigen_genherm_alloc() */ + + /* + gsl_eigen_genherm_free() + Free workspace w + */ + + void + gsl_eigen_genherm_free (gsl_eigen_genherm_workspace * w) + { + if (w->herm_workspace_p) + gsl_eigen_herm_free(w->herm_workspace_p); + + free(w); + } /* gsl_eigen_genherm_free() */ + + /* + gsl_eigen_genherm() + + Solve the generalized hermitian-definite eigenvalue problem + + A x = \lambda B x + + for the eigenvalues \lambda. + + Inputs: A - complex hermitian matrix + B - complex hermitian and positive definite matrix + eval - where to store eigenvalues + w - workspace + + Return: success or error + */ + + int + gsl_eigen_genherm (gsl_matrix_complex * A, gsl_matrix_complex * B, + gsl_vector * eval, gsl_eigen_genherm_workspace * w) + { + const size_t N = A->size1; + + /* check matrix and vector sizes */ + + if (N != A->size2) + { + GSL_ERROR ("matrix must be square to compute eigenvalues", GSL_ENOTSQR); + } + else if ((N != B->size1) || (N != B->size2)) + { + GSL_ERROR ("B matrix dimensions must match A", GSL_EBADLEN); + } + else if (eval->size != N) + { + GSL_ERROR ("eigenvalue vector must match matrix size", GSL_EBADLEN); + } + else if (w->size != N) + { + GSL_ERROR ("matrix size does not match workspace", GSL_EBADLEN); + } + else + { + int s; + + /* compute Cholesky factorization of B */ + s = gsl_linalg_complex_cholesky_decomp(B); + if (s != GSL_SUCCESS) + return s; /* B is not positive definite */ + + /* transform to standard hermitian eigenvalue problem */ + gsl_eigen_genherm_standardize(A, B); + + s = gsl_eigen_herm(A, eval, w->herm_workspace_p); + + return s; + } + } /* gsl_eigen_genherm() */ + + /* + gsl_eigen_genherm_standardize() + Reduce the generalized hermitian-definite eigenproblem to + the standard hermitian eigenproblem by computing + + C = L^{-1} A L^{-H} + + where L L^H is the Cholesky decomposition of B + + Inputs: A - (input/output) complex hermitian matrix + B - complex hermitian, positive definite matrix in Cholesky form + + Return: success + + Notes: A is overwritten by L^{-1} A L^{-H} + */ + + int + gsl_eigen_genherm_standardize(gsl_matrix_complex *A, + const gsl_matrix_complex *B) + { + const size_t N = A->size1; + size_t i; + double a, b; + gsl_complex y, z; + + GSL_SET_IMAG(&z, 0.0); + + for (i = 0; i < N; ++i) + { + /* update lower triangle of A(i:n, i:n) */ + + y = gsl_matrix_complex_get(A, i, i); + a = GSL_REAL(y); + y = gsl_matrix_complex_get(B, i, i); + b = GSL_REAL(y); + a /= b * b; + GSL_SET_REAL(&z, a); + gsl_matrix_complex_set(A, i, i, z); + + if (i < N - 1) + { + gsl_vector_complex_view ai = + gsl_matrix_complex_subcolumn(A, i, i + 1, N - i - 1); + gsl_matrix_complex_view ma = + gsl_matrix_complex_submatrix(A, i + 1, i + 1, N - i - 1, N - i - 1); + gsl_vector_complex_const_view bi = + gsl_matrix_complex_const_subcolumn(B, i, i + 1, N - i - 1); + gsl_matrix_complex_const_view mb = + gsl_matrix_complex_const_submatrix(B, i + 1, i + 1, N - i - 1, N - i - 1); + + gsl_blas_zdscal(1.0 / b, &ai.vector); + + GSL_SET_REAL(&z, -0.5 * a); + gsl_blas_zaxpy(z, &bi.vector, &ai.vector); + + gsl_blas_zher2(CblasLower, + GSL_COMPLEX_NEGONE, + &ai.vector, + &bi.vector, + &ma.matrix); + + gsl_blas_zaxpy(z, &bi.vector, &ai.vector); + + gsl_blas_ztrsv(CblasLower, + CblasNoTrans, + CblasNonUnit, + &mb.matrix, + &ai.vector); + } + } + + return GSL_SUCCESS; + } /* gsl_eigen_genherm_standardize() */ diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/eigen/genhermv.c gsl-1.10/eigen/genhermv.c *** gsl-1.9/eigen/genhermv.c 1970-01-01 01:00:00.000000000 +0100 --- gsl-1.10/eigen/genhermv.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 0 **** --- 1,203 ---- + /* eigen/genhermv.c + * + * Copyright (C) 2007 Patrick Alken + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or (at + * your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + + #include + + #include + #include + #include + #include + #include + #include + #include + #include + #include + + /* + * This module computes the eigenvalues and eigenvectors of a complex + * generalized hermitian-definite eigensystem A x = \lambda B x, where + * A and B are hermitian, and B is positive-definite. + */ + + static void genhermv_normalize_eigenvectors(gsl_matrix_complex *evec); + + /* + gsl_eigen_genhermv_alloc() + + Allocate a workspace for solving the generalized hermitian-definite + eigenvalue problem. The size of this workspace is O(5n). + + Inputs: n - size of matrices + + Return: pointer to workspace + */ + + gsl_eigen_genhermv_workspace * + gsl_eigen_genhermv_alloc(const size_t n) + { + gsl_eigen_genhermv_workspace *w; + + if (n == 0) + { + GSL_ERROR_NULL ("matrix dimension must be positive integer", + GSL_EINVAL); + } + + w = calloc (1, sizeof (gsl_eigen_genhermv_workspace)); + + if (w == 0) + { + GSL_ERROR_NULL ("failed to allocate space for workspace", GSL_ENOMEM); + } + + w->size = n; + + w->hermv_workspace_p = gsl_eigen_hermv_alloc(n); + if (!w->hermv_workspace_p) + { + gsl_eigen_genhermv_free(w); + GSL_ERROR_NULL("failed to allocate space for hermv workspace", GSL_ENOMEM); + } + + return (w); + } /* gsl_eigen_genhermv_alloc() */ + + /* + gsl_eigen_genhermv_free() + Free workspace w + */ + + void + gsl_eigen_genhermv_free (gsl_eigen_genhermv_workspace * w) + { + if (w->hermv_workspace_p) + gsl_eigen_hermv_free(w->hermv_workspace_p); + + free(w); + } /* gsl_eigen_genhermv_free() */ + + /* + gsl_eigen_genhermv() + + Solve the generalized hermitian-definite eigenvalue problem + + A x = \lambda B x + + for the eigenvalues \lambda and eigenvectors x. + + Inputs: A - complex hermitian matrix + B - complex hermitian and positive definite matrix + eval - where to store eigenvalues + evec - where to store eigenvectors + w - workspace + + Return: success or error + */ + + int + gsl_eigen_genhermv (gsl_matrix_complex * A, gsl_matrix_complex * B, + gsl_vector * eval, gsl_matrix_complex * evec, + gsl_eigen_genhermv_workspace * w) + { + const size_t N = A->size1; + + /* check matrix and vector sizes */ + + if (N != A->size2) + { + GSL_ERROR ("matrix must be square to compute eigenvalues", GSL_ENOTSQR); + } + else if ((N != B->size1) || (N != B->size2)) + { + GSL_ERROR ("B matrix dimensions must match A", GSL_EBADLEN); + } + else if (eval->size != N) + { + GSL_ERROR ("eigenvalue vector must match matrix size", GSL_EBADLEN); + } + else if (evec->size1 != evec->size2) + { + GSL_ERROR ("eigenvector matrix must be square", GSL_ENOTSQR); + } + else if (evec->size1 != N) + { + GSL_ERROR ("eigenvector matrix has wrong size", GSL_EBADLEN); + } + else if (w->size != N) + { + GSL_ERROR ("matrix size does not match workspace", GSL_EBADLEN); + } + else + { + int s; + + /* compute Cholesky factorization of B */ + s = gsl_linalg_complex_cholesky_decomp(B); + if (s != GSL_SUCCESS) + return s; /* B is not positive definite */ + + /* transform to standard hermitian eigenvalue problem */ + gsl_eigen_genherm_standardize(A, B); + + /* compute eigenvalues and eigenvectors */ + s = gsl_eigen_hermv(A, eval, evec, w->hermv_workspace_p); + if (s != GSL_SUCCESS) + return s; + + /* backtransform eigenvectors: evec -> L^{-H} evec */ + gsl_blas_ztrsm(CblasLeft, + CblasLower, + CblasConjTrans, + CblasNonUnit, + GSL_COMPLEX_ONE, + B, + evec); + + /* the blas call destroyed the normalization - renormalize */ + genhermv_normalize_eigenvectors(evec); + + return GSL_SUCCESS; + } + } /* gsl_eigen_genhermv() */ + + /******************************************** + * INTERNAL ROUTINES * + ********************************************/ + + /* + genhermv_normalize_eigenvectors() + Normalize eigenvectors so that their Euclidean norm is 1 + + Inputs: evec - eigenvectors + */ + + static void + genhermv_normalize_eigenvectors(gsl_matrix_complex *evec) + { + const size_t N = evec->size1; + size_t i; /* looping */ + + for (i = 0; i < N; ++i) + { + gsl_vector_complex_view vi = gsl_matrix_complex_column(evec, i); + double scale = 1.0 / gsl_blas_dznrm2(&vi.vector); + + gsl_blas_zdscal(scale, &vi.vector); + } + } /* genhermv_normalize_eigenvectors() */ diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/eigen/gensymm.c gsl-1.10/eigen/gensymm.c *** gsl-1.9/eigen/gensymm.c 1970-01-01 01:00:00.000000000 +0100 --- gsl-1.10/eigen/gensymm.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 0 **** --- 1,211 ---- + /* eigen/gensymm.c + * + * Copyright (C) 2007 Patrick Alken + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or (at + * your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + + #include + + #include + #include + #include + #include + #include + #include + #include + + /* + * This module computes the eigenvalues of a real generalized + * symmetric-definite eigensystem A x = \lambda B x, where A and + * B are symmetric, and B is positive-definite. + */ + + /* + gsl_eigen_gensymm_alloc() + + Allocate a workspace for solving the generalized symmetric-definite + eigenvalue problem. The size of this workspace is O(2n). + + Inputs: n - size of matrices + + Return: pointer to workspace + */ + + gsl_eigen_gensymm_workspace * + gsl_eigen_gensymm_alloc(const size_t n) + { + gsl_eigen_gensymm_workspace *w; + + if (n == 0) + { + GSL_ERROR_NULL ("matrix dimension must be positive integer", + GSL_EINVAL); + } + + w = calloc (1, sizeof (gsl_eigen_gensymm_workspace)); + + if (w == 0) + { + GSL_ERROR_NULL ("failed to allocate space for workspace", GSL_ENOMEM); + } + + w->size = n; + + w->symm_workspace_p = gsl_eigen_symm_alloc(n); + if (!w->symm_workspace_p) + { + gsl_eigen_gensymm_free(w); + GSL_ERROR_NULL("failed to allocate space for symm workspace", GSL_ENOMEM); + } + + return (w); + } /* gsl_eigen_gensymm_alloc() */ + + /* + gsl_eigen_gensymm_free() + Free workspace w + */ + + void + gsl_eigen_gensymm_free (gsl_eigen_gensymm_workspace * w) + { + if (w->symm_workspace_p) + gsl_eigen_symm_free(w->symm_workspace_p); + + free(w); + } /* gsl_eigen_gensymm_free() */ + + /* + gsl_eigen_gensymm() + + Solve the generalized symmetric-definite eigenvalue problem + + A x = \lambda B x + + for the eigenvalues \lambda. + + Inputs: A - real symmetric matrix + B - real symmetric and positive definite matrix + eval - where to store eigenvalues + w - workspace + + Return: success or error + */ + + int + gsl_eigen_gensymm (gsl_matrix * A, gsl_matrix * B, gsl_vector * eval, + gsl_eigen_gensymm_workspace * w) + { + const size_t N = A->size1; + + /* check matrix and vector sizes */ + + if (N != A->size2) + { + GSL_ERROR ("matrix must be square to compute eigenvalues", GSL_ENOTSQR); + } + else if ((N != B->size1) || (N != B->size2)) + { + GSL_ERROR ("B matrix dimensions must match A", GSL_EBADLEN); + } + else if (eval->size != N) + { + GSL_ERROR ("eigenvalue vector must match matrix size", GSL_EBADLEN); + } + else if (w->size != N) + { + GSL_ERROR ("matrix size does not match workspace", GSL_EBADLEN); + } + else + { + int s; + + /* compute Cholesky factorization of B */ + s = gsl_linalg_cholesky_decomp(B); + if (s != GSL_SUCCESS) + return s; /* B is not positive definite */ + + /* transform to standard symmetric eigenvalue problem */ + gsl_eigen_gensymm_standardize(A, B); + + s = gsl_eigen_symm(A, eval, w->symm_workspace_p); + + return s; + } + } /* gsl_eigen_gensymm() */ + + /* + gsl_eigen_gensymm_standardize() + Reduce the generalized symmetric-definite eigenproblem to + the standard symmetric eigenproblem by computing + + C = L^{-1} A L^{-t} + + where L L^t is the Cholesky decomposition of B + + Inputs: A - (input/output) real symmetric matrix + B - real symmetric, positive definite matrix in Cholesky form + + Return: success + + Notes: A is overwritten by L^{-1} A L^{-t} + */ + + int + gsl_eigen_gensymm_standardize(gsl_matrix *A, const gsl_matrix *B) + { + const size_t N = A->size1; + size_t i; + double a, b, c; + + for (i = 0; i < N; ++i) + { + /* update lower triangle of A(i:n, i:n) */ + + a = gsl_matrix_get(A, i, i); + b = gsl_matrix_get(B, i, i); + a /= b * b; + gsl_matrix_set(A, i, i, a); + + if (i < N - 1) + { + gsl_vector_view ai = gsl_matrix_subcolumn(A, i, i + 1, N - i - 1); + gsl_matrix_view ma = + gsl_matrix_submatrix(A, i + 1, i + 1, N - i - 1, N - i - 1); + gsl_vector_const_view bi = + gsl_matrix_const_subcolumn(B, i, i + 1, N - i - 1); + gsl_matrix_const_view mb = + gsl_matrix_const_submatrix(B, i + 1, i + 1, N - i - 1, N - i - 1); + + gsl_blas_dscal(1.0 / b, &ai.vector); + + c = -0.5 * a; + gsl_blas_daxpy(c, &bi.vector, &ai.vector); + + gsl_blas_dsyr2(CblasLower, -1.0, &ai.vector, &bi.vector, &ma.matrix); + + gsl_blas_daxpy(c, &bi.vector, &ai.vector); + + gsl_blas_dtrsv(CblasLower, + CblasNoTrans, + CblasNonUnit, + &mb.matrix, + &ai.vector); + } + } + + return GSL_SUCCESS; + } /* gsl_eigen_gensymm_standardize() */ diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/eigen/gensymmv.c gsl-1.10/eigen/gensymmv.c *** gsl-1.9/eigen/gensymmv.c 1970-01-01 01:00:00.000000000 +0100 --- gsl-1.10/eigen/gensymmv.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 0 **** --- 1,200 ---- + /* eigen/gensymmv.c + * + * Copyright (C) 2007 Patrick Alken + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or (at + * your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + + #include + + #include + #include + #include + #include + #include + #include + #include + + /* + * This module computes the eigenvalues and eigenvectors of a real + * generalized symmetric-definite eigensystem A x = \lambda B x, where + * A and B are symmetric, and B is positive-definite. + */ + + static void gensymmv_normalize_eigenvectors(gsl_matrix *evec); + + /* + gsl_eigen_gensymmv_alloc() + + Allocate a workspace for solving the generalized symmetric-definite + eigenvalue problem. The size of this workspace is O(4n). + + Inputs: n - size of matrices + + Return: pointer to workspace + */ + + gsl_eigen_gensymmv_workspace * + gsl_eigen_gensymmv_alloc(const size_t n) + { + gsl_eigen_gensymmv_workspace *w; + + if (n == 0) + { + GSL_ERROR_NULL ("matrix dimension must be positive integer", + GSL_EINVAL); + } + + w = calloc (1, sizeof (gsl_eigen_gensymmv_workspace)); + + if (w == 0) + { + GSL_ERROR_NULL ("failed to allocate space for workspace", GSL_ENOMEM); + } + + w->size = n; + + w->symmv_workspace_p = gsl_eigen_symmv_alloc(n); + if (!w->symmv_workspace_p) + { + gsl_eigen_gensymmv_free(w); + GSL_ERROR_NULL("failed to allocate space for symmv workspace", GSL_ENOMEM); + } + + return (w); + } /* gsl_eigen_gensymmv_alloc() */ + + /* + gsl_eigen_gensymmv_free() + Free workspace w + */ + + void + gsl_eigen_gensymmv_free (gsl_eigen_gensymmv_workspace * w) + { + if (w->symmv_workspace_p) + gsl_eigen_symmv_free(w->symmv_workspace_p); + + free(w); + } /* gsl_eigen_gensymmv_free() */ + + /* + gsl_eigen_gensymmv() + + Solve the generalized symmetric-definite eigenvalue problem + + A x = \lambda B x + + for the eigenvalues \lambda and eigenvectors x. + + Inputs: A - real symmetric matrix + B - real symmetric and positive definite matrix + eval - where to store eigenvalues + evec - where to store eigenvectors + w - workspace + + Return: success or error + */ + + int + gsl_eigen_gensymmv (gsl_matrix * A, gsl_matrix * B, gsl_vector * eval, + gsl_matrix * evec, gsl_eigen_gensymmv_workspace * w) + { + const size_t N = A->size1; + + /* check matrix and vector sizes */ + + if (N != A->size2) + { + GSL_ERROR ("matrix must be square to compute eigenvalues", GSL_ENOTSQR); + } + else if ((N != B->size1) || (N != B->size2)) + { + GSL_ERROR ("B matrix dimensions must match A", GSL_EBADLEN); + } + else if (eval->size != N) + { + GSL_ERROR ("eigenvalue vector must match matrix size", GSL_EBADLEN); + } + else if (evec->size1 != evec->size2) + { + GSL_ERROR ("eigenvector matrix must be square", GSL_ENOTSQR); + } + else if (evec->size1 != N) + { + GSL_ERROR ("eigenvector matrix has wrong size", GSL_EBADLEN); + } + else if (w->size != N) + { + GSL_ERROR ("matrix size does not match workspace", GSL_EBADLEN); + } + else + { + int s; + + /* compute Cholesky factorization of B */ + s = gsl_linalg_cholesky_decomp(B); + if (s != GSL_SUCCESS) + return s; /* B is not positive definite */ + + /* transform to standard symmetric eigenvalue problem */ + gsl_eigen_gensymm_standardize(A, B); + + /* compute eigenvalues and eigenvectors */ + s = gsl_eigen_symmv(A, eval, evec, w->symmv_workspace_p); + if (s != GSL_SUCCESS) + return s; + + /* backtransform eigenvectors: evec -> L^{-T} evec */ + gsl_blas_dtrsm(CblasLeft, + CblasLower, + CblasTrans, + CblasNonUnit, + 1.0, + B, + evec); + + /* the blas call destroyed the normalization - renormalize */ + gensymmv_normalize_eigenvectors(evec); + + return GSL_SUCCESS; + } + } /* gsl_eigen_gensymmv() */ + + /******************************************** + * INTERNAL ROUTINES * + ********************************************/ + + /* + gensymmv_normalize_eigenvectors() + Normalize eigenvectors so that their Euclidean norm is 1 + + Inputs: evec - eigenvectors + */ + + static void + gensymmv_normalize_eigenvectors(gsl_matrix *evec) + { + const size_t N = evec->size1; + size_t i; /* looping */ + + for (i = 0; i < N; ++i) + { + gsl_vector_view vi = gsl_matrix_column(evec, i); + double scale = 1.0 / gsl_blas_dnrm2(&vi.vector); + + gsl_blas_dscal(scale, &vi.vector); + } + } /* gensymmv_normalize_eigenvectors() */ diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/eigen/genv.c gsl-1.10/eigen/genv.c *** gsl-1.9/eigen/genv.c 1970-01-01 01:00:00.000000000 +0100 --- gsl-1.10/eigen/genv.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 0 **** --- 1,923 ---- + /* eigen/genv.c + * + * Copyright (C) 2007 Patrick Alken + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or (at + * your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + + #include + #include + + #include + #include + #include + #include + #include + #include + #include + #include + #include + + /* + * This module computes the eigenvalues and eigenvectors of a + * real generalized eigensystem A x = \lambda B x. Left and right + * Schur vectors are optionally computed as well. + * + * This file contains routines based on original code from LAPACK + * which is distributed under the modified BSD license. + */ + + static int genv_get_right_eigenvectors(const gsl_matrix *S, + const gsl_matrix *T, + gsl_matrix *Z, + gsl_matrix_complex *evec, + gsl_eigen_genv_workspace *w); + static void genv_normalize_eigenvectors(gsl_vector_complex *alpha, + gsl_matrix_complex *evec); + + /* + gsl_eigen_genv_alloc() + Allocate a workspace for solving the generalized eigenvalue problem. + The size of this workspace is O(7n). + + Inputs: n - size of matrices + + Return: pointer to workspace + */ + + gsl_eigen_genv_workspace * + gsl_eigen_genv_alloc(const size_t n) + { + gsl_eigen_genv_workspace *w; + + if (n == 0) + { + GSL_ERROR_NULL ("matrix dimension must be positive integer", + GSL_EINVAL); + } + + w = calloc (1, sizeof (gsl_eigen_genv_workspace)); + + if (w == 0) + { + GSL_ERROR_NULL ("failed to allocate space for workspace", GSL_ENOMEM); + } + + w->size = n; + w->Q = NULL; + w->Z = NULL; + + w->gen_workspace_p = gsl_eigen_gen_alloc(n); + + if (w->gen_workspace_p == 0) + { + gsl_eigen_genv_free(w); + GSL_ERROR_NULL ("failed to allocate space for gen workspace", GSL_ENOMEM); + } + + /* compute the full Schur forms */ + gsl_eigen_gen_params(1, 1, 1, w->gen_workspace_p); + + w->work1 = gsl_vector_alloc(n); + w->work2 = gsl_vector_alloc(n); + w->work3 = gsl_vector_alloc(n); + w->work4 = gsl_vector_alloc(n); + w->work5 = gsl_vector_alloc(n); + w->work6 = gsl_vector_alloc(n); + + if (w->work1 == 0 || w->work2 == 0 || w->work3 == 0 || + w->work4 == 0 || w->work5 == 0 || w->work6 == 0) + { + gsl_eigen_genv_free(w); + GSL_ERROR_NULL ("failed to allocate space for additional workspace", GSL_ENOMEM); + } + + return (w); + } /* gsl_eigen_genv_alloc() */ + + /* + gsl_eigen_genv_free() + Free workspace w + */ + + void + gsl_eigen_genv_free(gsl_eigen_genv_workspace *w) + { + if (w->gen_workspace_p) + gsl_eigen_gen_free(w->gen_workspace_p); + + if (w->work1) + gsl_vector_free(w->work1); + + if (w->work2) + gsl_vector_free(w->work2); + + if (w->work3) + gsl_vector_free(w->work3); + + if (w->work4) + gsl_vector_free(w->work4); + + if (w->work5) + gsl_vector_free(w->work5); + + if (w->work6) + gsl_vector_free(w->work6); + + free(w); + } /* gsl_eigen_genv_free() */ + + /* + gsl_eigen_genv() + + Solve the generalized eigenvalue problem + + A x = \lambda B x + + for the eigenvalues \lambda and right eigenvectors x. + + Inputs: A - general real matrix + B - general real matrix + alpha - (output) where to store eigenvalue numerators + beta - (output) where to store eigenvalue denominators + evec - (output) where to store eigenvectors + w - workspace + + Return: success or error + */ + + int + gsl_eigen_genv (gsl_matrix * A, gsl_matrix * B, gsl_vector_complex * alpha, + gsl_vector * beta, gsl_matrix_complex *evec, + gsl_eigen_genv_workspace * w) + { + const size_t N = A->size1; + + /* check matrix and vector sizes */ + + if (N != A->size2) + { + GSL_ERROR ("matrix must be square to compute eigenvalues", GSL_ENOTSQR); + } + else if ((N != B->size1) || (N != B->size2)) + { + GSL_ERROR ("B matrix dimensions must match A", GSL_EBADLEN); + } + else if (alpha->size != N || beta->size != N) + { + GSL_ERROR ("eigenvalue vector must match matrix size", GSL_EBADLEN); + } + else if (w->size != N) + { + GSL_ERROR ("matrix size does not match workspace", GSL_EBADLEN); + } + else if (evec->size1 != N) + { + GSL_ERROR ("eigenvector matrix has wrong size", GSL_EBADLEN); + } + else + { + int s; + gsl_matrix Z; + + /* + * We need a place to store the right Schur vectors, so we will + * treat evec as a real matrix and store them in the left + * half - the factor of 2 in the tda corresponds to the + * complex multiplicity + */ + Z.size1 = N; + Z.size2 = N; + Z.tda = 2 * N; + Z.data = evec->data; + Z.block = 0; + Z.owner = 0; + + s = gsl_eigen_gen_QZ(A, B, alpha, beta, w->Q, &Z, w->gen_workspace_p); + + if (w->Z) + { + /* save right Schur vectors */ + gsl_matrix_memcpy(w->Z, &Z); + } + + /* only compute eigenvectors if we found all eigenvalues */ + if (s == GSL_SUCCESS) + { + /* compute eigenvectors */ + s = genv_get_right_eigenvectors(A, B, &Z, evec, w); + + if (s == GSL_SUCCESS) + genv_normalize_eigenvectors(alpha, evec); + } + + return s; + } + } /* gsl_eigen_genv() */ + + /* + gsl_eigen_genv_QZ() + + Solve the generalized eigenvalue problem + + A x = \lambda B x + + for the eigenvalues \lambda and right eigenvectors x. Optionally + compute left and/or right Schur vectors Q and Z which satisfy: + + A = Q S Z^t + B = Q T Z^t + + where (S, T) is the generalized Schur form of (A, B) + + Inputs: A - general real matrix + B - general real matrix + alpha - (output) where to store eigenvalue numerators + beta - (output) where to store eigenvalue denominators + evec - (output) where to store eigenvectors + Q - (output) if non-null, where to store left Schur vectors + Z - (output) if non-null, where to store right Schur vectors + w - workspace + + Return: success or error + */ + + int + gsl_eigen_genv_QZ (gsl_matrix * A, gsl_matrix * B, + gsl_vector_complex * alpha, gsl_vector * beta, + gsl_matrix_complex * evec, + gsl_matrix * Q, gsl_matrix * Z, + gsl_eigen_genv_workspace * w) + { + if (Q && (A->size1 != Q->size1 || A->size1 != Q->size2)) + { + GSL_ERROR("Q matrix has wrong dimensions", GSL_EBADLEN); + } + else if (Z && (A->size1 != Z->size1 || A->size1 != Z->size2)) + { + GSL_ERROR("Z matrix has wrong dimensions", GSL_EBADLEN); + } + else + { + int s; + + w->Q = Q; + w->Z = Z; + + s = gsl_eigen_genv(A, B, alpha, beta, evec, w); + + w->Q = NULL; + w->Z = NULL; + + return s; + } + } /* gsl_eigen_genv_QZ() */ + + /******************************************** + * INTERNAL ROUTINES * + ********************************************/ + + /* + genv_get_right_eigenvectors() + Compute right eigenvectors of the Schur form (S, T) and then + backtransform them using the right Schur vectors to get right + eigenvectors of the original system. + + Inputs: S - upper quasi-triangular Schur form of A + T - upper triangular Schur form of B + Z - right Schur vectors + evec - (output) where to store eigenvectors + w - workspace + + Return: success or error + + Notes: 1) based on LAPACK routine DTGEVC + 2) eigenvectors are stored in the order that their + eigenvalues appear in the Schur form + */ + + static int + genv_get_right_eigenvectors(const gsl_matrix *S, const gsl_matrix *T, + gsl_matrix *Z, + gsl_matrix_complex *evec, + gsl_eigen_genv_workspace *w) + { + const size_t N = w->size; + const double small = GSL_DBL_MIN * N / GSL_DBL_EPSILON; + const double big = 1.0 / small; + const double bignum = 1.0 / (GSL_DBL_MIN * N); + size_t i, j, k, end; + int is; + double anorm, bnorm; + double temp, temp2, temp2r, temp2i; + double ascale, bscale; + double salfar, sbeta; + double acoef, bcoefr, bcoefi, acoefa, bcoefa; + double creala, cimaga, crealb, cimagb, cre2a, cim2a, cre2b, cim2b; + double dmin, xmax; + double scale; + size_t nw, na; + int lsa, lsb; + int complex_pair; + gsl_complex z_zero, z_one; + double bdiag[2] = { 0.0, 0.0 }; + double sum[4]; + int il2by2; + size_t jr, jc, ja; + double xscale; + gsl_vector_complex_view ecol; + gsl_vector_view re, im, re2, im2; + + GSL_SET_COMPLEX(&z_zero, 0.0, 0.0); + GSL_SET_COMPLEX(&z_one, 1.0, 0.0); + + /* + * Compute the 1-norm of each column of (S, T) excluding elements + * belonging to the diagonal blocks to check for possible overflow + * in the triangular solver + */ + + anorm = fabs(gsl_matrix_get(S, 0, 0)); + if (N > 1) + anorm += fabs(gsl_matrix_get(S, 1, 0)); + bnorm = fabs(gsl_matrix_get(T, 0, 0)); + + gsl_vector_set(w->work1, 0, 0.0); + gsl_vector_set(w->work2, 0, 0.0); + + for (j = 1; j < N; ++j) + { + temp = temp2 = 0.0; + if (gsl_matrix_get(S, j, j - 1) == 0.0) + end = j; + else + end = j - 1; + + for (i = 0; i < end; ++i) + { + temp += fabs(gsl_matrix_get(S, i, j)); + temp2 += fabs(gsl_matrix_get(T, i, j)); + } + + gsl_vector_set(w->work1, j, temp); + gsl_vector_set(w->work2, j, temp2); + + for (i = end; i < GSL_MIN(j + 2, N); ++i) + { + temp += fabs(gsl_matrix_get(S, i, j)); + temp2 += fabs(gsl_matrix_get(T, i, j)); + } + + anorm = GSL_MAX(anorm, temp); + bnorm = GSL_MAX(bnorm, temp2); + } + + ascale = 1.0 / GSL_MAX(anorm, GSL_DBL_MIN); + bscale = 1.0 / GSL_MAX(bnorm, GSL_DBL_MIN); + + complex_pair = 0; + for (k = 0; k < N; ++k) + { + size_t je = N - 1 - k; + + if (complex_pair) + { + complex_pair = 0; + continue; + } + + nw = 1; + if (je > 0) + { + if (gsl_matrix_get(S, je, je - 1) != 0.0) + { + complex_pair = 1; + nw = 2; + } + } + + if (!complex_pair) + { + if (fabs(gsl_matrix_get(S, je, je)) <= GSL_DBL_MIN && + fabs(gsl_matrix_get(T, je, je)) <= GSL_DBL_MIN) + { + /* singular matrix pencil - unit eigenvector */ + for (i = 0; i < N; ++i) + gsl_matrix_complex_set(evec, i, je, z_zero); + + gsl_matrix_complex_set(evec, je, je, z_one); + + continue; + } + + /* clear vector */ + for (i = 0; i < N; ++i) + gsl_vector_set(w->work3, i, 0.0); + } + else + { + /* clear vectors */ + for (i = 0; i < N; ++i) + { + gsl_vector_set(w->work3, i, 0.0); + gsl_vector_set(w->work4, i, 0.0); + } + } + + if (!complex_pair) + { + /* real eigenvalue */ + + temp = 1.0 / GSL_MAX(GSL_DBL_MIN, + GSL_MAX(fabs(gsl_matrix_get(S, je, je)) * ascale, + fabs(gsl_matrix_get(T, je, je)) * bscale)); + salfar = (temp * gsl_matrix_get(S, je, je)) * ascale; + sbeta = (temp * gsl_matrix_get(T, je, je)) * bscale; + acoef = sbeta * ascale; + bcoefr = salfar * bscale; + bcoefi = 0.0; + + /* scale to avoid underflow */ + scale = 1.0; + lsa = fabs(sbeta) >= GSL_DBL_MIN && fabs(acoef) < small; + lsb = fabs(salfar) >= GSL_DBL_MIN && fabs(bcoefr) < small; + if (lsa) + scale = (small / fabs(sbeta)) * GSL_MIN(anorm, big); + if (lsb) + scale = GSL_MAX(scale, (small / fabs(salfar)) * GSL_MIN(bnorm, big)); + + if (lsa || lsb) + { + scale = GSL_MIN(scale, + 1.0 / (GSL_DBL_MIN * + GSL_MAX(1.0, + GSL_MAX(fabs(acoef), fabs(bcoefr))))); + if (lsa) + acoef = ascale * (scale * sbeta); + else + acoef *= scale; + + if (lsb) + bcoefr = bscale * (scale * salfar); + else + bcoefr *= scale; + } + + acoefa = fabs(acoef); + bcoefa = fabs(bcoefr); + + /* first component is 1 */ + gsl_vector_set(w->work3, je, 1.0); + xmax = 1.0; + + /* compute contribution from column je of A and B to sum */ + + for (i = 0; i < je; ++i) + { + gsl_vector_set(w->work3, i, + bcoefr*gsl_matrix_get(T, i, je) - + acoef * gsl_matrix_get(S, i, je)); + } + } + else + { + gsl_matrix_const_view vs = + gsl_matrix_const_submatrix(S, je - 1, je - 1, 2, 2); + gsl_matrix_const_view vt = + gsl_matrix_const_submatrix(T, je - 1, je - 1, 2, 2); + + /* complex eigenvalue */ + + gsl_schur_gen_eigvals(&vs.matrix, + &vt.matrix, + &bcoefr, + &temp2, + &bcoefi, + &acoef, + &temp); + if (bcoefi == 0.0) + { + GSL_ERROR("gsl_schur_gen_eigvals failed on complex block", GSL_FAILURE); + } + + /* scale to avoid over/underflow */ + acoefa = fabs(acoef); + bcoefa = fabs(bcoefr) + fabs(bcoefi); + scale = 1.0; + + if (acoefa*GSL_DBL_EPSILON < GSL_DBL_MIN && acoefa >= GSL_DBL_MIN) + scale = (GSL_DBL_MIN / GSL_DBL_EPSILON) / acoefa; + if (bcoefa*GSL_DBL_EPSILON < GSL_DBL_MIN && bcoefa >= GSL_DBL_MIN) + scale = GSL_MAX(scale, (GSL_DBL_MIN/GSL_DBL_EPSILON) / bcoefa); + if (GSL_DBL_MIN*acoefa > ascale) + scale = ascale / (GSL_DBL_MIN * acoefa); + if (GSL_DBL_MIN*bcoefa > bscale) + scale = GSL_MIN(scale, bscale / (GSL_DBL_MIN*bcoefa)); + if (scale != 1.0) + { + acoef *= scale; + acoefa = fabs(acoef); + bcoefr *= scale; + bcoefi *= scale; + bcoefa = fabs(bcoefr) + fabs(bcoefi); + } + + /* compute first two components of eigenvector */ + + temp = acoef * gsl_matrix_get(S, je, je - 1); + temp2r = acoef * gsl_matrix_get(S, je, je) - + bcoefr * gsl_matrix_get(T, je, je); + temp2i = -bcoefi * gsl_matrix_get(T, je, je); + + if (fabs(temp) >= fabs(temp2r) + fabs(temp2i)) + { + gsl_vector_set(w->work3, je, 1.0); + gsl_vector_set(w->work4, je, 0.0); + gsl_vector_set(w->work3, je - 1, -temp2r / temp); + gsl_vector_set(w->work4, je - 1, -temp2i / temp); + } + else + { + gsl_vector_set(w->work3, je - 1, 1.0); + gsl_vector_set(w->work4, je - 1, 0.0); + temp = acoef * gsl_matrix_get(S, je - 1, je); + gsl_vector_set(w->work3, je, + (bcoefr*gsl_matrix_get(T, je - 1, je - 1) - + acoef*gsl_matrix_get(S, je - 1, je - 1)) / temp); + gsl_vector_set(w->work4, je, + bcoefi*gsl_matrix_get(T, je - 1, je - 1) / temp); + } + + xmax = GSL_MAX(fabs(gsl_vector_get(w->work3, je)) + + fabs(gsl_vector_get(w->work4, je)), + fabs(gsl_vector_get(w->work3, je - 1)) + + fabs(gsl_vector_get(w->work4, je - 1))); + + /* compute contribution from column je and je - 1 */ + + creala = acoef * gsl_vector_get(w->work3, je - 1); + cimaga = acoef * gsl_vector_get(w->work4, je - 1); + crealb = bcoefr * gsl_vector_get(w->work3, je - 1) - + bcoefi * gsl_vector_get(w->work4, je - 1); + cimagb = bcoefi * gsl_vector_get(w->work3, je - 1) + + bcoefr * gsl_vector_get(w->work4, je - 1); + cre2a = acoef * gsl_vector_get(w->work3, je); + cim2a = acoef * gsl_vector_get(w->work4, je); + cre2b = bcoefr * gsl_vector_get(w->work3, je) - + bcoefi * gsl_vector_get(w->work4, je); + cim2b = bcoefi * gsl_vector_get(w->work3, je) + + bcoefr * gsl_vector_get(w->work4, je); + + for (i = 0; i < je - 1; ++i) + { + gsl_vector_set(w->work3, i, + -creala * gsl_matrix_get(S, i, je - 1) + + crealb * gsl_matrix_get(T, i, je - 1) - + cre2a * gsl_matrix_get(S, i, je) + + cre2b * gsl_matrix_get(T, i, je)); + gsl_vector_set(w->work4, i, + -cimaga * gsl_matrix_get(S, i, je - 1) + + cimagb * gsl_matrix_get(T, i, je - 1) - + cim2a * gsl_matrix_get(S, i, je) + + cim2b * gsl_matrix_get(T, i, je)); + } + } + + dmin = GSL_MAX(GSL_DBL_MIN, + GSL_MAX(GSL_DBL_EPSILON*acoefa*anorm, + GSL_DBL_EPSILON*bcoefa*bnorm)); + + /* triangular solve of (a A - b B) x = 0 */ + + il2by2 = 0; + for (is = (int) je - (int) nw; is >= 0; --is) + { + j = (size_t) is; + + if (!il2by2 && j > 0) + { + if (gsl_matrix_get(S, j, j - 1) != 0.0) + { + il2by2 = 1; + continue; + } + } + + bdiag[0] = gsl_matrix_get(T, j, j); + if (il2by2) + { + na = 2; + bdiag[1] = gsl_matrix_get(T, j + 1, j + 1); + } + else + na = 1; + + + if (nw == 1) + { + gsl_matrix_const_view sv = + gsl_matrix_const_submatrix(S, j, j, na, na); + gsl_vector_view xv, bv; + + bv = gsl_vector_subvector(w->work3, j, na); + + /* + * the loop below expects the solution in the first column + * of sum, so set stride to 2 + */ + xv = gsl_vector_view_array_with_stride(sum, 2, na); + + gsl_schur_solve_equation(acoef, + &sv.matrix, + bcoefr, + bdiag[0], + bdiag[1], + &bv.vector, + &xv.vector, + &scale, + &temp, + dmin); + } + else + { + double bdat[4]; + gsl_matrix_const_view sv = + gsl_matrix_const_submatrix(S, j, j, na, na); + gsl_vector_complex_view xv = + gsl_vector_complex_view_array(sum, na); + gsl_vector_complex_view bv = + gsl_vector_complex_view_array(bdat, na); + gsl_complex z; + + bdat[0] = gsl_vector_get(w->work3, j); + bdat[1] = gsl_vector_get(w->work4, j); + if (na == 2) + { + bdat[2] = gsl_vector_get(w->work3, j + 1); + bdat[3] = gsl_vector_get(w->work4, j + 1); + } + + GSL_SET_COMPLEX(&z, bcoefr, bcoefi); + + gsl_schur_solve_equation_z(acoef, + &sv.matrix, + &z, + bdiag[0], + bdiag[1], + &bv.vector, + &xv.vector, + &scale, + &temp, + dmin); + } + + if (scale < 1.0) + { + for (jr = 0; jr <= je; ++jr) + { + gsl_vector_set(w->work3, jr, + scale * gsl_vector_get(w->work3, jr)); + if (nw == 2) + { + gsl_vector_set(w->work4, jr, + scale * gsl_vector_get(w->work4, jr)); + } + } + } + + xmax = GSL_MAX(scale * xmax, temp); + + for (jr = 0; jr < na; ++jr) + { + gsl_vector_set(w->work3, j + jr, sum[jr*na]); + if (nw == 2) + gsl_vector_set(w->work4, j + jr, sum[jr*na + 1]); + } + + if (j > 0) + { + xscale = 1.0 / GSL_MAX(1.0, xmax); + temp = acoefa * gsl_vector_get(w->work1, j) + + bcoefa * gsl_vector_get(w->work2, j); + if (il2by2) + { + temp = GSL_MAX(temp, + acoefa * gsl_vector_get(w->work1, j + 1) + + bcoefa * gsl_vector_get(w->work2, j + 1)); + } + + temp = GSL_MAX(temp, GSL_MAX(acoefa, bcoefa)); + if (temp > bignum * xscale) + { + for (jr = 0; jr <= je; ++jr) + { + gsl_vector_set(w->work3, jr, + xscale * gsl_vector_get(w->work3, jr)); + if (nw == 2) + { + gsl_vector_set(w->work4, jr, + xscale * gsl_vector_get(w->work4, jr)); + } + } + xmax *= xscale; + } + + for (ja = 0; ja < na; ++ja) + { + if (complex_pair) + { + creala = acoef * gsl_vector_get(w->work3, j + ja); + cimaga = acoef * gsl_vector_get(w->work4, j + ja); + crealb = bcoefr * gsl_vector_get(w->work3, j + ja) - + bcoefi * gsl_vector_get(w->work4, j + ja); + cimagb = bcoefi * gsl_vector_get(w->work3, j + ja) + + bcoefr * gsl_vector_get(w->work4, j + ja); + for (jr = 0; jr <= j - 1; ++jr) + { + gsl_vector_set(w->work3, jr, + gsl_vector_get(w->work3, jr) - + creala * gsl_matrix_get(S, jr, j + ja) + + crealb * gsl_matrix_get(T, jr, j + ja)); + gsl_vector_set(w->work4, jr, + gsl_vector_get(w->work4, jr) - + cimaga * gsl_matrix_get(S, jr, j + ja) + + cimagb * gsl_matrix_get(T, jr, j + ja)); + } + } + else + { + creala = acoef * gsl_vector_get(w->work3, j + ja); + crealb = bcoefr * gsl_vector_get(w->work3, j + ja); + for (jr = 0; jr <= j - 1; ++jr) + { + gsl_vector_set(w->work3, jr, + gsl_vector_get(w->work3, jr) - + creala * gsl_matrix_get(S, jr, j + ja) + + crealb * gsl_matrix_get(T, jr, j + ja)); + } + } /* if (!complex_pair) */ + } /* for (ja = 0; ja < na; ++ja) */ + } /* if (j > 0) */ + + il2by2 = 0; + } /* for (i = 0; i < je - nw; ++i) */ + + for (jr = 0; jr < N; ++jr) + { + gsl_vector_set(w->work5, jr, + gsl_vector_get(w->work3, 0) * gsl_matrix_get(Z, jr, 0)); + if (nw == 2) + { + gsl_vector_set(w->work6, jr, + gsl_vector_get(w->work4, 0) * gsl_matrix_get(Z, jr, 0)); + } + } + + for (jc = 1; jc <= je; ++jc) + { + for (jr = 0; jr < N; ++jr) + { + gsl_vector_set(w->work5, jr, + gsl_vector_get(w->work5, jr) + + gsl_vector_get(w->work3, jc) * gsl_matrix_get(Z, jr, jc)); + if (nw == 2) + { + gsl_vector_set(w->work6, jr, + gsl_vector_get(w->work6, jr) + + gsl_vector_get(w->work4, jc) * gsl_matrix_get(Z, jr, jc)); + } + } + } + + /* store the eigenvector */ + + if (complex_pair) + { + ecol = gsl_matrix_complex_column(evec, je - 1); + re = gsl_vector_complex_real(&ecol.vector); + im = gsl_vector_complex_imag(&ecol.vector); + + ecol = gsl_matrix_complex_column(evec, je); + re2 = gsl_vector_complex_real(&ecol.vector); + im2 = gsl_vector_complex_imag(&ecol.vector); + } + else + { + ecol = gsl_matrix_complex_column(evec, je); + re = gsl_vector_complex_real(&ecol.vector); + im = gsl_vector_complex_imag(&ecol.vector); + } + + for (jr = 0; jr < N; ++jr) + { + gsl_vector_set(&re.vector, jr, gsl_vector_get(w->work5, jr)); + if (complex_pair) + { + gsl_vector_set(&im.vector, jr, gsl_vector_get(w->work6, jr)); + gsl_vector_set(&re2.vector, jr, gsl_vector_get(w->work5, jr)); + gsl_vector_set(&im2.vector, jr, -gsl_vector_get(w->work6, jr)); + } + else + { + gsl_vector_set(&im.vector, jr, 0.0); + } + } + + /* scale eigenvector */ + xmax = 0.0; + if (complex_pair) + { + for (j = 0; j < N; ++j) + { + xmax = GSL_MAX(xmax, + fabs(gsl_vector_get(&re.vector, j)) + + fabs(gsl_vector_get(&im.vector, j))); + } + } + else + { + for (j = 0; j < N; ++j) + { + xmax = GSL_MAX(xmax, fabs(gsl_vector_get(&re.vector, j))); + } + } + + if (xmax > GSL_DBL_MIN) + { + xscale = 1.0 / xmax; + for (j = 0; j < N; ++j) + { + gsl_vector_set(&re.vector, j, + gsl_vector_get(&re.vector, j) * xscale); + if (complex_pair) + { + gsl_vector_set(&im.vector, j, + gsl_vector_get(&im.vector, j) * xscale); + gsl_vector_set(&re2.vector, j, + gsl_vector_get(&re2.vector, j) * xscale); + gsl_vector_set(&im2.vector, j, + gsl_vector_get(&im2.vector, j) * xscale); + } + } + } + } /* for (k = 0; k < N; ++k) */ + + return GSL_SUCCESS; + } /* genv_get_right_eigenvectors() */ + + /* + genv_normalize_eigenvectors() + Normalize eigenvectors so that their Euclidean norm is 1 + + Inputs: alpha - eigenvalue numerators + evec - eigenvectors + */ + + static void + genv_normalize_eigenvectors(gsl_vector_complex *alpha, + gsl_matrix_complex *evec) + { + const size_t N = evec->size1; + size_t i; /* looping */ + gsl_complex ai; + gsl_vector_complex_view vi; + gsl_vector_view re, im; + double scale; /* scaling factor */ + + for (i = 0; i < N; ++i) + { + ai = gsl_vector_complex_get(alpha, i); + vi = gsl_matrix_complex_column(evec, i); + + re = gsl_vector_complex_real(&vi.vector); + + if (GSL_IMAG(ai) == 0.0) + { + scale = 1.0 / gsl_blas_dnrm2(&re.vector); + gsl_blas_dscal(scale, &re.vector); + } + else if (GSL_IMAG(ai) > 0.0) + { + im = gsl_vector_complex_imag(&vi.vector); + + scale = 1.0 / gsl_hypot(gsl_blas_dnrm2(&re.vector), + gsl_blas_dnrm2(&im.vector)); + gsl_blas_zdscal(scale, &vi.vector); + + vi = gsl_matrix_complex_column(evec, i + 1); + gsl_blas_zdscal(scale, &vi.vector); + } + } + } /* genv_normalize_eigenvectors() */ diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/eigen/gsl_eigen.h gsl-1.10/eigen/gsl_eigen.h *** gsl-1.9/eigen/gsl_eigen.h 2007-01-24 15:30:54.000000000 +0000 --- gsl-1.10/eigen/gsl_eigen.h 2007-07-02 17:29:29.000000000 +0100 *************** *** 1,10 **** /* eigen/gsl_eigen.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* eigen/gsl_eigen.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2006, 2007 Gerard Jungman, Brian Gough, Patrick Alken * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 58,75 **** int gsl_eigen_symmv (gsl_matrix * A, gsl_vector * eval, gsl_matrix * evec, gsl_eigen_symmv_workspace * w); typedef struct { size_t size; /* matrix size */ size_t max_iterations; /* max iterations since last eigenvalue found */ size_t n_iter; /* number of iterations since last eigenvalue found */ size_t n_evals; /* number of eigenvalues found so far */ - gsl_vector *hv2; /* temporary 2-by-1 householder vector */ - gsl_vector *hv3; /* temporary 3-by-1 householder vector */ - int compute_t; /* compute Schur form T = Z^t A Z */ gsl_matrix *H; /* pointer to Hessenberg matrix */ - gsl_matrix *Z; /* pointer to Schur vector matrix */ } gsl_eigen_francis_workspace; --- 58,98 ---- int gsl_eigen_symmv (gsl_matrix * A, gsl_vector * eval, gsl_matrix * evec, gsl_eigen_symmv_workspace * w); typedef struct { + size_t size; + double * d; + double * sd; + double * tau; + } gsl_eigen_herm_workspace; + + gsl_eigen_herm_workspace * gsl_eigen_herm_alloc (const size_t n); + void gsl_eigen_herm_free (gsl_eigen_herm_workspace * w); + int gsl_eigen_herm (gsl_matrix_complex * A, gsl_vector * eval, + gsl_eigen_herm_workspace * w); + + typedef struct { + size_t size; + double * d; + double * sd; + double * tau; + double * gc; + double * gs; + } gsl_eigen_hermv_workspace; + + gsl_eigen_hermv_workspace * gsl_eigen_hermv_alloc (const size_t n); + void gsl_eigen_hermv_free (gsl_eigen_hermv_workspace * w); + int gsl_eigen_hermv (gsl_matrix_complex * A, gsl_vector * eval, + gsl_matrix_complex * evec, + gsl_eigen_hermv_workspace * w); + + typedef struct { size_t size; /* matrix size */ size_t max_iterations; /* max iterations since last eigenvalue found */ size_t n_iter; /* number of iterations since last eigenvalue found */ size_t n_evals; /* number of eigenvalues found so far */ int compute_t; /* compute Schur form T = Z^t A Z */ gsl_matrix *H; /* pointer to Hessenberg matrix */ gsl_matrix *Z; /* pointer to Schur vector matrix */ } gsl_eigen_francis_workspace; *************** *** 124,154 **** gsl_eigen_nonsymmv_workspace * w); typedef struct { ! size_t size; ! double * d; ! double * sd; ! double * tau; ! } gsl_eigen_herm_workspace; ! gsl_eigen_herm_workspace * gsl_eigen_herm_alloc (const size_t n); ! void gsl_eigen_herm_free (gsl_eigen_herm_workspace * w); ! int gsl_eigen_herm (gsl_matrix_complex * A, gsl_vector * eval, ! gsl_eigen_herm_workspace * w); typedef struct { ! size_t size; ! double * d; ! double * sd; ! double * tau; ! double * gc; ! double * gs; ! } gsl_eigen_hermv_workspace; ! gsl_eigen_hermv_workspace * gsl_eigen_hermv_alloc (const size_t n); ! void gsl_eigen_hermv_free (gsl_eigen_hermv_workspace * w); ! int gsl_eigen_hermv (gsl_matrix_complex * A, gsl_vector * eval, ! gsl_matrix_complex * evec, ! gsl_eigen_hermv_workspace * w); --- 147,262 ---- gsl_eigen_nonsymmv_workspace * w); typedef struct { ! size_t size; /* size of matrices */ ! gsl_eigen_symm_workspace *symm_workspace_p; ! } gsl_eigen_gensymm_workspace; ! ! gsl_eigen_gensymm_workspace * gsl_eigen_gensymm_alloc (const size_t n); ! void gsl_eigen_gensymm_free (gsl_eigen_gensymm_workspace * w); ! int gsl_eigen_gensymm (gsl_matrix * A, gsl_matrix * B, ! gsl_vector * eval, gsl_eigen_gensymm_workspace * w); ! int gsl_eigen_gensymm_standardize (gsl_matrix * A, const gsl_matrix * B); ! typedef struct { ! size_t size; /* size of matrices */ ! gsl_eigen_symmv_workspace *symmv_workspace_p; ! } gsl_eigen_gensymmv_workspace; ! ! gsl_eigen_gensymmv_workspace * gsl_eigen_gensymmv_alloc (const size_t n); ! void gsl_eigen_gensymmv_free (gsl_eigen_gensymmv_workspace * w); ! int gsl_eigen_gensymmv (gsl_matrix * A, gsl_matrix * B, ! gsl_vector * eval, gsl_matrix * evec, ! gsl_eigen_gensymmv_workspace * w); typedef struct { ! size_t size; /* size of matrices */ ! gsl_eigen_herm_workspace *herm_workspace_p; ! } gsl_eigen_genherm_workspace; ! ! gsl_eigen_genherm_workspace * gsl_eigen_genherm_alloc (const size_t n); ! void gsl_eigen_genherm_free (gsl_eigen_genherm_workspace * w); ! int gsl_eigen_genherm (gsl_matrix_complex * A, gsl_matrix_complex * B, ! gsl_vector * eval, gsl_eigen_genherm_workspace * w); ! int gsl_eigen_genherm_standardize (gsl_matrix_complex * A, ! const gsl_matrix_complex * B); ! typedef struct { ! size_t size; /* size of matrices */ ! gsl_eigen_hermv_workspace *hermv_workspace_p; ! } gsl_eigen_genhermv_workspace; ! ! gsl_eigen_genhermv_workspace * gsl_eigen_genhermv_alloc (const size_t n); ! void gsl_eigen_genhermv_free (gsl_eigen_genhermv_workspace * w); ! int gsl_eigen_genhermv (gsl_matrix_complex * A, gsl_matrix_complex * B, ! gsl_vector * eval, gsl_matrix_complex * evec, ! gsl_eigen_genhermv_workspace * w); ! ! typedef struct { ! size_t size; /* size of matrices */ ! gsl_vector *work; /* scratch workspace */ ! ! size_t n_evals; /* number of eigenvalues found */ ! size_t max_iterations; /* maximum QZ iterations allowed */ ! size_t n_iter; /* number of iterations since last eigenvalue found */ ! double eshift; /* exceptional shift counter */ ! ! int needtop; /* need to compute top index? */ ! ! double atol; /* tolerance for splitting A matrix */ ! double btol; /* tolerance for splitting B matrix */ ! ! double ascale; /* scaling factor for shifts */ ! double bscale; /* scaling factor for shifts */ ! ! gsl_matrix *H; /* pointer to hessenberg matrix */ ! gsl_matrix *R; /* pointer to upper triangular matrix */ ! ! int compute_s; /* compute generalized Schur form S */ ! int compute_t; /* compute generalized Schur form T */ ! ! gsl_matrix *Q; /* pointer to left Schur vectors */ ! gsl_matrix *Z; /* pointer to right Schur vectors */ ! } gsl_eigen_gen_workspace; ! ! gsl_eigen_gen_workspace * gsl_eigen_gen_alloc (const size_t n); ! void gsl_eigen_gen_free (gsl_eigen_gen_workspace * w); ! void gsl_eigen_gen_params (const int compute_s, const int compute_t, ! const int balance, gsl_eigen_gen_workspace * w); ! int gsl_eigen_gen (gsl_matrix * A, gsl_matrix * B, ! gsl_vector_complex * alpha, gsl_vector * beta, ! gsl_eigen_gen_workspace * w); ! int gsl_eigen_gen_QZ (gsl_matrix * A, gsl_matrix * B, ! gsl_vector_complex * alpha, gsl_vector * beta, ! gsl_matrix * Q, gsl_matrix * Z, ! gsl_eigen_gen_workspace * w); ! ! typedef struct { ! size_t size; /* size of matrices */ ! ! gsl_vector *work1; /* 1-norm of columns of A */ ! gsl_vector *work2; /* 1-norm of columns of B */ ! gsl_vector *work3; /* real part of eigenvector */ ! gsl_vector *work4; /* imag part of eigenvector */ ! gsl_vector *work5; /* real part of back-transformed eigenvector */ ! gsl_vector *work6; /* imag part of back-transformed eigenvector */ ! ! gsl_matrix *Q; /* pointer to left Schur vectors */ ! gsl_matrix *Z; /* pointer to right Schur vectors */ ! ! gsl_eigen_gen_workspace *gen_workspace_p; ! } gsl_eigen_genv_workspace; ! ! gsl_eigen_genv_workspace * gsl_eigen_genv_alloc (const size_t n); ! void gsl_eigen_genv_free (gsl_eigen_genv_workspace * w); ! int gsl_eigen_genv (gsl_matrix * A, gsl_matrix * B, ! gsl_vector_complex * alpha, gsl_vector * beta, ! gsl_matrix_complex * evec, ! gsl_eigen_genv_workspace * w); ! int gsl_eigen_genv_QZ (gsl_matrix * A, gsl_matrix * B, ! gsl_vector_complex * alpha, gsl_vector * beta, ! gsl_matrix_complex * evec, ! gsl_matrix * Q, gsl_matrix * Z, ! gsl_eigen_genv_workspace * w); *************** *** 177,182 **** --- 285,317 ---- gsl_matrix_complex * evec, gsl_eigen_sort_t sort_type); + int gsl_eigen_gensymmv_sort (gsl_vector * eval, gsl_matrix * evec, + gsl_eigen_sort_t sort_type); + + int gsl_eigen_genhermv_sort (gsl_vector * eval, gsl_matrix_complex * evec, + gsl_eigen_sort_t sort_type); + + int gsl_eigen_genv_sort (gsl_vector_complex * alpha, gsl_vector * beta, + gsl_matrix_complex * evec, + gsl_eigen_sort_t sort_type); + + /* Prototypes for the schur module */ + + int gsl_schur_gen_eigvals(const gsl_matrix *A, const gsl_matrix *B, + double *wr1, double *wr2, double *wi, + double *scale1, double *scale2); + + int gsl_schur_solve_equation(double ca, const gsl_matrix *A, double z, + double d1, double d2, const gsl_vector *b, + gsl_vector *x, double *s, double *xnorm, + double smin); + + int gsl_schur_solve_equation_z(double ca, const gsl_matrix *A, + gsl_complex *z, double d1, double d2, + const gsl_vector_complex *b, + gsl_vector_complex *x, double *s, + double *xnorm, double smin); + /* The following functions are obsolete: */ diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/eigen/herm.c gsl-1.10/eigen/herm.c *** gsl-1.9/eigen/herm.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/eigen/herm.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* eigen/herm.c * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* eigen/herm.c * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/eigen/hermv.c gsl-1.10/eigen/hermv.c *** gsl-1.9/eigen/hermv.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/eigen/hermv.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* eigen/hermv.c * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* eigen/hermv.c * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/eigen/jacobi.c gsl-1.10/eigen/jacobi.c *** gsl-1.9/eigen/jacobi.c 2006-03-30 20:02:59.000000000 +0100 --- gsl-1.10/eigen/jacobi.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* eigen/jacobi.c * ! * Copyright (C) 2004 Brian Gough, Gerard Jungman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* eigen/jacobi.c * ! * Copyright (C) 2004, 2007 Brian Gough, Gerard Jungman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/eigen/Makefile.am gsl-1.10/eigen/Makefile.am *** gsl-1.9/eigen/Makefile.am 2007-01-24 15:30:54.000000000 +0000 --- gsl-1.10/eigen/Makefile.am 2007-05-22 15:10:07.000000000 +0100 *************** *** 3,16 **** check_PROGRAMS = test pkginclude_HEADERS = gsl_eigen.h ! libgsleigen_la_SOURCES = jacobi.c symm.c symmv.c nonsymm.c nonsymmv.c herm.c hermv.c sort.c francis.c schur.c INCLUDES= -I$(top_builddir) ! noinst_HEADERS = qrstep.c schur.h TESTS = $(check_PROGRAMS) ! test_LDADD = libgsleigen.la ../test/libgsltest.la ../linalg/libgsllinalg.la ../permutation/libgslpermutation.la ../blas/libgslblas.la ../cblas/libgslcblas.la ../matrix/libgslmatrix.la ../vector/libgslvector.la ../block/libgslblock.la ../complex/libgslcomplex.la ../ieee-utils/libgslieeeutils.la ../sys/libgslsys.la ../err/libgslerr.la ../utils/libutils.la test_SOURCES = test.c --- 3,16 ---- check_PROGRAMS = test pkginclude_HEADERS = gsl_eigen.h ! libgsleigen_la_SOURCES = jacobi.c symm.c symmv.c nonsymm.c nonsymmv.c herm.c hermv.c gensymm.c gensymmv.c genherm.c genhermv.c gen.c genv.c sort.c francis.c schur.c INCLUDES= -I$(top_builddir) ! noinst_HEADERS = qrstep.c TESTS = $(check_PROGRAMS) ! test_LDADD = libgsleigen.la ../test/libgsltest.la ../linalg/libgsllinalg.la ../permutation/libgslpermutation.la ../blas/libgslblas.la ../cblas/libgslcblas.la ../matrix/libgslmatrix.la ../vector/libgslvector.la ../block/libgslblock.la ../complex/libgslcomplex.la ../ieee-utils/libgslieeeutils.la ../sys/libgslsys.la ../err/libgslerr.la ../utils/libutils.la ../rng/libgslrng.la ../sort/libgslsort.la test_SOURCES = test.c diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/eigen/Makefile.in gsl-1.10/eigen/Makefile.in *** gsl-1.9/eigen/Makefile.in 2007-02-20 13:09:05.000000000 +0000 --- gsl-1.10/eigen/Makefile.in 2007-09-13 16:41:40.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 51,57 **** LTLIBRARIES = $(noinst_LTLIBRARIES) libgsleigen_la_LIBADD = am_libgsleigen_la_OBJECTS = jacobi.lo symm.lo symmv.lo nonsymm.lo \ ! nonsymmv.lo herm.lo hermv.lo sort.lo francis.lo schur.lo libgsleigen_la_OBJECTS = $(am_libgsleigen_la_OBJECTS) am_test_OBJECTS = test.$(OBJEXT) test_OBJECTS = $(am_test_OBJECTS) --- 47,54 ---- LTLIBRARIES = $(noinst_LTLIBRARIES) libgsleigen_la_LIBADD = am_libgsleigen_la_OBJECTS = jacobi.lo symm.lo symmv.lo nonsymm.lo \ ! nonsymmv.lo herm.lo hermv.lo gensymm.lo gensymmv.lo genherm.lo \ ! genhermv.lo gen.lo genv.lo sort.lo francis.lo schur.lo libgsleigen_la_OBJECTS = $(am_libgsleigen_la_OBJECTS) am_test_OBJECTS = test.$(OBJEXT) test_OBJECTS = $(am_test_OBJECTS) *************** *** 61,78 **** ../matrix/libgslmatrix.la ../vector/libgslvector.la \ ../block/libgslblock.la ../complex/libgslcomplex.la \ ../ieee-utils/libgslieeeutils.la ../sys/libgslsys.la \ ! ../err/libgslerr.la ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgsleigen_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgsleigen_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 58,77 ---- ../matrix/libgslmatrix.la ../vector/libgslvector.la \ ../block/libgslblock.la ../complex/libgslcomplex.la \ ../ieee-utils/libgslieeeutils.la ../sys/libgslsys.la \ ! ../err/libgslerr.la ../utils/libutils.la ../rng/libgslrng.la \ ! ../sort/libgslsort.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgsleigen_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgsleigen_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 106,111 **** --- 105,111 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 113,119 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 113,118 ---- *************** *** 121,137 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 120,133 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 143,151 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 139,146 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 155,169 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 150,165 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 173,207 **** build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ datadir = @datadir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ noinst_LTLIBRARIES = libgsleigen.la pkginclude_HEADERS = gsl_eigen.h ! libgsleigen_la_SOURCES = jacobi.c symm.c symmv.c nonsymm.c nonsymmv.c herm.c hermv.c sort.c francis.c schur.c INCLUDES = -I$(top_builddir) ! noinst_HEADERS = qrstep.c schur.h TESTS = $(check_PROGRAMS) ! test_LDADD = libgsleigen.la ../test/libgsltest.la ../linalg/libgsllinalg.la ../permutation/libgslpermutation.la ../blas/libgslblas.la ../cblas/libgslcblas.la ../matrix/libgslmatrix.la ../vector/libgslvector.la ../block/libgslblock.la ../complex/libgslcomplex.la ../ieee-utils/libgslieeeutils.la ../sys/libgslsys.la ../err/libgslerr.la ../utils/libutils.la test_SOURCES = test.c all: all-am --- 169,214 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgsleigen.la pkginclude_HEADERS = gsl_eigen.h ! libgsleigen_la_SOURCES = jacobi.c symm.c symmv.c nonsymm.c nonsymmv.c herm.c hermv.c gensymm.c gensymmv.c genherm.c genhermv.c gen.c genv.c sort.c francis.c schur.c INCLUDES = -I$(top_builddir) ! noinst_HEADERS = qrstep.c TESTS = $(check_PROGRAMS) ! test_LDADD = libgsleigen.la ../test/libgsltest.la ../linalg/libgsllinalg.la ../permutation/libgslpermutation.la ../blas/libgslblas.la ../cblas/libgslcblas.la ../matrix/libgslmatrix.la ../vector/libgslvector.la ../block/libgslblock.la ../complex/libgslcomplex.la ../ieee-utils/libgslieeeutils.la ../sys/libgslsys.la ../err/libgslerr.la ../utils/libutils.la ../rng/libgslrng.la ../sort/libgslsort.la test_SOURCES = test.c all: all-am *************** *** 246,252 **** rm -f "$${dir}/so_locations"; \ done libgsleigen.la: $(libgsleigen_la_OBJECTS) $(libgsleigen_la_DEPENDENCIES) ! $(LINK) $(libgsleigen_la_LDFLAGS) $(libgsleigen_la_OBJECTS) $(libgsleigen_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 253,259 ---- rm -f "$${dir}/so_locations"; \ done libgsleigen.la: $(libgsleigen_la_OBJECTS) $(libgsleigen_la_DEPENDENCIES) ! $(LINK) $(libgsleigen_la_OBJECTS) $(libgsleigen_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 256,262 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 263,269 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 278,290 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 285,293 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 349,357 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 352,360 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 360,366 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 363,369 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 372,378 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 375,381 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 422,443 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 425,445 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 455,461 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 457,463 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 489,495 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 491,497 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 503,514 **** --- 505,524 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 528,548 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 538,561 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/eigen/nonsymm.c gsl-1.10/eigen/nonsymm.c *** gsl-1.9/eigen/nonsymm.c 2007-02-15 09:26:24.000000000 +0000 --- gsl-1.10/eigen/nonsymm.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 62,68 **** } w = (gsl_eigen_nonsymm_workspace *) ! malloc (sizeof (gsl_eigen_nonsymm_workspace)); if (w == 0) { --- 62,68 ---- } w = (gsl_eigen_nonsymm_workspace *) ! calloc (1, sizeof (gsl_eigen_nonsymm_workspace)); if (w == 0) { *************** *** 77,82 **** --- 77,83 ---- if (w->diag == 0) { + gsl_eigen_nonsymm_free(w); GSL_ERROR_NULL ("failed to allocate space for balancing vector", GSL_ENOMEM); } *************** *** 84,89 **** --- 85,91 ---- if (w->tau == 0) { + gsl_eigen_nonsymm_free(w); GSL_ERROR_NULL ("failed to allocate space for hessenberg coefficients", GSL_ENOMEM); } *************** *** 91,96 **** --- 93,99 ---- if (w->francis_workspace_p == 0) { + gsl_eigen_nonsymm_free(w); GSL_ERROR_NULL ("failed to allocate space for francis workspace", GSL_ENOMEM); } *************** *** 105,115 **** void gsl_eigen_nonsymm_free (gsl_eigen_nonsymm_workspace * w) { ! gsl_vector_free(w->tau); ! gsl_vector_free(w->diag); ! gsl_eigen_francis_free(w->francis_workspace_p); free(w); } /* gsl_eigen_nonsymm_free() */ --- 108,121 ---- void gsl_eigen_nonsymm_free (gsl_eigen_nonsymm_workspace * w) { ! if (w->tau) ! gsl_vector_free(w->tau); ! if (w->diag) ! gsl_vector_free(w->diag); ! if (w->francis_workspace_p) ! gsl_eigen_francis_free(w->francis_workspace_p); free(w); } /* gsl_eigen_nonsymm_free() */ *************** *** 187,193 **** } /* compute the Hessenberg reduction of A */ ! gsl_linalg_hessenberg(A, w->tau); if (w->Z) { --- 193,199 ---- } /* compute the Hessenberg reduction of A */ ! gsl_linalg_hessenberg_decomp(A, w->tau); if (w->Z) { diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/eigen/nonsymmv.c gsl-1.10/eigen/nonsymmv.c *** gsl-1.9/eigen/nonsymmv.c 2007-02-15 09:26:24.000000000 +0000 --- gsl-1.10/eigen/nonsymmv.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 27,32 **** --- 27,33 ---- #include #include #include + #include #include #include #include *************** *** 47,61 **** gsl_vector_complex *eval, gsl_matrix_complex *evec, gsl_eigen_nonsymmv_workspace *w); - static inline void nonsymmv_solve_equation(gsl_matrix *A, double z, - gsl_vector *b, gsl_vector *x, - double *s, double *xnorm, - double smin); - static inline void nonsymmv_solve_equation_z(gsl_matrix *A, gsl_complex *z, - gsl_vector_complex *b, - gsl_vector_complex *x, - double *s, double *xnorm, - double smin); static void nonsymmv_normalize_eigenvectors(gsl_vector_complex *eval, gsl_matrix_complex *evec); --- 48,53 ---- *************** *** 82,88 **** } w = (gsl_eigen_nonsymmv_workspace *) ! malloc (sizeof (gsl_eigen_nonsymmv_workspace)); if (w == 0) { --- 74,80 ---- } w = (gsl_eigen_nonsymmv_workspace *) ! calloc (1, sizeof (gsl_eigen_nonsymmv_workspace)); if (w == 0) { *************** *** 95,100 **** --- 87,93 ---- if (w->nonsymm_workspace_p == 0) { + gsl_eigen_nonsymmv_free(w); GSL_ERROR_NULL ("failed to allocate space for nonsymm workspace", GSL_ENOMEM); } *************** *** 109,114 **** --- 102,108 ---- w->work3 = gsl_vector_alloc(n); if (w->work == 0 || w->work2 == 0 || w->work3 == 0) { + gsl_eigen_nonsymmv_free(w); GSL_ERROR_NULL ("failed to allocate space for nonsymmv additional workspace", GSL_ENOMEM); } *************** *** 123,132 **** void gsl_eigen_nonsymmv_free (gsl_eigen_nonsymmv_workspace * w) { ! gsl_eigen_nonsymm_free(w->nonsymm_workspace_p); ! gsl_vector_free(w->work); ! gsl_vector_free(w->work2); ! gsl_vector_free(w->work3); free(w); } /* gsl_eigen_nonsymmv_free() */ --- 117,133 ---- void gsl_eigen_nonsymmv_free (gsl_eigen_nonsymmv_workspace * w) { ! if (w->nonsymm_workspace_p) ! gsl_eigen_nonsymm_free(w->nonsymm_workspace_p); ! ! if (w->work) ! gsl_vector_free(w->work); ! ! if (w->work2) ! gsl_vector_free(w->work2); ! ! if (w->work3) ! gsl_vector_free(w->work3); free(w); } /* gsl_eigen_nonsymmv_free() */ *************** *** 436,448 **** gsl_vector_get(w->work, lu)); xv = gsl_vector_view_array(dat_X, 1); ! nonsymmv_solve_equation(&Tv.matrix, ! lambda_re, ! &bv.vector, ! &xv.vector, ! &scale, ! &xnorm, ! smin); /* scale x to avoid overflow */ x = gsl_vector_get(&xv.vector, 0); --- 437,452 ---- gsl_vector_get(w->work, lu)); xv = gsl_vector_view_array(dat_X, 1); ! gsl_schur_solve_equation(1.0, ! &Tv.matrix, ! lambda_re, ! 1.0, ! 1.0, ! &bv.vector, ! &xv.vector, ! &scale, ! &xnorm, ! smin); /* scale x to avoid overflow */ x = gsl_vector_get(&xv.vector, 0); *************** *** 471,481 **** /* update right hand side */ ! v1 = gsl_matrix_column(T, lu); ! v1 = gsl_vector_subvector(&v1.vector, 0, lu); ! v2 = gsl_vector_subvector(w->work, 0, lu); - gsl_blas_daxpy(-x, &v1.vector, &v2.vector); } /* if (l > 0) */ } /* if (!complex_pair) */ --- 475,482 ---- /* update right hand side */ ! v1 = gsl_matrix_subcolumn(T, lu, 0, lu); v2 = gsl_vector_subvector(w->work, 0, lu); gsl_blas_daxpy(-x, &v1.vector, &v2.vector); } /* if (l > 0) */ } /* if (!complex_pair) */ *************** *** 495,507 **** gsl_vector_get(w->work, lu)); xv = gsl_vector_view_array(dat_X, 2); ! nonsymmv_solve_equation(&Tv.matrix, ! lambda_re, ! &bv.vector, ! &xv.vector, ! &scale, ! &xnorm, ! smin); /* scale X(1,1) and X(2,1) to avoid overflow */ x11 = gsl_vector_get(&xv.vector, 0); --- 496,511 ---- gsl_vector_get(w->work, lu)); xv = gsl_vector_view_array(dat_X, 2); ! gsl_schur_solve_equation(1.0, ! &Tv.matrix, ! lambda_re, ! 1.0, ! 1.0, ! &bv.vector, ! &xv.vector, ! &scale, ! &xnorm, ! smin); /* scale X(1,1) and X(2,1) to avoid overflow */ x11 = gsl_vector_get(&xv.vector, 0); *************** *** 538,550 **** { gsl_vector_view v1, v2; ! v1 = gsl_matrix_column(T, lu - 1); ! v1 = gsl_vector_subvector(&v1.vector, 0, lu - 1); v2 = gsl_vector_subvector(w->work, 0, lu - 1); gsl_blas_daxpy(-x11, &v1.vector, &v2.vector); ! v1 = gsl_matrix_column(T, lu); ! v1 = gsl_vector_subvector(&v1.vector, 0, lu - 1); gsl_blas_daxpy(-x21, &v1.vector, &v2.vector); } --- 542,552 ---- { gsl_vector_view v1, v2; ! v1 = gsl_matrix_subcolumn(T, lu - 1, 0, lu - 1); v2 = gsl_vector_subvector(w->work, 0, lu - 1); gsl_blas_daxpy(-x11, &v1.vector, &v2.vector); ! v1 = gsl_matrix_subcolumn(T, lu, 0, lu - 1); gsl_blas_daxpy(-x21, &v1.vector, &v2.vector); } *************** *** 691,703 **** gsl_vector_get(w->work2, lu)); gsl_vector_complex_set(&bv.vector, 0, bval); ! nonsymmv_solve_equation_z(&Tv.matrix, ! &lambda, ! &bv.vector, ! &xv.vector, ! &scale, ! &xnorm, ! smin); if (xnorm > 1.0) { --- 693,708 ---- gsl_vector_get(w->work2, lu)); gsl_vector_complex_set(&bv.vector, 0, bval); ! gsl_schur_solve_equation_z(1.0, ! &Tv.matrix, ! &lambda, ! 1.0, ! 1.0, ! &bv.vector, ! &xv.vector, ! &scale, ! &xnorm, ! smin); if (xnorm > 1.0) { *************** *** 728,735 **** { gsl_vector_view v1, v2; ! v1 = gsl_matrix_column(T, lu); ! v1 = gsl_vector_subvector(&v1.vector, 0, lu); v2 = gsl_vector_subvector(w->work, 0, lu); gsl_blas_daxpy(-GSL_REAL(x), &v1.vector, &v2.vector); --- 733,739 ---- { gsl_vector_view v1, v2; ! v1 = gsl_matrix_subcolumn(T, lu, 0, lu); v2 = gsl_vector_subvector(w->work, 0, lu); gsl_blas_daxpy(-GSL_REAL(x), &v1.vector, &v2.vector); *************** *** 758,770 **** gsl_vector_complex_set(&bv.vector, 0, b1); gsl_vector_complex_set(&bv.vector, 1, b2); ! nonsymmv_solve_equation_z(&Tv.matrix, ! &lambda, ! &bv.vector, ! &xv.vector, ! &scale, ! &xnorm, ! smin); x1 = gsl_vector_complex_get(&xv.vector, 0); x2 = gsl_vector_complex_get(&xv.vector, 1); --- 762,777 ---- gsl_vector_complex_set(&bv.vector, 0, b1); gsl_vector_complex_set(&bv.vector, 1, b2); ! gsl_schur_solve_equation_z(1.0, ! &Tv.matrix, ! &lambda, ! 1.0, ! 1.0, ! &bv.vector, ! &xv.vector, ! &scale, ! &xnorm, ! smin); x1 = gsl_vector_complex_get(&xv.vector, 0); x2 = gsl_vector_complex_get(&xv.vector, 1); *************** *** 802,811 **** { gsl_vector_view v1, v2, v3, v4; ! v1 = gsl_matrix_column(T, lu - 1); ! v1 = gsl_vector_subvector(&v1.vector, 0, lu - 1); ! v4 = gsl_matrix_column(T, lu); ! v4 = gsl_vector_subvector(&v4.vector, 0, lu - 1); v2 = gsl_vector_subvector(w->work, 0, lu - 1); v3 = gsl_vector_subvector(w->work2, 0, lu - 1); --- 809,816 ---- { gsl_vector_view v1, v2, v3, v4; ! v1 = gsl_matrix_subcolumn(T, lu - 1, 0, lu - 1); ! v4 = gsl_matrix_subcolumn(T, lu, 0, lu - 1); v2 = gsl_vector_subvector(w->work, 0, lu - 1); v3 = gsl_vector_subvector(w->work2, 0, lu - 1); *************** *** 919,1430 **** } /* nonsymmv_get_right_eigenvectors() */ /* - nonsymmv_solve_equation() - - Solve the equation which comes up in the back substitution - when computing eigenvectors corresponding to real eigenvalues. - The equation that is solved is: - - (A - z*I)*x = s*b - - where - - A is n-by-n with n = 1 or 2 - b and x are n-by-1 real vectors - s is a scaling factor set by this function to prevent overflow in x - - Inputs: A - square matrix (n-by-n) - z - real scalar (eigenvalue) - b - right hand side vector - x - (output) where to store solution - s - (output) scale factor - xnorm - (output) infinity norm of X - smin - lower bound on singular values of A - if A - z*I - is less than this value, we'll use smin*I instead. - This value should be a safe distance above underflow. - - Notes: 1) A and b are not changed on output - 2) Based on lapack routine DLALN2 - */ - - static inline void - nonsymmv_solve_equation(gsl_matrix *A, double z, gsl_vector *b, - gsl_vector *x, double *s, double *xnorm, - double smin) - { - size_t N = A->size1; - double bnorm; - double scale = 1.0; - - if (N == 1) - { - double c, /* denominator */ - cnorm; /* |c| */ - - /* - * we have a 1-by-1 (real) scalar system to solve: - * - * (a - z)*x = b - * with z real - */ - - /* c = a - z */ - c = gsl_matrix_get(A, 0, 0) - z; - cnorm = fabs(c); - - if (cnorm < smin) - { - /* set c = smin*I */ - c = smin; - cnorm = smin; - } - - /* check scaling for x = b / c */ - bnorm = fabs(gsl_vector_get(b, 0)); - if (cnorm < 1.0 && bnorm > 1.0) - { - if (bnorm > GSL_NONSYMMV_BIGNUM*cnorm) - scale = 1.0 / bnorm; - } - - /* compute x */ - gsl_vector_set(x, 0, gsl_vector_get(b, 0) * scale / c); - *xnorm = fabs(gsl_vector_get(x, 0)); - } /* if (N == 1) */ - else - { - double cr[2][2]; - double *crv; - double cmax; - size_t icmax, j; - double bval1, bval2; - double ur11, ur12, ur22, ur11r; - double cr21, cr22; - double lr21; - double b1, b2, bbnd; - double x1, x2; - double temp; - size_t ipivot[4][4] = { { 0, 1, 2, 3 }, - { 1, 0, 3, 2 }, - { 2, 3, 0, 1 }, - { 3, 2, 1, 0 } }; - int rswap[4] = { 0, 1, 0, 1 }; - int zswap[4] = { 0, 0, 1, 1 }; - - /* - * we have a 2-by-2 real system to solve: - * - * [ A11 - z A12 ] [ x1 ] = [ b1 ] - * [ A21 A22 - z ] [ x2 ] [ b2 ] - * - * (z real) - */ - - crv = (double *) cr; - - /* - * compute the real part of C = A - z*I - use column ordering - * here since porting from lapack - */ - cr[0][0] = gsl_matrix_get(A, 0, 0) - z; - cr[1][1] = gsl_matrix_get(A, 1, 1) - z; - cr[0][1] = gsl_matrix_get(A, 1, 0); - cr[1][0] = gsl_matrix_get(A, 0, 1); - - /* find the largest element in C */ - cmax = 0.0; - icmax = 0; - for (j = 0; j < 4; ++j) - { - if (fabs(crv[j]) > cmax) - { - cmax = fabs(crv[j]); - icmax = j; - } - } - - bval1 = gsl_vector_get(b, 0); - bval2 = gsl_vector_get(b, 1); - - /* if norm(C) < smin, use smin*I */ - - if (cmax < smin) - { - bnorm = GSL_MAX(fabs(bval1), fabs(bval2)); - if (smin < 1.0 && bnorm > 1.0) - { - if (bnorm > GSL_NONSYMMV_BIGNUM*smin) - scale = 1.0 / bnorm; - } - temp = scale / smin; - gsl_vector_set(x, 0, temp * bval1); - gsl_vector_set(x, 1, temp * bval2); - *xnorm = temp * bnorm; - *s = scale; - return; - } - - /* gaussian elimination with complete pivoting */ - ur11 = crv[icmax]; - cr21 = crv[ipivot[1][icmax]]; - ur12 = crv[ipivot[2][icmax]]; - cr22 = crv[ipivot[3][icmax]]; - ur11r = 1.0 / ur11; - lr21 = ur11r * cr21; - ur22 = cr22 - ur12 * lr21; - - /* if smaller pivot < smin, use smin */ - if (fabs(ur22) < smin) - ur22 = smin; - - if (rswap[icmax]) - { - b1 = bval2; - b2 = bval1; - } - else - { - b1 = bval1; - b2 = bval2; - } - - b2 -= lr21 * b1; - bbnd = GSL_MAX(fabs(b1 * (ur22 * ur11r)), fabs(b2)); - if (bbnd > 1.0 && fabs(ur22) < 1.0) - { - if (bbnd >= GSL_NONSYMMV_BIGNUM * fabs(ur22)) - scale = 1.0 / bbnd; - } - - x2 = (b2 * scale) / ur22; - x1 = (scale * b1) * ur11r - x2 * (ur11r * ur12); - if (zswap[icmax]) - { - gsl_vector_set(x, 0, x2); - gsl_vector_set(x, 1, x1); - } - else - { - gsl_vector_set(x, 0, x1); - gsl_vector_set(x, 1, x2); - } - - *xnorm = GSL_MAX(fabs(x1), fabs(x2)); - - /* further scaling if norm(A) norm(X) > overflow */ - if (*xnorm > 1.0 && cmax > 1.0) - { - if (*xnorm > GSL_NONSYMMV_BIGNUM / cmax) - { - temp = cmax / GSL_NONSYMMV_BIGNUM; - gsl_blas_dscal(temp, x); - *xnorm *= temp; - scale *= temp; - } - } - } /* if (N == 2) */ - - *s = scale; - } /* nonsymmv_solve_equation() */ - - /* - nonsymmv_solve_equation_z() - - Solve the equation which comes up in the back substitution - when computing eigenvectors corresponding to complex eigenvalues. - The equation that is solved is: - - (A - z*I)*x = s*b - - where - - A is n-by-n with n = 1 or 2 - b and x are n-by-1 complex vectors - s is a scaling factor set by this function to prevent overflow in x - - Inputs: A - square matrix (n-by-n) - z - complex scalar (eigenvalue) - b - right hand side vector - x - (output) where to store solution - s - (output) scale factor - xnorm - (output) infinity norm of X - smin - lower bound on singular values of A - if A - z*I - is less than this value, we'll use smin*I instead. - This value should be a safe distance above underflow. - - Notes: 1) A and b are not changed on output - 2) Based on lapack routine DLALN2 - */ - - static inline void - nonsymmv_solve_equation_z(gsl_matrix *A, gsl_complex *z, - gsl_vector_complex *b, gsl_vector_complex *x, - double *s, double *xnorm, double smin) - { - size_t N = A->size1; - double scale = 1.0; - double bnorm; - - if (N == 1) - { - double cr, /* denominator */ - ci, - cnorm; /* |c| */ - gsl_complex bval, c, xval, tmp; - - /* - * we have a 1-by-1 (complex) scalar system to solve: - * - * (a - z)*x = b - * (z is complex, a is real) - */ - - /* c = a - z */ - cr = gsl_matrix_get(A, 0, 0) - GSL_REAL(*z); - ci = -GSL_IMAG(*z); - cnorm = fabs(cr) + fabs(ci); - - if (cnorm < smin) - { - /* set c = smin*I */ - cr = smin; - ci = 0.0; - cnorm = smin; - } - - /* check scaling for x = b / c */ - bval = gsl_vector_complex_get(b, 0); - bnorm = fabs(GSL_REAL(bval)) + fabs(GSL_IMAG(bval)); - if (cnorm < 1.0 && bnorm > 1.0) - { - if (bnorm > GSL_NONSYMMV_BIGNUM*cnorm) - scale = 1.0 / bnorm; - } - - /* compute x */ - GSL_SET_COMPLEX(&tmp, scale*GSL_REAL(bval), scale*GSL_IMAG(bval)); - GSL_SET_COMPLEX(&c, cr, ci); - xval = gsl_complex_div(tmp, c); - - gsl_vector_complex_set(x, 0, xval); - - *xnorm = fabs(GSL_REAL(xval)) + fabs(GSL_IMAG(xval)); - } /* if (N == 1) */ - else - { - double cr[2][2], ci[2][2]; - double *civ, *crv; - double cmax; - gsl_complex bval1, bval2; - gsl_complex xval1, xval2; - double xr1, xi1; - size_t icmax; - size_t j; - double temp; - double ur11, ur12, ur22, ui11, ui12, ui22, ur11r, ui11r; - double ur12s, ui12s; - double u22abs; - double lr21, li21; - double cr21, cr22, ci21, ci22; - double br1, bi1, br2, bi2, bbnd; - gsl_complex b1, b2; - size_t ipivot[4][4] = { { 0, 1, 2, 3 }, - { 1, 0, 3, 2 }, - { 2, 3, 0, 1 }, - { 3, 2, 1, 0 } }; - int rswap[4] = { 0, 1, 0, 1 }; - int zswap[4] = { 0, 0, 1, 1 }; - - /* - * complex 2-by-2 system: - * - * [ A11 - z A12 ] [ X1 ] = [ B1 ] - * [ A21 A22 - z ] [ X2 ] [ B2 ] - * - * (z complex) - * - * where the X and B values are complex. - */ - - civ = (double *) ci; - crv = (double *) cr; - - /* - * compute the real part of C = A - z*I - use column ordering - * here since porting from lapack - */ - cr[0][0] = gsl_matrix_get(A, 0, 0) - GSL_REAL(*z); - cr[1][1] = gsl_matrix_get(A, 1, 1) - GSL_REAL(*z); - cr[0][1] = gsl_matrix_get(A, 1, 0); - cr[1][0] = gsl_matrix_get(A, 0, 1); - - /* compute the imaginary part */ - ci[0][0] = -GSL_IMAG(*z); - ci[0][1] = 0.0; - ci[1][0] = 0.0; - ci[1][1] = -GSL_IMAG(*z); - - cmax = 0.0; - icmax = 0; - - for (j = 0; j < 4; ++j) - { - if (fabs(crv[j]) + fabs(civ[j]) > cmax) - { - cmax = fabs(crv[j]) + fabs(civ[j]); - icmax = j; - } - } - - bval1 = gsl_vector_complex_get(b, 0); - bval2 = gsl_vector_complex_get(b, 1); - - /* if norm(C) < smin, use smin*I */ - if (cmax < smin) - { - bnorm = GSL_MAX(fabs(GSL_REAL(bval1)) + fabs(GSL_IMAG(bval1)), - fabs(GSL_REAL(bval2)) + fabs(GSL_IMAG(bval2))); - if (smin < 1.0 && bnorm > 1.0) - { - if (bnorm > GSL_NONSYMMV_BIGNUM*smin) - scale = 1.0 / bnorm; - } - - temp = scale / smin; - xval1 = gsl_complex_mul_real(bval1, temp); - xval2 = gsl_complex_mul_real(bval2, temp); - gsl_vector_complex_set(x, 0, xval1); - gsl_vector_complex_set(x, 1, xval2); - *xnorm = temp * bnorm; - *s = scale; - return; - } - - /* gaussian elimination with complete pivoting */ - ur11 = crv[icmax]; - ui11 = civ[icmax]; - cr21 = crv[ipivot[1][icmax]]; - ci21 = civ[ipivot[1][icmax]]; - ur12 = crv[ipivot[2][icmax]]; - ui12 = civ[ipivot[2][icmax]]; - cr22 = crv[ipivot[3][icmax]]; - ci22 = civ[ipivot[3][icmax]]; - - if (icmax == 0 || icmax == 3) - { - /* off diagonals of pivoted C are real */ - if (fabs(ur11) > fabs(ui11)) - { - temp = ui11 / ur11; - ur11r = 1.0 / (ur11 * (1.0 + temp*temp)); - ui11r = -temp * ur11r; - } - else - { - temp = ur11 / ui11; - ui11r = -1.0 / (ui11 * (1.0 + temp*temp)); - ur11r = -temp*ui11r; - } - lr21 = cr21 * ur11r; - li21 = cr21 * ui11r; - ur12s = ur12 * ur11r; - ui12s = ur12 * ui11r; - ur22 = cr22 - ur12 * lr21; - ui22 = ci22 - ur12 * li21; - } - else - { - /* diagonals of pivoted C are real */ - ur11r = 1.0 / ur11; - ui11r = 0.0; - lr21 = cr21 * ur11r; - li21 = ci21 * ur11r; - ur12s = ur12 * ur11r; - ui12s = ui12 * ur11r; - ur22 = cr22 - ur12 * lr21 + ui12 * li21; - ui22 = -ur12 * li21 - ui12 * lr21; - } - - u22abs = fabs(ur22) + fabs(ui22); - - /* if smaller pivot < smin, use smin */ - if (u22abs < smin) - { - ur22 = smin; - ui22 = 0.0; - } - - if (rswap[icmax]) - { - br2 = GSL_REAL(bval1); - bi2 = GSL_IMAG(bval1); - br1 = GSL_REAL(bval2); - bi1 = GSL_IMAG(bval2); - } - else - { - br1 = GSL_REAL(bval1); - bi1 = GSL_IMAG(bval1); - br2 = GSL_REAL(bval2); - bi2 = GSL_IMAG(bval2); - } - - br2 += li21*bi1 - lr21*br1; - bi2 -= li21*br1 + lr21*bi1; - bbnd = GSL_MAX((fabs(br1) + fabs(bi1)) * - (u22abs * (fabs(ur11r) + fabs(ui11r))), - fabs(br2) + fabs(bi2)); - if (bbnd > 1.0 && u22abs < 1.0) - { - if (bbnd >= GSL_NONSYMMV_BIGNUM*u22abs) - { - scale = 1.0 / bbnd; - br1 *= scale; - bi1 *= scale; - br2 *= scale; - bi2 *= scale; - } - } - - GSL_SET_COMPLEX(&b1, br2, bi2); - GSL_SET_COMPLEX(&b2, ur22, ui22); - xval2 = gsl_complex_div(b1, b2); - - xr1 = ur11r*br1 - ui11r*bi1 - ur12s*GSL_REAL(xval2) + ui12s*GSL_IMAG(xval2); - xi1 = ui11r*br1 + ur11r*bi1 - ui12s*GSL_REAL(xval2) - ur12s*GSL_IMAG(xval2); - GSL_SET_COMPLEX(&xval1, xr1, xi1); - - if (zswap[icmax]) - { - gsl_vector_complex_set(x, 0, xval2); - gsl_vector_complex_set(x, 1, xval1); - } - else - { - gsl_vector_complex_set(x, 0, xval1); - gsl_vector_complex_set(x, 1, xval2); - } - - *xnorm = GSL_MAX(fabs(GSL_REAL(xval1)) + fabs(GSL_IMAG(xval1)), - fabs(GSL_REAL(xval2)) + fabs(GSL_IMAG(xval2))); - - /* further scaling if norm(A) norm(X) > overflow */ - if (*xnorm > 1.0 && cmax > 1.0) - { - if (*xnorm > GSL_NONSYMMV_BIGNUM / cmax) - { - temp = cmax / GSL_NONSYMMV_BIGNUM; - gsl_blas_zdscal(temp, x); - *xnorm *= temp; - scale *= temp; - } - } - } /* if (N == 2) */ - - *s = scale; - } /* nonsymmv_solve_equation_z() */ - - /* nonsymmv_normalize_eigenvectors() Normalize eigenvectors so that their Euclidean norm is 1 --- 924,929 ---- diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/eigen/qrstep.c gsl-1.10/eigen/qrstep.c *** gsl-1.9/eigen/qrstep.c 2003-07-25 16:18:10.000000000 +0100 --- gsl-1.10/eigen/qrstep.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,7 **** /* remove off-diagonal elements which are neglegible compared with the neighboring diagonal elements */ ! inline static void chop_small_elements (const size_t N, const double d[], double sd[]) { double d_i = d[0]; --- 1,26 ---- + /* eigen/qrstep.c + * + * Copyright (C) 2007 Brian Gough + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or (at + * your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + /* remove off-diagonal elements which are neglegible compared with the neighboring diagonal elements */ ! static void chop_small_elements (const size_t N, const double d[], double sd[]) { double d_i = d[0]; *************** *** 60,72 **** double mu; ! if (dt >= 0) { ! mu = tb - (tab * tab) / (dt + hypot (dt, tab)); } else { ! mu = tb + (tab * tab) / ((-dt) + hypot (dt, tab)); } return mu; --- 79,95 ---- double mu; ! if (dt > 0) ! { ! mu = tb - tab * (tab / (dt + hypot (dt, tab))); ! } ! else if (dt == 0) { ! mu = tb - fabs(tab); } else { ! mu = tb + tab * (tab / ((-dt) + hypot (dt, tab))); } return mu; diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/eigen/schur.c gsl-1.10/eigen/schur.c *** gsl-1.9/eigen/schur.c 2007-02-20 11:11:35.000000000 +0000 --- gsl-1.10/eigen/schur.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 1,10 **** /* eigen/schur.c * ! * Copyright (C) 2006 Patrick Alken * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* eigen/schur.c * ! * Copyright (C) 2006, 2007 Patrick Alken * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 18,372 **** */ #include - #include - #include #include #include - #include - #include #include ! #include ! #include ! ! #include "schur.h" /* * This module contains some routines related to manipulating the * Schur form of a matrix which are needed by the eigenvalue solvers * * This file contains routines based on original code from LAPACK ! * which is distributed under the modified BSD license. The LAPACK ! * routine used is DLANV2. */ ! static inline void schur_standard_form(gsl_matrix *A, gsl_complex *eval1, ! gsl_complex *eval2, double *cs, ! double *sn); /* ! gsl_schur_standardize() ! Wrapper function for schur_standard_form - convert a 2-by-2 eigenvalue ! block to standard form and then update the Schur form and ! Schur vectors. ! ! Inputs: T - Schur form ! row - row of T of 2-by-2 block to be updated ! eval1 - where to store eigenvalue 1 ! eval2 - where to store eigenvalue 2 ! update_t - 1 = update the entire matrix T with the transformation ! 0 = do not update rest of T ! Z - (optional) if non-null, accumulate transformation */ ! void ! gsl_schur_standardize(gsl_matrix *T, size_t row, gsl_complex *eval1, ! gsl_complex *eval2, int update_t, gsl_matrix *Z) { ! const size_t N = T->size1; ! gsl_matrix_view m; ! double cs, sn; ! m = gsl_matrix_submatrix(T, row, row, 2, 2); ! schur_standard_form(&m.matrix, eval1, eval2, &cs, &sn); ! if (update_t) { ! gsl_vector_view xv, yv, v; /* ! * The above call to schur_standard_form transformed a 2-by-2 block ! * of T into upper triangular form via the transformation ! * ! * U = [ CS -SN ] ! * [ SN CS ] ! * ! * The original matrix T was ! * ! * T = [ T_{11} | T_{12} | T_{13} ] ! * [ 0* | A | T_{23} ] ! * [ 0 | 0* | T_{33} ] * ! * where 0* indicates all zeros except for possibly ! * one subdiagonal element next to A. * ! * After schur_standard_form, T looks like this: ! * ! * T = [ T_{11} | T_{12} | T_{13} ] ! * [ 0* | U^t A U | T_{23} ] ! * [ 0 | 0* | T_{33} ] ! * ! * since only the 2-by-2 block of A was changed. However, ! * in order to be able to back transform T at the end, ! * we need to apply the U transformation to the rest ! * of the matrix T since there is no way to apply a ! * similarity transformation to T and change only the ! * middle 2-by-2 block. In other words, let ! * ! * M = [ I 0 0 ] ! * [ 0 U 0 ] ! * [ 0 0 I ] ! * ! * and compute ! * ! * M^t T M = [ T_{11} | T_{12} U | T_{13} ] ! * [ U^t 0* | U^t A U | U^t T_{23} ] ! * [ 0 | 0* U | T_{33} ] ! * ! * So basically we need to apply the transformation U ! * to the i x 2 matrix T_{12} and the 2 x (n - i + 2) ! * matrix T_{23}, where i is the index of the top of A ! * in T. ! * ! * The BLAS routine drot() is suited for this. */ ! if (row < (N - 2)) { ! /* transform the 2 rows of T_{23} */ ! v = gsl_matrix_row(T, row); ! xv = gsl_vector_subvector(&v.vector, ! row + 2, ! N - row - 2); ! v = gsl_matrix_row(T, row + 1); ! yv = gsl_vector_subvector(&v.vector, ! row + 2, ! N - row - 2); ! gsl_blas_drot(&xv.vector, &yv.vector, cs, sn); } ! if (row > 0) { ! /* transform the 2 columns of T_{12} */ ! v = gsl_matrix_column(T, row); ! xv = gsl_vector_subvector(&v.vector, ! 0, ! row); ! v = gsl_matrix_column(T, row + 1); ! yv = gsl_vector_subvector(&v.vector, ! 0, ! row); ! gsl_blas_drot(&xv.vector, &yv.vector, cs, sn); } ! } /* if (update_t) */ ! if (Z) { ! gsl_vector_view xv, yv; /* ! * Accumulate the transformation in Z. Here, Z -> Z * M * ! * So: * ! * Z -> [ Z_{11} | Z_{12} U | Z_{13} ] ! * [ Z_{21} | Z_{22} U | Z_{23} ] ! * [ Z_{31} | Z_{32} U | Z_{33} ] * ! * So we just need to apply drot() to the 2 columns ! * starting at index 'row' */ ! xv = gsl_matrix_column(Z, row); ! yv = gsl_matrix_column(Z, row + 1); ! gsl_blas_drot(&xv.vector, &yv.vector, cs, sn); ! } /* if (Z) */ ! } /* gsl_schur_standardize() */ ! ! /******************************************************* ! * INTERNAL ROUTINES * ! *******************************************************/ ! /* ! schur_standard_form() ! Compute the Schur factorization of a real 2-by-2 matrix in ! standard form: ! ! [ A B ] = [ CS -SN ] [ T11 T12 ] [ CS SN ] ! [ C D ] [ SN CS ] [ T21 T22 ] [-SN CS ] ! ! where either: ! 1) T21 = 0 so that T11 and T22 are real eigenvalues of the matrix, or ! 2) T11 = T22 and T21*T12 < 0, so that T11 +/- sqrt(|T21*T12|) are ! complex conjugate eigenvalues ! ! Inputs: A - 2-by-2 matrix ! eval1 - where to store eigenvalue 1 ! eval2 - where to store eigenvalue 2 ! cs - where to store cosine parameter of rotation matrix ! sn - where to store sine parameter of rotation matrix ! Notes: based on LAPACK routine DLANV2 ! */ ! static inline void ! schur_standard_form(gsl_matrix *A, gsl_complex *eval1, gsl_complex *eval2, ! double *cs, double *sn) ! { ! double a, b, c, d; /* input matrix values */ ! double tmp; ! double p, z; ! double bcmax, bcmis, scale; ! double tau, sigma; ! double cs1, sn1; ! double aa, bb, cc, dd; ! double sab, sac; ! ! a = gsl_matrix_get(A, 0, 0); ! b = gsl_matrix_get(A, 0, 1); ! c = gsl_matrix_get(A, 1, 0); ! d = gsl_matrix_get(A, 1, 1); ! if (c == 0.0) ! { ! /* ! * matrix is already upper triangular - set rotation matrix ! * to the identity ! */ ! *cs = 1.0; ! *sn = 0.0; ! } ! else if (b == 0.0) ! { ! /* swap rows and columns to make it upper triangular */ ! *cs = 0.0; ! *sn = 1.0; ! tmp = d; ! d = a; ! a = tmp; ! b = -c; ! c = 0.0; ! } ! else if (((a - d) == 0.0) && (GSL_SIGN(b) != GSL_SIGN(c))) ! { ! /* the matrix has complex eigenvalues with a == d */ ! *cs = 1.0; ! *sn = 0.0; ! } ! else ! { ! tmp = a - d; ! p = 0.5 * tmp; ! bcmax = GSL_MAX(fabs(b), fabs(c)); ! bcmis = GSL_MIN(fabs(b), fabs(c)) * GSL_SIGN(b) * GSL_SIGN(c); ! scale = GSL_MAX(fabs(p), bcmax); ! z = (p / scale) * p + (bcmax / scale) * bcmis; ! ! if (z >= 4.0 * GSL_DBL_EPSILON) ! { ! /* real eigenvalues, compute a and d */ ! ! z = p + GSL_SIGN(p) * fabs(sqrt(scale) * sqrt(z)); ! a = d + z; ! d -= (bcmax / z) * bcmis; ! ! /* compute b and the rotation matrix */ ! ! tau = gsl_hypot(c, z); ! *cs = z / tau; ! *sn = c / tau; ! b -= c; ! c = 0.0; } else { ! /* ! * complex eigenvalues, or real (almost) equal eigenvalues - ! * make diagonal elements equal ! */ ! ! sigma = b + c; ! tau = gsl_hypot(sigma, tmp); ! *cs = sqrt(0.5 * (1.0 + fabs(sigma) / tau)); ! *sn = -(p / (tau * (*cs))) * GSL_SIGN(sigma); ! ! /* ! * Compute [ AA BB ] = [ A B ] [ CS -SN ] ! * [ CC DD ] [ C D ] [ SN CS ] ! */ ! aa = a * (*cs) + b * (*sn); ! bb = -a * (*sn) + b * (*cs); ! cc = c * (*cs) + d * (*sn); ! dd = -c * (*sn) + d * (*cs); ! ! /* ! * Compute [ A B ] = [ CS SN ] [ AA BB ] ! * [ C D ] [-SN CS ] [ CC DD ] ! */ ! a = aa * (*cs) + cc * (*sn); ! b = bb * (*cs) + dd * (*sn); ! c = -aa * (*sn) + cc * (*cs); ! d = -bb * (*sn) + dd * (*cs); ! tmp = 0.5 * (a + d); ! a = d = tmp; ! if (c != 0.0) { ! if (b != 0.0) ! { ! if (GSL_SIGN(b) == GSL_SIGN(c)) ! { ! /* ! * real eigenvalues: reduce to upper triangular ! * form ! */ ! sab = sqrt(fabs(b)); ! sac = sqrt(fabs(c)); ! p = GSL_SIGN(c) * fabs(sab * sac); ! tau = 1.0 / sqrt(fabs(b + c)); ! a = tmp + p; ! d = tmp - p; ! b -= c; ! c = 0.0; ! ! cs1 = sab * tau; ! sn1 = sac * tau; ! tmp = (*cs) * cs1 - (*sn) * sn1; ! *sn = (*cs) * sn1 + (*sn) * cs1; ! *cs = tmp; ! } ! } ! else ! { ! b = -c; ! c = 0.0; ! tmp = *cs; ! *cs = -(*sn); ! *sn = tmp; ! } } } - } ! /* set eigenvalues */ ! GSL_SET_REAL(eval1, a); ! GSL_SET_REAL(eval2, d); ! if (c == 0.0) ! { ! GSL_SET_IMAG(eval1, 0.0); ! GSL_SET_IMAG(eval2, 0.0); ! } ! else ! { ! tmp = sqrt(fabs(b) * fabs(c)); ! GSL_SET_IMAG(eval1, tmp); ! GSL_SET_IMAG(eval2, -tmp); ! } ! /* set new matrix elements */ ! gsl_matrix_set(A, 0, 0, a); ! gsl_matrix_set(A, 0, 1, b); ! gsl_matrix_set(A, 1, 0, c); ! gsl_matrix_set(A, 1, 1, d); ! } /* schur_standard_form() */ --- 18,798 ---- */ #include #include #include #include ! #include ! #include ! #include ! #include ! #include /* * This module contains some routines related to manipulating the * Schur form of a matrix which are needed by the eigenvalue solvers * * This file contains routines based on original code from LAPACK ! * which is distributed under the modified BSD license. */ ! #define GSL_SCHUR_SMLNUM (2.0 * GSL_DBL_MIN) ! #define GSL_SCHUR_BIGNUM ((1.0 - GSL_DBL_EPSILON) / GSL_SCHUR_SMLNUM) /* ! gsl_schur_gen_eigvals() ! Compute the eigenvalues of a 2-by-2 generalized block. ! ! Inputs: A - 2-by-2 matrix ! B - 2-by-2 upper triangular matrix ! wr1 - (output) see notes ! wr2 - (output) see notes ! wi - (output) see notes ! scale1 - (output) see notes ! scale2 - (output) see notes ! ! Return: success ! ! Notes: ! ! 1) ! ! If the block contains real eigenvalues, then wi is set to 0, ! and wr1, wr2, scale1, and scale2 are set such that: ! ! eval1 = wr1 * scale1 ! eval2 = wr2 * scale2 ! ! If the block contains complex eigenvalues, then wr1, wr2, scale1, ! scale2, and wi are set such that: ! ! wr1 = wr2 = scale1 * Re(eval) ! wi = scale1 * Im(eval) ! ! wi is always non-negative ! ! 2) This routine is based on LAPACK DLAG2 */ ! int ! gsl_schur_gen_eigvals(const gsl_matrix *A, const gsl_matrix *B, double *wr1, ! double *wr2, double *wi, double *scale1, ! double *scale2) { ! const double safemin = GSL_DBL_MIN * 1.0e2; ! const double safemax = 1.0 / safemin; ! const double rtmin = sqrt(safemin); ! const double rtmax = 1.0 / rtmin; ! double anorm, bnorm; ! double ascale, bscale, bsize; ! double s1, s2; ! double A11, A12, A21, A22; ! double B11, B12, B22; ! double binv11, binv22; ! double bmin; ! double as11, as12, as22, abi22; ! double pp, qq, shift, ss, discr, r; ! ! /* scale A */ ! anorm = GSL_MAX(GSL_MAX(fabs(gsl_matrix_get(A, 0, 0)) + ! fabs(gsl_matrix_get(A, 1, 0)), ! fabs(gsl_matrix_get(A, 0, 1)) + ! fabs(gsl_matrix_get(A, 1, 1))), ! safemin); ! ascale = 1.0 / anorm; ! A11 = ascale * gsl_matrix_get(A, 0, 0); ! A12 = ascale * gsl_matrix_get(A, 0, 1); ! A21 = ascale * gsl_matrix_get(A, 1, 0); ! A22 = ascale * gsl_matrix_get(A, 1, 1); ! ! /* perturb B if necessary to ensure non-singularity */ ! B11 = gsl_matrix_get(B, 0, 0); ! B12 = gsl_matrix_get(B, 0, 1); ! B22 = gsl_matrix_get(B, 1, 1); ! bmin = rtmin * GSL_MAX(fabs(B11), ! GSL_MAX(fabs(B12), GSL_MAX(fabs(B22), rtmin))); ! if (fabs(B11) < bmin) ! B11 = GSL_SIGN(B11) * bmin; ! if (fabs(B22) < bmin) ! B22 = GSL_SIGN(B22) * bmin; ! ! /* scale B */ ! bnorm = GSL_MAX(fabs(B11), GSL_MAX(fabs(B12) + fabs(B22), safemin)); ! bsize = GSL_MAX(fabs(B11), fabs(B22)); ! bscale = 1.0 / bsize; ! B11 *= bscale; ! B12 *= bscale; ! B22 *= bscale; ! ! /* compute larger eigenvalue */ ! ! binv11 = 1.0 / B11; ! binv22 = 1.0 / B22; ! s1 = A11 * binv11; ! s2 = A22 * binv22; ! if (fabs(s1) <= fabs(s2)) ! { ! as12 = A12 - s1 * B12; ! as22 = A22 - s1 * B22; ! ss = A21 * (binv11 * binv22); ! abi22 = as22 * binv22 - ss * B12; ! pp = 0.5 * abi22; ! shift = s1; ! } ! else ! { ! as12 = A12 - s2 * B12; ! as11 = A11 - s2 * B11; ! ss = A21 * (binv11 * binv22); ! abi22 = -ss * B12; ! pp = 0.5 * (as11 * binv11 + abi22); ! shift = s2; ! } ! ! qq = ss * as12; ! if (fabs(pp * rtmin) >= 1.0) ! { ! discr = (rtmin * pp) * (rtmin * pp) + qq * safemin; ! r = sqrt(fabs(discr)) * rtmax; ! } ! else if (pp * pp + fabs(qq) <= safemin) ! { ! discr = (rtmax * pp) * (rtmax * pp) + qq * safemax; ! r = sqrt(fabs(discr)) * rtmin; ! } ! else ! { ! discr = pp * pp + qq; ! r = sqrt(fabs(discr)); ! } ! if (discr >= 0.0 || r == 0.0) ! { ! double sum = pp + GSL_SIGN(pp) * r; ! double diff = pp - GSL_SIGN(pp) * r; ! double wbig = shift + sum; ! double wsmall = shift + diff; ! ! /* compute smaller eigenvalue */ ! ! if (0.5 * fabs(wbig) > GSL_MAX(fabs(wsmall), safemin)) ! { ! double wdet = (A11*A22 - A12*A21) * (binv11 * binv22); ! wsmall = wdet / wbig; ! } ! /* choose (real) eigenvalue closest to 2,2 element of AB^{-1} for wr1 */ ! if (pp > abi22) ! { ! *wr1 = GSL_MIN(wbig, wsmall); ! *wr2 = GSL_MAX(wbig, wsmall); ! } ! else ! { ! *wr1 = GSL_MAX(wbig, wsmall); ! *wr2 = GSL_MIN(wbig, wsmall); ! } ! *wi = 0.0; ! } ! else { ! /* complex eigenvalues */ ! *wr1 = shift + pp; ! *wr2 = *wr1; ! *wi = r; ! } ! ! /* compute scaling */ ! { ! const double fuzzy1 = 1.0 + 1.0e-5; ! double c1, c2, c3, c4, c5; ! double wabs, wsize, wscale; ! ! c1 = bsize * (safemin * GSL_MAX(1.0, ascale)); ! c2 = safemin * GSL_MAX(1.0, bnorm); ! c3 = bsize * safemin; ! if (ascale <= 1.0 && bsize <= 1.0) ! c4 = GSL_MIN(1.0, (ascale / safemin) * bsize); ! else ! c4 = 1.0; ! ! if (ascale <= 1.0 || bsize <= 1.0) ! c5 = GSL_MIN(1.0, ascale * bsize); ! else ! c5 = 1.0; ! ! /* scale first eigenvalue */ ! wabs = fabs(*wr1) + fabs(*wi); ! wsize = GSL_MAX(safemin, ! GSL_MAX(c1, ! GSL_MAX(fuzzy1 * (wabs*c2 + c3), ! GSL_MIN(c4, 0.5 * GSL_MAX(wabs, c5))))); ! if (wsize != 1.0) ! { ! wscale = 1.0 / wsize; ! if (wsize > 1.0) ! { ! *scale1 = (GSL_MAX(ascale, bsize) * wscale) * ! GSL_MIN(ascale, bsize); ! } ! else ! { ! *scale1 = (GSL_MIN(ascale, bsize) * wscale) * ! GSL_MAX(ascale, bsize); ! } ! ! *wr1 *= wscale; ! if (*wi != 0.0) ! { ! *wi *= wscale; ! *wr2 = *wr1; ! *scale2 = *scale1; ! } ! } ! else ! { ! *scale1 = ascale * bsize; ! *scale2 = *scale1; ! } ! ! /* scale second eigenvalue if real */ ! if (*wi == 0.0) ! { ! wsize = GSL_MAX(safemin, ! GSL_MAX(c1, ! GSL_MAX(fuzzy1 * (fabs(*wr2) * c2 + c3), ! GSL_MIN(c4, 0.5 * GSL_MAX(fabs(*wr2), c5))))); ! if (wsize != 1.0) ! { ! wscale = 1.0 / wsize; ! if (wsize > 1.0) ! { ! *scale2 = (GSL_MAX(ascale, bsize) * wscale) * ! GSL_MIN(ascale, bsize); ! } ! else ! { ! *scale2 = (GSL_MIN(ascale, bsize) * wscale) * ! GSL_MAX(ascale, bsize); ! } ! ! *wr2 *= wscale; ! } ! else ! { ! *scale2 = ascale * bsize; ! } ! } ! } ! ! return GSL_SUCCESS; ! } /* gsl_schur_gen_eigvals() */ ! ! /* ! gsl_schur_solve_equation() ! ! Solve the equation which comes up in the back substitution ! when computing eigenvectors corresponding to real eigenvalues. ! The equation that is solved is: ! ! (ca*A - z*D)*x = s*b ! ! where ! ! A is n-by-n with n = 1 or 2 ! D is a n-by-n diagonal matrix ! b and x are n-by-1 real vectors ! s is a scaling factor set by this function to prevent overflow in x ! ! Inputs: ca - coefficient multiplying A ! A - square matrix (n-by-n) ! z - real scalar (eigenvalue) ! d1 - (1,1) element in diagonal matrix D ! d2 - (2,2) element in diagonal matrix D ! b - right hand side vector ! x - (output) where to store solution ! s - (output) scale factor ! xnorm - (output) infinity norm of X ! smin - lower bound on singular values of A - if ca*A - z*D ! is less than this value, we'll use smin*I instead. ! This value should be a safe distance above underflow. ! ! Return: success ! ! Notes: 1) A and b are not changed on output ! 2) Based on lapack routine DLALN2 ! */ ! ! int ! gsl_schur_solve_equation(double ca, const gsl_matrix *A, double z, ! double d1, double d2, const gsl_vector *b, ! gsl_vector *x, double *s, double *xnorm, ! double smin) ! { ! size_t N = A->size1; ! double bnorm; ! double scale = 1.0; ! ! if (N == 1) ! { ! double c, /* denominator */ ! cnorm; /* |c| */ ! ! /* we have a 1-by-1 (real) scalar system to solve */ ! ! c = ca * gsl_matrix_get(A, 0, 0) - z * d1; ! cnorm = fabs(c); ! ! if (cnorm < smin) ! { ! /* set c = smin*I */ ! c = smin; ! cnorm = smin; ! } ! ! /* check scaling for x = b / c */ ! bnorm = fabs(gsl_vector_get(b, 0)); ! if (cnorm < 1.0 && bnorm > 1.0) ! { ! if (bnorm > GSL_SCHUR_BIGNUM*cnorm) ! scale = 1.0 / bnorm; ! } ! ! /* compute x */ ! gsl_vector_set(x, 0, gsl_vector_get(b, 0) * scale / c); ! *xnorm = fabs(gsl_vector_get(x, 0)); ! } /* if (N == 1) */ ! else ! { ! double cr[2][2]; ! double *crv; ! double cmax; ! size_t icmax, j; ! double bval1, bval2; ! double ur11, ur12, ur22, ur11r; ! double cr21, cr22; ! double lr21; ! double b1, b2, bbnd; ! double x1, x2; ! double temp; ! size_t ipivot[4][4] = { { 0, 1, 2, 3 }, ! { 1, 0, 3, 2 }, ! { 2, 3, 0, 1 }, ! { 3, 2, 1, 0 } }; ! int rswap[4] = { 0, 1, 0, 1 }; ! int zswap[4] = { 0, 0, 1, 1 }; /* ! * we have a 2-by-2 real system to solve: * ! * ( ca * [ A11 A12 ] - z * [ D1 0 ] ) [ x1 ] = [ b1 ] ! * ( [ A21 A22 ] [ 0 D2 ] ) [ x2 ] [ b2 ] * ! * (z real) */ ! crv = (double *) cr; ! ! /* ! * compute the real part of C = ca*A - z*D - use column ordering ! * here since porting from lapack ! */ ! cr[0][0] = ca * gsl_matrix_get(A, 0, 0) - z * d1; ! cr[1][1] = ca * gsl_matrix_get(A, 1, 1) - z * d2; ! cr[0][1] = ca * gsl_matrix_get(A, 1, 0); ! cr[1][0] = ca * gsl_matrix_get(A, 0, 1); ! ! /* find the largest element in C */ ! cmax = 0.0; ! icmax = 0; ! for (j = 0; j < 4; ++j) { ! if (fabs(crv[j]) > cmax) ! { ! cmax = fabs(crv[j]); ! icmax = j; ! } ! } ! bval1 = gsl_vector_get(b, 0); ! bval2 = gsl_vector_get(b, 1); ! /* if norm(C) < smin, use smin*I */ ! if (cmax < smin) ! { ! bnorm = GSL_MAX(fabs(bval1), fabs(bval2)); ! if (smin < 1.0 && bnorm > 1.0) ! { ! if (bnorm > GSL_SCHUR_BIGNUM*smin) ! scale = 1.0 / bnorm; ! } ! temp = scale / smin; ! gsl_vector_set(x, 0, temp * bval1); ! gsl_vector_set(x, 1, temp * bval2); ! *xnorm = temp * bnorm; ! *s = scale; ! return GSL_SUCCESS; } ! /* gaussian elimination with complete pivoting */ ! ur11 = crv[icmax]; ! cr21 = crv[ipivot[1][icmax]]; ! ur12 = crv[ipivot[2][icmax]]; ! cr22 = crv[ipivot[3][icmax]]; ! ur11r = 1.0 / ur11; ! lr21 = ur11r * cr21; ! ur22 = cr22 - ur12 * lr21; ! ! /* if smaller pivot < smin, use smin */ ! if (fabs(ur22) < smin) ! ur22 = smin; ! ! if (rswap[icmax]) { ! b1 = bval2; ! b2 = bval1; ! } ! else ! { ! b1 = bval1; ! b2 = bval2; ! } ! b2 -= lr21 * b1; ! bbnd = GSL_MAX(fabs(b1 * (ur22 * ur11r)), fabs(b2)); ! if (bbnd > 1.0 && fabs(ur22) < 1.0) ! { ! if (bbnd >= GSL_SCHUR_BIGNUM * fabs(ur22)) ! scale = 1.0 / bbnd; ! } ! x2 = (b2 * scale) / ur22; ! x1 = (scale * b1) * ur11r - x2 * (ur11r * ur12); ! if (zswap[icmax]) ! { ! gsl_vector_set(x, 0, x2); ! gsl_vector_set(x, 1, x1); ! } ! else ! { ! gsl_vector_set(x, 0, x1); ! gsl_vector_set(x, 1, x2); ! } ! ! *xnorm = GSL_MAX(fabs(x1), fabs(x2)); ! /* further scaling if norm(A) norm(X) > overflow */ ! if (*xnorm > 1.0 && cmax > 1.0) ! { ! if (*xnorm > GSL_SCHUR_BIGNUM / cmax) ! { ! temp = cmax / GSL_SCHUR_BIGNUM; ! gsl_blas_dscal(temp, x); ! *xnorm *= temp; ! scale *= temp; ! } } ! } /* if (N == 2) */ ! *s = scale; ! return GSL_SUCCESS; ! } /* gsl_schur_solve_equation() */ ! ! /* ! gsl_schur_solve_equation_z() ! ! Solve the equation which comes up in the back substitution ! when computing eigenvectors corresponding to complex eigenvalues. ! The equation that is solved is: ! ! (ca*A - z*D)*x = s*b ! ! where ! ! A is n-by-n with n = 1 or 2 ! D is a n-by-n diagonal matrix ! b and x are n-by-1 complex vectors ! s is a scaling factor set by this function to prevent overflow in x ! ! Inputs: ca - coefficient multiplying A ! A - square matrix (n-by-n) ! z - complex scalar (eigenvalue) ! d1 - (1,1) element in diagonal matrix D ! d2 - (2,2) element in diagonal matrix D ! b - right hand side vector ! x - (output) where to store solution ! s - (output) scale factor ! xnorm - (output) infinity norm of X ! smin - lower bound on singular values of A - if ca*A - z*D ! is less than this value, we'll use smin*I instead. ! This value should be a safe distance above underflow. ! ! Notes: 1) A and b are not changed on output ! 2) Based on lapack routine DLALN2 ! */ ! ! int ! gsl_schur_solve_equation_z(double ca, const gsl_matrix *A, gsl_complex *z, ! double d1, double d2, ! const gsl_vector_complex *b, ! gsl_vector_complex *x, double *s, double *xnorm, ! double smin) ! { ! size_t N = A->size1; ! double scale = 1.0; ! double bnorm; ! ! if (N == 1) { ! double cr, /* denominator */ ! ci, ! cnorm; /* |c| */ ! gsl_complex bval, c, xval, tmp; ! ! /* we have a 1-by-1 (complex) scalar system to solve */ ! ! /* c = ca*a - z*d1 */ ! cr = ca * gsl_matrix_get(A, 0, 0) - GSL_REAL(*z) * d1; ! ci = -GSL_IMAG(*z) * d1; ! cnorm = fabs(cr) + fabs(ci); ! ! if (cnorm < smin) ! { ! /* set c = smin*I */ ! cr = smin; ! ci = 0.0; ! cnorm = smin; ! } ! ! /* check scaling for x = b / c */ ! bval = gsl_vector_complex_get(b, 0); ! bnorm = fabs(GSL_REAL(bval)) + fabs(GSL_IMAG(bval)); ! if (cnorm < 1.0 && bnorm > 1.0) ! { ! if (bnorm > GSL_SCHUR_BIGNUM*cnorm) ! scale = 1.0 / bnorm; ! } ! ! /* compute x */ ! GSL_SET_COMPLEX(&tmp, scale*GSL_REAL(bval), scale*GSL_IMAG(bval)); ! GSL_SET_COMPLEX(&c, cr, ci); ! xval = gsl_complex_div(tmp, c); ! ! gsl_vector_complex_set(x, 0, xval); ! ! *xnorm = fabs(GSL_REAL(xval)) + fabs(GSL_IMAG(xval)); ! } /* if (N == 1) */ ! else ! { ! double cr[2][2], ci[2][2]; ! double *civ, *crv; ! double cmax; ! gsl_complex bval1, bval2; ! gsl_complex xval1, xval2; ! double xr1, xi1; ! size_t icmax; ! size_t j; ! double temp; ! double ur11, ur12, ur22, ui11, ui12, ui22, ur11r, ui11r; ! double ur12s, ui12s; ! double u22abs; ! double lr21, li21; ! double cr21, cr22, ci21, ci22; ! double br1, bi1, br2, bi2, bbnd; ! gsl_complex b1, b2; ! size_t ipivot[4][4] = { { 0, 1, 2, 3 }, ! { 1, 0, 3, 2 }, ! { 2, 3, 0, 1 }, ! { 3, 2, 1, 0 } }; ! int rswap[4] = { 0, 1, 0, 1 }; ! int zswap[4] = { 0, 0, 1, 1 }; /* ! * complex 2-by-2 system: * ! * ( ca * [ A11 A12 ] - z * [ D1 0 ] ) [ X1 ] = [ B1 ] ! * ( [ A21 A22 ] [ 0 D2] ) [ X2 ] [ B2 ] * ! * (z complex) * ! * where the X and B values are complex. */ ! civ = (double *) ci; ! crv = (double *) cr; ! /* ! * compute the real part of C = ca*A - z*D - use column ordering ! * here since porting from lapack ! */ ! cr[0][0] = ca*gsl_matrix_get(A, 0, 0) - GSL_REAL(*z)*d1; ! cr[1][1] = ca*gsl_matrix_get(A, 1, 1) - GSL_REAL(*z)*d2; ! cr[0][1] = ca*gsl_matrix_get(A, 1, 0); ! cr[1][0] = ca*gsl_matrix_get(A, 0, 1); ! ! /* compute the imaginary part */ ! ci[0][0] = -GSL_IMAG(*z) * d1; ! ci[0][1] = 0.0; ! ci[1][0] = 0.0; ! ci[1][1] = -GSL_IMAG(*z) * d2; ! cmax = 0.0; ! icmax = 0; ! for (j = 0; j < 4; ++j) ! { ! if (fabs(crv[j]) + fabs(civ[j]) > cmax) ! { ! cmax = fabs(crv[j]) + fabs(civ[j]); ! icmax = j; ! } ! } ! bval1 = gsl_vector_complex_get(b, 0); ! bval2 = gsl_vector_complex_get(b, 1); ! /* if norm(C) < smin, use smin*I */ ! if (cmax < smin) ! { ! bnorm = GSL_MAX(fabs(GSL_REAL(bval1)) + fabs(GSL_IMAG(bval1)), ! fabs(GSL_REAL(bval2)) + fabs(GSL_IMAG(bval2))); ! if (smin < 1.0 && bnorm > 1.0) ! { ! if (bnorm > GSL_SCHUR_BIGNUM*smin) ! scale = 1.0 / bnorm; ! } ! temp = scale / smin; ! xval1 = gsl_complex_mul_real(bval1, temp); ! xval2 = gsl_complex_mul_real(bval2, temp); ! gsl_vector_complex_set(x, 0, xval1); ! gsl_vector_complex_set(x, 1, xval2); ! *xnorm = temp * bnorm; ! *s = scale; ! return GSL_SUCCESS; ! } ! /* gaussian elimination with complete pivoting */ ! ur11 = crv[icmax]; ! ui11 = civ[icmax]; ! cr21 = crv[ipivot[1][icmax]]; ! ci21 = civ[ipivot[1][icmax]]; ! ur12 = crv[ipivot[2][icmax]]; ! ui12 = civ[ipivot[2][icmax]]; ! cr22 = crv[ipivot[3][icmax]]; ! ci22 = civ[ipivot[3][icmax]]; ! ! if (icmax == 0 || icmax == 3) ! { ! /* off diagonals of pivoted C are real */ ! if (fabs(ur11) > fabs(ui11)) ! { ! temp = ui11 / ur11; ! ur11r = 1.0 / (ur11 * (1.0 + temp*temp)); ! ui11r = -temp * ur11r; ! } ! else ! { ! temp = ur11 / ui11; ! ui11r = -1.0 / (ui11 * (1.0 + temp*temp)); ! ur11r = -temp*ui11r; ! } ! lr21 = cr21 * ur11r; ! li21 = cr21 * ui11r; ! ur12s = ur12 * ur11r; ! ui12s = ur12 * ui11r; ! ur22 = cr22 - ur12 * lr21; ! ui22 = ci22 - ur12 * li21; } else { ! /* diagonals of pivoted C are real */ ! ur11r = 1.0 / ur11; ! ui11r = 0.0; ! lr21 = cr21 * ur11r; ! li21 = ci21 * ur11r; ! ur12s = ur12 * ur11r; ! ui12s = ui12 * ur11r; ! ur22 = cr22 - ur12 * lr21 + ui12 * li21; ! ui22 = -ur12 * li21 - ui12 * lr21; ! } ! u22abs = fabs(ur22) + fabs(ui22); ! /* if smaller pivot < smin, use smin */ ! if (u22abs < smin) ! { ! ur22 = smin; ! ui22 = 0.0; ! } ! ! if (rswap[icmax]) ! { ! br2 = GSL_REAL(bval1); ! bi2 = GSL_IMAG(bval1); ! br1 = GSL_REAL(bval2); ! bi1 = GSL_IMAG(bval2); ! } ! else ! { ! br1 = GSL_REAL(bval1); ! bi1 = GSL_IMAG(bval1); ! br2 = GSL_REAL(bval2); ! bi2 = GSL_IMAG(bval2); ! } ! ! br2 += li21*bi1 - lr21*br1; ! bi2 -= li21*br1 + lr21*bi1; ! bbnd = GSL_MAX((fabs(br1) + fabs(bi1)) * ! (u22abs * (fabs(ur11r) + fabs(ui11r))), ! fabs(br2) + fabs(bi2)); ! if (bbnd > 1.0 && u22abs < 1.0) ! { ! if (bbnd >= GSL_SCHUR_BIGNUM*u22abs) { ! scale = 1.0 / bbnd; ! br1 *= scale; ! bi1 *= scale; ! br2 *= scale; ! bi2 *= scale; } } ! GSL_SET_COMPLEX(&b1, br2, bi2); ! GSL_SET_COMPLEX(&b2, ur22, ui22); ! xval2 = gsl_complex_div(b1, b2); ! ! xr1 = ur11r*br1 - ui11r*bi1 - ur12s*GSL_REAL(xval2) + ui12s*GSL_IMAG(xval2); ! xi1 = ui11r*br1 + ur11r*bi1 - ui12s*GSL_REAL(xval2) - ur12s*GSL_IMAG(xval2); ! GSL_SET_COMPLEX(&xval1, xr1, xi1); ! if (zswap[icmax]) ! { ! gsl_vector_complex_set(x, 0, xval2); ! gsl_vector_complex_set(x, 1, xval1); ! } ! else ! { ! gsl_vector_complex_set(x, 0, xval1); ! gsl_vector_complex_set(x, 1, xval2); ! } ! *xnorm = GSL_MAX(fabs(GSL_REAL(xval1)) + fabs(GSL_IMAG(xval1)), ! fabs(GSL_REAL(xval2)) + fabs(GSL_IMAG(xval2))); ! ! /* further scaling if norm(A) norm(X) > overflow */ ! if (*xnorm > 1.0 && cmax > 1.0) ! { ! if (*xnorm > GSL_SCHUR_BIGNUM / cmax) ! { ! temp = cmax / GSL_SCHUR_BIGNUM; ! gsl_blas_zdscal(temp, x); ! *xnorm *= temp; ! scale *= temp; ! } ! } ! } /* if (N == 2) */ ! *s = scale; ! return GSL_SUCCESS; ! } /* gsl_schur_solve_equation_z() */ Only in gsl-1.9/eigen: schur.h diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/eigen/sort.c gsl-1.10/eigen/sort.c *** gsl-1.9/eigen/sort.c 2007-01-24 15:30:55.000000000 +0000 --- gsl-1.10/eigen/sort.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 1,10 **** ! /* eigen/eigen_sort.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- ! /* eigen/sort.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2006, 2007 Gerard Jungman, Patrick Alken * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 173,183 **** gsl_matrix_complex * evec, gsl_eigen_sort_t sort_type) { ! if (evec->size1 != evec->size2) { GSL_ERROR ("eigenvector matrix must be square", GSL_ENOTSQR); } ! else if (eval->size != evec->size1) { GSL_ERROR ("eigenvalues must match eigenvector matrix", GSL_EBADLEN); } --- 173,183 ---- gsl_matrix_complex * evec, gsl_eigen_sort_t sort_type) { ! if (evec && (evec->size1 != evec->size2)) { GSL_ERROR ("eigenvector matrix must be square", GSL_ENOTSQR); } ! else if (evec && (eval->size != evec->size1)) { GSL_ERROR ("eigenvalues must match eigenvector matrix", GSL_EBADLEN); } *************** *** 226,231 **** --- 226,342 ---- gsl_vector_complex_swap_elements (eval, i, k); /* swap eigenvectors */ + if (evec) + gsl_matrix_complex_swap_columns (evec, i, k); + } + } + + return GSL_SUCCESS; + } + } + + int + gsl_eigen_gensymmv_sort (gsl_vector * eval, gsl_matrix * evec, + gsl_eigen_sort_t sort_type) + { + int s; + + s = gsl_eigen_symmv_sort(eval, evec, sort_type); + + return s; + } + + int + gsl_eigen_genhermv_sort (gsl_vector * eval, gsl_matrix_complex * evec, + gsl_eigen_sort_t sort_type) + { + int s; + + s = gsl_eigen_hermv_sort(eval, evec, sort_type); + + return s; + } + + int + gsl_eigen_genv_sort (gsl_vector_complex * alpha, gsl_vector * beta, + gsl_matrix_complex * evec, gsl_eigen_sort_t sort_type) + { + if (evec->size1 != evec->size2) + { + GSL_ERROR ("eigenvector matrix must be square", GSL_ENOTSQR); + } + else if (alpha->size != evec->size1 || beta->size != evec->size1) + { + GSL_ERROR ("eigenvalues must match eigenvector matrix", GSL_EBADLEN); + } + else + { + const size_t N = alpha->size; + size_t i; + + for (i = 0; i < N - 1; i++) + { + size_t j; + size_t k = i; + + gsl_complex ak = gsl_vector_complex_get (alpha, i); + double bk = gsl_vector_get(beta, i); + gsl_complex ek; + + if (bk < GSL_DBL_EPSILON) + { + GSL_SET_COMPLEX(&ek, + GSL_SIGN(GSL_REAL(ak)) ? GSL_POSINF : GSL_NEGINF, + GSL_SIGN(GSL_IMAG(ak)) ? GSL_POSINF : GSL_NEGINF); + } + else + ek = gsl_complex_div_real(ak, bk); + + /* search for something to swap */ + for (j = i + 1; j < N; j++) + { + int test; + const gsl_complex aj = gsl_vector_complex_get (alpha, j); + double bj = gsl_vector_get(beta, j); + gsl_complex ej; + + if (bj < GSL_DBL_EPSILON) + { + GSL_SET_COMPLEX(&ej, + GSL_SIGN(GSL_REAL(aj)) ? GSL_POSINF : GSL_NEGINF, + GSL_SIGN(GSL_IMAG(aj)) ? GSL_POSINF : GSL_NEGINF); + } + else + ej = gsl_complex_div_real(aj, bj); + + switch (sort_type) + { + case GSL_EIGEN_SORT_ABS_ASC: + test = (gsl_complex_abs (ej) < gsl_complex_abs (ek)); + break; + case GSL_EIGEN_SORT_ABS_DESC: + test = (gsl_complex_abs (ej) > gsl_complex_abs (ek)); + break; + case GSL_EIGEN_SORT_VAL_ASC: + case GSL_EIGEN_SORT_VAL_DESC: + default: + GSL_ERROR ("invalid sort type", GSL_EINVAL); + } + + if (test) + { + k = j; + ek = ej; + } + } + + if (k != i) + { + /* swap eigenvalues */ + gsl_vector_complex_swap_elements (alpha, i, k); + gsl_vector_swap_elements (beta, i, k); + + /* swap eigenvectors */ gsl_matrix_complex_swap_columns (evec, i, k); } } diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/eigen/symm.c gsl-1.10/eigen/symm.c *** gsl-1.9/eigen/symm.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/eigen/symm.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* eigen/symm.c * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* eigen/symm.c * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/eigen/symmv.c gsl-1.10/eigen/symmv.c *** gsl-1.9/eigen/symmv.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/eigen/symmv.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* eigen/symmv.c * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* eigen/symmv.c * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/eigen/test.c gsl-1.10/eigen/test.c *** gsl-1.9/eigen/test.c 2007-02-15 11:52:03.000000000 +0000 --- gsl-1.10/eigen/test.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* eigen/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* eigen/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2006, 2007 Gerard Jungman, Patrick Alken, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 29,125 **** #include #include #include ! gsl_matrix * ! create_hilbert_matrix(int size) { ! int i, j; ! gsl_matrix * m = gsl_matrix_alloc(size, size); ! for(i=0; i #include #include + #include + #include + #include + #include + #include + #include + #include + + /****************************************** + * common test code * + ******************************************/ ! double ! chop_subnormals (double x) { ! /* Chop any subnormal values */ ! return fabs(x) < GSL_DBL_MIN ? 0 : x; } ! void ! create_random_symm_matrix(gsl_matrix *m, gsl_rng *r, int lower, int upper) { ! size_t i, j; ! ! for (i = 0; i < m->size1; ++i) ! { ! for (j = i; j < m->size2; ++j) ! { ! double x = gsl_rng_uniform(r) * (upper - lower) + lower; ! gsl_matrix_set(m, i, j, x); ! gsl_matrix_set(m, j, i, x); ! } } ! } /* create_random_symm_matrix() */ ! void ! create_random_herm_matrix(gsl_matrix_complex *m, gsl_rng *r, int lower, ! int upper) { ! size_t i, j; ! ! for (i = 0; i < m->size1; ++i) ! { ! for (j = i; j < m->size2; ++j) ! { ! gsl_complex z; ! ! GSL_REAL(z) = gsl_rng_uniform(r) * (upper - lower) + lower; ! ! if (i == j) ! GSL_IMAG(z) = 0.0; ! else ! GSL_IMAG(z) = gsl_rng_uniform(r) * (upper - lower) + lower; ! ! gsl_matrix_complex_set(m, i, j, z); ! gsl_matrix_complex_set(m, j, i, gsl_complex_conjugate(z)); ! } ! } ! } /* create_random_herm_matrix() */ ! ! /* with r \in (0,1) if m_{ij} = r^{|i - j|} then m is positive definite */ ! void ! create_random_posdef_matrix(gsl_matrix *m, gsl_rng *r) ! { ! size_t i, j; ! double x = gsl_rng_uniform(r); ! ! for (i = 0; i < m->size1; ++i) ! { ! for (j = i; j < m->size2; ++j) ! { ! double a = pow(x, (double) (j - i)); ! ! gsl_matrix_set(m, i, j, a); ! gsl_matrix_set(m, j, i, a); ! } ! } ! } /* create_random_posdef_matrix() */ ! ! void ! create_random_complex_posdef_matrix(gsl_matrix_complex *m, gsl_rng *r, ! gsl_vector_complex *work) ! { ! const size_t N = m->size1; ! size_t i, j; ! double x, y; ! gsl_complex z; ! gsl_complex tau; ! ! GSL_SET_IMAG(&z, 0.0); ! ! /* make a positive diagonal matrix */ ! gsl_matrix_complex_set_zero(m); ! for (i = 0; i < N; ++i) ! { ! x = gsl_rng_uniform(r); ! GSL_SET_REAL(&z, x); ! gsl_matrix_complex_set(m, i, i, z); ! } ! ! /* now generate random householder reflections and form P D P^H */ ! for (i = 0; i < N; ++i) ! { ! /* form complex vector */ ! for (j = 0; j < N; ++j) ! { ! x = 2.0 * gsl_rng_uniform(r) - 1.0; ! y = 2.0 * gsl_rng_uniform(r) - 1.0; ! GSL_SET_COMPLEX(&z, x, y); ! gsl_vector_complex_set(work, j, z); ! } ! ! tau = gsl_linalg_complex_householder_transform(work); ! gsl_linalg_complex_householder_hm(tau, work, m); ! gsl_linalg_complex_householder_mh(gsl_complex_conjugate(tau), work, m); ! } ! } /* create_random_complex_posdef_matrix() */ ! ! void ! create_random_nonsymm_matrix(gsl_matrix *m, gsl_rng *r, int lower, ! int upper) ! { ! size_t i, j; ! ! for (i = 0; i < m->size1; ++i) ! { ! for (j = 0; j < m->size2; ++j) ! { ! gsl_matrix_set(m, ! i, ! j, ! gsl_rng_uniform(r) * (upper - lower) + lower); ! } ! } ! } /* create_random_nonsymm_matrix() */ ! ! /* test if A Z = Q S */ ! void ! test_eigen_schur(const gsl_matrix * A, const gsl_matrix * S, ! const gsl_matrix * Q, const gsl_matrix * Z, ! size_t count, const char * desc, ! const char * desc2) ! { ! const size_t N = A->size1; ! size_t i, j; ! ! gsl_matrix * T1 = gsl_matrix_alloc(N, N); ! gsl_matrix * T2 = gsl_matrix_alloc(N, N); ! ! /* compute T1 = A Z */ ! gsl_blas_dgemm(CblasNoTrans, CblasNoTrans, 1.0, A, Z, 0.0, T1); ! ! /* compute T2 = Q S */ ! gsl_blas_dgemm(CblasNoTrans, CblasNoTrans, 1.0, Q, S, 0.0, T2); ! ! for (i = 0; i < N; ++i) ! { ! for (j = 0; j < N; ++j) ! { ! double x = gsl_matrix_get(T1, i, j); ! double y = gsl_matrix_get(T2, i, j); ! ! gsl_test_abs(x, y, 1.0e8 * GSL_DBL_EPSILON, ! "%s(N=%u,cnt=%u), %s, schur(%d,%d)", desc, N, count, desc2, i, j); ! } ! } ! ! gsl_matrix_free (T1); ! gsl_matrix_free (T2); ! } /* test_eigen_schur() */ ! ! void ! test_eigenvalues_real (const gsl_vector *eval, const gsl_vector * eval2, ! const char * desc, const char * desc2) ! { ! const size_t N = eval->size; ! size_t i; ! ! double emax = 0; ! ! /* check eigenvalues */ ! for (i = 0; i < N; i++) ! { ! double ei = gsl_vector_get (eval, i); ! if (fabs(ei) > emax) emax = fabs(ei); ! } ! ! for (i = 0; i < N; i++) ! { ! double ei = gsl_vector_get (eval, i); ! double e2i = gsl_vector_get (eval2, i); ! e2i = chop_subnormals(e2i); ! gsl_test_abs(ei, e2i, emax * 1e8 * GSL_DBL_EPSILON, ! "%s, direct eigenvalue(%d), %s", ! desc, i, desc2); } } ! void ! test_eigenvalues_complex (const gsl_vector_complex * eval, ! const gsl_vector_complex * eval2, ! const char * desc, const char * desc2) { ! const size_t N = eval->size; ! size_t i; ! ! for (i = 0; i < N; i++) ! { ! gsl_complex ei = gsl_vector_complex_get (eval, i); ! gsl_complex e2i = gsl_vector_complex_get (eval2, i); ! gsl_test_rel(GSL_REAL(ei), GSL_REAL(e2i), 10*N*GSL_DBL_EPSILON, ! "%s, direct eigenvalue(%d) real, %s", ! desc, i, desc2); ! gsl_test_rel(GSL_IMAG(ei), GSL_IMAG(e2i), 10*N*GSL_DBL_EPSILON, ! "%s, direct eigenvalue(%d) imag, %s", ! desc, i, desc2); } } + /****************************************** + * symm test code * + ******************************************/ + void ! test_eigen_symm_results (const gsl_matrix * A, ! const gsl_vector * eval, ! const gsl_matrix * evec, ! size_t count, ! const char * desc, ! const char * desc2) { ! const size_t N = A->size1; ! size_t i, j; ! double emax = 0; gsl_vector * x = gsl_vector_alloc(N); gsl_vector * y = gsl_vector_alloc(N); /* check eigenvalues */ + for (i = 0; i < N; i++) + { + double ei = gsl_vector_get (eval, i); + if (fabs(ei) > emax) emax = fabs(ei); + } for (i = 0; i < N; i++) { double ei = gsl_vector_get (eval, i); gsl_vector_const_view vi = gsl_matrix_const_column(evec, i); gsl_vector_memcpy(x, &vi.vector); ! /* compute y = A x (should = lambda v) */ ! gsl_blas_dgemv (CblasNoTrans, 1.0, A, x, 0.0, y); for (j = 0; j < N; j++) { double xj = gsl_vector_get (x, j); double yj = gsl_vector_get (y, j); ! double eixj = chop_subnormals(ei * xj); ! gsl_test_abs(yj, eixj, emax * 1e8 * GSL_DBL_EPSILON, "%s, eigenvalue(%d,%d), %s", desc, i, j, desc2); } } *************** *** 151,199 **** gsl_vector_free(y); } - void ! test_eigenvalues (size_t N, const gsl_vector *eval, const gsl_vector * eval2, ! const char * desc, const char * desc2) { ! size_t i; ! for (i = 0; i < N; i++) ! { ! double ei = gsl_vector_get (eval, i); ! double e2i = gsl_vector_get (eval2, i); ! gsl_test_rel(ei, e2i, 10*N*GSL_DBL_EPSILON, ! "%s, direct eigenvalue(%d), %s", ! desc, i, desc2); ! } ! } void ! test_eigenvalues_complex (size_t N, const gsl_vector_complex *eval, ! const gsl_vector_complex * eval2, ! const char * desc, const char * desc2) { ! size_t i; ! for (i = 0; i < N; i++) { ! gsl_complex ei = gsl_vector_complex_get (eval, i); ! gsl_complex e2i = gsl_vector_complex_get (eval2, i); ! gsl_test_rel(GSL_REAL(ei), GSL_REAL(e2i), 10*N*GSL_DBL_EPSILON, ! "%s, direct eigenvalue(%d) real, %s", ! desc, i, desc2); ! gsl_test_rel(GSL_IMAG(ei), GSL_IMAG(e2i), 10*N*GSL_DBL_EPSILON, ! "%s, direct eigenvalue(%d) imag, %s", ! desc, i, desc2); } ! } void ! test_eigen_complex_results (size_t N, const gsl_matrix_complex * m, ! const gsl_vector * eval, ! const gsl_matrix_complex * evec, ! const char * desc, ! const char * desc2) { ! size_t i,j; gsl_vector_complex * x = gsl_vector_complex_alloc(N); gsl_vector_complex * y = gsl_vector_complex_alloc(N); --- 318,467 ---- gsl_vector_free(y); } void ! test_eigen_symm_matrix(const gsl_matrix * m, size_t count, ! const char * desc) { ! const size_t N = m->size1; ! gsl_matrix * A = gsl_matrix_alloc(N, N); ! gsl_vector * eval = gsl_vector_alloc(N); ! gsl_vector * evalv = gsl_vector_alloc(N); ! gsl_vector * x = gsl_vector_alloc(N); ! gsl_vector * y = gsl_vector_alloc(N); ! gsl_matrix * evec = gsl_matrix_alloc(N, N); ! gsl_eigen_symm_workspace * w = gsl_eigen_symm_alloc(N); ! gsl_eigen_symmv_workspace * wv = gsl_eigen_symmv_alloc(N); ! ! gsl_matrix_memcpy(A, m); ! ! gsl_eigen_symmv(A, evalv, evec, wv); ! test_eigen_symm_results(m, evalv, evec, count, desc, "unsorted"); ! ! gsl_matrix_memcpy(A, m); ! ! gsl_eigen_symm(A, eval, w); ! ! /* sort eval and evalv */ ! gsl_vector_memcpy(x, eval); ! gsl_vector_memcpy(y, evalv); ! gsl_sort_vector(x); ! gsl_sort_vector(y); ! test_eigenvalues_real(y, x, desc, "unsorted"); ! ! gsl_eigen_symmv_sort(evalv, evec, GSL_EIGEN_SORT_VAL_ASC); ! test_eigen_symm_results(m, evalv, evec, count, desc, "val/asc"); ! ! gsl_eigen_symmv_sort(evalv, evec, GSL_EIGEN_SORT_VAL_DESC); ! test_eigen_symm_results(m, evalv, evec, count, desc, "val/desc"); ! ! gsl_eigen_symmv_sort(evalv, evec, GSL_EIGEN_SORT_ABS_ASC); ! test_eigen_symm_results(m, evalv, evec, count, desc, "abs/asc"); ! ! gsl_eigen_symmv_sort(evalv, evec, GSL_EIGEN_SORT_ABS_DESC); ! test_eigen_symm_results(m, evalv, evec, count, desc, "abs/desc"); ! ! gsl_matrix_free(A); ! gsl_vector_free(eval); ! gsl_vector_free(evalv); ! gsl_vector_free(x); ! gsl_vector_free(y); ! gsl_matrix_free(evec); ! gsl_eigen_symm_free(w); ! gsl_eigen_symmv_free(wv); ! } /* test_eigen_symm_matrix() */ void ! test_eigen_symm(void) { ! size_t N_max = 20; ! size_t n, i; ! gsl_rng *r = gsl_rng_alloc(gsl_rng_default); ! ! for (n = 1; n <= N_max; ++n) { ! gsl_matrix * A = gsl_matrix_alloc(n, n); ! ! for (i = 0; i < 5; ++i) ! { ! create_random_symm_matrix(A, r, -10, 10); ! test_eigen_symm_matrix(A, i, "symm random"); ! } ! ! gsl_matrix_free(A); } ! ! gsl_rng_free(r); ! ! { ! double dat1[] = { 0, 0, -1, 0, ! 0, 1, 0, 1, ! -1, 0, 0, 0, ! 0, 1, 0, 0 }; ! double dat2[] = { 1, 0, 0, 0, ! 0, 2, 0, 0, ! 0, 0, 3, 0, ! 0, 0, 0, 4 }; ! gsl_matrix_view m; ! ! m = gsl_matrix_view_array (dat1, 4, 4); ! test_eigen_symm_matrix(&m.matrix, 0, "symm(4)"); ! ! m = gsl_matrix_view_array (dat2, 4, 4); ! test_eigen_symm_matrix(&m.matrix, 0, "symm(4) diag"); ! } ! ! { ! double dat[27*27] = { ! 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, ! 0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1, ! 0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0, ! 0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, ! 0,0,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0, ! 0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, ! 0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, ! 0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, ! 0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, ! 0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, ! 0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, ! 0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, ! 0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, ! 0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, ! 0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, ! 0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, ! 0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, ! 0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, ! 0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, ! 0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, ! 0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, ! 0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, ! 0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, ! 0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, ! 0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, ! 0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, ! 0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ! }; ! ! gsl_matrix_view m; ! m = gsl_matrix_view_array (dat, 27, 27); ! test_eigen_symm_matrix(&m.matrix, 0, "symm(27)"); ! }; ! ! } /* test_eigen_symm() */ ! ! /****************************************** ! * herm test code * ! ******************************************/ void ! test_eigen_herm_results (const gsl_matrix_complex * A, ! const gsl_vector * eval, ! const gsl_matrix_complex * evec, ! size_t count, ! const char * desc, ! const char * desc2) { ! const size_t N = A->size1; ! size_t i, j; gsl_vector_complex * x = gsl_vector_complex_alloc(N); gsl_vector_complex * y = gsl_vector_complex_alloc(N); *************** *** 203,212 **** for (i = 0; i < N; i++) { double ei = gsl_vector_get (eval, i); ! gsl_vector_complex_const_view vi = gsl_matrix_complex_const_column(evec, i); gsl_vector_complex_memcpy(x, &vi.vector); /* compute y = m x (should = lambda v) */ ! gsl_blas_zgemv (CblasNoTrans, GSL_COMPLEX_ONE, m, x, GSL_COMPLEX_ZERO, y); for (j = 0; j < N; j++) { --- 471,481 ---- for (i = 0; i < N; i++) { double ei = gsl_vector_get (eval, i); ! gsl_vector_complex_const_view vi = ! gsl_matrix_complex_const_column(evec, i); gsl_vector_complex_memcpy(x, &vi.vector); /* compute y = m x (should = lambda v) */ ! gsl_blas_zgemv (CblasNoTrans, GSL_COMPLEX_ONE, A, x, GSL_COMPLEX_ZERO, y); for (j = 0; j < N; j++) { *************** *** 245,260 **** gsl_vector_complex_free(x); gsl_vector_complex_free(y); ! } void ! test_eigen_nonsymm_results (size_t N, const gsl_matrix * m, const gsl_vector_complex * eval, const gsl_matrix_complex * evec, const char * desc, const char * desc2) { size_t i,j; gsl_vector_complex * x = gsl_vector_complex_alloc(N); gsl_vector_complex * y = gsl_vector_complex_alloc(N); --- 514,628 ---- gsl_vector_complex_free(x); gsl_vector_complex_free(y); ! } /* test_eigen_herm_results() */ void ! test_eigen_herm_matrix(const gsl_matrix_complex * m, size_t count, ! const char * desc) ! { ! const size_t N = m->size1; ! gsl_matrix_complex * A = gsl_matrix_complex_alloc(N, N); ! gsl_vector * eval = gsl_vector_alloc(N); ! gsl_vector * evalv = gsl_vector_alloc(N); ! gsl_vector * x = gsl_vector_alloc(N); ! gsl_vector * y = gsl_vector_alloc(N); ! gsl_matrix_complex * evec = gsl_matrix_complex_alloc(N, N); ! gsl_eigen_herm_workspace * w = gsl_eigen_herm_alloc(N); ! gsl_eigen_hermv_workspace * wv = gsl_eigen_hermv_alloc(N); ! ! gsl_matrix_complex_memcpy(A, m); ! ! gsl_eigen_hermv(A, evalv, evec, wv); ! test_eigen_herm_results(m, evalv, evec, count, desc, "unsorted"); ! ! gsl_matrix_complex_memcpy(A, m); ! ! gsl_eigen_herm(A, eval, w); ! ! /* sort eval and evalv */ ! gsl_vector_memcpy(x, eval); ! gsl_vector_memcpy(y, evalv); ! gsl_sort_vector(x); ! gsl_sort_vector(y); ! test_eigenvalues_real(y, x, desc, "unsorted"); ! ! gsl_eigen_hermv_sort(evalv, evec, GSL_EIGEN_SORT_VAL_ASC); ! test_eigen_herm_results(m, evalv, evec, count, desc, "val/asc"); ! ! gsl_eigen_hermv_sort(evalv, evec, GSL_EIGEN_SORT_VAL_DESC); ! test_eigen_herm_results(m, evalv, evec, count, desc, "val/desc"); ! ! gsl_eigen_hermv_sort(evalv, evec, GSL_EIGEN_SORT_ABS_ASC); ! test_eigen_herm_results(m, evalv, evec, count, desc, "abs/asc"); ! ! gsl_eigen_hermv_sort(evalv, evec, GSL_EIGEN_SORT_ABS_DESC); ! test_eigen_herm_results(m, evalv, evec, count, desc, "abs/desc"); ! ! gsl_matrix_complex_free(A); ! gsl_vector_free(eval); ! gsl_vector_free(evalv); ! gsl_vector_free(x); ! gsl_vector_free(y); ! gsl_matrix_complex_free(evec); ! gsl_eigen_herm_free(w); ! gsl_eigen_hermv_free(wv); ! } /* test_eigen_herm_matrix() */ ! ! void ! test_eigen_herm(void) ! { ! size_t N_max = 20; ! size_t n, i; ! gsl_rng *r = gsl_rng_alloc(gsl_rng_default); ! ! for (n = 1; n <= N_max; ++n) ! { ! gsl_matrix_complex * A = gsl_matrix_complex_alloc(n, n); ! ! for (i = 0; i < 5; ++i) ! { ! create_random_herm_matrix(A, r, -10, 10); ! test_eigen_herm_matrix(A, i, "herm random"); ! } ! ! gsl_matrix_complex_free(A); ! } ! ! gsl_rng_free(r); ! ! { ! double dat1[] = { 0,0, 0,0, -1,0, 0,0, ! 0,0, 1,0, 0,0, 1,0, ! -1,0, 0,0, 0,0, 0,0, ! 0,0, 1,0, 0,0, 0,0 }; ! double dat2[] = { 1,0, 0,0, 0,0, 0,0, ! 0,0, 2,0, 0,0, 0,0, ! 0,0, 0,0, 3,0, 0,0, ! 0,0, 0,0, 0,0, 4,0 }; ! gsl_matrix_complex_view m; ! ! m = gsl_matrix_complex_view_array (dat1, 4, 4); ! test_eigen_herm_matrix(&m.matrix, 0, "herm(4)"); ! ! m = gsl_matrix_complex_view_array (dat2, 4, 4); ! test_eigen_herm_matrix(&m.matrix, 1, "herm(4) diag"); ! } ! } /* test_eigen_herm() */ ! ! /****************************************** ! * nonsymm test code * ! ******************************************/ ! ! void ! test_eigen_nonsymm_results (const gsl_matrix * m, const gsl_vector_complex * eval, const gsl_matrix_complex * evec, + size_t count, const char * desc, const char * desc2) { size_t i,j; + size_t N = m->size1; gsl_vector_complex * x = gsl_vector_complex_alloc(N); gsl_vector_complex * y = gsl_vector_complex_alloc(N); *************** *** 279,285 **** /* check that eigenvector is normalized */ gsl_test_rel(norm, 1.0, N * GSL_DBL_EPSILON, ! "%s, normalized(%d), %s", desc, i, desc2); gsl_vector_complex_memcpy(x, &vi.vector); --- 647,653 ---- /* check that eigenvector is normalized */ gsl_test_rel(norm, 1.0, N * GSL_DBL_EPSILON, ! "nonsymm(N=%u,cnt=%u), %s, normalized(%d), %s", N, count, desc, i, desc2); gsl_vector_complex_memcpy(x, &vi.vector); *************** *** 298,306 **** /* use abs here in case the values are close to 0 */ gsl_test_abs(GSL_REAL(yj), GSL_REAL(xj), 1e8*GSL_DBL_EPSILON, ! "%s, eigenvalue(%d,%d), real, %s", desc, i, j, desc2); gsl_test_abs(GSL_IMAG(yj), GSL_IMAG(xj), 1e8*GSL_DBL_EPSILON, ! "%s, eigenvalue(%d,%d), imag, %s", desc, i, j, desc2); } } --- 666,674 ---- /* use abs here in case the values are close to 0 */ gsl_test_abs(GSL_REAL(yj), GSL_REAL(xj), 1e8*GSL_DBL_EPSILON, ! "nonsymm(N=%u,cnt=%u), %s, eigenvalue(%d,%d), real, %s", N, count, desc, i, j, desc2); gsl_test_abs(GSL_IMAG(yj), GSL_IMAG(xj), 1e8*GSL_DBL_EPSILON, ! "nonsymm(N=%u,cnt=%u), %s, eigenvalue(%d,%d), imag, %s", N, count, desc, i, j, desc2); } } *************** *** 310,622 **** } void ! test_eigen_nonsymm_Z(size_t N, const gsl_matrix * m, gsl_matrix * Z, ! gsl_matrix * T, const char * desc) { ! size_t i, j; ! gsl_matrix * T1 = gsl_matrix_alloc(N, N); ! gsl_matrix * T2 = gsl_matrix_alloc(N, N); ! /* zero lower triangle of T */ ! gsl_linalg_hessenberg_set_zero(T); ! /* compute T1 = m Z */ ! gsl_blas_dgemm(CblasNoTrans, CblasNoTrans, 1.0, m, Z, 0.0, T1); ! /* compute T2 = Z T */ ! gsl_blas_dgemm(CblasNoTrans, CblasNoTrans, 1.0, Z, T, 0.0, T2); ! for (i = 0; i < N; ++i) { ! for (j = 0; j < N; ++j) { ! double x = gsl_matrix_get(T1, i, j); ! double y = gsl_matrix_get(T2, i, j); ! gsl_test_rel(x, y, 1.0e8 * GSL_DBL_EPSILON, ! "%s, schur(%d,%d)", desc, i, j); } } ! gsl_matrix_free (T1); ! gsl_matrix_free (T2); ! } void ! test_eigen_symm(const char * desc, const gsl_matrix * m) { ! size_t N = m->size1; ! gsl_matrix * A = gsl_matrix_alloc(N, N); ! gsl_matrix * evec = gsl_matrix_alloc(N, N); ! gsl_vector * eval = gsl_vector_alloc(N); ! gsl_vector * eval2 = gsl_vector_alloc(N); ! gsl_eigen_symm_workspace * w1 = gsl_eigen_symm_alloc (N); ! gsl_eigen_symmv_workspace * w2 = gsl_eigen_symmv_alloc (N); ! gsl_matrix_memcpy(A, m); ! gsl_eigen_symmv(A, eval, evec, w2); ! test_eigen_results (N, m, eval, evec, desc, "unsorted"); ! gsl_matrix_memcpy(A, m); ! gsl_eigen_symm(A, eval2, w1); ! test_eigenvalues (N, eval, eval2, desc, "unsorted"); ! gsl_eigen_symmv_sort (eval, evec, GSL_EIGEN_SORT_VAL_ASC); ! test_eigen_results (N, m, eval, evec, desc, "val/asc"); ! gsl_eigen_symmv_sort (eval, evec, GSL_EIGEN_SORT_VAL_DESC); ! test_eigen_results (N, m, eval, evec, desc, "val/desc"); ! gsl_eigen_symmv_sort (eval, evec, GSL_EIGEN_SORT_ABS_ASC); ! test_eigen_results (N, m, eval, evec, desc, "abs/asc"); ! gsl_eigen_symmv_sort (eval, evec, GSL_EIGEN_SORT_ABS_DESC); ! test_eigen_results (N, m, eval, evec, desc, "abs/desc"); ! gsl_eigen_symm_free (w1); ! gsl_eigen_symmv_free (w2); ! gsl_matrix_free(A); ! gsl_matrix_free(evec); ! gsl_vector_free(eval); ! gsl_vector_free(eval2); } - void ! test_eigen_herm(const char * desc, const gsl_matrix_complex * m) { ! size_t N = m->size1; ! gsl_matrix_complex * A = gsl_matrix_complex_alloc(N, N); ! gsl_matrix_complex * evec = gsl_matrix_complex_alloc(N, N); ! gsl_vector * eval = gsl_vector_alloc(N); ! gsl_vector * eval2 = gsl_vector_alloc(N); ! gsl_eigen_herm_workspace * w1 = gsl_eigen_herm_alloc (N); ! gsl_eigen_hermv_workspace * w2 = gsl_eigen_hermv_alloc (N); ! gsl_matrix_complex_memcpy(A, m); ! gsl_eigen_hermv(A, eval, evec, w2); ! test_eigen_complex_results (N, m, eval, evec, desc, "unsorted"); ! gsl_matrix_complex_memcpy(A, m); ! gsl_eigen_herm(A, eval2, w1); ! test_eigenvalues (N, eval, eval2, desc, "unsorted"); ! gsl_eigen_hermv_sort (eval, evec, GSL_EIGEN_SORT_VAL_ASC); ! test_eigen_complex_results (N, m, eval, evec, desc, "val/asc"); ! gsl_eigen_hermv_sort (eval, evec, GSL_EIGEN_SORT_VAL_DESC); ! test_eigen_complex_results (N, m, eval, evec, desc, "val/desc"); ! gsl_eigen_hermv_sort (eval, evec, GSL_EIGEN_SORT_ABS_ASC); ! test_eigen_complex_results (N, m, eval, evec, desc, "abs/asc"); ! gsl_eigen_hermv_sort (eval, evec, GSL_EIGEN_SORT_ABS_DESC); ! test_eigen_complex_results (N, m, eval, evec, desc, "abs/desc"); ! gsl_eigen_herm_free (w1); ! gsl_eigen_hermv_free (w2); ! gsl_matrix_complex_free(A); ! gsl_matrix_complex_free(evec); ! gsl_vector_free(eval); ! gsl_vector_free(eval2); ! } void ! test_eigen_nonsymm(const char * desc, const gsl_matrix * m) { ! size_t N = m->size1; ! gsl_matrix * A = gsl_matrix_alloc(N, N); ! gsl_matrix * Z = gsl_matrix_alloc(N, N); ! gsl_matrix_complex * evec = gsl_matrix_complex_alloc(N, N); ! gsl_vector_complex * eval = gsl_vector_complex_alloc(N); ! gsl_eigen_nonsymmv_workspace * wv = gsl_eigen_nonsymmv_alloc (N); ! /* ! * calculate eigenvalues and eigenvectors - it is sufficient to test ! * gsl_eigen_nonsymmv() since that function calls gsl_eigen_nonsymm() ! * for the eigenvalues ! */ ! gsl_matrix_memcpy(A, m); ! gsl_eigen_nonsymmv(A, eval, evec, wv); ! test_eigen_nonsymm_results (N, m, eval, evec, desc, "unsorted"); ! /* test sort routines */ ! gsl_eigen_nonsymmv_sort (eval, evec, GSL_EIGEN_SORT_ABS_ASC); ! test_eigen_nonsymm_results (N, m, eval, evec, desc, "abs/asc"); ! gsl_eigen_nonsymmv_sort (eval, evec, GSL_EIGEN_SORT_ABS_DESC); ! test_eigen_nonsymm_results (N, m, eval, evec, desc, "abs/desc"); ! /* test Schur vectors */ ! gsl_matrix_memcpy(A, m); ! gsl_eigen_nonsymmv_Z(A, eval, evec, Z, wv); ! test_eigen_nonsymm_Z(N, m, Z, A, desc); ! gsl_eigen_nonsymmv_free (wv); ! gsl_matrix_free(A); ! gsl_matrix_free(Z); ! gsl_matrix_complex_free(evec); ! gsl_vector_complex_free(eval); } void ! test_eigen_jacobi(const char * desc, const gsl_matrix * m) { ! size_t N = m->size1; ! unsigned int nrot; ! gsl_matrix * A = gsl_matrix_alloc(N, N); ! gsl_matrix * evec = gsl_matrix_alloc(N, N); ! gsl_vector * eval = gsl_vector_alloc(N); ! gsl_matrix_memcpy(A, m); ! gsl_eigen_jacobi(A, eval, evec, 1000, &nrot); ! gsl_eigen_symmv_sort(eval, evec, GSL_EIGEN_SORT_VAL_ASC); ! test_eigen_results (N, m, eval, evec, desc, ""); ! gsl_matrix_free(A); ! gsl_matrix_free(evec); ! gsl_vector_free(eval); ! } ! int test_invert_jacobi(void) { ! int s = 0; ! int i, j; ! gsl_matrix * hminv = gsl_matrix_alloc(10, 10); ! gsl_matrix * id = gsl_matrix_alloc(10, 10); ! ! /* 10x10 Hilbert matrix */ ! gsl_matrix * hm = create_hilbert_matrix(10); ! gsl_eigen_invert_jacobi(hm, hminv, 1000); ! ! /* gsl_linalg_matmult(hm, hminv, id); */ ! gsl_blas_dgemm (CblasNoTrans, CblasNoTrans, 1.0, hm, hminv, 0.0, id); ! ! for(i=0; i<10; i++) { ! for(j=0; j<10; j++) { ! double delta_ij = ( i == j ? 1.0 : 0.0 ); ! double id_ij = gsl_matrix_get(id, i, j); ! ! int rs = ( fabs(id_ij - delta_ij) > 5.0e-3 ); ! s += rs; ! gsl_test_abs(id_ij, delta_ij, 5e-3, "invert hilbert(10) %d,%d", i,j); } - } ! gsl_test (s, "gsl_eigen_jacobi_invert hilbert(10)"); ! gsl_matrix_free(hm); ! gsl_matrix_free(hminv); ! gsl_matrix_free(id); ! return s; ! } ! int main() { ! gsl_ieee_env_setup (); ! { ! double r[] = { 0, 0, -1, 0, ! 0, 1, 0, 1, ! -1, 0, 0, 0, ! 0, 1, 0, 0 }; ! gsl_matrix_view s4 = gsl_matrix_view_array (r, 4, 4); ! test_eigen_symm("symm(4)", &s4.matrix); ! } ! ! { ! double c[] = { 0,0, 0,0, -1,0, 0,0, ! 0,0, 1,0, 0,0, 1,0, ! -1,0, 0,0, 0,0, 0,0, ! 0,0, 1,0, 0,0, 0,0 }; ! gsl_matrix_complex_view h4 = gsl_matrix_complex_view_array (c, 4, 4); ! test_eigen_herm("herm(4)", &h4.matrix); ! } ! { ! double r[] = { 0, 1, 1, 1, ! 1, 1, 1, 1, ! 0, 0, 0, 0, ! 0, 0, 0, 0 }; ! gsl_matrix_view n4 = gsl_matrix_view_array (r, 4, 4); ! test_eigen_nonsymm("nonsymm(4)", &n4.matrix); ! } ! { ! double r[] = { 1, 0, 0, 0, ! 0, 2, 0, 0, ! 0, 0, 3, 0, ! 0, 0, 0, 4 }; ! gsl_matrix_view s4 = gsl_matrix_view_array (r, 4, 4); ! test_eigen_symm("symm(4) diag", &s4.matrix); ! } ! ! { ! double c[] = { 1,0, 0,0, 0,0, 0,0, ! 0,0, 2,0, 0,0, 0,0, ! 0,0, 0,0, 3,0, 0,0, ! 0,0, 0,0, 0,0, 4,0 }; ! gsl_matrix_complex_view h4 = gsl_matrix_complex_view_array (c, 4, 4); ! test_eigen_herm("herm(4) diag", &h4.matrix); ! } ! { ! double r[] = { 1, 1, 0, 1, ! 1, 1, 1, 1, ! 1, 1, 1, 1, ! 0, 1, 0, 0 }; ! gsl_matrix_view n4 = gsl_matrix_view_array (r, 4, 4); ! test_eigen_nonsymm("nonsymm(4) degen", &n4.matrix); ! } ! { ! gsl_matrix *rs10 = create_random_symm_matrix (10); ! test_eigen_symm("symm(10)", rs10); ! gsl_matrix_free (rs10); ! } ! { ! gsl_matrix_complex *rh10 = create_random_herm_matrix (10); ! test_eigen_herm("herm(10)", rh10); ! gsl_matrix_complex_free (rh10); ! } { ! gsl_matrix *rn10 = create_random_nonsymm_matrix (10); ! test_eigen_nonsymm("nonsymm(10)", rn10); ! gsl_matrix_free (rn10); ! } ! #if 0 /* Deprecated functions */ ! { ! gsl_matrix *h5 = create_hilbert_matrix (5); ! test_eigen_jacobi("hilbert(5)", h5); ! test_invert_jacobi(); ! gsl_matrix_free (h5); } ! #endif exit (gsl_test_summary()); } --- 678,1305 ---- } void ! test_eigen_nonsymm_matrix(const gsl_matrix * m, size_t count, ! const char * desc, ! gsl_eigen_nonsymmv_workspace *w) { ! const size_t N = m->size1; ! gsl_matrix * A = gsl_matrix_alloc(N, N); ! gsl_matrix * Z = gsl_matrix_alloc(N, N); ! gsl_matrix_complex * evec = gsl_matrix_complex_alloc(N, N); ! gsl_vector_complex * eval = gsl_vector_complex_alloc(N); ! /* ! * calculate eigenvalues and eigenvectors - it is sufficient to ! * test gsl_eigen_nonsymmv() since that function calls ! * gsl_eigen_nonsymm() for the eigenvalues ! */ ! gsl_matrix_memcpy(A, m); ! gsl_eigen_nonsymmv(A, eval, evec, w); ! test_eigen_nonsymm_results (m, eval, evec, count, desc, "unsorted"); ! /* test sort routines */ ! gsl_eigen_nonsymmv_sort (eval, evec, GSL_EIGEN_SORT_ABS_ASC); ! test_eigen_nonsymm_results (m, eval, evec, count, desc, "abs/asc"); ! gsl_eigen_nonsymmv_sort (eval, evec, GSL_EIGEN_SORT_ABS_DESC); ! test_eigen_nonsymm_results (m, eval, evec, count, desc, "abs/desc"); ! /* test Schur vectors */ ! gsl_matrix_memcpy(A, m); ! gsl_eigen_nonsymmv_Z(A, eval, evec, Z, w); ! gsl_linalg_hessenberg_set_zero(A); ! test_eigen_schur(m, A, Z, Z, count, "nonsymm", desc); ! gsl_matrix_free(A); ! gsl_matrix_free(Z); ! gsl_matrix_complex_free(evec); ! gsl_vector_complex_free(eval); ! } ! ! void ! test_eigen_nonsymm(void) ! { ! size_t N_max = 20; ! size_t n, i; ! gsl_rng *r = gsl_rng_alloc(gsl_rng_default); ! ! for (n = 1; n <= N_max; ++n) { ! gsl_matrix * m = gsl_matrix_alloc(n, n); ! gsl_eigen_nonsymmv_workspace * w = gsl_eigen_nonsymmv_alloc(n); ! ! for (i = 0; i < 5; ++i) { ! create_random_nonsymm_matrix(m, r, -10, 10); ! ! gsl_eigen_nonsymm_params(1, 0, w->nonsymm_workspace_p); ! test_eigen_nonsymm_matrix(m, i, "random, unbalanced", w); ! gsl_eigen_nonsymm_params(1, 1, w->nonsymm_workspace_p); ! test_eigen_nonsymm_matrix(m, i, "random, balanced", w); } + + gsl_matrix_free(m); + gsl_eigen_nonsymmv_free(w); } ! gsl_rng_free(r); ! ! { ! double dat1[] = { 0, 1, 1, 1, ! 1, 1, 1, 1, ! 0, 0, 0, 0, ! 0, 0, 0, 0 }; ! double dat2[] = { 1, 1, 0, 1, ! 1, 1, 1, 1, ! 1, 1, 1, 1, ! 0, 1, 0, 0 }; ! gsl_matrix_view v; ! gsl_eigen_nonsymmv_workspace * w = gsl_eigen_nonsymmv_alloc(4); ! ! v = gsl_matrix_view_array (dat1, 4, 4); ! test_eigen_nonsymm_matrix(&v.matrix, 0, "integer", w); ! ! v = gsl_matrix_view_array (dat2, 4, 4); ! test_eigen_nonsymm_matrix(&v.matrix, 1, "integer", w); ! ! gsl_eigen_nonsymmv_free(w); ! } ! } /* test_eigen_nonsymm() */ ! ! /****************************************** ! * gensymm test code * ! ******************************************/ void ! test_eigen_gensymm_results (const gsl_matrix * A, ! const gsl_matrix * B, ! const gsl_vector * eval, ! const gsl_matrix * evec, ! size_t count, ! const char * desc, ! const char * desc2) { ! const size_t N = A->size1; ! size_t i, j; ! gsl_vector * x = gsl_vector_alloc(N); ! gsl_vector * y = gsl_vector_alloc(N); ! gsl_vector * z = gsl_vector_alloc(N); ! /* check A v = lambda B v */ ! for (i = 0; i < N; i++) ! { ! double ei = gsl_vector_get (eval, i); ! gsl_vector_const_view vi = gsl_matrix_const_column(evec, i); ! double norm = gsl_blas_dnrm2(&vi.vector); ! /* check that eigenvector is normalized */ ! gsl_test_rel(norm, 1.0, N * GSL_DBL_EPSILON, ! "gensymm(N=%u,cnt=%u), %s, normalized(%d), %s", N, count, ! desc, i, desc2); ! gsl_vector_memcpy(z, &vi.vector); ! /* compute y = A z */ ! gsl_blas_dgemv (CblasNoTrans, 1.0, A, z, 0.0, y); ! /* compute x = B z */ ! gsl_blas_dgemv (CblasNoTrans, 1.0, B, z, 0.0, x); ! /* compute x = lambda B z */ ! gsl_blas_dscal(ei, x); ! /* now test if y = x */ ! for (j = 0; j < N; j++) ! { ! double xj = gsl_vector_get (x, j); ! double yj = gsl_vector_get (y, j); ! gsl_test_rel(yj, xj, 1e9 * GSL_DBL_EPSILON, ! "gensymm(N=%u,cnt=%u), %s, eigenvalue(%d,%d), real, %s", N, count, desc, i, j, desc2); ! } ! } ! gsl_vector_free(x); ! gsl_vector_free(y); ! gsl_vector_free(z); } void ! test_eigen_gensymm(void) { ! size_t N_max = 20; ! size_t n, i; ! gsl_rng *r = gsl_rng_alloc(gsl_rng_default); ! for (n = 1; n <= N_max; ++n) ! { ! gsl_matrix * A = gsl_matrix_alloc(n, n); ! gsl_matrix * B = gsl_matrix_alloc(n, n); ! gsl_matrix * ma = gsl_matrix_alloc(n, n); ! gsl_matrix * mb = gsl_matrix_alloc(n, n); ! gsl_vector * eval = gsl_vector_alloc(n); ! gsl_vector * evalv = gsl_vector_alloc(n); ! gsl_vector * x = gsl_vector_alloc(n); ! gsl_vector * y = gsl_vector_alloc(n); ! gsl_matrix * evec = gsl_matrix_alloc(n, n); ! gsl_eigen_gensymm_workspace * w = gsl_eigen_gensymm_alloc(n); ! gsl_eigen_gensymmv_workspace * wv = gsl_eigen_gensymmv_alloc(n); ! for (i = 0; i < 5; ++i) ! { ! create_random_symm_matrix(A, r, -10, 10); ! create_random_posdef_matrix(B, r); ! gsl_matrix_memcpy(ma, A); ! gsl_matrix_memcpy(mb, B); ! gsl_eigen_gensymmv(ma, mb, evalv, evec, wv); ! test_eigen_gensymm_results(A, B, evalv, evec, i, "random", "unsorted"); ! gsl_matrix_memcpy(ma, A); ! gsl_matrix_memcpy(mb, B); ! gsl_eigen_gensymm(ma, mb, eval, w); ! /* eval and evalv have to be sorted? not sure why */ ! gsl_vector_memcpy(x, eval); ! gsl_vector_memcpy(y, evalv); ! gsl_sort_vector(x); ! gsl_sort_vector(y); ! test_eigenvalues_real(y, x, "gensymm, random", "unsorted"); ! gsl_eigen_gensymmv_sort(evalv, evec, GSL_EIGEN_SORT_VAL_ASC); ! test_eigen_gensymm_results(A, B, evalv, evec, i, "random", "val/asc"); ! gsl_eigen_gensymmv_sort(evalv, evec, GSL_EIGEN_SORT_VAL_DESC); ! test_eigen_gensymm_results(A, B, evalv, evec, i, "random", "val/desc"); ! gsl_eigen_gensymmv_sort(evalv, evec, GSL_EIGEN_SORT_ABS_ASC); ! test_eigen_gensymm_results(A, B, evalv, evec, i, "random", "abs/asc"); ! gsl_eigen_gensymmv_sort(evalv, evec, GSL_EIGEN_SORT_ABS_DESC); ! test_eigen_gensymm_results(A, B, evalv, evec, i, "random", "abs/desc"); ! } ! ! gsl_matrix_free(A); ! gsl_matrix_free(B); ! gsl_matrix_free(ma); ! gsl_matrix_free(mb); ! gsl_vector_free(eval); ! gsl_vector_free(evalv); ! gsl_vector_free(x); ! gsl_vector_free(y); ! gsl_matrix_free(evec); ! gsl_eigen_gensymm_free(w); ! gsl_eigen_gensymmv_free(wv); ! } ! ! gsl_rng_free(r); ! } /* test_eigen_gensymm() */ ! ! /****************************************** ! * genherm test code * ! ******************************************/ void ! test_eigen_genherm_results (const gsl_matrix_complex * A, ! const gsl_matrix_complex * B, ! const gsl_vector * eval, ! const gsl_matrix_complex * evec, ! size_t count, ! const char * desc, ! const char * desc2) { ! const size_t N = A->size1; ! size_t i, j; ! gsl_vector_complex * x = gsl_vector_complex_alloc(N); ! gsl_vector_complex * y = gsl_vector_complex_alloc(N); ! /* check A v = lambda B v */ ! for (i = 0; i < N; i++) ! { ! double ei = gsl_vector_get (eval, i); ! gsl_vector_complex_const_view vi = ! gsl_matrix_complex_const_column(evec, i); ! double norm = gsl_blas_dznrm2(&vi.vector); ! /* check that eigenvector is normalized */ ! gsl_test_rel(norm, 1.0, N * GSL_DBL_EPSILON, ! "genherm(N=%u,cnt=%u), %s, normalized(%d), %s", N, count, ! desc, i, desc2); ! /* compute y = A z */ ! gsl_blas_zgemv (CblasNoTrans, GSL_COMPLEX_ONE, A, &vi.vector, GSL_COMPLEX_ZERO, y); ! /* compute x = B z */ ! gsl_blas_zgemv (CblasNoTrans, GSL_COMPLEX_ONE, B, &vi.vector, GSL_COMPLEX_ZERO, x); ! /* compute x = lambda B z */ ! gsl_blas_zdscal(ei, x); ! /* now test if y = x */ ! for (j = 0; j < N; j++) ! { ! gsl_complex xj = gsl_vector_complex_get (x, j); ! gsl_complex yj = gsl_vector_complex_get (y, j); ! gsl_test_rel(GSL_REAL(yj), GSL_REAL(xj), 1e9 * GSL_DBL_EPSILON, ! "genherm(N=%u,cnt=%u), %s, eigenvalue(%d,%d), real, %s", N, count, desc, i, j, desc2); ! gsl_test_abs(GSL_IMAG(yj), GSL_IMAG(xj), 1e9 * GSL_DBL_EPSILON, ! "genherm(N=%u,cnt=%u), %s, eigenvalue(%d,%d), imag, %s", N, count, desc, i, j, desc2); ! } ! } ! ! gsl_vector_complex_free(x); ! gsl_vector_complex_free(y); } void ! test_eigen_genherm(void) { ! size_t N_max = 20; ! size_t n, i; ! gsl_rng *r = gsl_rng_alloc(gsl_rng_default); ! for (n = 1; n <= N_max; ++n) ! { ! gsl_matrix_complex * A = gsl_matrix_complex_alloc(n, n); ! gsl_matrix_complex * B = gsl_matrix_complex_alloc(n, n); ! gsl_matrix_complex * ma = gsl_matrix_complex_alloc(n, n); ! gsl_matrix_complex * mb = gsl_matrix_complex_alloc(n, n); ! gsl_vector * eval = gsl_vector_alloc(n); ! gsl_vector * evalv = gsl_vector_alloc(n); ! gsl_vector * x = gsl_vector_alloc(n); ! gsl_vector * y = gsl_vector_alloc(n); ! gsl_vector_complex * work = gsl_vector_complex_alloc(n); ! gsl_matrix_complex * evec = gsl_matrix_complex_alloc(n, n); ! gsl_eigen_genherm_workspace * w = gsl_eigen_genherm_alloc(n); ! gsl_eigen_genhermv_workspace * wv = gsl_eigen_genhermv_alloc(n); ! for (i = 0; i < 5; ++i) ! { ! create_random_herm_matrix(A, r, -10, 10); ! create_random_complex_posdef_matrix(B, r, work); ! gsl_matrix_complex_memcpy(ma, A); ! gsl_matrix_complex_memcpy(mb, B); ! gsl_eigen_genhermv(ma, mb, evalv, evec, wv); ! test_eigen_genherm_results(A, B, evalv, evec, i, "random", "unsorted"); ! ! gsl_matrix_complex_memcpy(ma, A); ! gsl_matrix_complex_memcpy(mb, B); ! ! gsl_eigen_genherm(ma, mb, eval, w); + /* eval and evalv have to be sorted? not sure why */ + gsl_vector_memcpy(x, eval); + gsl_vector_memcpy(y, evalv); + gsl_sort_vector(x); + gsl_sort_vector(y); + test_eigenvalues_real(y, x, "genherm, random", "unsorted"); ! gsl_eigen_genhermv_sort(evalv, evec, GSL_EIGEN_SORT_VAL_ASC); ! test_eigen_genherm_results(A, B, evalv, evec, i, "random", "val/asc"); ! ! gsl_eigen_genhermv_sort(evalv, evec, GSL_EIGEN_SORT_VAL_DESC); ! test_eigen_genherm_results(A, B, evalv, evec, i, "random", "val/desc"); ! ! gsl_eigen_genhermv_sort(evalv, evec, GSL_EIGEN_SORT_ABS_ASC); ! test_eigen_genherm_results(A, B, evalv, evec, i, "random", "abs/asc"); ! gsl_eigen_genhermv_sort(evalv, evec, GSL_EIGEN_SORT_ABS_DESC); ! test_eigen_genherm_results(A, B, evalv, evec, i, "random", "abs/desc"); ! } ! ! gsl_matrix_complex_free(A); ! gsl_matrix_complex_free(B); ! gsl_matrix_complex_free(ma); ! gsl_matrix_complex_free(mb); ! gsl_vector_free(eval); ! gsl_vector_free(evalv); ! gsl_vector_free(x); ! gsl_vector_free(y); ! gsl_vector_complex_free(work); ! gsl_matrix_complex_free(evec); ! gsl_eigen_genherm_free(w); ! gsl_eigen_genhermv_free(wv); ! } ! ! gsl_rng_free(r); ! } /* test_eigen_genherm() */ ! ! /****************************************** ! * gen test code * ! ******************************************/ ! ! typedef struct ! { ! gsl_matrix *A; ! gsl_matrix *B; ! gsl_vector_complex *alpha; ! gsl_vector *beta; ! gsl_vector_complex *alphav; ! gsl_vector *betav; ! gsl_vector_complex *eval; ! gsl_vector_complex *evalv; ! gsl_vector *x; ! gsl_vector *y; ! gsl_matrix *Q; ! gsl_matrix *Z; ! gsl_matrix_complex *evec; ! gsl_eigen_gen_workspace *gen_p; ! gsl_eigen_genv_workspace *genv_p; ! } test_eigen_gen_workspace; ! ! test_eigen_gen_workspace * ! test_eigen_gen_alloc(const size_t n) { ! test_eigen_gen_workspace *w; ! ! w = calloc(1, sizeof(test_eigen_gen_workspace)); ! ! w->A = gsl_matrix_alloc(n, n); ! w->B = gsl_matrix_alloc(n, n); ! w->alpha = gsl_vector_complex_alloc(n); ! w->beta = gsl_vector_alloc(n); ! w->alphav = gsl_vector_complex_alloc(n); ! w->betav = gsl_vector_alloc(n); ! w->eval = gsl_vector_complex_alloc(n); ! w->evalv = gsl_vector_complex_alloc(n); ! w->x = gsl_vector_alloc(n); ! w->y = gsl_vector_alloc(n); ! w->Q = gsl_matrix_alloc(n, n); ! w->Z = gsl_matrix_alloc(n, n); ! w->evec = gsl_matrix_complex_alloc(n, n); ! w->gen_p = gsl_eigen_gen_alloc(n); ! w->genv_p = gsl_eigen_genv_alloc(n); ! ! return (w); ! } /* test_eigen_gen_alloc() */ ! ! void ! test_eigen_gen_free(test_eigen_gen_workspace *w) ! { ! gsl_matrix_free(w->A); ! gsl_matrix_free(w->B); ! gsl_vector_complex_free(w->alpha); ! gsl_vector_free(w->beta); ! gsl_vector_complex_free(w->alphav); ! gsl_vector_free(w->betav); ! gsl_vector_complex_free(w->eval); ! gsl_vector_complex_free(w->evalv); ! gsl_vector_free(w->x); ! gsl_vector_free(w->y); ! gsl_matrix_free(w->Q); ! gsl_matrix_free(w->Z); ! gsl_matrix_complex_free(w->evec); ! gsl_eigen_gen_free(w->gen_p); ! gsl_eigen_genv_free(w->genv_p); ! free(w); ! } /* test_eigen_gen_free() */ ! ! void ! test_eigen_gen_results (const gsl_matrix * A, const gsl_matrix * B, ! const gsl_vector_complex * alpha, ! const gsl_vector * beta, ! const gsl_matrix_complex * evec, ! size_t count, const char * desc, ! const char * desc2) ! { ! const size_t N = A->size1; ! size_t i, j; ! gsl_matrix_complex *ma, *mb; ! gsl_vector_complex *x, *y; ! gsl_complex z_one, z_zero; ! ! ma = gsl_matrix_complex_alloc(N, N); ! mb = gsl_matrix_complex_alloc(N, N); ! y = gsl_vector_complex_alloc(N); ! x = gsl_vector_complex_alloc(N); ! ! /* ma <- A, mb <- B */ ! for (i = 0; i < N; ++i) ! { ! for (j = 0; j < N; ++j) ! { ! gsl_complex z; ! ! GSL_SET_COMPLEX(&z, gsl_matrix_get(A, i, j), 0.0); ! gsl_matrix_complex_set(ma, i, j, z); ! ! GSL_SET_COMPLEX(&z, gsl_matrix_get(B, i, j), 0.0); ! gsl_matrix_complex_set(mb, i, j, z); ! } } ! GSL_SET_COMPLEX(&z_one, 1.0, 0.0); ! GSL_SET_COMPLEX(&z_zero, 0.0, 0.0); ! /* check eigenvalues */ ! for (i = 0; i < N; ++i) ! { ! gsl_vector_complex_const_view vi = ! gsl_matrix_complex_const_column(evec, i); ! gsl_complex ai = gsl_vector_complex_get(alpha, i); ! double bi = gsl_vector_get(beta, i); ! ! /* compute x = alpha * B * v */ ! gsl_blas_zgemv(CblasNoTrans, z_one, mb, &vi.vector, z_zero, x); ! gsl_blas_zscal(ai, x); ! ! /* compute y = beta * A v */ ! gsl_blas_zgemv(CblasNoTrans, z_one, ma, &vi.vector, z_zero, y); ! gsl_blas_zdscal(bi, y); ! /* now test if y = x */ ! for (j = 0; j < N; ++j) ! { ! gsl_complex xj = gsl_vector_complex_get(x, j); ! gsl_complex yj = gsl_vector_complex_get(y, j); ! ! gsl_test_abs(GSL_REAL(yj), GSL_REAL(xj), 1e8*GSL_DBL_EPSILON, ! "gen(N=%u,cnt=%u), %s, eigenvalue(%d,%d), real, %s", ! N, count, desc, i, j, desc2); ! gsl_test_abs(GSL_IMAG(yj), GSL_IMAG(xj), 1e8*GSL_DBL_EPSILON, ! "gen(N=%u,cnt=%u), %s, eigenvalue(%d,%d), real, %s", ! N, count, desc, i, j, desc2); ! } ! } ! ! gsl_matrix_complex_free(ma); ! gsl_matrix_complex_free(mb); ! gsl_vector_complex_free(y); ! gsl_vector_complex_free(x); ! } /* test_eigen_gen_results() */ ! void ! test_eigen_gen_pencil(const gsl_matrix * A, const gsl_matrix * B, ! size_t count, const char * desc, int test_schur, ! test_eigen_gen_workspace *w) { ! const size_t N = A->size1; ! size_t i; ! gsl_matrix_memcpy(w->A, A); ! gsl_matrix_memcpy(w->B, B); ! if (test_schur) ! { ! gsl_eigen_genv_QZ(w->A, w->B, w->alphav, w->betav, w->evec, w->Q, w->Z, w->genv_p); ! test_eigen_schur(A, w->A, w->Q, w->Z, count, "genv/A", desc); ! test_eigen_schur(B, w->B, w->Q, w->Z, count, "genv/B", desc); ! } ! else ! gsl_eigen_genv(w->A, w->B, w->alphav, w->betav, w->evec, w->genv_p); ! test_eigen_gen_results(A, B, w->alphav, w->betav, w->evec, count, desc, "unsorted"); ! gsl_matrix_memcpy(w->A, A); ! gsl_matrix_memcpy(w->B, B); ! if (test_schur) ! { ! gsl_eigen_gen_params(1, 1, 0, w->gen_p); ! gsl_eigen_gen_QZ(w->A, w->B, w->alpha, w->beta, w->Q, w->Z, w->gen_p); ! test_eigen_schur(A, w->A, w->Q, w->Z, count, "gen/A", desc); ! test_eigen_schur(B, w->B, w->Q, w->Z, count, "gen/B", desc); ! } ! else ! { ! gsl_eigen_gen_params(0, 0, 0, w->gen_p); ! gsl_eigen_gen(w->A, w->B, w->alpha, w->beta, w->gen_p); ! } ! /* compute eval = alpha / beta values */ ! for (i = 0; i < N; ++i) ! { ! gsl_complex z, ai; ! double bi; ! ai = gsl_vector_complex_get(w->alpha, i); ! bi = gsl_vector_get(w->beta, i); ! GSL_SET_COMPLEX(&z, GSL_REAL(ai) / bi, GSL_IMAG(ai) / bi); ! gsl_vector_complex_set(w->eval, i, z); ! ! ai = gsl_vector_complex_get(w->alphav, i); ! bi = gsl_vector_get(w->betav, i); ! GSL_SET_COMPLEX(&z, GSL_REAL(ai) / bi, GSL_IMAG(ai) / bi); ! gsl_vector_complex_set(w->evalv, i, z); ! } ! /* sort eval and evalv and test them */ ! gsl_eigen_nonsymmv_sort(w->eval, NULL, GSL_EIGEN_SORT_ABS_ASC); ! gsl_eigen_nonsymmv_sort(w->evalv, NULL, GSL_EIGEN_SORT_ABS_ASC); ! test_eigenvalues_complex(w->evalv, w->eval, "gen", desc); ! ! gsl_eigen_genv_sort(w->alphav, w->betav, w->evec, GSL_EIGEN_SORT_ABS_ASC); ! test_eigen_gen_results(A, B, w->alphav, w->betav, w->evec, count, desc, "abs/asc"); ! gsl_eigen_genv_sort(w->alphav, w->betav, w->evec, GSL_EIGEN_SORT_ABS_DESC); ! test_eigen_gen_results(A, B, w->alphav, w->betav, w->evec, count, desc, "abs/desc"); ! } /* test_eigen_gen_pencil() */ ! void ! test_eigen_gen(void) ! { ! size_t N_max = 20; ! size_t n, i; ! gsl_rng *r = gsl_rng_alloc(gsl_rng_default); ! for (n = 1; n <= N_max; ++n) ! { ! gsl_matrix * A = gsl_matrix_alloc(n, n); ! gsl_matrix * B = gsl_matrix_alloc(n, n); ! test_eigen_gen_workspace * w = test_eigen_gen_alloc(n); ! for (i = 0; i < 5; ++i) ! { ! create_random_nonsymm_matrix(A, r, -10, 10); ! create_random_nonsymm_matrix(B, r, -10, 10); ! test_eigen_gen_pencil(A, B, i, "random", 0, w); ! test_eigen_gen_pencil(A, B, i, "random", 1, w); ! } ! gsl_matrix_free(A); ! gsl_matrix_free(B); ! test_eigen_gen_free(w); ! } ! gsl_rng_free(r); + /* this system will test the exceptional shift code */ { ! double datA[] = { 1, 1, 0, ! 0, 0, -1, ! 1, 0, 0 }; ! double datB[] = { -1, 0, -1, ! 0, -1, 0, ! 0, 0, -1 }; ! gsl_matrix_view va = gsl_matrix_view_array (datA, 3, 3); ! gsl_matrix_view vb = gsl_matrix_view_array (datB, 3, 3); ! test_eigen_gen_workspace * w = test_eigen_gen_alloc(3); ! ! test_eigen_gen_pencil(&va.matrix, &vb.matrix, 0, "integer", 0, w); ! test_eigen_gen_pencil(&va.matrix, &vb.matrix, 0, "integer", 1, w); ! test_eigen_gen_free(w); } ! } /* test_eigen_gen() */ ! ! int ! main() ! { ! gsl_ieee_env_setup (); ! gsl_rng_env_setup (); ! ! test_eigen_symm(); ! test_eigen_herm(); ! test_eigen_nonsymm(); ! test_eigen_gensymm(); ! test_eigen_genherm(); ! test_eigen_gen(); exit (gsl_test_summary()); } diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/eigen/TODO gsl-1.10/eigen/TODO *** gsl-1.9/eigen/TODO 2007-01-29 07:43:12.000000000 +0000 --- gsl-1.10/eigen/TODO 2007-08-31 13:02:04.000000000 +0100 *************** *** 1,4 **** --- 1,6 ---- + * dlae2.f has better handling of 2x2 eigenvalues than our qrstep.c + * Document Jacobi eigen function, in particular that it only works for symmetric matrices. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/err/error.c gsl-1.10/err/error.c *** gsl-1.9/err/error.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/err/error.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* err/error.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* err/error.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/err/gsl_errno.h gsl-1.10/err/gsl_errno.h *** gsl-1.9/err/gsl_errno.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/err/gsl_errno.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* err/gsl_errno.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* err/gsl_errno.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/err/gsl_message.h gsl-1.10/err/gsl_message.h *** gsl-1.9/err/gsl_message.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/err/gsl_message.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* err/gsl_message.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* err/gsl_message.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/err/Makefile.in gsl-1.10/err/Makefile.in *** gsl-1.9/err/Makefile.in 2007-02-20 13:09:05.000000000 +0000 --- gsl-1.10/err/Makefile.in 2007-09-13 16:41:40.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 56,72 **** test_OBJECTS = $(am_test_OBJECTS) test_DEPENDENCIES = libgslerr.la ../test/libgsltest.la \ ../sys/libgslsys.la ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslerr_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslerr_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 52,69 ---- test_OBJECTS = $(am_test_OBJECTS) test_DEPENDENCIES = libgslerr.la ../test/libgsltest.la \ ../sys/libgslsys.la ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslerr_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslerr_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 100,105 **** --- 97,103 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 107,113 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 105,110 ---- *************** *** 115,131 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 112,125 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 137,145 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 131,138 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 149,163 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 142,157 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 167,194 **** --- 161,199 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslerr.la pkginclude_HEADERS = gsl_errno.h gsl_message.h libgslerr_la_SOURCES = error.c stream.c message.c strerror.c *************** *** 238,244 **** rm -f "$${dir}/so_locations"; \ done libgslerr.la: $(libgslerr_la_OBJECTS) $(libgslerr_la_DEPENDENCIES) ! $(LINK) $(libgslerr_la_LDFLAGS) $(libgslerr_la_OBJECTS) $(libgslerr_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 243,249 ---- rm -f "$${dir}/so_locations"; \ done libgslerr.la: $(libgslerr_la_OBJECTS) $(libgslerr_la_DEPENDENCIES) ! $(LINK) $(libgslerr_la_OBJECTS) $(libgslerr_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 248,254 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 253,259 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 270,282 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 275,283 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 341,349 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 342,350 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 352,358 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 353,359 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 364,370 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 365,371 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 414,435 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 415,435 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 447,453 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 447,453 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 481,487 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 481,487 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 495,506 **** --- 495,514 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 520,540 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 528,551 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/err/message.c gsl-1.10/err/message.c *** gsl-1.9/err/message.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/err/message.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* err/message.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* err/message.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/err/stream.c gsl-1.10/err/stream.c *** gsl-1.9/err/stream.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/err/stream.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* err/stream.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* err/stream.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/err/strerror.c gsl-1.10/err/strerror.c *** gsl-1.9/err/strerror.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/err/strerror.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* err/strerror.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* err/strerror.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/err/test.c gsl-1.10/err/test.c *** gsl-1.9/err/test.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/err/test.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* err/test_errnos.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* err/test_errnos.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/bitreverse.c gsl-1.10/fft/bitreverse.c *** gsl-1.9/fft/bitreverse.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/bitreverse.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/bitreverse.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/bitreverse.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/bitreverse.h gsl-1.10/fft/bitreverse.h *** gsl-1.9/fft/bitreverse.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/bitreverse.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/bitreverse.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/bitreverse.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/c_init.c gsl-1.10/fft/c_init.c *** gsl-1.9/fft/c_init.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/c_init.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/c_init.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/c_init.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/c_main.c gsl-1.10/fft/c_main.c *** gsl-1.9/fft/c_main.c 2006-03-17 15:52:24.000000000 +0000 --- gsl-1.10/fft/c_main.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/c_main.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/c_main.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/compare.h gsl-1.10/fft/compare.h *** gsl-1.9/fft/compare.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/compare.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/compare.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/compare.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/compare_source.c gsl-1.10/fft/compare_source.c *** gsl-1.9/fft/compare_source.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/compare_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/compare_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/compare_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/c_pass_2.c gsl-1.10/fft/c_pass_2.c *** gsl-1.9/fft/c_pass_2.c 2006-03-17 15:52:24.000000000 +0000 --- gsl-1.10/fft/c_pass_2.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/c_pass_2.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/c_pass_2.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/c_pass_3.c gsl-1.10/fft/c_pass_3.c *** gsl-1.9/fft/c_pass_3.c 2006-03-17 15:52:24.000000000 +0000 --- gsl-1.10/fft/c_pass_3.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/c_pass_3.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/c_pass_3.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/c_pass_4.c gsl-1.10/fft/c_pass_4.c *** gsl-1.9/fft/c_pass_4.c 2006-03-17 15:52:24.000000000 +0000 --- gsl-1.10/fft/c_pass_4.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/c_pass_4.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/c_pass_4.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/c_pass_5.c gsl-1.10/fft/c_pass_5.c *** gsl-1.9/fft/c_pass_5.c 2006-03-17 15:52:24.000000000 +0000 --- gsl-1.10/fft/c_pass_5.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/c_pass_5.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/c_pass_5.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/c_pass_6.c gsl-1.10/fft/c_pass_6.c *** gsl-1.9/fft/c_pass_6.c 2006-03-17 15:52:24.000000000 +0000 --- gsl-1.10/fft/c_pass_6.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/c_pass_6.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/c_pass_6.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/c_pass_7.c gsl-1.10/fft/c_pass_7.c *** gsl-1.9/fft/c_pass_7.c 2006-03-17 15:52:24.000000000 +0000 --- gsl-1.10/fft/c_pass_7.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/c_pass_7.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/c_pass_7.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/c_pass.h gsl-1.10/fft/c_pass.h *** gsl-1.9/fft/c_pass.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/c_pass.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/c_pass.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/c_pass.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/c_pass_n.c gsl-1.10/fft/c_pass_n.c *** gsl-1.9/fft/c_pass_n.c 2006-03-17 15:52:24.000000000 +0000 --- gsl-1.10/fft/c_pass_n.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/c_pass_n.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/c_pass_n.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/c_radix2.c gsl-1.10/fft/c_radix2.c *** gsl-1.9/fft/c_radix2.c 2006-03-17 15:52:24.000000000 +0000 --- gsl-1.10/fft/c_radix2.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/c_radix2.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/c_radix2.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/dft_source.c gsl-1.10/fft/dft_source.c *** gsl-1.9/fft/dft_source.c 2006-03-17 15:52:24.000000000 +0000 --- gsl-1.10/fft/dft_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/dft_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/dft_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/factorize.c gsl-1.10/fft/factorize.c *** gsl-1.9/fft/factorize.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/factorize.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/factorize.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/factorize.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/factorize.h gsl-1.10/fft/factorize.h *** gsl-1.9/fft/factorize.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/factorize.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/factorize.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/factorize.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/gsl_dft_complex_float.h gsl-1.10/fft/gsl_dft_complex_float.h *** gsl-1.9/fft/gsl_dft_complex_float.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/gsl_dft_complex_float.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/gsl_dft_complex_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/gsl_dft_complex_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/gsl_dft_complex.h gsl-1.10/fft/gsl_dft_complex.h *** gsl-1.9/fft/gsl_dft_complex.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/gsl_dft_complex.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/gsl_dft_complex.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/gsl_dft_complex.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/gsl_fft_complex_float.h gsl-1.10/fft/gsl_fft_complex_float.h *** gsl-1.9/fft/gsl_fft_complex_float.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/gsl_fft_complex_float.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/gsl_fft_complex_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/gsl_fft_complex_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/gsl_fft_complex.h gsl-1.10/fft/gsl_fft_complex.h *** gsl-1.9/fft/gsl_fft_complex.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/gsl_fft_complex.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/gsl_fft_complex.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/gsl_fft_complex.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/gsl_fft.h gsl-1.10/fft/gsl_fft.h *** gsl-1.9/fft/gsl_fft.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/gsl_fft.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/gsl_fft.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/gsl_fft.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/gsl_fft_halfcomplex_float.h gsl-1.10/fft/gsl_fft_halfcomplex_float.h *** gsl-1.9/fft/gsl_fft_halfcomplex_float.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/gsl_fft_halfcomplex_float.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/gsl_fft_halfcomplex_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/gsl_fft_halfcomplex_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/gsl_fft_halfcomplex.h gsl-1.10/fft/gsl_fft_halfcomplex.h *** gsl-1.9/fft/gsl_fft_halfcomplex.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/gsl_fft_halfcomplex.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/gsl_fft_halfcomplex.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/gsl_fft_halfcomplex.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/gsl_fft_real_float.h gsl-1.10/fft/gsl_fft_real_float.h *** gsl-1.9/fft/gsl_fft_real_float.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/gsl_fft_real_float.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/gsl_fft_real_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/gsl_fft_real_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/gsl_fft_real.h gsl-1.10/fft/gsl_fft_real.h *** gsl-1.9/fft/gsl_fft_real.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/gsl_fft_real.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/gsl_fft_real.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/gsl_fft_real.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/hc_init.c gsl-1.10/fft/hc_init.c *** gsl-1.9/fft/hc_init.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/hc_init.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/hc_init.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/hc_init.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/hc_main.c gsl-1.10/fft/hc_main.c *** gsl-1.9/fft/hc_main.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/hc_main.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/hc_main.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/hc_main.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/hc_pass_2.c gsl-1.10/fft/hc_pass_2.c *** gsl-1.9/fft/hc_pass_2.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/hc_pass_2.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/hc_pass_2.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/hc_pass_2.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/hc_pass_3.c gsl-1.10/fft/hc_pass_3.c *** gsl-1.9/fft/hc_pass_3.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/hc_pass_3.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/hc_pass_3.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/hc_pass_3.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/hc_pass_4.c gsl-1.10/fft/hc_pass_4.c *** gsl-1.9/fft/hc_pass_4.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/hc_pass_4.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/hc_pass_4.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/hc_pass_4.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/hc_pass_5.c gsl-1.10/fft/hc_pass_5.c *** gsl-1.9/fft/hc_pass_5.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/hc_pass_5.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/hc_pass_5.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/hc_pass_5.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/hc_pass.h gsl-1.10/fft/hc_pass.h *** gsl-1.9/fft/hc_pass.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/hc_pass.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/hc_pass.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/hc_pass.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/hc_pass_n.c gsl-1.10/fft/hc_pass_n.c *** gsl-1.9/fft/hc_pass_n.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/hc_pass_n.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/hc_pass_n.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/hc_pass_n.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/hc_radix2.c gsl-1.10/fft/hc_radix2.c *** gsl-1.9/fft/hc_radix2.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/hc_radix2.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/hc_radix2.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/hc_radix2.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/hc_unpack.c gsl-1.10/fft/hc_unpack.c *** gsl-1.9/fft/hc_unpack.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/hc_unpack.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/hc_unpack.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/hc_unpack.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/Makefile.in gsl-1.10/fft/Makefile.in *** gsl-1.9/fft/Makefile.in 2007-02-20 13:09:06.000000000 +0000 --- gsl-1.10/fft/Makefile.in 2007-09-13 16:41:41.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 57,73 **** test_DEPENDENCIES = libgslfft.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslfft_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslfft_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 53,70 ---- test_DEPENDENCIES = libgslfft.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslfft_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslfft_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 101,106 **** --- 98,104 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 108,114 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 106,111 ---- *************** *** 116,132 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 113,126 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 138,146 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 132,139 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 150,164 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 143,158 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 168,195 **** --- 162,200 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslfft.la pkginclude_HEADERS = gsl_fft.h gsl_fft_complex.h gsl_fft_halfcomplex.h gsl_fft_real.h gsl_dft_complex.h gsl_dft_complex_float.h gsl_fft_complex_float.h gsl_fft_halfcomplex_float.h gsl_fft_real_float.h INCLUDES = -I$(top_builddir) -I$(top_srcdir) *************** *** 241,247 **** rm -f "$${dir}/so_locations"; \ done libgslfft.la: $(libgslfft_la_OBJECTS) $(libgslfft_la_DEPENDENCIES) ! $(LINK) $(libgslfft_la_LDFLAGS) $(libgslfft_la_OBJECTS) $(libgslfft_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 246,252 ---- rm -f "$${dir}/so_locations"; \ done libgslfft.la: $(libgslfft_la_OBJECTS) $(libgslfft_la_DEPENDENCIES) ! $(LINK) $(libgslfft_la_OBJECTS) $(libgslfft_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 251,257 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 256,262 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 273,285 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 278,286 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 344,352 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 345,353 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 355,361 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 356,362 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 367,373 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 368,374 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 417,438 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 418,438 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 450,456 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 450,456 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 484,490 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 484,490 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 498,509 **** --- 498,517 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 523,543 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS #errs_LDADD = libgslfft.la ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la --- 531,554 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS #errs_LDADD = libgslfft.la ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/real_init.c gsl-1.10/fft/real_init.c *** gsl-1.9/fft/real_init.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/real_init.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/real_init.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/real_init.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/real_main.c gsl-1.10/fft/real_main.c *** gsl-1.9/fft/real_main.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/real_main.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/real_main.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/real_main.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/real_pass_2.c gsl-1.10/fft/real_pass_2.c *** gsl-1.9/fft/real_pass_2.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/real_pass_2.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/real_pass_2.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/real_pass_2.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/real_pass_3.c gsl-1.10/fft/real_pass_3.c *** gsl-1.9/fft/real_pass_3.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/real_pass_3.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/real_pass_3.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/real_pass_3.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/real_pass_4.c gsl-1.10/fft/real_pass_4.c *** gsl-1.9/fft/real_pass_4.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/real_pass_4.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/real_pass_4.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/real_pass_4.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/real_pass_5.c gsl-1.10/fft/real_pass_5.c *** gsl-1.9/fft/real_pass_5.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/real_pass_5.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/real_pass_5.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/real_pass_5.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/real_pass.h gsl-1.10/fft/real_pass.h *** gsl-1.9/fft/real_pass.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/real_pass.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/real_pass.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/real_pass.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/real_pass_n.c gsl-1.10/fft/real_pass_n.c *** gsl-1.9/fft/real_pass_n.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/real_pass_n.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/real_pass_n.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/real_pass_n.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/real_radix2.c gsl-1.10/fft/real_radix2.c *** gsl-1.9/fft/real_radix2.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/real_radix2.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/real_radix2.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/real_radix2.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/real_unpack.c gsl-1.10/fft/real_unpack.c *** gsl-1.9/fft/real_unpack.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/real_unpack.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/real_unpack.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/real_unpack.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/signals.h gsl-1.10/fft/signals.h *** gsl-1.9/fft/signals.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/signals.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/signals.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/signals.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/signals_source.c gsl-1.10/fft/signals_source.c *** gsl-1.9/fft/signals_source.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/signals_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/signals_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/signals_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/test.c gsl-1.10/fft/test.c *** gsl-1.9/fft/test.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/test.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/test_complex_source.c gsl-1.10/fft/test_complex_source.c *** gsl-1.9/fft/test_complex_source.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/test_complex_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/test_complex.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/test_complex.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/test_real_source.c gsl-1.10/fft/test_real_source.c *** gsl-1.9/fft/test_real_source.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/test_real_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/test_real.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/test_real.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/test_trap_source.c gsl-1.10/fft/test_trap_source.c *** gsl-1.9/fft/test_trap_source.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/test_trap_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/test_trap.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/test_trap.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fft/urand.c gsl-1.10/fft/urand.c *** gsl-1.9/fft/urand.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fft/urand.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fft/urand.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fft/urand.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fit/ChangeLog gsl-1.10/fit/ChangeLog *** gsl-1.9/fit/ChangeLog 2004-12-24 14:00:38.000000000 +0000 --- gsl-1.10/fit/ChangeLog 2007-05-23 10:59:08.000000000 +0100 *************** *** 1,3 **** --- 1,9 ---- + 2007-05-23 Brian Gough + + * gsl_fit.h linear.c (gsl_fit_mul_est, gsl_fit_linear_est): made + parameters in prototypes for _est functions consistent, + c00->cov00, c01->cov01, c11 -> cov11 + 2004-12-23 Brian Gough * gsl_fit.h: remove unused declarations diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fit/gsl_fit.h gsl-1.10/fit/gsl_fit.h *** gsl-1.9/fit/gsl_fit.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fit/gsl_fit.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fit/gsl_fit.h * ! * Copyright (C) 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fit/gsl_fit.h * ! * Copyright (C) 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 54,60 **** int gsl_fit_linear_est (const double x, const double c0, const double c1, ! const double c00, const double c01, const double c11, double *y, double *y_err); --- 54,60 ---- int gsl_fit_linear_est (const double x, const double c0, const double c1, ! const double cov00, const double cov01, const double cov11, double *y, double *y_err); *************** *** 77,83 **** int gsl_fit_mul_est (const double x, const double c1, ! const double c11, double *y, double *y_err); __END_DECLS --- 77,83 ---- int gsl_fit_mul_est (const double x, const double c1, ! const double cov11, double *y, double *y_err); __END_DECLS diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fit/linear.c gsl-1.10/fit/linear.c *** gsl-1.9/fit/linear.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/fit/linear.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* fit/linear.c * ! * Copyright (C) 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* fit/linear.c * ! * Copyright (C) 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 196,206 **** int gsl_fit_linear_est (const double x, const double c0, const double c1, ! const double c00, const double c01, const double c11, double *y, double *y_err) { *y = c0 + c1 * x; ! *y_err = sqrt (c00 + x * (2 * c01 + c11 * x)); return GSL_SUCCESS; } --- 196,206 ---- int gsl_fit_linear_est (const double x, const double c0, const double c1, ! const double cov00, const double cov01, const double cov11, double *y, double *y_err) { *y = c0 + c1 * x; ! *y_err = sqrt (cov00 + x * (2 * cov01 + cov11 * x)); return GSL_SUCCESS; } *************** *** 337,346 **** int gsl_fit_mul_est (const double x, ! const double c1, const double c11, double *y, double *y_err) { *y = c1 * x; ! *y_err = sqrt (c11) * fabs (x); return GSL_SUCCESS; } --- 337,346 ---- int gsl_fit_mul_est (const double x, ! const double c1, const double cov11, double *y, double *y_err) { *y = c1 * x; ! *y_err = sqrt (cov11) * fabs (x); return GSL_SUCCESS; } diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/fit/Makefile.in gsl-1.10/fit/Makefile.in *** gsl-1.9/fit/Makefile.in 2007-02-20 13:09:06.000000000 +0000 --- gsl-1.10/fit/Makefile.in 2007-09-13 16:41:41.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 57,73 **** test_DEPENDENCIES = libgslfit.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../utils/libutils.la \ ../sys/libgslsys.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslfit_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslfit_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 53,70 ---- test_DEPENDENCIES = libgslfit.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../utils/libutils.la \ ../sys/libgslsys.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslfit_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslfit_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 101,106 **** --- 98,104 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 108,114 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 106,111 ---- *************** *** 116,132 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 113,126 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 138,146 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 132,139 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 150,164 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 143,158 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 168,195 **** --- 162,200 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslfit.la pkginclude_HEADERS = gsl_fit.h INCLUDES = -I$(top_builddir) *************** *** 240,246 **** rm -f "$${dir}/so_locations"; \ done libgslfit.la: $(libgslfit_la_OBJECTS) $(libgslfit_la_DEPENDENCIES) ! $(LINK) $(libgslfit_la_LDFLAGS) $(libgslfit_la_OBJECTS) $(libgslfit_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 245,251 ---- rm -f "$${dir}/so_locations"; \ done libgslfit.la: $(libgslfit_la_OBJECTS) $(libgslfit_la_DEPENDENCIES) ! $(LINK) $(libgslfit_la_OBJECTS) $(libgslfit_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 250,256 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 255,261 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 272,284 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 277,285 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 343,351 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 344,352 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 354,360 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 355,361 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 366,372 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 367,373 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 416,437 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 417,437 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 449,455 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 449,455 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 483,489 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 483,489 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 497,508 **** --- 497,516 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 522,542 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS #demo_SOURCES = demo.c --- 530,553 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS #demo_SOURCES = demo.c diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/gsl/Makefile.in gsl-1.10/gsl/Makefile.in *** gsl-1.9/gsl/Makefile.in 2007-02-20 13:09:06.000000000 +0000 --- gsl-1.10/gsl/Makefile.in 2007-09-13 16:41:41.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 13,27 **** # PARTICULAR PURPOSE. @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 13,23 ---- *************** *** 68,73 **** --- 64,70 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 75,81 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 72,77 ---- *************** *** 83,99 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 79,92 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 105,113 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 98,105 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 117,131 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 109,124 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 135,162 **** --- 128,166 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ all: all-am .SUFFIXES: *************** *** 195,204 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: tags: TAGS TAGS: --- 199,204 ---- *************** *** 207,228 **** distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 207,227 ---- distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 263,269 **** @echo "it deletes files that may require special tools to rebuild." clean-am: clean-generic clean-libtool mostlyclean-am ! distclean-am: clean-am distclean-generic distclean-libtool dvi: dvi-am --- 262,268 ---- @echo "it deletes files that may require special tools to rebuild." clean-am: clean-generic clean-libtool mostlyclean-am ! distclean-am: clean-am distclean-generic dvi: dvi-am *************** *** 277,288 **** --- 276,295 ---- install-data-am: + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 301,317 **** ps-am: ! uninstall-am: uninstall-info-am .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am \ ! uninstall-info-am header-links: remove-links --- 308,327 ---- ps-am: ! uninstall-am: ! ! .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ distclean distclean-generic distclean-libtool distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am uninstall uninstall-am header-links: remove-links diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/gsl-histogram.c gsl-1.10/gsl-histogram.c *** gsl-1.9/gsl-histogram.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/gsl-histogram.c 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* histogram/gsl-histogram.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* histogram/gsl-histogram.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/gsl.m4 gsl-1.10/gsl.m4 *** gsl-1.9/gsl.m4 2004-05-27 13:02:54.000000000 +0100 --- gsl-1.10/gsl.m4 2007-09-10 10:17:21.000000000 +0100 *************** *** 2,8 **** # Christopher R. Gabriel , April 2000 ! AC_DEFUN([AM_PATH_GSL], [ AC_ARG_WITH(gsl-prefix,[ --with-gsl-prefix=PFX Prefix where GSL is installed (optional)], gsl_prefix="$withval", gsl_prefix="") --- 2,8 ---- # Christopher R. Gabriel , April 2000 ! AC_DEFUN([AX_PATH_GSL], [ AC_ARG_WITH(gsl-prefix,[ --with-gsl-prefix=PFX Prefix where GSL is installed (optional)], gsl_prefix="$withval", gsl_prefix="") *************** *** 165,168 **** rm -f conf.gsltest ]) ! --- 165,168 ---- rm -f conf.gsltest ]) ! AU_ALIAS([AM_PATH_GSL], [AX_PATH_GSL]) \ No newline at end of file diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/gsl_math.h gsl-1.10/gsl_math.h *** gsl-1.9/gsl_math.h 2007-01-09 16:36:17.000000000 +0000 --- gsl-1.10/gsl_math.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* gsl_math.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2004 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* gsl_math.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2004, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/gsl_mode.h gsl-1.10/gsl_mode.h *** gsl-1.9/gsl_mode.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/gsl_mode.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/gsl_nan.h gsl-1.10/gsl_nan.h *** gsl-1.9/gsl_nan.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/gsl_nan.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* gsl_nan.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* gsl_nan.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/gsl_pow_int.h gsl-1.10/gsl_pow_int.h *** gsl-1.9/gsl_pow_int.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/gsl_pow_int.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* gsl_pow_int.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2004 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* gsl_pow_int.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2004, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/gsl_precision.h gsl-1.10/gsl_precision.h *** gsl-1.9/gsl_precision.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/gsl_precision.h 2007-07-02 17:29:28.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/gsl-randist.c gsl-1.10/gsl-randist.c *** gsl-1.9/gsl-randist.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/gsl-randist.c 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* randist/gsl-randist.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/gsl-randist.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/gsl_types.h gsl-1.10/gsl_types.h *** gsl-1.9/gsl_types.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/gsl_types.h 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* gsl_types.h * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* gsl_types.h * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/gsl_version.h gsl-1.10/gsl_version.h *** gsl-1.9/gsl_version.h 2007-02-20 13:09:47.000000000 +0000 --- gsl-1.10/gsl_version.h 2007-09-13 16:42:31.000000000 +0100 *************** *** 15,21 **** __BEGIN_DECLS ! #define GSL_VERSION "1.9" GSL_VAR const char * gsl_version; --- 15,21 ---- __BEGIN_DECLS ! #define GSL_VERSION "1.10" GSL_VAR const char * gsl_version; diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/add2d.c gsl-1.10/histogram/add2d.c *** gsl-1.9/histogram/add2d.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/histogram/add2d.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* histogram/add2d.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* histogram/add2d.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/add.c gsl-1.10/histogram/add.c *** gsl-1.9/histogram/add.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/histogram/add.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* histogram/add.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* histogram/add.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/calloc_range2d.c gsl-1.10/histogram/calloc_range2d.c *** gsl-1.9/histogram/calloc_range2d.c 2003-07-25 16:18:10.000000000 +0100 --- gsl-1.10/histogram/calloc_range2d.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 3,9 **** * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as ! * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, --- 3,9 ---- * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as ! * published by the Free Software Foundation; either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/calloc_range.c gsl-1.10/histogram/calloc_range.c *** gsl-1.9/histogram/calloc_range.c 2003-07-25 16:18:10.000000000 +0100 --- gsl-1.10/histogram/calloc_range.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 3,9 **** * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as ! * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, --- 3,9 ---- * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as ! * published by the Free Software Foundation; either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/copy2d.c gsl-1.10/histogram/copy2d.c *** gsl-1.9/histogram/copy2d.c 2003-07-25 16:18:10.000000000 +0100 --- gsl-1.10/histogram/copy2d.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 3,9 **** * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as ! * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, --- 3,9 ---- * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as ! * published by the Free Software Foundation; either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/copy.c gsl-1.10/histogram/copy.c *** gsl-1.9/histogram/copy.c 2003-07-25 16:18:10.000000000 +0100 --- gsl-1.10/histogram/copy.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 3,9 **** * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as ! * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, --- 3,9 ---- * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as ! * published by the Free Software Foundation; either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/file2d.c gsl-1.10/histogram/file2d.c *** gsl-1.9/histogram/file2d.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/histogram/file2d.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* histogram/file2d.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* histogram/file2d.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/file.c gsl-1.10/histogram/file.c *** gsl-1.9/histogram/file.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/histogram/file.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* histogram/file.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* histogram/file.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/find2d.c gsl-1.10/histogram/find2d.c *** gsl-1.9/histogram/find2d.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/histogram/find2d.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* histogram/find2d.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* histogram/find2d.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/find.c gsl-1.10/histogram/find.c *** gsl-1.9/histogram/find.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/histogram/find.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* histogram/find.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* histogram/find.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/get2d.c gsl-1.10/histogram/get2d.c *** gsl-1.9/histogram/get2d.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/histogram/get2d.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* histogram/get2d.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* histogram/get2d.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/get.c gsl-1.10/histogram/get.c *** gsl-1.9/histogram/get.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/histogram/get.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* histogram/get.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* histogram/get.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/gsl_histogram2d.h gsl-1.10/histogram/gsl_histogram2d.h *** gsl-1.9/histogram/gsl_histogram2d.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/histogram/gsl_histogram2d.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* histogram/gsl_histogram2d.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* histogram/gsl_histogram2d.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/gsl_histogram.h gsl-1.10/histogram/gsl_histogram.h *** gsl-1.9/histogram/gsl_histogram.h 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/histogram/gsl_histogram.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* histogram/gsl_histogram.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* histogram/gsl_histogram.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/init2d.c gsl-1.10/histogram/init2d.c *** gsl-1.9/histogram/init2d.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/histogram/init2d.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* histogram/init2d.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* histogram/init2d.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/init.c gsl-1.10/histogram/init.c *** gsl-1.9/histogram/init.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/histogram/init.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* histogram/init.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* histogram/init.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/Makefile.in gsl-1.10/histogram/Makefile.in *** gsl-1.9/histogram/Makefile.in 2007-02-20 13:09:07.000000000 +0000 --- gsl-1.10/histogram/Makefile.in 2007-09-13 16:41:41.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 63,79 **** test_DEPENDENCIES = libgslhistogram.la ../block/libgslblock.la \ ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la \ ../test/libgsltest.la ../sys/libgslsys.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslhistogram_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslhistogram_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 59,76 ---- test_DEPENDENCIES = libgslhistogram.la ../block/libgslblock.la \ ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la \ ../test/libgsltest.la ../sys/libgslsys.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslhistogram_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslhistogram_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 107,112 **** --- 104,110 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 114,120 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 112,117 ---- *************** *** 122,138 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 119,132 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 144,152 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 138,145 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 156,170 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 149,164 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 174,201 **** --- 168,206 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslhistogram.la pkginclude_HEADERS = gsl_histogram.h gsl_histogram2d.h INCLUDES = -I$(top_builddir) *************** *** 249,255 **** rm -f "$${dir}/so_locations"; \ done libgslhistogram.la: $(libgslhistogram_la_OBJECTS) $(libgslhistogram_la_DEPENDENCIES) ! $(LINK) $(libgslhistogram_la_LDFLAGS) $(libgslhistogram_la_OBJECTS) $(libgslhistogram_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 254,260 ---- rm -f "$${dir}/so_locations"; \ done libgslhistogram.la: $(libgslhistogram_la_OBJECTS) $(libgslhistogram_la_DEPENDENCIES) ! $(LINK) $(libgslhistogram_la_OBJECTS) $(libgslhistogram_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 259,265 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 264,270 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 281,293 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 286,294 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 352,360 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 353,361 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 363,369 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 364,370 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 375,381 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 376,382 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 425,446 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 426,446 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 458,464 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 458,464 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 493,499 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 493,499 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 507,518 **** --- 507,526 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 532,552 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 540,563 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/maxval2d.c gsl-1.10/histogram/maxval2d.c *** gsl-1.9/histogram/maxval2d.c 2003-07-25 16:18:11.000000000 +0100 --- gsl-1.10/histogram/maxval2d.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 3,9 **** * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as ! * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, --- 3,9 ---- * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as ! * published by the Free Software Foundation; either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/maxval.c gsl-1.10/histogram/maxval.c *** gsl-1.9/histogram/maxval.c 2003-07-25 16:18:11.000000000 +0100 --- gsl-1.10/histogram/maxval.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 3,9 **** * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as ! * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, --- 3,9 ---- * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as ! * published by the Free Software Foundation; either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/oper2d.c gsl-1.10/histogram/oper2d.c *** gsl-1.9/histogram/oper2d.c 2003-07-25 16:18:11.000000000 +0100 --- gsl-1.10/histogram/oper2d.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 3,9 **** * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as ! * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, --- 3,9 ---- * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as ! * published by the Free Software Foundation; either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/oper.c gsl-1.10/histogram/oper.c *** gsl-1.9/histogram/oper.c 2003-07-25 16:18:11.000000000 +0100 --- gsl-1.10/histogram/oper.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 3,9 **** * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as ! * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, --- 3,9 ---- * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as ! * published by the Free Software Foundation; either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/params2d.c gsl-1.10/histogram/params2d.c *** gsl-1.9/histogram/params2d.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/histogram/params2d.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* histogram/params2d.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* histogram/params2d.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/params.c gsl-1.10/histogram/params.c *** gsl-1.9/histogram/params.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/histogram/params.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* histogram/params.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* histogram/params.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/pdf2d.c gsl-1.10/histogram/pdf2d.c *** gsl-1.9/histogram/pdf2d.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/histogram/pdf2d.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* histogram/pdf2d.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* histogram/pdf2d.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/pdf.c gsl-1.10/histogram/pdf.c *** gsl-1.9/histogram/pdf.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/histogram/pdf.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* histogram/pdf.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* histogram/pdf.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/reset2d.c gsl-1.10/histogram/reset2d.c *** gsl-1.9/histogram/reset2d.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/histogram/reset2d.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* histogram/reset2d.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* histogram/reset2d.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/reset.c gsl-1.10/histogram/reset.c *** gsl-1.9/histogram/reset.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/histogram/reset.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* histogram/reset.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* histogram/reset.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/stat2d.c gsl-1.10/histogram/stat2d.c *** gsl-1.9/histogram/stat2d.c 2003-07-25 16:18:11.000000000 +0100 --- gsl-1.10/histogram/stat2d.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 3,9 **** * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as ! * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, --- 3,9 ---- * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as ! * published by the Free Software Foundation; either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/stat.c gsl-1.10/histogram/stat.c *** gsl-1.9/histogram/stat.c 2003-07-25 16:18:11.000000000 +0100 --- gsl-1.10/histogram/stat.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 3,9 **** * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as ! * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, --- 3,9 ---- * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as ! * published by the Free Software Foundation; either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/test1d.c gsl-1.10/histogram/test1d.c *** gsl-1.9/histogram/test1d.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/histogram/test1d.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* histogram/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* histogram/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/test1d_resample.c gsl-1.10/histogram/test1d_resample.c *** gsl-1.9/histogram/test1d_resample.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/histogram/test1d_resample.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* histogram/test1d_resample.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* histogram/test1d_resample.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/test1d_trap.c gsl-1.10/histogram/test1d_trap.c *** gsl-1.9/histogram/test1d_trap.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/histogram/test1d_trap.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* histogram/test_trap.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* histogram/test_trap.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/test2d.c gsl-1.10/histogram/test2d.c *** gsl-1.9/histogram/test2d.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/histogram/test2d.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* histogram/test2d.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* histogram/test2d.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/test2d_resample.c gsl-1.10/histogram/test2d_resample.c *** gsl-1.9/histogram/test2d_resample.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/histogram/test2d_resample.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* histogram/test2d_resample.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* histogram/test2d_resample.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/test2d_trap.c gsl-1.10/histogram/test2d_trap.c *** gsl-1.9/histogram/test2d_trap.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/histogram/test2d_trap.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* histogram/test2d_trap.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* histogram/test2d_trap.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/test.c gsl-1.10/histogram/test.c *** gsl-1.9/histogram/test.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/histogram/test.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* histogram/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* histogram/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/histogram/urand.c gsl-1.10/histogram/urand.c *** gsl-1.9/histogram/urand.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/histogram/urand.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* histogram/urand.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* histogram/urand.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ieee-utils/ChangeLog gsl-1.10/ieee-utils/ChangeLog *** gsl-1.9/ieee-utils/ChangeLog 2005-03-05 12:06:13.000000000 +0000 --- gsl-1.10/ieee-utils/ChangeLog 2007-08-02 20:07:15.000000000 +0100 *************** *** 1,3 **** --- 1,12 ---- + 2007-06-21 Brian Gough + + * fp.c: allow universal binaries by checking __ppc__ and __i386__ + preprocessor definitions on Darwin + + 2007-04-23 Brian Gough + + * fp-gnux86.c (gsl_ieee_set_mode): added support for MXCSR register + 2005-02-11 Brian Gough * fp-gnuc99.c (gsl_ieee_set_mode): added an #ifdef for the default diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ieee-utils/endian.c gsl-1.10/ieee-utils/endian.c *** gsl-1.9/ieee-utils/endian.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/ieee-utils/endian.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* ieee-utils/endian.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* ieee-utils/endian.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ieee-utils/env.c gsl-1.10/ieee-utils/env.c *** gsl-1.9/ieee-utils/env.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/ieee-utils/env.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* ieee-utils/env.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* ieee-utils/env.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ieee-utils/fp-aix.c gsl-1.10/ieee-utils/fp-aix.c *** gsl-1.9/ieee-utils/fp-aix.c 2005-11-15 16:23:08.000000000 +0000 --- gsl-1.10/ieee-utils/fp-aix.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ieee-utils/fp.c gsl-1.10/ieee-utils/fp.c *** gsl-1.9/ieee-utils/fp.c 2006-04-18 18:04:36.000000000 +0100 --- gsl-1.10/ieee-utils/fp.c 2007-08-02 20:07:15.000000000 +0100 *************** *** 30,39 **** #include "fp-netbsd.c" #elif HAVE_OPENBSD_IEEE_INTERFACE #include "fp-openbsd.c" #elif HAVE_DARWIN_IEEE_INTERFACE ! #include "fp-darwin.c" #elif HAVE_DARWIN86_IEEE_INTERFACE ! #include "fp-darwin86.c" #elif HAVE_DECL_FEENABLEEXCEPT || HAVE_DECL_FESETTRAPENABLE #include "fp-gnuc99.c" #else --- 30,48 ---- #include "fp-netbsd.c" #elif HAVE_OPENBSD_IEEE_INTERFACE #include "fp-openbsd.c" + /* Try to handle universal binaries */ #elif HAVE_DARWIN_IEEE_INTERFACE ! # if defined(__i386__) ! # include "fp-darwin86.c" ! #else ! # include "fp-darwin.c" ! # endif #elif HAVE_DARWIN86_IEEE_INTERFACE ! # if defined(__ppc__) ! # include "fp-darwin.c" ! # else ! # include "fp-darwin86.c" ! #endif #elif HAVE_DECL_FEENABLEEXCEPT || HAVE_DECL_FESETTRAPENABLE #include "fp-gnuc99.c" #else diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ieee-utils/fp-darwin86.c gsl-1.10/ieee-utils/fp-darwin86.c *** gsl-1.9/ieee-utils/fp-darwin86.c 2006-04-18 18:04:36.000000000 +0100 --- gsl-1.10/ieee-utils/fp-darwin86.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ieee-utils/fp-darwin.c gsl-1.10/ieee-utils/fp-darwin.c *** gsl-1.9/ieee-utils/fp-darwin.c 2005-11-15 16:23:08.000000000 +0000 --- gsl-1.10/ieee-utils/fp-darwin.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ieee-utils/fp-freebsd.c gsl-1.10/ieee-utils/fp-freebsd.c *** gsl-1.9/ieee-utils/fp-freebsd.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ieee-utils/fp-freebsd.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ieee-utils/fp-gnuc99.c gsl-1.10/ieee-utils/fp-gnuc99.c *** gsl-1.9/ieee-utils/fp-gnuc99.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ieee-utils/fp-gnuc99.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* ieee-utils/fp-gnuc99.c * ! * Copyright (C) 2003, 2004 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* ieee-utils/fp-gnuc99.c * ! * Copyright (C) 2003, 2004, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ieee-utils/fp-gnum68k.c gsl-1.10/ieee-utils/fp-gnum68k.c *** gsl-1.9/ieee-utils/fp-gnum68k.c 2005-11-15 16:23:08.000000000 +0000 --- gsl-1.10/ieee-utils/fp-gnum68k.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* ieee-utils/fp-gnum68k.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* ieee-utils/fp-gnum68k.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ieee-utils/fp-gnuppc.c gsl-1.10/ieee-utils/fp-gnuppc.c *** gsl-1.9/ieee-utils/fp-gnuppc.c 2005-11-15 16:23:08.000000000 +0000 --- gsl-1.10/ieee-utils/fp-gnuppc.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* ieee-utils/fp-gnuppc.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough, John Fisher * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* ieee-utils/fp-gnuppc.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough, John Fisher * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ieee-utils/fp-gnusparc.c gsl-1.10/ieee-utils/fp-gnusparc.c *** gsl-1.9/ieee-utils/fp-gnusparc.c 2005-11-15 16:23:08.000000000 +0000 --- gsl-1.10/ieee-utils/fp-gnusparc.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* ieee-utils/fp-gnusparc.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* ieee-utils/fp-gnusparc.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ieee-utils/fp-gnux86.c gsl-1.10/ieee-utils/fp-gnux86.c *** gsl-1.9/ieee-utils/fp-gnux86.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ieee-utils/fp-gnux86.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* ieee-utils/fp-gnux86.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* ieee-utils/fp-gnux86.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 95,99 **** --- 95,111 ---- _FPU_SETCW(mode) ; + #if HAVE_FPU_X86_SSE + #define _FPU_SETMXCSR(cw_sse) asm volatile ("ldmxcsr %0" : : "m" (*&cw_sse)) + { + unsigned int mode_sse = 0; + + mode_sse |= (mode & 0x3f)<<7; /* exception masks */ + mode_sse |= (mode & 0xc00)<<3; /* rounding control */ + + _FPU_SETMXCSR(mode_sse); + } + #endif + return GSL_SUCCESS ; } diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ieee-utils/fp-hpux11.c gsl-1.10/ieee-utils/fp-hpux11.c *** gsl-1.9/ieee-utils/fp-hpux11.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ieee-utils/fp-hpux11.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* ieee-utils/fp-hpux11.c * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* ieee-utils/fp-hpux11.c * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ieee-utils/fp-hpux.c gsl-1.10/ieee-utils/fp-hpux.c *** gsl-1.9/ieee-utils/fp-hpux.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ieee-utils/fp-hpux.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* ieee-utils/fp-hpux.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* ieee-utils/fp-hpux.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ieee-utils/fp-irix.c gsl-1.10/ieee-utils/fp-irix.c *** gsl-1.9/ieee-utils/fp-irix.c 2005-11-15 16:23:08.000000000 +0000 --- gsl-1.10/ieee-utils/fp-irix.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ieee-utils/fp-netbsd.c gsl-1.10/ieee-utils/fp-netbsd.c *** gsl-1.9/ieee-utils/fp-netbsd.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ieee-utils/fp-netbsd.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ieee-utils/fp-openbsd.c gsl-1.10/ieee-utils/fp-openbsd.c *** gsl-1.9/ieee-utils/fp-openbsd.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ieee-utils/fp-openbsd.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ieee-utils/fp-os2emx.c gsl-1.10/ieee-utils/fp-os2emx.c *** gsl-1.9/ieee-utils/fp-os2emx.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ieee-utils/fp-os2emx.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ieee-utils/fp-solaris.c gsl-1.10/ieee-utils/fp-solaris.c *** gsl-1.9/ieee-utils/fp-solaris.c 2005-11-15 16:23:08.000000000 +0000 --- gsl-1.10/ieee-utils/fp-solaris.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* ieee-utils/fp-solaris.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* ieee-utils/fp-solaris.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ieee-utils/fp-sunos4.c gsl-1.10/ieee-utils/fp-sunos4.c *** gsl-1.9/ieee-utils/fp-sunos4.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ieee-utils/fp-sunos4.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* ieee-utils/fp-sunos4.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* ieee-utils/fp-sunos4.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ieee-utils/fp-tru64.c gsl-1.10/ieee-utils/fp-tru64.c *** gsl-1.9/ieee-utils/fp-tru64.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ieee-utils/fp-tru64.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ieee-utils/fp-unknown.c gsl-1.10/ieee-utils/fp-unknown.c *** gsl-1.9/ieee-utils/fp-unknown.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ieee-utils/fp-unknown.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* ieee-utils/fp-unknown.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* ieee-utils/fp-unknown.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ieee-utils/gsl_ieee_utils.h gsl-1.10/ieee-utils/gsl_ieee_utils.h *** gsl-1.9/ieee-utils/gsl_ieee_utils.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ieee-utils/gsl_ieee_utils.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* ieee-utils/gsl_ieee_utils.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* ieee-utils/gsl_ieee_utils.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ieee-utils/Makefile.in gsl-1.10/ieee-utils/Makefile.in *** gsl-1.9/ieee-utils/Makefile.in 2007-02-20 13:09:07.000000000 +0000 --- gsl-1.10/ieee-utils/Makefile.in 2007-09-13 16:41:42.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 57,73 **** test_OBJECTS = $(am_test_OBJECTS) test_DEPENDENCIES = libgslieeeutils.la ../err/libgslerr.la \ ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslieeeutils_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslieeeutils_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 53,70 ---- test_OBJECTS = $(am_test_OBJECTS) test_DEPENDENCIES = libgslieeeutils.la ../err/libgslerr.la \ ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslieeeutils_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslieeeutils_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 101,106 **** --- 98,104 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 108,114 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 106,111 ---- *************** *** 116,132 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 113,126 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 138,146 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 132,139 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 150,164 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 143,158 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 168,195 **** --- 162,200 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslieeeutils.la pkginclude_HEADERS = gsl_ieee_utils.h libgslieeeutils_la_SOURCES = print.c make_rep.c gsl_ieee_utils.h env.c fp.c read.c *************** *** 241,247 **** rm -f "$${dir}/so_locations"; \ done libgslieeeutils.la: $(libgslieeeutils_la_OBJECTS) $(libgslieeeutils_la_DEPENDENCIES) ! $(LINK) $(libgslieeeutils_la_LDFLAGS) $(libgslieeeutils_la_OBJECTS) $(libgslieeeutils_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 246,252 ---- rm -f "$${dir}/so_locations"; \ done libgslieeeutils.la: $(libgslieeeutils_la_OBJECTS) $(libgslieeeutils_la_DEPENDENCIES) ! $(LINK) $(libgslieeeutils_la_OBJECTS) $(libgslieeeutils_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 251,257 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 256,262 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 273,285 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 278,286 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 344,352 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 345,353 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 355,361 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 356,362 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 367,373 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 368,374 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 417,438 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 418,438 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 450,456 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 450,456 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 484,490 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 484,490 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 498,509 **** --- 498,517 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 523,543 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 531,554 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ieee-utils/make_rep.c gsl-1.10/ieee-utils/make_rep.c *** gsl-1.9/ieee-utils/make_rep.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ieee-utils/make_rep.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* ieee-utils/make_rep.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* ieee-utils/make_rep.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ieee-utils/print.c gsl-1.10/ieee-utils/print.c *** gsl-1.9/ieee-utils/print.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ieee-utils/print.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* ieee-utils/print.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* ieee-utils/print.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ieee-utils/read.c gsl-1.10/ieee-utils/read.c *** gsl-1.9/ieee-utils/read.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ieee-utils/read.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* ieee-utils/read.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* ieee-utils/read.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ieee-utils/standardize.c gsl-1.10/ieee-utils/standardize.c *** gsl-1.9/ieee-utils/standardize.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ieee-utils/standardize.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* ieee-utils/standardize.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* ieee-utils/standardize.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ieee-utils/test.c gsl-1.10/ieee-utils/test.c *** gsl-1.9/ieee-utils/test.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ieee-utils/test.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* ieee-utils/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* ieee-utils/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/INSTALL gsl-1.10/INSTALL *** gsl-1.9/INSTALL 2007-01-23 16:57:07.000000000 +0000 --- gsl-1.10/INSTALL 2007-09-10 12:00:33.000000000 +0100 *************** *** 141,147 **** you can try building the library with a larger linker table-of-contents by setting LDFLAGS before compilation, ! LDFLAGS="-Wl,-bbigtoc" ./configure On older versions of AIX (e.g. 4.2) the size of the command-line is limited to 24kb, which causes linking to fail (due to the large number --- 141,147 ---- you can try building the library with a larger linker table-of-contents by setting LDFLAGS before compilation, ! ./configure LDFLAGS="-Wl,-bbigtoc" On older versions of AIX (e.g. 4.2) the size of the command-line is limited to 24kb, which causes linking to fail (due to the large number *************** *** 194,200 **** To compile GSL you need to select ANSI C mode with the following configuration option: ! CFLAGS="-Ae" ./configure To switch on optimization use CFLAGS="-Ae -O". --- 194,200 ---- To compile GSL you need to select ANSI C mode with the following configuration option: ! ./configure CFLAGS="-Ae" To switch on optimization use CFLAGS="-Ae -O". *************** *** 209,215 **** The 32 bit IRIX compiler gives warnings about "long double" not being supported. These can be ignored or turned off with, ! CFLAGS="-woff 728" ./configure or --- 209,215 ---- The 32 bit IRIX compiler gives warnings about "long double" not being supported. These can be ignored or turned off with, ! ./configure CFLAGS="-woff 728" or *************** *** 225,231 **** For 64-bit compilation use the following options, ! CC=cc CFLAGS="-64" LDFLAGS="-64" ./configure or for gcc --- 225,231 ---- For 64-bit compilation use the following options, ! ./configure CC=cc CFLAGS="-64" LDFLAGS="-64" or for gcc *************** *** 274,280 **** Hints for Microsoft Windows =========================== ! GSL should compile cleanly with GCC under Cygwin on Microsoft Windows. With Mingw/MSYS some floating point issues have been reported which cause failures in the monte/ test directory. --- 274,282 ---- Hints for Microsoft Windows =========================== ! GSL should compile with GCC under Cygwin on Microsoft Windows. ! There is a gsl package in the standard Cygwin distribution which ! contains any patches needed. With Mingw/MSYS some floating point issues have been reported which cause failures in the monte/ test directory. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/append.c gsl-1.10/integration/append.c *** gsl-1.9/integration/append.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/append.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/append.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/append.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/err.c gsl-1.10/integration/err.c *** gsl-1.9/integration/err.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/err.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/err.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/err.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/gsl_integration.h gsl-1.10/integration/gsl_integration.h *** gsl-1.9/integration/gsl_integration.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/gsl_integration.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/gsl_integration.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/gsl_integration.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/initialise.c gsl-1.10/integration/initialise.c *** gsl-1.9/integration/initialise.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/initialise.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/initialise.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/initialise.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/Makefile.in gsl-1.10/integration/Makefile.in *** gsl-1.9/integration/Makefile.in 2007-02-20 13:09:08.000000000 +0000 --- gsl-1.10/integration/Makefile.in 2007-09-13 16:41:42.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 60,76 **** test_DEPENDENCIES = libgslintegration.la \ ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la \ ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslintegration_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslintegration_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 56,73 ---- test_DEPENDENCIES = libgslintegration.la \ ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la \ ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslintegration_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslintegration_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 104,109 **** --- 101,107 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 111,117 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 109,114 ---- *************** *** 119,135 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 116,129 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 141,149 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 135,142 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 153,167 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 146,161 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 171,198 **** --- 165,203 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslintegration.la INCLUDES = -I$(top_builddir) libgslintegration_la_SOURCES = qk15.c qk21.c qk31.c qk41.c qk51.c qk61.c qk.c qng.c qng.h qag.c qags.c qagp.c workspace.c qcheb.c qawc.c qmomo.c qaws.c qmomof.c qawo.c qawf.c *************** *** 244,250 **** rm -f "$${dir}/so_locations"; \ done libgslintegration.la: $(libgslintegration_la_OBJECTS) $(libgslintegration_la_DEPENDENCIES) ! $(LINK) $(libgslintegration_la_LDFLAGS) $(libgslintegration_la_OBJECTS) $(libgslintegration_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 249,255 ---- rm -f "$${dir}/so_locations"; \ done libgslintegration.la: $(libgslintegration_la_OBJECTS) $(libgslintegration_la_DEPENDENCIES) ! $(LINK) $(libgslintegration_la_OBJECTS) $(libgslintegration_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 254,260 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 259,265 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 276,288 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 281,289 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 347,355 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 348,356 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 358,364 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 359,365 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 370,376 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 371,377 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 420,441 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 421,441 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 453,459 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 453,459 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 487,493 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 487,493 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 501,512 **** --- 501,520 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 526,546 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 534,557 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/ptsort.c gsl-1.10/integration/ptsort.c *** gsl-1.9/integration/ptsort.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/ptsort.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/ptsort.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/ptsort.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/qag.c gsl-1.10/integration/qag.c *** gsl-1.9/integration/qag.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/qag.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/qag.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/qag.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/qagp.c gsl-1.10/integration/qagp.c *** gsl-1.9/integration/qagp.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/qagp.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/qagp.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/qagp.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/qags.c gsl-1.10/integration/qags.c *** gsl-1.9/integration/qags.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/qags.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/qags.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/qags.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/qawc.c gsl-1.10/integration/qawc.c *** gsl-1.9/integration/qawc.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/qawc.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/qawc.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/qawc.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/qawf.c gsl-1.10/integration/qawf.c *** gsl-1.9/integration/qawf.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/qawf.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/qawf.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/qawf.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/qawo.c gsl-1.10/integration/qawo.c *** gsl-1.9/integration/qawo.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/qawo.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/qawo.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/qawo.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/qaws.c gsl-1.10/integration/qaws.c *** gsl-1.9/integration/qaws.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/qaws.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/qaws.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/qaws.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/qc25c.c gsl-1.10/integration/qc25c.c *** gsl-1.9/integration/qc25c.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/qc25c.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/qc25c.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/qc25c.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/qc25f.c gsl-1.10/integration/qc25f.c *** gsl-1.9/integration/qc25f.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/qc25f.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/qc25f.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/qc25f.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/qc25s.c gsl-1.10/integration/qc25s.c *** gsl-1.9/integration/qc25s.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/qc25s.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/qc25s.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/qc25s.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/qcheb.c gsl-1.10/integration/qcheb.c *** gsl-1.9/integration/qcheb.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/qcheb.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/qcheb.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/qcheb.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/qelg.c gsl-1.10/integration/qelg.c *** gsl-1.9/integration/qelg.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/qelg.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/qelg.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/qelg.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/qk15.c gsl-1.10/integration/qk15.c *** gsl-1.9/integration/qk15.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/qk15.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/qk15.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/qk15.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/qk21.c gsl-1.10/integration/qk21.c *** gsl-1.9/integration/qk21.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/qk21.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/qk21.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/qk21.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/qk31.c gsl-1.10/integration/qk31.c *** gsl-1.9/integration/qk31.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/qk31.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/qk31.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/qk31.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/qk41.c gsl-1.10/integration/qk41.c *** gsl-1.9/integration/qk41.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/qk41.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/qk41.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/qk41.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/qk51.c gsl-1.10/integration/qk51.c *** gsl-1.9/integration/qk51.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/qk51.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/qk51.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/qk51.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/qk61.c gsl-1.10/integration/qk61.c *** gsl-1.9/integration/qk61.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/qk61.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/qk61.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/qk61.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/qk.c gsl-1.10/integration/qk.c *** gsl-1.9/integration/qk.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/qk.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/qk.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/qk.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/qmomo.c gsl-1.10/integration/qmomo.c *** gsl-1.9/integration/qmomo.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/qmomo.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/qmomo.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/qmomo.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/qmomof.c gsl-1.10/integration/qmomof.c *** gsl-1.9/integration/qmomof.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/qmomof.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/qmomof.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/qmomof.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/qng.c gsl-1.10/integration/qng.c *** gsl-1.9/integration/qng.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/qng.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/qng.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/qng.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/qng.h gsl-1.10/integration/qng.h *** gsl-1.9/integration/qng.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/qng.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/qng.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/qng.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/qpsrt2.c gsl-1.10/integration/qpsrt2.c *** gsl-1.9/integration/qpsrt2.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/qpsrt2.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/qpsrt2.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/qpsrt2.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/qpsrt.c gsl-1.10/integration/qpsrt.c *** gsl-1.9/integration/qpsrt.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/qpsrt.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/qpsrt.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/qpsrt.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/test.c gsl-1.10/integration/test.c *** gsl-1.9/integration/test.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/test.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/tests.c gsl-1.10/integration/tests.c *** gsl-1.9/integration/tests.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/tests.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/tests.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/tests.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/tests.h gsl-1.10/integration/tests.h *** gsl-1.9/integration/tests.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/tests.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/tests.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/tests.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/TODO gsl-1.10/integration/TODO *** gsl-1.9/integration/TODO 2005-06-26 14:27:23.000000000 +0100 --- gsl-1.10/integration/TODO 2007-08-15 19:08:21.000000000 +0100 *************** *** 9,11 **** --- 9,21 ---- * Someone to volunteer to do Cubature, e.g as provided by Cubpack. + + * ACM Transactions on Mathematical Software (TOMS) archive + Volume 33 , Issue 3 (August 2007) + + Algorithm 867: QUADLOG---a package of routines for generating + gauss-related quadrature for two classes of logarithmic weight functions + Nelson H. F. Beebe, James S. Ball + Article No. 20 + Full text available: pdfPdf (209 KB) + Additional Information: _full citation, abstract, references, index terms diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/util.c gsl-1.10/integration/util.c *** gsl-1.9/integration/util.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/util.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/util.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/util.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/integration/workspace.c gsl-1.10/integration/workspace.c *** gsl-1.9/integration/workspace.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/integration/workspace.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* integration/workspace.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* integration/workspace.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/interpolation/accel.c gsl-1.10/interpolation/accel.c *** gsl-1.9/interpolation/accel.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/interpolation/accel.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/interpolation/akima.c gsl-1.10/interpolation/akima.c *** gsl-1.9/interpolation/akima.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/interpolation/akima.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/interpolation/bsearch.c gsl-1.10/interpolation/bsearch.c *** gsl-1.9/interpolation/bsearch.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/interpolation/bsearch.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/interpolation/bsearch.h gsl-1.10/interpolation/bsearch.h *** gsl-1.9/interpolation/bsearch.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/interpolation/bsearch.h 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/interpolation/ChangeLog gsl-1.10/interpolation/ChangeLog *** gsl-1.9/interpolation/ChangeLog 2005-12-24 17:34:49.000000000 +0000 --- gsl-1.10/interpolation/ChangeLog 2007-03-14 17:27:06.000000000 +0000 *************** *** 1,3 **** --- 1,8 ---- + 2007-03-14 Brian Gough + + * interp.c (gsl_interp_init): added check for monotonically + increasing x + 2005-12-24 Brian Gough * cspline.c (cspline_init_periodic): fix invalid memory access of diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/interpolation/cspline.c gsl-1.10/interpolation/cspline.c *** gsl-1.9/interpolation/cspline.c 2005-12-24 17:34:49.000000000 +0000 --- gsl-1.10/interpolation/cspline.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/interpolation/gsl_interp.h gsl-1.10/interpolation/gsl_interp.h *** gsl-1.9/interpolation/gsl_interp.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/interpolation/gsl_interp.h 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/interpolation/gsl_spline.h gsl-1.10/interpolation/gsl_spline.h *** gsl-1.9/interpolation/gsl_spline.h 2005-12-12 16:20:22.000000000 +0000 --- gsl-1.10/interpolation/gsl_spline.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* interpolation/gsl_spline.h * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* interpolation/gsl_spline.h * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/interpolation/integ_eval.h gsl-1.10/interpolation/integ_eval.h *** gsl-1.9/interpolation/integ_eval.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/interpolation/integ_eval.h 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/interpolation/interp.c gsl-1.10/interpolation/interp.c *** gsl-1.9/interpolation/interp.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/interpolation/interp.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* interpolation/interp.c * * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,11 ---- /* interpolation/interp.c * + * Copyright (C) 2007 Brian Gough * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 68,78 **** int gsl_interp_init (gsl_interp * interp, const double x_array[], const double y_array[], size_t size) { if (size != interp->size) { GSL_ERROR ("data must match size of interpolation object", GSL_EINVAL); } ! interp->xmin = x_array[0]; interp->xmax = x_array[size - 1]; --- 69,89 ---- int gsl_interp_init (gsl_interp * interp, const double x_array[], const double y_array[], size_t size) { + size_t i; + if (size != interp->size) { GSL_ERROR ("data must match size of interpolation object", GSL_EINVAL); } ! ! for (i = 1; i < size; i++) ! { ! if (!(x_array[i-1] < x_array[i])) ! { ! GSL_ERROR ("x values must be monotonically increasing", GSL_EINVAL); ! } ! } ! interp->xmin = x_array[0]; interp->xmax = x_array[size - 1]; diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/interpolation/linear.c gsl-1.10/interpolation/linear.c *** gsl-1.9/interpolation/linear.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/interpolation/linear.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/interpolation/Makefile.in gsl-1.10/interpolation/Makefile.in *** gsl-1.9/interpolation/Makefile.in 2007-02-20 13:09:08.000000000 +0000 --- gsl-1.10/interpolation/Makefile.in 2007-09-13 16:41:42.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 62,78 **** ../complex/libgslcomplex.la ../cblas/libgslcblas.la \ ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la \ ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslinterpolation_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslinterpolation_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 58,75 ---- ../complex/libgslcomplex.la ../cblas/libgslcblas.la \ ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la \ ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslinterpolation_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslinterpolation_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 106,111 **** --- 103,109 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 113,119 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 111,116 ---- *************** *** 121,137 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 118,131 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 143,151 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 137,144 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 155,169 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 148,163 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 173,200 **** --- 167,205 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslinterpolation.la pkginclude_HEADERS = gsl_interp.h gsl_spline.h libgslinterpolation_la_SOURCES = accel.c akima.c bsearch.c cspline.c interp.c linear.c integ_eval.h spline.c poly.c *************** *** 246,252 **** rm -f "$${dir}/so_locations"; \ done libgslinterpolation.la: $(libgslinterpolation_la_OBJECTS) $(libgslinterpolation_la_DEPENDENCIES) ! $(LINK) $(libgslinterpolation_la_LDFLAGS) $(libgslinterpolation_la_OBJECTS) $(libgslinterpolation_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 251,257 ---- rm -f "$${dir}/so_locations"; \ done libgslinterpolation.la: $(libgslinterpolation_la_OBJECTS) $(libgslinterpolation_la_DEPENDENCIES) ! $(LINK) $(libgslinterpolation_la_OBJECTS) $(libgslinterpolation_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 256,262 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 261,267 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 278,290 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 283,291 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 349,357 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 350,358 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 360,366 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 361,367 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 372,378 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 373,379 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 422,443 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 423,443 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 455,461 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 455,461 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 489,495 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 489,495 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 503,514 **** --- 503,522 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 528,548 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 536,559 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/interpolation/poly.c gsl-1.10/interpolation/poly.c *** gsl-1.9/interpolation/poly.c 2005-08-22 16:22:22.000000000 +0100 --- gsl-1.10/interpolation/poly.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/interpolation/spline.c gsl-1.10/interpolation/spline.c *** gsl-1.9/interpolation/spline.c 2005-12-12 16:20:22.000000000 +0000 --- gsl-1.10/interpolation/spline.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* interpolation/spline.c * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* interpolation/spline.c * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/interpolation/test.c gsl-1.10/interpolation/test.c *** gsl-1.9/interpolation/test.c 2005-12-24 17:34:49.000000000 +0000 --- gsl-1.10/interpolation/test.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/linalg/apply_givens.c gsl-1.10/linalg/apply_givens.c *** gsl-1.9/linalg/apply_givens.c 2006-06-01 13:14:20.000000000 +0100 --- gsl-1.10/linalg/apply_givens.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,11 **** /* linalg/apply_givens.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 Gerard Jungman, Brian Gough * Copyright (C) 2004 Joerg Wensch, modifications for LQ. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,11 ---- /* linalg/apply_givens.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2007 Gerard Jungman, Brian Gough * Copyright (C) 2004 Joerg Wensch, modifications for LQ. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/linalg/balance.c gsl-1.10/linalg/balance.c *** gsl-1.9/linalg/balance.c 2006-08-14 15:18:11.000000000 +0100 --- gsl-1.10/linalg/balance.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* linalg/balance.c * ! * Copyright (C) 2001, 2004 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* linalg/balance.c * ! * Copyright (C) 2001, 2004, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/linalg/balancemat.c gsl-1.10/linalg/balancemat.c *** gsl-1.9/linalg/balancemat.c 2006-09-22 14:42:46.000000000 +0100 --- gsl-1.10/linalg/balancemat.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/linalg/bidiag.c gsl-1.10/linalg/bidiag.c *** gsl-1.9/linalg/bidiag.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/linalg/bidiag.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* linalg/bidiag.c * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* linalg/bidiag.c * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/linalg/ChangeLog gsl-1.10/linalg/ChangeLog *** gsl-1.9/linalg/ChangeLog 2006-08-14 15:18:11.000000000 +0100 --- gsl-1.10/linalg/ChangeLog 2007-08-27 22:27:32.000000000 +0100 *************** *** 1,3 **** --- 1,18 ---- + 2007-08-27 Brian Gough + + * tridiag.c: use GSL_ERROR for failed allocation, signal + GSL_EZERODIV if matrix is not positive definite + + 2007-08-17 Brian Gough + + * svd.c (gsl_linalg_SV_decomp): bail out if number of iterations + exceeds 100*N + + 2007-08-16 Brian Gough + + * test.c (main): add some svd tests with small values that will + cause underflow in intermediate steps of SVD iteration + 2006-08-14 Brian Gough * balancemat.c: balance a general matrix D^-1 A D for rows and diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/linalg/cholesky.c gsl-1.10/linalg/cholesky.c *** gsl-1.9/linalg/cholesky.c 2006-02-10 16:01:54.000000000 +0000 --- gsl-1.10/linalg/cholesky.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 4,14 **** * * 03 May 2000: Modified for GSL by Brian Gough * 29 Jul 2005: Additions by Gerard Jungman ! * Copyright (C) 2000,2001, 2002, 2003, 2005 Brian Gough, Gerard Jungman * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2, or (at your option) any * later version. * * This source is distributed in the hope that it will be useful, but WITHOUT --- 4,14 ---- * * 03 May 2000: Modified for GSL by Brian Gough * 29 Jul 2005: Additions by Gerard Jungman ! * Copyright (C) 2000,2001, 2002, 2003, 2005, 2007 Brian Gough, Gerard Jungman * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 3, or (at your option) any * later version. * * This source is distributed in the hope that it will be useful, but WITHOUT diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/linalg/choleskyc.c gsl-1.10/linalg/choleskyc.c *** gsl-1.9/linalg/choleskyc.c 1970-01-01 01:00:00.000000000 +0100 --- gsl-1.10/linalg/choleskyc.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 0 **** --- 1,203 ---- + /* linalg/choleskyc.c + * + * Copyright (C) 2007 Patrick Alken + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or (at + * your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + + #include + #include + #include + #include + #include + #include + #include + #include + #include + + /* + * This module contains routines related to the Cholesky decomposition + * of a complex Hermitian positive definite matrix. + */ + + static void cholesky_complex_conj_vector(gsl_vector_complex *v); + + /* + gsl_linalg_complex_cholesky_decomp() + Perform the Cholesky decomposition on a Hermitian positive definite + matrix. See Golub & Van Loan, "Matrix Computations" (3rd ed), + algorithm 4.2.2. + + Inputs: A - (input/output) complex postive definite matrix + + Return: success or error + + The lower triangle of A is overwritten with the Cholesky decomposition + */ + + int + gsl_linalg_complex_cholesky_decomp(gsl_matrix_complex *A) + { + const size_t N = A->size1; + + if (N != A->size2) + { + GSL_ERROR("cholesky decomposition requires square matrix", GSL_ENOTSQR); + } + else + { + size_t j; + gsl_complex z; + double ajj; + + for (j = 0; j < N; ++j) + { + z = gsl_matrix_complex_get(A, j, j); + ajj = GSL_REAL(z); + + if (j > 0) + { + gsl_vector_complex_const_view aj = + gsl_matrix_complex_const_subrow(A, j, 0, j); + + gsl_blas_zdotc(&aj.vector, &aj.vector, &z); + ajj -= GSL_REAL(z); + } + + if (ajj <= 0.0) + { + GSL_ERROR("matrix is not positive definite", GSL_EDOM); + } + + ajj = sqrt(ajj); + GSL_SET_COMPLEX(&z, ajj, 0.0); + gsl_matrix_complex_set(A, j, j, z); + + if (j < N - 1) + { + gsl_vector_complex_view av = + gsl_matrix_complex_subcolumn(A, j, j + 1, N - j - 1); + + if (j > 0) + { + gsl_vector_complex_view aj = + gsl_matrix_complex_subrow(A, j, 0, j); + gsl_matrix_complex_view am = + gsl_matrix_complex_submatrix(A, j + 1, 0, N - j - 1, j); + + cholesky_complex_conj_vector(&aj.vector); + + gsl_blas_zgemv(CblasNoTrans, + GSL_COMPLEX_NEGONE, + &am.matrix, + &aj.vector, + GSL_COMPLEX_ONE, + &av.vector); + + cholesky_complex_conj_vector(&aj.vector); + } + + gsl_blas_zdscal(1.0 / ajj, &av.vector); + } + } + + return GSL_SUCCESS; + } + } /* gsl_linalg_complex_cholesky_decomp() */ + + /* + gsl_linalg_complex_cholesky_solve() + Solve A x = b where A is in cholesky form + */ + + int + gsl_linalg_complex_cholesky_solve (const gsl_matrix_complex * cholesky, + const gsl_vector_complex * b, + gsl_vector_complex * x) + { + if (cholesky->size1 != cholesky->size2) + { + GSL_ERROR ("cholesky matrix must be square", GSL_ENOTSQR); + } + else if (cholesky->size1 != b->size) + { + GSL_ERROR ("matrix size must match b size", GSL_EBADLEN); + } + else if (cholesky->size2 != x->size) + { + GSL_ERROR ("matrix size must match solution size", GSL_EBADLEN); + } + else + { + gsl_vector_complex_memcpy (x, b); + + /* solve for y using forward-substitution, L y = b */ + + gsl_blas_ztrsv (CblasLower, CblasNoTrans, CblasNonUnit, cholesky, x); + + /* perform back-substitution, L^H x = y */ + + gsl_blas_ztrsv (CblasLower, CblasConjTrans, CblasNonUnit, cholesky, x); + + return GSL_SUCCESS; + } + } /* gsl_linalg_complex_cholesky_solve() */ + + /* + gsl_linalg_complex_cholesky_svx() + Solve A x = b in place where A is in cholesky form + */ + + int + gsl_linalg_complex_cholesky_svx (const gsl_matrix_complex * cholesky, + gsl_vector_complex * x) + { + if (cholesky->size1 != cholesky->size2) + { + GSL_ERROR ("cholesky matrix must be square", GSL_ENOTSQR); + } + else if (cholesky->size2 != x->size) + { + GSL_ERROR ("matrix size must match solution size", GSL_EBADLEN); + } + else + { + /* solve for y using forward-substitution, L y = b */ + + gsl_blas_ztrsv (CblasLower, CblasNoTrans, CblasNonUnit, cholesky, x); + + /* perform back-substitution, L^H x = y */ + + gsl_blas_ztrsv (CblasLower, CblasConjTrans, CblasNonUnit, cholesky, x); + + return GSL_SUCCESS; + } + } /* gsl_linalg_complex_cholesky_svx() */ + + /******************************************** + * INTERNAL ROUTINES * + ********************************************/ + + static void + cholesky_complex_conj_vector(gsl_vector_complex *v) + { + size_t i; + + for (i = 0; i < v->size; ++i) + { + gsl_complex z = gsl_vector_complex_get(v, i); + gsl_vector_complex_set(v, i, gsl_complex_conjugate(z)); + } + } /* cholesky_complex_conj_vector() */ diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/linalg/exponential.c gsl-1.10/linalg/exponential.c *** gsl-1.9/linalg/exponential.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/linalg/exponential.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* linalg/exponential.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* linalg/exponential.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/linalg/givens.c gsl-1.10/linalg/givens.c *** gsl-1.9/linalg/givens.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/linalg/givens.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* linalg/givens.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* linalg/givens.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/linalg/gsl_linalg.h gsl-1.10/linalg/gsl_linalg.h *** gsl-1.9/linalg/gsl_linalg.h 2006-09-18 22:26:17.000000000 +0100 --- gsl-1.10/linalg/gsl_linalg.h 2007-07-02 17:29:29.000000000 +0100 *************** *** 1,10 **** /* linalg/gsl_linalg.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* linalg/gsl_linalg.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2006, 2007 Gerard Jungman, Brian Gough, Patrick Alken * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 109,129 **** const gsl_vector_complex * v, gsl_matrix_complex * A); int gsl_linalg_complex_householder_hv (gsl_complex tau, const gsl_vector_complex * v, gsl_vector_complex * w); /* Hessenberg reduction */ ! int gsl_linalg_hessenberg(gsl_matrix *A, gsl_vector *tau); int gsl_linalg_hessenberg_unpack(gsl_matrix * H, gsl_vector * tau, gsl_matrix * U); int gsl_linalg_hessenberg_unpack_accum(gsl_matrix * H, gsl_vector * tau, gsl_matrix * U); ! void gsl_linalg_hessenberg_set_zero(gsl_matrix * H); int gsl_linalg_hessenberg_submatrix(gsl_matrix *M, gsl_matrix *A, size_t top, gsl_vector *tau); /* Singular Value Decomposition * exceptions: --- 109,139 ---- const gsl_vector_complex * v, gsl_matrix_complex * A); + int gsl_linalg_complex_householder_mh (gsl_complex tau, + const gsl_vector_complex * v, + gsl_matrix_complex * A); + int gsl_linalg_complex_householder_hv (gsl_complex tau, const gsl_vector_complex * v, gsl_vector_complex * w); /* Hessenberg reduction */ ! int gsl_linalg_hessenberg_decomp(gsl_matrix *A, gsl_vector *tau); int gsl_linalg_hessenberg_unpack(gsl_matrix * H, gsl_vector * tau, gsl_matrix * U); int gsl_linalg_hessenberg_unpack_accum(gsl_matrix * H, gsl_vector * tau, gsl_matrix * U); ! int gsl_linalg_hessenberg_set_zero(gsl_matrix * H); int gsl_linalg_hessenberg_submatrix(gsl_matrix *M, gsl_matrix *A, size_t top, gsl_vector *tau); + /* Hessenberg-Triangular reduction */ + + int gsl_linalg_hesstri_decomp(gsl_matrix * A, gsl_matrix * B, + gsl_matrix * U, gsl_matrix * V, + gsl_vector * work); + /* Singular Value Decomposition * exceptions: *************** *** 263,268 **** --- 273,282 ---- const gsl_vector * tau, gsl_vector * v); + int gsl_linalg_QR_QTmat (const gsl_matrix * QR, + const gsl_vector * tau, + gsl_matrix * A); + int gsl_linalg_QR_unpack (const gsl_matrix * QR, const gsl_vector * tau, gsl_matrix * Q, *************** *** 420,425 **** --- 434,449 ---- */ int gsl_linalg_cholesky_decomp_unit(gsl_matrix * A, gsl_vector * D); + /* Complex Cholesky Decomposition */ + + int gsl_linalg_complex_cholesky_decomp (gsl_matrix_complex * A); + + int gsl_linalg_complex_cholesky_solve (const gsl_matrix_complex * cholesky, + const gsl_vector_complex * b, + gsl_vector_complex * x); + + int gsl_linalg_complex_cholesky_svx (const gsl_matrix_complex * cholesky, + gsl_vector_complex * x); /* Symmetric to symmetric tridiagonal decomposition */ diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/linalg/hermtd.c gsl-1.10/linalg/hermtd.c *** gsl-1.9/linalg/hermtd.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/linalg/hermtd.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* linalg/hermtd.c * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* linalg/hermtd.c * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/linalg/hessenberg.c gsl-1.10/linalg/hessenberg.c *** gsl-1.9/linalg/hessenberg.c 2007-02-15 09:26:24.000000000 +0000 --- gsl-1.10/linalg/hessenberg.c 2007-07-02 17:30:56.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 23,29 **** #include /* ! gsl_linalg_hessenberg() Compute the Householder reduction to Hessenberg form of a square N-by-N matrix A. --- 23,29 ---- #include /* ! gsl_linalg_hessenberg_decomp() Compute the Householder reduction to Hessenberg form of a square N-by-N matrix A. *************** *** 64,70 **** */ int ! gsl_linalg_hessenberg(gsl_matrix *A, gsl_vector *tau) { const size_t N = A->size1; --- 64,70 ---- */ int ! gsl_linalg_hessenberg_decomp(gsl_matrix *A, gsl_vector *tau) { const size_t N = A->size1; *************** *** 97,104 **** * of 'tau' that we haven't stored coefficients in yet */ ! c = gsl_matrix_column(A, i); ! c = gsl_vector_subvector(&c.vector, i + 1, N - (i + 1)); hv = gsl_vector_subvector(tau, i + 1, N - (i + 1)); gsl_vector_memcpy(&hv.vector, &c.vector); --- 97,103 ---- * of 'tau' that we haven't stored coefficients in yet */ ! c = gsl_matrix_subcolumn(A, i, i + 1, N - i - 1); hv = gsl_vector_subvector(tau, i + 1, N - (i + 1)); gsl_vector_memcpy(&hv.vector, &c.vector); *************** *** 129,135 **** return GSL_SUCCESS; } ! } /* gsl_linalg_hessenberg() */ /* gsl_linalg_hessenberg_unpack() --- 128,134 ---- return GSL_SUCCESS; } ! } /* gsl_linalg_hessenberg_decomp() */ /* gsl_linalg_hessenberg_unpack() *************** *** 276,286 **** part of H, but eigenvalue solvers need some scratch space with zeros. */ ! void gsl_linalg_hessenberg_set_zero(gsl_matrix * H) { ! const int N = (int) H->size1; ! int i, j; for (j = 0; j < N - 2; ++j) { --- 275,288 ---- part of H, but eigenvalue solvers need some scratch space with zeros. */ ! int gsl_linalg_hessenberg_set_zero(gsl_matrix * H) { ! const size_t N = H->size1; ! size_t i, j; ! ! if (N < 3) ! return GSL_SUCCESS; for (j = 0; j < N - 2; ++j) { *************** *** 289,294 **** --- 291,298 ---- gsl_matrix_set(H, i, j, 0.0); } } + + return GSL_SUCCESS; } /* gsl_linalg_hessenberg_set_zero() */ /* *************** *** 379,386 **** * of 'tau' that we haven't stored coefficients in yet */ ! c = gsl_matrix_column(A, i); ! c = gsl_vector_subvector(&c.vector, i + 1, N - (i + 1)); hv = gsl_vector_subvector(tau, i + 1, N - (i + 1)); gsl_vector_memcpy(&hv.vector, &c.vector); --- 383,389 ---- * of 'tau' that we haven't stored coefficients in yet */ ! c = gsl_matrix_subcolumn(A, i, i + 1, N - i - 1); hv = gsl_vector_subvector(tau, i + 1, N - (i + 1)); gsl_vector_memcpy(&hv.vector, &c.vector); diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/linalg/hesstri.c gsl-1.10/linalg/hesstri.c *** gsl-1.9/linalg/hesstri.c 1970-01-01 01:00:00.000000000 +0100 --- gsl-1.10/linalg/hesstri.c 2007-07-02 17:30:56.000000000 +0100 *************** *** 0 **** --- 1,173 ---- + /* linalg/hesstri.c + * + * Copyright (C) 2006, 2007 Patrick Alken + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or (at + * your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + + #include + #include + + #include + #include + #include + #include + #include + + #include "givens.c" + + /* + * This module contains routines related to the Hessenberg-Triangular + * reduction of two general real matrices + * + * See Golub & Van Loan, "Matrix Computations", 3rd ed, sec 7.7.4 + */ + + /* + gsl_linalg_hesstri_decomp() + Perform a reduction to generalized upper Hessenberg form. + Given A and B, this function overwrites A with an upper Hessenberg + matrix H = U^T A V and B with an upper triangular matrix R = U^T B V + with U and V orthogonal. + + See Golub & Van Loan, "Matrix Computations" (3rd ed) algorithm 7.7.1 + + Inputs: A - real square matrix + B - real square matrix + U - (output) if non-null, U is stored here on output + V - (output) if non-null, V is stored here on output + work - workspace (length n) + + Return: success or error + */ + + int + gsl_linalg_hesstri_decomp(gsl_matrix * A, gsl_matrix * B, gsl_matrix * U, + gsl_matrix * V, gsl_vector * work) + { + const size_t N = A->size1; + + if ((N != A->size2) || (N != B->size1) || (N != B->size2)) + { + GSL_ERROR ("Hessenberg-triangular reduction requires square matrices", + GSL_ENOTSQR); + } + else if (N != work->size) + { + GSL_ERROR ("length of workspace must match matrix dimension", + GSL_EBADLEN); + } + else + { + double cs, sn; /* rotation parameters */ + size_t i, j; /* looping */ + gsl_vector_view xv, yv; /* temporary views */ + + /* B -> Q^T B = R (upper triangular) */ + gsl_linalg_QR_decomp(B, work); + + /* A -> Q^T A */ + gsl_linalg_QR_QTmat(B, work, A); + + /* initialize U and V if desired */ + + if (U) + { + gsl_linalg_QR_unpack(B, work, U, B); + } + else + { + /* zero out lower triangle of B */ + for (j = 0; j < N - 1; ++j) + { + for (i = j + 1; i < N; ++i) + gsl_matrix_set(B, i, j, 0.0); + } + } + + if (V) + gsl_matrix_set_identity(V); + + if (N < 3) + return GSL_SUCCESS; /* nothing more to do */ + + /* reduce A and B */ + for (j = 0; j < N - 2; ++j) + { + for (i = N - 1; i >= (j + 2); --i) + { + /* step 1: rotate rows i - 1, i to kill A(i,j) */ + + /* + * compute G = [ CS SN ] so that G^t [ A(i-1,j) ] = [ * ] + * [-SN CS ] [ A(i, j) ] [ 0 ] + */ + create_givens(gsl_matrix_get(A, i - 1, j), + gsl_matrix_get(A, i, j), + &cs, + &sn); + /* invert so drot() works correctly (G -> G^t) */ + sn = -sn; + + /* compute G^t A(i-1:i, j:n) */ + xv = gsl_matrix_subrow(A, i - 1, j, N - j); + yv = gsl_matrix_subrow(A, i, j, N - j); + gsl_blas_drot(&xv.vector, &yv.vector, cs, sn); + + /* compute G^t B(i-1:i, i-1:n) */ + xv = gsl_matrix_subrow(B, i - 1, i - 1, N - i + 1); + yv = gsl_matrix_subrow(B, i, i - 1, N - i + 1); + gsl_blas_drot(&xv.vector, &yv.vector, cs, sn); + + if (U) + { + /* accumulate U: U -> U G */ + xv = gsl_matrix_column(U, i - 1); + yv = gsl_matrix_column(U, i); + gsl_blas_drot(&xv.vector, &yv.vector, cs, sn); + } + + /* step 2: rotate columns i, i - 1 to kill B(i, i - 1) */ + + create_givens(-gsl_matrix_get(B, i, i), + gsl_matrix_get(B, i, i - 1), + &cs, + &sn); + /* invert so drot() works correctly (G -> G^t) */ + sn = -sn; + + /* compute B(1:i, i-1:i) G */ + xv = gsl_matrix_subcolumn(B, i - 1, 0, i + 1); + yv = gsl_matrix_subcolumn(B, i, 0, i + 1); + gsl_blas_drot(&xv.vector, &yv.vector, cs, sn); + + /* apply to A(1:n, i-1:i) */ + xv = gsl_matrix_column(A, i - 1); + yv = gsl_matrix_column(A, i); + gsl_blas_drot(&xv.vector, &yv.vector, cs, sn); + + if (V) + { + /* accumulate V: V -> V G */ + xv = gsl_matrix_column(V, i - 1); + yv = gsl_matrix_column(V, i); + gsl_blas_drot(&xv.vector, &yv.vector, cs, sn); + } + } + } + + return GSL_SUCCESS; + } + } /* gsl_linalg_hesstri_decomp() */ diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/linalg/hh.c gsl-1.10/linalg/hh.c *** gsl-1.9/linalg/hh.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/linalg/hh.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* linalg/hh.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* linalg/hh.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/linalg/householder.c gsl-1.10/linalg/householder.c *** gsl-1.9/linalg/householder.c 2006-06-01 13:14:20.000000000 +0100 --- gsl-1.10/linalg/householder.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* linalg/householder.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2004 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* linalg/householder.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2004, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/linalg/householdercomplex.c gsl-1.10/linalg/householdercomplex.c *** gsl-1.9/linalg/householdercomplex.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/linalg/householdercomplex.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* linalg/householdercomplex.c * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* linalg/householdercomplex.c * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 168,173 **** --- 168,226 ---- } int + gsl_linalg_complex_householder_mh (gsl_complex tau, const gsl_vector_complex * v, gsl_matrix_complex * A) + { + /* applies a householder transformation v,tau to matrix m on the right */ + + size_t i, j; + + if (GSL_REAL(tau) == 0.0 && GSL_IMAG(tau) == 0.0) + { + return GSL_SUCCESS; + } + + /* A -> A - A*tau*v*v^h */ + + for (i = 0; i < A->size1; i++) + { + gsl_complex tauwi; + gsl_complex Ai0 = gsl_matrix_complex_get (A, i, 0); + gsl_complex wi = Ai0; + + /* compute w = A v */ + for (j = 1; j < A->size2; j++) /* note, computed for v(0) = 1 above */ + { + gsl_complex Aij = gsl_matrix_complex_get(A, i, j); + gsl_complex vj = gsl_vector_complex_get(v, j); + gsl_complex Av = gsl_complex_mul (Aij, vj); + wi = gsl_complex_add (wi, Av); + } + + tauwi = gsl_complex_mul (tau, wi); + + /* A = A - w v^H */ + + { + gsl_complex Atw = gsl_complex_sub (Ai0, tauwi); + /* store Ai0 - tau * wi */ + gsl_matrix_complex_set (A, i, 0, Atw); + } + + for (j = 1; j < A->size2; j++) + { + gsl_complex vj = gsl_vector_complex_get (v, j); + gsl_complex tauwv = gsl_complex_mul(gsl_complex_conjugate(vj), tauwi); + gsl_complex Aij = gsl_matrix_complex_get (A, i, j); + gsl_complex Atwv = gsl_complex_sub (Aij, tauwv); + /* store Aij - tau * wi * conj(vj) */ + gsl_matrix_complex_set (A, i, j, Atwv); + } + } + + return GSL_SUCCESS; + } + + int gsl_linalg_complex_householder_hv (gsl_complex tau, const gsl_vector_complex * v, gsl_vector_complex * w) { const size_t N = v->size; diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/linalg/lq.c gsl-1.10/linalg/lq.c *** gsl-1.9/linalg/lq.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/linalg/lq.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,11 **** /* linalg/lq.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * Copyright (C) 2004 Joerg Wensch, modifications for LQ. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,11 ---- /* linalg/lq.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * Copyright (C) 2004 Joerg Wensch, modifications for LQ. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/linalg/lu.c gsl-1.10/linalg/lu.c *** gsl-1.9/linalg/lu.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/linalg/lu.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* linalg/lu.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* linalg/lu.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/linalg/luc.c gsl-1.10/linalg/luc.c *** gsl-1.9/linalg/luc.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/linalg/luc.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* linalg/luc.c * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* linalg/luc.c * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/linalg/Makefile.am gsl-1.10/linalg/Makefile.am *** gsl-1.9/linalg/Makefile.am 2006-08-14 15:18:11.000000000 +0100 --- gsl-1.10/linalg/Makefile.am 2007-05-22 15:10:08.000000000 +0100 *************** *** 4,10 **** INCLUDES= -I$(top_builddir) ! libgsllinalg_la_SOURCES = multiply.c exponential.c tridiag.c tridiag.h lu.c luc.c hh.c qr.c qrpt.c lq.c ptlq.c svd.c householder.c householdercomplex.c hessenberg.c cholesky.c symmtd.c hermtd.c bidiag.c balance.c balancemat.c noinst_HEADERS = givens.c apply_givens.c svdstep.c tridiag.h --- 4,10 ---- INCLUDES= -I$(top_builddir) ! libgsllinalg_la_SOURCES = multiply.c exponential.c tridiag.c tridiag.h lu.c luc.c hh.c qr.c qrpt.c lq.c ptlq.c svd.c householder.c householdercomplex.c hessenberg.c hesstri.c cholesky.c choleskyc.c symmtd.c hermtd.c bidiag.c balance.c balancemat.c noinst_HEADERS = givens.c apply_givens.c svdstep.c tridiag.h diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/linalg/Makefile.in gsl-1.10/linalg/Makefile.in *** gsl-1.9/linalg/Makefile.in 2007-02-20 13:09:08.000000000 +0000 --- gsl-1.10/linalg/Makefile.in 2007-09-13 16:41:43.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 52,59 **** libgsllinalg_la_LIBADD = am_libgsllinalg_la_OBJECTS = multiply.lo exponential.lo tridiag.lo \ lu.lo luc.lo hh.lo qr.lo qrpt.lo lq.lo ptlq.lo svd.lo \ ! householder.lo householdercomplex.lo hessenberg.lo cholesky.lo \ ! symmtd.lo hermtd.lo bidiag.lo balance.lo balancemat.lo libgsllinalg_la_OBJECTS = $(am_libgsllinalg_la_OBJECTS) am_test_OBJECTS = test.$(OBJEXT) test_OBJECTS = $(am_test_OBJECTS) --- 48,56 ---- libgsllinalg_la_LIBADD = am_libgsllinalg_la_OBJECTS = multiply.lo exponential.lo tridiag.lo \ lu.lo luc.lo hh.lo qr.lo qrpt.lo lq.lo ptlq.lo svd.lo \ ! householder.lo householdercomplex.lo hessenberg.lo hesstri.lo \ ! cholesky.lo choleskyc.lo symmtd.lo hermtd.lo bidiag.lo \ ! balance.lo balancemat.lo libgsllinalg_la_OBJECTS = $(am_libgsllinalg_la_OBJECTS) am_test_OBJECTS = test.$(OBJEXT) test_OBJECTS = $(am_test_OBJECTS) *************** *** 63,79 **** ../block/libgslblock.la ../complex/libgslcomplex.la \ ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la \ ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgsllinalg_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgsllinalg_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 60,77 ---- ../block/libgslblock.la ../complex/libgslcomplex.la \ ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la \ ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgsllinalg_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgsllinalg_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 107,112 **** --- 105,111 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 114,120 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 113,118 ---- *************** *** 122,138 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 120,133 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 144,152 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 139,146 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 156,170 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 150,165 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 174,205 **** build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ datadir = @datadir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ noinst_LTLIBRARIES = libgsllinalg.la pkginclude_HEADERS = gsl_linalg.h INCLUDES = -I$(top_builddir) ! libgsllinalg_la_SOURCES = multiply.c exponential.c tridiag.c tridiag.h lu.c luc.c hh.c qr.c qrpt.c lq.c ptlq.c svd.c householder.c householdercomplex.c hessenberg.c cholesky.c symmtd.c hermtd.c bidiag.c balance.c balancemat.c noinst_HEADERS = givens.c apply_givens.c svdstep.c tridiag.h TESTS = $(check_PROGRAMS) test_LDADD = libgsllinalg.la ../blas/libgslblas.la ../cblas/libgslcblas.la ../permutation/libgslpermutation.la ../matrix/libgslmatrix.la ../vector/libgslvector.la ../block/libgslblock.la ../complex/libgslcomplex.la ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la --- 169,211 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgsllinalg.la pkginclude_HEADERS = gsl_linalg.h INCLUDES = -I$(top_builddir) ! libgsllinalg_la_SOURCES = multiply.c exponential.c tridiag.c tridiag.h lu.c luc.c hh.c qr.c qrpt.c lq.c ptlq.c svd.c householder.c householdercomplex.c hessenberg.c hesstri.c cholesky.c choleskyc.c symmtd.c hermtd.c bidiag.c balance.c balancemat.c noinst_HEADERS = givens.c apply_givens.c svdstep.c tridiag.h TESTS = $(check_PROGRAMS) test_LDADD = libgsllinalg.la ../blas/libgslblas.la ../cblas/libgslcblas.la ../permutation/libgslpermutation.la ../matrix/libgslmatrix.la ../vector/libgslvector.la ../block/libgslblock.la ../complex/libgslcomplex.la ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la *************** *** 247,253 **** rm -f "$${dir}/so_locations"; \ done libgsllinalg.la: $(libgsllinalg_la_OBJECTS) $(libgsllinalg_la_DEPENDENCIES) ! $(LINK) $(libgsllinalg_la_LDFLAGS) $(libgsllinalg_la_OBJECTS) $(libgsllinalg_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 253,259 ---- rm -f "$${dir}/so_locations"; \ done libgsllinalg.la: $(libgsllinalg_la_OBJECTS) $(libgsllinalg_la_DEPENDENCIES) ! $(LINK) $(libgsllinalg_la_OBJECTS) $(libgsllinalg_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 257,263 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 263,269 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 279,291 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 285,293 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 350,358 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 352,360 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 361,367 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 363,369 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 373,379 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 375,381 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 423,444 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 425,445 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 456,462 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 457,463 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 490,496 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 491,497 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 504,515 **** --- 505,524 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 529,549 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 538,561 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/linalg/multiply.c gsl-1.10/linalg/multiply.c *** gsl-1.9/linalg/multiply.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/linalg/multiply.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* linalg/multiply.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* linalg/multiply.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/linalg/ptlq.c gsl-1.10/linalg/ptlq.c *** gsl-1.9/linalg/ptlq.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/linalg/ptlq.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,11 **** /* linalg/ptlq.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * Copyright (C) 2004 Joerg Wensch, modifications for LQ. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,11 ---- /* linalg/ptlq.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * Copyright (C) 2004 Joerg Wensch, modifications for LQ. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/linalg/qr.c gsl-1.10/linalg/qr.c *** gsl-1.9/linalg/qr.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/linalg/qr.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* linalg/qr.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* linalg/qr.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 398,403 **** --- 398,437 ---- } } + /* Form the product Q^T A from a QR factorized matrix */ + + int + gsl_linalg_QR_QTmat (const gsl_matrix * QR, const gsl_vector * tau, gsl_matrix * A) + { + const size_t M = QR->size1; + const size_t N = QR->size2; + + if (tau->size != GSL_MIN (M, N)) + { + GSL_ERROR ("size of tau must be MIN(M,N)", GSL_EBADLEN); + } + else if (A->size1 != M) + { + GSL_ERROR ("matrix must have M rows", GSL_EBADLEN); + } + else + { + size_t i; + + /* compute Q^T A */ + + for (i = 0; i < GSL_MIN (M, N); i++) + { + gsl_vector_const_view c = gsl_matrix_const_column (QR, i); + gsl_vector_const_view h = gsl_vector_const_subvector (&(c.vector), i, M - i); + gsl_matrix_view m = gsl_matrix_submatrix(A, i, 0, M - i, A->size2); + double ti = gsl_vector_get (tau, i); + gsl_linalg_householder_hm (ti, &(h.vector), &(m.matrix)); + } + return GSL_SUCCESS; + } + } + /* Form the orthogonal matrix Q from the packed QR matrix */ diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/linalg/qrpt.c gsl-1.10/linalg/qrpt.c *** gsl-1.9/linalg/qrpt.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/linalg/qrpt.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* linalg/qrpt.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* linalg/qrpt.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/linalg/svd.c gsl-1.10/linalg/svd.c *** gsl-1.9/linalg/svd.c 2005-09-13 10:44:05.000000000 +0100 --- gsl-1.10/linalg/svd.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* linalg/svd.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2004 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* linalg/svd.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2004, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 50,56 **** gsl_linalg_SV_decomp (gsl_matrix * A, gsl_matrix * V, gsl_vector * S, gsl_vector * work) { ! size_t a, b, i, j; const size_t M = A->size1; const size_t N = A->size2; --- 50,56 ---- gsl_linalg_SV_decomp (gsl_matrix * A, gsl_matrix * V, gsl_vector * S, gsl_vector * work) { ! size_t a, b, i, j, iter; const size_t M = A->size1; const size_t N = A->size2; *************** *** 113,119 **** /* Progressively reduce the matrix until it is diagonal */ b = N - 1; ! while (b > 0) { double fbm1 = gsl_vector_get (&f.vector, b - 1); --- 113,120 ---- /* Progressively reduce the matrix until it is diagonal */ b = N - 1; ! iter = 0; ! while (b > 0) { double fbm1 = gsl_vector_get (&f.vector, b - 1); *************** *** 140,145 **** --- 141,154 ---- a--; } + + iter++; + + if (iter > 100 * N) + { + GSL_ERROR("SVD decomposition failed to converge", GSL_EMAXITER); + } + { const size_t n_block = b - a + 1; diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/linalg/svdstep.c gsl-1.10/linalg/svdstep.c *** gsl-1.9/linalg/svdstep.c 2006-06-01 13:14:20.000000000 +0100 --- gsl-1.10/linalg/svdstep.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,3 **** --- 1,22 ---- + /* linalg/svdstep.c + * + * Copyright (C) 2007 Brian Gough + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or (at + * your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + static void chop_small_elements (gsl_vector * d, gsl_vector * f) { *************** *** 54,60 **** create_schur (double d0, double f0, double d1, double * c, double * s) { double apq = 2.0 * d0 * f0; ! if (apq != 0.0) { double t; --- 73,103 ---- create_schur (double d0, double f0, double d1, double * c, double * s) { double apq = 2.0 * d0 * f0; ! ! if (d0 == 0 || f0 == 0) ! { ! *c = 1.0; ! *s = 0.0; ! return; ! } ! ! /* Check if we need to rescale to avoid underflow/overflow */ ! if (fabs(d0) < GSL_SQRT_DBL_MIN || fabs(d0) > GSL_SQRT_DBL_MAX ! || fabs(f0) < GSL_SQRT_DBL_MIN || fabs(f0) > GSL_SQRT_DBL_MAX ! || fabs(d1) < GSL_SQRT_DBL_MIN || fabs(d1) > GSL_SQRT_DBL_MAX) ! { ! double scale; ! int d0_exp, f0_exp; ! frexp(d0, &d0_exp); ! frexp(f0, &f0_exp); ! /* Bring |d0*f0| into the range GSL_DBL_MIN to GSL_DBL_MAX */ ! scale = ldexp(1.0, -(d0_exp + f0_exp)/4); ! d0 *= scale; ! f0 *= scale; ! d1 *= scale; ! apq = 2.0 * d0 * f0; ! } ! if (apq != 0.0) { double t; *************** *** 147,155 **** else { /* Make columns orthogonal, A = [d0, f0; 0, d1] * G */ ! create_schur (d0, f0, d1, &c, &s); ! /* compute B <= B G */ a11 = c * d0 - s * f0; --- 190,198 ---- else { /* Make columns orthogonal, A = [d0, f0; 0, d1] * G */ ! create_schur (d0, f0, d1, &c, &s); ! /* compute B <= B G */ a11 = c * d0 - s * f0; diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/linalg/symmtd.c gsl-1.10/linalg/symmtd.c *** gsl-1.9/linalg/symmtd.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/linalg/symmtd.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* linalg/sytd.c * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* linalg/sytd.c * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/linalg/test.c gsl-1.10/linalg/test.c *** gsl-1.9/linalg/test.c 2007-01-10 17:16:58.000000000 +0000 --- gsl-1.10/linalg/test.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,11 **** /* linalg/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2004, 2005 ! * Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* linalg/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2004, 2005, 2006, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 272,277 **** --- 271,277 ---- gsl_matrix * inf5; double inf5_data[] = {1.0, 0.0, -3.0, 0.0, -5.0}; gsl_matrix * nan5; + gsl_matrix * dblmin3, * dblmin5; double m53_lssolution[] = {52.5992295702070, -337.7263113752073, 351.8823436427604}; *************** *** 2336,2341 **** --- 2336,2349 ---- gsl_test(f, " SV_decomp nan5"); s += f; + f = test_SV_decomp_dim(dblmin3, 1024 * GSL_DBL_EPSILON); + gsl_test(f, " SV_decomp dblmin3"); + s += f; + + f = test_SV_decomp_dim(dblmin5, 1024 * GSL_DBL_EPSILON); + gsl_test(f, " SV_decomp dblmin5"); + s += f; + { double i1, i2, i3, i4; *************** *** 3179,3184 **** --- 3187,3335 ---- return s; } + int + test_choleskyc_solve_dim(const gsl_matrix_complex * m, const gsl_vector_complex * actual, double eps) + { + int s = 0; + unsigned long i, dim = m->size1; + gsl_complex z; + + GSL_SET_IMAG(&z, 0.0); + + gsl_vector_complex * rhs = gsl_vector_complex_alloc(dim); + gsl_matrix_complex * u = gsl_matrix_complex_alloc(dim,dim); + gsl_vector_complex * x = gsl_vector_complex_calloc(dim); + gsl_matrix_complex_memcpy(u,m); + for(i=0; isize1, N = m->size2; + + gsl_matrix_complex * v = gsl_matrix_complex_alloc(M,N); + gsl_matrix_complex * a = gsl_matrix_complex_alloc(M,N); + gsl_matrix_complex * l = gsl_matrix_complex_alloc(M,N); + gsl_matrix_complex * lh = gsl_matrix_complex_alloc(N,N); + + gsl_matrix_complex_memcpy(v, m); + gsl_matrix_complex_set_zero(l); + gsl_matrix_complex_set_zero(lh); + + s += gsl_linalg_complex_cholesky_decomp(v); + + /* Compute L L^H */ + + for (i = 0; i < N ; i++) + { + for (j = 0; j <= i; j++) + { + gsl_complex vij = gsl_matrix_complex_get(v, i, j); + gsl_matrix_complex_set (l, i, j, vij); + gsl_matrix_complex_set (lh, j, i, gsl_complex_conjugate(vij)); + } + } + + /* compute a = l lh */ + gsl_blas_zgemm (CblasNoTrans, + CblasNoTrans, + GSL_COMPLEX_ONE, + l, + lh, + GSL_COMPLEX_ZERO, + a); + + for(i=0; i 1) *************** *** 96,103 **** x[x_stride * i] = c[i] - gamma[i] * x[x_stride * (i + 1)]; } } - - status = GSL_SUCCESS; } if (z != 0) --- 102,107 ---- *************** *** 109,114 **** --- 113,122 ---- if (gamma != 0) free (gamma); + if (status == GSL_EZERODIV) { + GSL_ERROR ("matrix must be positive definite", status); + } + return status; } *************** *** 129,141 **** double x[], size_t x_stride, size_t N) { ! int status; double *alpha = (double *) malloc (N * sizeof (double)); double *z = (double *) malloc (N * sizeof (double)); if (alpha == 0 || z == 0) { ! status = GSL_ENOMEM; } else { --- 137,149 ---- double x[], size_t x_stride, size_t N) { ! int status = GSL_SUCCESS; double *alpha = (double *) malloc (N * sizeof (double)); double *z = (double *) malloc (N * sizeof (double)); if (alpha == 0 || z == 0) { ! GSL_ERROR("failed to allocate working space", GSL_ENOMEM); } else { *************** *** 148,163 **** */ alpha[0] = diag[0]; z[0] = rhs[0]; for (i = 1; i < N; i++) { const double t = belowdiag[b_stride*(i - 1)]/alpha[i-1]; alpha[i] = diag[d_stride*i] - t*abovediag[a_stride*(i - 1)]; z[i] = rhs[r_stride*i] - t*z[i-1]; - /* FIXME!!! */ if (alpha[i] == 0) { status = GSL_EZERODIV; - goto solve_tridiag_nonsym_END; } } --- 156,173 ---- */ alpha[0] = diag[0]; z[0] = rhs[0]; + + if (alpha[0] == 0) { + status = GSL_EZERODIV; + } for (i = 1; i < N; i++) { const double t = belowdiag[b_stride*(i - 1)]/alpha[i-1]; alpha[i] = diag[d_stride*i] - t*abovediag[a_stride*(i - 1)]; z[i] = rhs[r_stride*i] - t*z[i-1]; if (alpha[i] == 0) { status = GSL_EZERODIV; } } *************** *** 170,185 **** x[x_stride * i] = (z[i] - abovediag[a_stride*i] * x[x_stride * (i + 1)])/alpha[i]; } } - - status = GSL_SUCCESS; } - solve_tridiag_nonsym_END: if (z != 0) free (z); if (alpha != 0) free (alpha); return status; } --- 180,196 ---- x[x_stride * i] = (z[i] - abovediag[a_stride*i] * x[x_stride * (i + 1)])/alpha[i]; } } } if (z != 0) free (z); if (alpha != 0) free (alpha); + if (status == GSL_EZERODIV) { + GSL_ERROR ("matrix must be positive definite", status); + } + return status; } *************** *** 202,208 **** double x[], size_t x_stride, size_t N) { ! int status; double * delta = (double *) malloc (N * sizeof (double)); double * gamma = (double *) malloc (N * sizeof (double)); double * alpha = (double *) malloc (N * sizeof (double)); --- 213,219 ---- double x[], size_t x_stride, size_t N) { ! int status = GSL_SUCCESS; double * delta = (double *) malloc (N * sizeof (double)); double * gamma = (double *) malloc (N * sizeof (double)); double * alpha = (double *) malloc (N * sizeof (double)); *************** *** 211,217 **** if (delta == 0 || gamma == 0 || alpha == 0 || c == 0 || z == 0) { ! status = GSL_ENOMEM; } else { --- 222,228 ---- if (delta == 0 || gamma == 0 || alpha == 0 || c == 0 || z == 0) { ! GSL_ERROR("failed to allocate working space", GSL_ENOMEM); } else { *************** *** 230,240 **** --- 241,258 ---- gamma[0] = offdiag[0] / alpha[0]; delta[0] = offdiag[o_stride * (N-1)] / alpha[0]; + if (alpha[0] == 0) { + status = GSL_EZERODIV; + } + for (i = 1; i < N - 2; i++) { alpha[i] = diag[d_stride * i] - offdiag[o_stride * (i-1)] * gamma[i - 1]; gamma[i] = offdiag[o_stride * i] / alpha[i]; delta[i] = -delta[i - 1] * offdiag[o_stride * (i-1)] / alpha[i]; + if (alpha[i] == 0) { + status = GSL_EZERODIV; + } } for (i = 0; i < N - 2; i++) *************** *** 275,282 **** x[x_stride * i] = c[i] - gamma[i] * x[x_stride * (i + 1)] - delta[i] * x[x_stride * (N - 1)]; } } - - status = GSL_SUCCESS; } if (z != 0) --- 293,298 ---- *************** *** 290,295 **** --- 306,315 ---- if (delta != 0) free (delta); + if (status == GSL_EZERODIV) { + GSL_ERROR ("matrix must be positive definite", status); + } + return status; } *************** *** 312,330 **** double x[], size_t x_stride, size_t N) { ! int status; double *alpha = (double *) malloc (N * sizeof (double)); double *zb = (double *) malloc (N * sizeof (double)); double *zu = (double *) malloc (N * sizeof (double)); double *w = (double *) malloc (N * sizeof (double)); - double beta; if (alpha == 0 || zb == 0 || zu == 0 || w == 0) { ! status = GSL_ENOMEM; } else { /* Bidiagonalization (eliminating belowdiag) & rhs update diag' = alpha --- 332,351 ---- double x[], size_t x_stride, size_t N) { ! int status = GSL_SUCCESS; double *alpha = (double *) malloc (N * sizeof (double)); double *zb = (double *) malloc (N * sizeof (double)); double *zu = (double *) malloc (N * sizeof (double)); double *w = (double *) malloc (N * sizeof (double)); if (alpha == 0 || zb == 0 || zu == 0 || w == 0) { ! GSL_ERROR("failed to allocate working space", GSL_ENOMEM); } else { + double beta; + /* Bidiagonalization (eliminating belowdiag) & rhs update diag' = alpha *************** *** 342,347 **** --- 363,371 ---- zu[0] = beta; alpha[0] = diag[0] - beta; + if (alpha[0] == 0) { + status = GSL_EZERODIV; + } { size_t i; *************** *** 354,360 **** /* FIXME!!! */ if (alpha[i] == 0) { status = GSL_EZERODIV; - goto solve_cyc_tridiag_nonsym_END; } } } --- 378,383 ---- *************** *** 370,380 **** /* FIXME!!! */ if (alpha[i] == 0) { status = GSL_EZERODIV; - goto solve_cyc_tridiag_nonsym_END; } } - /* backsubstitution */ { size_t i, j; --- 393,401 ---- *************** *** 394,400 **** /* FIXME!!! */ if (vw + 1 == 0) { status = GSL_EZERODIV; - goto solve_cyc_tridiag_nonsym_END; } { --- 415,420 ---- *************** *** 403,413 **** x[i] -= vx/(1 + vw)*w[i]; } } - - status = GSL_SUCCESS; } - solve_cyc_tridiag_nonsym_END: if (zb != 0) free (zb); if (zu != 0) --- 423,430 ---- *************** *** 417,422 **** --- 434,443 ---- if (alpha != 0) free (alpha); + if (status == GSL_EZERODIV) { + GSL_ERROR ("matrix must be positive definite", status); + } + return status; } *************** *** 446,451 **** --- 467,473 ---- rhs->data, rhs->stride, solution->data, solution->stride, diag->size); + } } diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/linalg/tridiag.h gsl-1.10/linalg/tridiag.h *** gsl-1.9/linalg/tridiag.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/linalg/tridiag.h 2007-07-02 17:29:29.000000000 +0100 *************** *** 5,11 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 5,11 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ltmain.sh gsl-1.10/ltmain.sh *** gsl-1.9/ltmain.sh 2006-03-21 15:21:43.000000000 +0000 --- gsl-1.10/ltmain.sh 2007-04-05 15:20:16.000000000 +0100 *************** *** 46,55 **** VERSION=1.5.22 TIMESTAMP=" (1.1220.2.365 2005/12/18 22:14:06)" ! # See if we are running on zsh, and set the options which allow our ! # commands through without removal of \ escapes. ! if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi # Check that we have a working $echo. --- 46,61 ---- VERSION=1.5.22 TIMESTAMP=" (1.1220.2.365 2005/12/18 22:14:06)" ! # Be Bourne compatible (taken from Autoconf:_AS_BOURNE_COMPATIBLE). ! if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then ! emulate sh ! NULLCMD=: ! # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which ! # is contrary to our usage. Disable this feature. ! alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST + else + case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac fi # Check that we have a working $echo. *************** *** 105,116 **** # These must not be set unconditionally because not all systems understand # e.g. LANG=C (notably SCO). # We save the old values to restore during execute mode. ! if test "${LC_ALL+set}" = set; then ! save_LC_ALL="$LC_ALL"; LC_ALL=C; export LC_ALL ! fi ! if test "${LANG+set}" = set; then ! save_LANG="$LANG"; LANG=C; export LANG ! fi # Make sure IFS has a sensible default lt_nl=' --- 111,124 ---- # These must not be set unconditionally because not all systems understand # e.g. LANG=C (notably SCO). # We save the old values to restore during execute mode. ! for lt_var in LANG LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES ! do ! eval "if test \"\${$lt_var+set}\" = set; then ! save_$lt_var=\$$lt_var ! $lt_var=C ! export $lt_var ! fi" ! done # Make sure IFS has a sensible default lt_nl=' *************** *** 136,141 **** --- 144,151 ---- preserve_args= lo2o="s/\\.lo\$/.${objext}/" o2lo="s/\\.${objext}\$/.lo/" + extracted_archives= + extracted_serial=0 ##################################### # Shell function definitions: *************** *** 327,333 **** *) my_xabs=`pwd`"/$my_xlib" ;; esac my_xlib=`$echo "X$my_xlib" | $Xsed -e 's%^.*/%%'` ! my_xdir="$my_gentop/$my_xlib" $show "${rm}r $my_xdir" $run ${rm}r "$my_xdir" --- 337,353 ---- *) my_xabs=`pwd`"/$my_xlib" ;; esac my_xlib=`$echo "X$my_xlib" | $Xsed -e 's%^.*/%%'` ! my_xlib_u=$my_xlib ! while :; do ! case " $extracted_archives " in ! *" $my_xlib_u "*) ! extracted_serial=`expr $extracted_serial + 1` ! my_xlib_u=lt$extracted_serial-$my_xlib ;; ! *) break ;; ! esac ! done ! extracted_archives="$extracted_archives $my_xlib_u" ! my_xdir="$my_gentop/$my_xlib_u" $show "${rm}r $my_xdir" $run ${rm}r "$my_xdir" *************** *** 758,763 **** --- 778,784 ---- *.f90) xform=f90 ;; *.for) xform=for ;; *.java) xform=java ;; + *.obj) xform=obj ;; esac libobj=`$echo "X$libobj" | $Xsed -e "s/\.$xform$/.lo/"` *************** *** 1138,1145 **** for arg do case $arg in ! -all-static | -static) ! if test "X$arg" = "X-all-static"; then if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then $echo "$modename: warning: complete static linking is impossible in this configuration" 1>&2 fi --- 1159,1167 ---- for arg do case $arg in ! -all-static | -static | -static-libtool-libs) ! case $arg in ! -all-static) if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then $echo "$modename: warning: complete static linking is impossible in this configuration" 1>&2 fi *************** *** 1147,1158 **** dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ! else if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=built ! fi build_libtool_libs=no build_old_libs=yes break --- 1169,1188 ---- dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ! ;; ! -static) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=built ! ;; ! -static-libtool-libs) ! if test -z "$pic_flag" && test -n "$link_static_flag"; then ! dlopen_self=$dlopen_self_static ! fi ! prefer_static_libs=yes ! ;; ! esac build_libtool_libs=no build_old_libs=yes break *************** *** 1712,1718 **** continue ;; ! -static) # The effects of -static are defined in a previous loop. # We used to do the same as -all-static on platforms that # didn't have a PIC flag, but the assumption that the effects --- 1742,1748 ---- continue ;; ! -static | -static-libtool-libs) # The effects of -static are defined in a previous loop. # We used to do the same as -all-static on platforms that # didn't have a PIC flag, but the assumption that the effects *************** *** 2490,2496 **** if test "$linkmode,$pass" = "prog,link"; then if test -n "$library_names" && ! { test "$prefer_static_libs" = no || test -z "$old_library"; }; then # We need to hardcode the library path if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then # Make sure the rpath contains only unique directories. --- 2520,2528 ---- if test "$linkmode,$pass" = "prog,link"; then if test -n "$library_names" && ! { { test "$prefer_static_libs" = no || ! test "$prefer_static_libs,$installed" = "built,yes"; } || ! test -z "$old_library"; }; then # We need to hardcode the library path if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then # Make sure the rpath contains only unique directories. *************** *** 3186,3192 **** # which has an extra 1 added just for fun # case $version_type in ! darwin|linux|osf|windows) current=`expr $number_major + $number_minor` age="$number_minor" revision="$number_revision" --- 3218,3224 ---- # which has an extra 1 added just for fun # case $version_type in ! darwin|linux|osf|windows|none) current=`expr $number_major + $number_minor` age="$number_minor" revision="$number_revision" *************** *** 3410,3420 **** fi # Eliminate all temporary directories. ! for path in $notinst_path; do ! lib_search_path=`$echo "$lib_search_path " | ${SED} -e "s% $path % %g"` ! deplibs=`$echo "$deplibs " | ${SED} -e "s% -L$path % %g"` ! dependency_libs=`$echo "$dependency_libs " | ${SED} -e "s% -L$path % %g"` ! done if test -n "$xrpath"; then # If the user specified any rpath flags, then add them. --- 3442,3452 ---- fi # Eliminate all temporary directories. ! # for path in $notinst_path; do ! # lib_search_path=`$echo "$lib_search_path " | ${SED} -e "s% $path % %g"` ! # deplibs=`$echo "$deplibs " | ${SED} -e "s% -L$path % %g"` ! # dependency_libs=`$echo "$dependency_libs " | ${SED} -e "s% -L$path % %g"` ! # done if test -n "$xrpath"; then # If the user specified any rpath flags, then add them. *************** *** 3515,3527 **** int main() { return 0; } EOF $rm conftest ! $LTCC $LTCFLAGS -o conftest conftest.c $deplibs ! if test "$?" -eq 0 ; then ldd_output=`ldd conftest` for i in $deplibs; do name=`expr $i : '-l\(.*\)'` # If $name is empty we are operating on a -L argument. ! if test "$name" != "" && test "$name" -ne "0"; then if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then case " $predeps $postdeps " in *" $i "*) --- 3547,3558 ---- int main() { return 0; } EOF $rm conftest ! if $LTCC $LTCFLAGS -o conftest conftest.c $deplibs; then ldd_output=`ldd conftest` for i in $deplibs; do name=`expr $i : '-l\(.*\)'` # If $name is empty we are operating on a -L argument. ! if test "$name" != "" && test "$name" != "0"; then if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then case " $predeps $postdeps " in *" $i "*) *************** *** 3560,3568 **** # If $name is empty we are operating on a -L argument. if test "$name" != "" && test "$name" != "0"; then $rm conftest ! $LTCC $LTCFLAGS -o conftest conftest.c $i ! # Did it work? ! if test "$?" -eq 0 ; then ldd_output=`ldd conftest` if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then case " $predeps $postdeps " in --- 3591,3597 ---- # If $name is empty we are operating on a -L argument. if test "$name" != "" && test "$name" != "0"; then $rm conftest ! if $LTCC $LTCFLAGS -o conftest conftest.c $i; then ldd_output=`ldd conftest` if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then case " $predeps $postdeps " in *************** *** 3594,3600 **** droppeddeps=yes $echo $echo "*** Warning! Library $i is needed by this library but I was not able to" ! $echo "*** make it link in! You will probably need to install it or some" $echo "*** library that it depends on before this library will be fully" $echo "*** functional. Installing it before continuing would be even better." fi --- 3623,3629 ---- droppeddeps=yes $echo $echo "*** Warning! Library $i is needed by this library but I was not able to" ! $echo "*** make it link in! You will probably need to install it or some" $echo "*** library that it depends on before this library will be fully" $echo "*** functional. Installing it before continuing would be even better." fi *************** *** 4239,4250 **** reload_conv_objs= gentop= # reload_cmds runs $LD directly, so let us get rid of ! # -Wl from whole_archive_flag_spec wl= if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then ! eval reload_conv_objs=\"\$reload_objs $whole_archive_flag_spec\" else gentop="$output_objdir/${obj}x" generated="$generated $gentop" --- 4268,4281 ---- reload_conv_objs= gentop= # reload_cmds runs $LD directly, so let us get rid of ! # -Wl from whole_archive_flag_spec and hope we can get by with ! # turning comma into space.. wl= if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then ! eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" ! reload_conv_objs=$reload_objs\ `$echo "X$tmp_whole_archive_flags" | $Xsed -e 's|,| |g'` else gentop="$output_objdir/${obj}x" generated="$generated $gentop" *************** *** 4692,4707 **** case $host in *cygwin* | *mingw* ) if test -f "$output_objdir/${outputname}.def" ; then ! compile_command=`$echo "X$compile_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}.def $output_objdir/${outputname}S.${objext}%"` ! finalize_command=`$echo "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}.def $output_objdir/${outputname}S.${objext}%"` else ! compile_command=`$echo "X$compile_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"` ! finalize_command=`$echo "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"` fi ;; * ) ! compile_command=`$echo "X$compile_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"` ! finalize_command=`$echo "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"` ;; esac ;; --- 4723,4738 ---- case $host in *cygwin* | *mingw* ) if test -f "$output_objdir/${outputname}.def" ; then ! compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}.def $output_objdir/${outputname}S.${objext}%" | $NL2SP` ! finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}.def $output_objdir/${outputname}S.${objext}%" | $NL2SP` else ! compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%" | $NL2SP` ! finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%" | $NL2SP` fi ;; * ) ! compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%" | $NL2SP` ! finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%" | $NL2SP` ;; esac ;; *************** *** 4716,4728 **** # really was required. # Nullify the symbol file. ! compile_command=`$echo "X$compile_command" | $Xsed -e "s% @SYMFILE@%%"` ! finalize_command=`$echo "X$finalize_command" | $Xsed -e "s% @SYMFILE@%%"` fi if test "$need_relink" = no || test "$build_libtool_libs" != yes; then # Replace the output file specification. ! compile_command=`$echo "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'` link_command="$compile_command$compile_rpath" # We have no uninstalled library dependencies, so finalize right now. --- 4747,4759 ---- # really was required. # Nullify the symbol file. ! compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "s% @SYMFILE@%%" | $NL2SP` ! finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "s% @SYMFILE@%%" | $NL2SP` fi if test "$need_relink" = no || test "$build_libtool_libs" != yes; then # Replace the output file specification. ! compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e 's%@OUTPUT@%'"$output"'%g' | $NL2SP` link_command="$compile_command$compile_rpath" # We have no uninstalled library dependencies, so finalize right now. *************** *** 4809,4815 **** if test "$fast_install" != no; then link_command="$finalize_var$compile_command$finalize_rpath" if test "$fast_install" = yes; then ! relink_command=`$echo "X$compile_var$compile_command$compile_rpath" | $Xsed -e 's%@OUTPUT@%\$progdir/\$file%g'` else # fast_install is set to needless relink_command= --- 4840,4846 ---- if test "$fast_install" != no; then link_command="$finalize_var$compile_command$finalize_rpath" if test "$fast_install" = yes; then ! relink_command=`$echo "X$compile_var$compile_command$compile_rpath" | $SP2NL | $Xsed -e 's%@OUTPUT@%\$progdir/\$file%g' | $NL2SP` else # fast_install is set to needless relink_command= *************** *** 4846,4852 **** fi done relink_command="(cd `pwd`; $relink_command)" ! relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"` fi # Quote $echo for shipping. --- 4877,4883 ---- fi done relink_command="(cd `pwd`; $relink_command)" ! relink_command=`$echo "X$relink_command" | $SP2NL | $Xsed -e "$sed_quote_subst" | $NL2SP` fi # Quote $echo for shipping. *************** *** 5253,5258 **** --- 5284,5301 ---- Xsed='${SED} -e 1s/^X//' sed_quote_subst='$sed_quote_subst' + # Be Bourne compatible (taken from Autoconf:_AS_BOURNE_COMPATIBLE). + if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: + # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which + # is contrary to our usage. Disable this feature. + alias -g '\${1+\"\$@\"}'='\"\$@\"' + setopt NO_GLOB_SUBST + else + case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac + fi + # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH *************** *** 5395,5401 **** ;; esac $echo >> $output "\ ! \$echo \"\$0: cannot exec \$program \${1+\"\$@\"}\" exit $EXIT_FAILURE fi else --- 5438,5444 ---- ;; esac $echo >> $output "\ ! \$echo \"\$0: cannot exec \$program \$*\" exit $EXIT_FAILURE fi else *************** *** 5581,5587 **** done # Quote the link command for shipping. relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" ! relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"` if test "$hardcode_automatic" = yes ; then relink_command= fi --- 5624,5630 ---- done # Quote the link command for shipping. relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" ! relink_command=`$echo "X$relink_command" | $SP2NL | $Xsed -e "$sed_quote_subst" | $NL2SP` if test "$hardcode_automatic" = yes ; then relink_command= fi *************** *** 5926,5934 **** if test -n "$inst_prefix_dir"; then # Stick the inst_prefix_dir data into the link command. ! relink_command=`$echo "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` else ! relink_command=`$echo "$relink_command" | $SED "s%@inst_prefix_dir@%%"` fi $echo "$modename: warning: relinking \`$file'" 1>&2 --- 5969,5977 ---- if test -n "$inst_prefix_dir"; then # Stick the inst_prefix_dir data into the link command. ! relink_command=`$echo "$relink_command" | $SP2NL | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%" | $NL2SP` else ! relink_command=`$echo "$relink_command" | $SP2NL | $SED "s%@inst_prefix_dir@%%" | $NL2SP` fi $echo "$modename: warning: relinking \`$file'" 1>&2 *************** *** 6137,6143 **** file=`$echo "X$file$stripped_ext" | $Xsed -e 's%^.*/%%'` outputname="$tmpdir/$file" # Replace the output file specification. ! relink_command=`$echo "X$relink_command" | $Xsed -e 's%@OUTPUT@%'"$outputname"'%g'` $show "$relink_command" if $run eval "$relink_command"; then : --- 6180,6186 ---- file=`$echo "X$file$stripped_ext" | $Xsed -e 's%^.*/%%'` outputname="$tmpdir/$file" # Replace the output file specification. ! relink_command=`$echo "X$relink_command" | $SP2NL | $Xsed -e 's%@OUTPUT@%'"$outputname"'%g' | $NL2SP` $show "$relink_command" if $run eval "$relink_command"; then : *************** *** 6413,6424 **** fi # Restore saved environment variables ! if test "${save_LC_ALL+set}" = set; then ! LC_ALL="$save_LC_ALL"; export LC_ALL ! fi ! if test "${save_LANG+set}" = set; then ! LANG="$save_LANG"; export LANG ! fi # Now prepare to actually exec the command. exec_cmd="\$cmd$args" --- 6456,6468 ---- fi # Restore saved environment variables ! for lt_var in LANG LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES ! do ! eval "if test \"\${save_$lt_var+set}\" = set; then ! $lt_var=\$save_$lt_var; export $lt_var ! fi" ! done ! # Now prepare to actually exec the command. exec_cmd="\$cmd$args" *************** *** 6775,6783 **** -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) -export-symbols SYMFILE ! try to export only the symbols listed in SYMFILE -export-symbols-regex REGEX ! try to export only the symbols matching REGEX -LLIBDIR search LIBDIR for required installed libraries -lNAME OUTPUT-FILE requires the installed library libNAME -module build a library that can dlopened --- 6819,6827 ---- -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) -export-symbols SYMFILE ! try to export only the symbols listed in SYMFILE -export-symbols-regex REGEX ! try to export only the symbols matching REGEX -LLIBDIR search LIBDIR for required installed libraries -lNAME OUTPUT-FILE requires the installed library libNAME -module build a library that can dlopened *************** *** 6791,6799 **** -release RELEASE specify package release information -rpath LIBDIR the created library will eventually be installed in LIBDIR -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries ! -static do not do any dynamic linking of libtool libraries -version-info CURRENT[:REVISION[:AGE]] ! specify library version info [each variable defaults to 0] All other options (arguments beginning with \`-') are ignored. --- 6835,6845 ---- -release RELEASE specify package release information -rpath LIBDIR the created library will eventually be installed in LIBDIR -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries ! -static do not do any dynamic linking of uninstalled libtool libraries ! -static-libtool-libs ! do not do any dynamic linking of libtool libraries -version-info CURRENT[:REVISION[:AGE]] ! specify library version info [each variable defaults to 0] All other options (arguments beginning with \`-') are ignored. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/Makefile.am gsl-1.10/Makefile.am *** gsl-1.9/Makefile.am 2006-11-02 17:50:01.000000000 +0000 --- gsl-1.10/Makefile.am 2007-07-10 22:01:55.000000000 +0100 *************** *** 21,26 **** --- 21,32 ---- libgsl_la_LDFLAGS = -version-info $(GSL_LT_VERSION) noinst_HEADERS = templates_on.h templates_off.h + MINGW32_HOST = @MINGW32_HOST@ + if MINGW32_HOST + libgsl_la_LIBADD += cblas/libgslcblas.la + libgsl_la_LDFLAGS += -no-undefined + endif + m4datadir = $(datadir)/aclocal m4data_DATA = gsl.m4 diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/Makefile.in gsl-1.10/Makefile.in *** gsl-1.9/Makefile.in 2007-02-20 13:09:18.000000000 +0000 --- gsl-1.10/Makefile.in 2007-09-13 16:41:50.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 20,34 **** - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = . am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 20,30 ---- *************** *** 42,48 **** --- 38,47 ---- POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ + @MINGW32_HOST_TRUE@am__append_1 = cblas/libgslcblas.la + @MINGW32_HOST_TRUE@am__append_2 = -no-undefined bin_PROGRAMS = gsl-randist$(EXEEXT) gsl-histogram$(EXEEXT) + subdir = . DIST_COMMON = README $(am__configure_deps) $(noinst_HEADERS) \ $(pkginclude_HEADERS) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(srcdir)/config.h.in \ *************** *** 51,63 **** $(top_srcdir)/configure AUTHORS COPYING ChangeLog INSTALL NEWS \ THANKS TODO acconfig.h config.guess config.sub install-sh \ ltmain.sh mdate-sh missing mkinstalldirs - subdir = . ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ ! configure.lineno configure.status.lineno mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = gsl-config gsl.pc gsl_version.h gsl.spec --- 50,61 ---- $(top_srcdir)/configure AUTHORS COPYING ChangeLog INSTALL NEWS \ THANKS TODO acconfig.h config.guess config.sub install-sh \ ltmain.sh mdate-sh missing mkinstalldirs ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ ! configure.lineno config.status.lineno mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = gsl-config gsl.pc gsl_version.h gsl.spec *************** *** 72,98 **** "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(pkgincludedir)" libLTLIBRARIES_INSTALL = $(INSTALL) LTLIBRARIES = $(lib_LTLIBRARIES) ! am__DEPENDENCIES_1 = block/libgslblock.la blas/libgslblas.la \ ! bspline/libgslbspline.la complex/libgslcomplex.la \ ! cheb/libgslcheb.la dht/libgsldht.la diff/libgsldiff.la \ ! deriv/libgslderiv.la eigen/libgsleigen.la err/libgslerr.la \ ! fft/libgslfft.la fit/libgslfit.la histogram/libgslhistogram.la \ ! ieee-utils/libgslieeeutils.la integration/libgslintegration.la \ ! interpolation/libgslinterpolation.la linalg/libgsllinalg.la \ ! matrix/libgslmatrix.la min/libgslmin.la monte/libgslmonte.la \ ! multifit/libgslmultifit.la multimin/libgslmultimin.la \ ! multiroots/libgslmultiroots.la ntuple/libgslntuple.la \ ! ode-initval/libgslodeiv.la permutation/libgslpermutation.la \ ! combination/libgslcombination.la poly/libgslpoly.la \ ! qrng/libgslqrng.la randist/libgslrandist.la rng/libgslrng.la \ ! roots/libgslroots.la siman/libgslsiman.la sort/libgslsort.la \ ! specfunc/libgslspecfunc.la statistics/libgslstatistics.la \ ! sum/libgslsum.la sys/libgslsys.la test/libgsltest.la \ ! utils/libutils.la vector/libgslvector.la cdf/libgslcdf.la \ ! wavelet/libgslwavelet.la ! libgsl_la_DEPENDENCIES = $(am__DEPENDENCIES_1) am_libgsl_la_OBJECTS = version.lo libgsl_la_OBJECTS = $(am_libgsl_la_OBJECTS) binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) PROGRAMS = $(bin_PROGRAMS) am_gsl_histogram_OBJECTS = gsl-histogram.$(OBJEXT) --- 70,81 ---- "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(pkgincludedir)" libLTLIBRARIES_INSTALL = $(INSTALL) LTLIBRARIES = $(lib_LTLIBRARIES) ! libgsl_la_DEPENDENCIES = $(SUBLIBS) $(am__append_1) am_libgsl_la_OBJECTS = version.lo libgsl_la_OBJECTS = $(am_libgsl_la_OBJECTS) + libgsl_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(libgsl_la_LDFLAGS) $(LDFLAGS) -o $@ binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) PROGRAMS = $(bin_PROGRAMS) am_gsl_histogram_OBJECTS = gsl-histogram.$(OBJEXT) *************** *** 103,134 **** gsl_randist_DEPENDENCIES = libgsl.la cblas/libgslcblas.la binSCRIPT_INSTALL = $(INSTALL_SCRIPT) SCRIPTS = $(bin_SCRIPTS) ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I. depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgsl_la_SOURCES) $(gsl_histogram_SOURCES) \ $(gsl_randist_SOURCES) DIST_SOURCES = $(libgsl_la_SOURCES) $(gsl_histogram_SOURCES) \ $(gsl_randist_SOURCES) RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ ! install-exec-recursive install-info-recursive \ ! install-recursive installcheck-recursive installdirs-recursive \ ! pdf-recursive ps-recursive uninstall-info-recursive \ ! uninstall-recursive m4dataDATA_INSTALL = $(INSTALL_DATA) pkgconfigDATA_INSTALL = $(INSTALL_DATA) DATA = $(m4data_DATA) $(pkgconfig_DATA) pkgincludeHEADERS_INSTALL = $(INSTALL_HEADER) HEADERS = $(noinst_HEADERS) $(pkginclude_HEADERS) ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) --- 86,121 ---- gsl_randist_DEPENDENCIES = libgsl.la cblas/libgslcblas.la binSCRIPT_INSTALL = $(INSTALL_SCRIPT) SCRIPTS = $(bin_SCRIPTS) ! DEFAULT_INCLUDES = -I.@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgsl_la_SOURCES) $(gsl_histogram_SOURCES) \ $(gsl_randist_SOURCES) DIST_SOURCES = $(libgsl_la_SOURCES) $(gsl_histogram_SOURCES) \ $(gsl_randist_SOURCES) RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ ! install-dvi-recursive install-exec-recursive \ ! install-html-recursive install-info-recursive \ ! install-pdf-recursive install-ps-recursive install-recursive \ ! installcheck-recursive installdirs-recursive pdf-recursive \ ! ps-recursive uninstall-recursive m4dataDATA_INSTALL = $(INSTALL_DATA) pkgconfigDATA_INSTALL = $(INSTALL_DATA) DATA = $(m4data_DATA) $(pkgconfig_DATA) pkgincludeHEADERS_INSTALL = $(INSTALL_HEADER) HEADERS = $(noinst_HEADERS) $(pkginclude_HEADERS) + RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) *************** *** 162,167 **** --- 149,155 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 169,175 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 157,162 ---- *************** *** 177,193 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 164,177 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 199,207 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 183,190 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 211,225 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 194,209 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 229,256 **** --- 213,251 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ SUBDIRS = gsl utils sys test err const complex cheb block vector matrix permutation combination sort ieee-utils cblas blas linalg eigen specfunc dht qrng rng randist fft poly fit multifit statistics siman sum integration interpolation histogram ode-initval roots multiroots min multimin monte ntuple diff deriv cdf wavelet bspline doc SUBLIBS = block/libgslblock.la blas/libgslblas.la bspline/libgslbspline.la complex/libgslcomplex.la cheb/libgslcheb.la dht/libgsldht.la diff/libgsldiff.la deriv/libgslderiv.la eigen/libgsleigen.la err/libgslerr.la fft/libgslfft.la fit/libgslfit.la histogram/libgslhistogram.la ieee-utils/libgslieeeutils.la integration/libgslintegration.la interpolation/libgslinterpolation.la linalg/libgsllinalg.la matrix/libgslmatrix.la min/libgslmin.la monte/libgslmonte.la multifit/libgslmultifit.la multimin/libgslmultimin.la multiroots/libgslmultiroots.la ntuple/libgslntuple.la ode-initval/libgslodeiv.la permutation/libgslpermutation.la combination/libgslcombination.la poly/libgslpoly.la qrng/libgslqrng.la randist/libgslrandist.la rng/libgslrng.la roots/libgslroots.la siman/libgslsiman.la sort/libgslsort.la specfunc/libgslspecfunc.la statistics/libgslstatistics.la sum/libgslsum.la sys/libgslsys.la test/libgsltest.la utils/libutils.la vector/libgslvector.la cdf/libgslcdf.la wavelet/libgslwavelet.la pkginclude_HEADERS = gsl_math.h gsl_pow_int.h gsl_nan.h gsl_machine.h gsl_mode.h gsl_precision.h gsl_types.h gsl_version.h *************** *** 260,268 **** EXTRA_DIST = autogen.sh gsl-config.in gsl.pc.in configure.ac THANKS BUGS SUPPORT gsl.spec.in gsl.m4 test_gsl_histogram.sh lib_LTLIBRARIES = libgsl.la libgsl_la_SOURCES = version.c ! libgsl_la_LIBADD = $(SUBLIBS) ! libgsl_la_LDFLAGS = -version-info $(GSL_LT_VERSION) noinst_HEADERS = templates_on.h templates_off.h m4datadir = $(datadir)/aclocal m4data_DATA = gsl.m4 gsl_randist_SOURCES = gsl-randist.c --- 255,264 ---- EXTRA_DIST = autogen.sh gsl-config.in gsl.pc.in configure.ac THANKS BUGS SUPPORT gsl.spec.in gsl.m4 test_gsl_histogram.sh lib_LTLIBRARIES = libgsl.la libgsl_la_SOURCES = version.c ! libgsl_la_LIBADD = $(SUBLIBS) $(am__append_1) ! libgsl_la_LDFLAGS = -version-info $(GSL_LT_VERSION) $(am__append_2) noinst_HEADERS = templates_on.h templates_off.h + MINGW32_HOST = @MINGW32_HOST@ m4datadir = $(datadir)/aclocal m4data_DATA = gsl.m4 gsl_randist_SOURCES = gsl-randist.c *************** *** 313,319 **** config.h: stamp-h1 @if test ! -f $@; then \ rm -f stamp-h1; \ ! $(MAKE) stamp-h1; \ else :; fi stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status --- 309,315 ---- config.h: stamp-h1 @if test ! -f $@; then \ rm -f stamp-h1; \ ! $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \ else :; fi stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status *************** *** 336,342 **** cd $(top_builddir) && $(SHELL) ./config.status $@ install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) ! test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)" @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ if test -f $$p; then \ f=$(am__strip_dir) \ --- 332,338 ---- cd $(top_builddir) && $(SHELL) ./config.status $@ install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) ! test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ if test -f $$p; then \ f=$(am__strip_dir) \ *************** *** 347,353 **** uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) ! @set -x; list='$(lib_LTLIBRARIES)'; for p in $$list; do \ p=$(am__strip_dir) \ echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \ $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \ --- 343,349 ---- uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) ! @list='$(lib_LTLIBRARIES)'; for p in $$list; do \ p=$(am__strip_dir) \ echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \ $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \ *************** *** 362,371 **** rm -f "$${dir}/so_locations"; \ done libgsl.la: $(libgsl_la_OBJECTS) $(libgsl_la_DEPENDENCIES) ! $(LINK) -rpath $(libdir) $(libgsl_la_LDFLAGS) $(libgsl_la_OBJECTS) $(libgsl_la_LIBADD) $(LIBS) install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) ! test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)" @list='$(bin_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ --- 358,367 ---- rm -f "$${dir}/so_locations"; \ done libgsl.la: $(libgsl_la_OBJECTS) $(libgsl_la_DEPENDENCIES) ! $(libgsl_la_LINK) -rpath $(libdir) $(libgsl_la_OBJECTS) $(libgsl_la_LIBADD) $(LIBS) install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) ! test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" @list='$(bin_PROGRAMS)'; for p in $$list; do \ p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ if test -f $$p \ *************** *** 393,405 **** done gsl-histogram$(EXEEXT): $(gsl_histogram_OBJECTS) $(gsl_histogram_DEPENDENCIES) @rm -f gsl-histogram$(EXEEXT) ! $(LINK) $(gsl_histogram_LDFLAGS) $(gsl_histogram_OBJECTS) $(gsl_histogram_LDADD) $(LIBS) gsl-randist$(EXEEXT): $(gsl_randist_OBJECTS) $(gsl_randist_DEPENDENCIES) @rm -f gsl-randist$(EXEEXT) ! $(LINK) $(gsl_randist_LDFLAGS) $(gsl_randist_OBJECTS) $(gsl_randist_LDADD) $(LIBS) install-binSCRIPTS: $(bin_SCRIPTS) @$(NORMAL_INSTALL) ! test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)" @list='$(bin_SCRIPTS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ if test -f $$d$$p; then \ --- 389,401 ---- done gsl-histogram$(EXEEXT): $(gsl_histogram_OBJECTS) $(gsl_histogram_DEPENDENCIES) @rm -f gsl-histogram$(EXEEXT) ! $(LINK) $(gsl_histogram_OBJECTS) $(gsl_histogram_LDADD) $(LIBS) gsl-randist$(EXEEXT): $(gsl_randist_OBJECTS) $(gsl_randist_DEPENDENCIES) @rm -f gsl-randist$(EXEEXT) ! $(LINK) $(gsl_randist_OBJECTS) $(gsl_randist_LDADD) $(LIBS) install-binSCRIPTS: $(bin_SCRIPTS) @$(NORMAL_INSTALL) ! test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" @list='$(bin_SCRIPTS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ if test -f $$d$$p; then \ *************** *** 440,449 **** distclean-libtool: -rm -f libtool - uninstall-info-am: install-m4dataDATA: $(m4data_DATA) @$(NORMAL_INSTALL) ! test -z "$(m4datadir)" || $(mkdir_p) "$(DESTDIR)$(m4datadir)" @list='$(m4data_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 436,444 ---- distclean-libtool: -rm -f libtool install-m4dataDATA: $(m4data_DATA) @$(NORMAL_INSTALL) ! test -z "$(m4datadir)" || $(MKDIR_P) "$(DESTDIR)$(m4datadir)" @list='$(m4data_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 460,466 **** done install-pkgconfigDATA: $(pkgconfig_DATA) @$(NORMAL_INSTALL) ! test -z "$(pkgconfigdir)" || $(mkdir_p) "$(DESTDIR)$(pkgconfigdir)" @list='$(pkgconfig_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 455,461 ---- done install-pkgconfigDATA: $(pkgconfig_DATA) @$(NORMAL_INSTALL) ! test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" @list='$(pkgconfig_DATA)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 477,483 **** done install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 472,478 ---- done install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 524,531 **** $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ! mostlyclean-recursive clean-recursive distclean-recursive \ ! maintainer-clean-recursive: @failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ --- 519,525 ---- $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ! $(RECURSIVE_CLEAN_TARGETS): @failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *************** *** 626,634 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 620,628 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 637,643 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 631,637 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 649,655 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 643,649 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 700,723 **** distdir: $(DISTFILES) $(am__remove_distdir) ! mkdir $(distdir) ! $(mkdir_p) $(distdir)/. ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 694,715 ---- distdir: $(DISTFILES) $(am__remove_distdir) ! test -d $(distdir) || mkdir $(distdir) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 731,737 **** list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test -d "$(distdir)/$$subdir" \ ! || $(mkdir_p) "$(distdir)/$$subdir" \ || exit 1; \ distdir=`$(am__cd) $(distdir) && pwd`; \ top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ --- 723,729 ---- list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test -d "$(distdir)/$$subdir" \ ! || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ distdir=`$(am__cd) $(distdir) && pwd`; \ top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ *************** *** 739,744 **** --- 731,738 ---- $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$top_distdir" \ distdir="$$distdir/$$subdir" \ + am__remove_distdir=: \ + am__skip_length_check=: \ distdir) \ || exit 1; \ fi; \ *************** *** 746,752 **** -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! ! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r $(distdir) dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz --- 740,746 ---- -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r $(distdir) dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz *************** *** 821,827 **** $(am__remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ ! sed -e '1{h;s/./=/g;p;x;}' -e '$${p;x;}' distuninstallcheck: @cd $(distuninstallcheck_dir) \ && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ --- 815,821 ---- $(am__remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ ! sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @cd $(distuninstallcheck_dir) \ && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ *************** *** 851,857 **** installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(m4datadir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive --- 845,851 ---- installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(m4datadir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive *************** *** 901,913 **** --- 895,915 ---- install-data-am: install-m4dataDATA install-pkgconfigDATA \ install-pkgincludeHEADERS + install-dvi: install-dvi-recursive + install-exec-am: install-binPROGRAMS install-binSCRIPTS \ install-libLTLIBRARIES + install-html: install-html-recursive + install-info: install-info-recursive install-man: + install-pdf: install-pdf-recursive + + install-ps: install-ps-recursive + installcheck-am: maintainer-clean: maintainer-clean-recursive *************** *** 930,960 **** ps-am: uninstall-am: uninstall-binPROGRAMS uninstall-binSCRIPTS \ ! uninstall-info-am uninstall-libLTLIBRARIES \ ! uninstall-m4dataDATA uninstall-pkgconfigDATA \ ! uninstall-pkgincludeHEADERS ! ! uninstall-info: uninstall-info-recursive ! ! .PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am am--refresh check \ ! check-TESTS check-am clean clean-binPROGRAMS clean-generic \ ! clean-libLTLIBRARIES clean-libtool clean-recursive ctags \ ! ctags-recursive dist dist-all dist-bzip2 dist-gzip dist-shar \ ! dist-tarZ dist-zip distcheck distclean distclean-compile \ ! distclean-generic distclean-hdr distclean-libtool \ ! distclean-recursive distclean-tags distcleancheck distdir \ distuninstallcheck dvi dvi-am html html-am info info-am \ install install-am install-binPROGRAMS install-binSCRIPTS \ ! install-data install-data-am install-exec install-exec-am \ install-info install-info-am install-libLTLIBRARIES \ ! install-m4dataDATA install-man install-pkgconfigDATA \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs installdirs-am maintainer-clean \ ! maintainer-clean-generic maintainer-clean-recursive \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool mostlyclean-recursive pdf pdf-am ps ps-am \ tags tags-recursive uninstall uninstall-am \ ! uninstall-binPROGRAMS uninstall-binSCRIPTS uninstall-info-am \ uninstall-libLTLIBRARIES uninstall-m4dataDATA \ uninstall-pkgconfigDATA uninstall-pkgincludeHEADERS --- 932,963 ---- ps-am: uninstall-am: uninstall-binPROGRAMS uninstall-binSCRIPTS \ ! uninstall-libLTLIBRARIES uninstall-m4dataDATA \ ! uninstall-pkgconfigDATA uninstall-pkgincludeHEADERS ! ! .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \ ! install-strip ! ! .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ ! all all-am am--refresh check check-TESTS check-am clean \ ! clean-binPROGRAMS clean-generic clean-libLTLIBRARIES \ ! clean-libtool ctags ctags-recursive dist dist-all dist-bzip2 \ ! dist-gzip dist-shar dist-tarZ dist-zip distcheck distclean \ ! distclean-compile distclean-generic distclean-hdr \ ! distclean-libtool distclean-tags distcleancheck distdir \ distuninstallcheck dvi dvi-am html html-am info info-am \ install install-am install-binPROGRAMS install-binSCRIPTS \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-libLTLIBRARIES \ ! install-m4dataDATA install-man install-pdf install-pdf-am \ ! install-pkgconfigDATA install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs installdirs-am maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-recursive uninstall uninstall-am \ ! uninstall-binPROGRAMS uninstall-binSCRIPTS \ uninstall-libLTLIBRARIES uninstall-m4dataDATA \ uninstall-pkgconfigDATA uninstall-pkgincludeHEADERS diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/matrix/ChangeLog gsl-1.10/matrix/ChangeLog *** gsl-1.9/matrix/ChangeLog 2007-02-17 14:13:19.000000000 +0000 --- gsl-1.10/matrix/ChangeLog 2007-08-21 15:38:57.000000000 +0100 *************** *** 1,3 **** --- 1,7 ---- + 2007-08-21 Brian Gough + + * prop_source.c (FUNCTION): added gsl_matrix_isnonneg + 2007-02-17 Brian Gough * test_source.c (FUNCTION): avoid running negative value tests on diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/matrix/copy_source.c gsl-1.10/matrix/copy_source.c *** gsl-1.9/matrix/copy_source.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/matrix/copy_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* matrix/copy_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* matrix/copy_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/matrix/file_source.c gsl-1.10/matrix/file_source.c *** gsl-1.9/matrix/file_source.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/matrix/file_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* matrix/file_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* matrix/file_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/matrix/gsl_matrix_char.h gsl-1.10/matrix/gsl_matrix_char.h *** gsl-1.9/matrix/gsl_matrix_char.h 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/matrix/gsl_matrix_char.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* matrix/gsl_matrix_char.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* matrix/gsl_matrix_char.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 116,121 **** --- 116,129 ---- _gsl_vector_char_view gsl_matrix_char_superdiagonal (gsl_matrix_char * m, const size_t k); + _gsl_vector_char_view + gsl_matrix_char_subrow (gsl_matrix_char * m, const size_t i, + const size_t offset, const size_t n); + + _gsl_vector_char_view + gsl_matrix_char_subcolumn (gsl_matrix_char * m, const size_t j, + const size_t offset, const size_t n); + _gsl_matrix_char_view gsl_matrix_char_view_array (char * base, const size_t n1, *************** *** 164,169 **** --- 172,185 ---- gsl_matrix_char_const_superdiagonal (const gsl_matrix_char * m, const size_t k); + _gsl_vector_char_const_view + gsl_matrix_char_const_subrow (const gsl_matrix_char * m, const size_t i, + const size_t offset, const size_t n); + + _gsl_vector_char_const_view + gsl_matrix_char_const_subcolumn (const gsl_matrix_char * m, const size_t j, + const size_t offset, const size_t n); + _gsl_matrix_char_const_view gsl_matrix_char_const_view_array (const char * base, const size_t n1, *************** *** 223,228 **** --- 239,245 ---- int gsl_matrix_char_isnull (const gsl_matrix_char * m); int gsl_matrix_char_ispos (const gsl_matrix_char * m); int gsl_matrix_char_isneg (const gsl_matrix_char * m); + int gsl_matrix_char_isnonneg (const gsl_matrix_char * m); int gsl_matrix_char_add (gsl_matrix_char * a, const gsl_matrix_char * b); int gsl_matrix_char_sub (gsl_matrix_char * a, const gsl_matrix_char * b); diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/matrix/gsl_matrix_complex_double.h gsl-1.10/matrix/gsl_matrix_complex_double.h *** gsl-1.9/matrix/gsl_matrix_complex_double.h 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/matrix/gsl_matrix_complex_double.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* matrix/gsl_matrix_complex_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* matrix/gsl_matrix_complex_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 114,119 **** --- 114,129 ---- _gsl_vector_complex_view gsl_matrix_complex_superdiagonal (gsl_matrix_complex * m, const size_t k); + _gsl_vector_complex_view + gsl_matrix_complex_subrow (gsl_matrix_complex * m, + const size_t i, const size_t offset, + const size_t n); + + _gsl_vector_complex_view + gsl_matrix_complex_subcolumn (gsl_matrix_complex * m, + const size_t j, const size_t offset, + const size_t n); + _gsl_matrix_complex_view gsl_matrix_complex_view_array (double * base, const size_t n1, *************** *** 161,166 **** --- 171,186 ---- gsl_matrix_complex_const_superdiagonal (const gsl_matrix_complex * m, const size_t k); + _gsl_vector_complex_const_view + gsl_matrix_complex_const_subrow (const gsl_matrix_complex * m, + const size_t i, const size_t offset, + const size_t n); + + _gsl_vector_complex_const_view + gsl_matrix_complex_const_subcolumn (const gsl_matrix_complex * m, + const size_t j, const size_t offset, + const size_t n); + _gsl_matrix_complex_const_view gsl_matrix_complex_const_view_array (const double * base, const size_t n1, diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/matrix/gsl_matrix_complex_float.h gsl-1.10/matrix/gsl_matrix_complex_float.h *** gsl-1.9/matrix/gsl_matrix_complex_float.h 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/matrix/gsl_matrix_complex_float.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* matrix/gsl_matrix_complex_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* matrix/gsl_matrix_complex_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 114,119 **** --- 114,129 ---- _gsl_vector_complex_float_view gsl_matrix_complex_float_superdiagonal (gsl_matrix_complex_float * m, const size_t k); + _gsl_vector_complex_float_view + gsl_matrix_complex_float_subrow (gsl_matrix_complex_float * m, + const size_t i, const size_t offset, + const size_t n); + + _gsl_vector_complex_float_view + gsl_matrix_complex_float_subcolumn (gsl_matrix_complex_float * m, + const size_t j, const size_t offset, + const size_t n); + _gsl_matrix_complex_float_view gsl_matrix_complex_float_view_array (float * base, const size_t n1, *************** *** 161,166 **** --- 171,186 ---- gsl_matrix_complex_float_const_superdiagonal (const gsl_matrix_complex_float * m, const size_t k); + _gsl_vector_complex_float_const_view + gsl_matrix_complex_float_const_subrow (const gsl_matrix_complex_float * m, + const size_t i, const size_t offset, + const size_t n); + + _gsl_vector_complex_float_const_view + gsl_matrix_complex_float_const_subcolumn (const gsl_matrix_complex_float * m, + const size_t j, const size_t offset, + const size_t n); + _gsl_matrix_complex_float_const_view gsl_matrix_complex_float_const_view_array (const float * base, const size_t n1, diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/matrix/gsl_matrix_complex_long_double.h gsl-1.10/matrix/gsl_matrix_complex_long_double.h *** gsl-1.9/matrix/gsl_matrix_complex_long_double.h 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/matrix/gsl_matrix_complex_long_double.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* matrix/gsl_matrix_complex_long_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* matrix/gsl_matrix_complex_long_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 114,119 **** --- 114,129 ---- _gsl_vector_complex_long_double_view gsl_matrix_complex_long_double_superdiagonal (gsl_matrix_complex_long_double * m, const size_t k); + _gsl_vector_complex_long_double_view + gsl_matrix_complex_long_double_subrow (gsl_matrix_complex_long_double * m, + const size_t i, const size_t offset, + const size_t n); + + _gsl_vector_complex_long_double_view + gsl_matrix_complex_long_double_subcolumn (gsl_matrix_complex_long_double * m, + const size_t j, const size_t offset, + const size_t n); + _gsl_matrix_complex_long_double_view gsl_matrix_complex_long_double_view_array (long double * base, const size_t n1, *************** *** 161,166 **** --- 171,186 ---- gsl_matrix_complex_long_double_const_superdiagonal (const gsl_matrix_complex_long_double * m, const size_t k); + _gsl_vector_complex_long_double_const_view + gsl_matrix_complex_long_double_const_subrow (const gsl_matrix_complex_long_double * m, + const size_t i, const size_t offset, + const size_t n); + + _gsl_vector_complex_long_double_const_view + gsl_matrix_complex_long_double_const_subcolumn (const gsl_matrix_complex_long_double * m, + const size_t j, const size_t offset, + const size_t n); + _gsl_matrix_complex_long_double_const_view gsl_matrix_complex_long_double_const_view_array (const long double * base, const size_t n1, diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/matrix/gsl_matrix_double.h gsl-1.10/matrix/gsl_matrix_double.h *** gsl-1.9/matrix/gsl_matrix_double.h 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/matrix/gsl_matrix_double.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* matrix/gsl_matrix_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* matrix/gsl_matrix_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 116,121 **** --- 116,129 ---- _gsl_vector_view gsl_matrix_superdiagonal (gsl_matrix * m, const size_t k); + _gsl_vector_view + gsl_matrix_subrow (gsl_matrix * m, const size_t i, + const size_t offset, const size_t n); + + _gsl_vector_view + gsl_matrix_subcolumn (gsl_matrix * m, const size_t j, + const size_t offset, const size_t n); + _gsl_matrix_view gsl_matrix_view_array (double * base, const size_t n1, *************** *** 164,169 **** --- 172,185 ---- gsl_matrix_const_superdiagonal (const gsl_matrix * m, const size_t k); + _gsl_vector_const_view + gsl_matrix_const_subrow (const gsl_matrix * m, const size_t i, + const size_t offset, const size_t n); + + _gsl_vector_const_view + gsl_matrix_const_subcolumn (const gsl_matrix * m, const size_t j, + const size_t offset, const size_t n); + _gsl_matrix_const_view gsl_matrix_const_view_array (const double * base, const size_t n1, *************** *** 223,228 **** --- 239,245 ---- int gsl_matrix_isnull (const gsl_matrix * m); int gsl_matrix_ispos (const gsl_matrix * m); int gsl_matrix_isneg (const gsl_matrix * m); + int gsl_matrix_isnonneg (const gsl_matrix * m); int gsl_matrix_add (gsl_matrix * a, const gsl_matrix * b); int gsl_matrix_sub (gsl_matrix * a, const gsl_matrix * b); diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/matrix/gsl_matrix_float.h gsl-1.10/matrix/gsl_matrix_float.h *** gsl-1.9/matrix/gsl_matrix_float.h 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/matrix/gsl_matrix_float.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* matrix/gsl_matrix_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* matrix/gsl_matrix_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 116,121 **** --- 116,129 ---- _gsl_vector_float_view gsl_matrix_float_superdiagonal (gsl_matrix_float * m, const size_t k); + _gsl_vector_float_view + gsl_matrix_float_subrow (gsl_matrix_float * m, const size_t i, + const size_t offset, const size_t n); + + _gsl_vector_float_view + gsl_matrix_float_subcolumn (gsl_matrix_float * m, const size_t j, + const size_t offset, const size_t n); + _gsl_matrix_float_view gsl_matrix_float_view_array (float * base, const size_t n1, *************** *** 164,169 **** --- 172,185 ---- gsl_matrix_float_const_superdiagonal (const gsl_matrix_float * m, const size_t k); + _gsl_vector_float_const_view + gsl_matrix_float_const_subrow (const gsl_matrix_float * m, const size_t i, + const size_t offset, const size_t n); + + _gsl_vector_float_const_view + gsl_matrix_float_const_subcolumn (const gsl_matrix_float * m, const size_t j, + const size_t offset, const size_t n); + _gsl_matrix_float_const_view gsl_matrix_float_const_view_array (const float * base, const size_t n1, *************** *** 223,228 **** --- 239,245 ---- int gsl_matrix_float_isnull (const gsl_matrix_float * m); int gsl_matrix_float_ispos (const gsl_matrix_float * m); int gsl_matrix_float_isneg (const gsl_matrix_float * m); + int gsl_matrix_float_isnonneg (const gsl_matrix_float * m); int gsl_matrix_float_add (gsl_matrix_float * a, const gsl_matrix_float * b); int gsl_matrix_float_sub (gsl_matrix_float * a, const gsl_matrix_float * b); diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/matrix/gsl_matrix_int.h gsl-1.10/matrix/gsl_matrix_int.h *** gsl-1.9/matrix/gsl_matrix_int.h 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/matrix/gsl_matrix_int.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* matrix/gsl_matrix_int.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* matrix/gsl_matrix_int.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 116,121 **** --- 116,129 ---- _gsl_vector_int_view gsl_matrix_int_superdiagonal (gsl_matrix_int * m, const size_t k); + _gsl_vector_int_view + gsl_matrix_int_subrow (gsl_matrix_int * m, const size_t i, + const size_t offset, const size_t n); + + _gsl_vector_int_view + gsl_matrix_int_subcolumn (gsl_matrix_int * m, const size_t j, + const size_t offset, const size_t n); + _gsl_matrix_int_view gsl_matrix_int_view_array (int * base, const size_t n1, *************** *** 164,169 **** --- 172,185 ---- gsl_matrix_int_const_superdiagonal (const gsl_matrix_int * m, const size_t k); + _gsl_vector_int_const_view + gsl_matrix_int_const_subrow (const gsl_matrix_int * m, const size_t i, + const size_t offset, const size_t n); + + _gsl_vector_int_const_view + gsl_matrix_int_const_subcolumn (const gsl_matrix_int * m, const size_t j, + const size_t offset, const size_t n); + _gsl_matrix_int_const_view gsl_matrix_int_const_view_array (const int * base, const size_t n1, *************** *** 223,228 **** --- 239,245 ---- int gsl_matrix_int_isnull (const gsl_matrix_int * m); int gsl_matrix_int_ispos (const gsl_matrix_int * m); int gsl_matrix_int_isneg (const gsl_matrix_int * m); + int gsl_matrix_int_isnonneg (const gsl_matrix_int * m); int gsl_matrix_int_add (gsl_matrix_int * a, const gsl_matrix_int * b); int gsl_matrix_int_sub (gsl_matrix_int * a, const gsl_matrix_int * b); diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/matrix/gsl_matrix_long_double.h gsl-1.10/matrix/gsl_matrix_long_double.h *** gsl-1.9/matrix/gsl_matrix_long_double.h 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/matrix/gsl_matrix_long_double.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* matrix/gsl_matrix_long_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* matrix/gsl_matrix_long_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 116,121 **** --- 116,129 ---- _gsl_vector_long_double_view gsl_matrix_long_double_superdiagonal (gsl_matrix_long_double * m, const size_t k); + _gsl_vector_long_double_view + gsl_matrix_long_double_subrow (gsl_matrix_long_double * m, const size_t i, + const size_t offset, const size_t n); + + _gsl_vector_long_double_view + gsl_matrix_long_double_subcolumn (gsl_matrix_long_double * m, const size_t j, + const size_t offset, const size_t n); + _gsl_matrix_long_double_view gsl_matrix_long_double_view_array (long double * base, const size_t n1, *************** *** 164,169 **** --- 172,185 ---- gsl_matrix_long_double_const_superdiagonal (const gsl_matrix_long_double * m, const size_t k); + _gsl_vector_long_double_const_view + gsl_matrix_long_double_const_subrow (const gsl_matrix_long_double * m, const size_t i, + const size_t offset, const size_t n); + + _gsl_vector_long_double_const_view + gsl_matrix_long_double_const_subcolumn (const gsl_matrix_long_double * m, const size_t j, + const size_t offset, const size_t n); + _gsl_matrix_long_double_const_view gsl_matrix_long_double_const_view_array (const long double * base, const size_t n1, *************** *** 223,228 **** --- 239,245 ---- int gsl_matrix_long_double_isnull (const gsl_matrix_long_double * m); int gsl_matrix_long_double_ispos (const gsl_matrix_long_double * m); int gsl_matrix_long_double_isneg (const gsl_matrix_long_double * m); + int gsl_matrix_long_double_isnonneg (const gsl_matrix_long_double * m); int gsl_matrix_long_double_add (gsl_matrix_long_double * a, const gsl_matrix_long_double * b); int gsl_matrix_long_double_sub (gsl_matrix_long_double * a, const gsl_matrix_long_double * b); diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/matrix/gsl_matrix_long.h gsl-1.10/matrix/gsl_matrix_long.h *** gsl-1.9/matrix/gsl_matrix_long.h 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/matrix/gsl_matrix_long.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* matrix/gsl_matrix_long.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* matrix/gsl_matrix_long.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 116,121 **** --- 116,129 ---- _gsl_vector_long_view gsl_matrix_long_superdiagonal (gsl_matrix_long * m, const size_t k); + _gsl_vector_long_view + gsl_matrix_long_subrow (gsl_matrix_long * m, const size_t i, + const size_t offset, const size_t n); + + _gsl_vector_long_view + gsl_matrix_long_subcolumn (gsl_matrix_long * m, const size_t j, + const size_t offset, const size_t n); + _gsl_matrix_long_view gsl_matrix_long_view_array (long * base, const size_t n1, *************** *** 164,169 **** --- 172,185 ---- gsl_matrix_long_const_superdiagonal (const gsl_matrix_long * m, const size_t k); + _gsl_vector_long_const_view + gsl_matrix_long_const_subrow (const gsl_matrix_long * m, const size_t i, + const size_t offset, const size_t n); + + _gsl_vector_long_const_view + gsl_matrix_long_const_subcolumn (const gsl_matrix_long * m, const size_t j, + const size_t offset, const size_t n); + _gsl_matrix_long_const_view gsl_matrix_long_const_view_array (const long * base, const size_t n1, *************** *** 223,228 **** --- 239,245 ---- int gsl_matrix_long_isnull (const gsl_matrix_long * m); int gsl_matrix_long_ispos (const gsl_matrix_long * m); int gsl_matrix_long_isneg (const gsl_matrix_long * m); + int gsl_matrix_long_isnonneg (const gsl_matrix_long * m); int gsl_matrix_long_add (gsl_matrix_long * a, const gsl_matrix_long * b); int gsl_matrix_long_sub (gsl_matrix_long * a, const gsl_matrix_long * b); diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/matrix/gsl_matrix_short.h gsl-1.10/matrix/gsl_matrix_short.h *** gsl-1.9/matrix/gsl_matrix_short.h 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/matrix/gsl_matrix_short.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* matrix/gsl_matrix_short.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* matrix/gsl_matrix_short.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 116,121 **** --- 116,129 ---- _gsl_vector_short_view gsl_matrix_short_superdiagonal (gsl_matrix_short * m, const size_t k); + _gsl_vector_short_view + gsl_matrix_short_subrow (gsl_matrix_short * m, const size_t i, + const size_t offset, const size_t n); + + _gsl_vector_short_view + gsl_matrix_short_subcolumn (gsl_matrix_short * m, const size_t j, + const size_t offset, const size_t n); + _gsl_matrix_short_view gsl_matrix_short_view_array (short * base, const size_t n1, *************** *** 164,169 **** --- 172,185 ---- gsl_matrix_short_const_superdiagonal (const gsl_matrix_short * m, const size_t k); + _gsl_vector_short_const_view + gsl_matrix_short_const_subrow (const gsl_matrix_short * m, const size_t i, + const size_t offset, const size_t n); + + _gsl_vector_short_const_view + gsl_matrix_short_const_subcolumn (const gsl_matrix_short * m, const size_t j, + const size_t offset, const size_t n); + _gsl_matrix_short_const_view gsl_matrix_short_const_view_array (const short * base, const size_t n1, *************** *** 223,228 **** --- 239,245 ---- int gsl_matrix_short_isnull (const gsl_matrix_short * m); int gsl_matrix_short_ispos (const gsl_matrix_short * m); int gsl_matrix_short_isneg (const gsl_matrix_short * m); + int gsl_matrix_short_isnonneg (const gsl_matrix_short * m); int gsl_matrix_short_add (gsl_matrix_short * a, const gsl_matrix_short * b); int gsl_matrix_short_sub (gsl_matrix_short * a, const gsl_matrix_short * b); diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/matrix/gsl_matrix_uchar.h gsl-1.10/matrix/gsl_matrix_uchar.h *** gsl-1.9/matrix/gsl_matrix_uchar.h 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/matrix/gsl_matrix_uchar.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* matrix/gsl_matrix_uchar.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* matrix/gsl_matrix_uchar.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 116,121 **** --- 116,129 ---- _gsl_vector_uchar_view gsl_matrix_uchar_superdiagonal (gsl_matrix_uchar * m, const size_t k); + _gsl_vector_uchar_view + gsl_matrix_uchar_subrow (gsl_matrix_uchar * m, const size_t i, + const size_t offset, const size_t n); + + _gsl_vector_uchar_view + gsl_matrix_uchar_subcolumn (gsl_matrix_uchar * m, const size_t j, + const size_t offset, const size_t n); + _gsl_matrix_uchar_view gsl_matrix_uchar_view_array (unsigned char * base, const size_t n1, *************** *** 164,169 **** --- 172,185 ---- gsl_matrix_uchar_const_superdiagonal (const gsl_matrix_uchar * m, const size_t k); + _gsl_vector_uchar_const_view + gsl_matrix_uchar_const_subrow (const gsl_matrix_uchar * m, const size_t i, + const size_t offset, const size_t n); + + _gsl_vector_uchar_const_view + gsl_matrix_uchar_const_subcolumn (const gsl_matrix_uchar * m, const size_t j, + const size_t offset, const size_t n); + _gsl_matrix_uchar_const_view gsl_matrix_uchar_const_view_array (const unsigned char * base, const size_t n1, *************** *** 223,228 **** --- 239,245 ---- int gsl_matrix_uchar_isnull (const gsl_matrix_uchar * m); int gsl_matrix_uchar_ispos (const gsl_matrix_uchar * m); int gsl_matrix_uchar_isneg (const gsl_matrix_uchar * m); + int gsl_matrix_uchar_isnonneg (const gsl_matrix_uchar * m); int gsl_matrix_uchar_add (gsl_matrix_uchar * a, const gsl_matrix_uchar * b); int gsl_matrix_uchar_sub (gsl_matrix_uchar * a, const gsl_matrix_uchar * b); diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/matrix/gsl_matrix_uint.h gsl-1.10/matrix/gsl_matrix_uint.h *** gsl-1.9/matrix/gsl_matrix_uint.h 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/matrix/gsl_matrix_uint.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* matrix/gsl_matrix_uint.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* matrix/gsl_matrix_uint.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 116,121 **** --- 116,129 ---- _gsl_vector_uint_view gsl_matrix_uint_superdiagonal (gsl_matrix_uint * m, const size_t k); + _gsl_vector_uint_view + gsl_matrix_uint_subrow (gsl_matrix_uint * m, const size_t i, + const size_t offset, const size_t n); + + _gsl_vector_uint_view + gsl_matrix_uint_subcolumn (gsl_matrix_uint * m, const size_t j, + const size_t offset, const size_t n); + _gsl_matrix_uint_view gsl_matrix_uint_view_array (unsigned int * base, const size_t n1, *************** *** 164,169 **** --- 172,185 ---- gsl_matrix_uint_const_superdiagonal (const gsl_matrix_uint * m, const size_t k); + _gsl_vector_uint_const_view + gsl_matrix_uint_const_subrow (const gsl_matrix_uint * m, const size_t i, + const size_t offset, const size_t n); + + _gsl_vector_uint_const_view + gsl_matrix_uint_const_subcolumn (const gsl_matrix_uint * m, const size_t j, + const size_t offset, const size_t n); + _gsl_matrix_uint_const_view gsl_matrix_uint_const_view_array (const unsigned int * base, const size_t n1, *************** *** 223,228 **** --- 239,245 ---- int gsl_matrix_uint_isnull (const gsl_matrix_uint * m); int gsl_matrix_uint_ispos (const gsl_matrix_uint * m); int gsl_matrix_uint_isneg (const gsl_matrix_uint * m); + int gsl_matrix_uint_isnonneg (const gsl_matrix_uint * m); int gsl_matrix_uint_add (gsl_matrix_uint * a, const gsl_matrix_uint * b); int gsl_matrix_uint_sub (gsl_matrix_uint * a, const gsl_matrix_uint * b); diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/matrix/gsl_matrix_ulong.h gsl-1.10/matrix/gsl_matrix_ulong.h *** gsl-1.9/matrix/gsl_matrix_ulong.h 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/matrix/gsl_matrix_ulong.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* matrix/gsl_matrix_ulong.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* matrix/gsl_matrix_ulong.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 116,121 **** --- 116,129 ---- _gsl_vector_ulong_view gsl_matrix_ulong_superdiagonal (gsl_matrix_ulong * m, const size_t k); + _gsl_vector_ulong_view + gsl_matrix_ulong_subrow (gsl_matrix_ulong * m, const size_t i, + const size_t offset, const size_t n); + + _gsl_vector_ulong_view + gsl_matrix_ulong_subcolumn (gsl_matrix_ulong * m, const size_t j, + const size_t offset, const size_t n); + _gsl_matrix_ulong_view gsl_matrix_ulong_view_array (unsigned long * base, const size_t n1, *************** *** 164,169 **** --- 172,185 ---- gsl_matrix_ulong_const_superdiagonal (const gsl_matrix_ulong * m, const size_t k); + _gsl_vector_ulong_const_view + gsl_matrix_ulong_const_subrow (const gsl_matrix_ulong * m, const size_t i, + const size_t offset, const size_t n); + + _gsl_vector_ulong_const_view + gsl_matrix_ulong_const_subcolumn (const gsl_matrix_ulong * m, const size_t j, + const size_t offset, const size_t n); + _gsl_matrix_ulong_const_view gsl_matrix_ulong_const_view_array (const unsigned long * base, const size_t n1, *************** *** 223,228 **** --- 239,245 ---- int gsl_matrix_ulong_isnull (const gsl_matrix_ulong * m); int gsl_matrix_ulong_ispos (const gsl_matrix_ulong * m); int gsl_matrix_ulong_isneg (const gsl_matrix_ulong * m); + int gsl_matrix_ulong_isnonneg (const gsl_matrix_ulong * m); int gsl_matrix_ulong_add (gsl_matrix_ulong * a, const gsl_matrix_ulong * b); int gsl_matrix_ulong_sub (gsl_matrix_ulong * a, const gsl_matrix_ulong * b); diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/matrix/gsl_matrix_ushort.h gsl-1.10/matrix/gsl_matrix_ushort.h *** gsl-1.9/matrix/gsl_matrix_ushort.h 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/matrix/gsl_matrix_ushort.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* matrix/gsl_matrix_ushort.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* matrix/gsl_matrix_ushort.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 116,121 **** --- 116,129 ---- _gsl_vector_ushort_view gsl_matrix_ushort_superdiagonal (gsl_matrix_ushort * m, const size_t k); + _gsl_vector_ushort_view + gsl_matrix_ushort_subrow (gsl_matrix_ushort * m, const size_t i, + const size_t offset, const size_t n); + + _gsl_vector_ushort_view + gsl_matrix_ushort_subcolumn (gsl_matrix_ushort * m, const size_t j, + const size_t offset, const size_t n); + _gsl_matrix_ushort_view gsl_matrix_ushort_view_array (unsigned short * base, const size_t n1, *************** *** 164,169 **** --- 172,185 ---- gsl_matrix_ushort_const_superdiagonal (const gsl_matrix_ushort * m, const size_t k); + _gsl_vector_ushort_const_view + gsl_matrix_ushort_const_subrow (const gsl_matrix_ushort * m, const size_t i, + const size_t offset, const size_t n); + + _gsl_vector_ushort_const_view + gsl_matrix_ushort_const_subcolumn (const gsl_matrix_ushort * m, const size_t j, + const size_t offset, const size_t n); + _gsl_matrix_ushort_const_view gsl_matrix_ushort_const_view_array (const unsigned short * base, const size_t n1, *************** *** 223,228 **** --- 239,245 ---- int gsl_matrix_ushort_isnull (const gsl_matrix_ushort * m); int gsl_matrix_ushort_ispos (const gsl_matrix_ushort * m); int gsl_matrix_ushort_isneg (const gsl_matrix_ushort * m); + int gsl_matrix_ushort_isnonneg (const gsl_matrix_ushort * m); int gsl_matrix_ushort_add (gsl_matrix_ushort * a, const gsl_matrix_ushort * b); int gsl_matrix_ushort_sub (gsl_matrix_ushort * a, const gsl_matrix_ushort * b); diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/matrix/init_source.c gsl-1.10/matrix/init_source.c *** gsl-1.9/matrix/init_source.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/matrix/init_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* matrix/init_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* matrix/init_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/matrix/Makefile.in gsl-1.10/matrix/Makefile.in *** gsl-1.9/matrix/Makefile.in 2007-02-20 13:09:09.000000000 +0000 --- gsl-1.10/matrix/Makefile.in 2007-09-13 16:41:43.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 66,82 **** ../block/libgslblock.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslmatrix_la_SOURCES) $(test_SOURCES) \ $(test_static_SOURCES) DIST_SOURCES = $(libgslmatrix_la_SOURCES) $(test_SOURCES) \ --- 62,79 ---- ../block/libgslblock.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslmatrix_la_SOURCES) $(test_SOURCES) \ $(test_static_SOURCES) DIST_SOURCES = $(libgslmatrix_la_SOURCES) $(test_SOURCES) \ *************** *** 112,117 **** --- 109,115 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 119,125 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 117,122 ---- *************** *** 127,143 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 124,137 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 149,157 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 143,150 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 161,175 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 154,169 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 179,206 **** --- 173,211 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslmatrix.la pkginclude_HEADERS = gsl_matrix.h gsl_matrix_char.h gsl_matrix_complex_double.h gsl_matrix_complex_float.h gsl_matrix_complex_long_double.h gsl_matrix_double.h gsl_matrix_float.h gsl_matrix_int.h gsl_matrix_long.h gsl_matrix_long_double.h gsl_matrix_short.h gsl_matrix_uchar.h gsl_matrix_uint.h gsl_matrix_ulong.h gsl_matrix_ushort.h INCLUDES = -I$(top_builddir) -I$(top_srcdir) *************** *** 255,261 **** rm -f "$${dir}/so_locations"; \ done libgslmatrix.la: $(libgslmatrix_la_OBJECTS) $(libgslmatrix_la_DEPENDENCIES) ! $(LINK) $(libgslmatrix_la_LDFLAGS) $(libgslmatrix_la_OBJECTS) $(libgslmatrix_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 260,266 ---- rm -f "$${dir}/so_locations"; \ done libgslmatrix.la: $(libgslmatrix_la_OBJECTS) $(libgslmatrix_la_DEPENDENCIES) ! $(LINK) $(libgslmatrix_la_OBJECTS) $(libgslmatrix_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 265,274 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) test_static$(EXEEXT): $(test_static_OBJECTS) $(test_static_DEPENDENCIES) @rm -f test_static$(EXEEXT) ! $(LINK) $(test_static_LDFLAGS) $(test_static_OBJECTS) $(test_static_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 270,279 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) test_static$(EXEEXT): $(test_static_OBJECTS) $(test_static_DEPENDENCIES) @rm -f test_static$(EXEEXT) ! $(LINK) $(test_static_OBJECTS) $(test_static_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 290,302 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 295,303 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 361,369 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 362,370 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 372,378 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 373,379 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 384,390 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 385,391 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 434,455 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 435,455 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 467,473 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 467,473 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 502,508 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 502,508 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 516,527 **** --- 516,535 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 541,561 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 549,572 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/matrix/matrix_source.c gsl-1.10/matrix/matrix_source.c *** gsl-1.9/matrix/matrix_source.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/matrix/matrix_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* matrix/matrix_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* matrix/matrix_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/matrix/minmax_source.c gsl-1.10/matrix/minmax_source.c *** gsl-1.9/matrix/minmax_source.c 2007-01-26 18:20:48.000000000 +0000 --- gsl-1.10/matrix/minmax_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* matrix/minmax_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* matrix/minmax_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/matrix/oper_complex_source.c gsl-1.10/matrix/oper_complex_source.c *** gsl-1.9/matrix/oper_complex_source.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/matrix/oper_complex_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* matrix/oper_complex_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* matrix/oper_complex_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/matrix/oper_source.c gsl-1.10/matrix/oper_source.c *** gsl-1.9/matrix/oper_source.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/matrix/oper_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* matrix/oper_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* matrix/oper_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/matrix/prop_source.c gsl-1.10/matrix/prop_source.c *** gsl-1.9/matrix/prop_source.c 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/matrix/prop_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* matrix/prop_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* matrix/prop_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 97,99 **** --- 97,125 ---- return 1; } + + int + FUNCTION (gsl_matrix, isnonneg) (const TYPE (gsl_matrix) * m) + { + const size_t size1 = m->size1; + const size_t size2 = m->size2; + const size_t tda = m->tda ; + + size_t i, j, k; + + for (i = 0; i < size1 ; i++) + { + for (j = 0; j < size2; j++) + { + for (k = 0; k < MULTIPLICITY; k++) + { + if (m->data[(i * tda + j) * MULTIPLICITY + k] < 0.0) + { + return 0; + } + } + } + } + + return 1; + } diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/matrix/rowcol_source.c gsl-1.10/matrix/rowcol_source.c *** gsl-1.9/matrix/rowcol_source.c 2005-08-22 16:22:22.000000000 +0100 --- gsl-1.10/matrix/rowcol_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* matrix/rowcol_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* matrix/rowcol_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 132,134 **** --- 132,199 ---- } } + QUALIFIED_VIEW(_gsl_vector,view) + FUNCTION (gsl_matrix, subrow) (QUALIFIED_TYPE(gsl_matrix) * m, const size_t i, const size_t offset, const size_t n) + { + QUALIFIED_VIEW(_gsl_vector,view) view = NULL_VECTOR_VIEW; + + if (i >= m->size1) + { + GSL_ERROR_VAL ("row index is out of range", GSL_EINVAL, view); + } + else if (n == 0) + { + GSL_ERROR_VAL ("vector length n must be positive integer", + GSL_EINVAL, view); + } + else if (offset + n > m->size1) + { + GSL_ERROR_VAL ("dimension n overflows matrix", GSL_EINVAL, view); + } + + { + TYPE(gsl_vector) v = NULL_VECTOR; + + v.data = m->data + MULTIPLICITY * (i * m->tda + offset); + v.size = n; + v.stride = 1; + v.block = m->block; + v.owner = 0; + + view.vector = v; + return view; + } + } + + QUALIFIED_VIEW(_gsl_vector,view) + FUNCTION (gsl_matrix, subcolumn) (QUALIFIED_TYPE(gsl_matrix) * m, const size_t j, const size_t offset, const size_t n) + { + QUALIFIED_VIEW(_gsl_vector,view) view = NULL_VECTOR_VIEW; + + if (j >= m->size2) + { + GSL_ERROR_VAL ("column index is out of range", GSL_EINVAL, view); + } + else if (n == 0) + { + GSL_ERROR_VAL ("vector length n must be positive integer", + GSL_EINVAL, view); + } + else if (offset + n > m->size2) + { + GSL_ERROR_VAL ("dimension n overflows matrix", GSL_EINVAL, view); + } + + { + TYPE(gsl_vector) v = NULL_VECTOR; + + v.data = m->data + MULTIPLICITY * (offset * m->tda + j); + v.size = n; + v.stride = m->tda; + v.block = m->block; + v.owner = 0; + + view.vector = v; + return view; + } + } diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/matrix/submatrix_source.c gsl-1.10/matrix/submatrix_source.c *** gsl-1.9/matrix/submatrix_source.c 2005-08-22 16:22:22.000000000 +0100 --- gsl-1.10/matrix/submatrix_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* matrix/submatrix_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* matrix/submatrix_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/matrix/swap_source.c gsl-1.10/matrix/swap_source.c *** gsl-1.9/matrix/swap_source.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/matrix/swap_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* matrix/swap_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* matrix/swap_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/matrix/test.c gsl-1.10/matrix/test.c *** gsl-1.9/matrix/test.c 2007-01-10 17:17:17.000000000 +0000 --- gsl-1.10/matrix/test.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* matrix/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* matrix/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 19,25 **** #include ! #if (!GSL_RANGE_CHECK) && HAVE_INLINE #undef GSL_RANGE_CHECK #define GSL_RANGE_CHECK 1 #endif --- 19,25 ---- #include ! #if (!GSL_RANGE_CHECK) && defined(HAVE_INLINE) #undef GSL_RANGE_CHECK #define GSL_RANGE_CHECK 1 #endif diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/matrix/test_complex_source.c gsl-1.10/matrix/test_complex_source.c *** gsl-1.9/matrix/test_complex_source.c 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/matrix/test_complex_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* matrix/test_complex_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* matrix/test_complex_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/matrix/test_source.c gsl-1.10/matrix/test_source.c *** gsl-1.9/matrix/test_source.c 2007-02-17 14:13:19.000000000 +0000 --- gsl-1.10/matrix/test_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* matrix/test_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* matrix/test_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 93,98 **** --- 93,101 ---- status = (FUNCTION(gsl_matrix,isneg)(m) != 0); TEST (status, "_isneg" DESC " on calloc matrix"); + + status = (FUNCTION(gsl_matrix,isnonneg)(m) != 1); + TEST (status, "_isnonneg" DESC " on calloc matrix"); } *************** *** 274,279 **** --- 277,285 ---- status = (FUNCTION(gsl_matrix,isneg)(m) != 0); TEST (status, "_isneg" DESC " on null matrix") ; + + status = (FUNCTION(gsl_matrix,isnonneg)(m) != 1); + TEST (status, "_isnonneg" DESC " on null matrix") ; } *************** *** 296,301 **** --- 302,310 ---- status = (FUNCTION(gsl_matrix,isneg)(m) != 0); TEST (status, "_isneg" DESC " on non-negative matrix") ; + + status = (FUNCTION(gsl_matrix,isnonneg)(m) != 1); + TEST (status, "_isnonneg" DESC " on non-negative matrix") ; } #ifndef UNSIGNED *************** *** 304,311 **** { for (j = 0; j < N; j++) { ! k++; ! FUNCTION (gsl_matrix, set) (m, i, j, (ATOMIC) ((k % 10) - 5)); } } --- 313,320 ---- { for (j = 0; j < N; j++) { ! ATOMIC mij = ((++k) % 10) - (ATOMIC) 5; ! FUNCTION (gsl_matrix, set) (m, i, j, mij); } } *************** *** 318,323 **** --- 327,335 ---- status = (FUNCTION(gsl_matrix,isneg)(m) != 0); TEST (status, "_isneg" DESC " on mixed matrix") ; + + status = (FUNCTION(gsl_matrix,isnonneg)(m) != 0); + TEST (status, "_isnonneg" DESC " on mixed matrix") ; } k = 0; *************** *** 339,344 **** --- 351,359 ---- status = (FUNCTION(gsl_matrix,isneg)(m) != 0); TEST (status, "_isneg" DESC " on non-positive matrix") ; + + status = (FUNCTION(gsl_matrix,isnonneg)(m) != 0); + TEST (status, "_isnonneg" DESC " on non-positive matrix") ; } #endif *************** *** 361,366 **** --- 376,384 ---- status = (FUNCTION(gsl_matrix,isneg)(m) != 0); TEST (status, "_isneg" DESC " on positive matrix") ; + + status = (FUNCTION(gsl_matrix,isnonneg)(m) != 1); + TEST (status, "_isnonneg" DESC " on positive matrix") ; } #if (!defined(UNSIGNED) && !defined(BASE_CHAR)) *************** *** 383,388 **** --- 401,409 ---- status = (FUNCTION(gsl_matrix,isneg)(m) != 1); TEST (status, "_isneg" DESC " on negative matrix") ; + + status = (FUNCTION(gsl_matrix,isnonneg)(m) != 0); + TEST (status, "_isnonneg" DESC " on negative matrix") ; } #endif diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/matrix/TODO gsl-1.10/matrix/TODO *** gsl-1.9/matrix/TODO 2001-06-16 00:36:53.000000000 +0100 --- gsl-1.10/matrix/TODO 2007-08-02 20:08:11.000000000 +0100 *************** *** 1,3 **** --- 1,5 ---- + * Tests for subrowcol + * Pretty print function * Clean up the tests. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/matrix/view_source.c gsl-1.10/matrix/view_source.c *** gsl-1.9/matrix/view_source.c 2005-08-22 16:22:22.000000000 +0100 --- gsl-1.10/matrix/view_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* matrix/view_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* matrix/view_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/min/bracketing.c gsl-1.10/min/bracketing.c *** gsl-1.9/min/bracketing.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/min/bracketing.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/min/brent.c gsl-1.10/min/brent.c *** gsl-1.9/min/brent.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/min/brent.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* min/brent.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* min/brent.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/min/ChangeLog gsl-1.10/min/ChangeLog *** gsl-1.9/min/ChangeLog 2005-09-13 10:44:24.000000000 +0100 --- gsl-1.10/min/ChangeLog 2007-08-02 20:06:47.000000000 +0100 *************** *** 1,3 **** --- 1,7 ---- + 2007-07-30 Brian Gough + + * min.h (SAFE_FUNC_CALL): use gsl_finite instead of finite + 2005-09-09 Brian Gough * min.h: improved error message, function can be discontinuous diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/min/convergence.c gsl-1.10/min/convergence.c *** gsl-1.9/min/convergence.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/min/convergence.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* min/convergence.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* min/convergence.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/min/fsolver.c gsl-1.10/min/fsolver.c *** gsl-1.9/min/fsolver.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/min/fsolver.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* min/fsolver.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* min/fsolver.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/min/golden.c gsl-1.10/min/golden.c *** gsl-1.9/min/golden.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/min/golden.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* min/golden.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* min/golden.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/min/gsl_min.h gsl-1.10/min/gsl_min.h *** gsl-1.9/min/gsl_min.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/min/gsl_min.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* min/gsl_min.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* min/gsl_min.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/min/Makefile.in gsl-1.10/min/Makefile.in *** gsl-1.9/min/Makefile.in 2007-02-20 13:09:09.000000000 +0000 --- gsl-1.10/min/Makefile.in 2007-09-13 16:41:43.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 58,74 **** test_DEPENDENCIES = libgslmin.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../utils/libutils.la \ ../sys/libgslsys.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslmin_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslmin_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 54,71 ---- test_DEPENDENCIES = libgslmin.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../utils/libutils.la \ ../sys/libgslsys.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslmin_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslmin_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 102,107 **** --- 99,105 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 109,115 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 107,112 ---- *************** *** 117,133 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 114,127 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 139,147 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 133,140 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 151,165 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 144,159 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 169,196 **** --- 163,201 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslmin.la pkginclude_HEADERS = gsl_min.h noinst_HEADERS = min.h *************** *** 242,248 **** rm -f "$${dir}/so_locations"; \ done libgslmin.la: $(libgslmin_la_OBJECTS) $(libgslmin_la_DEPENDENCIES) ! $(LINK) $(libgslmin_la_LDFLAGS) $(libgslmin_la_OBJECTS) $(libgslmin_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 247,253 ---- rm -f "$${dir}/so_locations"; \ done libgslmin.la: $(libgslmin_la_OBJECTS) $(libgslmin_la_DEPENDENCIES) ! $(LINK) $(libgslmin_la_OBJECTS) $(libgslmin_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 252,258 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 257,263 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 274,286 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 279,287 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 345,353 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 346,354 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 356,362 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 357,363 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 368,374 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 369,375 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 418,439 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 419,439 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 451,457 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 451,457 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 485,491 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 485,491 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 499,510 **** --- 499,518 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 524,544 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 532,555 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/min/min.h gsl-1.10/min/min.h *** gsl-1.9/min/min.h 2005-09-13 10:44:24.000000000 +0100 --- gsl-1.10/min/min.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* min/min.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* min/min.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 20,25 **** #define SAFE_FUNC_CALL(f, x, yp) \ do { \ *yp = GSL_FN_EVAL(f,x); \ ! if (!finite(*yp)) \ GSL_ERROR("computed function value is infinite or NaN", GSL_EBADFUNC); \ } while (0) --- 20,25 ---- #define SAFE_FUNC_CALL(f, x, yp) \ do { \ *yp = GSL_FN_EVAL(f,x); \ ! if (!gsl_finite(*yp)) \ GSL_ERROR("computed function value is infinite or NaN", GSL_EBADFUNC); \ } while (0) diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/min/test.c gsl-1.10/min/test.c *** gsl-1.9/min/test.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/min/test.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* min/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* min/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/min/test_funcs.c gsl-1.10/min/test_funcs.c *** gsl-1.9/min/test_funcs.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/min/test_funcs.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* min/test_funcs.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* min/test_funcs.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/min/test.h gsl-1.10/min/test.h *** gsl-1.9/min/test.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/min/test.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* min/test.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* min/test.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/monte/gsl_monte.h gsl-1.10/monte/gsl_monte.h *** gsl-1.9/monte/gsl_monte.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/monte/gsl_monte.h 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/monte/gsl_monte_miser.h gsl-1.10/monte/gsl_monte_miser.h *** gsl-1.9/monte/gsl_monte_miser.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/monte/gsl_monte_miser.h 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/monte/gsl_monte_plain.h gsl-1.10/monte/gsl_monte_plain.h *** gsl-1.9/monte/gsl_monte_plain.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/monte/gsl_monte_plain.h 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/monte/gsl_monte_vegas.h gsl-1.10/monte/gsl_monte_vegas.h *** gsl-1.9/monte/gsl_monte_vegas.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/monte/gsl_monte_vegas.h 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/monte/Makefile.in gsl-1.10/monte/Makefile.in *** gsl-1.9/monte/Makefile.in 2007-02-20 13:09:10.000000000 +0000 --- gsl-1.10/monte/Makefile.in 2007-09-13 16:41:43.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 57,73 **** test_DEPENDENCIES = libgslmonte.la ../rng/libgslrng.la \ ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la \ ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslmonte_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslmonte_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 53,70 ---- test_DEPENDENCIES = libgslmonte.la ../rng/libgslrng.la \ ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la \ ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslmonte_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslmonte_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 101,106 **** --- 98,104 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 108,114 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 106,111 ---- *************** *** 116,132 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 113,126 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 138,146 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 132,139 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 150,164 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 143,158 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 168,195 **** --- 162,200 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslmonte.la libgslmonte_la_SOURCES = miser.c plain.c gsl_monte_vegas.h gsl_monte_miser.h gsl_monte_plain.h gsl_monte.h vegas.c pkginclude_HEADERS = gsl_monte.h gsl_monte_vegas.h gsl_monte_miser.h gsl_monte_plain.h *************** *** 241,247 **** rm -f "$${dir}/so_locations"; \ done libgslmonte.la: $(libgslmonte_la_OBJECTS) $(libgslmonte_la_DEPENDENCIES) ! $(LINK) $(libgslmonte_la_LDFLAGS) $(libgslmonte_la_OBJECTS) $(libgslmonte_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 246,252 ---- rm -f "$${dir}/so_locations"; \ done libgslmonte.la: $(libgslmonte_la_OBJECTS) $(libgslmonte_la_DEPENDENCIES) ! $(LINK) $(libgslmonte_la_OBJECTS) $(libgslmonte_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 251,257 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 256,262 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 273,285 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 278,286 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 344,352 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 345,353 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 355,361 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 356,362 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 367,373 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 368,374 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 417,438 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 418,438 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 450,456 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 450,456 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 484,490 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 484,490 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 498,509 **** --- 498,517 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 523,543 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS #demo_SOURCES= demo.c --- 531,554 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS #demo_SOURCES= demo.c diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/monte/miser.c gsl-1.10/monte/miser.c *** gsl-1.9/monte/miser.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/monte/miser.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/monte/plain.c gsl-1.10/monte/plain.c *** gsl-1.9/monte/plain.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/monte/plain.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/monte/test.c gsl-1.10/monte/test.c *** gsl-1.9/monte/test.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/monte/test.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/monte/vegas.c gsl-1.10/monte/vegas.c *** gsl-1.9/monte/vegas.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/monte/vegas.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multifit/ChangeLog gsl-1.10/multifit/ChangeLog *** gsl-1.9/multifit/ChangeLog 2007-01-26 18:22:11.000000000 +0000 --- gsl-1.10/multifit/ChangeLog 2007-07-29 19:11:33.000000000 +0100 *************** *** 1,3 **** --- 1,7 ---- + 2007-07-29 Brian Gough + + * lmset.c (set): ensure internal state is zeroed after a set + 2007-01-26 Brian Gough * fsolver.c (gsl_multifit_fsolver_set): made vector argument x diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multifit/convergence.c gsl-1.10/multifit/convergence.c *** gsl-1.9/multifit/convergence.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/multifit/convergence.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* multifit/convergence.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* multifit/convergence.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multifit/covar.c gsl-1.10/multifit/covar.c *** gsl-1.9/multifit/covar.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/multifit/covar.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* multifit/covar.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2004 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* multifit/covar.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2004, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multifit/fdfsolver.c gsl-1.10/multifit/fdfsolver.c *** gsl-1.9/multifit/fdfsolver.c 2007-01-26 18:22:11.000000000 +0000 --- gsl-1.10/multifit/fdfsolver.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* multifit/fdfsolver.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* multifit/fdfsolver.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multifit/fsolver.c gsl-1.10/multifit/fsolver.c *** gsl-1.9/multifit/fsolver.c 2007-01-26 18:22:11.000000000 +0000 --- gsl-1.10/multifit/fsolver.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* multifit/fsolver.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* multifit/fsolver.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multifit/gradient.c gsl-1.10/multifit/gradient.c *** gsl-1.9/multifit/gradient.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/multifit/gradient.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* multifit/covar.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* multifit/covar.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multifit/gsl_multifit.h gsl-1.10/multifit/gsl_multifit.h *** gsl-1.9/multifit/gsl_multifit.h 2006-02-20 15:24:14.000000000 +0000 --- gsl-1.10/multifit/gsl_multifit.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* multifit/gsl_multifit.h * ! * Copyright (C) 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* multifit/gsl_multifit.h * ! * Copyright (C) 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multifit/gsl_multifit_nlin.h gsl-1.10/multifit/gsl_multifit_nlin.h *** gsl-1.9/multifit/gsl_multifit_nlin.h 2007-01-26 18:22:11.000000000 +0000 --- gsl-1.10/multifit/gsl_multifit_nlin.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* multifit_nlin/gsl_multifit_nlin.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* multifit_nlin/gsl_multifit_nlin.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multifit/lmder.c gsl-1.10/multifit/lmder.c *** gsl-1.9/multifit/lmder.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/multifit/lmder.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* multfit/lmder.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* multfit/lmder.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multifit/lmiterate.c gsl-1.10/multifit/lmiterate.c *** gsl-1.9/multifit/lmiterate.c 2004-06-18 16:17:18.000000000 +0100 --- gsl-1.10/multifit/lmiterate.c 2007-07-29 19:11:08.000000000 +0100 *************** *** 93,104 **** --- 93,111 ---- #ifdef DEBUG printf("lmiterate: fnorm = %g fnorm1 = %g actred = %g\n", state->fnorm, fnorm1, actred); + printf("r = "); gsl_matrix_fprintf(stdout, r, "%g"); + printf("perm = "); gsl_permutation_fprintf(stdout, perm, "%d"); + printf("dx = "); gsl_vector_fprintf(stdout, dx, "%g"); #endif /* Compute rptdx = R P^T dx, noting that |J dx| = |R P^T dx| */ compute_rptdx (r, perm, dx, rptdx); + #ifdef DEBUG + printf("rptdx = "); gsl_vector_fprintf(stdout, rptdx, "%g"); + #endif + fnorm1p = enorm (rptdx); /* Compute the scaled predicted reduction = |J dx|^2 + 2 par |D dx|^2 */ diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multifit/lmpar.c gsl-1.10/multifit/lmpar.c *** gsl-1.9/multifit/lmpar.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/multifit/lmpar.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* multifit/lmpar.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* multifit/lmpar.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 262,269 **** --- 262,295 ---- return GSL_SUCCESS; } + #ifdef DEBUG + printf ("r = "); + gsl_matrix_fprintf (stdout, r, "%g"); + printf ("\n"); + + printf ("newton = "); + gsl_vector_fprintf (stdout, newton, "%g"); + printf ("\n"); + + printf ("dxnorm = %g\n", dxnorm); + #endif + + compute_newton_bound (r, newton, dxnorm, perm, diag, w); + #ifdef DEBUG + printf("perm = "); gsl_permutation_fprintf(stdout, perm, "%d"); + + printf ("diag = "); + gsl_vector_fprintf (stdout, diag, "%g"); + printf ("\n"); + + printf ("w = "); + gsl_vector_fprintf (stdout, w, "%g"); + printf ("\n"); + #endif + + { double wnorm = enorm (w); double phider = wnorm * wnorm; diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multifit/lmset.c gsl-1.10/multifit/lmset.c *** gsl-1.9/multifit/lmset.c 2003-07-25 16:18:12.000000000 +0100 --- gsl-1.10/multifit/lmset.c 2007-07-29 19:11:33.000000000 +0100 *************** *** 40,44 **** --- 40,57 ---- gsl_matrix_memcpy (r, J); gsl_linalg_QRPT_decomp (r, tau, perm, &signum, work1); + gsl_vector_set_zero (state->rptdx); + gsl_vector_set_zero (state->w); + + /* Zero the trial vector, as in the alloc function */ + + gsl_vector_set_zero (state->f_trial); + + #ifdef DEBUG + printf("r = "); gsl_matrix_fprintf(stdout, r, "%g"); + printf("perm = "); gsl_permutation_fprintf(stdout, perm, "%d"); + printf("tau = "); gsl_vector_fprintf(stdout, tau, "%g"); + #endif + return GSL_SUCCESS; } diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multifit/Makefile.in gsl-1.10/multifit/Makefile.in *** gsl-1.9/multifit/Makefile.in 2007-02-20 13:09:10.000000000 +0000 --- gsl-1.10/multifit/Makefile.in 2007-09-13 16:41:44.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 62,78 **** ../complex/libgslcomplex.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../utils/libutils.la \ ../sys/libgslsys.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslmultifit_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslmultifit_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 58,75 ---- ../complex/libgslcomplex.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../utils/libutils.la \ ../sys/libgslsys.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslmultifit_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslmultifit_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 106,111 **** --- 103,109 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 113,119 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 111,116 ---- *************** *** 121,137 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 118,131 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 143,151 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 137,144 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 155,169 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 148,163 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 173,200 **** --- 167,205 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslmultifit.la pkginclude_HEADERS = gsl_multifit.h gsl_multifit_nlin.h INCLUDES = -I$(top_builddir) *************** *** 246,252 **** rm -f "$${dir}/so_locations"; \ done libgslmultifit.la: $(libgslmultifit_la_OBJECTS) $(libgslmultifit_la_DEPENDENCIES) ! $(LINK) $(libgslmultifit_la_LDFLAGS) $(libgslmultifit_la_OBJECTS) $(libgslmultifit_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 251,257 ---- rm -f "$${dir}/so_locations"; \ done libgslmultifit.la: $(libgslmultifit_la_OBJECTS) $(libgslmultifit_la_DEPENDENCIES) ! $(LINK) $(libgslmultifit_la_OBJECTS) $(libgslmultifit_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 256,262 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 261,267 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 278,290 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 283,291 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 349,357 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 350,358 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 360,366 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 361,367 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 372,378 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 373,379 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 422,443 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 423,443 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 455,461 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 455,461 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 489,495 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 489,495 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 503,514 **** --- 503,522 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 528,548 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS #demo_SOURCES = demo.c --- 536,559 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS #demo_SOURCES = demo.c diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multifit/multilinear.c gsl-1.10/multifit/multilinear.c *** gsl-1.9/multifit/multilinear.c 2006-02-20 15:24:14.000000000 +0000 --- gsl-1.10/multifit/multilinear.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* multifit/multilinear.c * ! * Copyright (C) 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* multifit/multilinear.c * ! * Copyright (C) 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multifit/test.c gsl-1.10/multifit/test.c *** gsl-1.9/multifit/test.c 2006-02-20 15:24:14.000000000 +0000 --- gsl-1.10/multifit/test.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,3 **** --- 1,22 ---- + /* multifit/test.c + * + * Copyright (C) 2007 Brian Gough + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or (at + * your option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + /* These tests are based on the NIST Statistical Reference Datasets See http://www.nist.gov/itl/div898/strd/index.html for more information. */ *************** *** 149,155 **** { const gsl_multifit_fdfsolver_type *T; gsl_multifit_fdfsolver *s; ! const size_t n = f->n; const size_t p = f->p; --- 168,174 ---- { const gsl_multifit_fdfsolver_type *T; gsl_multifit_fdfsolver *s; ! const size_t n = f->n; const size_t p = f->p; *************** *** 206,210 **** --- 225,283 ---- gsl_matrix_free (covar); } + /* Check that there is no hidden state, restarting should + produce identical results. */ + + { + int status0, status1; + size_t i; + gsl_multifit_fdfsolver *t = gsl_multifit_fdfsolver_alloc (T, n, p); + gsl_multifit_fdfsolver_set (t, f, &x.vector); + + /* do a few extra iterations to stir things up */ + + gsl_multifit_fdfsolver_set (s, f, &x.vector); + + for (i = 0; i < 3; i++) + { + gsl_multifit_fdfsolver_iterate (s); + } + + gsl_multifit_fdfsolver_set (s, f, &x.vector); + + do + { + status0 = gsl_multifit_fdfsolver_iterate (s); + status1 = gsl_multifit_fdfsolver_iterate (t); + + gsl_test_int(status0, status1, "%s, lmsder status after set iter=%u", name, iter); + + for (i = 0; i < p; i++) { + double sxi = gsl_vector_get(s->x,i); + double txi = gsl_vector_get(t->x,i); + #ifdef DEBUG + printf("%d %g %g\n", i, sxi, txi); + #endif + gsl_test_rel(sxi, txi, 1e-15, "%s, lmsder after set, %u/%u", name, iter, i); + } + + #ifdef DEBUG + printf("iter = %d status = %d |f| = %.18e x = \n", + iter, status, gsl_blas_dnrm2 (s->f)); + + gsl_vector_fprintf(stdout, s->x, "%.8e"); + #endif + status0 = gsl_multifit_test_delta (s->dx, s->x, 0.0, 1e-7); + status1 = gsl_multifit_test_delta (t->dx, s->x, 0.0, 1e-7); + + gsl_test_int(status0, status1, "%s, lmsder test delta status after set iter=%u", name, iter); + + iter++; + } + while (status1 == GSL_CONTINUE && iter < 1000); + + gsl_multifit_fdfsolver_free (t); + } + gsl_multifit_fdfsolver_free (s); } diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multifit/work.c gsl-1.10/multifit/work.c *** gsl-1.9/multifit/work.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/multifit/work.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* multifit/work.c * ! * Copyright (C) 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* multifit/work.c * ! * Copyright (C) 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multimin/ChangeLog gsl-1.10/multimin/ChangeLog *** gsl-1.9/multimin/ChangeLog 2007-02-20 13:06:51.000000000 +0000 --- gsl-1.10/multimin/ChangeLog 2007-08-02 20:06:25.000000000 +0100 *************** *** 1,3 **** --- 1,7 ---- + 2007-07-30 Brian Gough + + * history.c: removed (unused file) + 2007-02-20 Brian Gough * vector_bfgs2.c (vector_bfgs2_iterate): use positive step size diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multimin/conjugate_fr.c gsl-1.10/multimin/conjugate_fr.c *** gsl-1.9/multimin/conjugate_fr.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/multimin/conjugate_fr.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multimin/conjugate_pr.c gsl-1.10/multimin/conjugate_pr.c *** gsl-1.9/multimin/conjugate_pr.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/multimin/conjugate_pr.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multimin/convergence.c gsl-1.10/multimin/convergence.c *** gsl-1.9/multimin/convergence.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/multimin/convergence.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multimin/diff.c gsl-1.10/multimin/diff.c *** gsl-1.9/multimin/diff.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/multimin/diff.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multimin/directional_minimize.c gsl-1.10/multimin/directional_minimize.c *** gsl-1.9/multimin/directional_minimize.c 2006-04-21 13:08:41.000000000 +0100 --- gsl-1.10/multimin/directional_minimize.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multimin/fdfminimizer.c gsl-1.10/multimin/fdfminimizer.c *** gsl-1.9/multimin/fdfminimizer.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/multimin/fdfminimizer.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multimin/fminimizer.c gsl-1.10/multimin/fminimizer.c *** gsl-1.9/multimin/fminimizer.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/multimin/fminimizer.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multimin/gsl_multimin.h gsl-1.10/multimin/gsl_multimin.h *** gsl-1.9/multimin/gsl_multimin.h 2007-02-08 15:08:50.000000000 +0000 --- gsl-1.10/multimin/gsl_multimin.h 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multimin/Makefile.in gsl-1.10/multimin/Makefile.in *** gsl-1.9/multimin/Makefile.in 2007-02-20 13:09:10.000000000 +0000 --- gsl-1.10/multimin/Makefile.in 2007-09-13 16:41:44.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 64,80 **** ../complex/libgslcomplex.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslmultimin_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslmultimin_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 60,77 ---- ../complex/libgslcomplex.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslmultimin_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslmultimin_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 108,113 **** --- 105,111 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 115,121 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 113,118 ---- *************** *** 123,139 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 120,133 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 145,153 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 139,146 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 157,171 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 150,165 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 175,202 **** --- 169,207 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslmultimin.la pkginclude_HEADERS = gsl_multimin.h INCLUDES = -I$(top_builddir) *************** *** 248,254 **** rm -f "$${dir}/so_locations"; \ done libgslmultimin.la: $(libgslmultimin_la_OBJECTS) $(libgslmultimin_la_DEPENDENCIES) ! $(LINK) $(libgslmultimin_la_LDFLAGS) $(libgslmultimin_la_OBJECTS) $(libgslmultimin_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 253,259 ---- rm -f "$${dir}/so_locations"; \ done libgslmultimin.la: $(libgslmultimin_la_OBJECTS) $(libgslmultimin_la_DEPENDENCIES) ! $(LINK) $(libgslmultimin_la_OBJECTS) $(libgslmultimin_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 258,264 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 263,269 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 280,292 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 285,293 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 351,359 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 352,360 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 362,368 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 363,369 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 374,380 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 375,381 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 424,445 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 425,445 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 457,463 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 457,463 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 491,497 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 491,497 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 505,516 **** --- 505,524 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 530,550 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS #demo_SOURCES = demo.c --- 538,561 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS #demo_SOURCES = demo.c diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multimin/simplex.c gsl-1.10/multimin/simplex.c *** gsl-1.9/multimin/simplex.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/multimin/simplex.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* multimin/simplex.c * * Copyright (C) 2002 Tuomo Keskitalo, Ivo Alxneit * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,11 ---- /* multimin/simplex.c * + * Copyright (C) 2007 Brian Gough * Copyright (C) 2002 Tuomo Keskitalo, Ivo Alxneit * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 61,71 **** size_t i, j; double newval, mp; - if (x1->size1 < 2) - { - GSL_ERROR ("simplex cannot have less than two corners!", GSL_EFAILED); - } - for (j = 0; j < x1->size2; j++) { mp = 0.0; --- 62,67 ---- *************** *** 103,108 **** --- 99,106 ---- size_t i, j; double newval; + int status = GSL_SUCCESS; + for (i = 0; i < x1->size1; i++) { if (i != best) *************** *** 119,128 **** gsl_matrix_get_row (xc, x1, i); newval = GSL_MULTIMIN_FN_EVAL (f, xc); gsl_vector_set (y1, i, newval); } } ! return GSL_SUCCESS; } static int --- 117,135 ---- gsl_matrix_get_row (xc, x1, i); newval = GSL_MULTIMIN_FN_EVAL (f, xc); gsl_vector_set (y1, i, newval); + + /* notify caller that we found at least one bad function value. + we finish the contraction (and do not abort) to allow the user + to handle the situation */ + + if(!gsl_finite(newval)) + { + status = GSL_EBADFUNC; + } } } ! return status; } static int *************** *** 184,189 **** --- 191,201 ---- { nmsimplex_state_t *state = (nmsimplex_state_t *) vstate; + if (n == 0) + { + GSL_ERROR("invalid number of parameters specified", GSL_EINVAL); + } + state->x1 = gsl_matrix_alloc (n + 1, n); if (state->x1 == NULL) *************** *** 195,200 **** --- 207,213 ---- if (state->y1 == NULL) { + gsl_matrix_free(state->x1); GSL_ERROR ("failed to allocate space for y", GSL_ENOMEM); } *************** *** 202,207 **** --- 215,222 ---- if (state->ws1 == NULL) { + gsl_matrix_free(state->x1); + gsl_vector_free(state->y1); GSL_ERROR ("failed to allocate space for ws1", GSL_ENOMEM); } *************** *** 209,214 **** --- 224,232 ---- if (state->ws2 == NULL) { + gsl_matrix_free(state->x1); + gsl_vector_free(state->y1); + gsl_vector_free(state->ws1); GSL_ERROR ("failed to allocate space for ws2", GSL_ENOMEM); } *************** *** 228,236 **** --- 246,270 ---- gsl_vector *xtemp = state->ws1; + if (xtemp->size != x->size) + { + GSL_ERROR("incompatible size of x", GSL_EINVAL); + } + + if (xtemp->size != step_size->size) + { + GSL_ERROR("incompatible size of step_size", GSL_EINVAL); + } + /* first point is the original x0 */ val = GSL_MULTIMIN_FN_EVAL (f, x); + + if (!gsl_finite(val)) + { + GSL_ERROR("non-finite function value encountered", GSL_EBADFUNC); + } + gsl_matrix_set_row (state->x1, 0, x); gsl_vector_set (state->y1, 0, val); *************** *** 248,253 **** --- 282,293 ---- val = gsl_vector_get (xtemp, i) + gsl_vector_get (step_size, i); gsl_vector_set (xtemp, i, val); val = GSL_MULTIMIN_FN_EVAL (f, xtemp); + + if (!gsl_finite(val)) + { + GSL_ERROR("non-finite function value encountered", GSL_EBADFUNC); + } + gsl_matrix_set_row (state->x1, i + 1, xtemp); gsl_vector_set (state->y1, i + 1, val); } *************** *** 294,299 **** --- 334,345 ---- int status; double val, val2; + + if (xc->size != x->size) + { + GSL_ERROR("incompatible size of x", GSL_EINVAL); + } + /* get index of highest, second highest and lowest point */ dhi = ds_hi = dlo = gsl_vector_get (y1, 0); *************** *** 324,337 **** val = nmsimplex_move_corner (-1.0, state, hi, xc, f); ! if (val < gsl_vector_get (y1, lo)) { /* reflected point becomes lowest point, try expansion */ val2 = nmsimplex_move_corner (-2.0, state, hi, xc2, f); ! if (val2 < gsl_vector_get (y1, lo)) { gsl_matrix_set_row (x1, hi, xc2); gsl_vector_set (y1, hi, val2); --- 370,383 ---- val = nmsimplex_move_corner (-1.0, state, hi, xc, f); ! if (gsl_finite(val) && val < gsl_vector_get (y1, lo)) { /* reflected point becomes lowest point, try expansion */ val2 = nmsimplex_move_corner (-2.0, state, hi, xc2, f); ! if (gsl_finite(val2) && val2 < gsl_vector_get (y1, lo)) { gsl_matrix_set_row (x1, hi, xc2); gsl_vector_set (y1, hi, val2); *************** *** 343,353 **** } } ! /* reflection does not improve things enough */ ! else if (val > gsl_vector_get (y1, s_hi)) { ! if (val <= gsl_vector_get (y1, hi)) { /* if trial point is better than highest point, replace --- 389,401 ---- } } ! /* reflection does not improve things enough ! or ! we got a non-finite (illegal) function value */ ! else if (!gsl_finite(val) || val > gsl_vector_get (y1, s_hi)) { ! if (gsl_finite(val) && val <= gsl_vector_get (y1, hi)) { /* if trial point is better than highest point, replace *************** *** 361,367 **** val2 = nmsimplex_move_corner (0.5, state, hi, xc2, f); ! if (val2 <= gsl_vector_get (y1, hi)) { gsl_matrix_set_row (state->x1, hi, xc2); gsl_vector_set (y1, hi, val2); --- 409,415 ---- val2 = nmsimplex_move_corner (0.5, state, hi, xc2, f); ! if (gsl_finite(val2) && val2 <= gsl_vector_get (y1, hi)) { gsl_matrix_set_row (state->x1, hi, xc2); gsl_vector_set (y1, hi, val2); *************** *** 373,379 **** /* contract the whole simplex in respect to the best point */ status = nmsimplex_contract_by_best (state, lo, xc, f); ! if (status != 0) { GSL_ERROR ("nmsimplex_contract_by_best failed", GSL_EFAILED); } --- 421,427 ---- /* contract the whole simplex in respect to the best point */ status = nmsimplex_contract_by_best (state, lo, xc, f); ! if (status != GSL_SUCCESS) { GSL_ERROR ("nmsimplex_contract_by_best failed", GSL_EFAILED); } diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multimin/steepest_descent.c gsl-1.10/multimin/steepest_descent.c *** gsl-1.9/multimin/steepest_descent.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/multimin/steepest_descent.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multimin/test.c gsl-1.10/multimin/test.c *** gsl-1.9/multimin/test.c 2007-02-19 15:08:41.000000000 +0000 --- gsl-1.10/multimin/test.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multimin/test_funcs.c gsl-1.10/multimin/test_funcs.c *** gsl-1.9/multimin/test_funcs.c 2007-02-08 15:08:50.000000000 +0000 --- gsl-1.10/multimin/test_funcs.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multimin/test_funcs.h gsl-1.10/multimin/test_funcs.h *** gsl-1.9/multimin/test_funcs.h 2007-02-19 15:08:41.000000000 +0000 --- gsl-1.10/multimin/test_funcs.h 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multimin/vector_bfgs2.c gsl-1.10/multimin/vector_bfgs2.c *** gsl-1.9/multimin/vector_bfgs2.c 2007-02-20 13:06:51.000000000 +0000 --- gsl-1.10/multimin/vector_bfgs2.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multimin/vector_bfgs.c gsl-1.10/multimin/vector_bfgs.c *** gsl-1.9/multimin/vector_bfgs.c 2006-04-21 13:08:12.000000000 +0100 --- gsl-1.10/multimin/vector_bfgs.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multiroots/broyden.c gsl-1.10/multiroots/broyden.c *** gsl-1.9/multiroots/broyden.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/multiroots/broyden.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* multiroots/broyden.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* multiroots/broyden.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multiroots/ChangeLog gsl-1.10/multiroots/ChangeLog *** gsl-1.9/multiroots/ChangeLog 2007-01-26 18:22:11.000000000 +0000 --- gsl-1.10/multiroots/ChangeLog 2007-08-27 22:27:20.000000000 +0100 *************** *** 1,3 **** --- 1,9 ---- + 2007-08-27 Brian Gough + + * fdjac.c (gsl_multiroot_fdjacobian): detect null columns (dx too + small) + (gsl_multiroot_fdjacobian): avoid memory leak for x1,f1 + 2007-01-26 Brian Gough * fsolver.c (gsl_multiroot_fsolver_set): made vector argument x diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multiroots/convergence.c gsl-1.10/multiroots/convergence.c *** gsl-1.9/multiroots/convergence.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/multiroots/convergence.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* multiroots/convergence.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* multiroots/convergence.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multiroots/dnewton.c gsl-1.10/multiroots/dnewton.c *** gsl-1.9/multiroots/dnewton.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/multiroots/dnewton.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* multiroots/dnewton.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* multiroots/dnewton.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multiroots/dogleg.c gsl-1.10/multiroots/dogleg.c *** gsl-1.9/multiroots/dogleg.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/multiroots/dogleg.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* multiroots/dogleg.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* multiroots/dogleg.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multiroots/enorm.c gsl-1.10/multiroots/enorm.c *** gsl-1.9/multiroots/enorm.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/multiroots/enorm.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* multiroots/enorm.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* multiroots/enorm.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multiroots/fdfsolver.c gsl-1.10/multiroots/fdfsolver.c *** gsl-1.9/multiroots/fdfsolver.c 2007-01-26 18:22:11.000000000 +0000 --- gsl-1.10/multiroots/fdfsolver.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* multiroots/fdfsolver.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* multiroots/fdfsolver.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multiroots/fdjac.c gsl-1.10/multiroots/fdjac.c *** gsl-1.9/multiroots/fdjac.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/multiroots/fdjac.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* multiroots/fdjac.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* multiroots/fdjac.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 29,34 **** --- 29,35 ---- const size_t m = f->size; const size_t n1 = jacobian->size1; const size_t n2 = jacobian->size2; + int status = 0; if (m != n1 || n != n2) { *************** *** 70,80 **** gsl_vector_set (x1, j, xj + dx); { ! int status = GSL_MULTIROOT_FN_EVAL (F, x1, f1); ! if (status != GSL_SUCCESS) { ! return GSL_EBADFUNC; } } --- 71,82 ---- gsl_vector_set (x1, j, xj + dx); { ! int f_stat = GSL_MULTIROOT_FN_EVAL (F, x1, f1); ! if (f_stat != GSL_SUCCESS) { ! status = GSL_EBADFUNC; ! break; /* n.b. avoid memory leak for x1,f1 */ } } *************** *** 86,96 **** double g0 = gsl_vector_get (f, i); gsl_matrix_set (jacobian, i, j, (g1 - g0) / dx); } } gsl_vector_free (x1); gsl_vector_free (f1); } ! ! return GSL_SUCCESS; } --- 88,111 ---- double g0 = gsl_vector_get (f, i); gsl_matrix_set (jacobian, i, j, (g1 - g0) / dx); } + + { + gsl_vector_view col = gsl_matrix_column (jacobian, j); + int null_col = gsl_vector_isnull (&col.vector); + /* if column is null, return an error - this may be due to + dx being too small. Try increasing epsrel */ + if (null_col) { + status = GSL_ESING; + } + } } gsl_vector_free (x1); gsl_vector_free (f1); } ! ! if (status) ! return status; ! else ! return GSL_SUCCESS; } diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multiroots/fsolver.c gsl-1.10/multiroots/fsolver.c *** gsl-1.9/multiroots/fsolver.c 2007-01-26 18:22:11.000000000 +0000 --- gsl-1.10/multiroots/fsolver.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* multiroots/fsolver.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* multiroots/fsolver.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multiroots/gnewton.c gsl-1.10/multiroots/gnewton.c *** gsl-1.9/multiroots/gnewton.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/multiroots/gnewton.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* multiroots/gnewton.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* multiroots/gnewton.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multiroots/gsl_multiroots.h gsl-1.10/multiroots/gsl_multiroots.h *** gsl-1.9/multiroots/gsl_multiroots.h 2007-01-26 18:22:11.000000000 +0000 --- gsl-1.10/multiroots/gsl_multiroots.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* multiroots/gsl_multiroots.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* multiroots/gsl_multiroots.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multiroots/hybrid.c gsl-1.10/multiroots/hybrid.c *** gsl-1.9/multiroots/hybrid.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/multiroots/hybrid.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* multiroots/hybrid.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* multiroots/hybrid.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multiroots/hybridj.c gsl-1.10/multiroots/hybridj.c *** gsl-1.9/multiroots/hybridj.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/multiroots/hybridj.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* multiroots/hybridj.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* multiroots/hybridj.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multiroots/Makefile.in gsl-1.10/multiroots/Makefile.in *** gsl-1.9/multiroots/Makefile.in 2007-02-20 13:09:11.000000000 +0000 --- gsl-1.10/multiroots/Makefile.in 2007-09-13 16:41:44.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 17,31 **** # -*-makefile-*- - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 17,27 ---- *************** *** 65,81 **** ../complex/libgslcomplex.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslmultiroots_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslmultiroots_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 61,78 ---- ../complex/libgslcomplex.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslmultiroots_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslmultiroots_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 109,114 **** --- 106,112 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 116,122 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 114,119 ---- *************** *** 124,140 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 121,134 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 146,154 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 140,147 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 158,172 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 151,166 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 176,203 **** --- 170,208 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslmultiroots.la pkginclude_HEADERS = gsl_multiroots.h noinst_HEADERS = enorm.c dogleg.c *************** *** 249,255 **** rm -f "$${dir}/so_locations"; \ done libgslmultiroots.la: $(libgslmultiroots_la_OBJECTS) $(libgslmultiroots_la_DEPENDENCIES) ! $(LINK) $(libgslmultiroots_la_LDFLAGS) $(libgslmultiroots_la_OBJECTS) $(libgslmultiroots_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 254,260 ---- rm -f "$${dir}/so_locations"; \ done libgslmultiroots.la: $(libgslmultiroots_la_OBJECTS) $(libgslmultiroots_la_DEPENDENCIES) ! $(LINK) $(libgslmultiroots_la_OBJECTS) $(libgslmultiroots_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 259,265 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 264,270 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 281,293 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 286,294 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 352,360 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 353,361 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 363,369 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 364,370 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 375,381 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 376,382 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 425,446 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 426,446 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 458,464 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 458,464 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 492,498 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 492,498 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 506,517 **** --- 506,525 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 531,551 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 539,562 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multiroots/newton.c gsl-1.10/multiroots/newton.c *** gsl-1.9/multiroots/newton.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/multiroots/newton.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* multiroots/newton.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* multiroots/newton.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multiroots/test.c gsl-1.10/multiroots/test.c *** gsl-1.9/multiroots/test.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/multiroots/test.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* multiroots/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* multiroots/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multiroots/test_funcs.c gsl-1.10/multiroots/test_funcs.c *** gsl-1.9/multiroots/test_funcs.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/multiroots/test_funcs.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* multiroots/test_funcs.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* multiroots/test_funcs.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/multiroots/test_funcs.h gsl-1.10/multiroots/test_funcs.h *** gsl-1.9/multiroots/test_funcs.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/multiroots/test_funcs.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* multiroots/test_funcs.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* multiroots/test_funcs.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/NEWS gsl-1.10/NEWS *** gsl-1.9/NEWS 2007-02-14 15:25:50.000000000 +0000 --- gsl-1.10/NEWS 2007-09-14 16:04:55.000000000 +0100 *************** *** 1,4 **** ! * What is new in gsl-1.9: ** Fixed the elliptic integrals F,E,P,D so that they have the correct behavior for phi > pi/2 and phi < 0. The angular argument is now --- 1,77 ---- ! * What is new in gsl-1.10: ! ! ** License updated to GNU GPL version 3. ! ! ** Added support for generalized eigensystems ! ! ** Added function gsl_stats_correlation to compute Pearson correlation ! of two datasets ! ! ** Added the new function gsl_sf_expint(n,x) for computing the n-th ! order exponential integral. ! ! ** Added functions gsl_vector_isnonneg and gsl_matrix_isnonneg. ! ! ** Added functions gsl_matrix_subrow and gsl_matrix_subcolumn ! ! ** Extended Cholesky routines to complex matrices ! ! ** Added support in gsl_ieee_set_mode for controlling SSE exceptions ! and rounding through the MXCSR control word on x86 processors. ! ! ** The autoconf macro AM_PATH_GSL has been renamed to AX_PATH_GSL, to ! avoid conflicts with the autoconf namespace. ! ! ** Improved handling of underflow in gsl_eigen_symm. ! ! ** The function gsl_multiroot_fdjacobian now returns the error code ! GSL_ESING if any of the columns of the computed jacobian matrix are ! zero. This may occur if the step size of the derivative is too small. ! ! ** Extended the function gsl_sf_beta_inc(a,b,x) to handle cases where ! a<0 or b<0. ! ! ** Fixed the round-off error estimate in gsl_deriv_{central,backwards, ! forward} to correctly account for numerical error in the step-size h. ! ! ** Fixed gsl_cdf_beta_Pinv, gsl_cdf_gamma_Pinv, gsl_cdf_beta_Pinv to ! avoid returning spurious values for large parameters when the ! iteration did not converge. If the iteration cannot converge, GSL_NAN ! is returned. ! ! ** gsl_ran_dirichlet now handles smaller values of alpha[] without ! underflow, avoiding a NaN in the returned value. ! ! ** The SVD routines now avoid underflow in the Schur decomposition for ! matrices with extremely small values pi/2 and phi < 0. The angular argument is now diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ntuple/gsl_ntuple.h gsl-1.10/ntuple/gsl_ntuple.h *** gsl-1.9/ntuple/gsl_ntuple.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ntuple/gsl_ntuple.h 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ntuple/Makefile.in gsl-1.10/ntuple/Makefile.in *** gsl-1.9/ntuple/Makefile.in 2007-02-20 13:09:11.000000000 +0000 --- gsl-1.10/ntuple/Makefile.in 2007-09-13 16:41:45.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 58,74 **** ../block/libgslblock.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslntuple_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslntuple_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 54,71 ---- ../block/libgslblock.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslntuple_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslntuple_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 102,107 **** --- 99,105 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 109,115 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 107,112 ---- *************** *** 117,133 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 114,127 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 139,147 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 133,140 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 151,165 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 144,159 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 169,196 **** --- 163,201 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslntuple.la pkginclude_HEADERS = gsl_ntuple.h INCLUDES = -I$(top_builddir) *************** *** 248,254 **** rm -f "$${dir}/so_locations"; \ done libgslntuple.la: $(libgslntuple_la_OBJECTS) $(libgslntuple_la_DEPENDENCIES) ! $(LINK) $(libgslntuple_la_LDFLAGS) $(libgslntuple_la_OBJECTS) $(libgslntuple_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 253,259 ---- rm -f "$${dir}/so_locations"; \ done libgslntuple.la: $(libgslntuple_la_OBJECTS) $(libgslntuple_la_DEPENDENCIES) ! $(LINK) $(libgslntuple_la_OBJECTS) $(libgslntuple_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 258,264 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 263,269 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 280,292 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 285,293 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 351,359 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 352,360 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 362,368 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 363,369 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 374,380 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 375,381 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 424,445 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 425,445 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 457,463 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 457,463 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 492,498 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 492,498 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 506,517 **** --- 506,525 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 531,551 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 539,562 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ntuple/ntuple.c gsl-1.10/ntuple/ntuple.c *** gsl-1.9/ntuple/ntuple.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ntuple/ntuple.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ode-initval/bsimp.c gsl-1.10/ode-initval/bsimp.c *** gsl-1.9/ode-initval/bsimp.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ode-initval/bsimp.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ode-initval/control.c gsl-1.10/ode-initval/control.c *** gsl-1.9/ode-initval/control.c 2006-06-13 16:14:08.000000000 +0100 --- gsl-1.10/ode-initval/control.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ode-initval/cscal.c gsl-1.10/ode-initval/cscal.c *** gsl-1.9/ode-initval/cscal.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ode-initval/cscal.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* ode-initval/cscal.c * ! * Copyright (C) 2002 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* ode-initval/cscal.c * ! * Copyright (C) 2002, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ode-initval/cstd.c gsl-1.10/ode-initval/cstd.c *** gsl-1.9/ode-initval/cstd.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ode-initval/cstd.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ode-initval/evolve.c gsl-1.10/ode-initval/evolve.c *** gsl-1.9/ode-initval/evolve.c 2007-01-04 12:14:19.000000000 +0000 --- gsl-1.10/ode-initval/evolve.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ode-initval/gear1.c gsl-1.10/ode-initval/gear1.c *** gsl-1.9/ode-initval/gear1.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ode-initval/gear1.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ode-initval/gear2.c gsl-1.10/ode-initval/gear2.c *** gsl-1.9/ode-initval/gear2.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ode-initval/gear2.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ode-initval/gsl_odeiv.h gsl-1.10/ode-initval/gsl_odeiv.h *** gsl-1.9/ode-initval/gsl_odeiv.h 2006-06-13 16:14:08.000000000 +0100 --- gsl-1.10/ode-initval/gsl_odeiv.h 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ode-initval/Makefile.in gsl-1.10/ode-initval/Makefile.in *** gsl-1.9/ode-initval/Makefile.in 2007-02-20 13:09:12.000000000 +0000 --- gsl-1.10/ode-initval/Makefile.in 2007-09-13 16:41:45.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 63,79 **** ../complex/libgslcomplex.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslodeiv_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslodeiv_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 59,76 ---- ../complex/libgslcomplex.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslodeiv_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslodeiv_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 107,112 **** --- 104,110 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 114,120 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 112,117 ---- *************** *** 122,138 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 119,132 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 144,152 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 138,145 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 156,170 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 149,164 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 174,201 **** --- 168,206 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslodeiv.la pkginclude_HEADERS = gsl_odeiv.h INCLUDES = -I$(top_builddir) *************** *** 247,253 **** rm -f "$${dir}/so_locations"; \ done libgslodeiv.la: $(libgslodeiv_la_OBJECTS) $(libgslodeiv_la_DEPENDENCIES) ! $(LINK) $(libgslodeiv_la_LDFLAGS) $(libgslodeiv_la_OBJECTS) $(libgslodeiv_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 252,258 ---- rm -f "$${dir}/so_locations"; \ done libgslodeiv.la: $(libgslodeiv_la_OBJECTS) $(libgslodeiv_la_DEPENDENCIES) ! $(LINK) $(libgslodeiv_la_OBJECTS) $(libgslodeiv_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 257,263 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 262,268 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 279,291 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 284,292 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 350,358 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 351,359 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 361,367 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 362,368 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 373,379 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 374,380 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 423,444 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 424,444 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 456,462 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 456,462 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 490,496 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 490,496 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 504,515 **** --- 504,523 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 529,549 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 537,560 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ode-initval/rk2.c gsl-1.10/ode-initval/rk2.c *** gsl-1.9/ode-initval/rk2.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ode-initval/rk2.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ode-initval/rk2imp.c gsl-1.10/ode-initval/rk2imp.c *** gsl-1.9/ode-initval/rk2imp.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ode-initval/rk2imp.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ode-initval/rk2simp.c gsl-1.10/ode-initval/rk2simp.c *** gsl-1.9/ode-initval/rk2simp.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ode-initval/rk2simp.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ode-initval/rk4.c gsl-1.10/ode-initval/rk4.c *** gsl-1.9/ode-initval/rk4.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ode-initval/rk4.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ode-initval/rk4imp.c gsl-1.10/ode-initval/rk4imp.c *** gsl-1.9/ode-initval/rk4imp.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ode-initval/rk4imp.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ode-initval/rk8pd.c gsl-1.10/ode-initval/rk8pd.c *** gsl-1.9/ode-initval/rk8pd.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ode-initval/rk8pd.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ode-initval/rkck.c gsl-1.10/ode-initval/rkck.c *** gsl-1.9/ode-initval/rkck.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ode-initval/rkck.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ode-initval/rkf45.c gsl-1.10/ode-initval/rkf45.c *** gsl-1.9/ode-initval/rkf45.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ode-initval/rkf45.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* ode-initval/rkf45.c * ! * Copyright (C) 2001, 2004 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* ode-initval/rkf45.c * ! * Copyright (C) 2001, 2004, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ode-initval/step.c gsl-1.10/ode-initval/step.c *** gsl-1.9/ode-initval/step.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/ode-initval/step.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/ode-initval/test.c gsl-1.10/ode-initval/test.c *** gsl-1.9/ode-initval/test.c 2006-06-13 16:14:08.000000000 +0100 --- gsl-1.10/ode-initval/test.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/canonical.c gsl-1.10/permutation/canonical.c *** gsl-1.9/permutation/canonical.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/canonical.c 2007-07-02 17:29:29.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/file.c gsl-1.10/permutation/file.c *** gsl-1.9/permutation/file.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/file.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/file.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/file.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/gsl_permutation.h gsl-1.10/permutation/gsl_permutation.h *** gsl-1.9/permutation/gsl_permutation.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/gsl_permutation.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/gsl_permutation.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2004 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/gsl_permutation.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2004, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/gsl_permute_char.h gsl-1.10/permutation/gsl_permute_char.h *** gsl-1.9/permutation/gsl_permute_char.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/gsl_permute_char.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/gsl_permute_char.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/gsl_permute_char.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/gsl_permute_complex_double.h gsl-1.10/permutation/gsl_permute_complex_double.h *** gsl-1.9/permutation/gsl_permute_complex_double.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/gsl_permute_complex_double.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/gsl_permute_complex_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/gsl_permute_complex_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/gsl_permute_complex_float.h gsl-1.10/permutation/gsl_permute_complex_float.h *** gsl-1.9/permutation/gsl_permute_complex_float.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/gsl_permute_complex_float.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/gsl_permute_complex_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/gsl_permute_complex_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/gsl_permute_complex_long_double.h gsl-1.10/permutation/gsl_permute_complex_long_double.h *** gsl-1.9/permutation/gsl_permute_complex_long_double.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/gsl_permute_complex_long_double.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/gsl_permute_complex_long_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/gsl_permute_complex_long_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/gsl_permute_double.h gsl-1.10/permutation/gsl_permute_double.h *** gsl-1.9/permutation/gsl_permute_double.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/gsl_permute_double.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/gsl_permute_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/gsl_permute_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/gsl_permute_float.h gsl-1.10/permutation/gsl_permute_float.h *** gsl-1.9/permutation/gsl_permute_float.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/gsl_permute_float.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/gsl_permute_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/gsl_permute_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/gsl_permute_int.h gsl-1.10/permutation/gsl_permute_int.h *** gsl-1.9/permutation/gsl_permute_int.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/gsl_permute_int.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/gsl_permute_int.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/gsl_permute_int.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/gsl_permute_long_double.h gsl-1.10/permutation/gsl_permute_long_double.h *** gsl-1.9/permutation/gsl_permute_long_double.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/gsl_permute_long_double.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/gsl_permute_long_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/gsl_permute_long_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/gsl_permute_long.h gsl-1.10/permutation/gsl_permute_long.h *** gsl-1.9/permutation/gsl_permute_long.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/gsl_permute_long.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/gsl_permute_long.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/gsl_permute_long.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/gsl_permute_short.h gsl-1.10/permutation/gsl_permute_short.h *** gsl-1.9/permutation/gsl_permute_short.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/gsl_permute_short.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/gsl_permute_short.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/gsl_permute_short.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/gsl_permute_uchar.h gsl-1.10/permutation/gsl_permute_uchar.h *** gsl-1.9/permutation/gsl_permute_uchar.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/gsl_permute_uchar.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/gsl_permute_uchar.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/gsl_permute_uchar.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/gsl_permute_uint.h gsl-1.10/permutation/gsl_permute_uint.h *** gsl-1.9/permutation/gsl_permute_uint.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/gsl_permute_uint.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/gsl_permute_uint.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/gsl_permute_uint.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/gsl_permute_ulong.h gsl-1.10/permutation/gsl_permute_ulong.h *** gsl-1.9/permutation/gsl_permute_ulong.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/gsl_permute_ulong.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/gsl_permute_ulong.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/gsl_permute_ulong.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/gsl_permute_ushort.h gsl-1.10/permutation/gsl_permute_ushort.h *** gsl-1.9/permutation/gsl_permute_ushort.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/gsl_permute_ushort.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/gsl_permute_ushort.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/gsl_permute_ushort.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/gsl_permute_vector_char.h gsl-1.10/permutation/gsl_permute_vector_char.h *** gsl-1.9/permutation/gsl_permute_vector_char.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/gsl_permute_vector_char.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/gsl_permute_vector_char.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/gsl_permute_vector_char.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/gsl_permute_vector_complex_double.h gsl-1.10/permutation/gsl_permute_vector_complex_double.h *** gsl-1.9/permutation/gsl_permute_vector_complex_double.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/gsl_permute_vector_complex_double.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/gsl_permute_vector_complex_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/gsl_permute_vector_complex_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/gsl_permute_vector_complex_float.h gsl-1.10/permutation/gsl_permute_vector_complex_float.h *** gsl-1.9/permutation/gsl_permute_vector_complex_float.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/gsl_permute_vector_complex_float.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/gsl_permute_vector_complex_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/gsl_permute_vector_complex_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/gsl_permute_vector_complex_long_double.h gsl-1.10/permutation/gsl_permute_vector_complex_long_double.h *** gsl-1.9/permutation/gsl_permute_vector_complex_long_double.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/gsl_permute_vector_complex_long_double.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/gsl_permute_vector_complex_long_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/gsl_permute_vector_complex_long_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/gsl_permute_vector_double.h gsl-1.10/permutation/gsl_permute_vector_double.h *** gsl-1.9/permutation/gsl_permute_vector_double.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/gsl_permute_vector_double.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/gsl_permute_vector_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/gsl_permute_vector_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/gsl_permute_vector_float.h gsl-1.10/permutation/gsl_permute_vector_float.h *** gsl-1.9/permutation/gsl_permute_vector_float.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/gsl_permute_vector_float.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/gsl_permute_vector_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/gsl_permute_vector_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/gsl_permute_vector_int.h gsl-1.10/permutation/gsl_permute_vector_int.h *** gsl-1.9/permutation/gsl_permute_vector_int.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/gsl_permute_vector_int.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/gsl_permute_vector_int.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/gsl_permute_vector_int.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/gsl_permute_vector_long_double.h gsl-1.10/permutation/gsl_permute_vector_long_double.h *** gsl-1.9/permutation/gsl_permute_vector_long_double.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/gsl_permute_vector_long_double.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/gsl_permute_vector_long_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/gsl_permute_vector_long_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/gsl_permute_vector_long.h gsl-1.10/permutation/gsl_permute_vector_long.h *** gsl-1.9/permutation/gsl_permute_vector_long.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/gsl_permute_vector_long.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/gsl_permute_vector_long.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/gsl_permute_vector_long.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/gsl_permute_vector_short.h gsl-1.10/permutation/gsl_permute_vector_short.h *** gsl-1.9/permutation/gsl_permute_vector_short.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/gsl_permute_vector_short.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/gsl_permute_vector_short.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/gsl_permute_vector_short.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/gsl_permute_vector_uchar.h gsl-1.10/permutation/gsl_permute_vector_uchar.h *** gsl-1.9/permutation/gsl_permute_vector_uchar.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/gsl_permute_vector_uchar.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/gsl_permute_vector_uchar.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/gsl_permute_vector_uchar.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/gsl_permute_vector_uint.h gsl-1.10/permutation/gsl_permute_vector_uint.h *** gsl-1.9/permutation/gsl_permute_vector_uint.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/gsl_permute_vector_uint.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/gsl_permute_vector_uint.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/gsl_permute_vector_uint.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/gsl_permute_vector_ulong.h gsl-1.10/permutation/gsl_permute_vector_ulong.h *** gsl-1.9/permutation/gsl_permute_vector_ulong.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/gsl_permute_vector_ulong.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/gsl_permute_vector_ulong.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/gsl_permute_vector_ulong.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/gsl_permute_vector_ushort.h gsl-1.10/permutation/gsl_permute_vector_ushort.h *** gsl-1.9/permutation/gsl_permute_vector_ushort.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/gsl_permute_vector_ushort.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/gsl_permute_vector_ushort.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/gsl_permute_vector_ushort.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/init.c gsl-1.10/permutation/init.c *** gsl-1.9/permutation/init.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/init.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/init.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/init.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/Makefile.in gsl-1.10/permutation/Makefile.in *** gsl-1.9/permutation/Makefile.in 2007-02-20 13:09:12.000000000 +0000 --- gsl-1.10/permutation/Makefile.in 2007-09-13 16:41:45.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 59,75 **** ../block/libgslblock.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslpermutation_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslpermutation_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 55,72 ---- ../block/libgslblock.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslpermutation_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslpermutation_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 103,108 **** --- 100,106 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 110,116 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 108,113 ---- *************** *** 118,134 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 115,128 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 140,148 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 134,141 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 152,166 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 145,160 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 170,197 **** --- 164,202 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslpermutation.la pkginclude_HEADERS = gsl_permutation.h gsl_permute.h gsl_permute_char.h gsl_permute_complex_double.h gsl_permute_complex_float.h gsl_permute_complex_long_double.h gsl_permute_double.h gsl_permute_float.h gsl_permute_int.h gsl_permute_long.h gsl_permute_long_double.h gsl_permute_short.h gsl_permute_uchar.h gsl_permute_uint.h gsl_permute_ulong.h gsl_permute_ushort.h gsl_permute_vector.h gsl_permute_vector_char.h gsl_permute_vector_complex_double.h gsl_permute_vector_complex_float.h gsl_permute_vector_complex_long_double.h gsl_permute_vector_double.h gsl_permute_vector_float.h gsl_permute_vector_int.h gsl_permute_vector_long.h gsl_permute_vector_long_double.h gsl_permute_vector_short.h gsl_permute_vector_uchar.h gsl_permute_vector_uint.h gsl_permute_vector_ulong.h gsl_permute_vector_ushort.h INCLUDES = -I$(top_builddir) -I$(top_srcdir) *************** *** 243,249 **** rm -f "$${dir}/so_locations"; \ done libgslpermutation.la: $(libgslpermutation_la_OBJECTS) $(libgslpermutation_la_DEPENDENCIES) ! $(LINK) $(libgslpermutation_la_LDFLAGS) $(libgslpermutation_la_OBJECTS) $(libgslpermutation_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 248,254 ---- rm -f "$${dir}/so_locations"; \ done libgslpermutation.la: $(libgslpermutation_la_OBJECTS) $(libgslpermutation_la_DEPENDENCIES) ! $(LINK) $(libgslpermutation_la_OBJECTS) $(libgslpermutation_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 253,259 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 258,264 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 275,287 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 280,288 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 346,354 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 347,355 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 357,363 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 358,364 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 369,375 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 370,376 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 419,440 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 420,440 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 452,458 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 452,458 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 486,492 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 486,492 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 500,511 **** --- 500,519 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 525,545 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS #CLEANFILES = test.txt test.dat --- 533,556 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS #CLEANFILES = test.txt test.dat diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/permutation.c gsl-1.10/permutation/permutation.c *** gsl-1.9/permutation/permutation.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/permutation.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/permutation.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/permutation.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/permute_source.c gsl-1.10/permutation/permute_source.c *** gsl-1.9/permutation/permute_source.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/permute_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/permute_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/permute_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/permutation/test.c gsl-1.10/permutation/test.c *** gsl-1.9/permutation/test.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/permutation/test.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* permutation/test.c * ! * Copyright (C) 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* permutation/test.c * ! * Copyright (C) 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/poly/balance.c gsl-1.10/poly/balance.c *** gsl-1.9/poly/balance.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/poly/balance.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* poly/balance.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* poly/balance.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/poly/companion.c gsl-1.10/poly/companion.c *** gsl-1.9/poly/companion.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/poly/companion.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* poly/companion.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* poly/companion.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/poly/dd.c gsl-1.10/poly/dd.c *** gsl-1.9/poly/dd.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/poly/dd.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/poly/eval.c gsl-1.10/poly/eval.c *** gsl-1.9/poly/eval.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/poly/eval.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/poly/gsl_poly.h gsl-1.10/poly/gsl_poly.h *** gsl-1.9/poly/gsl_poly.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/poly/gsl_poly.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* poly/gsl_poly.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2004 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* poly/gsl_poly.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2004, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 47,53 **** #ifdef HAVE_INLINE extern inline ! double gsl_poly_eval(const double c[], const int len, const double x) { int i; double ans = c[len-1]; --- 47,54 ---- #ifdef HAVE_INLINE extern inline ! double ! gsl_poly_eval(const double c[], const int len, const double x) { int i; double ans = c[len-1]; *************** *** 67,73 **** #ifdef HAVE_INLINE extern inline ! double gsl_poly_dd_eval(const double dd[], const double xa[], const size_t size, const double x) { size_t i; double y = dd[size - 1]; --- 68,75 ---- #ifdef HAVE_INLINE extern inline ! double ! gsl_poly_dd_eval(const double dd[], const double xa[], const size_t size, const double x) { size_t i; double y = dd[size - 1]; diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/poly/Makefile.in gsl-1.10/poly/Makefile.in *** gsl-1.9/poly/Makefile.in 2007-02-20 13:09:12.000000000 +0000 --- gsl-1.10/poly/Makefile.in 2007-09-13 16:41:45.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 59,75 **** test_DEPENDENCIES = libgslpoly.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslpoly_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslpoly_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 55,72 ---- test_DEPENDENCIES = libgslpoly.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslpoly_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslpoly_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 103,108 **** --- 100,106 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 110,116 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 108,113 ---- *************** *** 118,134 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 115,128 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 140,148 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 134,141 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 152,166 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 145,160 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 170,197 **** --- 164,202 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslpoly.la pkginclude_HEADERS = gsl_poly.h INCLUDES = -I$(top_builddir) *************** *** 243,249 **** rm -f "$${dir}/so_locations"; \ done libgslpoly.la: $(libgslpoly_la_OBJECTS) $(libgslpoly_la_DEPENDENCIES) ! $(LINK) $(libgslpoly_la_LDFLAGS) $(libgslpoly_la_OBJECTS) $(libgslpoly_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 248,254 ---- rm -f "$${dir}/so_locations"; \ done libgslpoly.la: $(libgslpoly_la_OBJECTS) $(libgslpoly_la_DEPENDENCIES) ! $(LINK) $(libgslpoly_la_OBJECTS) $(libgslpoly_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 253,259 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 258,264 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 275,287 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 280,288 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 346,354 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 347,355 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 357,363 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 358,364 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 369,375 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 370,376 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 419,440 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 420,440 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 452,458 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 452,458 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 486,492 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 486,492 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 500,511 **** --- 500,519 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 525,545 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 533,556 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/poly/qr.c gsl-1.10/poly/qr.c *** gsl-1.9/poly/qr.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/poly/qr.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* poly/qr.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* poly/qr.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/poly/solve_cubic.c gsl-1.10/poly/solve_cubic.c *** gsl-1.9/poly/solve_cubic.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/poly/solve_cubic.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* poly/solve_cubic.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* poly/solve_cubic.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/poly/solve_quadratic.c gsl-1.10/poly/solve_quadratic.c *** gsl-1.9/poly/solve_quadratic.c 2005-07-27 16:39:13.000000000 +0100 --- gsl-1.10/poly/solve_quadratic.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* poly/solve_quadratic.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* poly/solve_quadratic.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/poly/test.c gsl-1.10/poly/test.c *** gsl-1.9/poly/test.c 2005-07-27 16:39:13.000000000 +0100 --- gsl-1.10/poly/test.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* poly/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* poly/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/poly/zsolve.c gsl-1.10/poly/zsolve.c *** gsl-1.9/poly/zsolve.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/poly/zsolve.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* poly/zsolve.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* poly/zsolve.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/poly/zsolve_cubic.c gsl-1.10/poly/zsolve_cubic.c *** gsl-1.9/poly/zsolve_cubic.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/poly/zsolve_cubic.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* poly/zsolve_cubic.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* poly/zsolve_cubic.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/poly/zsolve_init.c gsl-1.10/poly/zsolve_init.c *** gsl-1.9/poly/zsolve_init.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/poly/zsolve_init.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* poly/zsolve_init.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* poly/zsolve_init.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/poly/zsolve_quadratic.c gsl-1.10/poly/zsolve_quadratic.c *** gsl-1.9/poly/zsolve_quadratic.c 2005-07-27 16:39:13.000000000 +0100 --- gsl-1.10/poly/zsolve_quadratic.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* poly/zsolve_quadratic.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* poly/zsolve_quadratic.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/qrng/Makefile.in gsl-1.10/qrng/Makefile.in *** gsl-1.9/qrng/Makefile.in 2007-02-20 13:09:13.000000000 +0000 --- gsl-1.10/qrng/Makefile.in 2007-09-13 16:41:46.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 57,73 **** test_DEPENDENCIES = libgslqrng.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslqrng_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslqrng_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 53,70 ---- test_DEPENDENCIES = libgslqrng.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslqrng_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslqrng_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 101,106 **** --- 98,104 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 108,114 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 106,111 ---- *************** *** 116,132 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 113,126 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 138,146 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 132,139 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 150,164 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 143,158 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 168,195 **** --- 162,200 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslqrng.la pkginclude_HEADERS = gsl_qrng.h INCLUDES = -I$(top_builddir) *************** *** 240,246 **** rm -f "$${dir}/so_locations"; \ done libgslqrng.la: $(libgslqrng_la_OBJECTS) $(libgslqrng_la_DEPENDENCIES) ! $(LINK) $(libgslqrng_la_LDFLAGS) $(libgslqrng_la_OBJECTS) $(libgslqrng_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 245,251 ---- rm -f "$${dir}/so_locations"; \ done libgslqrng.la: $(libgslqrng_la_OBJECTS) $(libgslqrng_la_DEPENDENCIES) ! $(LINK) $(libgslqrng_la_OBJECTS) $(libgslqrng_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 250,256 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 255,261 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 272,284 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 277,285 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 343,351 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 344,352 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 354,360 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 355,361 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 366,372 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 367,373 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 416,437 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 417,437 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 449,455 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 449,455 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 483,489 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 483,489 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 497,508 **** --- 497,516 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 522,542 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 530,553 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/bernoulli.c gsl-1.10/randist/bernoulli.c *** gsl-1.9/randist/bernoulli.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/randist/bernoulli.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/bernoulli.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/bernoulli.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/beta.c gsl-1.10/randist/beta.c *** gsl-1.9/randist/beta.c 2007-01-04 12:46:45.000000000 +0000 --- gsl-1.10/randist/beta.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/beta.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/beta.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/bigauss.c gsl-1.10/randist/bigauss.c *** gsl-1.9/randist/bigauss.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/randist/bigauss.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/bigauss.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/bigauss.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/binomial.c gsl-1.10/randist/binomial.c *** gsl-1.9/randist/binomial.c 2006-01-20 18:31:03.000000000 +0000 --- gsl-1.10/randist/binomial.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/binomial.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/binomial.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/binomial_tpe.c gsl-1.10/randist/binomial_tpe.c *** gsl-1.9/randist/binomial_tpe.c 2006-03-17 15:52:53.000000000 +0000 --- gsl-1.10/randist/binomial_tpe.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/binomial_tpe.c * ! * Copyright (C) 1996-2003 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/binomial_tpe.c * ! * Copyright (C) 1996, 2003, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/cauchy.c gsl-1.10/randist/cauchy.c *** gsl-1.9/randist/cauchy.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/randist/cauchy.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/cauchy.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/cauchy.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/ChangeLog gsl-1.10/randist/ChangeLog *** gsl-1.9/randist/ChangeLog 2007-02-20 11:11:03.000000000 +0000 --- gsl-1.10/randist/ChangeLog 2007-08-20 19:48:46.000000000 +0100 *************** *** 1,3 **** --- 1,12 ---- + 2007-08-20 Brian Gough + + * test.c (integrate): perform the integration of the pdf with the + gsl_integration functions for accuracy (needed for dirichlet + distribution) + + * dirichlet.c (ran_dirichlet_small): handle underflow for small + alpha[] values + 2007-02-20 Brian Gough * gamma.c (gsl_ran_gamma): avoid an unnecessary function call to diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/chisq.c gsl-1.10/randist/chisq.c *** gsl-1.9/randist/chisq.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/randist/chisq.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/chisq.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/chisq.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/dirichlet.c gsl-1.10/randist/dirichlet.c *** gsl-1.9/randist/dirichlet.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/randist/dirichlet.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,8 **** /* randist/dirichlet.c * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,11 ---- /* randist/dirichlet.c * + * Copyright (C) 2007 Brian Gough + * Copyright (C) 2002 Gavin E. Crooks + * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 42,47 **** --- 45,52 ---- Gavin E. Crooks (2002) */ + static void ran_dirichlet_small (const gsl_rng * r, const size_t K, const double alpha[], double theta[]); + void gsl_ran_dirichlet (const gsl_rng * r, const size_t K, const double alpha[], double theta[]) *************** *** 53,58 **** --- 58,115 ---- { theta[i] = gsl_ran_gamma (r, alpha[i], 1.0); } + + for (i = 0; i < K; i++) + { + norm += theta[i]; + } + + if (norm < GSL_SQRT_DBL_MIN) /* Handle underflow */ + { + ran_dirichlet_small (r, K, alpha, theta); + return; + } + + for (i = 0; i < K; i++) + { + theta[i] /= norm; + } + } + + + /* When the values of alpha[] are small, scale the variates to avoid + underflow so that the result is not 0/0. Note that the Dirichlet + distribution is defined by a ratio of gamma functions so we can + take out an arbitrary factor to keep the values in the range of + double precision. */ + + static void + ran_dirichlet_small (const gsl_rng * r, const size_t K, + const double alpha[], double theta[]) + { + size_t i; + double norm = 0.0, umax = 0; + + for (i = 0; i < K; i++) + { + double u = log(gsl_rng_uniform_pos (r)) / alpha[i]; + + theta[i] = u; + + if (u > umax || i == 0) { + umax = u; + } + } + + for (i = 0; i < K; i++) + { + theta[i] = exp(theta[i] - umax); + } + + for (i = 0; i < K; i++) + { + theta[i] = theta[i] * gsl_ran_gamma (r, alpha[i] + 1.0, 1.0); + } for (i = 0; i < K; i++) { *************** *** 66,71 **** --- 123,131 ---- } + + + double gsl_ran_dirichlet_pdf (const size_t K, const double alpha[], const double theta[]) diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/discrete.c gsl-1.10/randist/discrete.c *** gsl-1.9/randist/discrete.c 2007-01-04 12:47:04.000000000 +0000 --- gsl-1.10/randist/discrete.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/discrete.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/discrete.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 25,31 **** This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as ! published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but --- 25,31 ---- This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as ! published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/erlang.c gsl-1.10/randist/erlang.c *** gsl-1.9/randist/erlang.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/randist/erlang.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/erlang.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/erlang.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/exponential.c gsl-1.10/randist/exponential.c *** gsl-1.9/randist/exponential.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/randist/exponential.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/exponential.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/exponential.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/exppow.c gsl-1.10/randist/exppow.c *** gsl-1.9/randist/exppow.c 2006-02-19 20:18:59.000000000 +0000 --- gsl-1.10/randist/exppow.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,11 **** /* randist/exppow.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2006 James Theiler, Brian Gough * Copyright (C) 2006 Giulio Bottazzi * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,11 ---- /* randist/exppow.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2006, 2007 James Theiler, Brian Gough * Copyright (C) 2006 Giulio Bottazzi * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/fdist.c gsl-1.10/randist/fdist.c *** gsl-1.9/randist/fdist.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/randist/fdist.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/fdist.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/fdist.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/flat.c gsl-1.10/randist/flat.c *** gsl-1.9/randist/flat.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/randist/flat.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/flat.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/flat.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/gamma.c gsl-1.10/randist/gamma.c *** gsl-1.9/randist/gamma.c 2007-02-20 11:11:03.000000000 +0000 --- gsl-1.10/randist/gamma.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/gamma.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/gamma.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/gauss.c gsl-1.10/randist/gauss.c *** gsl-1.9/randist/gauss.c 2006-02-19 21:11:39.000000000 +0000 --- gsl-1.10/randist/gauss.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,11 **** /* randist/gauss.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2006 James Theiler, Brian Gough * Copyright (C) 2006 Charles Karney * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,11 ---- /* randist/gauss.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2006, 2007 James Theiler, Brian Gough * Copyright (C) 2006 Charles Karney * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/gausstail.c gsl-1.10/randist/gausstail.c *** gsl-1.9/randist/gausstail.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/randist/gausstail.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/gausstail.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/gausstail.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/gausszig.c gsl-1.10/randist/gausszig.c *** gsl-1.9/randist/gausszig.c 2006-04-21 13:09:15.000000000 +0100 --- gsl-1.10/randist/gausszig.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/geometric.c gsl-1.10/randist/geometric.c *** gsl-1.9/randist/geometric.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/randist/geometric.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/geometric.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/geometric.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/gsl_randist.h gsl-1.10/randist/gsl_randist.h *** gsl-1.9/randist/gsl_randist.h 2007-01-26 18:21:11.000000000 +0000 --- gsl-1.10/randist/gsl_randist.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/gsl_randist.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/gsl_randist.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/gumbel.c gsl-1.10/randist/gumbel.c *** gsl-1.9/randist/gumbel.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/randist/gumbel.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/gumbel.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/gumbel.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/hyperg.c gsl-1.10/randist/hyperg.c *** gsl-1.9/randist/hyperg.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/randist/hyperg.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/hyperg.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/hyperg.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/landau.c gsl-1.10/randist/landau.c *** gsl-1.9/randist/landau.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/randist/landau.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/laplace.c gsl-1.10/randist/laplace.c *** gsl-1.9/randist/laplace.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/randist/laplace.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/laplace.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/laplace.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/levy.c gsl-1.10/randist/levy.c *** gsl-1.9/randist/levy.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/randist/levy.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/levy.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/levy.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/logarithmic.c gsl-1.10/randist/logarithmic.c *** gsl-1.9/randist/logarithmic.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/randist/logarithmic.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/logarithmic.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/logarithmic.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/logistic.c gsl-1.10/randist/logistic.c *** gsl-1.9/randist/logistic.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/randist/logistic.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/logistic.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/logistic.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/lognormal.c gsl-1.10/randist/lognormal.c *** gsl-1.9/randist/lognormal.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/randist/lognormal.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/lognormal.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/lognormal.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/Makefile.am gsl-1.10/randist/Makefile.am *** gsl-1.9/randist/Makefile.am 2006-07-25 10:52:16.000000000 +0100 --- gsl-1.10/randist/Makefile.am 2007-08-20 19:48:46.000000000 +0100 *************** *** 11,16 **** check_PROGRAMS = test test_SOURCES = test.c ! test_LDADD = libgslrandist.la ../rng/libgslrng.la ../specfunc/libgslspecfunc.la ../complex/libgslcomplex.la ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la --- 11,16 ---- check_PROGRAMS = test test_SOURCES = test.c ! test_LDADD = libgslrandist.la ../rng/libgslrng.la ../specfunc/libgslspecfunc.la ../integration/libgslintegration.la ../complex/libgslcomplex.la ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/Makefile.in gsl-1.10/randist/Makefile.in *** gsl-1.9/randist/Makefile.in 2007-02-20 13:09:13.000000000 +0000 --- gsl-1.10/randist/Makefile.in 2007-09-13 16:41:46.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 62,81 **** am_test_OBJECTS = test.$(OBJEXT) test_OBJECTS = $(am_test_OBJECTS) test_DEPENDENCIES = libgslrandist.la ../rng/libgslrng.la \ ! ../specfunc/libgslspecfunc.la ../complex/libgslcomplex.la \ ! ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la \ ! ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslrandist_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslrandist_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 58,80 ---- am_test_OBJECTS = test.$(OBJEXT) test_OBJECTS = $(am_test_OBJECTS) test_DEPENDENCIES = libgslrandist.la ../rng/libgslrng.la \ ! ../specfunc/libgslspecfunc.la \ ! ../integration/libgslintegration.la \ ! ../complex/libgslcomplex.la ../ieee-utils/libgslieeeutils.la \ ! ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ! ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslrandist_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslrandist_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 109,114 **** --- 108,114 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 116,122 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 116,121 ---- *************** *** 124,140 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 123,136 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 146,154 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 142,149 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 158,172 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 153,168 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 176,210 **** build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ datadir = @datadir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ prefix = @prefix@ program_transform_name = @program_transform_name@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ noinst_LTLIBRARIES = libgslrandist.la pkginclude_HEADERS = gsl_randist.h INCLUDES = -I$(top_builddir) libgslrandist_la_SOURCES = bernoulli.c beta.c bigauss.c binomial.c cauchy.c chisq.c dirichlet.c discrete.c erlang.c exponential.c exppow.c fdist.c flat.c gamma.c gauss.c gausszig.c gausstail.c geometric.c gumbel.c hyperg.c laplace.c levy.c logarithmic.c logistic.c lognormal.c multinomial.c nbinomial.c pareto.c pascal.c poisson.c rayleigh.c shuffle.c sphere.c tdist.c weibull.c landau.c binomial_tpe.c TESTS = $(check_PROGRAMS) test_SOURCES = test.c ! test_LDADD = libgslrandist.la ../rng/libgslrng.la ../specfunc/libgslspecfunc.la ../complex/libgslcomplex.la ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la all: all-am .SUFFIXES: --- 172,217 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslrandist.la pkginclude_HEADERS = gsl_randist.h INCLUDES = -I$(top_builddir) libgslrandist_la_SOURCES = bernoulli.c beta.c bigauss.c binomial.c cauchy.c chisq.c dirichlet.c discrete.c erlang.c exponential.c exppow.c fdist.c flat.c gamma.c gauss.c gausszig.c gausstail.c geometric.c gumbel.c hyperg.c laplace.c levy.c logarithmic.c logistic.c lognormal.c multinomial.c nbinomial.c pareto.c pascal.c poisson.c rayleigh.c shuffle.c sphere.c tdist.c weibull.c landau.c binomial_tpe.c TESTS = $(check_PROGRAMS) test_SOURCES = test.c ! test_LDADD = libgslrandist.la ../rng/libgslrng.la ../specfunc/libgslspecfunc.la ../integration/libgslintegration.la ../complex/libgslcomplex.la ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la all: all-am .SUFFIXES: *************** *** 248,254 **** rm -f "$${dir}/so_locations"; \ done libgslrandist.la: $(libgslrandist_la_OBJECTS) $(libgslrandist_la_DEPENDENCIES) ! $(LINK) $(libgslrandist_la_LDFLAGS) $(libgslrandist_la_OBJECTS) $(libgslrandist_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 255,261 ---- rm -f "$${dir}/so_locations"; \ done libgslrandist.la: $(libgslrandist_la_OBJECTS) $(libgslrandist_la_DEPENDENCIES) ! $(LINK) $(libgslrandist_la_OBJECTS) $(libgslrandist_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 258,264 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 265,271 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 280,292 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 287,295 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 351,359 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 354,362 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 362,368 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 365,371 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 374,380 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 377,383 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 424,445 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 427,447 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 457,463 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 459,465 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 491,497 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 493,499 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 505,516 **** --- 507,526 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 530,550 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 540,563 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/multinomial.c gsl-1.10/randist/multinomial.c *** gsl-1.9/randist/multinomial.c 2006-03-30 20:02:25.000000000 +0100 --- gsl-1.10/randist/multinomial.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/nbinomial.c gsl-1.10/randist/nbinomial.c *** gsl-1.9/randist/nbinomial.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/randist/nbinomial.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/nbinomial.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/nbinomial.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/pareto.c gsl-1.10/randist/pareto.c *** gsl-1.9/randist/pareto.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/randist/pareto.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/pareto.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/pareto.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/pascal.c gsl-1.10/randist/pascal.c *** gsl-1.9/randist/pascal.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/randist/pascal.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/pascal.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/pascal.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/poisson.c gsl-1.10/randist/poisson.c *** gsl-1.9/randist/poisson.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/randist/poisson.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/poisson.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/poisson.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/rayleigh.c gsl-1.10/randist/rayleigh.c *** gsl-1.9/randist/rayleigh.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/randist/rayleigh.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/rayleigh.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/rayleigh.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/shuffle.c gsl-1.10/randist/shuffle.c *** gsl-1.9/randist/shuffle.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/randist/shuffle.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/shuffle.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/shuffle.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/sphere.c gsl-1.10/randist/sphere.c *** gsl-1.9/randist/sphere.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/randist/sphere.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/sphere.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2004 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/sphere.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2004, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/tdist.c gsl-1.10/randist/tdist.c *** gsl-1.9/randist/tdist.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/randist/tdist.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/tdist.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/tdist.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/test.c gsl-1.10/randist/test.c *** gsl-1.9/randist/test.c 2007-02-14 15:26:47.000000000 +0000 --- gsl-1.10/randist/test.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 26,31 **** --- 26,32 ---- #include #include #include + #include #define N 100000 *************** *** 72,77 **** --- 73,80 ---- double test_chisq_pdf (double x); double test_dirichlet (void); double test_dirichlet_pdf (double x); + double test_dirichlet_small (void); + double test_dirichlet_small_pdf (double x); void test_dirichlet_moments (void); double test_discrete1 (void); double test_discrete1_pdf (unsigned int n); *************** *** 278,283 **** --- 281,287 ---- testPDF (FUNC2 (cauchy)); testPDF (FUNC2 (chisq)); testPDF (FUNC2 (dirichlet)); + testPDF (FUNC2 (dirichlet_small)); testPDF (FUNC2 (erlang)); testPDF (FUNC2 (exponential)); *************** *** 489,495 **** } expected = p * N; ! sigma = fabs (count - expected) / sqrt (expected); status = (sigma > 3); --- 493,499 ---- } expected = p * N; ! sigma = (expected > 0) ? fabs (count - expected) / sqrt (expected) : fabs(count - expected); status = (sigma > 3); *************** *** 499,541 **** #define BINS 100 void testPDF (double (*f) (void), double (*pdf) (double), const char *name) { ! double count[BINS], p[BINS]; double a = -5.0, b = +5.0; double dx = (b - a) / BINS; int i, j, status = 0, status_i = 0; for (i = 0; i < BINS; i++) ! count[i] = 0; for (i = 0; i < N; i++) { double r = f (); if (r < b && r > a) { ! j = (int) ((r - a) / dx); ! count[j]++; } } for (i = 0; i < BINS; i++) { /* Compute an approximation to the integral of p(x) from x to x+dx using Simpson's rule */ double x = a + i * dx; - #define STEPS 100 - double sum = 0; if (fabs (x) < 1e-10) /* hit the origin exactly */ x = 0.0; ! for (j = 1; j < STEPS; j++) ! sum += pdf (x + j * dx / STEPS); ! ! p[i] = 0.5 * (pdf (x) + 2 * sum + pdf (x + dx - 1e-7)) * dx / STEPS; } for (i = 0; i < BINS; i++) --- 503,597 ---- #define BINS 100 + typedef double pdf_func(double); + + double + wrapper_function (double x, void *params) + { + pdf_func * pdf = (pdf_func *)params; + return pdf(x); + } + + double + integrate (pdf_func * pdf, double a, double b) + { + double result, abserr; + size_t n = 1000; + gsl_function f; + f.function = &wrapper_function; + f.params = pdf; + gsl_integration_workspace * w = gsl_integration_workspace_alloc (n); + gsl_integration_qags (&f, a, b, 1e-16, 1e-4, n, w, &result, &abserr); + gsl_integration_workspace_free (w); + return result; + } + + void testPDF (double (*f) (void), double (*pdf) (double), const char *name) { ! double count[BINS], edge[BINS], p[BINS]; double a = -5.0, b = +5.0; double dx = (b - a) / BINS; + double bin; + double total = 0, mean; int i, j, status = 0, status_i = 0; for (i = 0; i < BINS; i++) ! { ! count[i] = 0; ! edge[i] = 0; ! } for (i = 0; i < N; i++) { double r = f (); + + total += r; + if (r < b && r > a) { ! double u = (r - a) / dx; ! double f = modf(u, &bin); ! j = (int)bin; ! ! if (f == 0) ! edge[j]++; ! else ! count[j]++; } } + /* Sort out where the hits on the edges should go */ + + for (i = 0; i < BINS; i++) + { + /* If the bin above is empty, its lower edge hits belong in the + lower bin */ + + if (i + 1 < BINS && count[i+1] == 0) { + count[i] += edge[i+1]; + edge[i+1] = 0; + } + + count[i] += edge[i]; + } + + mean = (total / N); + + gsl_test (!gsl_finite(mean), "%s, finite mean, observed %g", name, mean); + for (i = 0; i < BINS; i++) { /* Compute an approximation to the integral of p(x) from x to x+dx using Simpson's rule */ double x = a + i * dx; if (fabs (x) < 1e-10) /* hit the origin exactly */ x = 0.0; ! p[i] = integrate (pdf, x, x+dx); } for (i = 0; i < BINS; i++) *************** *** 895,900 **** --- 951,985 ---- } + double + test_dirichlet_small (void) + { + size_t K = 2; + double alpha[2] = { 2.5e-3, 5.0e-3}; + double theta[2] = { 0.0, 0.0 }; + + gsl_ran_dirichlet (r_global, K, alpha, theta); + + return theta[0]; + } + + double + test_dirichlet_small_pdf (double x) + { + size_t K = 2; + double alpha[2] = { 2.5e-3, 5.0e-3 }; + double theta[2]; + + if (x <= 0.0 || x >= 1.0) + return 0.0; /* Out of range */ + + theta[0] = x; + theta[1] = 1.0 - x; + + return gsl_ran_dirichlet_pdf (K, alpha, theta); + } + + /* Check that the observed means of the Dirichlet variables are within reasonable statistical errors of their correct values. */ diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/randist/weibull.c gsl-1.10/randist/weibull.c *** gsl-1.9/randist/weibull.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/randist/weibull.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* randist/weibull.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* randist/weibull.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/borosh13.c gsl-1.10/rng/borosh13.c *** gsl-1.9/rng/borosh13.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/borosh13.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 2,8 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 2,8 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/cmrg.c gsl-1.10/rng/cmrg.c *** gsl-1.9/rng/cmrg.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/cmrg.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* rng/cmrg.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* rng/cmrg.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/coveyou.c gsl-1.10/rng/coveyou.c *** gsl-1.9/rng/coveyou.c 2006-01-20 15:29:53.000000000 +0000 --- gsl-1.10/rng/coveyou.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 2,8 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 2,8 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/default.c gsl-1.10/rng/default.c *** gsl-1.9/rng/default.c 2007-01-04 11:16:02.000000000 +0000 --- gsl-1.10/rng/default.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* rng/default.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* rng/default.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/file.c gsl-1.10/rng/file.c *** gsl-1.9/rng/file.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/file.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/fishman18.c gsl-1.10/rng/fishman18.c *** gsl-1.9/rng/fishman18.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/fishman18.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 2,8 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 2,8 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/fishman20.c gsl-1.10/rng/fishman20.c *** gsl-1.9/rng/fishman20.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/fishman20.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 2,8 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 2,8 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/fishman2x.c gsl-1.10/rng/fishman2x.c *** gsl-1.9/rng/fishman2x.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/fishman2x.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 2,8 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 2,8 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/gfsr4.c gsl-1.10/rng/gfsr4.c *** gsl-1.9/rng/gfsr4.c 2005-07-27 16:38:49.000000000 +0100 --- gsl-1.10/rng/gfsr4.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 1,6 **** /* This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as ! published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but --- 1,6 ---- /* This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as ! published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/gsl_rng.h gsl-1.10/rng/gsl_rng.h *** gsl-1.9/rng/gsl_rng.h 2007-01-28 17:48:22.000000000 +0000 --- gsl-1.10/rng/gsl_rng.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* rng/gsl_rng.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2004 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* rng/gsl_rng.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2004, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/knuthran2002.c gsl-1.10/rng/knuthran2002.c *** gsl-1.9/rng/knuthran2002.c 2007-02-15 09:26:51.000000000 +0000 --- gsl-1.10/rng/knuthran2002.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,11 **** /* rng/knuthran2002.c * * Copyright (C) 2007 Brian Gough ! * Copyright (C) 2001 Brian Gough, Carlo Perassi * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,11 ---- /* rng/knuthran2002.c * * Copyright (C) 2007 Brian Gough ! * Copyright (C) 2001, 2007 Brian Gough, Carlo Perassi * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/knuthran2.c gsl-1.10/rng/knuthran2.c *** gsl-1.9/rng/knuthran2.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/knuthran2.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 2,8 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 2,8 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/knuthran.c gsl-1.10/rng/knuthran.c *** gsl-1.9/rng/knuthran.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/knuthran.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* rng/knuthran.c * ! * Copyright (C) 2001 Brian Gough, Carlo Perassi * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* rng/knuthran.c * ! * Copyright (C) 2001, 2007 Brian Gough, Carlo Perassi * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/lecuyer21.c gsl-1.10/rng/lecuyer21.c *** gsl-1.9/rng/lecuyer21.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/lecuyer21.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 2,8 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 2,8 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/Makefile.in gsl-1.10/rng/Makefile.in *** gsl-1.9/rng/Makefile.in 2007-02-20 13:09:14.000000000 +0000 --- gsl-1.10/rng/Makefile.in 2007-09-13 16:41:46.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 64,80 **** test_DEPENDENCIES = libgslrng.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslrng_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslrng_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 60,77 ---- test_DEPENDENCIES = libgslrng.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslrng_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslrng_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 108,113 **** --- 105,111 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 115,121 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 113,118 ---- *************** *** 123,139 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 120,133 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 145,153 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 139,146 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 157,171 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 150,165 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 175,202 **** --- 169,207 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslrng.la pkginclude_HEADERS = gsl_rng.h INCLUDES = -I$(top_builddir) *************** *** 249,255 **** rm -f "$${dir}/so_locations"; \ done libgslrng.la: $(libgslrng_la_OBJECTS) $(libgslrng_la_DEPENDENCIES) ! $(LINK) $(libgslrng_la_LDFLAGS) $(libgslrng_la_OBJECTS) $(libgslrng_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 254,260 ---- rm -f "$${dir}/so_locations"; \ done libgslrng.la: $(libgslrng_la_OBJECTS) $(libgslrng_la_DEPENDENCIES) ! $(LINK) $(libgslrng_la_OBJECTS) $(libgslrng_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 259,265 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 264,270 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 281,293 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 286,294 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 352,360 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 353,361 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 363,369 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 364,370 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 375,381 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 376,382 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 425,446 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 426,446 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 458,464 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 458,464 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 493,499 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 493,499 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 507,518 **** --- 507,526 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 532,552 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS # benchmark_SOURCES = benchmark.c --- 540,563 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS # benchmark_SOURCES = benchmark.c diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/minstd.c gsl-1.10/rng/minstd.c *** gsl-1.9/rng/minstd.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/minstd.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* rng/minstd.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* rng/minstd.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/mrg.c gsl-1.10/rng/mrg.c *** gsl-1.9/rng/mrg.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/mrg.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* rng/mrg.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* rng/mrg.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/mt.c gsl-1.10/rng/mt.c *** gsl-1.9/rng/mt.c 2003-07-25 16:18:14.000000000 +0100 --- gsl-1.10/rng/mt.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 1,6 **** /* This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as ! published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but --- 1,6 ---- /* This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as ! published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/r250.c gsl-1.10/rng/r250.c *** gsl-1.9/rng/r250.c 2005-07-27 16:38:49.000000000 +0100 --- gsl-1.10/rng/r250.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* rng/r250.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* rng/r250.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/ran0.c gsl-1.10/rng/ran0.c *** gsl-1.9/rng/ran0.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/ran0.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* rng/ran0.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* rng/ran0.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/ran1.c gsl-1.10/rng/ran1.c *** gsl-1.9/rng/ran1.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/ran1.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* rng/ran1.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* rng/ran1.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/ran2.c gsl-1.10/rng/ran2.c *** gsl-1.9/rng/ran2.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/ran2.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* rng/ran2.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* rng/ran2.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/ran3.c gsl-1.10/rng/ran3.c *** gsl-1.9/rng/ran3.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/ran3.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* rng/ran3.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* rng/ran3.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/rand48.c gsl-1.10/rng/rand48.c *** gsl-1.9/rng/rand48.c 2007-02-17 14:14:17.000000000 +0000 --- gsl-1.10/rng/rand48.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* rng/rand48.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* rng/rand48.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/rand.c gsl-1.10/rng/rand.c *** gsl-1.9/rng/rand.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/rand.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* rng/rand.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* rng/rand.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/random.c gsl-1.10/rng/random.c *** gsl-1.9/rng/random.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/random.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* rng/random.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* rng/random.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/randu.c gsl-1.10/rng/randu.c *** gsl-1.9/rng/randu.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/randu.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* rng/randu.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* rng/randu.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/ranf.c gsl-1.10/rng/ranf.c *** gsl-1.9/rng/ranf.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/ranf.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* rng/ranf.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* rng/ranf.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/ranlux.c gsl-1.10/rng/ranlux.c *** gsl-1.9/rng/ranlux.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/ranlux.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* rng/ranlux.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* rng/ranlux.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/ranlxd.c gsl-1.10/rng/ranlxd.c *** gsl-1.9/rng/ranlxd.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/ranlxd.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* rng/ranlxd.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* rng/ranlxd.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/ranlxs.c gsl-1.10/rng/ranlxs.c *** gsl-1.9/rng/ranlxs.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/ranlxs.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* rng/ranlxs.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* rng/ranlxs.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/ranmar.c gsl-1.10/rng/ranmar.c *** gsl-1.9/rng/ranmar.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/ranmar.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* rng/ranmar.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* rng/ranmar.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/rng.c gsl-1.10/rng/rng.c *** gsl-1.9/rng/rng.c 2006-02-19 21:12:03.000000000 +0000 --- gsl-1.10/rng/rng.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* rng/rng.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* rng/rng.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/schrage.c gsl-1.10/rng/schrage.c *** gsl-1.9/rng/schrage.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/schrage.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 3,9 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 3,9 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/slatec.c gsl-1.10/rng/slatec.c *** gsl-1.9/rng/slatec.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/slatec.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* rng/slatec.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* rng/slatec.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/taus113.c gsl-1.10/rng/taus113.c *** gsl-1.9/rng/taus113.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/taus113.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,11 **** /* rng/taus113.c * Copyright (C) 2002 Atakan Gurkan * Based on the file taus.c which has the notice ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,11 ---- /* rng/taus113.c * Copyright (C) 2002 Atakan Gurkan * Based on the file taus.c which has the notice ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/taus.c gsl-1.10/rng/taus.c *** gsl-1.9/rng/taus.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/taus.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* rng/taus.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* rng/taus.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/test.c gsl-1.10/rng/test.c *** gsl-1.9/rng/test.c 2007-01-28 17:48:22.000000000 +0000 --- gsl-1.10/rng/test.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* rng/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* rng/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/transputer.c gsl-1.10/rng/transputer.c *** gsl-1.9/rng/transputer.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/transputer.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* rng/transputer.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* rng/transputer.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/tt.c gsl-1.10/rng/tt.c *** gsl-1.9/rng/tt.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/tt.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* rng/tt.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* rng/tt.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/types.c gsl-1.10/rng/types.c *** gsl-1.9/rng/types.c 2007-01-28 19:59:58.000000000 +0000 --- gsl-1.10/rng/types.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* rng/types.c * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* rng/types.c * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/uni32.c gsl-1.10/rng/uni32.c *** gsl-1.9/rng/uni32.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/uni32.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* rng/uni32.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* rng/uni32.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/uni.c gsl-1.10/rng/uni.c *** gsl-1.9/rng/uni.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/uni.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* rng/uni.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* rng/uni.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/vax.c gsl-1.10/rng/vax.c *** gsl-1.9/rng/vax.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/vax.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* rng/vax.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* rng/vax.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/waterman14.c gsl-1.10/rng/waterman14.c *** gsl-1.9/rng/waterman14.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/waterman14.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 2,8 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 2,8 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/rng/zuf.c gsl-1.10/rng/zuf.c *** gsl-1.9/rng/zuf.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/rng/zuf.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* rng/zuf.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* rng/zuf.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 James Theiler, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/roots/bisection.c gsl-1.10/roots/bisection.c *** gsl-1.9/roots/bisection.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/roots/bisection.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* roots/bisection.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Reid Priedhorsky, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* roots/bisection.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Reid Priedhorsky, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/roots/brent.c gsl-1.10/roots/brent.c *** gsl-1.9/roots/brent.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/roots/brent.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* roots/brent.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Reid Priedhorsky, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* roots/brent.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Reid Priedhorsky, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/roots/ChangeLog gsl-1.10/roots/ChangeLog *** gsl-1.9/roots/ChangeLog 2007-01-04 12:13:41.000000000 +0000 --- gsl-1.10/roots/ChangeLog 2007-08-02 20:06:47.000000000 +0100 *************** *** 1,3 **** --- 1,14 ---- + 2007-07-30 Brian Gough + + * newton.c (newton_iterate): use gsl_finite instead of finite + + * roots.h (SAFE_FUNC_CALL): use gsl_finite instead of finite + + * secant.c (secant_iterate): use gsl_finite instead of finite + + * steffenson.c (steffenson_iterate): use gsl_finite instead of + finite + 2007-01-04 Brian Gough * convergence.c (gsl_root_test_delta): added termination diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/roots/convergence.c gsl-1.10/roots/convergence.c *** gsl-1.9/roots/convergence.c 2007-01-04 12:13:41.000000000 +0000 --- gsl-1.10/roots/convergence.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* roots/convergence.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Reid Priedhorsky, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* roots/convergence.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Reid Priedhorsky, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/roots/falsepos.c gsl-1.10/roots/falsepos.c *** gsl-1.9/roots/falsepos.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/roots/falsepos.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* roots/falsepos.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Reid Priedhorsky, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* roots/falsepos.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Reid Priedhorsky, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/roots/fdfsolver.c gsl-1.10/roots/fdfsolver.c *** gsl-1.9/roots/fdfsolver.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/roots/fdfsolver.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* roots/fdfsolver.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Reid Priedhorsky, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* roots/fdfsolver.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Reid Priedhorsky, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/roots/fsolver.c gsl-1.10/roots/fsolver.c *** gsl-1.9/roots/fsolver.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/roots/fsolver.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* roots/fsolver.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Reid Priedhorsky, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* roots/fsolver.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Reid Priedhorsky, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/roots/gsl_roots.h gsl-1.10/roots/gsl_roots.h *** gsl-1.9/roots/gsl_roots.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/roots/gsl_roots.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* roots/gsl_roots.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Reid Priedhorsky, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* roots/gsl_roots.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Reid Priedhorsky, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/roots/Makefile.in gsl-1.10/roots/Makefile.in *** gsl-1.9/roots/Makefile.in 2007-02-20 13:09:14.000000000 +0000 --- gsl-1.10/roots/Makefile.in 2007-09-13 16:41:47.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 17,31 **** # -*-makefile-*- - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 17,27 ---- *************** *** 61,77 **** test_DEPENDENCIES = libgslroots.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslroots_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslroots_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 57,74 ---- test_DEPENDENCIES = libgslroots.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslroots_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslroots_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 105,110 **** --- 102,108 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 112,118 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 110,115 ---- *************** *** 120,136 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 117,130 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 142,150 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 136,143 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 154,168 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 147,162 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 172,199 **** --- 166,204 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslroots.la pkginclude_HEADERS = gsl_roots.h noinst_HEADERS = roots.h *************** *** 245,251 **** rm -f "$${dir}/so_locations"; \ done libgslroots.la: $(libgslroots_la_OBJECTS) $(libgslroots_la_DEPENDENCIES) ! $(LINK) $(libgslroots_la_LDFLAGS) $(libgslroots_la_OBJECTS) $(libgslroots_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 250,256 ---- rm -f "$${dir}/so_locations"; \ done libgslroots.la: $(libgslroots_la_OBJECTS) $(libgslroots_la_DEPENDENCIES) ! $(LINK) $(libgslroots_la_OBJECTS) $(libgslroots_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 255,261 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 260,266 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 277,289 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 282,290 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 348,356 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 349,357 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 359,365 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 360,366 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 371,377 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 372,378 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 421,442 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 422,442 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 454,460 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 454,460 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 488,494 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 488,494 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 502,513 **** --- 502,521 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 527,547 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 535,558 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/roots/newton.c gsl-1.10/roots/newton.c *** gsl-1.9/roots/newton.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/roots/newton.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* roots/newton.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Reid Priedhorsky, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* roots/newton.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Reid Priedhorsky, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 83,94 **** state->f = f_new ; state->df = df_new ; ! if (!finite(f_new)) { GSL_ERROR ("function value is not finite", GSL_EBADFUNC); } ! if (!finite (df_new)) { GSL_ERROR ("derivative value is not finite", GSL_EBADFUNC); } --- 83,94 ---- state->f = f_new ; state->df = df_new ; ! if (!gsl_finite(f_new)) { GSL_ERROR ("function value is not finite", GSL_EBADFUNC); } ! if (!gsl_finite (df_new)) { GSL_ERROR ("derivative value is not finite", GSL_EBADFUNC); } diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/roots/roots.h gsl-1.10/roots/roots.h *** gsl-1.9/roots/roots.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/roots/roots.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* roots/roots.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Reid Priedhorsky, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* roots/roots.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Reid Priedhorsky, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 28,34 **** #define SAFE_FUNC_CALL(f, x, yp) \ do { \ *yp = GSL_FN_EVAL(f,x); \ ! if (!finite(*yp)) \ GSL_ERROR("function value is not finite", GSL_EBADFUNC); \ } while (0) --- 28,34 ---- #define SAFE_FUNC_CALL(f, x, yp) \ do { \ *yp = GSL_FN_EVAL(f,x); \ ! if (!gsl_finite(*yp)) \ GSL_ERROR("function value is not finite", GSL_EBADFUNC); \ } while (0) diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/roots/secant.c gsl-1.10/roots/secant.c *** gsl-1.9/roots/secant.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/roots/secant.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* roots/secant.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Reid Priedhorsky, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* roots/secant.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Reid Priedhorsky, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 94,105 **** state->f = f_new ; state->df = df_new ; ! if (!finite (f_new)) { GSL_ERROR ("function value is not finite", GSL_EBADFUNC); } ! if (!finite (df_new)) { GSL_ERROR ("derivative value is not finite", GSL_EBADFUNC); } --- 94,105 ---- state->f = f_new ; state->df = df_new ; ! if (!gsl_finite (f_new)) { GSL_ERROR ("function value is not finite", GSL_EBADFUNC); } ! if (!gsl_finite (df_new)) { GSL_ERROR ("derivative value is not finite", GSL_EBADFUNC); } diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/roots/steffenson.c gsl-1.10/roots/steffenson.c *** gsl-1.9/roots/steffenson.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/roots/steffenson.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* roots/steffenson.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Reid Priedhorsky, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* roots/steffenson.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Reid Priedhorsky, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 105,111 **** state->f = f_new ; state->df = df_new ; ! if (!finite (f_new)) { GSL_ERROR ("function value is not finite", GSL_EBADFUNC); } --- 105,111 ---- state->f = f_new ; state->df = df_new ; ! if (!gsl_finite (f_new)) { GSL_ERROR ("function value is not finite", GSL_EBADFUNC); } *************** *** 126,132 **** *root = x_1 - u * u / v ; /* accelerated value */ } ! if (!finite (df_new)) { GSL_ERROR ("derivative value is not finite", GSL_EBADFUNC); } --- 126,132 ---- *root = x_1 - u * u / v ; /* accelerated value */ } ! if (!gsl_finite (df_new)) { GSL_ERROR ("derivative value is not finite", GSL_EBADFUNC); } diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/roots/test.c gsl-1.10/roots/test.c *** gsl-1.9/roots/test.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/roots/test.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* roots/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Reid Priedhorsky, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* roots/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Reid Priedhorsky, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/roots/test_funcs.c gsl-1.10/roots/test_funcs.c *** gsl-1.9/roots/test_funcs.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/roots/test_funcs.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* roots/test_funcs.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Reid Priedhorsky, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* roots/test_funcs.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Reid Priedhorsky, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/roots/test.h gsl-1.10/roots/test.h *** gsl-1.9/roots/test.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/roots/test.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* roots/test.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Reid Priedhorsky, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* roots/test.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Reid Priedhorsky, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/siman/ChangeLog gsl-1.10/siman/ChangeLog *** gsl-1.9/siman/ChangeLog 2006-03-09 15:52:05.000000000 +0000 --- gsl-1.10/siman/ChangeLog 2007-05-30 13:34:01.000000000 +0100 *************** *** 1,3 **** --- 1,8 ---- + 2007-05-30 Brian Gough + + * siman.c (boltzmann): moved safe_exp into boltzmann + (copy_state): put all copying into one function + 2006-03-08 Brian Gough * test.c (square): removed inline since it causes problems with diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/siman/gsl_siman.h gsl-1.10/siman/gsl_siman.h *** gsl-1.9/siman/gsl_siman.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/siman/gsl_siman.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/siman/Makefile.in gsl-1.10/siman/Makefile.in *** gsl-1.9/siman/Makefile.in 2007-02-20 13:09:14.000000000 +0000 --- gsl-1.10/siman/Makefile.in 2007-09-13 16:41:47.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 16,30 **** - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 16,26 ---- *************** *** 65,81 **** test_DEPENDENCIES = libgslsiman.la ../rng/libgslrng.la \ ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la \ ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslsiman_la_SOURCES) $(siman_tsp_SOURCES) \ $(test_SOURCES) DIST_SOURCES = $(libgslsiman_la_SOURCES) $(siman_tsp_SOURCES) \ --- 61,78 ---- test_DEPENDENCIES = libgslsiman.la ../rng/libgslrng.la \ ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la \ ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslsiman_la_SOURCES) $(siman_tsp_SOURCES) \ $(test_SOURCES) DIST_SOURCES = $(libgslsiman_la_SOURCES) $(siman_tsp_SOURCES) \ *************** *** 111,116 **** --- 108,114 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 118,124 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 116,121 ---- *************** *** 126,142 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 123,136 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 148,156 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 142,149 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 160,174 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 153,168 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 178,205 **** --- 172,210 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslsiman.la TESTS = $(check_PROGRAMS) EXTRA_DIST = siman_test_driver.sh *************** *** 254,260 **** rm -f "$${dir}/so_locations"; \ done libgslsiman.la: $(libgslsiman_la_OBJECTS) $(libgslsiman_la_DEPENDENCIES) ! $(LINK) $(libgslsiman_la_LDFLAGS) $(libgslsiman_la_OBJECTS) $(libgslsiman_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 259,265 ---- rm -f "$${dir}/so_locations"; \ done libgslsiman.la: $(libgslsiman_la_OBJECTS) $(libgslsiman_la_DEPENDENCIES) ! $(LINK) $(libgslsiman_la_OBJECTS) $(libgslsiman_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 271,280 **** done siman_tsp$(EXEEXT): $(siman_tsp_OBJECTS) $(siman_tsp_DEPENDENCIES) @rm -f siman_tsp$(EXEEXT) ! $(LINK) $(siman_tsp_LDFLAGS) $(siman_tsp_OBJECTS) $(siman_tsp_LDADD) $(LIBS) test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 276,285 ---- done siman_tsp$(EXEEXT): $(siman_tsp_OBJECTS) $(siman_tsp_DEPENDENCIES) @rm -f siman_tsp$(EXEEXT) ! $(LINK) $(siman_tsp_OBJECTS) $(siman_tsp_LDADD) $(LIBS) test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 296,308 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 301,309 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 367,375 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 368,376 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 378,384 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 379,385 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 390,396 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 391,397 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 440,461 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 441,461 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 473,479 **** all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 473,479 ---- all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 508,514 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 508,514 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 522,533 **** --- 522,541 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 547,567 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES clean-noinstPROGRAMS ctags distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ ! install install-am install-data install-data-am install-exec \ ! install-exec-am install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 555,578 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES clean-noinstPROGRAMS ctags distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ ! install install-am install-data install-data-am install-dvi \ ! install-dvi-am install-exec install-exec-am install-html \ ! install-html-am install-info install-info-am install-man \ ! install-pdf install-pdf-am install-pkgincludeHEADERS \ ! install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/siman/siman.c gsl-1.10/siman/siman.c *** gsl-1.9/siman/siman.c 2005-11-15 16:22:47.000000000 +0000 --- gsl-1.10/siman/siman.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* siman/siman.c * * Copyright (C) 1996, 1997, 1998, 1999, 2000 Mark Galassi * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,11 ---- /* siman/siman.c * + * Copyright (C) 2007 Brian Gough * Copyright (C) 1996, 1997, 1998, 1999, 2000 Mark Galassi * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 28,38 **** #include #include ! static inline ! double safe_exp (double x) /* avoid underflow errors for large uphill steps */ ! { return (x < GSL_LOG_DBL_MIN) ? 0.0 : exp(x); } /* implementation of a basic simulated annealing algorithm */ --- 29,51 ---- #include #include ! static inline double ! boltzmann(double E, double new_E, double T, gsl_siman_params_t *params) ! { ! double x = -(new_E - E) / (params->k * T); ! /* avoid underflow errors for large uphill steps */ return (x < GSL_LOG_DBL_MIN) ? 0.0 : exp(x); } + + static inline void + copy_state(void *src, void *dst, size_t size, gsl_siman_copy_t copyfunc) + { + if (copyfunc) { + copyfunc(src, dst); + } else { + memcpy(dst, src, size); + } + } /* implementation of a basic simulated annealing algorithm */ *************** *** 49,56 **** { void *x, *new_x, *best_x; double E, new_E, best_E; ! int i, done; ! double T; int n_evals = 1, n_iter = 0, n_accepts, n_rejects, n_eless; /* this function requires that either the dynamic functions (copy, --- 62,69 ---- { void *x, *new_x, *best_x; double E, new_E, best_E; ! int i; ! double T, T_factor; int n_evals = 1, n_iter = 0, n_accepts, n_rejects, n_eless; /* this function requires that either the dynamic functions (copy, *************** *** 77,99 **** best_E = E; T = params.t_initial; ! done = 0; if (print_position) { printf ("#-iter #-evals temperature position energy\n"); } ! while (!done) { n_accepts = 0; n_rejects = 0; n_eless = 0; for (i = 0; i < params.iters_fixed_T; ++i) { ! if (copyfunc) { ! copyfunc(x, new_x); ! } else { ! memcpy (new_x, x, element_size); ! } take_step (r, new_x, params.step_size); new_E = Ef (new_x); --- 90,110 ---- best_E = E; T = params.t_initial; ! T_factor = 1.0 / params.mu_t; if (print_position) { printf ("#-iter #-evals temperature position energy\n"); } ! while (1) { n_accepts = 0; n_rejects = 0; n_eless = 0; + for (i = 0; i < params.iters_fixed_T; ++i) { ! ! copy_state(x, new_x, element_size, copyfunc); take_step (r, new_x, params.step_size); new_E = Ef (new_x); *************** *** 109,133 **** ++n_evals; /* keep track of Ef() evaluations */ /* now take the crucial step: see if the new point is accepted ! or not, as determined by the boltzman probability */ if (new_E < E) { /* yay! take a step */ ! if (copyfunc) { ! copyfunc(new_x, x); ! } else { ! memcpy (x, new_x, element_size); ! } E = new_E; ++n_eless; ! } else if (gsl_rng_uniform(r) < safe_exp (-(new_E - E)/(params.k * T)) ) { /* yay! take a step */ ! if (copyfunc) { ! copyfunc(new_x, x); ! } else { ! memcpy(x, new_x, element_size); ! } E = new_E; ++n_accepts; } else { ++n_rejects; } --- 120,144 ---- ++n_evals; /* keep track of Ef() evaluations */ /* now take the crucial step: see if the new point is accepted ! or not, as determined by the boltzmann probability */ if (new_E < E) { + + if (new_E < best_E) { + copy_state(new_x, best_x, element_size, copyfunc); + best_E = new_E; + } + /* yay! take a step */ ! copy_state(new_x, x, element_size, copyfunc); E = new_E; ++n_eless; ! ! } else if (gsl_rng_uniform(r) < boltzmann(E, new_E, T, ¶ms)) { /* yay! take a step */ ! copy_state(new_x, x, element_size, copyfunc); E = new_E; ++n_accepts; + } else { ++n_rejects; } *************** *** 140,164 **** /* 100*n_rejects/n_steps); */ printf ("%5d %7d %12g", n_iter, n_evals, T); print_position (x); ! printf (" %12g\n", E); } /* apply the cooling schedule to the temperature */ /* FIXME: I should also introduce a cooling schedule for the iters */ ! T /= params.mu_t; ++n_iter; if (T < params.t_min) { ! done = 1; } } /* at the end, copy the result onto the initial point, so we pass it back to the caller */ ! if (copyfunc) { ! copyfunc(best_x, x0_p); ! } else { ! memcpy (x0_p, best_x, element_size); ! } if (copyfunc) { destructor(x); --- 151,171 ---- /* 100*n_rejects/n_steps); */ printf ("%5d %7d %12g", n_iter, n_evals, T); print_position (x); ! printf (" %12g %12g\n", E, best_E); } /* apply the cooling schedule to the temperature */ /* FIXME: I should also introduce a cooling schedule for the iters */ ! T *= T_factor; ++n_iter; if (T < params.t_min) { ! break; } } /* at the end, copy the result onto the initial point, so we pass it back to the caller */ ! copy_state(best_x, x0_p, element_size, copyfunc); if (copyfunc) { destructor(x); *************** *** 185,192 **** void *x, *new_x; double *energies, *probs, *sum_probs; double Ex; /* energy of the chosen point */ ! double T; /* the temperature */ ! int i, done; double u; /* throw the die to choose a new "x" */ int n_iter; --- 192,199 ---- void *x, *new_x; double *energies, *probs, *sum_probs; double Ex; /* energy of the chosen point */ ! double T, T_factor; /* the temperature and a step multiplier */ ! int i; double u; /* throw the die to choose a new "x" */ int n_iter; *************** *** 202,213 **** sum_probs = (double *) malloc (params.n_tries * sizeof (double)); T = params.t_initial; ! /* memcpy (x, x0_p, element_size); */ memcpy (x, x0_p, element_size); - done = 0; n_iter = 0; ! while (!done) { Ex = Ef (x); for (i = 0; i < params.n_tries - 1; ++i) --- 209,220 ---- sum_probs = (double *) malloc (params.n_tries * sizeof (double)); T = params.t_initial; ! T_factor = 1.0 / params.mu_t; ! memcpy (x, x0_p, element_size); n_iter = 0; ! while (1) { Ex = Ef (x); for (i = 0; i < params.n_tries - 1; ++i) *************** *** 217,228 **** memcpy ((char *)new_x + i * element_size, x, element_size); take_step (r, (char *)new_x + i * element_size, params.step_size); energies[i] = Ef ((char *)new_x + i * element_size); ! probs[i] = safe_exp (-(energies[i] - Ex) / (params.k * T)); } /* now add in the old value of "x", so it is a contendor */ memcpy ((char *)new_x + (params.n_tries - 1) * element_size, x, element_size); energies[params.n_tries - 1] = Ex; ! probs[params.n_tries - 1] = safe_exp (-(energies[i] - Ex) / (params.k * T)); /* now throw biased die to see which new_x[i] we choose */ sum_probs[0] = probs[0]; --- 224,235 ---- memcpy ((char *)new_x + i * element_size, x, element_size); take_step (r, (char *)new_x + i * element_size, params.step_size); energies[i] = Ef ((char *)new_x + i * element_size); ! probs[i] = boltzmann(Ex, energies[i], T, ¶ms); } /* now add in the old value of "x", so it is a contendor */ memcpy ((char *)new_x + (params.n_tries - 1) * element_size, x, element_size); energies[params.n_tries - 1] = Ex; ! probs[params.n_tries - 1] = boltzmann(Ex, energies[i], T, ¶ms); /* now throw biased die to see which new_x[i] we choose */ sum_probs[0] = probs[0]; *************** *** 235,241 **** { if (u < sum_probs[i]) { ! memcpy (x, (char *)new_x + i * element_size, element_size); break; } } --- 242,248 ---- { if (u < sum_probs[i]) { ! memcpy (x, (char *) new_x + i * element_size, element_size); break; } } *************** *** 245,255 **** print_position (x); printf ("\t%12g\t%12g\n", distance (x, x0_p), Ex); } ! T /= params.mu_t; ++n_iter; if (T < params.t_min) ! { ! done = 1; } } --- 252,262 ---- print_position (x); printf ("\t%12g\t%12g\n", distance (x, x0_p), Ex); } ! T *= T_factor; ++n_iter; if (T < params.t_min) ! { ! break; } } diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/siman/siman_tsp.c gsl-1.10/siman/siman_tsp.c *** gsl-1.9/siman/siman_tsp.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/siman/siman_tsp.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/siman/test.c gsl-1.10/siman/test.c *** gsl-1.9/siman/test.c 2006-03-09 15:52:05.000000000 +0000 --- gsl-1.10/siman/test.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/gsl_heapsort.h gsl-1.10/sort/gsl_heapsort.h *** gsl-1.9/sort/gsl_heapsort.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/sort/gsl_heapsort.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sort/gsl_heapsort.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sort/gsl_heapsort.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/gsl_sort_char.h gsl-1.10/sort/gsl_sort_char.h *** gsl-1.9/sort/gsl_sort_char.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/sort/gsl_sort_char.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sort/gsl_sort_char.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sort/gsl_sort_char.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/gsl_sort_double.h gsl-1.10/sort/gsl_sort_double.h *** gsl-1.9/sort/gsl_sort_double.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/sort/gsl_sort_double.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sort/gsl_sort_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sort/gsl_sort_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/gsl_sort_float.h gsl-1.10/sort/gsl_sort_float.h *** gsl-1.9/sort/gsl_sort_float.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/sort/gsl_sort_float.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sort/gsl_sort_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sort/gsl_sort_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/gsl_sort_int.h gsl-1.10/sort/gsl_sort_int.h *** gsl-1.9/sort/gsl_sort_int.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/sort/gsl_sort_int.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sort/gsl_sort_int.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sort/gsl_sort_int.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/gsl_sort_long_double.h gsl-1.10/sort/gsl_sort_long_double.h *** gsl-1.9/sort/gsl_sort_long_double.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/sort/gsl_sort_long_double.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sort/gsl_sort_long_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sort/gsl_sort_long_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/gsl_sort_long.h gsl-1.10/sort/gsl_sort_long.h *** gsl-1.9/sort/gsl_sort_long.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/sort/gsl_sort_long.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sort/gsl_sort_long.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sort/gsl_sort_long.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/gsl_sort_short.h gsl-1.10/sort/gsl_sort_short.h *** gsl-1.9/sort/gsl_sort_short.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/sort/gsl_sort_short.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sort/gsl_sort_short.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sort/gsl_sort_short.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/gsl_sort_uchar.h gsl-1.10/sort/gsl_sort_uchar.h *** gsl-1.9/sort/gsl_sort_uchar.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/sort/gsl_sort_uchar.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sort/gsl_sort_uchar.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sort/gsl_sort_uchar.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/gsl_sort_uint.h gsl-1.10/sort/gsl_sort_uint.h *** gsl-1.9/sort/gsl_sort_uint.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/sort/gsl_sort_uint.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sort/gsl_sort_uint.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sort/gsl_sort_uint.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/gsl_sort_ulong.h gsl-1.10/sort/gsl_sort_ulong.h *** gsl-1.9/sort/gsl_sort_ulong.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/sort/gsl_sort_ulong.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sort/gsl_sort_ulong.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sort/gsl_sort_ulong.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/gsl_sort_ushort.h gsl-1.10/sort/gsl_sort_ushort.h *** gsl-1.9/sort/gsl_sort_ushort.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/sort/gsl_sort_ushort.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sort/gsl_sort_ushort.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sort/gsl_sort_ushort.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/gsl_sort_vector_char.h gsl-1.10/sort/gsl_sort_vector_char.h *** gsl-1.9/sort/gsl_sort_vector_char.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/sort/gsl_sort_vector_char.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sort/gsl_sort_vector_char.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sort/gsl_sort_vector_char.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/gsl_sort_vector_double.h gsl-1.10/sort/gsl_sort_vector_double.h *** gsl-1.9/sort/gsl_sort_vector_double.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/sort/gsl_sort_vector_double.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sort/gsl_sort_vector_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sort/gsl_sort_vector_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/gsl_sort_vector_float.h gsl-1.10/sort/gsl_sort_vector_float.h *** gsl-1.9/sort/gsl_sort_vector_float.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/sort/gsl_sort_vector_float.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sort/gsl_sort_vector_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sort/gsl_sort_vector_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/gsl_sort_vector_int.h gsl-1.10/sort/gsl_sort_vector_int.h *** gsl-1.9/sort/gsl_sort_vector_int.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/sort/gsl_sort_vector_int.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sort/gsl_sort_vector_int.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sort/gsl_sort_vector_int.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/gsl_sort_vector_long_double.h gsl-1.10/sort/gsl_sort_vector_long_double.h *** gsl-1.9/sort/gsl_sort_vector_long_double.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/sort/gsl_sort_vector_long_double.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sort/gsl_sort_vector_long_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sort/gsl_sort_vector_long_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/gsl_sort_vector_long.h gsl-1.10/sort/gsl_sort_vector_long.h *** gsl-1.9/sort/gsl_sort_vector_long.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/sort/gsl_sort_vector_long.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sort/gsl_sort_vector_long.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sort/gsl_sort_vector_long.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/gsl_sort_vector_short.h gsl-1.10/sort/gsl_sort_vector_short.h *** gsl-1.9/sort/gsl_sort_vector_short.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/sort/gsl_sort_vector_short.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sort/gsl_sort_vector_short.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sort/gsl_sort_vector_short.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/gsl_sort_vector_uchar.h gsl-1.10/sort/gsl_sort_vector_uchar.h *** gsl-1.9/sort/gsl_sort_vector_uchar.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/sort/gsl_sort_vector_uchar.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sort/gsl_sort_vector_uchar.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sort/gsl_sort_vector_uchar.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/gsl_sort_vector_uint.h gsl-1.10/sort/gsl_sort_vector_uint.h *** gsl-1.9/sort/gsl_sort_vector_uint.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/sort/gsl_sort_vector_uint.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sort/gsl_sort_vector_uint.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sort/gsl_sort_vector_uint.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/gsl_sort_vector_ulong.h gsl-1.10/sort/gsl_sort_vector_ulong.h *** gsl-1.9/sort/gsl_sort_vector_ulong.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/sort/gsl_sort_vector_ulong.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sort/gsl_sort_vector_ulong.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sort/gsl_sort_vector_ulong.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/gsl_sort_vector_ushort.h gsl-1.10/sort/gsl_sort_vector_ushort.h *** gsl-1.9/sort/gsl_sort_vector_ushort.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/sort/gsl_sort_vector_ushort.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sort/gsl_sort_vector_ushort.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sort/gsl_sort_vector_ushort.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/Makefile.in gsl-1.10/sort/Makefile.in *** gsl-1.9/sort/Makefile.in 2007-02-20 13:09:15.000000000 +0000 --- gsl-1.10/sort/Makefile.in 2007-09-13 16:41:47.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 59,75 **** ../vector/libgslvector.la ../block/libgslblock.la \ ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la \ ../test/libgsltest.la ../sys/libgslsys.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslsort_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslsort_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 55,72 ---- ../vector/libgslvector.la ../block/libgslblock.la \ ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la \ ../test/libgsltest.la ../sys/libgslsys.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslsort_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslsort_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 103,108 **** --- 100,106 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 110,116 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 108,113 ---- *************** *** 118,134 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 115,128 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 140,148 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 134,141 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 152,166 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 145,160 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 170,197 **** --- 164,202 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslsort.la pkginclude_HEADERS = gsl_heapsort.h gsl_sort.h gsl_sort_char.h gsl_sort_double.h gsl_sort_float.h gsl_sort_int.h gsl_sort_long.h gsl_sort_long_double.h gsl_sort_short.h gsl_sort_uchar.h gsl_sort_uint.h gsl_sort_ulong.h gsl_sort_ushort.h gsl_sort_vector.h gsl_sort_vector_char.h gsl_sort_vector_double.h gsl_sort_vector_float.h gsl_sort_vector_int.h gsl_sort_vector_long.h gsl_sort_vector_long_double.h gsl_sort_vector_short.h gsl_sort_vector_uchar.h gsl_sort_vector_uint.h gsl_sort_vector_ulong.h gsl_sort_vector_ushort.h INCLUDES = -I$(top_builddir) -I$(top_srcdir) *************** *** 243,249 **** rm -f "$${dir}/so_locations"; \ done libgslsort.la: $(libgslsort_la_OBJECTS) $(libgslsort_la_DEPENDENCIES) ! $(LINK) $(libgslsort_la_LDFLAGS) $(libgslsort_la_OBJECTS) $(libgslsort_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 248,254 ---- rm -f "$${dir}/so_locations"; \ done libgslsort.la: $(libgslsort_la_OBJECTS) $(libgslsort_la_DEPENDENCIES) ! $(LINK) $(libgslsort_la_OBJECTS) $(libgslsort_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 253,259 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 258,264 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 275,287 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 280,288 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 346,354 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 347,355 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 357,363 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 358,364 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 369,375 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 370,376 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 419,440 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 420,440 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 452,458 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 452,458 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 486,492 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 486,492 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 500,511 **** --- 500,519 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 525,545 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 533,556 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/sort.c gsl-1.10/sort/sort.c *** gsl-1.9/sort/sort.c 2003-07-25 16:18:14.000000000 +0100 --- gsl-1.10/sort/sort.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 8,14 **** * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2, or (at your option) any * later version. * * This source is distributed in the hope that it will be useful, but WITHOUT --- 8,14 ---- * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 3, or (at your option) any * later version. * * This source is distributed in the hope that it will be useful, but WITHOUT diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/sortind.c gsl-1.10/sort/sortind.c *** gsl-1.9/sort/sortind.c 2003-07-25 16:18:14.000000000 +0100 --- gsl-1.10/sort/sortind.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 7,13 **** * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2, or (at your option) any * later version. * * This source is distributed in the hope that it will be useful, but WITHOUT --- 7,13 ---- * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 3, or (at your option) any * later version. * * This source is distributed in the hope that it will be useful, but WITHOUT diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/sortvec.c gsl-1.10/sort/sortvec.c *** gsl-1.9/sort/sortvec.c 2003-07-25 16:18:14.000000000 +0100 --- gsl-1.10/sort/sortvec.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 8,14 **** * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2, or (at your option) any * later version. * * This source is distributed in the hope that it will be useful, but WITHOUT --- 8,14 ---- * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 3, or (at your option) any * later version. * * This source is distributed in the hope that it will be useful, but WITHOUT diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/sortvecind.c gsl-1.10/sort/sortvecind.c *** gsl-1.9/sort/sortvecind.c 2003-07-25 16:18:14.000000000 +0100 --- gsl-1.10/sort/sortvecind.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 8,14 **** * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2, or (at your option) any * later version. * * This source is distributed in the hope that it will be useful, but WITHOUT --- 8,14 ---- * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 3, or (at your option) any * later version. * * This source is distributed in the hope that it will be useful, but WITHOUT diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/sortvecind_source.c gsl-1.10/sort/sortvecind_source.c *** gsl-1.9/sort/sortvecind_source.c 2005-04-08 18:54:45.000000000 +0100 --- gsl-1.10/sort/sortvecind_source.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 8,14 **** * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2, or (at your option) any * later version. * * This source is distributed in the hope that it will be useful, but WITHOUT --- 8,14 ---- * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 3, or (at your option) any * later version. * * This source is distributed in the hope that it will be useful, but WITHOUT diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/sortvec_source.c gsl-1.10/sort/sortvec_source.c *** gsl-1.9/sort/sortvec_source.c 2005-04-08 18:54:45.000000000 +0100 --- gsl-1.10/sort/sortvec_source.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 8,14 **** * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2, or (at your option) any * later version. * * This source is distributed in the hope that it will be useful, but WITHOUT --- 8,14 ---- * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 3, or (at your option) any * later version. * * This source is distributed in the hope that it will be useful, but WITHOUT diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/subset.c gsl-1.10/sort/subset.c *** gsl-1.9/sort/subset.c 2003-07-25 16:18:14.000000000 +0100 --- gsl-1.10/sort/subset.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sort/subset.c * ! * Copyright (C) 2001 Brian Gough * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2, or (at your option) any * later version. * * This source is distributed in the hope that it will be useful, but WITHOUT --- 1,10 ---- /* sort/subset.c * ! * Copyright (C) 2001, 2007 Brian Gough * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 3, or (at your option) any * later version. * * This source is distributed in the hope that it will be useful, but WITHOUT diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/subsetind.c gsl-1.10/sort/subsetind.c *** gsl-1.9/sort/subsetind.c 2003-07-25 16:18:15.000000000 +0100 --- gsl-1.10/sort/subsetind.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sort/subsetind.c * ! * Copyright (C) 2001 Brian Gough * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2, or (at your option) any * later version. * * This source is distributed in the hope that it will be useful, but WITHOUT --- 1,10 ---- /* sort/subsetind.c * ! * Copyright (C) 2001, 2007 Brian Gough * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 3, or (at your option) any * later version. * * This source is distributed in the hope that it will be useful, but WITHOUT diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/subsetind_source.c gsl-1.10/sort/subsetind_source.c *** gsl-1.9/sort/subsetind_source.c 2003-07-25 16:18:15.000000000 +0100 --- gsl-1.10/sort/subsetind_source.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2, or (at your option) any * later version. * * This source is distributed in the hope that it will be useful, but WITHOUT --- 4,10 ---- * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 3, or (at your option) any * later version. * * This source is distributed in the hope that it will be useful, but WITHOUT diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/subset_source.c gsl-1.10/sort/subset_source.c *** gsl-1.9/sort/subset_source.c 2003-07-25 16:18:14.000000000 +0100 --- gsl-1.10/sort/subset_source.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 2, or (at your option) any * later version. * * This source is distributed in the hope that it will be useful, but WITHOUT --- 4,10 ---- * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the ! * Free Software Foundation; either version 3, or (at your option) any * later version. * * This source is distributed in the hope that it will be useful, but WITHOUT diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/test.c gsl-1.10/sort/test.c *** gsl-1.9/sort/test.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/sort/test.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sort/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sort/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/test_heapsort.c gsl-1.10/sort/test_heapsort.c *** gsl-1.9/sort/test_heapsort.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/sort/test_heapsort.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sort/test_heapsort.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sort/test_heapsort.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sort/test_source.c gsl-1.10/sort/test_source.c *** gsl-1.9/sort/test_source.c 2005-09-13 10:43:47.000000000 +0100 --- gsl-1.10/sort/test_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sort/test_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sort/test_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Thomas Walter, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 194,199 **** --- 194,209 ---- { if (FUNCTION (gsl_vector, get) (data, i) != FUNCTION (gsl_vector, get) (orig, i)) { + #if DUMP_ERROR + size_t j; + for (j = 0 ; j < data->size; j++) { + printf("%u: " OUT_FORMAT " " OUT_FORMAT " %c\n", j, + FUNCTION (gsl_vector, get) (data, j), + FUNCTION (gsl_vector, get) (orig, j), + (i == j) ? '*' : ' '); + } + #endif + return GSL_FAILURE; } } diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/airy.c gsl-1.10/specfunc/airy.c *** gsl-1.9/specfunc/airy.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/airy.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/airy_der.c gsl-1.10/specfunc/airy_der.c *** gsl-1.9/specfunc/airy_der.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/airy_der.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/airy_zero.c gsl-1.10/specfunc/airy_zero.c *** gsl-1.9/specfunc/airy_zero.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/airy_zero.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/atanint.c gsl-1.10/specfunc/atanint.c *** gsl-1.9/specfunc/atanint.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/atanint.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/bessel_amp_phase.c gsl-1.10/specfunc/bessel_amp_phase.c *** gsl-1.9/specfunc/bessel_amp_phase.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/bessel_amp_phase.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/bessel_amp_phase.h gsl-1.10/specfunc/bessel_amp_phase.h *** gsl-1.9/specfunc/bessel_amp_phase.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/bessel_amp_phase.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/bessel.c gsl-1.10/specfunc/bessel.c *** gsl-1.9/specfunc/bessel.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/bessel.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/bessel.h gsl-1.10/specfunc/bessel.h *** gsl-1.9/specfunc/bessel.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/bessel.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/bessel_I0.c gsl-1.10/specfunc/bessel_I0.c *** gsl-1.9/specfunc/bessel_I0.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/bessel_I0.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/bessel_I1.c gsl-1.10/specfunc/bessel_I1.c *** gsl-1.9/specfunc/bessel_I1.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/bessel_I1.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/bessel_i.c gsl-1.10/specfunc/bessel_i.c *** gsl-1.9/specfunc/bessel_i.c 2005-07-27 16:37:58.000000000 +0100 --- gsl-1.10/specfunc/bessel_i.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/bessel_In.c gsl-1.10/specfunc/bessel_In.c *** gsl-1.9/specfunc/bessel_In.c 2006-01-20 15:30:02.000000000 +0000 --- gsl-1.10/specfunc/bessel_In.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/bessel_Inu.c gsl-1.10/specfunc/bessel_Inu.c *** gsl-1.9/specfunc/bessel_Inu.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/bessel_Inu.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/bessel_J0.c gsl-1.10/specfunc/bessel_J0.c *** gsl-1.9/specfunc/bessel_J0.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/bessel_J0.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/bessel_J1.c gsl-1.10/specfunc/bessel_J1.c *** gsl-1.9/specfunc/bessel_J1.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/bessel_J1.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/bessel_j.c gsl-1.10/specfunc/bessel_j.c *** gsl-1.9/specfunc/bessel_j.c 2006-01-20 17:49:58.000000000 +0000 --- gsl-1.10/specfunc/bessel_j.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/bessel_Jn.c gsl-1.10/specfunc/bessel_Jn.c *** gsl-1.9/specfunc/bessel_Jn.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/bessel_Jn.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/bessel_Jnu.c gsl-1.10/specfunc/bessel_Jnu.c *** gsl-1.9/specfunc/bessel_Jnu.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/bessel_Jnu.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/bessel_K0.c gsl-1.10/specfunc/bessel_K0.c *** gsl-1.9/specfunc/bessel_K0.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/bessel_K0.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/bessel_K1.c gsl-1.10/specfunc/bessel_K1.c *** gsl-1.9/specfunc/bessel_K1.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/bessel_K1.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/bessel_k.c gsl-1.10/specfunc/bessel_k.c *** gsl-1.9/specfunc/bessel_k.c 2005-07-27 16:37:05.000000000 +0100 --- gsl-1.10/specfunc/bessel_k.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/bessel_Kn.c gsl-1.10/specfunc/bessel_Kn.c *** gsl-1.9/specfunc/bessel_Kn.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/bessel_Kn.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/bessel_Knu.c gsl-1.10/specfunc/bessel_Knu.c *** gsl-1.9/specfunc/bessel_Knu.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/bessel_Knu.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/bessel_olver.c gsl-1.10/specfunc/bessel_olver.c *** gsl-1.9/specfunc/bessel_olver.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/bessel_olver.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/bessel_olver.h gsl-1.10/specfunc/bessel_olver.h *** gsl-1.9/specfunc/bessel_olver.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/bessel_olver.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/bessel_sequence.c gsl-1.10/specfunc/bessel_sequence.c *** gsl-1.9/specfunc/bessel_sequence.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/bessel_sequence.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/bessel_temme.c gsl-1.10/specfunc/bessel_temme.c *** gsl-1.9/specfunc/bessel_temme.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/bessel_temme.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/bessel_temme.h gsl-1.10/specfunc/bessel_temme.h *** gsl-1.9/specfunc/bessel_temme.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/bessel_temme.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/bessel_Y0.c gsl-1.10/specfunc/bessel_Y0.c *** gsl-1.9/specfunc/bessel_Y0.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/bessel_Y0.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/bessel_Y1.c gsl-1.10/specfunc/bessel_Y1.c *** gsl-1.9/specfunc/bessel_Y1.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/bessel_Y1.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/bessel_y.c gsl-1.10/specfunc/bessel_y.c *** gsl-1.9/specfunc/bessel_y.c 2005-07-27 16:37:05.000000000 +0100 --- gsl-1.10/specfunc/bessel_y.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/bessel_Yn.c gsl-1.10/specfunc/bessel_Yn.c *** gsl-1.9/specfunc/bessel_Yn.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/bessel_Yn.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/bessel_Ynu.c gsl-1.10/specfunc/bessel_Ynu.c *** gsl-1.9/specfunc/bessel_Ynu.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/bessel_Ynu.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/bessel_zero.c gsl-1.10/specfunc/bessel_zero.c *** gsl-1.9/specfunc/bessel_zero.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/bessel_zero.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/beta.c gsl-1.10/specfunc/beta.c *** gsl-1.9/specfunc/beta.c 2007-01-31 17:46:31.000000000 +0000 --- gsl-1.10/specfunc/beta.c 2007-08-30 21:55:49.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 107,113 **** *sgn = sgx * sgy * sgxy; result->val = lgx.val + lgy.val - lgxy.val; result->err = lgx.err + lgy.err + lgxy.err; ! result->err += GSL_DBL_EPSILON * (fabs(lgx.val) + fabs(lgy.val) + fabs(lgxy.val)); result->err += 2.0 * GSL_DBL_EPSILON * fabs(result->val); return GSL_ERROR_SELECT_3(stat_gx, stat_gy, stat_gxy); } --- 107,113 ---- *sgn = sgx * sgy * sgxy; result->val = lgx.val + lgy.val - lgxy.val; result->err = lgx.err + lgy.err + lgxy.err; ! result->err += 2.0 * GSL_DBL_EPSILON * (fabs(lgx.val) + fabs(lgy.val) + fabs(lgxy.val)); result->err += 2.0 * GSL_DBL_EPSILON * fabs(result->val); return GSL_ERROR_SELECT_3(stat_gx, stat_gy, stat_gxy); } diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/beta_inc.c gsl-1.10/specfunc/beta_inc.c *** gsl-1.9/specfunc/beta_inc.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/beta_inc.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* specfunc/beta_inc.c * * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,11 ---- /* specfunc/beta_inc.c * + * Copyright (C) 2007 Brian Gough * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 25,34 **** --- 26,42 ---- #include #include #include + #include #include "error.h" #include "check.h" + static double + isnegint (const double x) + { + return (x < 0) && (x == floor(x)); + } + static int beta_cont_frac( *************** *** 103,112 **** gsl_sf_result * result ) { ! if(a <= 0.0 || b <= 0.0 || x < 0.0 || x > 1.0) { DOMAIN_ERROR(result); ! } ! else if(x == 0.0) { result->val = 0.0; result->err = 0.0; return GSL_SUCCESS; --- 111,123 ---- gsl_sf_result * result ) { ! if(x < 0.0 || x > 1.0) { DOMAIN_ERROR(result); ! } else if (isnegint(a) || isnegint(b)) { ! DOMAIN_ERROR(result); ! } else if (isnegint(a+b)) { ! DOMAIN_ERROR(result); ! } else if(x == 0.0) { result->val = 0.0; result->err = 0.0; return GSL_SUCCESS; *************** *** 115,122 **** result->val = 1.0; result->err = 0.0; return GSL_SUCCESS; ! } ! else { gsl_sf_result ln_beta; gsl_sf_result ln_x; gsl_sf_result ln_1mx; --- 126,146 ---- result->val = 1.0; result->err = 0.0; return GSL_SUCCESS; ! } else if (a <= 0 || b <= 0) { ! gsl_sf_result f, beta; ! int stat; ! const int stat_f = gsl_sf_hyperg_2F1_e(a, 1-b, a+1, x, &f); ! const int stat_beta = gsl_sf_beta_e(a, b, &beta); ! double prefactor = (pow(x, a) / a); ! result->val = prefactor * f.val / beta.val; ! result->err = fabs(prefactor) * f.err/ fabs(beta.val) + fabs(result->val/beta.val) * beta.err; ! ! stat = GSL_ERROR_SELECT_2(stat_f, stat_beta); ! if(stat == GSL_SUCCESS) { ! CHECK_UNDERFLOW(result); ! } ! return stat; ! } else { gsl_sf_result ln_beta; gsl_sf_result ln_x; gsl_sf_result ln_1mx; diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/ChangeLog gsl-1.10/specfunc/ChangeLog *** gsl-1.9/specfunc/ChangeLog 2007-02-17 14:14:49.000000000 +0000 --- gsl-1.10/specfunc/ChangeLog 2007-09-13 15:05:49.000000000 +0100 *************** *** 1,3 **** --- 1,37 ---- + 2007-09-13 Brian Gough + + * ellint.c (gsl_sf_ellint_Pcomp_e): remove test for n <1, no + restriction needed + + 2007-09-10 Brian Gough + + * expint.c (gsl_sf_expint_En_e): added for support En(x) + (gsl_sf_expint_En_scaled_e): added for support En(x) scaled + + * gamma_inc.c (gamma_inc_CF): include finite precision of log term + + 2007-08-30 Brian Gough + + * psi.c (psi_complex_rhp): accumulate error, to allow for + cancellation effects + + * beta.c (gsl_sf_lnbeta_sgn_e): added missing factor of 2 for + error. + + 2007-08-27 Brian Gough + + * beta_inc.c (gsl_sf_beta_inc_e): handle cases where a<=0 or b<=0 + + 2007-04-27 Brian Gough + + * lambert.c (halley_iteration): increase tolerance to prevent + exceeding max iters due to finite precision + + 2007-04-04 Brian Gough + + * laguerre.c (gsl_sf_laguerre_n_e): use recursion for a=0 in + addition to a>0 + 2007-02-17 Brian Gough * log.c (gsl_sf_log_e): removed HIDE_INLINE_STATIC diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/chebyshev.h gsl-1.10/specfunc/chebyshev.h *** gsl-1.9/specfunc/chebyshev.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/chebyshev.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/clausen.c gsl-1.10/specfunc/clausen.c *** gsl-1.9/specfunc/clausen.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/clausen.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/coulomb_bound.c gsl-1.10/specfunc/coulomb_bound.c *** gsl-1.9/specfunc/coulomb_bound.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/coulomb_bound.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/coulomb.c gsl-1.10/specfunc/coulomb.c *** gsl-1.9/specfunc/coulomb.c 2006-02-23 12:30:13.000000000 +0000 --- gsl-1.10/specfunc/coulomb.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/coupling.c gsl-1.10/specfunc/coupling.c *** gsl-1.9/specfunc/coupling.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/coupling.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/dawson.c gsl-1.10/specfunc/dawson.c *** gsl-1.9/specfunc/dawson.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/dawson.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/debye.c gsl-1.10/specfunc/debye.c *** gsl-1.9/specfunc/debye.c 2005-12-20 19:25:56.000000000 +0000 --- gsl-1.10/specfunc/debye.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/dilog.c gsl-1.10/specfunc/dilog.c *** gsl-1.9/specfunc/dilog.c 2005-11-15 16:28:48.000000000 +0000 --- gsl-1.10/specfunc/dilog.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/elementary.c gsl-1.10/specfunc/elementary.c *** gsl-1.9/specfunc/elementary.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/elementary.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/ellint.c gsl-1.10/specfunc/ellint.c *** gsl-1.9/specfunc/ellint.c 2007-02-09 20:39:01.000000000 +0000 --- gsl-1.10/specfunc/ellint.c 2007-09-13 15:05:49.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 407,412 **** --- 407,414 ---- const int rjstatus = gsl_sf_ellint_RJ_e(x, y, 1.0, 1.0 + n*sin2_phi, mode, &rj); result->val = sin_phi * rf.val - n/3.0*sin3_phi * rj.val; result->err = GSL_DBL_EPSILON * fabs(sin_phi * rf.val); + result->err += fabs(sin_phi * rf.err); + result->err += n/3.0 * GSL_DBL_EPSILON * fabs(sin3_phi*rj.val); result->err += n/3.0 * fabs(sin3_phi*rj.err); if (nc == 0) { return GSL_ERROR_SELECT_2(rfstatus, rjstatus); *************** *** 538,548 **** } } ! /* [Carlson, Numer. Math. 33 (1979) 1, (4.6)] */ int gsl_sf_ellint_Pcomp_e(double k, double n, gsl_mode_t mode, gsl_sf_result * result) { ! if(k*k >= 1.0 || n >= 1.0) { DOMAIN_ERROR(result); } /* FIXME: need to handle k ~=~ 1 cancellations */ --- 540,550 ---- } } ! /* [Carlson, Numer. Math. 33 (1979) 1, (4.3) phi=pi/2] */ int gsl_sf_ellint_Pcomp_e(double k, double n, gsl_mode_t mode, gsl_sf_result * result) { ! if(k*k >= 1.0) { DOMAIN_ERROR(result); } /* FIXME: need to handle k ~=~ 1 cancellations */ diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/elljac.c gsl-1.10/specfunc/elljac.c *** gsl-1.9/specfunc/elljac.c 2005-07-28 16:25:48.000000000 +0100 --- gsl-1.10/specfunc/elljac.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/erfc.c gsl-1.10/specfunc/erfc.c *** gsl-1.9/specfunc/erfc.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/erfc.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/exp.c gsl-1.10/specfunc/exp.c *** gsl-1.9/specfunc/exp.c 2007-02-17 14:14:49.000000000 +0000 --- gsl-1.10/specfunc/exp.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/expint3.c gsl-1.10/specfunc/expint3.c *** gsl-1.9/specfunc/expint3.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/expint3.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/expint.c gsl-1.10/specfunc/expint.c *** gsl-1.9/specfunc/expint.c 2007-01-26 18:21:33.000000000 +0000 --- gsl-1.10/specfunc/expint.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* specfunc/expint.c * * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002 Gerard Jungman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,11 ---- /* specfunc/expint.c * + * Copyright (C) 2007 Brian Gough * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002 Gerard Jungman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 23,30 **** --- 24,33 ---- #include #include #include + #include #include "error.h" + #include "check.h" #include "chebyshev.h" #include "cheb_eval.c" *************** *** 416,422 **** } } ! /*-*-*-*-*-*-*-*-*-*-*-* Functions with Error Codes *-*-*-*-*-*-*-*-*-*-*-*/ --- 419,464 ---- } } ! static ! int expint_En_impl(const int n, const double x, gsl_sf_result * result, const int scale) ! { ! if (n < 0) { ! DOMAIN_ERROR(result); ! } else if (n == 0) { ! if (x == 0) { ! DOMAIN_ERROR(result); ! } else { ! result->val = (scale ? 1.0 : exp(-x)) / x; ! result->err = 2 * GSL_DBL_EPSILON * fabs(result->val); ! CHECK_UNDERFLOW(result); ! return GSL_SUCCESS; ! } ! } else if (n == 1) { ! return expint_E1_impl(x, result, scale); ! } else if (n == 2) { ! return expint_E2_impl(x, result, scale); ! } else { ! if(x < 0) { ! DOMAIN_ERROR(result); ! } ! if (x == 0) { ! result->val = (scale ? exp(x) : 1 ) * (1/(n-1.0)); ! result->err = 2 * GSL_DBL_EPSILON * fabs(result->val); ! CHECK_UNDERFLOW(result); ! return GSL_SUCCESS; ! } else { ! gsl_sf_result result_g; ! double prefactor = pow(x, n-1); ! int status = gsl_sf_gamma_inc_e (1-n, x, &result_g); ! double scale_factor = ( scale ? exp(x) : 1.0 ); ! result->val = scale_factor * prefactor * result_g.val; ! result->err = 2 * GSL_DBL_EPSILON * fabs(result->val); ! result->err += 2 * fabs(scale_factor * prefactor * result_g.err); ! if (status == GSL_SUCCESS) CHECK_UNDERFLOW(result); ! return status; ! } ! } ! } /*-*-*-*-*-*-*-*-*-*-*-* Functions with Error Codes *-*-*-*-*-*-*-*-*-*-*-*/ *************** *** 444,449 **** --- 486,502 ---- return expint_E2_impl(x, result, 1); } + int gsl_sf_expint_En_e(const int n, const double x, gsl_sf_result * result) + { + return expint_En_impl(n, x, result, 0); + } + + + int gsl_sf_expint_En_scaled_e(const int n, const double x, gsl_sf_result * result) + { + return expint_En_impl(n, x, result, 1); + } + int gsl_sf_expint_Ei_e(const double x, gsl_sf_result * result) { *************** *** 507,512 **** --- 560,575 ---- EVAL_RESULT(gsl_sf_expint_E2_scaled_e(x, &result)); } + double gsl_sf_expint_En(const int n, const double x) + { + EVAL_RESULT(gsl_sf_expint_En_e(n, x, &result)); + } + + double gsl_sf_expint_En_scaled(const int n, const double x) + { + EVAL_RESULT(gsl_sf_expint_En_scaled_e(n, x, &result)); + } + double gsl_sf_expint_Ei(const double x) { EVAL_RESULT(gsl_sf_expint_Ei_e(x, &result)); diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/fermi_dirac.c gsl-1.10/specfunc/fermi_dirac.c *** gsl-1.9/specfunc/fermi_dirac.c 2006-03-30 20:01:51.000000000 +0100 --- gsl-1.10/specfunc/fermi_dirac.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gamma.c gsl-1.10/specfunc/gamma.c *** gsl-1.9/specfunc/gamma.c 2007-01-31 17:46:04.000000000 +0000 --- gsl-1.10/specfunc/gamma.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 1246,1252 **** result_lg->val = 0.0; result_lg->err = 0.0; *sgn = 0.0; ! GSL_ERROR ("error", GSL_EROUND); } } --- 1246,1252 ---- result_lg->val = 0.0; result_lg->err = 0.0; *sgn = 0.0; ! GSL_ERROR ("x too large to extract fraction part", GSL_EROUND); } } diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gamma_inc.c gsl-1.10/specfunc/gamma_inc.c *** gsl-1.9/specfunc/gamma_inc.c 2005-08-01 12:50:59.000000000 +0100 --- gsl-1.10/specfunc/gamma_inc.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* specfunc/gamma_inc.c * * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,11 ---- /* specfunc/gamma_inc.c * + * Copyright (C) 2007 Brian Gough * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 429,440 **** { gsl_sf_result F; gsl_sf_result pre; const int stat_F = gamma_inc_F_CF(a, x, &F); ! const int stat_E = gsl_sf_exp_e((a-1.0)*log(x) - x, &pre); result->val = F.val * pre.val; result->err = fabs(F.err * pre.val) + fabs(F.val * pre.err); ! result->err += (2.0 + fabs(a)) * GSL_DBL_EPSILON * fabs(result->val); return GSL_ERROR_SELECT_2(stat_F, stat_E); } --- 430,442 ---- { gsl_sf_result F; gsl_sf_result pre; + const double am1lgx = (a-1.0)*log(x); const int stat_F = gamma_inc_F_CF(a, x, &F); ! const int stat_E = gsl_sf_exp_err_e(am1lgx - x, GSL_DBL_EPSILON*fabs(am1lgx), &pre); result->val = F.val * pre.val; result->err = fabs(F.err * pre.val) + fabs(F.val * pre.err); ! result->err += 2.0 * GSL_DBL_EPSILON * fabs(result->val); return GSL_ERROR_SELECT_2(stat_F, stat_E); } diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gegenbauer.c gsl-1.10/specfunc/gegenbauer.c *** gsl-1.9/specfunc/gegenbauer.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/gegenbauer.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gsl_sf_airy.h gsl-1.10/specfunc/gsl_sf_airy.h *** gsl-1.9/specfunc/gsl_sf_airy.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/gsl_sf_airy.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gsl_sf_bessel.h gsl-1.10/specfunc/gsl_sf_bessel.h *** gsl-1.9/specfunc/gsl_sf_bessel.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/gsl_sf_bessel.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gsl_sf_clausen.h gsl-1.10/specfunc/gsl_sf_clausen.h *** gsl-1.9/specfunc/gsl_sf_clausen.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/gsl_sf_clausen.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gsl_sf_coulomb.h gsl-1.10/specfunc/gsl_sf_coulomb.h *** gsl-1.9/specfunc/gsl_sf_coulomb.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/gsl_sf_coulomb.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gsl_sf_coupling.h gsl-1.10/specfunc/gsl_sf_coupling.h *** gsl-1.9/specfunc/gsl_sf_coupling.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/gsl_sf_coupling.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gsl_sf_dawson.h gsl-1.10/specfunc/gsl_sf_dawson.h *** gsl-1.9/specfunc/gsl_sf_dawson.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/gsl_sf_dawson.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gsl_sf_debye.h gsl-1.10/specfunc/gsl_sf_debye.h *** gsl-1.9/specfunc/gsl_sf_debye.h 2005-12-20 19:25:56.000000000 +0000 --- gsl-1.10/specfunc/gsl_sf_debye.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gsl_sf_dilog.h gsl-1.10/specfunc/gsl_sf_dilog.h *** gsl-1.9/specfunc/gsl_sf_dilog.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/gsl_sf_dilog.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gsl_sf_elementary.h gsl-1.10/specfunc/gsl_sf_elementary.h *** gsl-1.9/specfunc/gsl_sf_elementary.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/gsl_sf_elementary.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gsl_sf_ellint.h gsl-1.10/specfunc/gsl_sf_ellint.h *** gsl-1.9/specfunc/gsl_sf_ellint.h 2007-02-09 20:39:01.000000000 +0000 --- gsl-1.10/specfunc/gsl_sf_ellint.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gsl_sf_elljac.h gsl-1.10/specfunc/gsl_sf_elljac.h *** gsl-1.9/specfunc/gsl_sf_elljac.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/gsl_sf_elljac.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gsl_sf_erf.h gsl-1.10/specfunc/gsl_sf_erf.h *** gsl-1.9/specfunc/gsl_sf_erf.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/gsl_sf_erf.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gsl_sf_exp.h gsl-1.10/specfunc/gsl_sf_exp.h *** gsl-1.9/specfunc/gsl_sf_exp.h 2007-01-26 14:29:04.000000000 +0000 --- gsl-1.10/specfunc/gsl_sf_exp.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gsl_sf_expint.h gsl-1.10/specfunc/gsl_sf_expint.h *** gsl-1.9/specfunc/gsl_sf_expint.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/gsl_sf_expint.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* specfunc/gsl_sf_expint.h * * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002 Gerard Jungman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,11 ---- /* specfunc/gsl_sf_expint.h * + * Copyright (C) 2007 Brian Gough * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002 Gerard Jungman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 55,60 **** --- 56,70 ---- double gsl_sf_expint_E2(const double x); + /* E_n(x) := Re[ Integrate[ Exp[-xt]/t^n, {t,1,Infinity}] ] + * + * x != 0.0 + * exceptions: GSL_EDOM, GSL_EOVRFLW, GSL_EUNDRFLW + */ + int gsl_sf_expint_En_e(const int n, const double x, gsl_sf_result * result); + double gsl_sf_expint_En(const int n, const double x); + + /* E_1_scaled(x) := exp(x) E_1(x) * * x != 0.0 *************** *** 72,77 **** --- 82,95 ---- int gsl_sf_expint_E2_scaled_e(const double x, gsl_sf_result * result); double gsl_sf_expint_E2_scaled(const double x); + /* E_n_scaled(x) := exp(x) E_n(x) + * + * x != 0.0 + * exceptions: GSL_EDOM, GSL_EOVRFLW, GSL_EUNDRFLW + */ + int gsl_sf_expint_En_scaled_e(const int n, const double x, gsl_sf_result * result); + double gsl_sf_expint_En_scaled(const int n, const double x); + /* Ei(x) := - PV Integrate[ Exp[-t]/t, {t,-x,Infinity}] * := PV Integrate[ Exp[t]/t, {t,-Infinity,x}] diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gsl_sf_fermi_dirac.h gsl-1.10/specfunc/gsl_sf_fermi_dirac.h *** gsl-1.9/specfunc/gsl_sf_fermi_dirac.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/gsl_sf_fermi_dirac.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gsl_sf_gamma.h gsl-1.10/specfunc/gsl_sf_gamma.h *** gsl-1.9/specfunc/gsl_sf_gamma.h 2007-01-31 17:46:31.000000000 +0000 --- gsl-1.10/specfunc/gsl_sf_gamma.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gsl_sf_gegenbauer.h gsl-1.10/specfunc/gsl_sf_gegenbauer.h *** gsl-1.9/specfunc/gsl_sf_gegenbauer.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/gsl_sf_gegenbauer.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gsl_sf_hyperg.h gsl-1.10/specfunc/gsl_sf_hyperg.h *** gsl-1.9/specfunc/gsl_sf_hyperg.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/gsl_sf_hyperg.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gsl_sf_laguerre.h gsl-1.10/specfunc/gsl_sf_laguerre.h *** gsl-1.9/specfunc/gsl_sf_laguerre.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/gsl_sf_laguerre.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gsl_sf_lambert.h gsl-1.10/specfunc/gsl_sf_lambert.h *** gsl-1.9/specfunc/gsl_sf_lambert.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/gsl_sf_lambert.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gsl_sf_legendre.h gsl-1.10/specfunc/gsl_sf_legendre.h *** gsl-1.9/specfunc/gsl_sf_legendre.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/gsl_sf_legendre.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gsl_sf_log.h gsl-1.10/specfunc/gsl_sf_log.h *** gsl-1.9/specfunc/gsl_sf_log.h 2007-01-26 14:29:04.000000000 +0000 --- gsl-1.10/specfunc/gsl_sf_log.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gsl_sf_mathieu.h gsl-1.10/specfunc/gsl_sf_mathieu.h *** gsl-1.9/specfunc/gsl_sf_mathieu.h 2007-02-13 13:34:45.000000000 +0000 --- gsl-1.10/specfunc/gsl_sf_mathieu.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gsl_sf_pow_int.h gsl-1.10/specfunc/gsl_sf_pow_int.h *** gsl-1.9/specfunc/gsl_sf_pow_int.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/gsl_sf_pow_int.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gsl_sf_psi.h gsl-1.10/specfunc/gsl_sf_psi.h *** gsl-1.9/specfunc/gsl_sf_psi.h 2006-08-23 14:23:24.000000000 +0100 --- gsl-1.10/specfunc/gsl_sf_psi.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gsl_sf_result.h gsl-1.10/specfunc/gsl_sf_result.h *** gsl-1.9/specfunc/gsl_sf_result.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/gsl_sf_result.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gsl_sf_synchrotron.h gsl-1.10/specfunc/gsl_sf_synchrotron.h *** gsl-1.9/specfunc/gsl_sf_synchrotron.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/gsl_sf_synchrotron.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gsl_sf_transport.h gsl-1.10/specfunc/gsl_sf_transport.h *** gsl-1.9/specfunc/gsl_sf_transport.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/gsl_sf_transport.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gsl_sf_trig.h gsl-1.10/specfunc/gsl_sf_trig.h *** gsl-1.9/specfunc/gsl_sf_trig.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/gsl_sf_trig.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/gsl_sf_zeta.h gsl-1.10/specfunc/gsl_sf_zeta.h *** gsl-1.9/specfunc/gsl_sf_zeta.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/gsl_sf_zeta.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/hyperg_0F1.c gsl-1.10/specfunc/hyperg_0F1.c *** gsl-1.9/specfunc/hyperg_0F1.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/hyperg_0F1.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/hyperg_1F1.c gsl-1.10/specfunc/hyperg_1F1.c *** gsl-1.9/specfunc/hyperg_1F1.c 2007-01-23 16:56:25.000000000 +0000 --- gsl-1.10/specfunc/hyperg_1F1.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/hyperg_2F0.c gsl-1.10/specfunc/hyperg_2F0.c *** gsl-1.9/specfunc/hyperg_2F0.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/hyperg_2F0.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/hyperg_2F1.c gsl-1.10/specfunc/hyperg_2F1.c *** gsl-1.9/specfunc/hyperg_2F1.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/hyperg_2F1.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/hyperg.c gsl-1.10/specfunc/hyperg.c *** gsl-1.9/specfunc/hyperg.c 2007-01-23 16:56:25.000000000 +0000 --- gsl-1.10/specfunc/hyperg.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/hyperg.h gsl-1.10/specfunc/hyperg.h *** gsl-1.9/specfunc/hyperg.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/hyperg.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/hyperg_U.c gsl-1.10/specfunc/hyperg_U.c *** gsl-1.9/specfunc/hyperg_U.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/hyperg_U.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/laguerre.c gsl-1.10/specfunc/laguerre.c *** gsl-1.9/specfunc/laguerre.c 2007-01-19 21:37:33.000000000 +0000 --- gsl-1.10/specfunc/laguerre.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* specfunc/laguerre.c * * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,11 ---- /* specfunc/laguerre.c * + * Copyright (C) 2007 Brian Gough * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 285,291 **** else if(n > 1.0e+07 && x > 0.0 && a > -1.0 && x < 2.0*(a+1.0)+4.0*n) { return laguerre_large_n(n, a, x, result); } ! else if(a > 0.0 || (x > 0.0 && a < -n-1)) { gsl_sf_result lg2; int stat_lg2 = gsl_sf_laguerre_2_e(a, x, &lg2); double Lkm1 = 1.0 + a - x; --- 286,292 ---- else if(n > 1.0e+07 && x > 0.0 && a > -1.0 && x < 2.0*(a+1.0)+4.0*n) { return laguerre_large_n(n, a, x, result); } ! else if(a >= 0.0 || (x > 0.0 && a < -n-1)) { gsl_sf_result lg2; int stat_lg2 = gsl_sf_laguerre_2_e(a, x, &lg2); double Lkm1 = 1.0 + a - x; diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/lambert.c gsl-1.10/specfunc/lambert.c *** gsl-1.9/specfunc/lambert.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/lambert.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* specfunc/lambert.c * * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 Gerard Jungman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,11 ---- /* specfunc/lambert.c * + * Copyright (C) 2007 Brian Gough * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 Gerard Jungman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 59,65 **** w -= t; ! tol = GSL_DBL_EPSILON * GSL_MAX_DBL(fabs(w), 1.0/(fabs(p)*e)); if(fabs(t) < tol) { --- 60,66 ---- w -= t; ! tol = 10 * GSL_DBL_EPSILON * GSL_MAX_DBL(fabs(w), 1.0/(fabs(p)*e)); if(fabs(t) < tol) { diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/legendre_con.c gsl-1.10/specfunc/legendre_con.c *** gsl-1.9/specfunc/legendre_con.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/legendre_con.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/legendre.h gsl-1.10/specfunc/legendre.h *** gsl-1.9/specfunc/legendre.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/legendre.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/legendre_H3d.c gsl-1.10/specfunc/legendre_H3d.c *** gsl-1.9/specfunc/legendre_H3d.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/legendre_H3d.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/legendre_poly.c gsl-1.10/specfunc/legendre_poly.c *** gsl-1.9/specfunc/legendre_poly.c 2007-01-15 19:57:58.000000000 +0000 --- gsl-1.10/specfunc/legendre_poly.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/legendre_Qn.c gsl-1.10/specfunc/legendre_Qn.c *** gsl-1.9/specfunc/legendre_Qn.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/legendre_Qn.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/log.c gsl-1.10/specfunc/log.c *** gsl-1.9/specfunc/log.c 2007-02-17 14:14:49.000000000 +0000 --- gsl-1.10/specfunc/log.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/Makefile.in gsl-1.10/specfunc/Makefile.in *** gsl-1.9/specfunc/Makefile.in 2007-02-20 13:09:15.000000000 +0000 --- gsl-1.10/specfunc/Makefile.in 2007-09-13 16:41:47.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 82,98 **** ../block/libgslblock.la ../complex/libgslcomplex.la \ ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la \ ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslspecfunc_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslspecfunc_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 78,95 ---- ../block/libgslblock.la ../complex/libgslcomplex.la \ ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la \ ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslspecfunc_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslspecfunc_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 126,131 **** --- 123,129 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 133,139 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 131,136 ---- *************** *** 141,157 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 138,151 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 163,171 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 157,164 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 175,189 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 168,183 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 193,220 **** --- 187,225 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslspecfunc.la pkginclude_HEADERS = gsl_sf.h gsl_sf_airy.h gsl_sf_bessel.h gsl_sf_clausen.h gsl_sf_coulomb.h gsl_sf_coupling.h gsl_sf_dawson.h gsl_sf_debye.h gsl_sf_dilog.h gsl_sf_elementary.h gsl_sf_ellint.h gsl_sf_elljac.h gsl_sf_erf.h gsl_sf_exp.h gsl_sf_expint.h gsl_sf_fermi_dirac.h gsl_sf_gamma.h gsl_sf_gegenbauer.h gsl_sf_hyperg.h gsl_sf_laguerre.h gsl_sf_lambert.h gsl_sf_legendre.h gsl_sf_log.h gsl_sf_mathieu.h gsl_sf_pow_int.h gsl_sf_psi.h gsl_sf_result.h gsl_sf_synchrotron.h gsl_sf_transport.h gsl_sf_trig.h gsl_sf_zeta.h gsl_specfunc.h noinst_HEADERS = bessel_amp_phase.h bessel_olver.h bessel_temme.h bessel.h hyperg.h legendre.h eval.h chebyshev.h cheb_eval.c cheb_eval_mode.c check.h error.h *************** *** 266,272 **** rm -f "$${dir}/so_locations"; \ done libgslspecfunc.la: $(libgslspecfunc_la_OBJECTS) $(libgslspecfunc_la_DEPENDENCIES) ! $(LINK) $(libgslspecfunc_la_LDFLAGS) $(libgslspecfunc_la_OBJECTS) $(libgslspecfunc_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 271,277 ---- rm -f "$${dir}/so_locations"; \ done libgslspecfunc.la: $(libgslspecfunc_la_OBJECTS) $(libgslspecfunc_la_DEPENDENCIES) ! $(LINK) $(libgslspecfunc_la_OBJECTS) $(libgslspecfunc_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 276,282 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 281,287 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 298,310 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 303,311 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 369,377 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 370,378 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 380,386 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 381,387 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 392,398 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 393,399 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 442,463 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 443,463 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 475,481 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 475,481 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 509,515 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 509,515 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 523,534 **** --- 523,542 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 548,568 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 556,579 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/mathieu_angfunc.c gsl-1.10/specfunc/mathieu_angfunc.c *** gsl-1.9/specfunc/mathieu_angfunc.c 2007-02-15 09:26:24.000000000 +0000 --- gsl-1.10/specfunc/mathieu_angfunc.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/mathieu_charv.c gsl-1.10/specfunc/mathieu_charv.c *** gsl-1.9/specfunc/mathieu_charv.c 2007-02-20 11:11:51.000000000 +0000 --- gsl-1.10/specfunc/mathieu_charv.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/mathieu_coeff.c gsl-1.10/specfunc/mathieu_coeff.c *** gsl-1.9/specfunc/mathieu_coeff.c 2007-02-15 09:26:24.000000000 +0000 --- gsl-1.10/specfunc/mathieu_coeff.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/mathieu_radfunc.c gsl-1.10/specfunc/mathieu_radfunc.c *** gsl-1.9/specfunc/mathieu_radfunc.c 2007-02-15 09:26:24.000000000 +0000 --- gsl-1.10/specfunc/mathieu_radfunc.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/mathieu_workspace.c gsl-1.10/specfunc/mathieu_workspace.c *** gsl-1.9/specfunc/mathieu_workspace.c 2007-02-15 09:26:24.000000000 +0000 --- gsl-1.10/specfunc/mathieu_workspace.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/poch.c gsl-1.10/specfunc/poch.c *** gsl-1.9/specfunc/poch.c 2006-10-03 21:32:23.000000000 +0100 --- gsl-1.10/specfunc/poch.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/pow_int.c gsl-1.10/specfunc/pow_int.c *** gsl-1.9/specfunc/pow_int.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/pow_int.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/psi.c gsl-1.10/specfunc/psi.c *** gsl-1.9/specfunc/psi.c 2007-02-20 11:11:18.000000000 +0000 --- gsl-1.10/specfunc/psi.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* specfunc/psi.c * * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2004, 2005, 2006 Gerard Jungman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,11 ---- /* specfunc/psi.c * + * Copyright (C) 2007 Brian Gough * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2004, 2005, 2006 Gerard Jungman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 526,543 **** /* compute asymptotic at the large value z + n_recurse */ a = psi_complex_asymp(gsl_complex_add_real(z, n_recurse)); /* descend recursively, if necessary */ for(i = n_recurse; i >= 1; --i) { gsl_complex zn = gsl_complex_add_real(z, i - 1.0); gsl_complex zn_inverse = gsl_complex_inverse(zn); a = gsl_complex_sub(a, zn_inverse); } result_re->val = GSL_REAL(a); result_im->val = GSL_IMAG(a); ! result_re->err = 2.0 * (1.0 + n_recurse) * GSL_DBL_EPSILON * fabs(result_re->val); ! result_im->err = 2.0 * (1.0 + n_recurse) * GSL_DBL_EPSILON * fabs(result_im->val); return GSL_SUCCESS; } --- 527,552 ---- /* compute asymptotic at the large value z + n_recurse */ a = psi_complex_asymp(gsl_complex_add_real(z, n_recurse)); + result_re->err = 2.0 * GSL_DBL_EPSILON * fabs(GSL_REAL(a)); + result_im->err = 2.0 * GSL_DBL_EPSILON * fabs(GSL_IMAG(a)); + /* descend recursively, if necessary */ for(i = n_recurse; i >= 1; --i) { gsl_complex zn = gsl_complex_add_real(z, i - 1.0); gsl_complex zn_inverse = gsl_complex_inverse(zn); a = gsl_complex_sub(a, zn_inverse); + + /* accumulate the error, to catch cancellations */ + result_re->err += 2.0 * GSL_DBL_EPSILON * fabs(GSL_REAL(zn_inverse)); + result_im->err += 2.0 * GSL_DBL_EPSILON * fabs(GSL_IMAG(zn_inverse)); } result_re->val = GSL_REAL(a); result_im->val = GSL_IMAG(a); ! ! result_re->err += 2.0 * GSL_DBL_EPSILON * fabs(result_re->val); ! result_im->err += 2.0 * GSL_DBL_EPSILON * fabs(result_im->val); return GSL_SUCCESS; } diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/recurse.h gsl-1.10/specfunc/recurse.h *** gsl-1.9/specfunc/recurse.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/recurse.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/result.c gsl-1.10/specfunc/result.c *** gsl-1.9/specfunc/result.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/result.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/shint.c gsl-1.10/specfunc/shint.c *** gsl-1.9/specfunc/shint.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/shint.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/sinint.c gsl-1.10/specfunc/sinint.c *** gsl-1.9/specfunc/sinint.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/sinint.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/synchrotron.c gsl-1.10/specfunc/synchrotron.c *** gsl-1.9/specfunc/synchrotron.c 2006-01-21 18:49:15.000000000 +0000 --- gsl-1.10/specfunc/synchrotron.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/test_airy.c gsl-1.10/specfunc/test_airy.c *** gsl-1.9/specfunc/test_airy.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/test_airy.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/test_bessel.c gsl-1.10/specfunc/test_bessel.c *** gsl-1.9/specfunc/test_bessel.c 2007-01-15 19:37:53.000000000 +0000 --- gsl-1.10/specfunc/test_bessel.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/test_coulomb.c gsl-1.10/specfunc/test_coulomb.c *** gsl-1.9/specfunc/test_coulomb.c 2006-02-23 12:30:13.000000000 +0000 --- gsl-1.10/specfunc/test_coulomb.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/test_dilog.c gsl-1.10/specfunc/test_dilog.c *** gsl-1.9/specfunc/test_dilog.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/specfunc/test_dilog.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/test_gamma.c gsl-1.10/specfunc/test_gamma.c *** gsl-1.9/specfunc/test_gamma.c 2007-01-31 17:46:31.000000000 +0000 --- gsl-1.10/specfunc/test_gamma.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* specfunc/test_gamma.c * * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,11 ---- /* specfunc/test_gamma.c * + * Copyright (C) 2007 Brian Gough * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 304,316 **** TEST_SF(s, gsl_sf_beta_e, (2.5, -1.1, &r), 14.555179906328753255202, TEST_TOL2, GSL_SUCCESS); TEST_SF(s, gsl_sf_beta_e, (-0.25, -0.1, &r), -13.238937960945229110, TEST_TOL2, GSL_SUCCESS); TEST_SF(s, gsl_sf_beta_e, (-1.25, -0.1, &r), -14.298052997820847439, TEST_TOL2, GSL_SUCCESS); ! TEST_SF(s, gsl_sf_beta_e, (-100.1, -99.1, &r), -1.005181917797644630375787297e60, TEST_TOL2, GSL_SUCCESS); TEST_SF(s, gsl_sf_beta_e, (-100.1, 99.3, &r), 0.0004474258199579694011200969001, TEST_TOL2, GSL_SUCCESS); TEST_SF(s, gsl_sf_beta_e, (100.1, -99.3, &r), 1.328660939628876472028853747, TEST_TOL2, GSL_SUCCESS); ! TEST_SF(s, gsl_sf_beta_e, (-100.1, 1.2, &r), 0.00365530364287960795444856281, TEST_TOL2, GSL_SUCCESS); TEST_SF(s, gsl_sf_beta_e, (100.1, -1.2, &r), 1203.895236907821059270698160, TEST_TOL2, GSL_SUCCESS); TEST_SF(s, gsl_sf_beta_e, (-100.1, -1.2, &r), -3236.073671884748847700283841, TEST_TOL2, GSL_SUCCESS); ! TEST_SF(s, gsl_sf_beta_e, (-100.001, 0.0099, &r), -853.946649365611147996495177, TEST_TOL2, GSL_SUCCESS); /* Other test cases */ --- 305,317 ---- TEST_SF(s, gsl_sf_beta_e, (2.5, -1.1, &r), 14.555179906328753255202, TEST_TOL2, GSL_SUCCESS); TEST_SF(s, gsl_sf_beta_e, (-0.25, -0.1, &r), -13.238937960945229110, TEST_TOL2, GSL_SUCCESS); TEST_SF(s, gsl_sf_beta_e, (-1.25, -0.1, &r), -14.298052997820847439, TEST_TOL2, GSL_SUCCESS); ! TEST_SF(s, gsl_sf_beta_e, (-100.1, -99.1, &r), -1.005181917797644630375787297e60, TEST_TOL3, GSL_SUCCESS); TEST_SF(s, gsl_sf_beta_e, (-100.1, 99.3, &r), 0.0004474258199579694011200969001, TEST_TOL2, GSL_SUCCESS); TEST_SF(s, gsl_sf_beta_e, (100.1, -99.3, &r), 1.328660939628876472028853747, TEST_TOL2, GSL_SUCCESS); ! TEST_SF(s, gsl_sf_beta_e, (-100.1, 1.2, &r), 0.00365530364287960795444856281, TEST_TOL3, GSL_SUCCESS); TEST_SF(s, gsl_sf_beta_e, (100.1, -1.2, &r), 1203.895236907821059270698160, TEST_TOL2, GSL_SUCCESS); TEST_SF(s, gsl_sf_beta_e, (-100.1, -1.2, &r), -3236.073671884748847700283841, TEST_TOL2, GSL_SUCCESS); ! TEST_SF(s, gsl_sf_beta_e, (-100.001, 0.0099, &r), -853.946649365611147996495177, TEST_TOL4, GSL_SUCCESS); /* Other test cases */ *************** *** 339,343 **** --- 340,359 ---- TEST_SF(s, gsl_sf_beta_inc_e, (5000.0, 5000.0, 0.6, &r), 1.0, TEST_TOL2, GSL_SUCCESS); TEST_SF(s, gsl_sf_beta_inc_e, (5000.0, 2000.0, 0.6, &r), 8.445388773903332659e-89, TEST_TOL5, GSL_SUCCESS); + TEST_SF(s, gsl_sf_beta_inc_e, (-0.1, -0.1, 1.0, &r), 1.0, TEST_TOL2, GSL_SUCCESS); + TEST_SF(s, gsl_sf_beta_inc_e, (-0.1, -0.2, 1.0, &r), 1.0, TEST_TOL2, GSL_SUCCESS); + TEST_SF(s, gsl_sf_beta_inc_e, (-0.2, -0.1, 1.0, &r), 1.0, TEST_TOL2, GSL_SUCCESS); + + TEST_SF(s, gsl_sf_beta_inc_e, (-0.1, -0.2, 0.5, &r), 0.675252001958389971991335, TEST_TOL2, GSL_SUCCESS); + TEST_SF(s, gsl_sf_beta_inc_e, (-0.2, -0.1, 0.5, &r), 0.324747998041610028008665, TEST_TOL2, GSL_SUCCESS); + + TEST_SF(s, gsl_sf_beta_inc_e, (-0.1, -0.1, 0.0, &r), 0.0, TEST_TOL2, GSL_SUCCESS); + TEST_SF(s, gsl_sf_beta_inc_e, (-0.1, -0.2, 0.0, &r), 0.0, TEST_TOL2, GSL_SUCCESS); + TEST_SF(s, gsl_sf_beta_inc_e, (-0.2, -0.1, 0.0, &r), 0.0, TEST_TOL2, GSL_SUCCESS); + + TEST_SF(s, gsl_sf_beta_inc_e, (-0.1, -0.2, 0.3, &r), 0.7469186777964287252, TEST_TOL2, GSL_SUCCESS); + TEST_SF(s, gsl_sf_beta_inc_e, (-0.2, -0.1, 0.3, &r), 0.3995299653262016818, TEST_TOL2, GSL_SUCCESS); + + return s; } diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/test_hyperg.c gsl-1.10/specfunc/test_hyperg.c *** gsl-1.9/specfunc/test_hyperg.c 2007-01-23 16:56:25.000000000 +0000 --- gsl-1.10/specfunc/test_hyperg.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* specfunc/test_hyperg.c * * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2004 Gerard Jungman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,11 ---- /* specfunc/test_hyperg.c * + * Copyright (C) 2007 Brian Gough * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2004 Gerard Jungman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 282,288 **** TEST_SF(s, gsl_sf_hyperg_1F1_e, (-1.1, 1000000.5, 1001000.5, &r), -5.30066488697455e-04, TEST_TOL3, GSL_SUCCESS); ! TEST_SF(s, gsl_sf_hyperg_1F1_e, (1.5, 1000000.5, 0.8e6 + 0.5, &r), 11.18001288977894650469927615, TEST_TOL3, GSL_SUCCESS); /* U for integer parameters */ --- 283,289 ---- TEST_SF(s, gsl_sf_hyperg_1F1_e, (-1.1, 1000000.5, 1001000.5, &r), -5.30066488697455e-04, TEST_TOL3, GSL_SUCCESS); ! TEST_SF(s, gsl_sf_hyperg_1F1_e, (1.5, 1000000.5, 0.8e6 + 0.5, &r), 11.18001288977894650469927615, TEST_TOL4, GSL_SUCCESS); /* U for integer parameters */ diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/test_legendre.c gsl-1.10/specfunc/test_legendre.c *** gsl-1.9/specfunc/test_legendre.c 2007-01-29 12:51:55.000000000 +0000 --- gsl-1.10/specfunc/test_legendre.c 2007-09-13 14:40:40.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 245,251 **** --- 245,254 ---- TEST_SF(s, gsl_sf_legendre_sphPlm_e, (200, 1, -0.5, &r), 0.3302975570099492931418227583, TEST_TOL2, GSL_SUCCESS); TEST_SF(s, gsl_sf_legendre_sphPlm_e, (140,135,1,&r), 0.0, TEST_TOL2, GSL_SUCCESS); + + #ifdef EXTENDED TEST_SF(s, gsl_sf_legendre_sphPlm_e, (140,135,0.99998689456491752,&r), -6.54265253269093276310395668335e-305, TEST_TOL6, GSL_SUCCESS); + #endif sa = 0; gsl_sf_legendre_sphPlm_array(100, 5, 0.5, L); diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/test_mathieu.c gsl-1.10/specfunc/test_mathieu.c *** gsl-1.9/specfunc/test_mathieu.c 2007-02-12 13:15:43.000000000 +0000 --- gsl-1.10/specfunc/test_mathieu.c 2007-08-31 22:33:36.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 26,32 **** #define NVAL 100 static double c[NVAL]; - static double s[NVAL]; int test_mathieu(void) { --- 26,31 ---- diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/test_sf.c gsl-1.10/specfunc/test_sf.c *** gsl-1.9/specfunc/test_sf.c 2007-02-09 20:39:01.000000000 +0000 --- gsl-1.10/specfunc/test_sf.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* specfunc/test_sf.c * * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2004 Gerard Jungman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,11 ---- /* specfunc/test_sf.c * + * Copyright (C) 2007 Brian Gough * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2004 Gerard Jungman * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 516,522 **** TEST_SF(s, gsl_sf_ellint_E_e, (M_PI/2.0, 0.50, mode, &r), 1.46746220933942715545980, TEST_TOL0, GSL_SUCCESS); TEST_SF(s, gsl_sf_ellint_E_e, (M_PI/2.0, 0.01, mode, &r), 1.57075705615038528733708, TEST_TOL0, GSL_SUCCESS); ! TEST_SF(s, gsl_sf_ellint_E_e, (2*M_PI/3.0, 0.99, mode, &r), 1.18646969601981364833972, TEST_TOL0, GSL_SUCCESS); TEST_SF(s, gsl_sf_ellint_E_e, (2*M_PI/3.0, 0.50, mode, &r), 1.92736886353438228163734, TEST_TOL0, GSL_SUCCESS); TEST_SF(s, gsl_sf_ellint_E_e, (2*M_PI/3.0, 0.01, mode, &r), 2.09433191591182246425715, TEST_TOL0, GSL_SUCCESS); --- 517,523 ---- TEST_SF(s, gsl_sf_ellint_E_e, (M_PI/2.0, 0.50, mode, &r), 1.46746220933942715545980, TEST_TOL0, GSL_SUCCESS); TEST_SF(s, gsl_sf_ellint_E_e, (M_PI/2.0, 0.01, mode, &r), 1.57075705615038528733708, TEST_TOL0, GSL_SUCCESS); ! TEST_SF(s, gsl_sf_ellint_E_e, (2*M_PI/3.0, 0.99, mode, &r), 1.18646969601981364833972, TEST_TOL1, GSL_SUCCESS); TEST_SF(s, gsl_sf_ellint_E_e, (2*M_PI/3.0, 0.50, mode, &r), 1.92736886353438228163734, TEST_TOL0, GSL_SUCCESS); TEST_SF(s, gsl_sf_ellint_E_e, (2*M_PI/3.0, 0.01, mode, &r), 2.09433191591182246425715, TEST_TOL0, GSL_SUCCESS); *************** *** 532,538 **** TEST_SF(s, gsl_sf_ellint_E_e, (3*M_PI/2.0, 0.50, mode, &r), 4.40238662801828146637939, TEST_TOL0, GSL_SUCCESS); TEST_SF(s, gsl_sf_ellint_E_e, (3*M_PI/2.0, 0.01, mode, &r), 4.71227116845115586201123, TEST_TOL0, GSL_SUCCESS); ! TEST_SF(s, gsl_sf_ellint_E_e, (5*M_PI/3, 0.99, mode, &r), 3.24342131407742165030750, TEST_TOL0, GSL_SUCCESS); TEST_SF(s, gsl_sf_ellint_E_e, (5*M_PI/3, 0.50, mode, &r), 4.86229328221323659255693, TEST_TOL0, GSL_SUCCESS); TEST_SF(s, gsl_sf_ellint_E_e, (5*M_PI/3, 0.01, mode, &r), 5.23584602821259303893130, TEST_TOL0, GSL_SUCCESS); --- 533,539 ---- TEST_SF(s, gsl_sf_ellint_E_e, (3*M_PI/2.0, 0.50, mode, &r), 4.40238662801828146637939, TEST_TOL0, GSL_SUCCESS); TEST_SF(s, gsl_sf_ellint_E_e, (3*M_PI/2.0, 0.01, mode, &r), 4.71227116845115586201123, TEST_TOL0, GSL_SUCCESS); ! TEST_SF(s, gsl_sf_ellint_E_e, (5*M_PI/3, 0.99, mode, &r), 3.24342131407742165030750, TEST_TOL1, GSL_SUCCESS); TEST_SF(s, gsl_sf_ellint_E_e, (5*M_PI/3, 0.50, mode, &r), 4.86229328221323659255693, TEST_TOL0, GSL_SUCCESS); TEST_SF(s, gsl_sf_ellint_E_e, (5*M_PI/3, 0.01, mode, &r), 5.23584602821259303893130, TEST_TOL0, GSL_SUCCESS); *************** *** 550,556 **** TEST_SF(s, gsl_sf_ellint_E_e, (-M_PI/2.0, 0.50, mode, &r), -1.46746220933942715545980, TEST_TOL0, GSL_SUCCESS); TEST_SF(s, gsl_sf_ellint_E_e, (-M_PI/2.0, 0.01, mode, &r), -1.57075705615038528733708, TEST_TOL0, GSL_SUCCESS); ! TEST_SF(s, gsl_sf_ellint_E_e, (-2*M_PI/3.0, 0.99, mode, &r), -1.18646969601981364833972, TEST_TOL0, GSL_SUCCESS); TEST_SF(s, gsl_sf_ellint_E_e, (-2*M_PI/3.0, 0.50, mode, &r), -1.92736886353438228163734, TEST_TOL0, GSL_SUCCESS); TEST_SF(s, gsl_sf_ellint_E_e, (-2*M_PI/3.0, 0.01, mode, &r), -2.09433191591182246425715, TEST_TOL0, GSL_SUCCESS); --- 551,557 ---- TEST_SF(s, gsl_sf_ellint_E_e, (-M_PI/2.0, 0.50, mode, &r), -1.46746220933942715545980, TEST_TOL0, GSL_SUCCESS); TEST_SF(s, gsl_sf_ellint_E_e, (-M_PI/2.0, 0.01, mode, &r), -1.57075705615038528733708, TEST_TOL0, GSL_SUCCESS); ! TEST_SF(s, gsl_sf_ellint_E_e, (-2*M_PI/3.0, 0.99, mode, &r), -1.18646969601981364833972, TEST_TOL1, GSL_SUCCESS); TEST_SF(s, gsl_sf_ellint_E_e, (-2*M_PI/3.0, 0.50, mode, &r), -1.92736886353438228163734, TEST_TOL0, GSL_SUCCESS); TEST_SF(s, gsl_sf_ellint_E_e, (-2*M_PI/3.0, 0.01, mode, &r), -2.09433191591182246425715, TEST_TOL0, GSL_SUCCESS); *************** *** 566,572 **** TEST_SF(s, gsl_sf_ellint_E_e, (-3*M_PI/2.0, 0.50, mode, &r), -4.40238662801828146637939, TEST_TOL0, GSL_SUCCESS); TEST_SF(s, gsl_sf_ellint_E_e, (-3*M_PI/2.0, 0.01, mode, &r), -4.71227116845115586201123, TEST_TOL0, GSL_SUCCESS); ! TEST_SF(s, gsl_sf_ellint_E_e, (-5*M_PI/3, 0.99, mode, &r), -3.24342131407742165030750, TEST_TOL0, GSL_SUCCESS); TEST_SF(s, gsl_sf_ellint_E_e, (-5*M_PI/3, 0.50, mode, &r), -4.86229328221323659255693, TEST_TOL0, GSL_SUCCESS); TEST_SF(s, gsl_sf_ellint_E_e, (-5*M_PI/3, 0.01, mode, &r), -5.23584602821259303893130, TEST_TOL0, GSL_SUCCESS); --- 567,573 ---- TEST_SF(s, gsl_sf_ellint_E_e, (-3*M_PI/2.0, 0.50, mode, &r), -4.40238662801828146637939, TEST_TOL0, GSL_SUCCESS); TEST_SF(s, gsl_sf_ellint_E_e, (-3*M_PI/2.0, 0.01, mode, &r), -4.71227116845115586201123, TEST_TOL0, GSL_SUCCESS); ! TEST_SF(s, gsl_sf_ellint_E_e, (-5*M_PI/3, 0.99, mode, &r), -3.24342131407742165030750, TEST_TOL1, GSL_SUCCESS); TEST_SF(s, gsl_sf_ellint_E_e, (-5*M_PI/3, 0.50, mode, &r), -4.86229328221323659255693, TEST_TOL0, GSL_SUCCESS); TEST_SF(s, gsl_sf_ellint_E_e, (-5*M_PI/3, 0.01, mode, &r), -5.23584602821259303893130, TEST_TOL0, GSL_SUCCESS); *************** *** 1019,1024 **** --- 1020,1066 ---- TEST_SF(s, gsl_sf_expint_E2_e, (50.0, &r), 3.711783318868827367e-24, TEST_TOL2, GSL_SUCCESS); TEST_SF(s, gsl_sf_expint_E2_e, (300.0, &r), 1.7047391998483433998e-133, TEST_TOL2, GSL_SUCCESS); + /* Tests for E_n(x) */ + + TEST_SF(s, gsl_sf_expint_En_e, (1,-1.0, &r), -1.8951178163559367555, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_e, (1,1.0e-10, &r), 22.448635265138923980, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_e, (1,1.0e-05, &r), 10.935719800043695615, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_e, (1,0.1, &r), 1.82292395841939066610, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_e, (1,1.0, &r), 0.21938393439552027368, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_e, (1,10.0, &r), 4.156968929685324277e-06, TEST_TOL1, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_e, (1,50.0, &r), 3.783264029550459019e-24, TEST_TOL2, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_e, (1,300.0, &r), 1.710384276804510115e-133, TEST_TOL2, GSL_SUCCESS); + + TEST_SF(s, gsl_sf_expint_En_e, (2,-1.0, &r), 0.8231640121031084799, TEST_TOL1, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_e, (2,0.0, &r), 1.0, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_e, (2,1.0/4294967296.0, &r), 0.9999999947372139168, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_e, (2,1.0/65536.0, &r), 0.9998243233207178845, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_e, (2,0.1, &r), 0.7225450221940205066, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_e, (2,1.0, &r), 0.14849550677592204792, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_e, (2,10.0, &r), 3.830240465631608762e-06, TEST_TOL1, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_e, (2,50.0, &r), 3.711783318868827367e-24, TEST_TOL2, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_e, (2,300.0, &r), 1.7047391998483433998e-133, TEST_TOL2, GSL_SUCCESS); + + TEST_SF(s, gsl_sf_expint_En_e, (3,0.0, &r), 0.5, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_e, (3,1.0/4294967296.0, &r), 0.499999999767169356972, TEST_TOL1, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_e, (3,1.0/65536.0, &r), 0.4999847426094515610, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_e, (3,0.1, &r), 0.4162914579082787612543, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_e, (3,1.0, &r), 0.10969196719776013683858, TEST_TOL1, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_e, (3,10.0, &r),0.000003548762553084381959981, TEST_TOL1, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_e, (3,50.0, &r), 3.6429094264752049812e-24, TEST_TOL2, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_e, (3,300.0, &r),1.699131143349179084e-133, TEST_TOL2, GSL_SUCCESS); + + TEST_SF(s, gsl_sf_expint_En_e, (10,0.0, &r), 0.111111111111111111, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_e, (10,1.0/4294967296.0, &r), 0.111111111082007280658, TEST_TOL2, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_e, (10,1.0/65536.0, &r), 0.11110920377910896018606, TEST_TOL1, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_e, (10,0.1, &r), 0.099298432000896813567905, TEST_TOL1, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_e, (10,1.0, &r), 0.036393994031416401634164534, TEST_TOL1, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_e, (10,10.0, &r), 0.00000232530265702821081778968, TEST_TOL1, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_e, (10,50.0, &r), 3.223296586749110919572e-24, TEST_TOL2, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_e, (10,300.0, &r), 1.6608815083360041367294736e-133, TEST_TOL2, GSL_SUCCESS); + + /* Tests for Ei(x) */ + TEST_SF(s, gsl_sf_expint_Ei_e, (-1.0, &r), -0.21938393439552027368, TEST_TOL0, GSL_SUCCESS); TEST_SF(s, gsl_sf_expint_Ei_e, (1.0/4294967296.0, &r), -21.603494112783886397, TEST_TOL0, GSL_SUCCESS); TEST_SF(s, gsl_sf_expint_Ei_e, (1.0, &r), 1.8951178163559367555, TEST_TOL0, GSL_SUCCESS); *************** *** 1052,1057 **** --- 1094,1150 ---- TEST_SF(s, gsl_sf_expint_E2_scaled_e, (1000.0, &r), 0.00099800597611928500004, TEST_TOL0, GSL_SUCCESS); TEST_SF(s, gsl_sf_expint_E2_scaled_e, (10000.0, &r), 0.000099980005997601199281, TEST_TOL0, GSL_SUCCESS); + /* Tests for E_n(x) */ + + + TEST_SF(s, gsl_sf_expint_En_scaled_e, (1,-10000.0, &r), -0.00010001000200060024012, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (1,-1000.0, &r), -0.0010010020060241207251, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (1,-10.0, &r), -0.11314702047341077803, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (1,-1.0, &r), -0.69717488323506606877, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (1,1.0e-10, &r), 22.448635267383787506, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (1,1.0e-05, &r), 10.935829157788483865, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (1,0.1, &r), 2.0146425447084516791, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (1,1.0, &r), 0.59634736232319407434, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (1,10.0, &r), 0.091563333939788081876, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (1,50.0, &r), 0.019615109930114870365, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (1,300.0, &r), 0.0033222955652707070644, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (1,1000.0, &r), 0.00099900199402388071500, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (1,10000.0, &r), 0.000099990001999400239880, TEST_TOL0, GSL_SUCCESS); + + TEST_SF(s, gsl_sf_expint_En_scaled_e, (2,-10000.0, &r), -0.00010002000600240120072, TEST_TOL3, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (2,-1000.0, &r), -0.0010020060241207250807, TEST_TOL3, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (2,-10.0, &r), -0.13147020473410778034, TEST_TOL1, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (2,-1.0, &r), 0.30282511676493393123, TEST_TOL1, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (2,0.0, &r), 1.0, TEST_TOL1, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (2,1.0/4294967296.0, &r), 0.99999999497004455927, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (2,1.0/65536.0, &r), 0.99983957954556245453, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (2,0.1, &r), 0.79853574552915483209, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (2,1.0, &r), 0.40365263767680592566, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (2,10.0, &r), 0.084366660602119181239, TEST_TOL1, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (2,50.0, &r), 0.019244503494256481735, TEST_TOL2, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (2,300.0, &r), 0.0033113304187878806691, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (2,1000.0, &r), 0.00099800597611928500004, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (2,10000.0, &r), 0.000099980005997601199281, TEST_TOL0, GSL_SUCCESS); + + TEST_SF(s, gsl_sf_expint_En_scaled_e, (3,0.0, &r), 0.5, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (3,1.0/4294967296.0, &r), 0.4999999998835846787586, TEST_TOL1, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (3,1.0/65536.0, &r), 0.4999923718293796877864492, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (3,0.1, &r), 0.4600732127235422583955, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (3,1.0, &r), 0.298173681161597037170539, TEST_TOL1, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (3,10.0, &r), 0.07816669698940409380349, TEST_TOL1, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (3,50.0, &r), 0.0188874126435879566345, TEST_TOL2, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (3,300.0, &r), 0.00330043718181789963028657675, TEST_TOL2, GSL_SUCCESS); + + TEST_SF(s, gsl_sf_expint_En_scaled_e, (10,0.0, &r), 0.111111111111111111, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (10,1.0/4294967296.0, &r), 0.11111111110787735217158, TEST_TOL2, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (10,1.0/65536.0, &r), 0.1111108991839472074435, TEST_TOL1, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (10,0.1, &r), 0.1097417392579033988025, TEST_TOL1, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (10,1.0, &r), 0.09892913264064615521915, TEST_TOL1, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (10,10.0, &r), 0.0512181994376050593314159875, TEST_TOL1, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (10,50.0, &r), 0.0167118436335939556034579, TEST_TOL2, GSL_SUCCESS); + TEST_SF(s, gsl_sf_expint_En_scaled_e, (10,300.0, &r), 0.0032261400811599644878615, TEST_TOL2, GSL_SUCCESS); + + TEST_SF(s, gsl_sf_expint_Ei_scaled_e, (-1000.0, &r), -0.00099900199402388071500, TEST_TOL0, GSL_SUCCESS); TEST_SF(s, gsl_sf_expint_Ei_scaled_e, (-1.0, &r), -0.59634736232319407434, TEST_TOL0, GSL_SUCCESS); TEST_SF(s, gsl_sf_expint_Ei_scaled_e, (1.0/4294967296.0, &r), -21.603494107753930958, TEST_TOL0, GSL_SUCCESS); *************** *** 1700,1708 **** TEST_SF(s, gsl_sf_laguerre_n_e, (1e5, 2.5, 2.5, &r), -0.41491680394598644969113795e5, TEST_TOL4, GSL_SUCCESS); TEST_SF(s, gsl_sf_laguerre_n_e, (1e5+1, 2.5, 2.5, &r), -0.41629446949552321027514888e5, TEST_TOL4, GSL_SUCCESS); TEST_SF(s, gsl_sf_laguerre_n_e, (1e6+1, 2.5, 2.5, &r), -0.48017961545391273151977118e6, TEST_TOL4, GSL_SUCCESS); ! TEST_SF(s, gsl_sf_laguerre_n_e, (5e6+1, 2.5, 2.5, &r), -0.15174037401611122446089494e7, TEST_TOL4, GSL_SUCCESS); ! TEST_SF(s, gsl_sf_laguerre_n_e, (8e6+1, 2.5, 2.5, &r), 0.63251509472091810994286362e6, TEST_TOL6, GSL_SUCCESS); ! TEST_SF(s, gsl_sf_laguerre_n_e, (1e7+1, 2.5, 2.5, &r), 0.15299484685632983178033887e7, TEST_TOL6, GSL_SUCCESS); TEST_SF(s, gsl_sf_laguerre_n_e, (1e8+1, 2.5, 2.5, &r), 0.23645341644922756725290777e8, TEST_SNGL, GSL_SUCCESS); TEST_SF(s, gsl_sf_laguerre_n_e, (1e9+1, 2.5, 2.5, &r), -0.17731002248958790286185878e8, 100*TEST_SNGL, GSL_SUCCESS); --- 1793,1801 ---- TEST_SF(s, gsl_sf_laguerre_n_e, (1e5, 2.5, 2.5, &r), -0.41491680394598644969113795e5, TEST_TOL4, GSL_SUCCESS); TEST_SF(s, gsl_sf_laguerre_n_e, (1e5+1, 2.5, 2.5, &r), -0.41629446949552321027514888e5, TEST_TOL4, GSL_SUCCESS); TEST_SF(s, gsl_sf_laguerre_n_e, (1e6+1, 2.5, 2.5, &r), -0.48017961545391273151977118e6, TEST_TOL4, GSL_SUCCESS); ! TEST_SF(s, gsl_sf_laguerre_n_e, (5e6+1, 2.5, 2.5, &r), -0.15174037401611122446089494e7, TEST_TOL6, GSL_SUCCESS); ! TEST_SF(s, gsl_sf_laguerre_n_e, (8e6+1, 2.5, 2.5, &r), 0.63251509472091810994286362e6, TEST_SNGL, GSL_SUCCESS); ! TEST_SF(s, gsl_sf_laguerre_n_e, (1e7+1, 2.5, 2.5, &r), 0.15299484685632983178033887e7, TEST_SNGL, GSL_SUCCESS); TEST_SF(s, gsl_sf_laguerre_n_e, (1e8+1, 2.5, 2.5, &r), 0.23645341644922756725290777e8, TEST_SNGL, GSL_SUCCESS); TEST_SF(s, gsl_sf_laguerre_n_e, (1e9+1, 2.5, 2.5, &r), -0.17731002248958790286185878e8, 100*TEST_SNGL, GSL_SUCCESS); *************** *** 1735,1740 **** --- 1828,1840 ---- TEST_SF(s, gsl_sf_laguerre_n_e, (100, -50.0, 10.0, &r), 4.504712811317745591e-21, TEST_SQRT_TOL0, GSL_SUCCESS); TEST_SF(s, gsl_sf_laguerre_n_e, (100, -50.0, -10.0, &r), 1.475165520610679937e-11, TEST_TOL1, GSL_SUCCESS); + /* test cases for Ed Smith-Rowland */ + + TEST_SF(s, gsl_sf_laguerre_n_e, (100, 0.0, 0.5, &r), 0.18682260367692278801, TEST_TOL2, GSL_SUCCESS); + TEST_SF(s, gsl_sf_laguerre_n_e, (100, 0.0, 10.5, &r), 9.1796907354050059874, TEST_TOL2, GSL_SUCCESS); + TEST_SF(s, gsl_sf_laguerre_n_e, (100, 0.0, -10.5, &r), 5.6329215744170606488e24, TEST_TOL2, GSL_SUCCESS); + TEST_SF(s, gsl_sf_laguerre_n_e, (100, 0.0, 100.5, &r), -3.9844782875811907525e20, TEST_TOL2, GSL_SUCCESS); + TEST_SF(s, gsl_sf_laguerre_n_e, (100, 0.0, 150, &r), -1.4463204337261709595e31, TEST_TOL2, GSL_SUCCESS); return s; } *************** *** 1754,1759 **** --- 1854,1864 ---- TEST_SF(s, gsl_sf_lambert_W0_e, (1.0e+12, &r), 24.43500440493491313826305, TEST_TOL0, GSL_SUCCESS); TEST_SF(s, gsl_sf_lambert_W0_e, (1.0e+308, &r), 702.641362034106812081125, TEST_TOL0, GSL_SUCCESS); + /* Test case from Katrin Wolff fails under + double-precision */ + + TEST_SF(s, gsl_sf_lambert_W0_e, (1.6849341956993852953416990, &r), 0.775706963944252869680440, TEST_TOL0, GSL_SUCCESS); + TEST_SF(s, gsl_sf_lambert_W0_e, (-1.0/M_E - GSL_DBL_EPSILON, &r), -1.0, TEST_TOL0, GSL_EDOM); TEST_SF(s, gsl_sf_lambert_W0_e, (-1.0/M_E + 1.0/(1024.0*1024.0*1024.0), &r), -0.999928845560308370714970, TEST_TOL0, GSL_SUCCESS); TEST_SF(s, gsl_sf_lambert_W0_e, (-1.0/M_E + 1.0/(1024.0*1024.0), &r), -0.997724730359774141620354, TEST_TOL0, GSL_SUCCESS); *************** *** 1980,1991 **** 1.49947549076817824, TEST_TOL0, GSL_SUCCESS); ! gsl_sf_complex_psi_e(1.5, 0.0, &r1, &r2); ! TEST_SF_VAL(s, 0.0364899739785765206, +0.0, r1.val, TEST_TOL0); TEST_SF_2(s, gsl_sf_complex_psi_e, (1.0, 5.0, &r1, &r2), ! 1.612784844615747, TEST_TOL0, ! 1.470796326794968, TEST_TOL0, GSL_SUCCESS); TEST_SF_2(s, gsl_sf_complex_psi_e, (-1.5, 5.0, &r1, &r2), --- 2085,2098 ---- 1.49947549076817824, TEST_TOL0, GSL_SUCCESS); ! TEST_SF_2(s, gsl_sf_complex_psi_e, (1.5, 0.0, &r1, &r2), ! 0.0364899739785765206, TEST_TOL2, ! 0.0, TEST_TOL1, ! GSL_SUCCESS); TEST_SF_2(s, gsl_sf_complex_psi_e, (1.0, 5.0, &r1, &r2), ! 1.612784844615747, TEST_TOL1, ! 1.470796326794968, TEST_TOL1, GSL_SUCCESS); TEST_SF_2(s, gsl_sf_complex_psi_e, (-1.5, 5.0, &r1, &r2), *************** *** 2193,2199 **** TEST_SF_THETA(s, gsl_sf_angle_restrict_pos_e, (1e12), 5.625560548042800009446, TEST_SNGL); TEST_SF_THETA(s, gsl_sf_angle_restrict_pos_e, (-1e9), 5.7057898836782013075, TEST_TOL1); ! TEST_SF_THETA(s, gsl_sf_angle_restrict_pos_e, (-1e12), 0.6576247591367864674792517289, TEST_SNGL); #ifdef EXTENDED TEST_SF_THETA(s, gsl_sf_angle_restrict_pos_e, (1e15), 2.1096981170701125979, TEST_TOL1); --- 2300,2306 ---- TEST_SF_THETA(s, gsl_sf_angle_restrict_pos_e, (1e12), 5.625560548042800009446, TEST_SNGL); TEST_SF_THETA(s, gsl_sf_angle_restrict_pos_e, (-1e9), 5.7057898836782013075, TEST_TOL1); ! TEST_SF_THETA(s, gsl_sf_angle_restrict_pos_e, (-1e12), 0.6576247591367864674792517289, 100*TEST_SNGL); #ifdef EXTENDED TEST_SF_THETA(s, gsl_sf_angle_restrict_pos_e, (1e15), 2.1096981170701125979, TEST_TOL1); *************** *** 2207,2213 **** TEST_SF(s, gsl_sf_angle_restrict_pos_err_e, (1e12, &r), 5.625560548042800009446, TEST_SNGL, GSL_SUCCESS); TEST_SF(s, gsl_sf_angle_restrict_pos_err_e, (-1e9, &r), 5.7057898836782013075, TEST_TOL1, GSL_SUCCESS); ! TEST_SF(s, gsl_sf_angle_restrict_pos_err_e, (-1e12, &r), 0.6576247591367864674792517289, TEST_SNGL, GSL_SUCCESS); TEST_SF (s, gsl_sf_angle_restrict_pos_err_e, (1e15, &r), GSL_NAN, TEST_TOL1, GSL_ELOSS); TEST_SF (s, gsl_sf_angle_restrict_pos_err_e, (-1e15, &r), GSL_NAN, TEST_TOL1, GSL_ELOSS); --- 2314,2320 ---- TEST_SF(s, gsl_sf_angle_restrict_pos_err_e, (1e12, &r), 5.625560548042800009446, TEST_SNGL, GSL_SUCCESS); TEST_SF(s, gsl_sf_angle_restrict_pos_err_e, (-1e9, &r), 5.7057898836782013075, TEST_TOL1, GSL_SUCCESS); ! TEST_SF(s, gsl_sf_angle_restrict_pos_err_e, (-1e12, &r), 0.6576247591367864674792517289, 100*TEST_SNGL, GSL_SUCCESS); TEST_SF (s, gsl_sf_angle_restrict_pos_err_e, (1e15, &r), GSL_NAN, TEST_TOL1, GSL_ELOSS); TEST_SF (s, gsl_sf_angle_restrict_pos_err_e, (-1e15, &r), GSL_NAN, TEST_TOL1, GSL_ELOSS); *************** *** 2226,2235 **** TEST_SF_THETA(s, gsl_sf_angle_restrict_symm_e, (1e9), 0.5773954235013851694, TEST_TOL1); ! TEST_SF_THETA(s, gsl_sf_angle_restrict_symm_e, (1e12), -0.6576247591367864674792517289, TEST_SNGL); TEST_SF_THETA(s, gsl_sf_angle_restrict_symm_e, (-1e9), -0.5773954235013851694, TEST_TOL1); ! TEST_SF_THETA(s, gsl_sf_angle_restrict_symm_e, (-1e12), 0.6576247591367864674792517289, TEST_SNGL); #ifdef EXTENDED TEST_SF_THETA(s, gsl_sf_angle_restrict_symm_e, (1e15), 2.1096981170701125979, TEST_TOL1); --- 2333,2342 ---- TEST_SF_THETA(s, gsl_sf_angle_restrict_symm_e, (1e9), 0.5773954235013851694, TEST_TOL1); ! TEST_SF_THETA(s, gsl_sf_angle_restrict_symm_e, (1e12), -0.6576247591367864674792517289, 100*TEST_SNGL); TEST_SF_THETA(s, gsl_sf_angle_restrict_symm_e, (-1e9), -0.5773954235013851694, TEST_TOL1); ! TEST_SF_THETA(s, gsl_sf_angle_restrict_symm_e, (-1e12), 0.6576247591367864674792517289, 100*TEST_SNGL); #ifdef EXTENDED TEST_SF_THETA(s, gsl_sf_angle_restrict_symm_e, (1e15), 2.1096981170701125979, TEST_TOL1); *************** *** 2241,2250 **** TEST_SF(s, gsl_sf_angle_restrict_symm_err_e, (1e9, &r), 0.5773954235013851694, TEST_TOL1, GSL_SUCCESS); ! TEST_SF(s, gsl_sf_angle_restrict_symm_err_e, (1e12, &r), -0.6576247591367864674792517289, TEST_SNGL, GSL_SUCCESS); TEST_SF(s, gsl_sf_angle_restrict_symm_err_e, (-1e9, &r), -0.5773954235013851694, TEST_TOL1, GSL_SUCCESS); ! TEST_SF(s, gsl_sf_angle_restrict_symm_err_e, (-1e12, &r), 0.6576247591367864674792517289, TEST_SNGL, GSL_SUCCESS); TEST_SF (s, gsl_sf_angle_restrict_symm_err_e, (1e15, &r), GSL_NAN, TEST_TOL1, GSL_ELOSS); TEST_SF (s, gsl_sf_angle_restrict_symm_err_e, (-1e15, &r), GSL_NAN, TEST_TOL1, GSL_ELOSS); --- 2348,2357 ---- TEST_SF(s, gsl_sf_angle_restrict_symm_err_e, (1e9, &r), 0.5773954235013851694, TEST_TOL1, GSL_SUCCESS); ! TEST_SF(s, gsl_sf_angle_restrict_symm_err_e, (1e12, &r), -0.6576247591367864674792517289, 100*TEST_SNGL, GSL_SUCCESS); TEST_SF(s, gsl_sf_angle_restrict_symm_err_e, (-1e9, &r), -0.5773954235013851694, TEST_TOL1, GSL_SUCCESS); ! TEST_SF(s, gsl_sf_angle_restrict_symm_err_e, (-1e12, &r), 0.6576247591367864674792517289, 100*TEST_SNGL, GSL_SUCCESS); TEST_SF (s, gsl_sf_angle_restrict_symm_err_e, (1e15, &r), GSL_NAN, TEST_TOL1, GSL_ELOSS); TEST_SF (s, gsl_sf_angle_restrict_symm_err_e, (-1e15, &r), GSL_NAN, TEST_TOL1, GSL_ELOSS); diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/test_sf.h gsl-1.10/specfunc/test_sf.h *** gsl-1.9/specfunc/test_sf.h 2007-01-15 19:38:13.000000000 +0000 --- gsl-1.10/specfunc/test_sf.h 2007-09-10 18:21:19.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 39,45 **** #ifndef TEST_FACTOR ! #if RELEASED #define TEST_FACTOR 100.0 #else #define TEST_FACTOR 1.0 --- 39,45 ---- #ifndef TEST_FACTOR ! #ifdef RELEASED #define TEST_FACTOR 100.0 #else #define TEST_FACTOR 1.0 *************** *** 47,53 **** #endif #ifndef TEST_SIGMA ! #if RELEASED #define TEST_SIGMA 1.5 #else #define TEST_SIGMA 1.0 --- 47,53 ---- #endif #ifndef TEST_SIGMA ! #ifdef RELEASED #define TEST_SIGMA 1.5 #else #define TEST_SIGMA 1.0 diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/transport.c gsl-1.10/specfunc/transport.c *** gsl-1.9/specfunc/transport.c 2005-07-27 17:08:01.000000000 +0100 --- gsl-1.10/specfunc/transport.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/trig.c gsl-1.10/specfunc/trig.c *** gsl-1.9/specfunc/trig.c 2007-01-15 19:38:13.000000000 +0000 --- gsl-1.10/specfunc/trig.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/specfunc/zeta.c gsl-1.10/specfunc/zeta.c *** gsl-1.9/specfunc/zeta.c 2007-01-23 22:08:53.000000000 +0000 --- gsl-1.10/specfunc/zeta.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/absdev_source.c gsl-1.10/statistics/absdev_source.c *** gsl-1.9/statistics/absdev_source.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/statistics/absdev_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* statistics/absdev_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* statistics/absdev_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/covariance_source.c gsl-1.10/statistics/covariance_source.c *** gsl-1.9/statistics/covariance_source.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/statistics/covariance_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* statistics/covar_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* statistics/covar_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 74,77 **** --- 74,136 ---- mean1, mean2); } + /* + gsl_stats_correlation() + Calculate Pearson correlation = cov(X, Y) / (sigma_X * sigma_Y) + This routine efficiently computes the correlation in one pass of the + data and makes use of the algorithm described in: + B. P. Welford, "Note on a Method for Calculating Corrected Sums of + Squares and Products", Technometrics, Vol 4, No 3, 1962. + + This paper derives a numerically stable recurrence to compute a sum + of products + + S = sum_{i=1..N} [ (x_i - mu_x) * (y_i - mu_y) ] + + with the relation + + S_n = S_{n-1} + ((n-1)/n) * (x_n - mu_x_{n-1}) * (y_n - mu_y_{n-1}) + */ + + double + FUNCTION(gsl_stats,correlation) (const BASE data1[], const size_t stride1, + const BASE data2[], const size_t stride2, + const size_t n) + { + size_t i; + long double sum_xsq = 0.0; + long double sum_ysq = 0.0; + long double sum_cross = 0.0; + long double ratio; + long double delta_x, delta_y; + long double mean_x, mean_y; + long double r; + + /* + * Compute: + * sum_xsq = Sum [ (x_i - mu_x)^2 ], + * sum_ysq = Sum [ (y_i - mu_y)^2 ] and + * sum_cross = Sum [ (x_i - mu_x) * (y_i - mu_y) ] + * using the above relation from Welford's paper + */ + + mean_x = data1[0 * stride1]; + mean_y = data2[0 * stride2]; + + for (i = 1; i < n; ++i) + { + ratio = i / (i + 1.0); + delta_x = data1[i * stride1] - mean_x; + delta_y = data2[i * stride2] - mean_y; + sum_xsq += delta_x * delta_x * ratio; + sum_ysq += delta_y * delta_y * ratio; + sum_cross += delta_x * delta_y * ratio; + mean_x += delta_x / (i + 1.0); + mean_y += delta_y / (i + 1.0); + } + + r = sum_cross / (sqrt(sum_xsq) * sqrt(sum_ysq)); + + return r; + } diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/gsl_statistics_char.h gsl-1.10/statistics/gsl_statistics_char.h *** gsl-1.9/statistics/gsl_statistics_char.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/statistics/gsl_statistics_char.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* statistics/gsl_statistics_char.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* statistics/gsl_statistics_char.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 45,50 **** --- 45,51 ---- double gsl_stats_char_lag1_autocorrelation (const char data[], const size_t stride, const size_t n); double gsl_stats_char_covariance (const char data1[], const size_t stride1,const char data2[], const size_t stride2, const size_t n); + double gsl_stats_char_correlation (const char data1[], const size_t stride1,const char data2[], const size_t stride2, const size_t n); double gsl_stats_char_variance_m (const char data[], const size_t stride, const size_t n, const double mean); double gsl_stats_char_sd_m (const char data[], const size_t stride, const size_t n, const double mean); diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/gsl_statistics_double.h gsl-1.10/statistics/gsl_statistics_double.h *** gsl-1.9/statistics/gsl_statistics_double.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/statistics/gsl_statistics_double.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* statistics/gsl_statistics_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* statistics/gsl_statistics_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 45,50 **** --- 45,51 ---- double gsl_stats_lag1_autocorrelation (const double data[], const size_t stride, const size_t n); double gsl_stats_covariance (const double data1[], const size_t stride1,const double data2[], const size_t stride2, const size_t n); + double gsl_stats_correlation (const double data1[], const size_t stride1,const double data2[], const size_t stride2, const size_t n); double gsl_stats_variance_m (const double data[], const size_t stride, const size_t n, const double mean); double gsl_stats_sd_m (const double data[], const size_t stride, const size_t n, const double mean); diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/gsl_statistics_float.h gsl-1.10/statistics/gsl_statistics_float.h *** gsl-1.9/statistics/gsl_statistics_float.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/statistics/gsl_statistics_float.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* statistics/gsl_statistics_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* statistics/gsl_statistics_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 45,50 **** --- 45,51 ---- double gsl_stats_float_lag1_autocorrelation (const float data[], const size_t stride, const size_t n); double gsl_stats_float_covariance (const float data1[], const size_t stride1,const float data2[], const size_t stride2, const size_t n); + double gsl_stats_float_correlation (const float data1[], const size_t stride1,const float data2[], const size_t stride2, const size_t n); double gsl_stats_float_variance_m (const float data[], const size_t stride, const size_t n, const double mean); double gsl_stats_float_sd_m (const float data[], const size_t stride, const size_t n, const double mean); diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/gsl_statistics_int.h gsl-1.10/statistics/gsl_statistics_int.h *** gsl-1.9/statistics/gsl_statistics_int.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/statistics/gsl_statistics_int.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* statistics/gsl_statistics_int.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* statistics/gsl_statistics_int.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 45,50 **** --- 45,51 ---- double gsl_stats_int_lag1_autocorrelation (const int data[], const size_t stride, const size_t n); double gsl_stats_int_covariance (const int data1[], const size_t stride1,const int data2[], const size_t stride2, const size_t n); + double gsl_stats_int_correlation (const int data1[], const size_t stride1,const int data2[], const size_t stride2, const size_t n); double gsl_stats_int_variance_m (const int data[], const size_t stride, const size_t n, const double mean); double gsl_stats_int_sd_m (const int data[], const size_t stride, const size_t n, const double mean); diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/gsl_statistics_long_double.h gsl-1.10/statistics/gsl_statistics_long_double.h *** gsl-1.9/statistics/gsl_statistics_long_double.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/statistics/gsl_statistics_long_double.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* statistics/gsl_statistics_long_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* statistics/gsl_statistics_long_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 45,50 **** --- 45,51 ---- double gsl_stats_long_double_lag1_autocorrelation (const long double data[], const size_t stride, const size_t n); double gsl_stats_long_double_covariance (const long double data1[], const size_t stride1,const long double data2[], const size_t stride2, const size_t n); + double gsl_stats_long_double_correlation (const long double data1[], const size_t stride1,const long double data2[], const size_t stride2, const size_t n); double gsl_stats_long_double_variance_m (const long double data[], const size_t stride, const size_t n, const double mean); double gsl_stats_long_double_sd_m (const long double data[], const size_t stride, const size_t n, const double mean); diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/gsl_statistics_long.h gsl-1.10/statistics/gsl_statistics_long.h *** gsl-1.9/statistics/gsl_statistics_long.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/statistics/gsl_statistics_long.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* statistics/gsl_statistics_long.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* statistics/gsl_statistics_long.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 45,50 **** --- 45,51 ---- double gsl_stats_long_lag1_autocorrelation (const long data[], const size_t stride, const size_t n); double gsl_stats_long_covariance (const long data1[], const size_t stride1,const long data2[], const size_t stride2, const size_t n); + double gsl_stats_long_correlation (const long data1[], const size_t stride1,const long data2[], const size_t stride2, const size_t n); double gsl_stats_long_variance_m (const long data[], const size_t stride, const size_t n, const double mean); double gsl_stats_long_sd_m (const long data[], const size_t stride, const size_t n, const double mean); diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/gsl_statistics_short.h gsl-1.10/statistics/gsl_statistics_short.h *** gsl-1.9/statistics/gsl_statistics_short.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/statistics/gsl_statistics_short.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* statistics/gsl_statistics_short.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* statistics/gsl_statistics_short.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 45,50 **** --- 45,51 ---- double gsl_stats_short_lag1_autocorrelation (const short data[], const size_t stride, const size_t n); double gsl_stats_short_covariance (const short data1[], const size_t stride1,const short data2[], const size_t stride2, const size_t n); + double gsl_stats_short_correlation (const short data1[], const size_t stride1,const short data2[], const size_t stride2, const size_t n); double gsl_stats_short_variance_m (const short data[], const size_t stride, const size_t n, const double mean); double gsl_stats_short_sd_m (const short data[], const size_t stride, const size_t n, const double mean); diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/gsl_statistics_uchar.h gsl-1.10/statistics/gsl_statistics_uchar.h *** gsl-1.9/statistics/gsl_statistics_uchar.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/statistics/gsl_statistics_uchar.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* statistics/gsl_statistics_uchar.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* statistics/gsl_statistics_uchar.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 45,50 **** --- 45,51 ---- double gsl_stats_uchar_lag1_autocorrelation (const unsigned char data[], const size_t stride, const size_t n); double gsl_stats_uchar_covariance (const unsigned char data1[], const size_t stride1,const unsigned char data2[], const size_t stride2, const size_t n); + double gsl_stats_uchar_correlation (const unsigned char data1[], const size_t stride1,const unsigned char data2[], const size_t stride2, const size_t n); double gsl_stats_uchar_variance_m (const unsigned char data[], const size_t stride, const size_t n, const double mean); double gsl_stats_uchar_sd_m (const unsigned char data[], const size_t stride, const size_t n, const double mean); diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/gsl_statistics_uint.h gsl-1.10/statistics/gsl_statistics_uint.h *** gsl-1.9/statistics/gsl_statistics_uint.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/statistics/gsl_statistics_uint.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* statistics/gsl_statistics_uint.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* statistics/gsl_statistics_uint.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 45,50 **** --- 45,51 ---- double gsl_stats_uint_lag1_autocorrelation (const unsigned int data[], const size_t stride, const size_t n); double gsl_stats_uint_covariance (const unsigned int data1[], const size_t stride1,const unsigned int data2[], const size_t stride2, const size_t n); + double gsl_stats_uint_correlation (const unsigned int data1[], const size_t stride1,const unsigned int data2[], const size_t stride2, const size_t n); double gsl_stats_uint_variance_m (const unsigned int data[], const size_t stride, const size_t n, const double mean); double gsl_stats_uint_sd_m (const unsigned int data[], const size_t stride, const size_t n, const double mean); diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/gsl_statistics_ulong.h gsl-1.10/statistics/gsl_statistics_ulong.h *** gsl-1.9/statistics/gsl_statistics_ulong.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/statistics/gsl_statistics_ulong.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* statistics/gsl_statistics_ulong.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* statistics/gsl_statistics_ulong.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 45,50 **** --- 45,51 ---- double gsl_stats_ulong_lag1_autocorrelation (const unsigned long data[], const size_t stride, const size_t n); double gsl_stats_ulong_covariance (const unsigned long data1[], const size_t stride1,const unsigned long data2[], const size_t stride2, const size_t n); + double gsl_stats_ulong_correlation (const unsigned long data1[], const size_t stride1,const unsigned long data2[], const size_t stride2, const size_t n); double gsl_stats_ulong_variance_m (const unsigned long data[], const size_t stride, const size_t n, const double mean); double gsl_stats_ulong_sd_m (const unsigned long data[], const size_t stride, const size_t n, const double mean); diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/gsl_statistics_ushort.h gsl-1.10/statistics/gsl_statistics_ushort.h *** gsl-1.9/statistics/gsl_statistics_ushort.h 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/statistics/gsl_statistics_ushort.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* statistics/gsl_statistics_ushort.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* statistics/gsl_statistics_ushort.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 45,50 **** --- 45,51 ---- double gsl_stats_ushort_lag1_autocorrelation (const unsigned short data[], const size_t stride, const size_t n); double gsl_stats_ushort_covariance (const unsigned short data1[], const size_t stride1,const unsigned short data2[], const size_t stride2, const size_t n); + double gsl_stats_ushort_correlation (const unsigned short data1[], const size_t stride1,const unsigned short data2[], const size_t stride2, const size_t n); double gsl_stats_ushort_variance_m (const unsigned short data[], const size_t stride, const size_t n, const double mean); double gsl_stats_ushort_sd_m (const unsigned short data[], const size_t stride, const size_t n, const double mean); diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/kurtosis_source.c gsl-1.10/statistics/kurtosis_source.c *** gsl-1.9/statistics/kurtosis_source.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/statistics/kurtosis_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* statistics/kurtosis_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* statistics/kurtosis_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/lag1_source.c gsl-1.10/statistics/lag1_source.c *** gsl-1.9/statistics/lag1_source.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/statistics/lag1_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* statistics/lag1_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* statistics/lag1_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/Makefile.in gsl-1.10/statistics/Makefile.in *** gsl-1.9/statistics/Makefile.in 2007-02-20 13:09:16.000000000 +0000 --- gsl-1.10/statistics/Makefile.in 2007-09-13 16:41:48.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 60,76 **** test_DEPENDENCIES = libgslstatistics.la ../sort/libgslsort.la \ ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la \ ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslstatistics_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslstatistics_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 56,73 ---- test_DEPENDENCIES = libgslstatistics.la ../sort/libgslsort.la \ ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la \ ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslstatistics_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslstatistics_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 104,109 **** --- 101,107 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 111,117 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 109,114 ---- *************** *** 119,135 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 116,129 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 141,149 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 135,142 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 153,167 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 146,161 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 171,198 **** --- 165,203 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslstatistics.la pkginclude_HEADERS = gsl_statistics.h gsl_statistics_char.h gsl_statistics_double.h gsl_statistics_float.h gsl_statistics_int.h gsl_statistics_long.h gsl_statistics_long_double.h gsl_statistics_short.h gsl_statistics_uchar.h gsl_statistics_uint.h gsl_statistics_ulong.h gsl_statistics_ushort.h INCLUDES = -I$(top_builddir) -I$(top_srcdir) *************** *** 244,250 **** rm -f "$${dir}/so_locations"; \ done libgslstatistics.la: $(libgslstatistics_la_OBJECTS) $(libgslstatistics_la_DEPENDENCIES) ! $(LINK) $(libgslstatistics_la_LDFLAGS) $(libgslstatistics_la_OBJECTS) $(libgslstatistics_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 249,255 ---- rm -f "$${dir}/so_locations"; \ done libgslstatistics.la: $(libgslstatistics_la_OBJECTS) $(libgslstatistics_la_DEPENDENCIES) ! $(LINK) $(libgslstatistics_la_OBJECTS) $(libgslstatistics_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 254,260 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 259,265 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 276,288 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 281,289 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 347,355 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 348,356 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 358,364 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 359,365 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 370,376 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 371,377 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 420,441 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 421,441 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 453,459 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 453,459 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 487,493 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 487,493 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 501,512 **** --- 501,520 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 526,546 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 534,557 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/mean_source.c gsl-1.10/statistics/mean_source.c *** gsl-1.9/statistics/mean_source.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/statistics/mean_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* statistics/mean_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* statistics/mean_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/median_source.c gsl-1.10/statistics/median_source.c *** gsl-1.9/statistics/median_source.c 2005-06-26 14:25:35.000000000 +0100 --- gsl-1.10/statistics/median_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* statistics/median_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* statistics/median_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/minmax_source.c gsl-1.10/statistics/minmax_source.c *** gsl-1.9/statistics/minmax_source.c 2007-01-10 17:17:36.000000000 +0000 --- gsl-1.10/statistics/minmax_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* statistics/minmax_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* statistics/minmax_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/p_variance_source.c gsl-1.10/statistics/p_variance_source.c *** gsl-1.9/statistics/p_variance_source.c 2005-06-26 14:25:36.000000000 +0100 --- gsl-1.10/statistics/p_variance_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* statistics/p_variance_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* statistics/p_variance_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/quantiles_source.c gsl-1.10/statistics/quantiles_source.c *** gsl-1.9/statistics/quantiles_source.c 2005-06-26 14:25:36.000000000 +0100 --- gsl-1.10/statistics/quantiles_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* statistics/quantiles_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* statistics/quantiles_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/skew_source.c gsl-1.10/statistics/skew_source.c *** gsl-1.9/statistics/skew_source.c 2005-06-26 14:25:36.000000000 +0100 --- gsl-1.10/statistics/skew_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* statistics/skew_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* statistics/skew_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/test.c gsl-1.10/statistics/test.c *** gsl-1.9/statistics/test.c 2006-01-07 18:57:08.000000000 +0000 --- gsl-1.10/statistics/test.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* statistics/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* statistics/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/test_float_source.c gsl-1.10/statistics/test_float_source.c *** gsl-1.9/statistics/test_float_source.c 2006-01-07 18:57:08.000000000 +0000 --- gsl-1.10/statistics/test_float_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* statistics/test_float_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* statistics/test_float_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 164,169 **** --- 164,174 ---- gsl_test_rel (c, expected, rel, NAME(gsl_stats) "_covariance"); } + { + double r = FUNCTION(gsl_stats,correlation) (groupa, stridea, groupb, strideb, nb); + double expected = -0.112322712666074171; + gsl_test_rel (r, expected, rel, NAME(gsl_stats) "_correlation"); + } { double pv = FUNCTION(gsl_stats,pvariance) (groupa, stridea, na, groupb, strideb, nb); diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/test_int_source.c gsl-1.10/statistics/test_int_source.c *** gsl-1.9/statistics/test_int_source.c 2005-06-26 14:25:36.000000000 +0100 --- gsl-1.10/statistics/test_int_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* statistics/test_int_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* statistics/test_int_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 121,126 **** --- 121,131 ---- gsl_test_rel (c, expected, rel, NAME(gsl_stats) "_covariance"); } + { + double r = FUNCTION(gsl_stats,correlation) (igroupa, stridea, igroupb, strideb, inb); + double expected = 0.793090350710101; + gsl_test_rel (r, expected, rel, NAME(gsl_stats) "_correlation"); + } { double pv = FUNCTION(gsl_stats,pvariance) (igroupa, stridea, ina, igroupb, strideb, inb); diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/test_nist.c gsl-1.10/statistics/test_nist.c *** gsl-1.9/statistics/test_nist.c 2005-06-26 14:25:36.000000000 +0100 --- gsl-1.10/statistics/test_nist.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* statistics/test_nist.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* statistics/test_nist.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/ttest_source.c gsl-1.10/statistics/ttest_source.c *** gsl-1.9/statistics/ttest_source.c 2005-06-26 14:25:36.000000000 +0100 --- gsl-1.10/statistics/ttest_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* statistics/ttest_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* statistics/ttest_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/variance_source.c gsl-1.10/statistics/variance_source.c *** gsl-1.9/statistics/variance_source.c 2005-06-26 14:25:36.000000000 +0100 --- gsl-1.10/statistics/variance_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* statistics/variance_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* statistics/variance_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/wabsdev_source.c gsl-1.10/statistics/wabsdev_source.c *** gsl-1.9/statistics/wabsdev_source.c 2005-06-26 14:25:36.000000000 +0100 --- gsl-1.10/statistics/wabsdev_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* statistics/wabsdev_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* statistics/wabsdev_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/wkurtosis_source.c gsl-1.10/statistics/wkurtosis_source.c *** gsl-1.9/statistics/wkurtosis_source.c 2005-06-26 14:25:36.000000000 +0100 --- gsl-1.10/statistics/wkurtosis_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* statistics/wkurtosis_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* statistics/wkurtosis_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/wmean_source.c gsl-1.10/statistics/wmean_source.c *** gsl-1.9/statistics/wmean_source.c 2005-06-26 14:25:36.000000000 +0100 --- gsl-1.10/statistics/wmean_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* statistics/wmean_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* statistics/wmean_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/wskew_source.c gsl-1.10/statistics/wskew_source.c *** gsl-1.9/statistics/wskew_source.c 2005-06-26 14:25:36.000000000 +0100 --- gsl-1.10/statistics/wskew_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* statistics/wskew_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* statistics/wskew_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/statistics/wvariance_source.c gsl-1.10/statistics/wvariance_source.c *** gsl-1.9/statistics/wvariance_source.c 2005-06-26 14:25:36.000000000 +0100 --- gsl-1.10/statistics/wvariance_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* statistics/wvariance_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* statistics/wvariance_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Jim Davies, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sum/gsl_sum.h gsl-1.10/sum/gsl_sum.h *** gsl-1.9/sum/gsl_sum.h 2005-06-26 14:25:36.000000000 +0100 --- gsl-1.10/sum/gsl_sum.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sum/gsl_sum.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sum/gsl_sum.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sum/levin_u.c gsl-1.10/sum/levin_u.c *** gsl-1.9/sum/levin_u.c 2005-06-26 14:25:36.000000000 +0100 --- gsl-1.10/sum/levin_u.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sum/levin_u.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sum/levin_u.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sum/levin_utrunc.c gsl-1.10/sum/levin_utrunc.c *** gsl-1.9/sum/levin_utrunc.c 2005-06-26 14:25:36.000000000 +0100 --- gsl-1.10/sum/levin_utrunc.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sum/levin_utrunc.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sum/levin_utrunc.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sum/Makefile.in gsl-1.10/sum/Makefile.in *** gsl-1.9/sum/Makefile.in 2007-02-20 13:09:16.000000000 +0000 --- gsl-1.10/sum/Makefile.in 2007-09-13 16:41:48.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 58,74 **** test_DEPENDENCIES = libgslsum.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslsum_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslsum_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 54,71 ---- test_DEPENDENCIES = libgslsum.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la ../sys/libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslsum_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslsum_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 102,107 **** --- 99,105 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 109,115 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 107,112 ---- *************** *** 117,133 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 114,127 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 139,147 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 133,140 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 151,165 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 144,159 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 169,196 **** --- 163,201 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslsum.la pkginclude_HEADERS = gsl_sum.h INCLUDES = -I$(top_builddir) *************** *** 241,247 **** rm -f "$${dir}/so_locations"; \ done libgslsum.la: $(libgslsum_la_OBJECTS) $(libgslsum_la_DEPENDENCIES) ! $(LINK) $(libgslsum_la_LDFLAGS) $(libgslsum_la_OBJECTS) $(libgslsum_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 246,252 ---- rm -f "$${dir}/so_locations"; \ done libgslsum.la: $(libgslsum_la_OBJECTS) $(libgslsum_la_DEPENDENCIES) ! $(LINK) $(libgslsum_la_OBJECTS) $(libgslsum_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 251,257 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 256,262 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 273,285 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 278,286 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 344,352 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 345,353 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 355,361 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 356,362 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 367,373 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 368,374 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 417,438 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 418,438 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 450,456 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 450,456 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 484,490 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 484,490 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 498,509 **** --- 498,517 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 523,543 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 531,554 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sum/test.c gsl-1.10/sum/test.c *** gsl-1.9/sum/test.c 2005-06-26 14:25:36.000000000 +0100 --- gsl-1.10/sum/test.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sum/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sum/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sys/ChangeLog gsl-1.10/sys/ChangeLog *** gsl-1.9/sys/ChangeLog 2005-11-14 17:29:42.000000000 +0000 --- gsl-1.10/sys/ChangeLog 2007-08-02 20:06:47.000000000 +0100 *************** *** 1,3 **** --- 1,23 ---- + 2007-07-30 Brian Gough + + * infnan.c (gsl_finite): use isfinite (c99) in preference to + finite + + 2007-07-23 Brian Gough + + * log1p.c (gsl_log1p): added another volatile to prevent unwanted + optimisation + + 2007-04-03 Brian Gough + + * infnan.c (gsl_isinf): now return -1 for -Inf instead of +1 + + * test.c (main): add test for -inf + + * infnan.c (gsl_finite): always use finite where available + (gsl_isnan): always use isnan where available + (gsl_isinf): always use isinf where available + 2005-11-14 Brian Gough * test.c: added tests for constants diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sys/coerce.c gsl-1.10/sys/coerce.c *** gsl-1.9/sys/coerce.c 2005-06-26 14:25:36.000000000 +0100 --- gsl-1.10/sys/coerce.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sys/coerce.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sys/coerce.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sys/expm1.c gsl-1.10/sys/expm1.c *** gsl-1.9/sys/expm1.c 2005-06-26 14:25:36.000000000 +0100 --- gsl-1.10/sys/expm1.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sys/expm1.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sys/expm1.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sys/fcmp.c gsl-1.10/sys/fcmp.c *** gsl-1.9/sys/fcmp.c 2005-06-26 14:25:36.000000000 +0100 --- gsl-1.10/sys/fcmp.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sys/fdiv.c gsl-1.10/sys/fdiv.c *** gsl-1.9/sys/fdiv.c 2005-06-26 14:25:36.000000000 +0100 --- gsl-1.10/sys/fdiv.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sys/fdiv.c * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sys/fdiv.c * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sys/gsl_sys.h gsl-1.10/sys/gsl_sys.h *** gsl-1.9/sys/gsl_sys.h 2005-06-26 14:25:37.000000000 +0100 --- gsl-1.10/sys/gsl_sys.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sys/gsl_sys.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sys/gsl_sys.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 35,40 **** --- 35,41 ---- double gsl_log1p (const double x); double gsl_expm1 (const double x); double gsl_hypot (const double x, const double y); + double gsl_hypot3 (const double x, const double y, const double z); double gsl_acosh (const double x); double gsl_asinh (const double x); double gsl_atanh (const double x); diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sys/hypot.c gsl-1.10/sys/hypot.c *** gsl-1.9/sys/hypot.c 2005-06-26 14:25:37.000000000 +0100 --- gsl-1.10/sys/hypot.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 1,10 **** /* sys/hypot.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sys/hypot.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough, Patrick Alken * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 19,26 **** --- 19,28 ---- #include #include + #include double gsl_hypot (const double x, const double y); + double gsl_hypot3 (const double x, const double y, const double z); double gsl_hypot (const double x, const double y) { *************** *** 46,48 **** --- 48,71 ---- return max * sqrt (1 + u * u) ; } } + + double + gsl_hypot3(const double x, const double y, const double z) + { + double xabs = fabs(x); + double yabs = fabs(y); + double zabs = fabs(z); + double w = GSL_MAX(xabs, GSL_MAX(yabs, zabs)); + + if (w == 0.0) + { + return (0.0); + } + else + { + double r = w * sqrt((xabs / w) * (xabs / w) + + (yabs / w) * (yabs / w) + + (zabs / w) * (zabs / w)); + return r; + } + } diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sys/infnan.c gsl-1.10/sys/infnan.c *** gsl-1.9/sys/infnan.c 2005-06-26 14:25:37.000000000 +0100 --- gsl-1.10/sys/infnan.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sys/infnan.c * ! * Copyright (C) 2001, 2004 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sys/infnan.c * ! * Copyright (C) 2001, 2004, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 75,102 **** { return _finite(x); } ! #elif HAVE_IEEE_COMPARISONS int ! gsl_isnan (const double x) { ! int status = (x != x); ! return status; } ! int ! gsl_isinf (const double x) { ! double y = x - x; ! int s = (y != y); ! ! if (s && x > 0) ! return +1; ! else if (s && x < 0) ! return -1; ! else ! return 0; } ! int gsl_finite (const double x) { --- 75,95 ---- { return _finite(x); } ! #else ! ! # if HAVE_DECL_ISFINITE int ! gsl_finite (const double x) { ! return isfinite(x); } ! # elif HAVE_DECL_FINITE int ! gsl_finite (const double x) { ! return finite(x); } ! # elif HAVE_IEEE_COMPARISONS int gsl_finite (const double x) { *************** *** 104,147 **** int status = (y == y); return status; } ! #else ! #if HAVE_DECL_ISNAN int gsl_isnan (const double x) { return isnan(x); } ! #endif ! ! #if HAVE_DECL_ISINF int ! gsl_isinf (const double x) { ! return isinf(x); } ! #else int gsl_isinf (const double x) { ! return (! gsl_finite(x)) && (! gsl_isnan(x)); } ! #endif ! - #if HAVE_DECL_FINITE int ! gsl_finite (const double x) ! { ! return finite(x); ! } ! #elif HAVE_DECL_ISFINITE ! int ! gsl_finite (const double x) { ! return isfinite(x); } - #endif #endif --- 97,140 ---- int status = (y == y); return status; } ! # endif ! # if HAVE_DECL_ISNAN int gsl_isnan (const double x) { return isnan(x); } ! #elif HAVE_IEEE_COMPARISONS int ! gsl_isnan (const double x) { ! int status = (x != x); ! return status; } ! # endif ! ! # if HAVE_DECL_ISINF int gsl_isinf (const double x) { ! return isinf(x); } ! # else int ! gsl_isinf (const double x) { ! if (! gsl_finite(x) && ! gsl_isnan(x)) ! { ! return (x > 0 ? +1 : -1); ! } ! else ! { ! return 0; ! } } + # endif #endif diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sys/invhyp.c gsl-1.10/sys/invhyp.c *** gsl-1.9/sys/invhyp.c 2005-06-26 14:25:37.000000000 +0100 --- gsl-1.10/sys/invhyp.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sys/invhyp.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sys/invhyp.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sys/ldfrexp.c gsl-1.10/sys/ldfrexp.c *** gsl-1.9/sys/ldfrexp.c 2005-06-26 14:25:37.000000000 +0100 --- gsl-1.10/sys/ldfrexp.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sys/log1p.c gsl-1.10/sys/log1p.c *** gsl-1.9/sys/log1p.c 2005-06-26 14:25:37.000000000 +0100 --- gsl-1.10/sys/log1p.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sys/log1p.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sys/log1p.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 24,30 **** double gsl_log1p (const double x) { ! volatile double y; y = 1 + x; ! return log(y) - ((y-1)-x)/y ; /* cancels errors with IEEE arithmetic */ } --- 24,31 ---- double gsl_log1p (const double x) { ! volatile double y, z; y = 1 + x; ! z = y - 1; ! return log(y) - (z-x)/y ; /* cancels errors with IEEE arithmetic */ } diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sys/Makefile.in gsl-1.10/sys/Makefile.in *** gsl-1.9/sys/Makefile.in 2007-02-20 13:09:16.000000000 +0000 --- gsl-1.10/sys/Makefile.in 2007-09-13 16:41:48.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 59,75 **** test_DEPENDENCIES = libgslsys.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslsys_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslsys_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 55,72 ---- test_DEPENDENCIES = libgslsys.la ../ieee-utils/libgslieeeutils.la \ ../err/libgslerr.la ../test/libgsltest.la libgslsys.la \ ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslsys_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslsys_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 103,108 **** --- 100,106 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 110,116 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 108,113 ---- *************** *** 118,134 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 115,128 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 140,148 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 134,141 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 152,166 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 145,160 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 170,197 **** --- 164,202 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslsys.la pkginclude_HEADERS = gsl_sys.h libgslsys_la_SOURCES = minmax.c prec.c hypot.c log1p.c expm1.c coerce.c invhyp.c pow_int.c infnan.c fdiv.c fcmp.c ldfrexp.c *************** *** 242,248 **** rm -f "$${dir}/so_locations"; \ done libgslsys.la: $(libgslsys_la_OBJECTS) $(libgslsys_la_DEPENDENCIES) ! $(LINK) $(libgslsys_la_LDFLAGS) $(libgslsys_la_OBJECTS) $(libgslsys_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 247,253 ---- rm -f "$${dir}/so_locations"; \ done libgslsys.la: $(libgslsys_la_OBJECTS) $(libgslsys_la_DEPENDENCIES) ! $(LINK) $(libgslsys_la_OBJECTS) $(libgslsys_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 252,258 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 257,263 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 274,286 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 279,287 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 345,353 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 346,354 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 356,362 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 357,363 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 368,374 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 369,375 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 418,439 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 419,439 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 451,457 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 451,457 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 485,491 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 485,491 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 499,510 **** --- 499,518 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 524,544 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 532,555 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sys/minmax.c gsl-1.10/sys/minmax.c *** gsl-1.9/sys/minmax.c 2005-06-26 14:25:37.000000000 +0100 --- gsl-1.10/sys/minmax.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sys/minmax.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sys/minmax.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sys/pow_int.c gsl-1.10/sys/pow_int.c *** gsl-1.9/sys/pow_int.c 2005-06-26 14:25:37.000000000 +0100 --- gsl-1.10/sys/pow_int.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sys/prec.c gsl-1.10/sys/prec.c *** gsl-1.9/sys/prec.c 2005-06-26 14:25:38.000000000 +0100 --- gsl-1.10/sys/prec.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* sys/prec.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sys/prec.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/sys/test.c gsl-1.10/sys/test.c *** gsl-1.9/sys/test.c 2005-11-14 17:29:52.000000000 +0000 --- gsl-1.10/sys/test.c 2007-09-13 13:40:48.000000000 +0100 *************** *** 1,10 **** /* sys/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* sys/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 114,119 **** --- 114,156 ---- y_expected = 1.414213562373095048801688e307; gsl_test_rel (y, y_expected, 1e-15, "gsl_hypot(1e307, 1e307)"); + /* Test for gsl_hypot3 */ + + y = gsl_hypot3 (0.0, 0.0, 0.0); + y_expected = 0.0; + gsl_test_rel (y, y_expected, 1e-15, "gsl_hypot3(0.0, 0.0, 0.0)"); + + y = gsl_hypot3 (1e-10, 1e-10, 1e-10); + y_expected = 1.732050807568877293527446e-10; + gsl_test_rel (y, y_expected, 1e-15, "gsl_hypot3(1e-10, 1e-10, 1e-10)"); + + y = gsl_hypot3 (1e-38, 1e-38, 1e-38); + y_expected = 1.732050807568877293527446e-38; + gsl_test_rel (y, y_expected, 1e-15, "gsl_hypot3(1e-38, 1e-38, 1e-38)"); + + y = gsl_hypot3 (1e-10, 1e-10, -1.0); + y_expected = 1.000000000000000000099; + gsl_test_rel (y, y_expected, 1e-15, "gsl_hypot3(1e-10, 1e-10, -1)"); + + y = gsl_hypot3 (1e-10, -1.0, 1e-10); + y_expected = 1.000000000000000000099; + gsl_test_rel (y, y_expected, 1e-15, "gsl_hypot3(1e-10, -1, 1e-10)"); + + y = gsl_hypot3 (-1.0, 1e-10, 1e-10); + y_expected = 1.000000000000000000099; + gsl_test_rel (y, y_expected, 1e-15, "gsl_hypot3(-1, 1e-10, 1e-10)"); + + y = gsl_hypot3 (1e307, 1e301, 1e301); + y_expected = 1.0000000000009999999999995e307; + gsl_test_rel (y, y_expected, 1e-15, "gsl_hypot3(1e307, 1e301, 1e301)"); + + y = gsl_hypot3 (1e307, 1e307, 1e307); + y_expected = 1.732050807568877293527446e307; + gsl_test_rel (y, y_expected, 1e-15, "gsl_hypot3(1e307, 1e307, 1e307)"); + + y = gsl_hypot3 (1e307, 1e-307, 1e-307); + y_expected = 1.0e307; + gsl_test_rel (y, y_expected, 1e-15, "gsl_hypot3(1e307, 1e-307, 1e-307)"); /* Test for acosh */ *************** *** 341,348 **** s = gsl_isinf (inf); gsl_test_int (s, 1, "gsl_isinf(inf)"); ! s = gsl_isinf (-inf); ! gsl_test_int (s, -1, "gsl_isinf(-inf)"); s = gsl_isinf (nan); gsl_test_int (s, 0, "gsl_isinf(nan)"); --- 378,389 ---- s = gsl_isinf (inf); gsl_test_int (s, 1, "gsl_isinf(inf)"); ! /* isinf(3): In glibc 2.01 and earlier, isinf() returns a ! non-zero value (actually: 1) if x is an infinity (positive or ! negative). (This is all that C99 requires.) */ ! ! s = gsl_isinf (-inf); ! gsl_test (s == 0, "gsl_isinf(-inf) is non-zero"); s = gsl_isinf (nan); gsl_test_int (s, 0, "gsl_isinf(nan)"); *************** *** 357,362 **** --- 398,406 ---- s = gsl_isnan (inf); gsl_test_int (s, 0, "gsl_isnan(inf)"); + s = gsl_isnan (-inf); + gsl_test_int (s, 0, "gsl_isnan(-inf)"); + s = gsl_isnan (nan); gsl_test_int (s, 1, "gsl_isnan(nan)"); *************** *** 370,375 **** --- 414,422 ---- s = gsl_finite (inf); gsl_test_int (s, 0, "gsl_finite(inf)"); + s = gsl_finite (-inf); + gsl_test_int (s, 0, "gsl_finite(-inf)"); + s = gsl_finite (nan); gsl_test_int (s, 0, "gsl_finite(nan)"); } diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/templates_on.h gsl-1.10/templates_on.h *** gsl-1.9/templates_on.h 2006-11-02 17:50:59.000000000 +0000 --- gsl-1.10/templates_on.h 2007-08-31 22:33:20.000000000 +0100 *************** *** 178,183 **** --- 178,186 ---- #define ATOMIC_IO int #define ZERO 0 #define ONE 1 + #ifdef __CHAR_UNSIGNED__ + #define UNSIGNED 1 + #endif #else #error unknown BASE_ directive in source.h diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/test/gsl_test.h gsl-1.10/test/gsl_test.h *** gsl-1.9/test/gsl_test.h 2005-06-26 14:25:38.000000000 +0100 --- gsl-1.10/test/gsl_test.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* err/gsl_test.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* err/gsl_test.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/test/Makefile.in gsl-1.10/test/Makefile.in *** gsl-1.9/test/Makefile.in 2007-02-20 13:09:17.000000000 +0000 --- gsl-1.10/test/Makefile.in 2007-09-13 16:41:49.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 51,67 **** libgsltest_la_LIBADD = am_libgsltest_la_OBJECTS = results.lo libgsltest_la_OBJECTS = $(am_libgsltest_la_OBJECTS) ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgsltest_la_SOURCES) DIST_SOURCES = $(libgsltest_la_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 47,64 ---- libgsltest_la_LIBADD = am_libgsltest_la_OBJECTS = results.lo libgsltest_la_OBJECTS = $(am_libgsltest_la_OBJECTS) ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgsltest_la_SOURCES) DIST_SOURCES = $(libgsltest_la_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 95,100 **** --- 92,98 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 102,108 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 100,105 ---- *************** *** 110,126 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 107,120 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 132,140 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 126,133 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 144,158 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 137,152 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 162,189 **** --- 156,194 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgsltest.la pkginclude_HEADERS = gsl_test.h libgsltest_la_SOURCES = results.c *************** *** 230,236 **** rm -f "$${dir}/so_locations"; \ done libgsltest.la: $(libgsltest_la_OBJECTS) $(libgsltest_la_DEPENDENCIES) ! $(LINK) $(libgsltest_la_LDFLAGS) $(libgsltest_la_OBJECTS) $(libgsltest_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 235,241 ---- rm -f "$${dir}/so_locations"; \ done libgsltest.la: $(libgsltest_la_OBJECTS) $(libgsltest_la_DEPENDENCIES) ! $(LINK) $(libgsltest_la_OBJECTS) $(libgsltest_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 252,264 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 257,265 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 323,344 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 324,344 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 354,360 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 354,360 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 388,394 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 388,394 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 402,413 **** --- 402,421 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 427,446 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ ! install install-am install-data install-data-am install-exec \ ! install-exec-am install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS #check_PROGRAMS = test --- 435,457 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ ! install install-am install-data install-data-am install-dvi \ ! install-dvi-am install-exec install-exec-am install-html \ ! install-html-am install-info install-info-am install-man \ ! install-pdf install-pdf-am install-pkgincludeHEADERS \ ! install-ps install-ps-am install-strip installcheck \ installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-pkgincludeHEADERS #check_PROGRAMS = test diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/test/results.c gsl-1.10/test/results.c *** gsl-1.9/test/results.c 2005-08-22 16:22:22.000000000 +0100 --- gsl-1.10/test/results.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* err/test_results.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* err/test_results.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/THANKS gsl-1.10/THANKS *** gsl-1.9/THANKS 2007-02-09 20:39:01.000000000 +0000 --- gsl-1.10/THANKS 2007-08-30 11:30:58.000000000 +0100 *************** *** 364,370 **** * Jochen Voss ziggurat gaussian generator ! * John D Lamb Marsaglia-Tsang gamma generator * Giulio Bottazzi improved exponential power distribution and gsl_multifit_linear_est --- 364,370 ---- * Jochen Voss ziggurat gaussian generator ! * John D Lamb Marsaglia-Tsang gamma generator, bug reports * Giulio Bottazzi improved exponential power distribution and gsl_multifit_linear_est *************** *** 402,404 **** --- 402,429 ---- * Lionel Barnett for pointing out an error in the elliptic integrals + + * Ed Smith-Rowland <3dw4rd@verizon.net> patch for laguerre polynomials + + * Katrin Wolff bug report for Lambert W function + + * "Heikki Orsila " cleaning up siman code + + * Eugene Loh bug report for gsl_log1p + + * Richard Smith bug report and suggestions for + correct use of isfinite + + * Marco Lombardi bug report for svd + + * I J Wilson bug report for dirichlet + function + + * Justin Lenzo bug reports for + vector/matrix tests. + + * Sebastian Queißer bug report for + gsl_cdf_beta_Pinv + + * Andries Brouwer bug report for + underflow in symmetric eigenvalues diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/TODO gsl-1.10/TODO *** gsl-1.9/TODO 2007-01-10 17:15:48.000000000 +0000 --- gsl-1.10/TODO 2007-06-12 09:45:20.000000000 +0100 *************** *** 10,17 **** * Modified Ei(x) function (see specfunc/TODO) - * Eigensystems for non-symmetric matrices - * Quasi-random number distributions * ODE algorithms from RKSUITE --- 10,15 ---- *************** *** 90,95 **** --- 88,112 ---- * PyGSL -- python bindings for GSL, see http://pygsl.sf.net/ + + * From Goose + ASCII import + Categorical Sets + Kernel Density Estimation + Shampine Polynomial Regression + Bootstrapping, Jacknife + Descriptive: Range, Trimmed Mean, Winsorized Mean, Moments + Harmonic mean, RMS, Durbin-Watson, AR1 independence + Autocorr, Autocorr_z, Cramer vos Mises, Anderson-Darling + Spearman-rho, Kendall-tau, EDF_D_both EDF_D_plus, + EDF_D_minus, EDF_D, EDF_kuiper_V, pooled mean + pooled var, + Tests: kolmogorov_smirnov + Moving average, Exponential moving average + wilcoxon_statistic, wilcoxon_noties_cdf, wilcoxon_general_cdf + Cochran Q test, KruskalWallis, McNemar, spearman_Rocc + + Wishlist or vague ideas ======================= *************** *** 159,161 **** --- 176,179 ---- of size_t in addition to long, int, etc. * Fix up the workspace_alloc functions so they have consistent names + diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/utils/Makefile.in gsl-1.10/utils/Makefile.in *** gsl-1.9/utils/Makefile.in 2007-02-20 13:09:17.000000000 +0000 --- gsl-1.10/utils/Makefile.in 2007-09-13 16:41:49.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 14,28 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 14,24 ---- *************** *** 50,66 **** libutils_la_DEPENDENCIES = @LIBOBJS@ am_libutils_la_OBJECTS = placeholder.lo libutils_la_OBJECTS = $(am_libutils_la_OBJECTS) ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libutils_la_SOURCES) DIST_SOURCES = $(libutils_la_SOURCES) ETAGS = etags --- 46,63 ---- libutils_la_DEPENDENCIES = @LIBOBJS@ am_libutils_la_OBJECTS = placeholder.lo libutils_la_OBJECTS = $(am_libutils_la_OBJECTS) ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libutils_la_SOURCES) DIST_SOURCES = $(libutils_la_SOURCES) ETAGS = etags *************** *** 85,90 **** --- 82,88 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 92,98 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 90,95 ---- *************** *** 100,116 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 97,110 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 122,130 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 116,123 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 134,148 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 127,142 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 152,179 **** --- 146,184 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libutils.la # Don't need to list alloca.c, etc., Automake includes them. *************** *** 223,229 **** rm -f "$${dir}/so_locations"; \ done libutils.la: $(libutils_la_OBJECTS) $(libutils_la_DEPENDENCIES) ! $(LINK) $(libutils_la_LDFLAGS) $(libutils_la_OBJECTS) $(libutils_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 228,234 ---- rm -f "$${dir}/so_locations"; \ done libutils.la: $(libutils_la_OBJECTS) $(libutils_la_DEPENDENCIES) ! $(LINK) $(libutils_la_OBJECTS) $(libutils_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 246,255 **** clean-libtool: -rm -rf .libs _libs - distclean-libtool: - -rm -f libtool - uninstall-info-am: - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ --- 251,256 ---- *************** *** 299,320 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 300,320 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 361,367 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 361,367 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 375,386 **** --- 375,394 ---- install-data-am: + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 400,418 **** ps-am: ! uninstall-am: uninstall-info-am .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ ! install install-am install-data install-data-am install-exec \ ! install-exec-am install-info install-info-am install-man \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ ! pdf pdf-am ps ps-am tags uninstall uninstall-am \ ! uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 408,429 ---- ps-am: ! uninstall-am: ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES ctags distclean \ distclean-compile distclean-generic distclean-libtool \ distclean-tags distdir dvi dvi-am html html-am info info-am \ ! install install-am install-data install-data-am install-dvi \ ! install-dvi-am install-exec install-exec-am install-html \ ! install-html-am install-info install-info-am install-man \ ! install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ ! pdf pdf-am ps ps-am tags uninstall uninstall-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/utils/strdup.c gsl-1.10/utils/strdup.c *** gsl-1.9/utils/strdup.c 2005-06-26 14:25:38.000000000 +0100 --- gsl-1.10/utils/strdup.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 3,9 **** This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by ! the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, --- 3,9 ---- This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by ! the Free Software Foundation; either version 3, or (at your option) any later version. This program is distributed in the hope that it will be useful, diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/utils/strtol.c gsl-1.10/utils/strtol.c *** gsl-1.9/utils/strtol.c 2005-06-26 14:25:38.000000000 +0100 --- gsl-1.10/utils/strtol.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as ! published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. The GNU C Library is distributed in the hope that it will be useful, --- 4,10 ---- The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as ! published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. The GNU C Library is distributed in the hope that it will be useful, diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/utils/strtoul.c gsl-1.10/utils/strtoul.c *** gsl-1.9/utils/strtoul.c 2005-06-26 14:25:38.000000000 +0100 --- gsl-1.10/utils/strtoul.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 3,9 **** The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as ! published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. The GNU C Library is distributed in the hope that it will be useful, --- 3,9 ---- The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as ! published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. The GNU C Library is distributed in the hope that it will be useful, diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/utils/system.h gsl-1.10/utils/system.h *** gsl-1.9/utils/system.h 2003-07-25 16:18:23.000000000 +0100 --- gsl-1.10/utils/system.h 2007-07-02 17:34:28.000000000 +0100 *************** *** 1,11 **** /* system.h: System-dependent declarations. Include this first. ! $Id: system.h,v 1.2 2003/06/17 21:06:10 bjg Exp $ Copyright (C) 1997 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by ! the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, --- 1,11 ---- /* system.h: System-dependent declarations. Include this first. ! $Id: system.h,v 1.3 2007/07/02 16:34:28 bjg Exp $ Copyright (C) 1997 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by ! the Free Software Foundation; either version 3, or (at your option) any later version. This program is distributed in the hope that it will be useful, diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/vector/ChangeLog gsl-1.10/vector/ChangeLog *** gsl-1.9/vector/ChangeLog 2007-02-17 14:14:04.000000000 +0000 --- gsl-1.10/vector/ChangeLog 2007-08-21 15:38:57.000000000 +0100 *************** *** 1,3 **** --- 1,7 ---- + 2007-08-21 Brian Gough + + * prop_source.c (FUNCTION): added gsl_vector_isnonneg + 2007-02-17 Brian Gough * test_source.c (FUNCTION): avoid running tests on char, because diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/vector/copy_source.c gsl-1.10/vector/copy_source.c *** gsl-1.9/vector/copy_source.c 2005-06-26 14:25:38.000000000 +0100 --- gsl-1.10/vector/copy_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* vector/copy_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* vector/copy_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/vector/file_source.c gsl-1.10/vector/file_source.c *** gsl-1.9/vector/file_source.c 2005-06-26 14:25:38.000000000 +0100 --- gsl-1.10/vector/file_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* vector/file_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* vector/file_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/vector/gsl_vector_char.h gsl-1.10/vector/gsl_vector_char.h *** gsl-1.9/vector/gsl_vector_char.h 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/vector/gsl_vector_char.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* vector/gsl_vector_char.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* vector/gsl_vector_char.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 163,168 **** --- 163,169 ---- int gsl_vector_char_isnull (const gsl_vector_char * v); int gsl_vector_char_ispos (const gsl_vector_char * v); int gsl_vector_char_isneg (const gsl_vector_char * v); + int gsl_vector_char_isnonneg (const gsl_vector_char * v); #ifdef HAVE_INLINE diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/vector/gsl_vector_complex_double.h gsl-1.10/vector/gsl_vector_complex_double.h *** gsl-1.9/vector/gsl_vector_complex_double.h 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/vector/gsl_vector_complex_double.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* vector/gsl_vector_complex_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* vector/gsl_vector_complex_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/vector/gsl_vector_complex_float.h gsl-1.10/vector/gsl_vector_complex_float.h *** gsl-1.9/vector/gsl_vector_complex_float.h 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/vector/gsl_vector_complex_float.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* vector/gsl_vector_complex_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* vector/gsl_vector_complex_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/vector/gsl_vector_complex_long_double.h gsl-1.10/vector/gsl_vector_complex_long_double.h *** gsl-1.9/vector/gsl_vector_complex_long_double.h 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/vector/gsl_vector_complex_long_double.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* vector/gsl_vector_complex_long_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* vector/gsl_vector_complex_long_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/vector/gsl_vector_double.h gsl-1.10/vector/gsl_vector_double.h *** gsl-1.9/vector/gsl_vector_double.h 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/vector/gsl_vector_double.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* vector/gsl_vector_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* vector/gsl_vector_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 163,168 **** --- 163,169 ---- int gsl_vector_isnull (const gsl_vector * v); int gsl_vector_ispos (const gsl_vector * v); int gsl_vector_isneg (const gsl_vector * v); + int gsl_vector_isnonneg (const gsl_vector * v); #ifdef HAVE_INLINE diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/vector/gsl_vector_float.h gsl-1.10/vector/gsl_vector_float.h *** gsl-1.9/vector/gsl_vector_float.h 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/vector/gsl_vector_float.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* vector/gsl_vector_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* vector/gsl_vector_float.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 163,168 **** --- 163,169 ---- int gsl_vector_float_isnull (const gsl_vector_float * v); int gsl_vector_float_ispos (const gsl_vector_float * v); int gsl_vector_float_isneg (const gsl_vector_float * v); + int gsl_vector_float_isnonneg (const gsl_vector_float * v); #ifdef HAVE_INLINE diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/vector/gsl_vector_int.h gsl-1.10/vector/gsl_vector_int.h *** gsl-1.9/vector/gsl_vector_int.h 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/vector/gsl_vector_int.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* vector/gsl_vector_int.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* vector/gsl_vector_int.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 163,168 **** --- 163,169 ---- int gsl_vector_int_isnull (const gsl_vector_int * v); int gsl_vector_int_ispos (const gsl_vector_int * v); int gsl_vector_int_isneg (const gsl_vector_int * v); + int gsl_vector_int_isnonneg (const gsl_vector_int * v); #ifdef HAVE_INLINE diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/vector/gsl_vector_long_double.h gsl-1.10/vector/gsl_vector_long_double.h *** gsl-1.9/vector/gsl_vector_long_double.h 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/vector/gsl_vector_long_double.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* vector/gsl_vector_long_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* vector/gsl_vector_long_double.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 163,168 **** --- 163,169 ---- int gsl_vector_long_double_isnull (const gsl_vector_long_double * v); int gsl_vector_long_double_ispos (const gsl_vector_long_double * v); int gsl_vector_long_double_isneg (const gsl_vector_long_double * v); + int gsl_vector_long_double_isnonneg (const gsl_vector_long_double * v); #ifdef HAVE_INLINE diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/vector/gsl_vector_long.h gsl-1.10/vector/gsl_vector_long.h *** gsl-1.9/vector/gsl_vector_long.h 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/vector/gsl_vector_long.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* vector/gsl_vector_long.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* vector/gsl_vector_long.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 163,168 **** --- 163,169 ---- int gsl_vector_long_isnull (const gsl_vector_long * v); int gsl_vector_long_ispos (const gsl_vector_long * v); int gsl_vector_long_isneg (const gsl_vector_long * v); + int gsl_vector_long_isnonneg (const gsl_vector_long * v); #ifdef HAVE_INLINE diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/vector/gsl_vector_short.h gsl-1.10/vector/gsl_vector_short.h *** gsl-1.9/vector/gsl_vector_short.h 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/vector/gsl_vector_short.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* vector/gsl_vector_short.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* vector/gsl_vector_short.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 163,168 **** --- 163,169 ---- int gsl_vector_short_isnull (const gsl_vector_short * v); int gsl_vector_short_ispos (const gsl_vector_short * v); int gsl_vector_short_isneg (const gsl_vector_short * v); + int gsl_vector_short_isnonneg (const gsl_vector_short * v); #ifdef HAVE_INLINE diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/vector/gsl_vector_uchar.h gsl-1.10/vector/gsl_vector_uchar.h *** gsl-1.9/vector/gsl_vector_uchar.h 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/vector/gsl_vector_uchar.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* vector/gsl_vector_uchar.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* vector/gsl_vector_uchar.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 163,168 **** --- 163,169 ---- int gsl_vector_uchar_isnull (const gsl_vector_uchar * v); int gsl_vector_uchar_ispos (const gsl_vector_uchar * v); int gsl_vector_uchar_isneg (const gsl_vector_uchar * v); + int gsl_vector_uchar_isnonneg (const gsl_vector_uchar * v); #ifdef HAVE_INLINE diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/vector/gsl_vector_uint.h gsl-1.10/vector/gsl_vector_uint.h *** gsl-1.9/vector/gsl_vector_uint.h 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/vector/gsl_vector_uint.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* vector/gsl_vector_uint.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* vector/gsl_vector_uint.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 163,168 **** --- 163,169 ---- int gsl_vector_uint_isnull (const gsl_vector_uint * v); int gsl_vector_uint_ispos (const gsl_vector_uint * v); int gsl_vector_uint_isneg (const gsl_vector_uint * v); + int gsl_vector_uint_isnonneg (const gsl_vector_uint * v); #ifdef HAVE_INLINE diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/vector/gsl_vector_ulong.h gsl-1.10/vector/gsl_vector_ulong.h *** gsl-1.9/vector/gsl_vector_ulong.h 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/vector/gsl_vector_ulong.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* vector/gsl_vector_ulong.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* vector/gsl_vector_ulong.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 163,168 **** --- 163,169 ---- int gsl_vector_ulong_isnull (const gsl_vector_ulong * v); int gsl_vector_ulong_ispos (const gsl_vector_ulong * v); int gsl_vector_ulong_isneg (const gsl_vector_ulong * v); + int gsl_vector_ulong_isnonneg (const gsl_vector_ulong * v); #ifdef HAVE_INLINE diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/vector/gsl_vector_ushort.h gsl-1.10/vector/gsl_vector_ushort.h *** gsl-1.9/vector/gsl_vector_ushort.h 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/vector/gsl_vector_ushort.h 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* vector/gsl_vector_ushort.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* vector/gsl_vector_ushort.h * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 163,168 **** --- 163,169 ---- int gsl_vector_ushort_isnull (const gsl_vector_ushort * v); int gsl_vector_ushort_ispos (const gsl_vector_ushort * v); int gsl_vector_ushort_isneg (const gsl_vector_ushort * v); + int gsl_vector_ushort_isnonneg (const gsl_vector_ushort * v); #ifdef HAVE_INLINE diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/vector/init_source.c gsl-1.10/vector/init_source.c *** gsl-1.9/vector/init_source.c 2005-06-26 14:25:38.000000000 +0100 --- gsl-1.10/vector/init_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* vector/init_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* vector/init_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/vector/Makefile.in gsl-1.10/vector/Makefile.in *** gsl-1.9/vector/Makefile.in 2007-02-20 13:09:17.000000000 +0000 --- gsl-1.10/vector/Makefile.in 2007-09-13 16:41:49.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 63,79 **** test_static_DEPENDENCIES = libgslvector.la ../block/libgslblock.la \ ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la \ ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslvector_la_SOURCES) $(test_SOURCES) \ $(test_static_SOURCES) DIST_SOURCES = $(libgslvector_la_SOURCES) $(test_SOURCES) \ --- 59,76 ---- test_static_DEPENDENCIES = libgslvector.la ../block/libgslblock.la \ ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la \ ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslvector_la_SOURCES) $(test_SOURCES) \ $(test_static_SOURCES) DIST_SOURCES = $(libgslvector_la_SOURCES) $(test_SOURCES) \ *************** *** 109,114 **** --- 106,112 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 116,122 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 114,119 ---- *************** *** 124,140 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 121,134 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 146,154 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 140,147 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 158,172 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 151,166 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 176,203 **** --- 170,208 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslvector.la pkginclude_HEADERS = gsl_vector.h gsl_vector_char.h gsl_vector_complex.h gsl_vector_complex_double.h gsl_vector_complex_float.h gsl_vector_complex_long_double.h gsl_vector_double.h gsl_vector_float.h gsl_vector_int.h gsl_vector_long.h gsl_vector_long_double.h gsl_vector_short.h gsl_vector_uchar.h gsl_vector_uint.h gsl_vector_ulong.h gsl_vector_ushort.h INCLUDES = -I$(top_builddir) -I$(top_srcdir) *************** *** 252,258 **** rm -f "$${dir}/so_locations"; \ done libgslvector.la: $(libgslvector_la_OBJECTS) $(libgslvector_la_DEPENDENCIES) ! $(LINK) $(libgslvector_la_LDFLAGS) $(libgslvector_la_OBJECTS) $(libgslvector_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 257,263 ---- rm -f "$${dir}/so_locations"; \ done libgslvector.la: $(libgslvector_la_OBJECTS) $(libgslvector_la_DEPENDENCIES) ! $(LINK) $(libgslvector_la_OBJECTS) $(libgslvector_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 262,271 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) test_static$(EXEEXT): $(test_static_OBJECTS) $(test_static_DEPENDENCIES) @rm -f test_static$(EXEEXT) ! $(LINK) $(test_static_LDFLAGS) $(test_static_OBJECTS) $(test_static_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 267,276 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) test_static$(EXEEXT): $(test_static_OBJECTS) $(test_static_DEPENDENCIES) @rm -f test_static$(EXEEXT) ! $(LINK) $(test_static_OBJECTS) $(test_static_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 287,299 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 292,300 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 358,366 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 359,367 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 369,375 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 370,376 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 381,387 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 382,388 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 431,452 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 432,452 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 464,470 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 464,470 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 499,505 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 499,505 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 513,524 **** --- 513,532 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 538,558 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 546,569 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/vector/minmax_source.c gsl-1.10/vector/minmax_source.c *** gsl-1.9/vector/minmax_source.c 2007-01-26 18:20:48.000000000 +0000 --- gsl-1.10/vector/minmax_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* vector/minmax_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* vector/minmax_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/vector/oper_source.c gsl-1.10/vector/oper_source.c *** gsl-1.9/vector/oper_source.c 2005-06-26 14:25:38.000000000 +0100 --- gsl-1.10/vector/oper_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* vector/oper_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* vector/oper_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/vector/prop_source.c gsl-1.10/vector/prop_source.c *** gsl-1.9/vector/prop_source.c 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/vector/prop_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* vector/prop_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* vector/prop_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 89,91 **** --- 89,115 ---- return 1; } + int + FUNCTION (gsl_vector, isnonneg) (const TYPE (gsl_vector) * v) + { + const size_t n = v->size; + const size_t stride = v->stride ; + + size_t j; + + for (j = 0; j < n; j++) + { + size_t k; + + for (k = 0; k < MULTIPLICITY; k++) + { + if (v->data[MULTIPLICITY * stride * j + k] < 0.0) + { + return 0; + } + } + } + + return 1; + } + diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/vector/reim_source.c gsl-1.10/vector/reim_source.c *** gsl-1.9/vector/reim_source.c 2005-08-22 16:22:22.000000000 +0100 --- gsl-1.10/vector/reim_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* vector/reim_source.c * ! * Copyright (C) 2001 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* vector/reim_source.c * ! * Copyright (C) 2001, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/vector/subvector_source.c gsl-1.10/vector/subvector_source.c *** gsl-1.9/vector/subvector_source.c 2005-08-22 16:22:22.000000000 +0100 --- gsl-1.10/vector/subvector_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* vector/subvector_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* vector/subvector_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/vector/swap_source.c gsl-1.10/vector/swap_source.c *** gsl-1.9/vector/swap_source.c 2005-06-26 14:25:38.000000000 +0100 --- gsl-1.10/vector/swap_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* vector/swap_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* vector/swap_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/vector/test.c gsl-1.10/vector/test.c *** gsl-1.9/vector/test.c 2007-01-10 17:17:17.000000000 +0000 --- gsl-1.10/vector/test.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* vector/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* vector/test.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 19,25 **** #include ! #if (!GSL_RANGE_CHECK) && HAVE_INLINE #undef GSL_RANGE_CHECK #define GSL_RANGE_CHECK 1 #endif --- 19,25 ---- #include ! #if (!GSL_RANGE_CHECK) && defined(HAVE_INLINE) #undef GSL_RANGE_CHECK #define GSL_RANGE_CHECK 1 #endif diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/vector/test_complex_source.c gsl-1.10/vector/test_complex_source.c *** gsl-1.9/vector/test_complex_source.c 2006-10-31 16:11:37.000000000 +0000 --- gsl-1.10/vector/test_complex_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* vector/test_complex_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* vector/test_complex_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/vector/test_source.c gsl-1.10/vector/test_source.c *** gsl-1.9/vector/test_source.c 2007-02-17 14:14:04.000000000 +0000 --- gsl-1.10/vector/test_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* vector/test_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* vector/test_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but *************** *** 62,67 **** --- 62,71 ---- status = (FUNCTION(gsl_vector,isneg)(v) != 0); TEST (status, "_isneg" DESC " on calloc vector"); + + status = (FUNCTION(gsl_vector,isnonneg)(v) != 1); + TEST (status, "_isnonneg" DESC " on calloc vector"); + } FUNCTION (gsl_vector, free) (v); /* free whatever is in v */ *************** *** 169,174 **** --- 173,182 ---- status = (FUNCTION(gsl_vector,isneg)(v) != 0); TEST (status, "_isneg" DESC " on null vector") ; + + status = (FUNCTION(gsl_vector,isnonneg)(v) != 1); + TEST (status, "_isnonneg" DESC " on null vector") ; + } { *************** *** 187,192 **** --- 195,203 ---- status = (FUNCTION(gsl_vector,isneg)(v) != 0); TEST (status, "_isneg" DESC " on non-negative vector") ; + + status = (FUNCTION(gsl_vector,isnonneg)(v) != 1); + TEST (status, "_isnonneg" DESC " on non-negative vector") ; } *************** *** 196,202 **** for (i = 0; i < N; i++) { ! FUNCTION (gsl_vector, set) (v, i, (ATOMIC) ((i % 10) - 5)); } status = (FUNCTION(gsl_vector,isnull)(v) != 0); --- 207,214 ---- for (i = 0; i < N; i++) { ! ATOMIC vi = (i % 10) - (ATOMIC) 5; ! FUNCTION (gsl_vector, set) (v, i, vi); } status = (FUNCTION(gsl_vector,isnull)(v) != 0); *************** *** 207,212 **** --- 219,227 ---- status = (FUNCTION(gsl_vector,isneg)(v) != 0); TEST (status, "_isneg" DESC " on mixed vector") ; + + status = (FUNCTION(gsl_vector,isnonneg)(v) != 0); + TEST (status, "_isnonneg" DESC " on mixed vector") ; } { *************** *** 225,230 **** --- 240,248 ---- status = (FUNCTION(gsl_vector,isneg)(v) != 0); TEST (status, "_isneg" DESC " on non-positive non-null vector") ; + + status = (FUNCTION(gsl_vector,isnonneg)(v) != 0); + TEST (status, "_isnonneg" DESC " on non-positive non-null vector") ; } #endif *************** *** 244,249 **** --- 262,270 ---- status = (FUNCTION(gsl_vector,isneg)(v) != 0); TEST (status, "_isneg" DESC " on positive vector") ; + + status = (FUNCTION(gsl_vector,isnonneg)(v) != 1); + TEST (status, "_isnonneg" DESC " on positive vector") ; } *************** *** 264,269 **** --- 285,293 ---- status = (FUNCTION(gsl_vector,isneg)(v) != 1); TEST (status, "_isneg" DESC " on negative vector") ; + + status = (FUNCTION(gsl_vector,isnonneg)(v) != 0); + TEST (status, "_isnonneg" DESC " on negative vector") ; } #endif diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/vector/vector.c gsl-1.10/vector/vector.c *** gsl-1.9/vector/vector.c 2005-06-26 14:25:38.000000000 +0100 --- gsl-1.10/vector/vector.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* vector/vector.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* vector/vector.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/vector/vector_source.c gsl-1.10/vector/vector_source.c *** gsl-1.9/vector/vector_source.c 2005-06-26 14:25:38.000000000 +0100 --- gsl-1.10/vector/vector_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* vector/vector_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* vector/vector_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/vector/view_source.c gsl-1.10/vector/view_source.c *** gsl-1.9/vector/view_source.c 2005-08-22 16:22:22.000000000 +0100 --- gsl-1.10/vector/view_source.c 2007-09-10 17:06:53.000000000 +0100 *************** *** 1,10 **** /* vector/view_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* vector/view_source.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2007 Gerard Jungman, Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/version.c gsl-1.10/version.c *** gsl-1.9/version.c 2005-06-26 14:25:34.000000000 +0100 --- gsl-1.10/version.c 2007-09-10 17:06:52.000000000 +0100 *************** *** 1,10 **** /* version.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 1,10 ---- /* version.c * ! * Copyright (C) 1996, 1997, 1998, 1999, 2000, 2007 Brian Gough * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/wavelet/bspline.c gsl-1.10/wavelet/bspline.c *** gsl-1.9/wavelet/bspline.c 2007-01-04 12:14:01.000000000 +0000 --- gsl-1.10/wavelet/bspline.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/wavelet/daubechies.c gsl-1.10/wavelet/daubechies.c *** gsl-1.9/wavelet/daubechies.c 2007-01-04 12:14:01.000000000 +0000 --- gsl-1.10/wavelet/daubechies.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/wavelet/dwt.c gsl-1.10/wavelet/dwt.c *** gsl-1.9/wavelet/dwt.c 2006-03-17 15:52:39.000000000 +0000 --- gsl-1.10/wavelet/dwt.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/wavelet/gsl_wavelet2d.h gsl-1.10/wavelet/gsl_wavelet2d.h *** gsl-1.9/wavelet/gsl_wavelet2d.h 2005-06-26 14:25:38.000000000 +0100 --- gsl-1.10/wavelet/gsl_wavelet2d.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/wavelet/gsl_wavelet.h gsl-1.10/wavelet/gsl_wavelet.h *** gsl-1.9/wavelet/gsl_wavelet.h 2005-06-26 14:25:38.000000000 +0100 --- gsl-1.10/wavelet/gsl_wavelet.h 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/wavelet/haar.c gsl-1.10/wavelet/haar.c *** gsl-1.9/wavelet/haar.c 2005-06-26 14:25:38.000000000 +0100 --- gsl-1.10/wavelet/haar.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/wavelet/Makefile.in gsl-1.10/wavelet/Makefile.in *** gsl-1.9/wavelet/Makefile.in 2007-02-20 13:09:18.000000000 +0000 --- gsl-1.10/wavelet/Makefile.in 2007-09-13 16:41:50.000000000 +0100 *************** *** 1,8 **** ! # Makefile.in generated by automake 1.9.6 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. --- 1,8 ---- ! # Makefile.in generated by automake 1.10 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, ! # 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. *************** *** 15,29 **** @SET_MAKE@ - srcdir = @srcdir@ - top_srcdir = @top_srcdir@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ - top_builddir = .. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd - INSTALL = @INSTALL@ install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c --- 15,25 ---- *************** *** 60,76 **** ../vector/libgslvector.la ../block/libgslblock.la \ ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la \ ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \ ! $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ ! $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ ! $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(libgslwavelet_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslwavelet_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; --- 56,73 ---- ../vector/libgslvector.la ../block/libgslblock.la \ ../ieee-utils/libgslieeeutils.la ../err/libgslerr.la \ ../test/libgsltest.la ../sys/libgslsys.la ../utils/libutils.la ! DEFAULT_INCLUDES = -I. -I$(top_builddir)@am__isrc@ depcomp = am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) ! LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ ! $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) ! LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ ! --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ ! $(LDFLAGS) -o $@ SOURCES = $(libgslwavelet_la_SOURCES) $(test_SOURCES) DIST_SOURCES = $(libgslwavelet_la_SOURCES) $(test_SOURCES) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; *************** *** 104,109 **** --- 101,107 ---- ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ + GREP = @GREP@ GSL_CFLAGS = @GSL_CFLAGS@ GSL_LIBS = @GSL_LIBS@ GSL_LT_CBLAS_VERSION = @GSL_LT_CBLAS_VERSION@ *************** *** 111,117 **** HAVE_AIX_IEEE_INTERFACE = @HAVE_AIX_IEEE_INTERFACE@ HAVE_DARWIN86_IEEE_INTERFACE = @HAVE_DARWIN86_IEEE_INTERFACE@ HAVE_DARWIN_IEEE_INTERFACE = @HAVE_DARWIN_IEEE_INTERFACE@ - HAVE_EXTENDED_PRECISION_REGISTERS = @HAVE_EXTENDED_PRECISION_REGISTERS@ HAVE_FREEBSD_IEEE_INTERFACE = @HAVE_FREEBSD_IEEE_INTERFACE@ HAVE_GNUM68K_IEEE_INTERFACE = @HAVE_GNUM68K_IEEE_INTERFACE@ HAVE_GNUPPC_IEEE_INTERFACE = @HAVE_GNUPPC_IEEE_INTERFACE@ --- 109,114 ---- *************** *** 119,135 **** HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ - HAVE_IEEE_COMPARISONS = @HAVE_IEEE_COMPARISONS@ - HAVE_IEEE_DENORMALS = @HAVE_IEEE_DENORMALS@ - HAVE_INLINE = @HAVE_INLINE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ - HAVE_PRINTF_LONGDOUBLE = @HAVE_PRINTF_LONGDOUBLE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ --- 116,129 ---- HAVE_GNUX86_IEEE_INTERFACE = @HAVE_GNUX86_IEEE_INTERFACE@ HAVE_HPUX11_IEEE_INTERFACE = @HAVE_HPUX11_IEEE_INTERFACE@ HAVE_HPUX_IEEE_INTERFACE = @HAVE_HPUX_IEEE_INTERFACE@ HAVE_IRIX_IEEE_INTERFACE = @HAVE_IRIX_IEEE_INTERFACE@ HAVE_NETBSD_IEEE_INTERFACE = @HAVE_NETBSD_IEEE_INTERFACE@ HAVE_OPENBSD_IEEE_INTERFACE = @HAVE_OPENBSD_IEEE_INTERFACE@ HAVE_OS2EMX_IEEE_INTERFACE = @HAVE_OS2EMX_IEEE_INTERFACE@ HAVE_SOLARIS_IEEE_INTERFACE = @HAVE_SOLARIS_IEEE_INTERFACE@ HAVE_SUNOS4_IEEE_INTERFACE = @HAVE_SUNOS4_IEEE_INTERFACE@ HAVE_TRU64_IEEE_INTERFACE = @HAVE_TRU64_IEEE_INTERFACE@ + INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ *************** *** 141,149 **** LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ - MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ - MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ --- 135,142 ---- LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAINT = @MAINT@ MAKEINFO = @MAKEINFO@ + MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ *************** *** 153,167 **** PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! RELEASED = @RELEASED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ - ac_ct_RANLIB = @ac_ct_RANLIB@ - ac_ct_STRIP = @ac_ct_STRIP@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ --- 146,161 ---- PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ ! SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ ! abs_builddir = @abs_builddir@ ! abs_srcdir = @abs_srcdir@ ! abs_top_builddir = @abs_top_builddir@ ! abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ am__leading_dot = @am__leading_dot@ am__tar = @am__tar@ am__untar = @am__untar@ *************** *** 171,198 **** --- 165,203 ---- build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ + builddir = @builddir@ datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ + dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ + htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ + localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ + pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ + psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ + srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ + top_builddir = @top_builddir@ + top_srcdir = @top_srcdir@ noinst_LTLIBRARIES = libgslwavelet.la pkginclude_HEADERS = gsl_wavelet.h gsl_wavelet2d.h INCLUDES = -I$(top_builddir) *************** *** 243,249 **** rm -f "$${dir}/so_locations"; \ done libgslwavelet.la: $(libgslwavelet_la_OBJECTS) $(libgslwavelet_la_DEPENDENCIES) ! $(LINK) $(libgslwavelet_la_LDFLAGS) $(libgslwavelet_la_OBJECTS) $(libgslwavelet_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ --- 248,254 ---- rm -f "$${dir}/so_locations"; \ done libgslwavelet.la: $(libgslwavelet_la_OBJECTS) $(libgslwavelet_la_DEPENDENCIES) ! $(LINK) $(libgslwavelet_la_OBJECTS) $(libgslwavelet_la_LIBADD) $(LIBS) clean-checkPROGRAMS: @list='$(check_PROGRAMS)'; for p in $$list; do \ *************** *** 253,259 **** done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_LDFLAGS) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) --- 258,264 ---- done test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) @rm -f test$(EXEEXT) ! $(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) *************** *** 275,287 **** clean-libtool: -rm -rf .libs _libs - - distclean-libtool: - -rm -f libtool - uninstall-info-am: install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(mkdir_p) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ --- 280,288 ---- clean-libtool: -rm -rf .libs _libs install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) ! test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" @list='$(pkginclude_HEADERS)'; for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ f=$(am__strip_dir) \ *************** *** 346,354 **** -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; \ srcdir=$(srcdir); export srcdir; \ ! list='$(TESTS)'; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ --- 347,355 ---- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags check-TESTS: $(TESTS) ! @failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[ ]'; \ srcdir=$(srcdir); export srcdir; \ ! list=' $(TESTS) '; \ if test -n "$$list"; then \ for tst in $$list; do \ if test -f ./$$tst; then dir=./; \ *************** *** 357,363 **** if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ --- 358,364 ---- if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xpass=`expr $$xpass + 1`; \ failed=`expr $$failed + 1`; \ echo "XPASS: $$tst"; \ *************** *** 369,375 **** elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *" $$tst "*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ --- 370,376 ---- elif test $$? -ne 77; then \ all=`expr $$all + 1`; \ case " $(XFAIL_TESTS) " in \ ! *$$ws$$tst$$ws*) \ xfail=`expr $$xfail + 1`; \ echo "XFAIL: $$tst"; \ ;; \ *************** *** 419,440 **** else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ ! list='$(DISTFILES)'; for file in $$list; do \ ! case $$file in \ ! $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ ! $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ ! esac; \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ - dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ - if test "$$dir" != "$$file" && test "$$dir" != "."; then \ - dir="/$$dir"; \ - $(mkdir_p) "$(distdir)$$dir"; \ - else \ - dir=''; \ - fi; \ if test -d $$d/$$file; then \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ --- 420,440 ---- else :; fi distdir: $(DISTFILES) ! @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ! list='$(DISTFILES)'; \ ! dist_files=`for file in $$list; do echo $$file; done | \ ! sed -e "s|^$$srcdirstrip/||;t" \ ! -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ! case $$dist_files in \ ! */*) $(MKDIR_P) `echo "$$dist_files" | \ ! sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ! sort -u` ;; \ ! esac; \ ! for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ + dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ fi; \ *************** *** 452,458 **** all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(mkdir_p) "$$dir"; \ done install: install-am install-exec: install-exec-am --- 452,458 ---- all-am: Makefile $(LTLIBRARIES) $(HEADERS) installdirs: for dir in "$(DESTDIR)$(pkgincludedir)"; do \ ! test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am *************** *** 486,492 **** distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-libtool distclean-tags dvi: dvi-am --- 486,492 ---- distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ! distclean-tags dvi: dvi-am *************** *** 500,511 **** --- 500,519 ---- install-data-am: install-pkgincludeHEADERS + install-dvi: install-dvi-am + install-exec-am: + install-html: install-html-am + install-info: install-info-am install-man: + install-pdf: install-pdf-am + + install-ps: install-ps-am + installcheck-am: maintainer-clean: maintainer-clean-am *************** *** 525,545 **** ps-am: ! uninstall-am: uninstall-info-am uninstall-pkgincludeHEADERS .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-exec install-exec-am \ ! install-info install-info-am install-man \ ! install-pkgincludeHEADERS install-strip installcheck \ ! installcheck-am installdirs maintainer-clean \ ! maintainer-clean-generic mostlyclean mostlyclean-compile \ ! mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ ! tags uninstall uninstall-am uninstall-info-am \ ! uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- 533,556 ---- ps-am: ! uninstall-am: uninstall-pkgincludeHEADERS ! ! .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \ clean-checkPROGRAMS clean-generic clean-libtool \ clean-noinstLTLIBRARIES ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ ! install-data install-data-am install-dvi install-dvi-am \ ! install-exec install-exec-am install-html install-html-am \ ! install-info install-info-am install-man install-pdf \ ! install-pdf-am install-pkgincludeHEADERS install-ps \ ! install-ps-am install-strip installcheck installcheck-am \ ! installdirs maintainer-clean maintainer-clean-generic \ ! mostlyclean mostlyclean-compile mostlyclean-generic \ ! mostlyclean-libtool pdf pdf-am ps ps-am tags uninstall \ ! uninstall-am uninstall-pkgincludeHEADERS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff -C 2 -rcP -x '*.info' -x '*.info-*' gsl-1.9/wavelet/wavelet.c gsl-1.10/wavelet/wavelet.c *** gsl-1.9/wavelet/wavelet.c 2005-06-26 14:25:38.000000000 +0100 --- gsl-1.10/wavelet/wavelet.c 2007-07-02 17:29:30.000000000 +0100 *************** *** 4,10 **** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but --- 4,10 ---- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by ! * the Free Software Foundation; either version 3 of the License, or (at * your option) any later version. * * This program is distributed in the hope that it will be useful, but