diff options
author | Sebastien Fabbro <bicatali@gentoo.org> | 2012-03-13 16:43:11 +0000 |
---|---|---|
committer | Sebastien Fabbro <bicatali@gentoo.org> | 2012-03-13 16:43:11 +0000 |
commit | 1a4fa895b874dc9538aea9d12fbc7ef3a7cf791e (patch) | |
tree | b99c86c0955ae6f2a055c926ec139ae1347e42f2 /sci-libs | |
parent | Version bump (diff) | |
download | gentoo-2-1a4fa895b874dc9538aea9d12fbc7ef3a7cf791e.tar.gz gentoo-2-1a4fa895b874dc9538aea9d12fbc7ef3a7cf791e.tar.bz2 gentoo-2-1a4fa895b874dc9538aea9d12fbc7ef3a7cf791e.zip |
Version bump
(Portage version: 2.1.10.44/cvs/Linux x86_64)
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/arprec/ChangeLog | 9 | ||||
-rw-r--r-- | sci-libs/arprec/arprec-2.2.10.ebuild (renamed from sci-libs/arprec/arprec-2.2.8.ebuild) | 4 | ||||
-rw-r--r-- | sci-libs/arprec/arprec-2.2.2.ebuild | 61 | ||||
-rw-r--r-- | sci-libs/arprec/arprec-2.2.7.ebuild | 55 | ||||
-rw-r--r-- | sci-libs/arprec/files/arprec-2.2.2-gcc44.patch | 59 | ||||
-rw-r--r-- | sci-libs/arprec/files/arprec-2.2.8-autotools.patch | 324 |
6 files changed, 10 insertions, 502 deletions
diff --git a/sci-libs/arprec/ChangeLog b/sci-libs/arprec/ChangeLog index d9ae4b76c121..b0949900229b 100644 --- a/sci-libs/arprec/ChangeLog +++ b/sci-libs/arprec/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for sci-libs/arprec # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/arprec/ChangeLog,v 1.8 2012/03/06 18:00:03 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/arprec/ChangeLog,v 1.9 2012/03/13 16:43:11 bicatali Exp $ + +*arprec-2.2.10 (13 Mar 2012) + + 13 Mar 2012; Sébastien Fabbro <bicatali@gentoo.org> -arprec-2.2.2.ebuild, + -files/arprec-2.2.2-gcc44.patch, -arprec-2.2.7.ebuild, -arprec-2.2.8.ebuild, + -files/arprec-2.2.8-autotools.patch, +arprec-2.2.10.ebuild: + Version bump *arprec-2.2.9 (06 Mar 2012) diff --git a/sci-libs/arprec/arprec-2.2.8.ebuild b/sci-libs/arprec/arprec-2.2.10.ebuild index 03a48b62fcb4..5c8980675bd7 100644 --- a/sci-libs/arprec/arprec-2.2.8.ebuild +++ b/sci-libs/arprec/arprec-2.2.10.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/arprec/arprec-2.2.8.ebuild,v 1.1 2012/01/13 04:35:53 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/arprec/arprec-2.2.10.ebuild,v 1.1 2012/03/13 16:43:11 bicatali Exp $ EAPI=4 @@ -24,7 +24,7 @@ pkg_setup() { } src_prepare() { - epatch "${FILESDIR}"/${P}-autotools.patch + epatch "${FILESDIR}"/${PN}-2.2.9-autotools.patch eautoreconf } diff --git a/sci-libs/arprec/arprec-2.2.2.ebuild b/sci-libs/arprec/arprec-2.2.2.ebuild deleted file mode 100644 index cd7f12482997..000000000000 --- a/sci-libs/arprec/arprec-2.2.2.ebuild +++ /dev/null @@ -1,61 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/arprec/arprec-2.2.2.ebuild,v 1.5 2011/06/21 15:42:20 jlec Exp $ - -EAPI=2 - -inherit eutils fortran-2 - -DESCRIPTION="Arbitrary precision float arithmetics and functions" -HOMEPAGE="http://crd.lbl.gov/~dhbailey/mpdist/" -SRC_URI="http://crd.lbl.gov/~dhbailey/mpdist/${P}.tar.gz" - -SLOT="0" -LICENSE="BSD" -KEYWORDS="~x86" -IUSE="fortran qd" - -DEPEND=" - fortran? ( virtual/fortran ) - qd? ( sci-libs/qd )" -RDEPEND="${DEPEND}" - -pkg_setup() { - use fortran && fortran-2_pkg_setup -} - -src_prepare() { - # bug #273996 - epatch "${FILESDIR}"/${P}-gcc44.patch -} - -src_configure() { - econf \ - $(use_enable fortran enable_fortran) \ - $(use_enable qd enable_qd) -} - -src_compile() { - emake || die "emake failed" - if use fortran; then - emake toolkit || die "emake toolkit failed" - fi -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc README AUTHORS NEWS TODO || die "dodoc failed" - if use fortran; then - cd toolkit - ./mathinit || die "mathinit failed" - exeinto /usr/libexec/${PN} - doexe mathtool || die "mathtool install failed" - insinto /usr/libexec/${PN} - doins *.dat || die "mathtool data install failed" - docinto toolkit - dodoc README || die "mathtool doc install failed" - fi - cd "${D}"/usr/share/doc || die "cd failed" - mv ${PN}/${PN}.pdf ${PF}/ || die "mv failed" - rm -rf ${PN}/ || die "rm failed" -} diff --git a/sci-libs/arprec/arprec-2.2.7.ebuild b/sci-libs/arprec/arprec-2.2.7.ebuild deleted file mode 100644 index 1247794ba018..000000000000 --- a/sci-libs/arprec/arprec-2.2.7.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/arprec/arprec-2.2.7.ebuild,v 1.3 2011/06/21 15:42:20 jlec Exp $ - -EAPI=4 - -inherit eutils fortran-2 - -DESCRIPTION="Arbitrary precision float arithmetics and functions" -HOMEPAGE="http://crd.lbl.gov/~dhbailey/mpdist/" -SRC_URI="http://crd.lbl.gov/~dhbailey/mpdist/${P}.tar.gz" - -SLOT="0" -LICENSE="BSD" -KEYWORDS="~x86" -IUSE="fortran qd" - -DEPEND=" - fortran? ( virtual/fortran ) - qd? ( sci-libs/qd )" -RDEPEND="${DEPEND}" - -pkg_setup() { - use fortran && fortran-2_pkg_setup -} - -src_configure() { - econf \ - $(use_enable fortran enable_fortran) \ - $(use_enable qd enable_qd) -} - -src_compile() { - emake - if use fortran; then - emake toolkit - fi -} - -src_install() { - default - if use fortran; then - cd toolkit - ./mathinit || die "mathinit failed" - exeinto /usr/libexec/${PN} - doexe mathtool - insinto /usr/libexec/${PN} - doins *.dat - docinto toolkit - dodoc README - fi - cd "${D}"/usr/share/doc || die "cd failed" - mv ${PN}/${PN}.pdf ${PF}/ || die "mv failed" - rm -rf ${PN}/ || die "rm failed" -} diff --git a/sci-libs/arprec/files/arprec-2.2.2-gcc44.patch b/sci-libs/arprec/files/arprec-2.2.2-gcc44.patch deleted file mode 100644 index 90305394c314..000000000000 --- a/sci-libs/arprec/files/arprec-2.2.2-gcc44.patch +++ /dev/null @@ -1,59 +0,0 @@ -diff -NrU5 arprec-2.2.2.original/src/dotd.cpp arprec-2.2.2/src/dotd.cpp ---- arprec-2.2.2.original/src/dotd.cpp 2009-07-02 17:59:29.000000000 -0600 -+++ arprec-2.2.2/src/dotd.cpp 2009-07-02 18:00:46.000000000 -0600 -@@ -8,10 +8,11 @@ - * Copyright (c) 2002 - * - */ - #include <arprec/mp_real.h> - #include "small_inline.h" -+#include <cstdio> - - using std::cerr; - using std::endl; - - void mp_real::mpdotd(int n, int isa, const mp_real a[], -diff -NrU5 arprec-2.2.2.original/src/out.cpp arprec-2.2.2/src/out.cpp ---- arprec-2.2.2.original/src/out.cpp 2009-07-02 17:59:29.000000000 -0600 -+++ arprec-2.2.2/src/out.cpp 2009-07-02 18:09:40.000000000 -0600 -@@ -10,10 +10,11 @@ - */ - #define _CRT_SECURE_NO_DEPRECATE - #include <cassert> - #include <arprec/mp_real.h> - #include "small_inline.h" -+#include <cstdio> - - using std::cerr; - using std::endl; - - /* This routine is deprecated. -diff -NrU5 arprec-2.2.2.original/src/outc.cpp arprec-2.2.2/src/outc.cpp ---- arprec-2.2.2.original/src/outc.cpp 2009-07-02 17:59:29.000000000 -0600 -+++ arprec-2.2.2/src/outc.cpp 2009-07-02 18:07:15.000000000 -0600 -@@ -10,10 +10,11 @@ - */ - #define _CRT_SECURE_NO_DEPRECATE - #include <cassert> - #include <arprec/mp_real.h> - #include "small_inline.h" -+#include <cstdio> - - using std::cerr; - using std::endl; - - /* This routine is deprecated. -diff -NrU5 arprec-2.2.2.original/src/outx.cpp arprec-2.2.2/src/outx.cpp ---- arprec-2.2.2.original/src/outx.cpp 2009-07-02 17:59:29.000000000 -0600 -+++ arprec-2.2.2/src/outx.cpp 2009-07-02 18:11:30.000000000 -0600 -@@ -1,9 +1,10 @@ - #define _CRT_SECURE_NO_DEPRECATE - #include <arprec/mp_real.h> - #include <arprec/mp_complex.h> - #include "small_inline.h" -+#include <cstdio> - - using std::cerr; - using std::endl; - - /* This routine is deprecated. diff --git a/sci-libs/arprec/files/arprec-2.2.8-autotools.patch b/sci-libs/arprec/files/arprec-2.2.8-autotools.patch deleted file mode 100644 index af6d96960b18..000000000000 --- a/sci-libs/arprec/files/arprec-2.2.8-autotools.patch +++ /dev/null @@ -1,324 +0,0 @@ -diff -Nur arprec-2.2.8.orig/arprec-config.in arprec-2.2.8/arprec-config.in ---- arprec-2.2.8.orig/arprec-config.in 2012-01-12 19:17:33.000000000 +0000 -+++ arprec-2.2.8/arprec-config.in 2012-01-13 04:23:40.000000000 +0000 -@@ -17,7 +17,7 @@ - FC="@FC@" - FCLIBS="-L$libdir -larprecmod -larprec @LIBS@ @FCLIBS@" - FCFLAGS="@CONFIG_FCFLAGS@" --MODINC="@ax_f90_modflag@$libdir/arprec" -+MODINC="@ax_f90_modflag@$includedir/arprec" - FMAINLIB="-L$libdir -larprec_f_main" - - configure_args="@CONFIGURE_ARGS@" -diff -Nur arprec-2.2.8.orig/configure.ac arprec-2.2.8/configure.ac ---- arprec-2.2.8.orig/configure.ac 2012-01-12 19:17:33.000000000 +0000 -+++ arprec-2.2.8/configure.ac 2012-01-12 19:30:38.000000000 +0000 -@@ -233,8 +233,9 @@ - AM_CONDITIONAL(HAVE_FORTRAN, [test "x$enable_fortran" = "xyes"]) - AM_CONDITIONAL(UPCASE_MODULE, [test "$module_case" = "uppercase"]) - --# Check ranlib --AC_PROG_RANLIB -+# Check libtool (will check for ranlib and friends) -+AC_DISABLE_SHARED -+AC_PROG_LIBTOOL - - # Checks for libraries. - -diff -Nur arprec-2.2.8.orig/fortran/Makefile.am arprec-2.2.8/fortran/Makefile.am ---- arprec-2.2.8.orig/fortran/Makefile.am 2012-01-12 19:17:33.000000000 +0000 -+++ arprec-2.2.8/fortran/Makefile.am 2012-01-13 00:06:20.000000000 +0000 -@@ -1,10 +1,10 @@ - if HAVE_FORTRAN - AM_CPPFLAGS = -I$(top_builddir) -I$(top_builddir)/include -I$(top_srcdir)/include --LDADD = libarprec_f_main.a libarprecmod.a $(top_builddir)/src/libarprec.a $(FCLIBS) -+LDADD = libarprec_f_main.la libarprecmod.la $(top_builddir)/src/libarprec.la $(FCLIBS) - --lib_LIBRARIES = libarprecmod.a libarprec_f_main.a --libarprecmod_a_SOURCES = f_mp.cpp mp_mod.f mp_modm.f mp_modx.f --libarprec_f_main_a_SOURCES = main.cpp -+lib_LTLIBRARIES = libarprecmod.la libarprec_f_main.la -+libarprecmod_la_SOURCES = f_mp.cpp mp_mod.f mp_modm.f mp_modx.f -+libarprec_f_main_la_SOURCES = main.cpp - - if UPCASE_MODULE - MPCOMPLEXMOD = MPCOMPLEXMOD.$(module_ext) -@@ -29,15 +29,16 @@ - MODULES = $(MPCOMPLEXMOD) $(MPDEFMOD) $(MPGENMOD) $(MPINTMOD) \ - $(MPMODULE) $(MPMODULEM) $(MPMODULEX) $(MPREALMOD) - --$(MPDEFMOD) $(MPINTMOD) $(MPREALMOD) $(MPCOMPLEXMOD) $(MPGENMOD) $(MPMODULE): mp_mod.o -+$(MPDEFMOD) $(MPINTMOD) $(MPREALMOD) $(MPCOMPLEXMOD) $(MPGENMOD) $(MPMODULE): mp_mod.lo - --mp_modm.o: mp_mod.o --$(MPMODULEM): mp_modm.o -+mp_modm.lo: mp_mod.lo -+$(MPMODULEM): mp_modm.lo - --mp_modx.o: mp_mod.o --$(MPMODULEX): mp_modx.o -+mp_modx.lo: mp_mod.lo -+$(MPMODULEX): mp_modx.lo - --pkglib_DATA = $(MODULES) -+arprecmoddir = $(includedir)/arprec -+arprecmod_HEADERS = $(MODULES) - - DEMO = pslq1$(EXEEXT) pslq2$(EXEEXT) pslq3$(EXEEXT) pslqm1$(EXEEXT) \ - pslqm2$(EXEEXT) pslqm3$(EXEEXT) quadgs$(EXEEXT) quaderf$(EXEEXT) \ -diff -Nur arprec-2.2.8.orig/m4/ax_cxx_fma.m4 arprec-2.2.8/m4/ax_cxx_fma.m4 ---- arprec-2.2.8.orig/m4/ax_cxx_fma.m4 2012-01-12 19:17:33.000000000 +0000 -+++ arprec-2.2.8/m4/ax_cxx_fma.m4 2012-01-12 23:13:06.000000000 +0000 -@@ -19,14 +19,14 @@ - case $name in - ibm) - # IBM VisualAge C++ __fmadd / __fmsub. -- AC_RUN_IFELSE([#include <cmath> -+ AC_RUN_IFELSE([AC_LANG_SOURCE([#include <cmath> - #include <builtins.h> - int main() { - double d = std::ldexp(1.0, -52); - double x = __fmadd(1.0 + d, 1.0 - d, -1.0); - double y = __fmsub(1.0 + d, 1.0 - d, 1.0); - return (x == -d*d && y == -d*d) ? 0 : 1; -- }], -+ }])], - [ax_cxx_fma="__fmadd(x,y,z)" - ax_cxx_fms="__fmsub(x,y,z)" - AC_DEFINE([ARPREC_VACPP_BUILTINS_H], [1], -@@ -34,22 +34,22 @@ - ;; - gnu) - # Later gcc (3.4 and later) have __builtin_fma that seems to work. -- AC_RUN_IFELSE([#include <cmath> -+ AC_RUN_IFELSE([AC_LANG_SOURCE([#include <cmath> - int main() { - double d = std::ldexp(1.0, -52); - return (__builtin_fma(1.0 + d, 1.0 - d, -1.0) == -d*d ? 0 : 1); -- }], -+ }])], - [ax_cxx_fma="__builtin_fma(x,y,z)" - ax_cxx_fms="__builtin_fma(x,y,-z)"]) - ;; - c99) - # Try C99 fma() function. Some platforms doesn't seem to implement this - # correctly (Apple gcc-3.3 for example). -- AC_RUN_IFELSE([#include <cmath> -+ AC_RUN_IFELSE([AC_LANG_SOURCE([#include <cmath> - int main() { - double d = std::ldexp(1.0, -52); - return (fma(1.0 + d, 1.0 - d, -1.0) == -d*d ? 0 : 1); -- }], -+ }])], - [ax_cxx_fma="fma(x,y,z)" - ax_cxx_fms="fma(x,y,-z)"]) - ;; -@@ -57,11 +57,11 @@ - # Try relying on the compiler to optimize x * y + z into an fma. - # This method is not recommended since if it is inlined it does not - # always produce the same correct code. -- AC_RUN_IFELSE([#include <cmath> -+ AC_RUN_IFELSE([AC_LANG_SOURCE([#include <cmath> - int main() { - double d = std::ldexp(1.0, -52); - return ( (1.0 + d) * (1.0 - d) - 1.0 == -d*d ? 0 : 1); -- }], -+ }])], - [ax_cxx_fma="((x)*(y) + (z))" - ax_cxx_fms="((x)*(y) - (z))"]) - ;; -diff -Nur arprec-2.2.8.orig/m4/ax_f90_module_flag.m4 arprec-2.2.8/m4/ax_f90_module_flag.m4 ---- arprec-2.2.8.orig/m4/ax_f90_module_flag.m4 2012-01-12 19:17:33.000000000 +0000 -+++ arprec-2.2.8/m4/ax_f90_module_flag.m4 2012-01-12 23:11:22.000000000 +0000 -@@ -16,7 +16,7 @@ - - AC_DEFUN([AX_F90_MODULE_FLAG],[ - AC_CACHE_CHECK([fortran 90 modules inclusion flag], --ax_f90_modflag, -+ax_cv_f90_modflag, - [AC_LANG_PUSH(Fortran) - i=0 - while test \( -f tmpdir_$i \) -o \( -d tmpdir_$i \) ; do -@@ -24,24 +24,24 @@ - done - mkdir tmpdir_$i - cd tmpdir_$i --AC_COMPILE_IFELSE([module conftest_module -+AC_COMPILE_IFELSE([AC_LANG_SOURCE([module conftest_module - contains - subroutine conftest_routine - write(*,'(a)') 'gotcha!' - end subroutine conftest_routine - end module conftest_module -- ],[],[]) -+ ])],[],[]) - cd .. - ax_f90_modflag="not found" - for ax_flag in "-I " "-M" "-p"; do - if test "$ax_f90_modflag" = "not found" ; then - ax_save_FCFLAGS="$FCFLAGS" - FCFLAGS="$ax_save_FCFLAGS ${ax_flag}tmpdir_$i" -- AC_COMPILE_IFELSE([program conftest_program -+ AC_COMPILE_IFELSE([AC_LANG_SOURCE([program conftest_program - use conftest_module - call conftest_routine - end program conftest_program -- ],[ax_f90_modflag="$ax_flag"],[]) -+ ])],[ax_f90_modflag="$ax_flag"],[]) - FCFLAGS="$ax_save_FCFLAGS" - fi - done -diff -Nur arprec-2.2.8.orig/m4/ax_f90_module_style.m4 arprec-2.2.8/m4/ax_f90_module_style.m4 ---- arprec-2.2.8.orig/m4/ax_f90_module_style.m4 2012-01-12 19:17:33.000000000 +0000 -+++ arprec-2.2.8/m4/ax_f90_module_style.m4 2012-01-12 23:11:22.000000000 +0000 -@@ -21,7 +21,7 @@ - - AC_DEFUN([AX_F90_MODULE_STYLE],[ - AC_CACHE_CHECK([fortran 90 modules naming style], --ax_f90_module_style, -+ax_cv_f90_module_style, - [AC_LANG_PUSH(Fortran) - i=0 - while test \( -f tmpdir_$i \) -o \( -d tmpdir_$i \) ; do -@@ -29,13 +29,13 @@ - done - mkdir tmpdir_$i - cd tmpdir_$i --AC_COMPILE_IFELSE([module conftest_module -+AC_COMPILE_IFELSE([AC_LANG_SOURCE([module conftest_module - contains - subroutine conftest_routine - write(*,'(a)') 'gotcha!' - end subroutine conftest_routine - end module conftest_module -- ], -+ ])], - [ax_f90_modext=`ls | sed -n 's,conftest_module\.,,p'` - if test x$ax_f90_modext = x ; then - dnl Some F90 compilers put module filename in uppercase letters -diff -Nur arprec-2.2.8.orig/m4/ax_fc_backslash_flag.m4 arprec-2.2.8/m4/ax_fc_backslash_flag.m4 ---- arprec-2.2.8.orig/m4/ax_fc_backslash_flag.m4 2012-01-12 19:17:33.000000000 +0000 -+++ arprec-2.2.8/m4/ax_fc_backslash_flag.m4 2012-01-12 23:13:50.000000000 +0000 -@@ -11,9 +11,9 @@ - if test "x$ax_flag" != "xnone"; then - FCFLAGS="$save_FCFLAGS $ax_flag" - fi -- AC_COMPILE_IFELSE([[program test -+ AC_COMPILE_IFELSE([AC_LANG_SOURCE([program test - print *, '\' -- end program]], [ax_fc_backslash_flag=$ax_flag]) -+ end program])], [ax_fc_backslash_flag=$ax_flag]) - fi - done - AC_LANG_POP(Fortran) -diff -Nur arprec-2.2.8.orig/m4/ax_fc_etime.m4 arprec-2.2.8/m4/ax_fc_etime.m4 ---- arprec-2.2.8.orig/m4/ax_fc_etime.m4 2012-01-12 19:17:33.000000000 +0000 -+++ arprec-2.2.8/m4/ax_fc_etime.m4 2012-01-12 23:11:22.000000000 +0000 -@@ -4,9 +4,9 @@ - ax_fc_etime= - ax_fc_etime_names="etime etime_" - for name in $ax_fc_etime_names; do -- AC_LINK_IFELSE([AC_LANG_PROGRAM(, [[ -+ AC_LINK_IFELSE([AC_LANG_PROGRAM(, [AC_LANG_SOURCE([ - real*4 t(2), tot -- tot = $name(t)]])], -+ tot = $name(t)])])], - [ax_fc_etime=$name], []) - if test "x$ax_fc_etime" != "x"; then - break; -diff -Nur arprec-2.2.8.orig/Makefile.am arprec-2.2.8/Makefile.am ---- arprec-2.2.8.orig/Makefile.am 2012-01-12 19:17:33.000000000 +0000 -+++ arprec-2.2.8/Makefile.am 2012-01-12 23:53:09.000000000 +0000 -@@ -2,21 +2,20 @@ - SUBDIRS = src tests include fortran toolkit - - bin_SCRIPTS=arprec-config --docdir=${datadir}/doc/${PACKAGE} - dist_doc_DATA = README doc/arprec.pdf - - cpp-demo: -- cd tests && make demo -+ $(MAKE) -C tests demo - - if HAVE_FORTRAN - - fortran-demo: -- cd fortran && make demo -+ $(MAKE) -C fortran demo - - demo: fortran-demo cpp-demo - - toolkit: -- cd toolkit && make toolkit -+ $(MAKE) -C toolkit toolkit - - else - -@@ -31,7 +30,7 @@ - endif - - time: -- cd tests && make time -+ $(MAKE) -C tests time - - changelog: - git log >ChangeLog -diff -Nur arprec-2.2.8.orig/src/Makefile.am arprec-2.2.8/src/Makefile.am ---- arprec-2.2.8.orig/src/Makefile.am 2012-01-12 19:17:33.000000000 +0000 -+++ arprec-2.2.8/src/Makefile.am 2012-01-12 19:20:48.000000000 +0000 -@@ -13,9 +13,9 @@ - dble.cpp \ - small_inline.h - --lib_LIBRARIES = libarprec.a -+lib_LTLIBRARIES = libarprec.la - --libarprec_a_SOURCES = $(SRC) -+libarprec_la_SOURCES = $(SRC) - - AM_CPPFLAGS = -I$(top_builddir) -I$(top_builddir)/include -I$(top_srcdir)/include - -diff -Nur arprec-2.2.8.orig/tests/Makefile.am arprec-2.2.8/tests/Makefile.am ---- arprec-2.2.8.orig/tests/Makefile.am 2012-01-12 19:17:33.000000000 +0000 -+++ arprec-2.2.8/tests/Makefile.am 2012-01-12 19:20:19.000000000 +0000 -@@ -1,4 +1,4 @@ --LDADD = $(top_builddir)/src/libarprec.a -+LDADD = $(top_builddir)/src/libarprec.la - AM_CPPFLAGS = -I$(top_builddir) -I$(top_builddir)/include -I$(top_srcdir)/include - - TESTS = mp_test c_mp_test io -diff -Nur arprec-2.2.8.orig/toolkit/Makefile.am arprec-2.2.8/toolkit/Makefile.am ---- arprec-2.2.8.orig/toolkit/Makefile.am 2012-01-12 19:17:33.000000000 +0000 -+++ arprec-2.2.8/toolkit/Makefile.am 2012-01-13 04:29:03.000000000 +0000 -@@ -1,9 +1,9 @@ - if HAVE_FORTRAN - AM_CPPFLAGS=-I$(top_builddir) - AM_FFLAGS=@ax_f90_modflag@$(top_builddir)/fortran --LDADD = $(top_builddir)/fortran/libarprec_f_main.a \ -- $(top_builddir)/fortran/libarprecmod.a \ -- $(top_builddir)/src/libarprec.a $(FCLIBS) -+LDADD = $(top_builddir)/fortran/libarprec_f_main.la \ -+ $(top_builddir)/fortran/libarprecmod.la \ -+ $(top_builddir)/src/libarprec.la $(FCLIBS) - - TOOLKIT = mathinit$(EXEEXT) mathtool$(EXEEXT) - EXTRA_PROGRAMS = $(TOOLKIT) -@@ -19,6 +19,18 @@ - nodist_mathtool_SOURCES = second.f - nodist_EXTRA_mathtool_SOURCES = dummy.cpp - mathtool_LINK = $(CXXLINK) -+if UPCASE_MODULE -+GLOBDATAMOD = GLOBDATA.$(module_ext) -+else -+GLOBDATAMOD = globdata.$(module_ext) -+endif -+$(GLOBDATAMOD): globdata.o -+mathinit.o: $(GLOBDATAMOD) -+mathtool.o: $(GLOBDATAMOD) -+pqlsub.o: $(GLOBDATAMOD) -+rootsub.o: $(GLOBDATAMOD) -+quadsub.o: $(GLOBDATAMOD) -+zetapz.o: $(GLOBDATAMOD) - - toolkit: $(TOOLKIT) - |