opnsense-ports/security/proxytunnel/files/patch-Makefile
Franco Fichtner a737ce6b05 */*: sync previously available, but unused ports
Taken from: FreeBSD
2015-04-22 06:45:04 +02:00

27 lines
689 B
Text

--- Makefile.orig 2008-02-26 23:31:08 UTC
+++ Makefile
@@ -5,7 +5,7 @@
CC ?= cc
CFLAGS ?= -Wall -O2 -ggdb
-OPTFLAGS = -DREV=$(shell ./getrev.sh)
+OPTFLAGS = -DREV=0
# Comment on non-gnu systems
OPTFLAGS += -DHAVE_GETOPT_LONG
@@ -38,13 +38,14 @@ OPTFLAGS += -DSO_REUSEPORT
# END system dependant block
SSL_LIBS := $(shell pkg-config --libs libssl 2>/dev/null)
+CRYPTO_LIBS := $(shell pkg-config --libs libcrypto 2>/dev/null)
ifeq ($(SSL_LIBS),)
SSL_LIBS := $(shell pkg-config --libs openssl 2>/dev/null)
endif
ifeq ($(SSL_LIBS),)
SSL_LIBS := -lssl -lcrypto
endif
-LDFLAGS += $(SSL_LIBS)
+LDFLAGS += $(SSL_LIBS) $(CRYPTO_LIBS)
PREFIX =/usr/local
BINDIR = $(PREFIX)/bin