about summary refs log tree commit diff
path: root/configure.in
blob: bd05338a9dbf12b5afdca2ae8af6822651a6f125 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#
# 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.3 2001/12/12 01:58:53 alex Exp $
#
# $Log: configure.in,v $
# 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 <sys/socket.h>
	#include <sys/types.h>
	],[
	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 src/Makefile src/ngircd/Makefile])

# -eof-