mirror of
https://github.com/osmarks/ngircd.git
synced 2025-01-20 20:36:53 +00:00
- Test auf stdint.h (HAVE_STDINT_H) hinzugefuegt.
This commit is contained in:
parent
f4ade537d5
commit
ab0eb099e9
11
configure.in
11
configure.in
@ -9,11 +9,14 @@
|
|||||||
# Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
|
# Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
|
||||||
# der an comBase beteiligten Autoren finden Sie in der Datei AUTHORS.
|
# 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 $
|
# $Log: configure.in,v $
|
||||||
# Revision 1.1 2001/12/11 21:53:04 alex
|
# Revision 1.2 2001/12/11 22:04:21 alex
|
||||||
# Initial revision
|
# - 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 --
|
# -- Initialisierung --
|
||||||
@ -48,6 +51,8 @@ AC_CHECK_HEADER(exp.h,,AC_MSG_ERROR([Alex \"portability headers\" (portab.h an f
|
|||||||
|
|
||||||
AC_CHECK_HEADERS([netinet/in.h sys/socket.h],,[required C headers missing!])
|
AC_CHECK_HEADERS([netinet/in.h sys/socket.h],,[required C headers missing!])
|
||||||
|
|
||||||
|
AC_CHECK_HEADERS([stdint.h])
|
||||||
|
|
||||||
# -- Datentypen --
|
# -- Datentypen --
|
||||||
|
|
||||||
# -- Funktionen --
|
# -- Funktionen --
|
||||||
|
@ -9,13 +9,16 @@
|
|||||||
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
|
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
|
||||||
* der an comBase beteiligten Autoren finden Sie in der Datei AUTHORS.
|
* 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 ;-)
|
* ngircd.c: Hier beginnt alles ;-)
|
||||||
*
|
*
|
||||||
* $Log: ngircd.c,v $
|
* $Log: ngircd.c,v $
|
||||||
* Revision 1.1 2001/12/11 21:53:04 alex
|
* Revision 1.2 2001/12/11 22:04:21 alex
|
||||||
* Initial revision
|
* - 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 "global.h"
|
||||||
|
|
||||||
#include <imp.h>
|
#include <imp.h>
|
||||||
|
|
||||||
|
#ifdef HAVE_STDINT_H
|
||||||
|
#include <stdint.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include <stdint.h>
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
Loading…
Reference in New Issue
Block a user