]> arthur.barton.de Git - ngircd-alex.git/commitdiff
Made ngIRCd compile on HP/UX 10.20 with native HP pre-ANSI C compiler and
authorAlexander Barton <alex@barton.de>
Wed, 20 Oct 2004 13:47:32 +0000 (13:47 +0000)
committerAlexander Barton <alex@barton.de>
Wed, 20 Oct 2004 13:47:32 +0000 (13:47 +0000)
most probably other older C compilers on other systems.

ChangeLog
src/ngircd/conf.c
src/ngircd/conn.c
src/ngircd/irc-write.c
src/ngircd/log.c

index 9e4e3a30d114ae3b538d5b7a2d3b7d7fc5848900..f27f9e7fe6fdd8fe342d26e8d25bda6e93c8b96d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -12,6 +12,8 @@
 
 ngIRCd CVSHEAD
 
+  - Made ngIRCd compile on HP/UX 10.20 with native HP pre-ANSI C compiler and
+    most probably other older C compilers on other systems.
   - Fixed wrong variable names in output of "ngircd --configtest".
   - Debian: Fxied the name of the "default file" in the init script for
     ngircd-full packages. And do the test if the binary is executable after
@@ -543,4 +545,4 @@ ngIRCd 0.0.1, 31.12.2001
 
 
 -- 
-$Id: ChangeLog,v 1.242 2004/09/24 18:00:40 alex Exp $
+$Id: ChangeLog,v 1.243 2004/10/20 13:47:32 alex Exp $
index c134cbe62d0bee9026b737308261bc91e9292e8a..c87cf5902e1eef8763039f82ed79f4bd667c34e7 100644 (file)
 
 #include "portab.h"
 
-static char UNUSED id[] = "$Id: conf.c,v 1.65 2004/09/24 18:00:40 alex Exp $";
+static char UNUSED id[] = "$Id: conf.c,v 1.66 2004/10/20 13:47:32 alex Exp $";
 
 #include "imp.h"
 #include <assert.h>
 #include <errno.h>
-#include <stdarg.h>
+#ifdef PROTOTYPES
+#      include <stdarg.h>
+#else
+#      include <varargs.h>
+#endif
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
index 31f2c1d2764879520f2b72da993487e78cf053eb..6a9c25f12420fbb6e4473e5809ebbf86302cb36f 100644 (file)
 
 #include "portab.h"
 
-static char UNUSED id[] = "$Id: conn.c,v 1.139 2004/10/04 23:23:41 alex Exp $";
+static char UNUSED id[] = "$Id: conn.c,v 1.140 2004/10/20 13:47:32 alex Exp $";
 
 #include "imp.h"
 #include <assert.h>
-#include <stdarg.h>
+#ifdef PROTOTYPES
+#      include <stdarg.h>
+#else
+#      include <varargs.h>
+#endif
 #include <stdio.h>
 #include <stdlib.h>
 #include <unistd.h>
index 9127ef11e2ab1c47ee8532ca4124d827af4b1bf3..56f9b22278433762bcfe6ffaceb2e747793997b7 100644 (file)
 
 #include "portab.h"
 
-static char UNUSED id[] = "$Id: irc-write.c,v 1.15 2003/11/05 23:24:48 alex Exp $";
+static char UNUSED id[] = "$Id: irc-write.c,v 1.16 2004/10/20 13:47:32 alex Exp $";
 
 #include "imp.h"
 #include <assert.h>
-#include <stdarg.h>
+#ifdef PROTOTYPES
+#      include <stdarg.h>
+#else
+#      include <varargs.h>
+#endif
 #include <stdio.h>
 #include <string.h>
 
index 7fa57255ca7b957373db701c29865ca3f223e3de..6fa7a4a7fbd05abaa8c026a051f7a5000e5cd489 100644 (file)
 
 #include "portab.h"
 
-static char UNUSED id[] = "$Id: log.c,v 1.47 2004/06/26 08:50:44 alex Exp $";
+static char UNUSED id[] = "$Id: log.c,v 1.48 2004/10/20 13:47:32 alex Exp $";
 
 #include "imp.h"
 #include <assert.h>
 #include <errno.h>
-#include <stdarg.h>
+#ifdef PROTOTYPES
+#      include <stdarg.h>
+#else
+#      include <varargs.h>
+#endif
 #include <stdio.h>
 #include <string.h>
 #include <sys/types.h>