Revision 18286,
1.1 KB
checked in by ghudson, 22 years ago
(diff) |
This commit was generated by cvs2svn to compensate for changes in r18285,
which included commits to RCS files with non-trunk default branches.
|
Line | |
---|
1 | AC_INIT(README) |
---|
2 | # Save this value here, since automake will set cflags later |
---|
3 | cflags_set=${CFLAGS+set} |
---|
4 | |
---|
5 | AM_INIT_AUTOMAKE(gtk-engines, 1.9.0) |
---|
6 | |
---|
7 | dnl Initialize maintainer mode |
---|
8 | AM_MAINTAINER_MODE |
---|
9 | |
---|
10 | ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS" |
---|
11 | |
---|
12 | AC_CANONICAL_HOST |
---|
13 | |
---|
14 | AC_PROG_CC |
---|
15 | AM_PROG_CC_STDC |
---|
16 | AC_PROG_INSTALL |
---|
17 | AC_PROG_MAKE_SET |
---|
18 | |
---|
19 | changequote(,)dnl |
---|
20 | if test "x$GCC" = "xyes"; then |
---|
21 | case " $CFLAGS " in |
---|
22 | *[\ \ ]-Wall[\ \ ]*) ;; |
---|
23 | *) CFLAGS="$CFLAGS -Wall" ;; |
---|
24 | esac |
---|
25 | fi |
---|
26 | changequote([,])dnl |
---|
27 | |
---|
28 | dnl Initialize libtool |
---|
29 | AM_DISABLE_STATIC |
---|
30 | AM_PROG_LIBTOOL |
---|
31 | |
---|
32 | PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 1.3.12,, |
---|
33 | AC_MSG_ERROR([GTK+-2.0 is required to compile gtk-engines])) |
---|
34 | |
---|
35 | GTK_VERSION=`$PKG_CONFIG --variable=gtk_binary_version gtk+-2.0` |
---|
36 | AC_SUBST(GTK_CFLAGS) |
---|
37 | AC_SUBST(GTK_LIBS) |
---|
38 | AC_SUBST(GTK_VERSION) |
---|
39 | |
---|
40 | # Checks for header files. |
---|
41 | AC_HEADER_STDC |
---|
42 | |
---|
43 | # Checks for typedefs, structures, and compiler characteristics. |
---|
44 | AC_C_CONST |
---|
45 | |
---|
46 | # Save ACLOCAL_FLAGS |
---|
47 | ACLOCAL="$ACLOCAL $ACLOCAL_FLAGS" |
---|
48 | |
---|
49 | AC_OUTPUT([ |
---|
50 | gtk-engines.spec |
---|
51 | Makefile |
---|
52 | metal/Makefile |
---|
53 | metal/Theme/Makefile |
---|
54 | metal/Theme/gtk-2.0/Makefile |
---|
55 | pixbuf/Makefile |
---|
56 | redmond95/Makefile |
---|
57 | redmond95/Theme/Makefile |
---|
58 | redmond95/Theme/gtk-2.0/Makefile |
---|
59 | ]) |
---|
Note: See
TracBrowser
for help on using the repository browser.