X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=configure.in;h=87df99e82b532dd2070d8e6916ef811dd47eb328;hb=eb952e35ccf28aa4d60a944d5cb179025624fc46;hp=a84198ec7a1cbc3d32c9323118e905d86e8822a6;hpb=ab0eb099e9c0ed60d25fb50dd78d2a638d3b49b8;p=ngircd-alex.git diff --git a/configure.in b/configure.in index a84198ec..87df99e8 100644 --- a/configure.in +++ b/configure.in @@ -9,9 +9,18 @@ # 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.2 2001/12/11 22:04:21 alex Exp $ +# $Id: configure.in,v 1.5 2001/12/21 23:54:26 alex Exp $ # # $Log: configure.in,v $ +# Revision 1.5 2001/12/21 23:54:26 alex +# - zusaetzliche Debug-Ausgaben koennen eingeschaltet werden. +# +# 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. # @@ -55,6 +64,19 @@ 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!]) @@ -63,8 +85,16 @@ AC_CHECK_FUNCS([socket],,[required functions missing!]) # -- Konfigurationsoptionen -- +AC_ARG_ENABLE(debug, + [ --enable-debug enable extra debug output], + if test "$enableval" = "yes"; then + AC_DEFINE(DEBUG, 1) + AC_MSG_RESULT([enabling extra debug output]) + fi +) + # -- Ausgabe -- -AC_OUTPUT([Makefile src/Makefile src/ngircd/Makefile]) +AC_OUTPUT([Makefile MacOSX/Makefile src/Makefile src/ngircd/Makefile]) # -eof-