diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 09:44:07 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 09:44:07 +0000 |
commit | 39ce00b8d520cbecbd6af87257e8fb11df0ec273 (patch) | |
tree | 4c21a2674c19e5c44be3b3550b476b9e63d8ae3d /OS/Makefile-FreeBSD | |
parent | Initial commit. (diff) | |
download | exim4-upstream.tar.xz exim4-upstream.zip |
Adding upstream version 4.94.2.upstream/4.94.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'OS/Makefile-FreeBSD')
-rw-r--r-- | OS/Makefile-FreeBSD | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/OS/Makefile-FreeBSD b/OS/Makefile-FreeBSD new file mode 100644 index 0000000..d550fb7 --- /dev/null +++ b/OS/Makefile-FreeBSD @@ -0,0 +1,54 @@ +# Exim: OS-specific make file for FreeBSD +# Copyright (c) The Exim Maintainers 2020 + +CHOWN_COMMAND=/usr/sbin/chown +STRIP_COMMAND=/usr/bin/strip +CHMOD_COMMAND=/bin/chmod + + +# 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 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 -Wl,-rpath,${X11}/lib +X11_LD_LIB=$(X11)/lib + +EXIWHAT_PS_ARG=-ax +EXIWHAT_EGREP_ARG='/exim( |$$)' +EXIWHAT_MULTIKILL_CMD='killall -m' +EXIWHAT_MULTIKILL_ARG='^exim($$|-[0-9.]+-[0-9]+$$)' +EXIWHAT_KILL_SIGNAL=-USR1 + +# End |