X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2FOS%2FMakefile-FreeBSD;h=30e383c44abd72c52b2efe4e3b0c65a9f408630f;hb=8dfac75958fa63fcc463075742f99ec6b1297b64;hp=ead6d09a662d1e9b8d655ba47157d5fdb10f432e;hpb=4a23603b536e4156bdd3da58d3411632c71183d7;p=exim.git diff --git a/src/OS/Makefile-FreeBSD b/src/OS/Makefile-FreeBSD index ead6d09a6..30e383c44 100644 --- a/src/OS/Makefile-FreeBSD +++ b/src/OS/Makefile-FreeBSD @@ -1,5 +1,3 @@ -# $Cambridge: exim/src/OS/Makefile-FreeBSD,v 1.3 2006/02/22 15:10:28 ph10 Exp $ - # Exim: OS-specific make file for FreeBSD # There's no setting of CFLAGS here, to allow the system default # for "make" to be the default. @@ -8,23 +6,32 @@ 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 -LIBS=-lcrypt -lm +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 -# 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" -XLFLAGS+=-Wl,-rpath,${X11BASE}/lib +XLFLAGS+=-Wl,-rpath,${X11}/lib .endif X11_LD_LIB=$(X11)/lib