~ubuntu-branches/ubuntu/trusty/gnome-shell/trusty-proposed

« back to all changes in this revision

Viewing changes to configure

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2013-06-16 19:14:01 UTC
  • mfrom: (1.1.50) (19.1.37 experimental)
  • Revision ID: package-import@ubuntu.com-20130616191401-kef9vj3obfuvusrn
Tags: 3.8.3-1ubuntu1
* Merge with Debian. Remaining changes:
  - debian/control.in:
    + Build-depend on libsystemd-login-dev & libsystemd-daemon-dev
    + Depend on gdm instead of gdm3
  - debian/patches/40_change-pam-name-to-match-gdm.patch:
  - debian/patches/revert-suspend-break.patch:
    + Disabled, not needed on Ubuntu
  - debian/patches/ubuntu-lightdm-user-switching.patch:
    + Allow user switching when using LightDM.
  - debian/patches/ubuntu_lock_on_suspend.patch
    + Respect Ubuntu's lock-on-suspend setting.
      Disabled until it can be rewritten.
  - debian/patches/git_relock_screen_after_crash.patch:
    + Backport fix to ensure session is locked after crash
* debian/patches/revert-input-source-changes.patch:
  - Temporarily revert input source changes that need gnome-settings-daemon
    and gnome-control-center 3.8.3 to be useful
* debian/patches/revert-notification-settings-link.patch:
  - Don't link to Notification Settings since that's only available
    with gnome-control-center >= 3.8.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#! /bin/sh
2
2
# Guess values for system-dependent variables and create Makefiles.
3
 
# Generated by GNU Autoconf 2.69 for gnome-shell 3.8.2.
 
3
# Generated by GNU Autoconf 2.69 for gnome-shell 3.8.3.
4
4
#
5
5
# Report bugs to <https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell>.
6
6
#
591
591
# Identity of this package.
592
592
PACKAGE_NAME='gnome-shell'
593
593
PACKAGE_TARNAME='gnome-shell'
594
 
PACKAGE_VERSION='3.8.2'
595
 
PACKAGE_STRING='gnome-shell 3.8.2'
 
594
PACKAGE_VERSION='3.8.3'
 
595
PACKAGE_STRING='gnome-shell 3.8.3'
596
596
PACKAGE_BUGREPORT='https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell'
597
597
PACKAGE_URL=''
598
598
 
1499
1499
  # Omit some internal or obsolete options to make the list less imposing.
1500
1500
  # This message is too long to be a string in the A/UX 3.1 sh.
1501
1501
  cat <<_ACEOF
1502
 
