diff options
author | Tim Janik <timj@src.gnome.org> | 1998-02-16 04:13:03 +0800 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 1998-02-16 04:13:03 +0800 |
commit | eaaef2717d7ab8c4d6ba24150add836c05ca6d78 (patch) | |
tree | d1ca63059121cd40a65896b6edd393775d1e0162 /macros | |
parent | 1b06b7d2311be0f40cd5170130553065d64e1c4a (diff) | |
download | gsoc2013-evolution-eaaef2717d7ab8c4d6ba24150add836c05ca6d78.tar gsoc2013-evolution-eaaef2717d7ab8c4d6ba24150add836c05ca6d78.tar.gz gsoc2013-evolution-eaaef2717d7ab8c4d6ba24150add836c05ca6d78.tar.bz2 gsoc2013-evolution-eaaef2717d7ab8c4d6ba24150add836c05ca6d78.tar.lz gsoc2013-evolution-eaaef2717d7ab8c4d6ba24150add836c05ca6d78.tar.xz gsoc2013-evolution-eaaef2717d7ab8c4d6ba24150add836c05ca6d78.tar.zst gsoc2013-evolution-eaaef2717d7ab8c4d6ba24150add836c05ca6d78.zip |
check for shared gtk+ libraries also.
-timj
svn path=/trunk/; revision=36
Diffstat (limited to 'macros')
-rw-r--r-- | macros/autogen.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/macros/autogen.sh b/macros/autogen.sh index 04158ac2ff..6f453280a1 100644 --- a/macros/autogen.sh +++ b/macros/autogen.sh @@ -44,9 +44,13 @@ if test "$DIE" -eq 1; then fi test -f /opt/lib/libgtk.a \ + || test -f /opt/lib/libgtk.so \ || test -f /opt/gnome/lib/libgtk.a \ + || test -f /opt/gnome/lib/libgtk.so \ || test -f /usr/lib/libgtk.a \ + || test -f /usr/lib/libgtk.so \ || test -f /usr/local/lib/libgtk.a \ + || test -f /usr/local/lib/libgtk.so \ || cat <<EOF **Warning**: You must have Gtk installed to compile Gnome. I cannot find it installed in the usual places. "configure" may do a better |