ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/proj/trunk/Search/configure.ac
Revision: 212
Committed: 2003-07-19T21:00:25-07:00 (21 years, 11 months ago) by douglas
File size: 1165 byte(s)
Log Message:
Replaced some strtoul functions with istringstream stuff, and fixed Outputer
stuff.

File Contents

# Content
1 # Douglas Thrift's Search Engine
2 #
3 # Douglas Thrift
4 #
5 # $Id: configure.ac,v 1.9 2003/07/20 04:00:25 douglas Exp $
6
7 # Process this file with autoconf to produce a configure script.
8 AC_INIT(dtse, 1.2)
9 AC_CONFIG_SRCDIR(Search.cpp)
10 AC_PREFIX_DEFAULT(/usr/local/dtse)
11
12 # Checks for programs.
13 CHECK_GNU_MAKE
14 if test x$_cv_gnu_make_command = x; then
15 AC_MSG_ERROR(You need GNU Make.)
16 fi
17 AC_PROG_CXX
18 if ! test x$GXX = x; then
19 AC_MSG_CHECKING(if g++ is version 3.x)
20 dt_gxx_3_x=`$CXX --version 2>&1 | grep ^$CXX`
21 if test "x$dt_gxx_3_x" = "x"; then
22 AC_MSG_RESULT(no)
23 AC_MSG_ERROR(You need g++ 3.x.)
24 else
25 AC_MSG_RESULT(yes)
26 fi
27 fi
28 AC_PROG_PERL_VERSION(5.00503, , AC_MSG_ERROR(You need a Perl 5.6 or higher.))
29
30 # Checks for libraries.
31 AC_PROG_PERL_MODULES(File::Temp, , AC_MSG_ERROR(You need Fill::Temp.))
32 ETR_SOCKET_NSL
33 CHECK_SSL
34
35 # Checks for header files.
36 #AC_CHECK_HEADERS([netdb.h netinet/in.h sys/socket.h unistd.h])
37
38 # Checks for typedefs, structures, and compiler characteristics.
39
40 # Checks for library functions.
41 #AC_FUNC_ERROR_AT_LINE
42 #AC_C_CONST
43 #AC_C_INLINE
44 #AC_CHECK_FUNCS([gethostbyname memset socket uname])
45
46 AC_CONFIG_FILES([GNUmakefile])
47 AC_OUTPUT