about summary refs log tree commit diff
path: root/test/Available-Testprog
blob: 67df13c11a37955d41be08e66d67ee131403cbe5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#! /bin/bash

# If make target is "check-install" assume that all programs are available
if [ "${CHECK_TYPE}" = "install" ]; then
  exit 0
fi

# Special case: no arguments were passed to this program
# For all-in-place.test and legacy-names.test

if [ $# = 0 ]; then
  exit 0
fi

# Normal operation: Walk through the argument list and exit if an
# unavailable program is encountered.

for i in $@
    do
    case $i in
      fiascotopnm|\
      pnmtofiasco)
        [ "${BUILD_FIASCO}" = "N" ] && exit 1 ;;

      jpeg2ktopam|\
      pamtojpeg2k)
        [ "${JASPERLIB}" = "NONE" ] && exit 1 ;;

      jbigtopnm|\
      pnmtojbig)
        [ "${JBIGLIB}" = "NONE" ] && exit 1 ;;

      jpegtopnm|\
      pnmtojpeg|\
      ppmtojpeg)
        [ "${JPEGLIB}" = "NONE" ] && exit 1 ;;

      pamtotiff|\
      pnmtotiff|\
      pnmtotiffcmyk|\
      tifftopnm)
        [ "${TIFFLIB}" = "NONE" ] && exit 1 ;;

      pnmtorle|\
      rletopnm)
        [ "${URTLIB}" = "NONE" ] && exit 1 ;;

    esac
done

# All checks passed.  Exit with success status.
exit 0