Remove outdated comment.
[u/mdw/putty] / unix / configure.ac
... / ...
CommitLineData
1# To compile this into a configure script, you need:
2# * Autoconf 2.50 or newer
3# * Gtk (for $prefix/share/aclocal/gtk.m4)
4# * Automake (for aclocal)
5# If you've got them, running "autoreconf" should work.
6
7AC_INIT
8AC_CONFIG_FILES([Makefile])
9AC_CONFIG_HEADERS([uxconfig.h:uxconfig.in])
10
11AC_PROG_INSTALL
12AC_PROG_CC
13if test "X$GCC" = Xyes; then
14 CFLAGS="$CFLAGS -Wall -Werror"
15fi
16
17AC_ARG_WITH(gssapi,
18[ --without-gssapi disable GSS-API support])
19
20AC_CHECK_HEADERS([utmpx.h sys/select.h],,,[
21#include <sys/types.h>
22#include <utmp.h>])
23if test "$with_gssapi" != "no"; then
24 AC_CHECK_HEADERS([gssapi/gssapi.h])
25fi
26
27# Look for both GTK 1 and GTK 2.
28AM_PATH_GTK([1.2.0], [gtk=1], [gtk=none])
29AM_PATH_GTK_2_0([2.0.0], [gtk=2], [])
30if test "$gtk" = "none"; then
31 all_targets="all-cli"
32else
33 all_targets="all-cli all-gtk"
34fi
35if test "$gtk" = "2"; then
36 ac_save_CFLAGS="$CFLAGS"
37 ac_save_LIBS="$LIBS"
38 CFLAGS="$CFLAGS $GTK_CFLAGS"
39 LIBS="$GTK_LIBS $LIBS"
40 AC_CHECK_FUNCS([pango_font_family_is_monospace pango_font_map_list_families])
41 CFLAGS="$ac_save_CFLAGS"
42 LIBS="$ac_save_LIBS"
43fi
44AC_SUBST([all_targets])
45
46AC_SEARCH_LIBS([socket], [xnet])
47if test "$with_gssapi" != "no"; then
48 AC_SEARCH_LIBS([gss_init_sec_context], [gssapi gssapi_krb5 gss])
49fi
50
51AC_CHECK_FUNCS([getaddrinfo ptsname setresuid strsignal updwtmpx])
52
53AC_OUTPUT
54
55AH_BOTTOM([
56/* Convert autoconf definitions to ones that PuTTY wants. */
57
58#ifndef HAVE_GETADDRINFO
59# define NO_IPV6
60#endif
61#ifndef HAVE_SETRESUID
62# define HAVE_NO_SETRESUID
63#endif
64#ifndef HAVE_STRSIGNAL
65# define HAVE_NO_STRSIGNAL
66#endif
67#if !defined(HAVE_UTMPX_H) || !defined(HAVE_UPDWTMPX)
68# define OMIT_UTMP
69#endif
70#ifndef HAVE_PTSNAME
71# define BSD_PTYS
72#endif
73#ifndef HAVE_SYS_SELECT_H
74# define HAVE_NO_SYS_SELECT_H
75#endif
76#ifndef HAVE_PANGO_FONT_FAMILY_IS_MONOSPACE
77# define PANGO_PRE_1POINT4
78#endif
79#ifndef HAVE_PANGO_FONT_MAP_LIST_FAMILIES
80# define PANGO_PRE_1POINT6
81#endif
82#ifndef HAVE_GSSAPI_GSSAPI_H
83# define NO_GSSAPI
84#endif
85])