summaryrefslogtreecommitdiff
path: root/m4/evil_windows.m4
blob: e64d68870d5d1691b83d5b279289d1a188c9a5bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
dnl Copyright (C) 2011 Vincent Torri <vincent dot torri at gmail dot com>
dnl This code is public domain and can be freely used or copied.

dnl Macro that select the Windows version (XP (default), Vista, 7)

dnl Usage: EFL_SELECT_WINDOWS_VERSION()
dnl Update CPPFLAGS accordingly

AC_DEFUN([EFL_SELECT_WINDOWS_VERSION],
[

dnl configure option

AC_ARG_WITH([windows-version],
   [AC_HELP_STRING([--with-windows-version], [select the target Windows version (xp, vista, win7 or ce) @<:@default=xp@:>@])],
   [
    if test "x${with_windows_version}" = "xvista" ; then
       _winver="vista"
    else
       if test "x${with_windows_version}" = "xwin7" ; then
          _winver="win7"
       else
          if test "x${with_windows_version}" = "ce" ; then
             _winver="ce"
          else
             _winver="xp"
          fi
       fi
    fi
   ],
   [_winver="xp"])

AC_MSG_CHECKING([which Windows version to target])
AC_MSG_RESULT([${_winver}])

case "${_winver}" in
  ce)
     EFL_WINDOWS_VERSION_CFLAGS="-D_WIN32_WCE=0x0420"
     _efl_windows_version="Windows CE"
     ;;
  vista)
     EFL_WINDOWS_VERSION_CFLAGS="-D_WIN32_WINNT=0x0600"
     _efl_windows_version="Windows Vista"
     ;;
  win7)
     EFL_WINDOWS_VERSION_CFLAGS="-D_WIN32_WINNT=0x0601"
     _efl_windows_version="Windows 7"
     ;;
  *)
     EFL_WINDOWS_VERSION_CFLAGS="-D_WIN32_WINNT=0x0501"
     _efl_windows_version="Windows XP"
     ;;
esac

EFL_CFLAGS="${EFL_CFLAGS} ${EFL_WINDOWS_VERSION_CFLAGS}"
AC_SUBST([EFL_WINDOWS_VERSION_CFLAGS])
AC_SUBST([_efl_windows_version])

])