diff options
author | Havoc Pennington <hp@pobox.com> | 2001-09-17 04:42:37 +0000 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 2001-09-17 04:42:37 +0000 |
commit | 4c104e1cb712f267f17cd52ad7ed6f3f4023e1b9 (patch) | |
tree | ca76a40b41d5bc4f85da1c4a06d1d29aaad484e1 /configure.in | |
parent | ecf75915c706f7739157266c15a3c1bcf852f6c5 (diff) | |
download | metacity-4c104e1cb712f267f17cd52ad7ed6f3f4023e1b9.tar.gz metacity-4c104e1cb712f267f17cd52ad7ed6f3f4023e1b9.tar.bz2 |
use the inline image data for default icon
2001-09-17 Havoc Pennington <hp@pobox.com>
* src/ui.c: use the inline image data for default icon
* src/common.h (META_MINI_ICON_HEIGHT): move icon size defines
here
* src/Makefile.am: Create an inlinepixbufs.h header with inline
images
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 13dacea..8d4741d 100644 --- a/configure.in +++ b/configure.in @@ -67,6 +67,14 @@ AM_CONDITIONAL(HAVE_SM, test "$found_sm" = "true") HOST_ALIAS=$host_alias AC_SUBST(HOST_ALIAS) +AC_PATH_PROG(GDK_PIXBUF_CSOURCE, gdk-pixbuf-csource, no) + +if test x"$GDK_PIXBUF_CSOURCE" = xno; then + AC_MSG_ERROR([gdk-pixbuf-csource executable not found in your path - should be installed with GTK]) +fi + +AC_SUBST(GDK_PIXBUF_CSOURCE) + AC_OUTPUT([ Makefile src/Makefile |