# # ngIRCd -- The Next Generation IRC Daemon # Copyright (c)2001 by Alexander Barton (alex@barton.de) # # Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen # der GNU General Public License (GPL), wie von der Free Software Foundation # herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2 # der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version. # 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.4 2001/12/12 17:21:58 alex Exp $ # # $Log: configure.in,v $ # Revision 1.4 2001/12/12 17:21:58 alex # - Projektdatei fuer den Mac OS X Project Builder erstellt. # # Revision 1.3 2001/12/12 01:58:53 alex # - Test auf socklen_t verbessert. # # 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 -- AC_INIT AC_CONFIG_SRCDIR(src/ngircd/ngircd.c) AM_INIT_AUTOMAKE(ngircd,0.0.1-pre) AM_CONFIG_HEADER(src/config.h) # -- Variablen -- CFLAGS="$CFLAGS -I/usr/local/include" LDFLAGS="$LDFLAGS -L/usr/local/lib" # -- C Compiler -- AC_PROG_CC AC_LANG_C # -- Hilfsprogramme -- AC_PROG_MAKE_SET AC_PROG_RANLIB # -- Header -- AC_HEADER_STDC AC_CHECK_HEADER(portab.h,,AC_MSG_ERROR([Alex \"portability headers\" (portab.h an friends) not found!])) AC_CHECK_HEADER(imp.h,,AC_MSG_ERROR([Alex \"portability headers\" (portab.h an friends) not found!])) AC_CHECK_HEADER(exp.h,,AC_MSG_ERROR([Alex \"portability headers\" (portab.h an friends) not found!])) AC_CHECK_HEADERS([netinet/in.h sys/socket.h],,[required C headers missing!]) AC_CHECK_HEADERS([stdint.h]) # -- Datentypen -- AC_MSG_CHECKING(whether socklen_t exists) AC_TRY_COMPILE([ #include #include ],[ socklen_t a, b; a = 2; b = 4; a += b; ],[ AC_DEFINE(HAVE_socklen_t) AC_MSG_RESULT(yes) ],[ AC_MSG_RESULT(no) ]) # -- Funktionen -- AC_CHECK_FUNCS([socket],,[required functions missing!]) # -- Libraries -- # -- Konfigurationsoptionen -- # -- Ausgabe -- AC_OUTPUT([Makefile MacOSX/Makefile src/Makefile src/ngircd/Makefile]) # -eof-