about summary refs log tree commit diff
path: root/test
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2020-08-22 23:07:28 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2020-08-22 23:07:28 +0000
commite57f3bbe2302fbae25d8256523eb24c13c2cdead (patch)
treebafbbd0a4d0a37892aa87ce71d93da18e6757c7c /test
parent7e040257350d11f891d2b7379e08adf94344480f (diff)
downloadnetpbm-mirror-e57f3bbe2302fbae25d8256523eb24c13c2cdead.tar.gz
netpbm-mirror-e57f3bbe2302fbae25d8256523eb24c13c2cdead.tar.xz
netpbm-mirror-e57f3bbe2302fbae25d8256523eb24c13c2cdead.zip
Add ability to check whether Ppmsvgalib exists to be tested; unused today, as there is no Ppmsvgalib test
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@3924 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'test')
-rwxr-xr-xtest/Available-Testprog8
1 files changed, 7 insertions, 1 deletions
diff --git a/test/Available-Testprog b/test/Available-Testprog
index 8176b57a..033c7eec 100755
--- a/test/Available-Testprog
+++ b/test/Available-Testprog
@@ -6,7 +6,6 @@ if [ "${CHECK_TYPE}" = "install" ]; then
 fi
 
 # Special case: no arguments were passed to this program
-# For all-in-place.test and legacy-names.test
 
 if [ $# = 0 ]; then
   exit 0
@@ -19,6 +18,10 @@ fi
 # each directory (for example converter/other/Makefile) for library
 # requirements and relevant variables.
 
+# Note that any variable used to determine whether a program exists
+# (BUILD_FIASCO, JASPERLIB, JBIGLIB, JPEGLIB, etc.)
+# must be in CHECK_VARS in GNUMakefile to be detected here. 
+
 for i in $@
     do
     case $i in
@@ -57,6 +60,9 @@ for i in $@
       svgtopam)
         [ "${XML2_LIBS}" = "NONE" ] && exit 1 ;;
 
+      ppmsvgalib)
+        [ "${LINUXSVGALIB}" = "NONE" ] && exit 1 ;;
+
       thinkjettopbm)
         [ -z "${LEX}" ] && exit 1 ;;