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

« back to all changes in this revision

Viewing changes to configure.ac

Tags: upstream-2.29.0
ImportĀ upstreamĀ versionĀ 2.29.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
AC_INIT(gnome-shell, 2.28.1)
2
 
 
3
 
AC_CONFIG_AUX_DIR(config)
4
 
 
5
 
AM_INIT_AUTOMAKE([dist-bzip2 no-dist-gzip foreign])
 
1
AC_PREREQ(2.63)
 
2
AC_INIT([gnome-shell],[2.29.0],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell],[gnome-shell])
 
3
 
 
4
AC_CONFIG_HEADERS([config.h])
 
5
AC_CONFIG_SRCDIR([src/shell-global.c])
 
6
AC_CONFIG_MACRO_DIR([m4])
 
7
AC_CONFIG_AUX_DIR([config])
 
8
 
 
9
AM_INIT_AUTOMAKE([1.10 dist-bzip2 no-dist-gzip foreign])
6
10
AM_MAINTAINER_MODE
7
11
 
8
 
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])],)
9
 
 
10
 
AC_CONFIG_HEADERS(config.h)
11
 
 
12
 
AC_DISABLE_STATIC
 
12
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
 
13
 
 
14
# Checks for programs.
13
15
AC_PROG_CC
14
16
# Needed for per-target cflags, like in gnomeshell-taskpanel
15
17
AM_PROG_CC_C_O
16
 
AM_PROG_LIBTOOL
 
18
 
 
19
# Initialize libtool
 
20
LT_PREREQ([2.2.6])
 
21
LT_INIT([disable-static])
17
22
 
18
23
GETTEXT_PACKAGE=gnome-shell
19
 
AC_SUBST(GETTEXT_PACKAGE)
20
 
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE, "$GETTEXT_PACKAGE",
21
 
                   [The prefix for our gettext translation domains.])
22
 
 
23
 
PKG_PROG_PKG_CONFIG(0.16)
24
 
 
25
24
IT_PROG_INTLTOOL(0.26)
26
25
AM_GLIB_GNU_GETTEXT
27
 
 
 
26
AC_DEFINE([GETTEXT_PACKAGE], [PACKAGE_TARNAME], [The prefix for our gettext translation domain])
 
27
 
 
28
PKG_PROG_PKG_CONFIG([0.22])
 
29
 
 
30
# GConf stuff
28
31
AC_PATH_PROG(GCONFTOOL, gconftool-2, no)
29
32
AM_GCONF_SOURCE_2
30
33
 
51
54
AM_CONDITIONAL(BUILD_RECORDER, $build_recorder)
52
55
 
53
56
# Collect more than 20 libraries for a prize!
54
 
PKG_CHECK_MODULES(MUTTER_PLUGIN, gio-unix-2.0 gtk+-2.0 dbus-glib-1 mutter-plugins
 
57
PKG_CHECK_MODULES(MUTTER_PLUGIN, gio-unix-2.0 gtk+-2.0 dbus-glib-1 mutter-plugins >= 2.29.0
55
58
                                 gjs-gi-1.0 libgnome-menu $recorder_modules gconf-2.0
56
59
                                 gdk-x11-2.0 clutter-x11-1.0 clutter-glx-1.0
57
60
                                 gnome-desktop-2.0 >= 2.26 libstartup-notification-1.0
94
97
# Stay command-line compatible with the gnome-common configure option. Here
95
98
# minimum/yes/maximum are the same, however.
96
99
AC_ARG_ENABLE(compile_warnings,
97
 
  AC_HELP_STRING([--enable-compile-warnings=@<:@no/minimum/yes/maximum/error@:>@],
98
 
                 [Turn on compiler warnings]),,
 
100
  AS_HELP_STRING([--enable-compile-warnings=@<:@no/minimum/yes/maximum/error@:>@],[Turn on compiler warnings]),,
99
101
  enable_compile_warnings=error)
100
102
 
101
103
changequote(,)dnl
122
124
AC_PATH_PROG(mutter, [mutter])
123
125
AC_SUBST(mutter)
124
126
 
125
 
AC_OUTPUT([
 
127
AC_CONFIG_FILES([
126
128
  Makefile
127
129
  data/Makefile
128
130
  js/Makefile
131
133
  src/Makefile
132
134
  tests/Makefile
133
135
  po/Makefile.in
 
136
  man/Makefile
134
137
])
 
138
AC_OUTPUT