Check for <sys/sockio.h> and include it in uxnet.c if we find it. It's
[sgt/putty] / unix / configure.ac
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
7 AC_INIT
8 AC_CONFIG_FILES([Makefile])
9 AC_CONFIG_HEADERS([uxconfig.h:uxconfig.in])
10
11 AC_PROG_INSTALL
12 AC_PROG_CC
13 if test "X$GCC" = Xyes; then
14 CFLAGS="$CFLAGS -Wall -Werror"
15 fi
16
17 AC_CHECK_HEADERS([sys/sockio.h],,,[ ])
18
19 AM_PATH_GTK([1.2.0], [all_targets="all-cli all-gtk"], [all_targets="all-cli"])
20 AC_SUBST([all_targets])
21
22 AC_SEARCH_LIBS([socket], [xnet])
23
24 AC_CHECK_FUNCS([getaddrinfo ptsname pututline setresuid strsignal])
25
26 AC_OUTPUT
27
28 AH_BOTTOM([
29 /* Convert autoconf definitions to ones that PuTTY wants. */
30
31 #ifndef HAVE_GETADDRINFO
32 # define NO_IPV6
33 #endif
34 #ifndef HAVE_SETRESUID
35 # define HAVE_NO_SETRESUID
36 #endif
37 #ifndef HAVE_STRSIGNAL
38 # define HAVE_NO_STRSIGNAL
39 #endif
40 #ifndef HAVE_PUTUTLINE
41 # define OMIT_UTMP
42 #endif
43 #ifndef HAVE_PTSNAME
44 # define BSD_PTYS
45 #endif
46 ])