summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/isode/h/ChangeLog2
-rw-r--r--src/isode/h/config.h3
2 files changed, 4 insertions, 1 deletions
diff --git a/src/isode/h/ChangeLog b/src/isode/h/ChangeLog
index e22eb014d..e12053b9e 100644
--- a/src/isode/h/ChangeLog
+++ b/src/isode/h/ChangeLog
@@ -1,4 +1,4 @@
Mon Jun 20 22:34:46 1994 Mark W. Eichin (eichin at mit.edu)
* config.h: add __FreeBSD__ and VAX-BSD ifdefs.
-
+ * config.h: don't define VSPRINTF on VAX-BSD...
diff --git a/src/isode/h/config.h b/src/isode/h/config.h
index 0ac26c3bd..596beb696 100644
--- a/src/isode/h/config.h
+++ b/src/isode/h/config.h
@@ -1,6 +1,9 @@
/* this should be enough for everything... */
+#if !(defined(vax) && defined(unix))
#define VSPRINTF /* has vprintf(3s) routines */
+#endif
+
#define TCP /* has TCP/IP (of course) */
#define SOCKETS /* provided by sockets */
#define GETDENTS /* has <dirent.h> */