diff options
author | Ingela Anderton Andin <[email protected]> | 2014-01-14 18:03:31 +0100 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2014-01-15 11:37:44 +0100 |
commit | ecdca9d27450e1b9f96454dfa5997ed6b1e05fc8 (patch) | |
tree | 9b62981ba6c946f5a0b8f147d2febe50a4f35a2b /lib/odbc/configure.in | |
parent | 25237481ccccd3ddfa74582dc267632ad618ba30 (diff) | |
download | otp-ecdca9d27450e1b9f96454dfa5997ed6b1e05fc8.tar.gz otp-ecdca9d27450e1b9f96454dfa5997ed6b1e05fc8.tar.bz2 otp-ecdca9d27450e1b9f96454dfa5997ed6b1e05fc8.zip |
odbc: Fix configure check to work proparly on windows
Diffstat (limited to 'lib/odbc/configure.in')
-rw-r--r-- | lib/odbc/configure.in | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/odbc/configure.in b/lib/odbc/configure.in index 531ad84fb9..fa81f36e98 100644 --- a/lib/odbc/configure.in +++ b/lib/odbc/configure.in @@ -1,7 +1,7 @@ dnl dnl %CopyrightBegin% dnl -dnl Copyright Ericsson AB 2005-2013. All Rights Reserved. +dnl Copyright Ericsson AB 2005-2014. All Rights Reserved. dnl dnl The contents of this file are subject to the Erlang Public License, dnl Version 1.1, (the "License"); you may not use this file except in @@ -105,7 +105,12 @@ AC_CHECK_FUNC(gethostbyname, , AC_CHECK_LIB(nsl, main, [LIBS="$LIBS -lnsl"])) dnl Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS([fcntl.h netdb.h stdlib.h string.h sys/socket.h winsock2.h]) -AC_CHECK_HEADERS([sql.h, sqlext.h], [odbc_required_headers=yes], [odbc_required_headers=no]) +AC_CHECK_HEADERS([windows.h]) +AC_CHECK_HEADERS([sql.h sqlext.h], [odbc_required_headers=yes], [odbc_required_headers=no], +[[#ifdef HAVE_WINDOWS_H + # include <windows.h> + #endif + ]]) dnl Checks for typedefs, structures, and compiler characteristics. AC_C_CONST |