autoconf
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Invoking AM_GNU_GETTEXT conditionally in configure.ac


From: Keith Marshall
Subject: Re: Invoking AM_GNU_GETTEXT conditionally in configure.ac
Date: Fri, 12 Feb 2010 21:30:27 +0000
User-agent: KMail/1.9.10

On Friday 12 February 2010 20:55:03 David Bruce wrote:
> AC_MSG_CHECKING([for native Win32])
> case "$host" in
>   *-*-mingw*)
>     native_win32=yes
>     ;;
>   *)
>     native_win32=no
>     ;;
> esac

I don't know the best way to solve your principal problem, but a 
better way to check for this is to use AC_COMPILE_IFELSE, as in this 
macro used in several MinGW packages:

# MINGW_AC_WIN32_NATIVE_HOST
# --------------------------
# Check if the runtime platform is a native Win32 host.
#
AC_DEFUN([MINGW_AC_WIN32_NATIVE_HOST],
[AC_CACHE_CHECK([whether we are building for a Win32 host],
 [mingw_cv_win32_host],
 AC_COMPILE_IFELSE([[
#ifdef _WIN32
 choke me
#endif]], [mingw_cv_win32_host=no], [mingw_cv_win32_host=yes]))dnl
])# MINGW_AC_WIN32_NATIVE_HOST

--

Regards,
Keith.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]