svn commit: r388724 - head/science/hdf5

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sun Jun 7 15:39:08 UTC 2015


Author: sunpoet
Date: Sun Jun  7 15:39:07 2015
New Revision: 388724
URL: https://svnweb.freebsd.org/changeset/ports/388724

Log:
  - 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 at iijmio-mail.jp>

Modified:
  head/science/hdf5/Makefile

Modified: head/science/hdf5/Makefile
==============================================================================
--- head/science/hdf5/Makefile	Sun Jun  7 15:31:10 2015	(r388723)
+++ head/science/hdf5/Makefile	Sun Jun  7 15:39:07 2015	(r388724)
@@ -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


More information about the svn-ports-all mailing list