\`configure' configures gnome-shell 3.8.2 to adapt to many kinds of systems.
 
1502
\`configure' configures gnome-shell 3.8.3 to adapt to many kinds of systems.
1503
1503
 
1504
1504
Usage: $0 [OPTION]... [VAR=VALUE]...
1505
1505
 
1569
1569
 
1570
1570
if test -n "$ac_init_help"; then
1571
1571
  case $ac_init_help in
1572
 
     short | recursive ) echo "Configuration of gnome-shell 3.8.2:";;
 
1572
     short | recursive ) echo "Configuration of gnome-shell 3.8.3:";;
1573
1573
   esac
1574
1574
  cat <<\_ACEOF
1575
1575
 
1754
1754
test -n "$ac_init_help" && exit $ac_status
1755
1755
if $ac_init_version; then
1756
1756
  cat <<\_ACEOF
1757
 
gnome-shell configure 3.8.2
 
1757
gnome-shell configure 3.8.3
1758
1758
generated by GNU Autoconf 2.69
1759
1759
 
1760
1760
Copyright (C) 2012 Free Software Foundation, Inc.
2123
2123
This file contains any messages produced by compilers while
2124
2124
running configure, to aid debugging if configure makes a mistake.
2125
2125
 
2126
 
It was created by gnome-shell $as_me 3.8.2, which was
 
2126
It was created by gnome-shell $as_me 3.8.3, which was
2127
2127
generated by GNU Autoconf 2.69.  Invocation command line was
2128
2128
 
2129
2129
  $ $0 $@
2998
2998
 
2999
2999
# Define the identity of the package.
3000
3000
 PACKAGE='gnome-shell'
3001
 
 VERSION='3.8.2'
 
3001
 VERSION='3.8.3'
3002
3002
 
3003
3003
 
3004
3004
cat >>confdefs.h <<_ACEOF
3039
3039
AMTAR='$${TAR-tar}'
3040
3040
 
3041
3041
 
3042
 
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking how to create a ustar tar archive" >&5
 
3042
# We'll loop over all known methods to create a tar archive until one works.
 
3043
_am_tools='gnutar plaintar pax cpio none'
 
3044
 
 
3045
# The POSIX 1988 'ustar' format is defined with fixed-size fields.
 
3046
      # There is notably a 21 bits limit for the UID and the GID.  In fact,
 
3047
      # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343
 
3048
      # and bug#13588).
 
3049
      am_max_uid=2097151 # 2^21 - 1
 
3050
      am_max_gid=$am_max_uid
 
3051
      # The $UID and $GID variables are not portable, so we need to resort
 
3052
      # to the POSIX-mandated id(1) utility.  Errors in the 'id' calls
 
3053
      # below are definitely unexpected, so allow the users to see them
 
3054
      # (that is, avoid stderr redirection).
 
3055
      am_uid=`id -u || echo unknown`
 
3056
      am_gid=`id -g || echo unknown`
 
3057
      { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether UID '$am_uid' is supported by ustar format" >&5
 
3058
$as_echo_n "checking whether UID '$am_uid' is supported by ustar format... " >&6; }
 
3059
      if test $am_uid -le $am_max_uid; then
 
3060
         { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 
3061
$as_echo "yes" >&6; }
 
3062
      else
 
3063
         { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
3064
$as_echo "no" >&6; }
 
3065
         _am_tools=none
 
3066
      fi
 
3067
      { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether GID '$am_gid' is supported by ustar format" >&5
 
3068
$as_echo_n "checking whether GID '$am_gid' is supported by ustar format... " >&6; }
 
3069
      if test $am_gid -le $am_max_gid; then
 
3070
         { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
 
3071
$as_echo "yes" >&6; }
 
3072
      else
 
3073
        { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
 
3074
$as_echo "no" >&6; }
 
3075
        _am_tools=none
 
3076
      fi
 
3077
 
 
3078
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to create a ustar tar archive" >&5
3043
3079
$as_echo_n "checking how to create a ustar tar archive... " >&6; }
3044
 
# Loop over all known methods to create a tar archive until one works.
3045
 
_am_tools='gnutar plaintar pax cpio none'
3046
 
_am_tools=${am_cv_prog_tar_ustar-$_am_tools}
3047
 
# Do not fold the above two line into one, because Tru64 sh and
3048
 
# Solaris sh will not grok spaces in the rhs of '-'.
3049
 
for _am_tool in $_am_tools
3050
 
do
3051
 
  case $_am_tool in
3052
 
  gnutar)
3053
 
    for _am_tar in tar gnutar gtar;
3054
 
    do
3055
 
      { echo "$as_me:$LINENO: $_am_tar --version" >&5
 
3080
 
 
3081
  # Go ahead even if we have the value already cached.  We do so because we
 
3082
  # need to set the values for the 'am__tar' and 'am__untar' variables.
 
3083
  _am_tools=${am_cv_prog_tar_ustar-$_am_tools}
 
3084
 
 
3085
  for _am_tool in $_am_tools; do
 
3086
    case $_am_tool in
 
3087
    gnutar)
 
3088
      for _am_tar in tar gnutar gtar; do
 
3089
        { echo "$as_me:$LINENO: $_am_tar --version" >&5
3056
3090
   ($_am_tar --version) >&5 2>&5
3057
3091
   ac_status=$?
3058
3092
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
3059
3093
   (exit $ac_status); } && break
3060
 
    done
3061
 
    am__tar="$_am_tar --format=ustar -chf - "'"$$tardir"'
3062
 
    am__tar_="$_am_tar --format=ustar -chf - "'"$tardir"'
3063
 
    am__untar="$_am_tar -xf -"
3064
 
    ;;
3065
 
  plaintar)
3066
 
    # Must skip GNU tar: if it does not support --format= it doesn't create
3067
 
    # ustar tarball either.
3068
 
    (tar --version) >/dev/null 2>&1 && continue
3069
 
    am__tar='tar chf - "$$tardir"'
3070
 
    am__tar_='tar chf - "$tardir"'
3071
 
    am__untar='tar xf -'
3072
 
    ;;
3073
 
  pax)
3074
 
    am__tar='pax -L -x ustar -w "$$tardir"'
3075
 
    am__tar_='pax -L -x ustar -w "$tardir"'
3076
 
    am__untar='pax -r'
3077
 
    ;;
3078
 
  cpio)
3079
 
    am__tar='find "$$tardir" -print | cpio -o -H ustar -L'
3080
 
    am__tar_='find "$tardir" -print | cpio -o -H ustar -L'
3081
 
    am__untar='cpio -i -H ustar -d'
3082
 
    ;;
3083
 
  none)
3084
 
    am__tar=false
3085
 
    am__tar_=false
3086
 
    am__untar=false
3087
 
    ;;
3088
 
  esac
3089
 
 
3090
 
  # If the value was cached, stop now.  We just wanted to have am__tar
3091
 
  # and am__untar set.
3092
 
  test -n "${am_cv_prog_tar_ustar}" && break
3093
 
 
3094
 
  # tar/untar a dummy directory, and stop if the command works
3095
 
  rm -rf conftest.dir
3096
 
  mkdir conftest.dir
3097
 
  echo GrepMe > conftest.dir/file
3098
 
  { echo "$as_me:$LINENO: tardir=conftest.dir && eval $am__tar_ >conftest.tar" >&5
 
3094
      done
 
3095
      am__tar="$_am_tar --format=ustar -chf - "'"$$tardir"'
 
3096
      am__tar_="$_am_tar --format=ustar -chf - "'"$tardir"'
 
3097
      am__untar="$_am_tar -xf -"
 
3098
      ;;
 
3099
    plaintar)
 
3100
      # Must skip GNU tar: if it does not support --format= it doesn't create
 
3101
      # ustar tarball either.
 
3102
      (tar --version) >/dev/null 2>&1 && continue
 
3103
      am__tar='tar chf - "$$tardir"'
 
3104
      am__tar_='tar chf - "$tardir"'
 
3105
      am__untar='tar xf -'
 
3106
      ;;
 
3107
    pax)
 
3108
      am__tar='pax -L -x ustar -w "$$tardir"'
 
3109
      am__tar_='pax -L -x ustar -w "$tardir"'
 
3110
      am__untar='pax -r'
 
3111
      ;;
 
3112
    cpio)
 
3113
      am__tar='find "$$tardir" -print | cpio -o -H ustar -L'
 
3114
      am__tar_='find "$tardir" -print | cpio -o -H ustar -L'
 
3115
      am__untar='cpio -i -H ustar -d'
 
3116
      ;;
 
3117
    none)
 
3118
      am__tar=false
 
3119
      am__tar_=false
 
3120
      am__untar=false
 
3121
      ;;
 
3122
    esac
 
3123
 
 
3124
    # If the value was cached, stop now.  We just wanted to have am__tar
 
3125
    # and am__untar set.
 
3126
    test -n "${am_cv_prog_tar_ustar}" && break
 
3127
 
 
3128
    # tar/untar a dummy directory, and stop if the command works.
 
3129
    rm -rf conftest.dir
 
3130
    mkdir conftest.dir
 
3131
    echo GrepMe > conftest.dir/file
 
3132
    { echo "$as_me:$LINENO: tardir=conftest.dir && eval $am__tar_ >conftest.tar" >&5
3099
3133
   (tardir=conftest.dir && eval $am__tar_ >conftest.tar) >&5 2>&5
3100
3134
   ac_status=$?
3101
3135
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
3102
3136
   (exit $ac_status); }
3103
 
  rm -rf conftest.dir
3104
 
  if test -s conftest.tar; then
3105
 
    { echo "$as_me:$LINENO: $am__untar <conftest.tar" >&5
 
3137
    rm -rf conftest.dir
 
3138
    if test -s conftest.tar; then
 
3139
      { echo "$as_me:$LINENO: $am__untar <conftest.tar" >&5
3106
3140
   ($am__untar <conftest.tar) >&5 2>&5
3107
3141
   ac_status=$?
3108
3142
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
3109
3143
   (exit $ac_status); }
3110
 
    grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
3111
 
  fi
3112
 
done
3113
 
rm -rf conftest.dir
 
3144
      { echo "$as_me:$LINENO: cat conftest.dir/file" >&5
 
3145
   (cat conftest.dir/file) >&5 2>&5
 
3146
   ac_status=$?
 
3147
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
 
3148
   (exit $ac_status); }
 
3149
      grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
 
3150
    fi
 
3151
  done
 
3152
  rm -rf conftest.dir
3114
3153
 
3115
 
if ${am_cv_prog_tar_ustar+:} false; then :
 
3154
  if ${am_cv_prog_tar_ustar+:} false; then :
3116
3155
  $as_echo_n "(cached) " >&6
3117
3156
else
3118
3157
  am_cv_prog_tar_ustar=$_am_tool
3119
3158
fi
3120
3159
 
3121
 
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_tar_ustar" >&5
 
3160
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_tar_ustar" >&5
3122
3161
$as_echo "$am_cv_prog_tar_ustar" >&6; }
3123
3162
 
3124
3163
 
3126
3165
 
3127
3166
 
3128
3167
 
 
3168
 
3129
3169
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5
3130
3170
$as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; }
3131
3171
    # Check whether --enable-maintainer-mode was given.
15026
15066
CLUTTER_MIN_VERSION=1.13.4
15027
15067
GOBJECT_INTROSPECTION_MIN_VERSION=0.10.1
15028
15068
GJS_MIN_VERSION=1.35.4
15029
 
MUTTER_MIN_VERSION=3.8.2
 
15069
MUTTER_MIN_VERSION=3.8.3
15030
15070
GTK_MIN_VERSION=3.7.9
15031
15071
GIO_MIN_VERSION=2.35.0
15032
15072
LIBECAL_MIN_VERSION=3.5.3
15034
15074
TELEPATHY_GLIB_MIN_VERSION=0.17.5
15035
15075
POLKIT_MIN_VERSION=0.100
15036
15076
STARTUP_NOTIFICATION_MIN_VERSION=0.11
15037
 
GCR_MIN_VERSION=3.3.90
 
15077
GCR_MIN_VERSION=3.7.5
15038
15078
GNOME_DESKTOP_REQUIRED_VERSION=3.7.90
15039
15079
GNOME_MENUS_REQUIRED_VERSION=3.5.3
15040
15080
NETWORKMANAGER_MIN_VERSION=0.9.6
15068
15108
                               polkit-agent-1 >= \$POLKIT_MIN_VERSION xfixes
15069
15109
                               libnm-glib libnm-util >= \$NETWORKMANAGER_MIN_VERSION
15070
15110
                               libnm-gtk >= \$NETWORKMANAGER_MIN_VERSION
15071
 
                               libsecret-unstable gcr-3 >= \$GCR_MIN_VERSION\""; } >&5
 
15111
                               libsecret-unstable gcr-base-3 >= \$GCR_MIN_VERSION\""; } >&5
15072
15112
  ($PKG_CONFIG --exists --print-errors "gio-unix-2.0 >= $GIO_MIN_VERSION
15073
15113
                               libxml-2.0
15074
15114
                               gtk+-3.0 >= $GTK_MIN_VERSION
15087
15127
                               polkit-agent-1 >= $POLKIT_MIN_VERSION xfixes
15088
15128
                               libnm-glib libnm-util >= $NETWORKMANAGER_MIN_VERSION
15089
15129
                               libnm-gtk >= $NETWORKMANAGER_MIN_VERSION
15090
 
                               libsecret-unstable gcr-3 >= $GCR_MIN_VERSION") 2>&5
 
15130
                               libsecret-unstable gcr-base-3 >= $GCR_MIN_VERSION") 2>&5
15091
15131
  ac_status=$?
15092
15132
  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
15093
15133
  test $ac_status = 0; }; then
15109
15149
                               polkit-agent-1 >= $POLKIT_MIN_VERSION xfixes
15110
15150
                               libnm-glib libnm-util >= $NETWORKMANAGER_MIN_VERSION
15111
15151
                               libnm-gtk >= $NETWORKMANAGER_MIN_VERSION
15112
 
                               libsecret-unstable gcr-3 >= $GCR_MIN_VERSION" 2>/dev/null`
 
