diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2014-10-03 14:05:01 +0000 |
---|---|---|
committer | Mattia Rizzolo <mattia@mapreri.org> | 2014-10-03 14:05:01 +0000 |
commit | e7e90b72fd3161c5d55fed49e100781dfa3e9408 (patch) | |
tree | 67cfcfae6b9a9e15701a332dfacbe0ca6440f16c /print-libs | |
parent | 2d113e8792747151bf5d830f1a1485f2f951f940 (diff) |
Imported Upstream version 0.84upstream/0.84
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 |