mirror of
https://github.com/yann64/haikuports.git
synced 2026-03-19 01:46:00 +01:00
25 lines
828 B
Diff
25 lines
828 B
Diff
diff -urN putty-0.60/unix/configure.ac putty-0.60-haiku/unix/configure.ac
|
|
--- putty-0.60/unix/configure.ac 2009-02-07 20:49:11.000000000 +0000
|
|
+++ putty-0.60-haiku/unix/configure.ac 2009-02-07 21:50:05.000000000 +0000
|
|
@@ -14,14 +14,16 @@
|
|
CFLAGS="$CFLAGS -Wall -Werror"
|
|
fi
|
|
|
|
-AC_CHECK_HEADERS([utmpx.h sys/select.h],,,[
|
|
-#include <sys/types.h>
|
|
-#include <utmp.h>])
|
|
+AC_CHECK_HEADERS([utmpx.h])
|
|
+AC_CHECK_HEADERS([sys/select.h])
|
|
+AC_CHECK_HEADERS([sys/types.h])
|
|
+AC_CHECK_HEADERS([utmp.h])
|
|
|
|
-AM_PATH_GTK([1.2.0], [all_targets="all-cli all-gtk"], [all_targets="all-cli"])
|
|
+#AM_PATH_GTK([1.2.0], [all_targets="all-cli all-gtk"], [all_targets="all-cli"])
|
|
AC_SUBST([all_targets])
|
|
|
|
AC_SEARCH_LIBS([socket], [xnet])
|
|
+AC_SEARCH_LIBS([socket], [network])
|
|
|
|
AC_CHECK_FUNCS([getaddrinfo ptsname setresuid strsignal updwtmpx])
|
|
|