mirror of
https://git.freebsd.org/ports.git
synced 2025-06-26 15:10:35 -04:00
author. As before, we modify the author's code to use either OpenSSL's -lcrypto or BSD's -lmd /directly/ instead of compiling the bundled definitions digests. We also link with -lz and -lbz2 instead of dlopen-ing them at run-time.
16 lines
449 B
Text
16 lines
449 B
Text
--- Makefile.in 2009-06-18 00:45:22.000000000 -0400
|
|
+++ Makefile.in 2009-07-13 01:07:48.000000000 -0400
|
|
@@ -84,5 +84,5 @@
|
|
DESTDIR =
|
|
|
|
-PKG_DIR = $(PACKAGE_NAME)$(PACKAGE_VERSION)
|
|
+PKG_DIR = $(PACKAGE_NAME)
|
|
pkgdatadir = $(datadir)/$(PKG_DIR)
|
|
pkglibdir = $(libdir)/$(PKG_DIR)
|
|
@@ -154,5 +154,5 @@
|
|
|
|
CPPFLAGS = @CPPFLAGS@
|
|
-LIBS = @PKG_LIBS@ @LIBS@
|
|
+LIBS = @PKG_LIBS@ @LIBS@ -lz -lbz2 -lcrypt ${SSLLIB} -lcrypto
|
|
AR = @AR@
|
|
CFLAGS = @CFLAGS@
|