2000-01-23 05:32:37 +00:00
|
|
|
--- ../zebedee-1.3.0.orig/Makefile Fri Jan 21 13:47:17 2000
|
|
|
|
+++ Makefile Sat Jan 22 19:15:21 2000
|
|
|
|
@@ -3,7 +3,7 @@
|
|
|
|
#
|
|
|
|
# $Id: Makefile,v 1.10 2000/01/21 21:46:41 nwinton Exp nwinton $
|
2000-01-09 08:15:42 +00:00
|
|
|
|
2000-01-23 05:32:37 +00:00
|
|
|
-OS =
|
|
|
|
+OS = freebsd
|
|
|
|
|
|
|
|
###
|
|
|
|
### Locations of tools, libraries and installation directories.
|
|
|
|
@@ -17,6 +17,7 @@
|
|
|
|
CC_win32 = /gcc-2.95/bin/gcc
|
|
|
|
CC_linux = gcc
|
|
|
|
CC_solaris = gcc
|
|
|
|
+CC_freebsd = cc
|
|
|
|
CC = $(CC_$(OS))
|
|
|
|
|
|
|
|
# Optimise/debug compilation
|
|
|
|
@@ -26,24 +27,24 @@
|
2000-01-09 08:15:42 +00:00
|
|
|
|
|
|
|
# Location of gmp include and library
|
|
|
|
|
|
|
|
-GMPINC = -I../gmp-2.0.2
|
|
|
|
-GMPLIB = ../gmp-2.0.2/libgmp.a
|
2000-01-23 05:32:37 +00:00
|
|
|
+GMPINC =
|
2000-01-09 08:15:42 +00:00
|
|
|
+GMPLIB = -lgmp
|
|
|
|
|
|
|
|
# Location of Blowfish include and library
|
|
|
|
|
|
|
|
-BFINC = -I../blowfish
|
|
|
|
-BFLIB = ../blowfish/libblowfish.a
|
|
|
|
+BFINC = -I${PREFIX}/include/openssl
|
|
|
|
+BFLIB = ${PREFIX}/lib/libcrypto.a
|
|
|
|
|
|
|
|
# Location of zlib include and library
|
|
|
|
|
|
|
|
-ZINC = -I../zlib-1.1.3
|
|
|
|
-ZLIB = ../zlib-1.1.3/libz.a
|
|
|
|
+ZINC =
|
|
|
|
+ZLIB = -lz
|
|
|
|
|
|
|
|
# Location of bzlib include and library
|
|
|
|
# Set these empty if you don't want bzib2 support
|
|
|
|
|
|
|
|
-BZINC = -I../bzip2-0.9.5d
|
|
|
|
-BZLIB = ../bzip2-0.9.5d/libbz2.a
|
|
|
|
+BZINC = -I${PREFIX}/include
|
|
|
|
+BZLIB = ${PREFIX}/lib/libbz2.a
|
2000-01-23 05:32:37 +00:00
|
|
|
#
|
|
|
|
# Tools needed for Perl "POD"-format documentation conversion.
|
|
|
|
#
|
|
|
|
@@ -90,6 +91,7 @@
|
|
|
|
DEFINES_win32 = # Win32
|
|
|
|
DEFINES_linux = -D_REENTRANT -DHAVE_PTHREADS # Linux
|
|
|
|
DEFINES_solaris = -D_REENTRANT -DHAVE_PTHREADS # Solaris
|
|
|
|
+DEFINES_freebsd = -D_REENTRANT # FreeBSD
|
|
|
|
DEFINES = $(DEFINES_$(OS))
|
2000-01-09 08:15:42 +00:00
|
|
|
|
|
|
|
# Suffix for executables
|
2000-01-23 05:32:37 +00:00
|
|
|
@@ -101,6 +103,7 @@
|
2000-01-09 08:15:42 +00:00
|
|
|
|
2000-01-23 05:32:37 +00:00
|
|
|
OSLIBS_win32 = -lwsock32 -lwinmm # Win32
|
|
|
|
OSLIBS_linux = -lpthread # Linux
|
|
|
|
+OSLIBS_freebsd = # FreeBSD
|
|
|
|
OSLIBS_solaris = -lsocket -lnsl -lthread # Solaris
|
|
|
|
OSLIBS = $(OSLIBS_$(OS))
|
2000-01-09 08:15:42 +00:00
|
|
|
|