X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2FOS%2FMakefile-FreeBSD;h=fef5609673c53d8ef3ef980abfa557c586df7887;hb=49132a3bb5c65364b1d9cc5b405bd0ef046e7828;hp=6bcef9b9d52117a93cf174d9f9213c805abbb919;hpb=e173618b6c168a57908e0bf55dcf1b42ce947f6c;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/src/OS/Makefile-FreeBSD b/src/OS/Makefile-FreeBSD index 6bcef9b9d..fef560967 100644 --- a/src/OS/Makefile-FreeBSD +++ b/src/OS/Makefile-FreeBSD @@ -1,31 +1,50 @@ -# $Cambridge: exim/src/OS/Makefile-FreeBSD,v 1.4 2006/04/19 11:15:43 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. -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 + +CFLAGS += -DTAINT_CHECK_SLOW + +# FreeBSD Ports no longer insert compatibility symlinks into /usr/bin for +# scripting languages which traditionally have had them. +PERL_COMMAND=/usr/local/bin/perl HAVE_SA_LEN=YES # crypt() is in a separate library LIBS=-lcrypt -lm -lutil +# Dynamically 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 +# nb: FreeBSD is entirely elf; objformat was removed prior to FreeBSD 7 +# http://www.freebsd.org/cgi/cvsweb.cgi/src/usr.bin/objformat/Attic/objformat.c +# deleted Jan 2007. +# +# So if this fails, you're on an ancient unsupported FreeBSD release *and* +# running GUI software, which seems both unusual and unwise. +# +# http://www.freebsd.org/doc/handbook/binary-formats.html suggests that the +# switch to default to ELF came with FreeBSD 3. elf(5) claims ELF support +# introduced in FreeBSD 2.2.6. +# XINCLUDE=-I$(X11)/include -XLFLAGS=-L$(X11)/lib -.if ${PORTOBJFORMAT} == "elf" -XLFLAGS+=-Wl,-rpath,${X11BASE}/lib -.endif +XLFLAGS=-L$(X11)/lib -Wl,-rpath,${X11}/lib X11_LD_LIB=$(X11)/lib EXIWHAT_PS_ARG=-ax