Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 7 Jun 2015 15:39:08 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r388724 - head/science/hdf5
Message-ID:  <201506071539.t57Fd8dI028879@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201506071539.t57Fd8dI028879>