~ubuntu-branches/ubuntu/utopic/gnome-shell-extensions/utopic

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Package Import Robot
  • Author(s): Jeremy Bicha
  • Date: 2012-07-18 09:10:15 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20120718091015-35dxpp0tgcpxos9x
Tags: 3.5.2-0ubuntu1
* Resynchronize with Debian. Remaining change:
  - New upstream version. (LP: #1017979)
  - debian/patches/01_update-version-numbers.patch:
    - Bump GNOME Shell compatibility version to 3.5.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
AC_PREREQ(2.63)
2
 
AC_INIT([gnome-shell-extensions],[3.4.0],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions])
 
2
AC_INIT([gnome-shell-extensions],[3.5.2],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions])
3
3
 
4
4
AC_CONFIG_MACRO_DIR([m4])
5
5
AC_CONFIG_AUX_DIR([config])
18
18
 
19
19
GLIB_GSETTINGS
20
20
 
21
 
SHELL_VERSION="$PACKAGE_VERSION"
22
 
shell_major=`echo "$PACKAGE_VERSION" | cut -d'.' -f1`
23
 
shell_minor=`echo "$PACKAGE_VERSION" | cut -d'.' -f2`
 
21
SHELL_VERSION="3.5.4"
 
22
shell_major=`echo "$SHELL_VERSION" | cut -d'.' -f1`
 
23
shell_minor=`echo "$SHELL_VERSION" | cut -d'.' -f2`
24
24
if test "$(($shell_minor % 2))" -eq 0; then
25
25
        SHELL_VERSION="$shell_major.$shell_minor"
26
26
fi
40
40
        [],
41
41
        [enable_extensions=$DEFAULT_EXTENSIONS]
42
42
)
43
 
if test x$enable_extensions = xall; then
 
43
if test x"$enable_extensions" = xall; then
44
44
   enable_extensions="$ALL_EXTENSIONS"
45
45
fi
46
46