~ubuntu-branches/ubuntu/maverick/gnome-screensaver/maverick

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2009-09-23 12:54:12 UTC
  • mfrom: (1.1.32 upstream)
  • Revision ID: james.westby@ubuntu.com-20090923125412-thw2xjbm00cilt2w
Tags: 2.28.0-0ubuntu1
* New upstream version
  Fixed bugs:
  - #444927, get idle time from xorg (lp: #357494)
  - #463010, Port gnome-screensaver from libglade to gtkbuilder
  - #564061, Install .desktop file
  - #570402, screensaver crash if number of screens changes
  - #570941, String not marked for translation gnome-screensaver-command.c
  - #574896, [Leave message] Cancel button should clean clipboard buffe
  - #576463, can't unlock screen after upgrade until restarting 
             gnome-screensaver
  - #581995, Fade out doesn't properly fall back to gamma number if X server
             only supports 0-size ramp
  - #586174, Encoding key in desktop files is deprecated
  - #589728, gnome-screensaver: implicit declaration g_printf
  - #590776, screensaver is never activated
  - #591193, Update/Create .gitignore
  - #591194, Add Comment and Icon in gnome-screensaver.desktop
  - #594082, gnome-screensaver ignores input when fading to black
  Translators
* debian/control.in:
  - don't use libglade
* debian/patches/06_unbreak_upgrade_from_jaunty.patch:
  - the change is in the new version

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
AC_PREREQ(2.60)
4
4
AC_INIT([gnome-screensaver],
5
 
        [2.27.0],
 
5
        [2.28.0],
6
6
        [http://bugzilla.gnome.org/enter_bug.cgi?product=gnome-screensaver])
7
7
 
8
8
AC_CONFIG_SRCDIR(src/gnome-screensaver.c)
43
43
LIBGNOME_MENU_REQUIRED_VERSION=2.11.1
44
44
GNOME_DESKTOP_REQUIRED_VERSION=2.23.2
45
45
 
46
 
GLADE_REQUIRED_VERSION=2.5.0
47
46
LIBGNOMEKBDUI_REQUIRED_VERSION=0.1
48
47
 
49
48
AC_CHECK_HEADERS(unistd.h)
64
63
AC_SUBST(GNOME_SCREENSAVER_LIBS)
65
64
 
66
65
PKG_CHECK_MODULES(GNOME_SCREENSAVER_DIALOG,
67
 
        libglade-2.0 >= $GLADE_REQUIRED_VERSION
68
66
        gconf-2.0 >= $GCONF_REQUIRED_VERSION
69
67
        gthread-2.0
70
68
        gtk+-2.0 >= $GTK_REQUIRED_VERSION)
74
72
PKG_CHECK_MODULES(GNOME_SCREENSAVER_CAPPLET,
75
73
        gio-2.0 >= $GLIB_REQUIRED_VERSION
76
74
        gconf-2.0 >= $GCONF_REQUIRED_VERSION
77
 
        libglade-2.0 >= $GLADE_REQUIRED_VERSION
78
75
        gtk+-2.0 >= $GTK_REQUIRED_VERSION
79
76
        libgnome-menu >= $LIBGNOME_MENU_REQUIRED_VERSION)
80
77
AC_SUBST(GNOME_SCREENSAVER_CAPPLET_CFLAGS)
1032
1029
AC_SUBST(LDFLAGS)
1033
1030
 
1034
1031
# Saver engine stuff
1035
 
SLIDESHOW_COSMOS_DIR="${EXPANDED_DATADIR}/pixmaps/backgrounds/cosmos"
 
1032
SLIDESHOW_COSMOS_DIR="${EXPANDED_DATADIR}/backgrounds/cosmos"
1036
1033
 
1037
1034
AC_SUBST(SLIDESHOW_COSMOS_DIR)
1038
1035