15152
                               libsecret-unstable gcr-base-3 >= $GCR_MIN_VERSION" 2>/dev/null`
15113
15153
                      test "x$?" != "x0" && pkg_failed=yes
15114
15154
else
15115
15155
  pkg_failed=yes
15139
15179
                               polkit-agent-1 >= \$POLKIT_MIN_VERSION xfixes
15140
15180
                               libnm-glib libnm-util >= \$NETWORKMANAGER_MIN_VERSION
15141
15181
                               libnm-gtk >= \$NETWORKMANAGER_MIN_VERSION
15142
 
                               libsecret-unstable gcr-3 >= \$GCR_MIN_VERSION\""; } >&5
 
15182
                               libsecret-unstable gcr-base-3 >= \$GCR_MIN_VERSION\""; } >&5
15143
15183
  ($PKG_CONFIG --exists --print-errors "gio-unix-2.0 >= $GIO_MIN_VERSION
15144
15184
                               libxml-2.0
15145
15185
                               gtk+-3.0 >= $GTK_MIN_VERSION
15158
15198
                               polkit-agent-1 >= $POLKIT_MIN_VERSION xfixes
15159
15199
                               libnm-glib libnm-util >= $NETWORKMANAGER_MIN_VERSION
15160
15200
                               libnm-gtk >= $NETWORKMANAGER_MIN_VERSION
15161
 
                               libsecret-unstable gcr-3 >= $GCR_MIN_VERSION") 2>&5
 
15201
                               libsecret-unstable gcr-base-3 >= $GCR_MIN_VERSION") 2>&5
15162
15202
  ac_status=$?
15163
15203
  $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
15164
15204
  test $ac_status = 0; }; then
