~ubuntu-branches/ubuntu/lucid/gtk2-engines-murrine/lucid

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche, Didier Roche, Khashayar Naderehvandi
  • Date: 2009-03-18 21:48:08 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090318214808-0n7qxpyukzd2ru8r
Tags: 0.90.2-0ubuntu1
[Didier Roche]
* New upstream release (LP: #344154)
  - High roundness values are now correctly limited.
  - Use focus_color in draw_entry if the theme uses it.
  - Removed shadows from GtkCombo and GtkComboBoxEntry.
  - Code polishing and bugfixing.
  - Fixed a crash when using focus_color.
  - Now focus_color and scrollbar_color accept symbolic colors.
* debian/control:
  - add Vcs-Bzr tag
  - bump libgtk2.0-dev to 2.12.0
  - update Homepage field
* Rewrite debian/watch to get murrine from its new location

[Khashayar Naderehvandi]
* debian/control: remove quilt dependency
* debian/rules: remove "patch: patch-stamp" and all patch related stuff

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
AC_INIT([murrine], [0.60])
 
1
AC_INIT([murrine], [0.90.2])
2
2
AC_CONFIG_SRCDIR([README])
3
3
 
4
4
AM_INIT_AUTOMAKE
27
27
              [  --enable-animation      compile murrine with animation support],
28
28
              [animation=$enableval],
29
29
              [animation="no"], )
30
 
AC_ARG_ENABLE(macmenu,
31
 
              [  --enable-macmenu        compile murrine with mac menubar patches],
32
 
              [macmenu=$enableval],
33
 
              [macmenu="no"], )
34
30
AC_ARG_ENABLE(animationrtl,
35
31
              [  --enable-animationrtl   compile murrine with progressbar animation from right to left],
36
32
              [animationrtl=$enableval],
40
36
              [rgba=$enableval],
41
37
              [rgba="yes"], )
42
38
 
43
 
PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.10.0,,
44
 
                  AC_MSG_ERROR([GTK+-2.10 is required to compile murrine]))
 
39
PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.12.0,,
 
40
                  AC_MSG_ERROR([GTK+-2.12 is required to compile murrine]))
45
41
 
46
42
AC_SUBST(GTK_CFLAGS)
47
43
AC_SUBST(GTK_LIBS)
56
52
        AC_DEFINE_UNQUOTED(HAVE_ANIMATION, 1, [Defines whether to compile with animation support])
57
53
fi
58
54
 
59
 
if test $macmenu = "yes"; then
60
 
        AC_DEFINE_UNQUOTED(HAVE_MACMENU, 1, [Defines whether to compile with mac menubar patches])
61
 
fi
62
 
 
63
55
if test $animationrtl = "yes"; then
64
56
        AC_DEFINE_UNQUOTED(HAVE_ANIMATIONRTL, 1, [Defines whether to compile with progressbar animation from right to left])
65
57
fi