~ubuntu-branches/ubuntu/saucy/gnome-shell-extensions/saucy-proposed

« back to all changes in this revision

Viewing changes to aclocal.m4

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2013-09-11 16:40:53 UTC
  • mfrom: (1.2.4)
  • Revision ID: package-import@ubuntu.com-20130911164053-vw2yrofw21q2rjxt
Tags: 3.8.4-0ubuntu1
* New upstream bugfix release.
  - systemMonitor blocks the message tray menu properly
  - translation updates
* Dropped patches applied in new version:
  - fix-hibernate.patch
  - fix-applications-menu-resolution-change.patch
  - look-in-data-home-for-themes.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# generated automatically by aclocal 1.13.1 -*- Autoconf -*-
 
1
# generated automatically by aclocal 1.13.4 -*- Autoconf -*-
2
2
 
3
 
# Copyright (C) 1996-2012 Free Software Foundation, Inc.
 
3
# Copyright (C) 1996-2013 Free Software Foundation, Inc.
4
4
 
5
5
# This file is free software; the Free Software Foundation
6
6
# gives unlimited permission to copy and/or distribute it,
35
35
[am__api_version='1.13'
36
36
dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
37
37
dnl require some minimum version.  Point them to the right macro.
38
 
m4_if([$1], [1.13.1], [],
 
38
m4_if([$1], [1.13.4], [],
39
39
      [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
40
40
])
41
41
 
51
51
# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
52
52
# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
53
53
AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
54
 
[AM_AUTOMAKE_VERSION([1.13.1])dnl
 
54
[AM_AUTOMAKE_VERSION([1.13.4])dnl
55
55
m4_ifndef([AC_AUTOCONF_VERSION],
56
56
  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
57
57
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
373
373
    DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
374
374
    test -z "$DEPDIR" && continue
375
375
    am__include=`sed -n 's/^am__include = //p' < "$mf"`
376
 
    test -z "am__include" && continue
 
376
    test -z "$am__include" && continue
377
377
    am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
378
378
    # Find all dependency output files, they are included files with
379
379
    # $(DEPDIR) in their names.  We invoke sed twice because it is the
942
942
# Substitute a variable $(am__untar) that extract such
943
943
# a tarball read from stdin.
944
944
#     $(am__untar) < result.tar
 
945
#
945
946
AC_DEFUN([_AM_PROG_TAR],
946
947
[# Always define AMTAR for backward compatibility.  Yes, it's still used
947
948
# in the wild :-(  We should find a proper way to deprecate it ...
948
949
AC_SUBST([AMTAR], ['$${TAR-tar}'])
 
950
 
 
951
# We'll loop over all known methods to create a tar archive until one works.
 
952
_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
 
953
 
949
954
m4_if([$1], [v7],
950
 
     [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
951
 
     [m4_case([$1], [ustar],, [pax],,
952
 
              [m4_fatal([Unknown tar format])])
953
 
AC_MSG_CHECKING([how to create a $1 tar archive])
954
 
# Loop over all known methods to create a tar archive until one works.
955
 
_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
956
 
_am_tools=${am_cv_prog_tar_$1-$_am_tools}
957
 
# Do not fold the above two line into one, because Tru64 sh and
958
 
# Solaris sh will not grok spaces in the rhs of '-'.
959
 
for _am_tool in $_am_tools
960
 
do
961
 
  case $_am_tool in
962
 
  gnutar)
963
 
    for _am_tar in tar gnutar gtar;
964
 
    do
965
 
      AM_RUN_LOG([$_am_tar --version]) && break
966
 
    done
967
 
    am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
968
 
    am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
969
 
    am__untar="$_am_tar -xf -"
970
 
    ;;
971
 
  plaintar)
972
 
    # Must skip GNU tar: if it does not support --format= it doesn't create
973
 
    # ustar tarball either.
974
 
    (tar --version) >/dev/null 2>&1 && continue
975
 
    am__tar='tar chf - "$$tardir"'
976
 
    am__tar_='tar chf - "$tardir"'
977
 
    am__untar='tar xf -'
978
 
    ;;
979
 
  pax)
980
 
    am__tar='pax -L -x $1 -w "$$tardir"'
981
 
    am__tar_='pax -L -x $1 -w "$tardir"'
982
 
    am__untar='pax -r'
983
 
    ;;
984
 
  cpio)
985
 
    am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
986
 
    am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
987
 
    am__untar='cpio -i -H $1 -d'
988
 
    ;;
989
 
  none)
990
 
    am__tar=false
991
 
    am__tar_=false
992
 
    am__untar=false
993
 
    ;;
994
 
  esac
995
 
 
996
 
  # If the value was cached, stop now.  We just wanted to have am__tar
997
 
  # and am__untar set.
998
 
  test -n "${am_cv_prog_tar_$1}" && break
999
 
 
1000
 
  # tar/untar a dummy directory, and stop if the command works
1001
 
  rm -rf conftest.dir
1002
 
  mkdir conftest.dir
1003
 
  echo GrepMe > conftest.dir/file
1004
 
  AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
1005
 
  rm -rf conftest.dir
1006
 
  if test -s conftest.tar; then
1007
 
    AM_RUN_LOG([$am__untar <conftest.tar])
1008
 
    grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
1009
 
  fi
1010
 
done
1011
 
rm -rf conftest.dir
1012
 
 
1013
 
AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
1014
 
AC_MSG_RESULT([$am_cv_prog_tar_$1])])
 
955
  [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
 
956
 
 
957
  [m4_case([$1],
 
958
    [ustar],
 
959
     [# The POSIX 1988 'ustar' format is defined with fixed-size fields.
 
960
      # There is notably a 21 bits limit for the UID and the GID.  In fact,
 
961
      # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343
 
962
      # and bug#13588).
 
963
      am_max_uid=2097151 # 2^21 - 1
 
964
      am_max_gid=$am_max_uid
 
965
      # The $UID and $GID variables are not portable, so we need to resort
 
966
      # to the POSIX-mandated id(1) utility.  Errors in the 'id' calls
 
967
      # below are definitely unexpected, so allow the users to see them
 
968
      # (that is, avoid stderr redirection).
 
969
      am_uid=`id -u || echo unknown`
 
970
      am_gid=`id -g || echo unknown`
 
971
      AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format])
 
972
      if test $am_uid -le $am_max_uid; then
 
973
         AC_MSG_RESULT([yes])
 
974
      else
 
975
         AC_MSG_RESULT([no])
 
976
         _am_tools=none
 
977
      fi
 
978
      AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format])
 
979
      if test $am_gid -le $am_max_gid; then
 
980
         AC_MSG_RESULT([yes])
 
981
      else
 
982
        AC_MSG_RESULT([no])
 
983
        _am_tools=none
 
984
      fi],
 
985
 
 
986
  [pax],
 
987
    [],
 
988
 
 
989
  [m4_fatal([Unknown tar format])])
 
990
 
 
991
  AC_MSG_CHECKING([how to create a $1 tar archive])
 
992
 
 
993
  # Go ahead even if we have the value already cached.  We do so because we
 
994
  # need to set the values for the 'am__tar' and 'am__untar' variables.
 
995
  _am_tools=${am_cv_prog_tar_$1-$_am_tools}
 
996
 
 
997
  for _am_tool in $_am_tools; do
 
998
    case $_am_tool in
 
999
    gnutar)
 
