diff options
author | Tony Finch <dot@dot.at> | 2005-05-23 16:58:55 +0000 |
---|---|---|
committer | Tony Finch <dot@dot.at> | 2005-05-23 16:58:55 +0000 |
commit | 870f6ba8a2945754a7f2f66097e3a64465fe1a04 (patch) | |
tree | 4660f28a3b0dfe5050966361e7873572efbc1884 /src/OS/Makefile-GNUkFreeBSD | |
parent | 4df1e33e03e9edf6ee6cd328114e5eb102a85c9c (diff) |
Add the ratelimit ACL condition. This is mostly reasonably self-contained
except that it requires changes to most Makefiles in order to bring in the
maths library for the exp() function.
Diffstat (limited to 'src/OS/Makefile-GNUkFreeBSD')
-rw-r--r-- | src/OS/Makefile-GNUkFreeBSD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/OS/Makefile-GNUkFreeBSD b/src/OS/Makefile-GNUkFreeBSD index 03a8ac9e8..305640cca 100644 --- a/src/OS/Makefile-GNUkFreeBSD +++ b/src/OS/Makefile-GNUkFreeBSD @@ -1,4 +1,4 @@ -# $Cambridge: exim/src/OS/Makefile-GNUkFreeBSD,v 1.1 2005/01/04 10:25:58 ph10 Exp $ +# $Cambridge: exim/src/OS/Makefile-GNUkFreeBSD,v 1.2 2005/05/23 16:58:55 fanf2 Exp $ # Exim: OS-specific make file for GNU and variants. @@ -13,7 +13,7 @@ CFLAGS ?= -O -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE DBMLIB = -ldb USE_DB = yes -LIBS = -lnsl -lcrypt +LIBS = -lnsl -lcrypt -lm LIBRESOLV = -lresolv X11=/usr/X11R6 |