]> git.pond.sub.org Git - empserver/blob - src/client/configure.ac
Bump version to 4.3.34
[empserver] / src / client / configure.ac
1 #
2 #   Empire - A multi-player, client/server Internet based war game.
3 #   Copyright (C) 1986-2015, 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-2015
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.64)
40 AC_INIT([Empire Client], [4.3.34], [wolfpack@wolfpackempire.com],,
41         [http://www.wolfpackempire.com/])
42 AC_CONFIG_SRCDIR([empire.6])
43 AC_CONFIG_HEADERS([config.h])
44
45
46 ### Checks for programs.
47 AC_PROG_CC
48 AC_PROG_INSTALL
49
50 # Not a program, but need to check this early
51 MY_WINDOWS_API
52
53
54 ### Checks for libraries.
55 LIBS="$LIBS_SOCKETS $LIBS"
56 AX_LIB_SOCKET_NSL
57 if test "$Windows_API" = yes; then
58         AC_LIBOBJ([w32/w32io])
59         AC_LIBOBJ([w32/w32sockets])
60 fi
61
62
63 ### Checks for header files.
64
65
66 ### Checks for typedefs, structures, and compiler characteristics.
67
68 if test "$Windows_API" = yes; then
69         CPPFLAGS="$CPPFLAGS -Iw32"
70         CFLAGS="$CFLAGS -mthreads"
71 fi
72
73
74 ### Checks for library functions.
75
76 AC_CHECK_FUNCS(getaddrinfo getpass)
77
78
79 ### Site configuration
80
81 AC_ARG_VAR([EMPIREHOST], [Default host [blitz.wolfpackempire.com]])
82 test "$EMPIREHOST" || EMPIREHOST=blitz.wolfpackempire.com
83
84 AC_ARG_VAR([EMPIREPORT], [Default port [6789]])
85 test "$EMPIREPORT" || EMPIREPORT=6789
86
87 MY_WITH_TERMINFO
88
89 ### Output
90
91 AC_CONFIG_FILES([Makefile ipglob.c])
92 AC_OUTPUT
93
94 AC_MSG_NOTICE([])
95 AC_MSG_NOTICE([-= Configuration summary =-])
96 AC_MSG_NOTICE([      terminfo: $with_terminfo])
97 AC_MSG_NOTICE([    EMPIREHOST: $EMPIREHOST])
98 AC_MSG_NOTICE([    EMPIREPORT: $EMPIREPORT])