]> git.pond.sub.org Git - empserver/blob - src/client/configure.ac
Bump version to 4.3.29
[empserver] / src / client / configure.ac
1 #
2 #   Empire - A multi-player, client/server Internet based war game.
3 #   Copyright (C) 1986-2011, Dave Pare, Jeff Bailey, Thomas Ruschak,
4 #                 Ken Stevens, Steve McClure, Markus Armbruster
5 #
6 #   Empire is free software: you can redistribute it and/or modify
7 #   it under the terms of the GNU General Public License as published by
8 #   the Free Software Foundation, either version 3 of the License, or
9 #   (at your option) any later version.
10 #
11 #   This program is distributed in the hope that it will be useful,
12 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #   GNU General Public License for more details.
15 #
16 #   You should have received a copy of the GNU General Public License
17 #   along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 #
19 #   ---
20 #
21 #   See files README, COPYING and CREDITS in the root of the source
22 #   tree for related information and legal notices.  It is expected
23 #   that future projects/authors will amend these files as needed.
24 #
25 #   ---
26 #
27 #   configure.ac: Autoconf input file
28 #
29 #   Known contributors to this file:
30 #      Markus Armbruster, 2005-2010
31 #
32 # Process this file with autoconf to produce a configure script.
33
34 # Autoconf makes checking for and programming around assorted ancient
35 # crap relatively painless.  But why bother?  Just rely on C89 and
36 # POSIX, and when something breaks on some oddball machine, see
37 # whether it's worth fixing.
38
39 AC_PREREQ(2.59)
40 AC_INIT([Empire Client], [4.3.29], [wolfpack@wolfpackempire.com])
41 AC_CONFIG_SRCDIR([empire.6])
42 AC_CONFIG_HEADERS([config.h])
43
44
45 ### Checks for programs.
46 AC_PROG_CC
47 AC_PROG_INSTALL
48
49 # Not a program, but need to check this early
50 MY_WINDOWS_API
51
52
53 ### Checks for libraries.
54 LIBS="$LIBS_SOCKETS $LIBS"
55 LIB_SOCKET_NSL
56 if test "$Windows_API" = yes; then
57         AC_LIBOBJ([w32/w32io])
58         AC_LIBOBJ([w32/w32sockets])
59 fi
60
61
62 ### Checks for header files.
63
64
65 ### Checks for typedefs, structures, and compiler characteristics.
66
67 if test "$Windows_API" = yes; then
68         CPPFLAGS="$CPPFLAGS -Iw32"
69         CFLAGS="$CFLAGS -mthreads"
70 fi
71
72
73 ### Checks for library functions.
74
75 AC_CHECK_FUNCS(getaddrinfo getpass)
76
77
78 ### Site configuration
79
80 AC_ARG_VAR([EMPIREHOST], [Default host [blitz.wolfpackempire.com]])
81 test "$EMPIREHOST" || EMPIREHOST=blitz.wolfpackempire.com
82
83 AC_ARG_VAR([EMPIREPORT], [Default port [6789]])
84 test "$EMPIREPORT" || EMPIREPORT=6789
85
86 MY_WITH_TERMINFO
87
88 ### Output
89
90 AC_CONFIG_FILES([Makefile ipglob.c])
91 AC_OUTPUT
92
93 AC_MSG_NOTICE([])
94 AC_MSG_NOTICE([-= Configuration summary =-])
95 AC_MSG_NOTICE([      terminfo: $with_terminfo])
96 AC_MSG_NOTICE([    EMPIREHOST: $EMPIREHOST])
97 AC_MSG_NOTICE([    EMPIREPORT: $EMPIREPORT])