summaryrefslogtreecommitdiff
path: root/security/zebedee/files
diff options
context:
space:
mode:
authorDaniel Baker <dbaker@FreeBSD.org>2001-01-25 18:16:45 +0000
committerDaniel Baker <dbaker@FreeBSD.org>2001-01-25 18:16:45 +0000
commitb8d6d9d462e5c5e13a28719397a03789c62f8dea (patch)
treeafa2467609d48c1fbac9700e1346a277bd490617 /security/zebedee/files
parent4b06a6b98ce3808bbbedd0118177de4f9b1070cf (diff)
downloadfreebsd-ports-b8d6d9d462e5c5e13a28719397a03789c62f8dea.zip
Update version: 1.3.0 -> 2.0.1
Submitted by: Maintainer (Greg Hewgill <greg@hewgill.com>)
Diffstat (limited to 'security/zebedee/files')
-rw-r--r--security/zebedee/files/patch-aa32
1 files changed, 14 insertions, 18 deletions
diff --git a/security/zebedee/files/patch-aa b/security/zebedee/files/patch-aa
index b1ecc24ca32f..c9e7fe144d23 100644
--- a/security/zebedee/files/patch-aa
+++ b/security/zebedee/files/patch-aa
@@ -1,21 +1,20 @@
---- Makefile.orig Fri Jan 21 13:47:17 2000
-+++ Makefile Sat Feb 5 23:59:19 2000
+--- Makefile.orig Sun Aug 13 11:06:36 2000
++++ Makefile Thu Jan 25 04:08:11 2001
@@ -3,7 +3,7 @@
#
- # $Id: Makefile,v 1.10 2000/01/21 21:46:41 nwinton Exp nwinton $
+ # $Id: Makefile,v 1.13 2000/06/05 21:34:27 nwinton Exp nwinton $
-OS =
+OS = freebsd
###
### Locations of tools, libraries and installation directories.
-@@ -17,33 +17,34 @@
- CC_win32 = /gcc-2.95/bin/gcc
+@@ -17,12 +17,13 @@
+ CC_win32 = gcc -mno-cygwin
CC_linux = gcc
CC_solaris = gcc
--CC = $(CC_$(OS))
+CC_freebsd = cc
-+CC ?= $(CC_$(OS))
+ CC = $(CC_$(OS))
# Optimise/debug compilation
@@ -24,11 +23,8 @@
+OPTIM = -Wall
# Location of gmp include and library
-
--GMPINC = -I../gmp-2.0.2
--GMPLIB = ../gmp-2.0.2/libgmp.a
-+GMPINC =
-+GMPLIB = -lgmp
+ #
+@@ -34,19 +35,19 @@
# Location of Blowfish include and library
@@ -51,10 +47,10 @@
-BZLIB = ../bzip2-0.9.5d/libbz2.a
+BZINC = -I${LOCALBASE}/include
+BZLIB = ${LOCALBASE}/lib/libbz2.a
+
#
# Tools needed for Perl "POD"-format documentation conversion.
- #
-@@ -90,6 +91,7 @@
+@@ -94,6 +95,7 @@
DEFINES_win32 = # Win32
DEFINES_linux = -D_REENTRANT -DHAVE_PTHREADS # Linux
DEFINES_solaris = -D_REENTRANT -DHAVE_PTHREADS # Solaris
@@ -62,15 +58,15 @@
DEFINES = $(DEFINES_$(OS))
# Suffix for executables
-@@ -101,6 +103,7 @@
-
+@@ -106,6 +108,7 @@
OSLIBS_win32 = -lwsock32 -lwinmm # Win32
OSLIBS_linux = -lpthread # Linux
-+OSLIBS_freebsd = # FreeBSD
OSLIBS_solaris = -lsocket -lnsl -lthread # Solaris
++OSLIBS_freebsd = # FreeBSD
OSLIBS = $(OSLIBS_$(OS))
-@@ -116,7 +119,8 @@
+ # Supplementary object files (Win32 ONLY)
+@@ -120,7 +123,8 @@
#### You REALLY shouldn't have to modify anything beyond here ...
####