| 126 *-*-mingw* | *-*-cygwin*) |
126 *-*-mingw* | *-*-cygwin*) |
| 127 is_win32="yes" |
127 is_win32="yes" |
| 128 LIBS="$LIBS -lws2_32" |
128 LIBS="$LIBS -lws2_32" |
| 129 DNSAPI_LIBS="-ldnsapi" |
129 DNSAPI_LIBS="-ldnsapi" |
| 130 AC_SUBST(DNSAPI_LIBS) |
130 AC_SUBST(DNSAPI_LIBS) |
| |
131 AC_DEFINE(IS_WIN32_CROSS_COMPILED, 1, |
| |
132 [Define to 1, when building with autotools (not necessarily |
| |
133 cross-compiling) for windows. It's a temporary hack to remain |
| |
134 non-autotools win32 build working. Drop it when we fully |
| |
135 switch our win32 build to autotools.]) |
| 131 ;; |
136 ;; |
| 132 *) |
137 *) |
| 133 is_win32="no" |
138 is_win32="no" |
| 134 AC_CHECK_HEADERS(signal.h) |
139 AC_CHECK_HEADERS(signal.h) |
| 135 ;; |
140 ;; |