15180
15220
                               polkit-agent-1 >= $POLKIT_MIN_VERSION xfixes
15181
15221
                               libnm-glib libnm-util >= $NETWORKMANAGER_MIN_VERSION
15182
15222
                               libnm-gtk >= $NETWORKMANAGER_MIN_VERSION
15183
 
                               libsecret-unstable gcr-3 >= $GCR_MIN_VERSION" 2>/dev/null`
 
15223
                               libsecret-unstable gcr-base-3 >= $GCR_MIN_VERSION" 2>/dev/null`
15184
15224
                      test "x$?" != "x0" && pkg_failed=yes
15185
15225
else
15186
15226
  pkg_failed=yes
15219
15259
                               polkit-agent-1 >= $POLKIT_MIN_VERSION xfixes
15220
15260
                               libnm-glib libnm-util >= $NETWORKMANAGER_MIN_VERSION
15221
15261
                               libnm-gtk >= $NETWORKMANAGER_MIN_VERSION
15222
 
                               libsecret-unstable gcr-3 >= $GCR_MIN_VERSION" 2>&1`
 
15262
                               libsecret-unstable gcr-base-3 >= $GCR_MIN_VERSION" 2>&1`
15223
15263
        else
15224
15264
                GNOME_SHELL_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "gio-unix-2.0 >= $GIO_MIN_VERSION
