| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- ###############################################################################
- # This file is part of TinTin++ #
- # #
- # Copyright 2004-2019 Igor van den Hoven #
- # #
- # TinTin++ 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 of the License, 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 TinTin++. If not, see https://www.gnu.org/licenses. #
- ###############################################################################
- AM_INIT_AUTOMAKE
- AC_INIT
- AC_CONFIG_SRCDIR([tintin.h])
- AC_CONFIG_HEADER(config.h)
- AC_MSG_RESULT([Configuring TinTin++])
- AC_SUBST(MYINCLUDE)
- AC_SUBST(MYLIB)
- AC_SUBST(mybindir)
- AC_SUBST(BIG5)
- if [ test $bindir != "\${exec_prefix}/bin" ]
- then
- mybindir="$bindir"
- else
- mybindir="."
- fi
- if [ test $libdir != "\${exec_prefix}/lib" ]
- then
- MYLIB="-L$libdir"
- else
- MYLIB=""
- fi
- if [ test $includedir != "\${prefix}/include" ]
- then
- MYINCLUDE="-I$includedir"
- else
- MYINCLUDE=""
- fi
- AC_ARG_ENABLE(big5, [ --enable-big5 enable big5 support], BIG5="-DBIG5")
- # Checks for programs.
- AC_PROG_CC
- AC_PROG_MAKE_SET
- # Checks for header files.
- AC_HEADER_STDC
- AC_CHECK_HEADERS([arpa/inet.h ctype.h fcntl.h net/errno.h netdb.h netinet/in.h param.h pthread.h socks.h stdlib.h string.h strings.h sys/ioctl.h sys/param.h sys/ptem.h sys/socket.h sys/termio.h sys/time.h time.h unistd.h util.h pty.h stropts.h])
- AC_CHECK_HEADERS([zlib.h],,
- [AC_MSG_ERROR([zlib header file not found, is the development part present])])
- AC_CHECK_HEADERS([pcre.h],,
- [AC_MSG_ERROR([pcre header file not found, is the development part present])])
- AC_CHECK_HEADERS([gnutls/gnutls.h],
- [AC_DEFINE([HAVE_GNUTLS_H],[1],[Define to 1 if you have <gnutls/gnutls.h>.])],
- [AC_MSG_WARN([gnutls header file not found, is the develoment part present])])
- # Checks for typedefs, structures, and compiler characteristics.
- AC_C_CONST
- AC_HEADER_STDBOOL
- AC_TYPE_SIZE_T
- AC_HEADER_TIME
- AC_STRUCT_TM
- # Checks for library functions.
- AC_FUNC_MEMCMP
- AC_FUNC_REALLOC
- AC_FUNC_SELECT_ARGTYPES
- AC_TYPE_SIGNAL
- AC_FUNC_STAT
- AC_FUNC_STRFTIME
- AC_FUNC_UTIME_NULL
- AC_FUNC_VPRINTF
- AC_CHECK_FUNCS([gethostbyname gethostname gettimeofday inet_ntoa memset select socket strcasecmp strchr strdup strerror strftime strncasecmp strstr utime getaddrinfo forkpty popen])
- # Checks libraries
- AC_CHECK_LIB(z, inflate,,
- [AC_MSG_ERROR([zlib runtime library not working, is it AND the corresponding development (header) file installed])])
- AC_CHECK_LIB(pthread, pthread_create)
- AC_CHECK_LIB(nsl, gethostbyname)
- AC_CHECK_LIB(socket, rresvport)
- AC_CHECK_LIB(util, forkpty)
- AC_CHECK_LIB(pcre, pcre_compile,,
- [AC_MSG_ERROR([pcre runtime library not working, is it AND the corresponding development (header) file installed])])
- AC_CHECK_LIB(gnutls, gnutls_init)
- AC_CHECK_LIB(m, sqrt)
- AC_CHECK_PROGS(MAKE, gmake make)
- AC_CHECK_FILES([/dev/ptmx])
- AC_FUNC_GETMNTENT
- AC_HEADER_DIRENT
- AC_CONFIG_FILES([Makefile])
- AC_OUTPUT
- echo
- echo "Configure has finished. To compile, type: make"
- echo
|