1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-12 07:27:57 +00:00
freebsd-ports/biology/plink/files/patch-Makefile
Tijl Coosemans 564a799c71 Convert all USE_FORTRAN=yes to "USES=fortran, USE_GCC=yes". In most cases
USE_GCC=yes has been omitted though.

Remove USE_FORTRAN handling from bsd.port.mk and bsd.gcc.mk.

Minor cleanups in some ports like USE_GMAKE, NOPORTDOCS,...

Exp-run:	bdrewery
Approved by:	portmgr (bdrewery)
2014-02-16 17:15:31 +00:00

54 lines
1.1 KiB
Plaintext

--- Makefile.orig 2009-10-10 11:00:20.000000000 -0500
+++ Makefile 2012-09-07 08:24:26.000000000 -0500
@@ -26,25 +26,25 @@
WITH_WEBCHECK = 1
FORCE_32BIT =
WITH_ZLIB = 1
-WITH_LAPACK =
-FORCE_DYNAMIC =
+WITH_LAPACK = 1
+FORCE_DYNAMIC = 1
# Put C++ compiler here; Windows has it's own specific version
CXX_UNIX = g++
CXX_WIN = c:\bin\mingw\bin\mingw32-g++.exe
# Any other compiler flags here ( -Wall, -g, etc)
-CXXFLAGS =
+# CXXFLAGS =
# Misc
-LIB_LAPACK = /usr/lib/liblapack.so.3
+LIB_LAPACK = ${LDFLAGS} -L${LOCALBASE}/lib -llapack -lblas
# --------------------------------------------------------------------
# Do not edit below this line
# --------------------------------------------------------------------
-CXXFLAGS += -O3 -I.
+CXXFLAGS += -I.
OUTPUT = plink
# Some system specific flags
@@ -58,8 +58,8 @@
endif
ifeq ($(SYS),UNIX)
- CXXFLAGS += -DUNIX
- CXX = $(CXX_UNIX)
+ CXXFLAGS += -DUNIX -Dfopen64=fopen
+ CXX ?= $(CXX_UNIX)
ifndef FORCE_DYNAMIC
CXXFLAGS += -static
endif
@@ -128,7 +128,7 @@
LIB += -ldl
endif
ifeq ($(SYS),UNIX)
-LIB += -ldl -lcrypt
+LIB += -lcrypt
endif
endif