diff options
author | Sébastien Fabbro <bicatali@gentoo.org> | 2016-02-24 21:12:42 +0000 |
---|---|---|
committer | Sébastien Fabbro <bicatali@gentoo.org> | 2016-02-24 21:31:43 +0000 |
commit | 96691fbee2869ccf9e21432f9e0b8f8adaaa7c9a (patch) | |
tree | 0954b39a2e779c85669d1b7c69396deda5ed9c1f /sci-astronomy/cpl/files | |
parent | dev-python/mysql-connector-python: Version bump to 2.1.3 and EAPI to 6 (diff) | |
download | gentoo-96691fbee2869ccf9e21432f9e0b8f8adaaa7c9a.tar.gz gentoo-96691fbee2869ccf9e21432f9e0b8f8adaaa7c9a.tar.bz2 gentoo-96691fbee2869ccf9e21432f9e0b8f8adaaa7c9a.zip |
sci-astronomy/cpl: Version bump
Package-Manager: portage-2.2.27
Diffstat (limited to 'sci-astronomy/cpl/files')
-rw-r--r-- | sci-astronomy/cpl/files/cpl-6.6.1-use-system-ltdl.patch | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/sci-astronomy/cpl/files/cpl-6.6.1-use-system-ltdl.patch b/sci-astronomy/cpl/files/cpl-6.6.1-use-system-ltdl.patch new file mode 100644 index 000000000000..37ef2b550eda --- /dev/null +++ b/sci-astronomy/cpl/files/cpl-6.6.1-use-system-ltdl.patch @@ -0,0 +1,41 @@ +use system libtdl from libtool instead of bundled one +see http://www.flameeyes.eu/autotools-mythbuster/libtool/plugins.html +bicatali@gentoo.org + +--- cpl-7.0.orig/configure.ac 2012-06-04 18:38:01.000000000 +0100 ++++ cpl-7.0/configure.ac 2012-06-04 22:14:23.000000000 +0100 +@@ -60,8 +60,9 @@ + AC_ENABLE_STATIC(yes) + AC_ENABLE_SHARED(yes) + +-AC_LIBLTDL_CONVENIENCE +-AC_PROG_LIBTOOL ++LT_INIT([dlopen]) ++LT_CONFIG_LTDL_DIR([libltdl]) ++AC_LIB_LTDL + AC_SUBST(INCLTDL) + AC_SUBST(LIBLTDL) + AC_SUBST(LIBTOOL_DEPS) +@@ -131,7 +135,6 @@ + CPL_CONFIG_FUNC + + # Configure subpackages +-AC_CONFIG_SUBDIRS(libltdl) + + if test ! x$"cpl_cv_with_system_cext" = xyes; then + AC_CONFIG_SUBDIRS([libcext]) +--- cpl-7.0.orig/Makefile.am ++++ cpl-7.0/Makefile.am +@@ -25,11 +25,10 @@ + DISTCLEANFILES = *~ + + if GASGANO_SUPPORT +-libltdl = libltdl + cpljava = cpljava + endif + +-SUBDIRS = $(libltdl) $(libcext) cplcore cplui cpldrs cpldfs $(cpljava) ++SUBDIRS = $(libcext) cplcore cplui cpldrs cpldfs $(cpljava) + + HTML_SUBDIRS = + |