diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2015-06-07 23:39:07 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2015-06-07 23:39:07 +0800 |
commit | 7cede788f1783f72b4a868370473ea18177ec4aa (patch) | |
tree | e5383959f2c19b927767995bbbb7cfb381065e3b /science | |
parent | 683975bf04edb1c51f5726a780c1714aeac03bc5 (diff) | |
download | freebsd-ports-gnome-7cede788f1783f72b4a868370473ea18177ec4aa.tar.gz freebsd-ports-gnome-7cede788f1783f72b4a868370473ea18177ec4aa.tar.zst freebsd-ports-gnome-7cede788f1783f72b4a868370473ea18177ec4aa.zip |
- Fix build with FORTRAN enabled
Build failure with FORTRAN enabled was caused by configure-generated LDFLAGS
where -L/usr/lib appeared before -L${LOCALBASE}/lib/gcc48. It is the simplest
way to solve this problem by removing --with-zlib from CONFIGURE_ARGS.
PR: 200590
Submitted by: Taoka Fumiyoshi <fmysh@iijmio-mail.jp>
Diffstat (limited to 'science')
-rw-r--r-- | science/hdf5/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/science/hdf5/Makefile b/science/hdf5/Makefile index 6a17c1064467..5dc8a753acb2 100644 --- a/science/hdf5/Makefile +++ b/science/hdf5/Makefile @@ -25,8 +25,7 @@ CONFIGURE_ARGS= --enable-cxx \ --enable-hl \ --enable-instrument \ --enable-strict-format-checks \ - --with-pthread=/usr \ - --with-zlib=/usr + --with-pthread=/usr GNU_CONFIGURE= yes INSTALL_TARGET= install-strip MAKE_JOBS_UNSAFE= yes |