88 lines
2.9 KiB
Plaintext
88 lines
2.9 KiB
Plaintext
dnl
|
|
dnl Copyright (C) 2001-2002 Graeme Walker <graeme_walker@users.sourceforge.net>
|
|
dnl
|
|
dnl This program is free software; you can redistribute it and/or
|
|
dnl modify it under the terms of the GNU General Public License
|
|
dnl as published by the Free Software Foundation; either
|
|
dnl version 2 of the License, or (at your option) any later
|
|
dnl version.
|
|
dnl
|
|
dnl This program is distributed in the hope that it will be useful,
|
|
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
dnl GNU General Public License for more details.
|
|
dnl
|
|
dnl You should have received a copy of the GNU General Public License
|
|
dnl along with this program; if not, write to the Free Software
|
|
dnl Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
dnl
|
|
dnl ===
|
|
dnl
|
|
dnl Copyright (C) 2001 Graeme Walker <graeme_walker@users.sourceforge.net>
|
|
dnl
|
|
dnl This program is free software; you can redistribute it and/or
|
|
dnl modify it under the terms of the GNU General Public License
|
|
dnl as published by the Free Software Foundation; either
|
|
dnl version 2 of the License, or (at your option) any later
|
|
dnl version.
|
|
dnl
|
|
dnl This program is distributed in the hope that it will be useful,
|
|
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
dnl GNU General Public License for more details.
|
|
dnl
|
|
dnl You should have received a copy of the GNU General Public License
|
|
dnl along with this program; if not, write to the Free Software
|
|
dnl Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
dnl
|
|
dnl ===
|
|
dnl Process this file with autoconf to produce a configure script.
|
|
|
|
AC_INIT(src/main/gsmtp.h)
|
|
AM_INIT_AUTOMAKE(emailrelay,0.9.7)
|
|
AM_CONFIG_HEADER(config.h)
|
|
|
|
dnl ===
|
|
dnl check for programs...
|
|
dnl
|
|
AC_PROG_CC
|
|
AC_PROG_CXX
|
|
AC_PROG_RANLIB
|
|
AC_PROG_INSTALL
|
|
AC_PROG_AWK
|
|
AC_CHECK_PROGS(MAKE,make gmake)
|
|
AC_CHECK_PROGS(AR,ar gar)
|
|
AC_CHECK_PROG(HAVE_DOXYGEN,doxygen,yes)
|
|
AC_CHECK_PROG(HAVE_MAN2HTML,man2html,yes)
|
|
|
|
dnl ===
|
|
dnl check for libraries...
|
|
dnl
|
|
AC_LANG_C
|
|
AC_SEARCH_LIBS(gethostbyname,nsl)
|
|
AC_SEARCH_LIBS(connect,socket)
|
|
|
|
dnl ===
|
|
dnl check for header files, functions and typedefs...
|
|
dnl
|
|
AC_HEADER_STDC
|
|
AC_HEADER_DIRENT
|
|
AC_HEADER_TIME
|
|
AC_CHECK_HEADERS(unistd.h)
|
|
AC_CHECK_HEADERS(sys/time.h)
|
|
AC_CHECK_FUNCS(glob)
|
|
AC_LANG_CPLUSPLUS
|
|
dnl check for *_r() declarations -- using ac_check_funcs
|
|
dnl is no good here since they may be in the library but
|
|
dnl not the header (depending on preprocessor switches)
|
|
AC_EGREP_HEADER(localtime_r,time.h,AC_DEFINE(HAVE_LOCALTIME_R,1,have reentrant localtime))
|
|
AC_EGREP_HEADER(gmtime_r,time.h,AC_DEFINE(HAVE_GMTIME_R,1,have reentrant gmtime))
|
|
dnl attempt to fix recursive makes where make is gmake -- may break something else
|
|
SET_MAKE=""
|
|
|
|
dnl ===
|
|
dnl generate files...
|
|
dnl
|
|
AC_OUTPUT(Makefile src/Makefile src/glib/Makefile src/gnet/Makefile src/main/Makefile src/win32/Makefile lib/Makefile lib/gcc2.95/Makefile lib/msvc6.0/Makefile bin/Makefile doc/Makefile)
|
|
|