Initial check-in
[him-cellwriter] / configure
1 #!/bin/sh
2 LIBS="gtk+-2.0 glib-2.0 gconf-2.0 hildon-1 hildon-input-method-ui-3.0 hildon-input-method-framework-3.0"
3 echo Looking for $LIBS 
4 if pkg-config --print-errors $LIBS; then
5
6         echo LIBS = $LIBS > Makefile
7         cat Makefile.in >> Makefile
8
9         echo "Found: Run make to build"
10 else
11         echo Missing libraries
12         exit 1
13 fi