1# intlmacosx.m4 serial 5 (gettext-0.18.2) 2dnl Copyright (C) 2004-2012 Free Software Foundation, Inc. 3dnl This file is free software; the Free Software Foundation 4dnl gives unlimited permission to copy and/or distribute it, 5dnl with or without modifications, as long as this notice is preserved. 6dnl 7dnl This file can can be used in projects which are not available under 8dnl the GNU General Public License or the GNU Library General Public 9dnl License but which still want to provide support for the GNU gettext 10dnl functionality. 11dnl Please note that the actual code of the GNU gettext library is covered 12dnl by the GNU Library General Public License, and the rest of the GNU 13dnl gettext package package is covered by the GNU General Public License. 14dnl They are *not* in the public domain. 15 16dnl Checks for special options needed on Mac OS X. 17dnl Defines INTL_MACOSX_LIBS. 18AC_DEFUN([gt_INTL_MACOSX], 19[ 20 dnl Check for API introduced in Mac OS X 10.2. 21 AC_CACHE_CHECK([for CFPreferencesCopyAppValue], 22 [gt_cv_func_CFPreferencesCopyAppValue], 23 [gt_save_LIBS="$LIBS" 24 LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" 25 AC_LINK_IFELSE( 26 [AC_LANG_PROGRAM( 27 [[#include <CoreFoundation/CFPreferences.h>]], 28 [[CFPreferencesCopyAppValue(NULL, NULL)]])], 29 [gt_cv_func_CFPreferencesCopyAppValue=yes], 30 [gt_cv_func_CFPreferencesCopyAppValue=no]) 31 LIBS="$gt_save_LIBS"]) 32 if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then 33 AC_DEFINE([HAVE_CFPREFERENCESCOPYAPPVALUE], [1], 34 [Define to 1 if you have the Mac OS X function CFPreferencesCopyAppValue in the CoreFoundation framework.]) 35 fi 36 dnl Check for API introduced in Mac OS X 10.3. 37 AC_CACHE_CHECK([for CFLocaleCopyCurrent], [gt_cv_func_CFLocaleCopyCurrent], 38 [gt_save_LIBS="$LIBS" 39 LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation" 40 AC_LINK_IFELSE( 41 [AC_LANG_PROGRAM( 42 [[#include <CoreFoundation/CFLocale.h>]], 43 [[CFLocaleCopyCurrent();]])], 44 [gt_cv_func_CFLocaleCopyCurrent=yes], 45 [gt_cv_func_CFLocaleCopyCurrent=no]) 46 LIBS="$gt_save_LIBS"]) 47 if test $gt_cv_func_CFLocaleCopyCurrent = yes; then 48 AC_DEFINE([HAVE_CFLOCALECOPYCURRENT], [1], 49 [Define to 1 if you have the Mac OS X function CFLocaleCopyCurrent in the CoreFoundation framework.]) 50 fi 51 INTL_MACOSX_LIBS= 52 if test $gt_cv_func_CFPreferencesCopyAppValue = yes || test $gt_cv_func_CFLocaleCopyCurrent = yes; then 53 INTL_MACOSX_LIBS="-Wl,-framework -Wl,CoreFoundation" 54 fi 55 AC_SUBST([INTL_MACOSX_LIBS]) 56]) 57