about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2002-05-19 10:46:08 +0000
committerAlexander Barton <alex@barton.de>2002-05-19 10:46:08 +0000
commit237c761f67db72c598b77c32273fd51d904500e8 (patch)
tree154959d5325bf67785abacec0a059d704bb9282f /src
parentc5461c4596ba4840b89e4834e5820550485f0b27 (diff)
downloadngircd-237c761f67db72c598b77c32273fd51d904500e8.tar.gz
ngircd-237c761f67db72c598b77c32273fd51d904500e8.zip
- Dummy fuer inet_aton() entfernt. "signed" wird bei Bedarf definiert.
Diffstat (limited to 'src')
-rw-r--r--src/portab/portab.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/portab/portab.h b/src/portab/portab.h
index b2bd9816..62a56d34 100644
--- a/src/portab/portab.h
+++ b/src/portab/portab.h
@@ -9,7 +9,7 @@
  * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
  * der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
  *
- * $Id: portab.h,v 1.3 2002/03/25 19:13:19 alex Exp $
+ * $Id: portab.h,v 1.4 2002/05/19 10:46:08 alex Exp $
  *
  * portab.h: "Portabilitaets-Definitionen"
  */
@@ -29,6 +29,10 @@
 #define LOCAL static
 #define CONST const
 
+#ifndef signed
+#define signed
+#endif
+
 
 /* Datatentypen */
 
@@ -77,10 +81,6 @@ typedef UINT8 BOOLEAN;
 #define socklen_t int			/* u.a. fuer Mac OS X */
 #endif
 
-#ifndef HAVE_INET_ATON
-#define inet_aton( opt, bind ) 0	/* Dummy fuer inet_aton() */
-#endif
-
 #if OS_UNIX_AUX
 #define _POSIX_SOURCE			/* muss unter A/UX definiert sein */
 #endif