1000
      for _am_tar in tar gnutar gtar; do
 
1001
        AM_RUN_LOG([$_am_tar --version]) && break
 
1002
      done
 
1003
      am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
 
1004
      am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
 
1005
      am__untar="$_am_tar -xf -"
 
1006
      ;;
 
1007
    plaintar)
 
1008
      # Must skip GNU tar: if it does not support --format= it doesn't create
 
1009
      # ustar tarball either.
 
1010
      (tar --version) >/dev/null 2>&1 && continue
 
1011
      am__tar='tar chf - "$$tardir"'
 
1012
      am__tar_='tar chf - "$tardir"'
 
1013
      am__untar='tar xf -'
 
1014
      ;;
 
1015
    pax)
 
1016
      am__tar='pax -L -x $1 -w "$$tardir"'
 
1017
      am__tar_='pax -L -x $1 -w "$tardir"'
 
1018
      am__untar='pax -r'
 
1019
      ;;
 
1020
    cpio)
 
1021
      am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
 
1022
      am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
 
1023
      am__untar='cpio -i -H $1 -d'
 
1024
      ;;
 
1025
    none)
 
1026
      am__tar=false
 
1027
      am__tar_=false
 
1028
      am__untar=false
 
1029
      ;;
 
1030
    esac
 
1031
 
 
1032
    # If the value was cached, stop now.  We just wanted to have am__tar
 
1033
    # and am__untar set.
 
1034
    test -n "${am_cv_prog_tar_$1}" && break
 
1035
 
 
1036
    # tar/untar a dummy directory, and stop if the command works.
 
1037
    rm -rf conftest.dir
 
1038
    mkdir conftest.dir
 
1039
    echo GrepMe > conftest.dir/file
 
1040
    AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
 
1041
    rm -rf conftest.dir
 
1042
    if test -s conftest.tar; then
 
1043
      AM_RUN_LOG([$am__untar <conftest.tar])
 
1044
      AM_RUN_LOG([cat conftest.dir/file])
 
1045
      grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
 
1046
    fi
 
1047
  done
 
1048
  rm -rf conftest.dir
 
1049
 
 
1050
  AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
 
1051
  AC_MSG_RESULT([$am_cv_prog_tar_$1])])
 
1052
 
1015
1053
AC_SUBST([am__tar])
1016
1054
AC_SUBST([am__untar])
1017
1055
]) # _AM_PROG_TAR