blob: 718cc41e67f2091172fda8793059f263e6fafece [file] [log] [blame]
Emeric Vigier2f625822012-08-06 11:09:52 -04001dnl Copyright (C) 1999-2005 Open Source Telecom Corporation.
2dnl Copyright (C) 2006-2010 David Sugar, Tycho Softworks.
3dnl
4dnl This program is free software; you can redistribute it and/or modify
5dnl it under the terms of the GNU General Public License as published by
6dnl the Free Software Foundation; either version 2 of the License, or
7dnl (at your option) any later version.
8dnl
9dnl This program is distributed in the hope that it will be useful,
10dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
11dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12dnl GNU General Public License for more details.
13dnl
14dnl You should have received a copy of the GNU General Public License
15dnl along with this program; if not, write to the Free Software
16dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17dnl
18dnl As a special exception to the GNU General Public License, if you
19dnl distribute this file as part of a program that contains a configuration
20dnl script generated by Autoconf, you may include it under the same
21dnl distribution terms that you use for the rest of that program.
22
23AC_DEFUN([OST_WINVER],[
24 WINVERSION="`echo $VERSION | sed 's/\./,/g'`,0"
25 AC_SUBST(WINVERSION)
26])
27
28AC_DEFUN([OST_WIN32],[
29 AC_REQUIRE([OST_PROG_CC_POSIX])
30 AC_CACHE_CHECK(for Win32 gnu environment, ost_cv_gnuwin32,[
31 ac_save_CFLAGS="$CFLAGS"
32 CFLAGS=""
33 AC_TRY_COMPILE([
34 #ifdef __WIN32__
35 #ifdef __MINGW32__
36 #define __RETURN_WIN32__ __MINGW32__
37 #endif
38 #ifdef __CYGWIN32__
39 #define __RETURN_WIN32__ __CYGWIN32__
40 #endif
41 #endif
42 ],[return __RETURN_WIN32__;],
43 [ost_cv_gnuwin32=yes
44 ],[ost_cv_gnuwin32=no])
45 rm -f conftest*
46 CFLAGS="$ac_save_CFLAGS"
47 ])
48])
49