aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
blob: bef42990eab434dc08f886a845bbd3f9c1335fee (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
# This file is part of tagr                      -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
# Copyright (C) 2000, 2005,  Max Bouglacoff, Sergey Poznyakoff
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
# 02111-1307, USA.

AC_PREREQ(2.59)
AC_INIT([tagr], 1.0, [gray@ulysses.farlep.net])
AC_CONFIG_SRCDIR([main.c])
AC_CONFIG_AUX_DIR([config])
AC_CONFIG_HEADER([config.h])
AM_INIT_AUTOMAKE([1.8 gnits])

AC_GNU_SOURCE		      

# Checks for programs.
AC_PROG_CC
AM_PROG_LEX
AC_PROG_YACC
AC_PROG_RANLIB
			
# Checks for libraries.

# Checks for header files.
AC_HEADER_STDC
AC_HEADER_SYS_WAIT
AC_CHECK_HEADERS([arpa/inet.h limits.h malloc.h netdb.h netinet/in.h stdlib.h string.h sys/socket.h sys/time.h syslog.h unistd.h])

# Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_TYPE_UID_T
AC_TYPE_PID_T
AC_TYPE_SIZE_T
AC_STRUCT_TM

# Checks for library functions.
AC_FUNC_FORK
AC_FUNC_MALLOC
AC_FUNC_REALLOC
AC_FUNC_SELECT_ARGTYPES
AC_TYPE_SIGNAL
AC_FUNC_STRFTIME
AC_FUNC_STRTOD
AC_FUNC_VPRINTF
AC_CHECK_FUNCS([memset pow select socket strchr strdup strerror strtoul])

# GNUlib
tagr_GNULIB
	
# Check for gd headers and libraries
AC_CHECK_HEADERS([gd.h gdfonts.h],:,
		 [AC_MSG_ERROR([Libgd headers gd.h and gdfonts.h are not found])])  

AC_CHECK_LIB([gd],[gdImageCreate],
	     :,
	     [AC_MSG_ERROR([Libgd not found])])

AC_CONFIG_FILES([Makefile lib/Makefile])
			  
AC_OUTPUT

Return to:

Send suggestions and report system problems to the System administrator.