X-Git-Url: http://git.silcnet.org/gitweb/?a=blobdiff_plain;f=apps%2Fsilcer%2Fmacros%2Fgnome-print-check.m4;fp=apps%2Fsilcer%2Fmacros%2Fgnome-print-check.m4;h=0000000000000000000000000000000000000000;hb=72c2de619079457f7a68100eb13385275a424a23;hp=c5f0fe39e8d32085d0cab8d47ef7ffdb435fb127;hpb=e7b6c157b80152bf9fb9266e6bdd93f9fb0db776;p=runtime.git diff --git a/apps/silcer/macros/gnome-print-check.m4 b/apps/silcer/macros/gnome-print-check.m4 deleted file mode 100644 index c5f0fe39..00000000 --- a/apps/silcer/macros/gnome-print-check.m4 +++ /dev/null @@ -1,63 +0,0 @@ -# Configure paths for GNOME-PRINT -# Chris Lahey 99-2-5 -# stolen from Manish Singh again -# stolen back from Frank Belew -# stolen from Manish Singh -# Shamelessly stolen from Owen Taylor - -dnl AM_PATH_GNOME_PRINT([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]]) -dnl Test for GNOME-PRINT, and define GNOME_PRINT_CFLAGS and GNOME_PRINT_LIBS -dnl -AC_DEFUN([AM_PATH_GNOME_PRINT], -[ - min_version=ifelse([$1],,0.21,$1) - - gnome_print_ok="" - - AC_PATH_PROG(GNOME_CONFIG, gnome-config, no) - if test "$GNOME_CONFIG" = "no" ; then - AC_MSG_RESULT(gnome-config is missing, check your gnome installation) - else - AC_MSG_CHECKING(for GNOME-PRINT - version >= $min_version) - if `$GNOME_CONFIG --libs print > /dev/null 2>&1`; then - rqmajor=$(echo "$1" | sed -e 's/cvs-//' | sed 's/\([[0-9]]*\)\.\([[0-9]]*\).*/\1/') - rqminor=$(echo "$1" | sed -e 's/cvs-//' | sed 's/\([[0-9]]*\)\.\([[0-9]]*\).*/\2/') - major=$($GNOME_CONFIG --modversion print | sed -e 's/gnome-print-//' | sed -e 's/cvs-//' | sed 's/\([[0-9]]*\)\.\([[0-9]]*\).*/\1/') - minor=$($GNOME_CONFIG --modversion print | sed -e 's/gnome-print-//' | sed -e 's/cvs-//' | sed 's/\([[0-9]]*\)\.\([[0-9]]*\).*/\2/') - if test "$major" -ge "$rqmajor"; then - if test "$major" -gt "$rqmajor"; then - AC_MSG_RESULT("found $major.$minor") - gnome_print_ok="yes" - else - if test "$minor" -ge "$rqminor"; then - AC_MSG_RESULT("found $major.$minor") - gnome_print_ok="yes" - else - AC_MSG_RESULT("you have $major.$minor") - fi - fi - else - AC_MSG_RESULT("you have $major.$minor") - fi - else - AC_MSG_RESULT("did not find any version") - fi - fi - - if test "x$gnome_print_ok" != "x" ; then - GNOME_PRINT_CFLAGS=`$GNOME_CONFIG --cflags print` - GNOME_PRINT_LIBS=`$GNOME_CONFIG --libs print` - ifelse([$2], , :, [$2]) - else - GNOME_PRINT_CFLAGS="" - GNOME_PRINT_LIBS="" - ifelse([$3], , :, [$3]) - fi - - AC_SUBST(GNOME_PRINT_CFLAGS) - AC_SUBST(GNOME_PRINT_LIBS) -]) - -AC_DEFUN([GNOME_PRINT_CHECK], [ - AM_PATH_GNOME_PRINT($1,,[AC_MSG_ERROR(GNOME-PRINT not found or wrong version)]) -])