# 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