virt-win-common.m4 1.4 KB
Newer Older
1
dnl The MinGW common checks
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
dnl
dnl Copyright (C) 2016 Red Hat, Inc.
dnl
dnl This library is free software; you can redistribute it and/or
dnl modify it under the terms of the GNU Lesser General Public
dnl License as published by the Free Software Foundation; either
dnl version 2.1 of the License, or (at your option) any later version.
dnl
dnl This library is distributed in the hope that it will be useful,
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
dnl Lesser General Public License for more details.
dnl
dnl You should have received a copy of the GNU Lesser General Public
dnl License along with this library.  If not, see
dnl <http://www.gnu.org/licenses/>.
dnl

AC_DEFUN([LIBVIRT_WIN_CHECK_COMMON], [
  WIN32_EXTRA_CFLAGS=
  WIN32_EXTRA_LIBS=

  case "$host" in
25
    *-*-mingw* )
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
      WIN32_EXTRA_LIBS="-lole32 -loleaut32"
      # If the host is Windows, and shared libraries are disabled, we
      # need to add -DLIBVIRT_STATIC to the CFLAGS for proper linking
      if test "x$enable_shared" = "xno"; then
        WIN32_EXTRA_CFLAGS="-DLIBVIRT_STATIC"
      fi
      ;;
  esac

  AC_SUBST([WIN32_EXTRA_CFLAGS])
  AC_SUBST([WIN32_EXTRA_LIBS])
])

AC_DEFUN([LIBVIRT_WIN_RESULT_COMMON], [
  details="CFLAGS='$WIN32_EXTRA_CFLAGS' LIBS='$WIN32_EXTRA_LIBS'"
41
  LIBVIRT_RESULT([MinGW], [$with_win], [$details])
42
])