~ubuntu-branches/ubuntu/vivid/parted/vivid

« back to all changes in this revision

Viewing changes to m4/intlmacosx.m4

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2014-07-30 13:16:15 UTC
  • mfrom: (7.2.34 sid)
  • Revision ID: package-import@ubuntu.com-20140730131615-6uy87mosal6722s6
Tags: 3.2-1
* New upstream release.
* Drop currently-unused build-dependency on po4a (thanks, Johannes
  Schauer).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# intlmacosx.m4 serial 4 (gettext-0.18.2)
2
 
dnl Copyright (C) 2004-2012 Free Software Foundation, Inc.
 
1
# intlmacosx.m4 serial 5 (gettext-0.18.2)
 
2
dnl Copyright (C) 2004-2014 Free Software Foundation, Inc.
3
3
dnl This file is free software; the Free Software Foundation
4
4
dnl gives unlimited permission to copy and/or distribute it,
5
5
dnl with or without modifications, as long as this notice is preserved.
13
13
dnl gettext package package is covered by the GNU General Public License.
14
14
dnl They are *not* in the public domain.
15
15
 
16
 
dnl Checks for special options needed on MacOS X.
 
16
dnl Checks for special options needed on Mac OS X.
17
17
dnl Defines INTL_MACOSX_LIBS.
18
18
AC_DEFUN([gt_INTL_MACOSX],
19
19
[
20
 
  dnl Check for API introduced in MacOS X 10.2.
 
20
  dnl Check for API introduced in Mac OS X 10.2.
21
21
  AC_CACHE_CHECK([for CFPreferencesCopyAppValue],
22
22
    [gt_cv_func_CFPreferencesCopyAppValue],
23
23
    [gt_save_LIBS="$LIBS"
31
31
     LIBS="$gt_save_LIBS"])
32
32
  if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then
33
33
    AC_DEFINE([HAVE_CFPREFERENCESCOPYAPPVALUE], [1],
34
 
      [Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in the CoreFoundation framework.])
 
34
      [Define to 1 if you have the Mac OS X function CFPreferencesCopyAppValue in the CoreFoundation framework.])
35
35
  fi
36
 
  dnl Check for API introduced in MacOS X 10.3.
 
36
  dnl Check for API introduced in Mac OS X 10.3.
37
37
  AC_CACHE_CHECK([for CFLocaleCopyCurrent], [gt_cv_func_CFLocaleCopyCurrent],
38
38
    [gt_save_LIBS="$LIBS"
39
39
     LIBS="$LIBS -Wl,-framework -Wl,CoreFoundation"
46
46
     LIBS="$gt_save_LIBS"])
47
47
  if test $gt_cv_func_CFLocaleCopyCurrent = yes; then
48
48
    AC_DEFINE([HAVE_CFLOCALECOPYCURRENT], [1],
49
 
      [Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the CoreFoundation framework.])
 
49
      [Define to 1 if you have the Mac OS X function CFLocaleCopyCurrent in the CoreFoundation framework.])
50
50
  fi
51
51
  INTL_MACOSX_LIBS=
52
52
  if test $gt_cv_func_CFPreferencesCopyAppValue = yes || test $gt_cv_func_CFLocaleCopyCurrent = yes; then