aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <github@cygwin.de>2015-03-03 16:37:23 +0100
committerCorinna Vinschen <github@cygwin.de>2015-03-03 16:37:23 +0100
commit98902539a4eb64d2ee065e6f3d0cadb022cc60a6 (patch)
tree7e1a2b4c0652ae2e7a292cb5f02143acdbbcba45
parentd193b171b60008868a5dea02073cfa2305b6d01f (diff)
downloadportable-98902539a4eb64d2ee065e6f3d0cadb022cc60a6.tar.gz
portable-98902539a4eb64d2ee065e6f3d0cadb022cc60a6.tar.bz2
portable-98902539a4eb64d2ee065e6f3d0cadb022cc60a6.zip
Add preliminary Cygwin support
Signed-off-by: Corinna Vinschen <github@cygwin.de>
-rw-r--r--configure.ac6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 24eb24f..982fb82 100644
--- a/configure.ac
+++ b/configure.ac
@@ -13,6 +13,9 @@ AC_SUBST([USER_CFLAGS], "-O2 $CFLAGS")
13CFLAGS="$CFLAGS -Wall -std=gnu99 -g" 13CFLAGS="$CFLAGS -Wall -std=gnu99 -g"
14 14
15case $host_os in 15case $host_os in
16 *cygwin*)
17 HOST_OS=cygwin
18 ;;
16 *darwin*) 19 *darwin*)
17 HOST_OS=darwin 20 HOST_OS=darwin
18 HOST_ABI=macosx 21 HOST_ABI=macosx
@@ -53,6 +56,7 @@ case $host_os in
53 *) ;; 56 *) ;;
54esac 57esac
55 58
59AM_CONDITIONAL([HOST_CYGWIN], [test x$HOST_OS = xcygwin])
56AM_CONDITIONAL([HOST_DARWIN], [test x$HOST_OS = xdarwin]) 60AM_CONDITIONAL([HOST_DARWIN], [test x$HOST_OS = xdarwin])
57AM_CONDITIONAL([HOST_FREEBSD], [test x$HOST_OS = xfreebsd]) 61AM_CONDITIONAL([HOST_FREEBSD], [test x$HOST_OS = xfreebsd])
58AM_CONDITIONAL([HOST_HPUX], [test x$HOST_OS = xhpux]) 62AM_CONDITIONAL([HOST_HPUX], [test x$HOST_OS = xhpux])
@@ -163,7 +167,7 @@ AS_IF([test "x$enable_hardening" = "xyes"], [
163 AC_MSG_WARN([compiler does not appear to support stack protection]) 167 AC_MSG_WARN([compiler does not appear to support stack protection])
164 ) 168 )
165 ) 169 )
166 AS_IF([test "x$HOST_OS" = "xwin"], [ 170 AS_IF([test "x$HOST_OS" = "xwin" -o "x$HOST_OS" = "xcygwin"], [
167 AC_SEARCH_LIBS([__stack_chk_guard],[ssp]) 171 AC_SEARCH_LIBS([__stack_chk_guard],[ssp])
168 ]) 172 ])
169 ]) 173 ])