Commit Diff


commit - f4ade537d550b872b7e86e6ffce940dfbad4c60c
commit + ab0eb099e9c0ed60d25fb50dd78d2a638d3b49b8
blob - aeda6863a51b4ad1aebc814778eedbd91013a5c8
blob + a84198ec7a1cbc3d32c9323118e905d86e8822a6
--- configure.in
+++ configure.in
@@ -9,12 +9,15 @@
 # Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
 # der an comBase beteiligten Autoren finden Sie in der Datei AUTHORS.
 #
-# $Id: configure.in,v 1.1 2001/12/11 21:53:04 alex Exp $
+# $Id: configure.in,v 1.2 2001/12/11 22:04:21 alex Exp $
 #
 # $Log: configure.in,v $
-# Revision 1.1  2001/12/11 21:53:04  alex
-# Initial revision
+# Revision 1.2  2001/12/11 22:04:21  alex
+# - Test auf stdint.h (HAVE_STDINT_H) hinzugefuegt.
 #
+# Revision 1.1.1.1  2001/12/11 21:53:04  alex
+# Imported sources to CVS.
+#
 
 # -- Initialisierung --
 
@@ -48,6 +51,8 @@ AC_CHECK_HEADER(exp.h,,AC_MSG_ERROR([Alex \"portabilit
 
 AC_CHECK_HEADERS([netinet/in.h sys/socket.h],,[required C headers missing!])
 
+AC_CHECK_HEADERS([stdint.h])
+
 # -- Datentypen --
 
 # -- Funktionen --
blob - 80beaabb78750b69bf12541d6bd0d262f787902f
blob + e58e604749855df9c3c7fcd80456b31c06f5789b
--- src/ngircd/ngircd.c
+++ src/ngircd/ngircd.c
@@ -9,14 +9,17 @@
  * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
  * der an comBase beteiligten Autoren finden Sie in der Datei AUTHORS.
  *
- * $Id: ngircd.c,v 1.1 2001/12/11 21:53:04 alex Exp $
+ * $Id: ngircd.c,v 1.2 2001/12/11 22:04:21 alex Exp $
  *
  * ngircd.c: Hier beginnt alles ;-)
  *
  * $Log: ngircd.c,v $
- * Revision 1.1  2001/12/11 21:53:04  alex
- * Initial revision
+ * Revision 1.2  2001/12/11 22:04:21  alex
+ * - Test auf stdint.h (HAVE_STDINT_H) hinzugefuegt.
  *
+ * Revision 1.1.1.1  2001/12/11 21:53:04  alex
+ * Imported sources to CVS.
+ *
  */
 
 
@@ -30,10 +33,14 @@
 #include "global.h"
 
 #include <imp.h>
+
+#ifdef HAVE_STDINT_H
+#include <stdint.h>
+#endif
+
 #include <assert.h>
 #include <errno.h>
 #include <signal.h>
-#include <stdint.h>
 #include <stdio.h>
 #include <string.h>
 #include <sys/types.h>