]> git.pond.sub.org Git - empserver/blob - src/client/configure.ac
Boilerplate file comment.
[empserver] / src / client / configure.ac
1
2 #   Empire - A multi-player, client/server Internet based war game.
3 #   Copyright (C) 1986-2006, Dave Pare, Jeff Bailey, Thomas Ruschak,
4 #                            Ken Stevens, Steve McClure
5
6 #   This program 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 2 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, write to the Free Software
18 #   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
20 #   ---
21
22 #   See files README, COPYING and CREDITS in the root of the source
23 #   tree for related information and legal notices.  It is expected
24 #   that future projects/authors will amend these files as needed.
25
26 #   ---
27
28 #   configure.ac: Autoconf input file
29 #  
30 #   Known contributors to this file:
31 #      Markus Armbruster, 2005
32
33 # Process this file with autoconf to produce a configure script.
34
35 # Autoconf makes checking for and programming around assorted ancient
36 # crap relatively painless.  But why bother?  Just rely on C89 and
37 # POSIX, and when something breaks on some oddball machine, see
38 # whether it's worth fixing.
39
40 AC_PREREQ(2.59)
41 AC_INIT([Empire Client], [4.3.0], [wolfpack@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
51 ### Checks for libraries.
52 LIB_SOCKET_NSL
53 AC_SEARCH_LIBS([setupterm], [termlib termcap])
54 # TODO merge this into LIB_SOCKET_NSL?
55 case "$host_os" in
56 *mingw32)
57     LIBS="-lws2_32 $LIBS" ;;
58 esac
59
60
61 ### Checks for header files.
62
63
64 ### Checks for typedefs, structures, and compiler characteristics.
65
66
67 ### Checks for library functions.
68
69 AC_CHECK_FUNCS(getaddrinfo)
70
71
72 ### Site configuration
73
74 AC_ARG_VAR([EMPIREHOST], [Default host [blitz.wolfpackempire.com]])
75 test "$EMPIREHOST" || EMPIREHOST=blitz.wolfpackempire.com
76
77 AC_ARG_VAR([EMPIREPORT], [Default port [6789]])
78 test "$EMPIREPORT" || EMPIREPORT=6789
79
80
81 ### Output
82
83 AC_CONFIG_FILES([Makefile ipglob.c])
84 AC_OUTPUT