git://git.exim.org
/
exim.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Harmonised TLS library version reporting.
[exim.git]
/
src
/
OS
/
Makefile-FreeBSD
diff --git
a/src/OS/Makefile-FreeBSD
b/src/OS/Makefile-FreeBSD
index 179cbacb40a35c4ac26cdfcdf947fd035aa892e4..3a2697bbab2e1009c2cd60b73fa99c6f523eda29 100644
(file)
--- a/
src/OS/Makefile-FreeBSD
+++ b/
src/OS/Makefile-FreeBSD
@@
-1,4
+1,4
@@
-# $Cambridge: exim/src/OS/Makefile-FreeBSD,v 1.
1 2004/10/06 15:07:39 ph10
Exp $
+# $Cambridge: exim/src/OS/Makefile-FreeBSD,v 1.
6 2009/11/19 18:58:44 nm4
Exp $
# Exim: OS-specific make file for FreeBSD
# There's no setting of CFLAGS here, to allow the system default
# Exim: OS-specific make file for FreeBSD
# There's no setting of CFLAGS here, to allow the system default
@@
-7,23
+7,33
@@
PORTOBJFORMAT!= test -x /usr/bin/objformat && /usr/bin/objformat || echo aout
CHOWN_COMMAND=/usr/sbin/chown
PORTOBJFORMAT!= test -x /usr/bin/objformat && /usr/bin/objformat || echo aout
CHOWN_COMMAND=/usr/sbin/chown
+STRIP_COMMAND=/usr/bin/strip
+CHMOD_COMMAND=/bin/chmod
HAVE_SA_LEN=YES
# crypt() is in a separate library
HAVE_SA_LEN=YES
# crypt() is in a separate library
-LIBS=-lcrypt
+LIBS=-lcrypt -lm -lutil
+
+# Dynamicly loaded modules need to be built with -fPIC
+CFLAGS_DYNAMIC=-shared -rdynamic -fPIC
# FreeBSD always ships with Berkeley DB
USE_DB=yes
# FreeBSD always ships with Berkeley DB
USE_DB=yes
-# This setting changed on Sheldon Hearn's recommendation
-# X11=/usr/X11R6
-X11=$(X11BASE)
+# This code for building outside ports suggested by Richard Clayton
+.ifdef X11BASE
+X11=${X11BASE}
+.elifdef LOCALBASE
+X11=$(LOCALBASE)
+.else
+X11=/usr/local
+.endif
XINCLUDE=-I$(X11)/include
XLFLAGS=-L$(X11)/lib
.if ${PORTOBJFORMAT} == "elf"
XINCLUDE=-I$(X11)/include
XLFLAGS=-L$(X11)/lib
.if ${PORTOBJFORMAT} == "elf"
-XLFLAGS+=-Wl,-rpath,${X11
BASE
}/lib
+XLFLAGS+=-Wl,-rpath,${X11}/lib
.endif
X11_LD_LIB=$(X11)/lib
.endif
X11_LD_LIB=$(X11)/lib