# This file is part of tagr -*- Autoconf -*- # Process this file with autoconf to produce a configure script. # Copyright (C) 2000, 2005, 2008, 2009 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 3, 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, see . AC_PREREQ(2.59) AC_INIT([tagr], 1.9.90, [gray@gnu.org.ua]) AC_CONFIG_SRCDIR([src/main.c]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_HEADER([config.h]) AM_INIT_AUTOMAKE([1.8 gnits]) # Checks for programs. AC_PROG_CC gl_EARLY 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 gl_INIT GRECS_SETUP # Check for gd headers and libraries AC_CHECK_HEADERS([gd.h gdfonts.h],:, [AC_MSG_ERROR([Libgd headers gd.h and/or gdfonts.h are not found])]) AC_CHECK_LIB([gd],[gdImageCreate], , [AC_MSG_ERROR([libgd not found])]) AC_CHECK_HEADERS(gdbm.h, , [AC_MSG_ERROR([gdbm.h not found])]) AC_CHECK_LIB([gdbm], [gdbm_open], , [AC_MSG_ERROR([libgdbm not found])]) AC_CONFIG_FILES([Makefile gnu/Makefile grecs/Makefile grecs/src/Makefile src/Makefile etc/Makefile]) AC_OUTPUT