X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/0a34949459c8ec5f79599a458704b7b11cdbb248..6723707404c72285565457b58c62afc6f1a9d36a:/src/OS/Makefile-FreeBSD diff --git a/src/OS/Makefile-FreeBSD b/src/OS/Makefile-FreeBSD index 3a2697bba..5f01b84e6 100644 --- a/src/OS/Makefile-FreeBSD +++ b/src/OS/Makefile-FreeBSD @@ -1,23 +1,28 @@ -# $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 -# for "make" to be the default. - -PORTOBJFORMAT!= test -x /usr/bin/objformat && /usr/bin/objformat || echo aout +# +# Copyright (c) The Exim Maintainers 2020 - 2023 +# SPDX-License-Identifier: GPL-2.0-or-later CHOWN_COMMAND=/usr/sbin/chown -STRIP_COMMAND=/usr/bin/strip +#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 +LIBS=-lcrypt -lm -lutil -lexecinfo -# Dynamicly loaded modules need to be built with -fPIC +# Dynamically loaded modules need to be built with -fPIC CFLAGS_DYNAMIC=-shared -rdynamic -fPIC +# Partial-linking needs -nostdlib +LDFLAGS_PARTIAL=-nostdlib + # FreeBSD always ships with Berkeley DB USE_DB=yes @@ -30,11 +35,19 @@ X11=$(LOCALBASE) 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,${X11}/lib -.endif +XLFLAGS=-L$(X11)/lib -Wl,-rpath,${X11}/lib X11_LD_LIB=$(X11)/lib EXIWHAT_PS_ARG=-ax