diff options
author | Kevin Dalley <kevind@rahul.net> | 2002-03-15 14:20:02 +0000 |
---|---|---|
committer | Mattia Rizzolo <mattia@mapreri.org> | 2014-10-03 14:05:02 +0000 |
commit | ac8459519a9ef2a1ee635509b52a653da1bfe9d5 (patch) | |
tree | 9ed2df2144d6ad3bb7cf1d43243d815a8eb90059 /print-libs | |
parent | 8b372c9248930ae29763202121434d3d676d0f30 (diff) | |
parent | e7e90b72fd3161c5d55fed49e100781dfa3e9408 (diff) |
Imported Debian patch 0.84-2debian/0.84-2
Diffstat (limited to 'print-libs')
-rwxr-xr-x | print-libs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/print-libs b/print-libs new file mode 100755 index 0000000..b5dfd8b --- /dev/null +++ b/print-libs @@ -0,0 +1,18 @@ +#!/bin/sh +echo "TEST FOR SANE:" +find / -name "sane.h" 2>/dev/null +find / -name "libsane-dll*" 2>/dev/null +echo "" +echo "TEST FOR GTK:" +find / -name "gtk-config" 2>/dev/null +find / -name "gtk.h" 2>/dev/null +find / -name "libgtk*" 2>/dev/null +echo "" +echo "TEST FOR GDK:" +find / -name "gdk.h" 2>/dev/null +find / -name "libgdk*" 2>/dev/null +echo "" +echo "TEST FOR GIMP:" +find / -name "gimp-config" 2>/dev/null +find / -name "gimp.h" 2>/dev/null +find / -name "libgimp*" 2>/dev/null |