diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2013-04-16 09:03:48 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-04-16 09:06:48 +0000 |
commit | 2cf2bbe846d234c6dea96b0eb58657a71255b8ac (patch) | |
tree | a511b8ad983aab2ddbe4fc105935a579c4bf8306 /testing/clapf/gsl-libs.patch | |
parent | c8145471c54e481520c0e6d292cef43b4ee9215c (diff) | |
download | aports-2cf2bbe846d234c6dea96b0eb58657a71255b8ac.tar.bz2 aports-2cf2bbe846d234c6dea96b0eb58657a71255b8ac.tar.xz |
testing/clapf: upgrade to 0.4.7.4
- fix ldflags which should not be at the end
- fix configure script to use pkgconfig for gsl cflags and libs
- undef a uclibc nameclash - __user
Diffstat (limited to 'testing/clapf/gsl-libs.patch')
-rw-r--r-- | testing/clapf/gsl-libs.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/testing/clapf/gsl-libs.patch b/testing/clapf/gsl-libs.patch new file mode 100644 index 0000000000..7ee3b3bfb1 --- /dev/null +++ b/testing/clapf/gsl-libs.patch @@ -0,0 +1,14 @@ +--- ./configure.in.orig 2013-04-16 08:57:38.886870643 +0000 ++++ ./configure.in 2013-04-16 09:00:49.735350727 +0000 +@@ -275,7 +275,10 @@ + defs="$defs -DHAVE_GSL" + gsl_libs="-lgslcblas -lgsl" + fi +- ++ PKG_CHECK_MODULES(GSL, gsl, [ ++ defs="$defs -DHAVE_GSL $GSL_CFLAGS" ++ gsl_libs="$GSL_LIBS" ++ ]) + + dnl the blackhole feature + |