15225
15265
                               libxml-2.0
15239
15279
                               polkit-agent-1 >= $POLKIT_MIN_VERSION xfixes
15240
15280
                               libnm-glib libnm-util >= $NETWORKMANAGER_MIN_VERSION
15241
15281
                               libnm-gtk >= $NETWORKMANAGER_MIN_VERSION
15242
 
                               libsecret-unstable gcr-3 >= $GCR_MIN_VERSION" 2>&1`
 
15282
                               libsecret-unstable gcr-base-3 >= $GCR_MIN_VERSION" 2>&1`
15243
15283
        fi
15244
15284
        # Put the nasty error message in config.log where it belongs
15245
15285
        echo "$GNOME_SHELL_PKG_ERRORS" >&5
15262
15302
                               polkit-agent-1 >= $POLKIT_MIN_VERSION xfixes
15263
15303
                               libnm-glib libnm-util >= $NETWORKMANAGER_MIN_VERSION
15264
15304
                               libnm-gtk >= $NETWORKMANAGER_MIN_VERSION
15265
 
                               libsecret-unstable gcr-3 >= $GCR_MIN_VERSION) were not met:
 
15305
                               libsecret-unstable gcr-base-3 >= $GCR_MIN_VERSION) were not met:
15266
15306
 
15267
15307
$GNOME_SHELL_PKG_ERRORS
15268
15308
 
17856
17896
# report actual input values of CONFIG_FILES etc. instead of their
17857
17897
# values after options handling.
17858
17898
ac_log="
17859
 
This file was extended by gnome-shell $as_me 3.8.2, which was
 
17899
This file was extended by gnome-shell $as_me 3.8.3, which was
17860
17900
generated by GNU Autoconf 2.69.  Invocation command line was
17861
17901
 
17862
17902
  CONFIG_FILES    = $CONFIG_FILES
17922
17962
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
17923
17963
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
17924
17964
ac_cs_version="\\
17925
 
gnome-shell config.status 3.8.2
 
17965
gnome-shell config.status 3.8.3
17926
17966
configured by $0, generated by GNU Autoconf 2.69,
17927
17967
  with options \\"\$ac_cs_config\\"
17928
17968
 
19003
19043
    DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
19004
19044
    test -z "$DEPDIR" && continue
19005
19045
    am__include=`sed -n 's/^am__include = //p' < "$mf"`
19006
 
    test -z "am__include" && continue
 
19046
    test -z "$am__include" && continue
19007
19047
    am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
19008
19048
    # Find all dependency output files, they are included files with
19009
19049
    # $(DEPDIR) in their names.  We invoke sed twice because it is the