summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPhilip Hazel <ph10@hermes.cam.ac.uk>2005-09-06 13:21:06 +0000
committerPhilip Hazel <ph10@hermes.cam.ac.uk>2005-09-06 13:21:06 +0000
commit1509d3a863c6aef224bf694dfadd3a5844b08a3e (patch)
treef2533e36af000a108e7ce09896bc2db7bd386bb4 /src
parent14487e4cc632bd649a2b7285485e4bb8b6825769 (diff)
Dragonfly config files + several changes in ChangeLog.
Diffstat (limited to 'src')
-rw-r--r--src/OS/Makefile-DragonFly32
-rw-r--r--src/OS/os.h-DragonFly12
2 files changed, 44 insertions, 0 deletions
diff --git a/src/OS/Makefile-DragonFly b/src/OS/Makefile-DragonFly
new file mode 100644
index 000000000..c5e9aac4b
--- /dev/null
+++ b/src/OS/Makefile-DragonFly
@@ -0,0 +1,32 @@
+# $Cambridge: exim/src/OS/Makefile-DragonFly,v 1.1 2005/09/06 13:21:07 ph10 Exp $
+
+# Exim: OS-specific make file for DragonFly
+# There's no setting of CFLAGS here, to allow the system default
+# for "make" to be the default.
+
+CHOWN_COMMAND=/usr/sbin/chown
+
+HAVE_SA_LEN=YES
+
+# crypt() is in a separate library
+LIBS=-lcrypt -lm
+
+# DragonFly always ships with Berkeley DB
+USE_DB=yes
+
+# X11 may be under /usr/pkg/xorg/ for example.
+# X11=/usr/X11R6
+X11=$(X11BASE)
+
+XINCLUDE=-I$(X11)/include
+XLFLAGS=-L$(X11)/lib
+XLFLAGS+=-Wl,-rpath,${X11BASE}/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
diff --git a/src/OS/os.h-DragonFly b/src/OS/os.h-DragonFly
new file mode 100644
index 000000000..0821c481a
--- /dev/null
+++ b/src/OS/os.h-DragonFly
@@ -0,0 +1,12 @@
+/* $Cambridge: exim/src/OS/os.h-DragonFly,v 1.1 2005/09/06 13:21:07 ph10 Exp $ */
+
+/* Exim: OS-specific C header file for DragonFly */
+
+#define HAVE_BSD_GETLOADAVG
+#define HAVE_MMAP
+#define HAVE_SYS_MOUNT_H
+#define SIOCGIFCONF_GIVES_ADDR
+
+typedef struct flock flock_t;
+
+/* End */