Subversion Repositories wimsdev

Rev

Rev 7614 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
10 reyssat 1
# Process this file with autoconf to produce a configure script.
2
AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS)
3
AC_CONFIG_SRCDIR([auth.c])
4
AC_CONFIG_HEADER([config.h])
5
 
6
# Checks for programs.
7
AC_PROG_AWK
8
AC_PROG_YACC
9
AC_PROG_CXX
10
AC_PROG_CC
11
AC_PROG_LEX
12
AC_PROG_INSTALL
13
AC_PROG_LN_S
14
AC_PROG_MAKE_SET
15
AC_PROG_RANLIB
16
 
17
# Checks for libraries.
18
# FIXME: Replace `main' with a function in `-lfl':
19
AC_CHECK_LIB([fl], [main])
20
# FIXME: Replace `main' with a function in `-lgd':
21
AC_CHECK_LIB([gd], [main])
22
# FIXME: Replace `main' with a function in `-lm':
23
AC_CHECK_LIB([m], [main])
24
# FIXME: Replace `main' with a function in `-lwims':
25
AC_CHECK_LIB([wims], [main])
26
 
27
# Checks for header files.
28
AC_HEADER_DIRENT
29
AC_HEADER_STDC
30
AC_HEADER_SYS_WAIT
31
AC_CHECK_HEADERS([arpa/inet.h fcntl.h memory.h netdb.h netinet/in.h stddef.h stdlib.h string.h strings.h sys/socket.h sys/time.h unistd.h utime.h])
32
 
33
# Checks for typedefs, structures, and compiler characteristics.
34
AC_C_CONST
35
AC_C_INLINE
36
AC_TYPE_PID_T
37
AC_TYPE_SIZE_T
38
AC_HEADER_TIME
39
AC_STRUCT_TM
40
 
41
# Checks for library functions.
42
AC_FUNC_ERROR_AT_LINE
43
AC_FUNC_FORK
44
AC_FUNC_LSTAT
45
AC_FUNC_MALLOC
46
AC_FUNC_MEMCMP
47
AC_FUNC_REALLOC
48
AC_TYPE_SIGNAL
49
AC_FUNC_STAT
50
AC_FUNC_STRTOD
51
AC_FUNC_UTIME_NULL
52
AC_CHECK_FUNCS([alarm dup2 floor getcwd gethostbyname gethostname gettimeofday inet_ntoa memmove memset mkdir mkfifo pow putenv regcomp rint rmdir select setenv socket sqrt strcasecmp strchr strdup strerror strncasecmp strpbrk strrchr strstr utime])
53
 
54
AC_CONFIG_FILES([Flydraw/Makefile
55
                 Interfaces/Makefile
56
                 Lib/Makefile
57
                 Makefile
58
                 Misc/Makefile
59
                 Misc/chemeq/Makefile
60
                 Misc/chemeq/src/Makefile
61
                 Misc/mathexp/Makefile
62
                 Misc/textcomp/Makefile
63
                 Misc/units-filter/src/Makefile
64
                 Misc/voronoiW/Makefile
795 bpr 65
                 Misc/bioinfo/Makefile
913 bpr 66
                 Misc/checkmol/Makefile
3398 bpr 67
                 Misc/crossword/Makefiles
2143 bpr 68
                 Misc/lceb/Makefile
7614 schaersvoo 69
                 Misc/moneyprint/Makefile
70
                 Misc/toascii/Makefile
71
                 Misc/scienceprint/Makefile
72
                 Misc/canvasdraw/Makefile
10 reyssat 73
                 Module/Makefile
74
                 Module/drawode/Makefile
8148 bpr 75
                 OefMsg2wims/Makefile
10 reyssat 76
                 Texgif/Makefile
77
                 Wimsd/Makefile
78
                 Wimslogd/Makefile])
79
AC_OUTPUT