add hack for systems without gtk1

git-svn-id: http://svn.code.sf.net/p/xqf/code/trunk@837 d2ac09be-c843-0410-8b1f-f8a84130e0ec
This commit is contained in:
Ludwig Nussel 2010-12-21 14:22:10 +00:00 committed by l-n
parent ce9df186df
commit 209bc6e87e
2 changed files with 8 additions and 0 deletions

View File

@ -17,6 +17,11 @@ test -z "$srcdir" && srcdir=.
(
cd $srcdir
if ! gtk-config --version >/dev/null 2>&1; then
mkdir m4
ln -s ../xqf-acinclude-nogtk1.m4 m4/gtk.m4
fi
# extract flag icons
rm pixmaps/flags/*.png
tar -C pixmaps -xzf pixmaps/flags.tar.gz

View File

@ -0,0 +1,3 @@
AC_DEFUN([AM_PATH_GLIB], [AC_MSG_ERROR([GTK1 support not available])])dnl
AC_DEFUN([AM_PATH_GTK], [AC_MSG_ERROR([GTK1 support not available])])dnl
AC_DEFUN([AM_PATH_GDK_PIXBUF], [AC_MSG_ERROR([GTK1 support not available])])dnl