summaryrefslogtreecommitdiff
path: root/print-libs
diff options
context:
space:
mode:
Diffstat (limited to 'print-libs')
-rwxr-xr-xprint-libs18
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