summaryrefslogtreecommitdiffstats
path: root/config.tests/unix/cups.test
blob: 0b97e2b9d764c60cdc35dd9354d50612cb0ca602 (plain)
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#!/bin/sh

CUPS=yes
XPLATFORM=`basename $1`
XCONFIG=$1/qmake.conf
VERBOSE=$2
shift 2
IN_INCDIRS=""
PARAMS=$@
for PARAM in $PARAMS; do
    PREFIX=`echo $PARAM | sed 's/^\(..\).*/\1/'`
    case $PREFIX in
    -L)
	CLIBDIR=`echo $PARAM | sed -e 's/^-L//'`
	IN_LIBDIRS="$IN_LIBDIRS $CLIBDIR"
	;;
    -I)
        CINCDIR=`echo $PARAM | sed -e 's/^-I//'`
        IN_INCDIRS="$IN_INCDIRS $CINCDIR"
        ;;
    *) ;;
    esac
done

# debuggery
[ "$VERBOSE" = "yes" ] && echo "CUPS auto-detection... ($*)"

# check for the CUPS library
LIBS=cups
LIBDIRS="$IN_LIBDIRS /usr/shlib /usr/lib /lib"
if [ -z "$LIBS" ]; then
    CUPS=no
    [ "$VERBOSE" = "yes" ] && echo "  No CUPS libraries specified."
else
    for L in $LIBS; do
	FOUND_LIB=
	F=
	for LIBDIR in $LIBDIRS; do
	    FOUND_LIB=`ls $LIBDIR/lib$L.* 2>/dev/null`
	    if [ ! -z "$FOUND_LIB" ]; then
		F=yes
		[ "$VERBOSE" = "yes" ] && echo "  Found $L lib in $LIBDIR"
		break
	    fi
	done
	if [ -z "$F" ]; then
	    CUPS=no
	    [ "VERBOSE" = "yes" ] && echo "  Could not find CUPS lib anywhere in $LIBDIRS"
	fi
    done
fi

# check for cups/cups.h
if [ "$CUPS" = "yes" ]
then
    INCS="cups/cups.h"
    INCDIRS="$IN_INCDIRS /usr/include /include"

    for I in $INCS; do
	F=
	for INCDIR in $INCDIRS; do
	    if [ -f $INCDIR/$I ]; then
		F=yes
		[ "$VERBOSE" = "yes" ] && echo "  Found $I in $INCDIR"
		break
	    fi
	done
	if [ -z "$F" ]; then
	    CUPS=no
	    [ "$VERBOSE" = "yes" ] && echo "  Could not find $I anywhere in $INCDIRS"
	fi
    done
fi

# done
if [ "$CUPS" != "yes" ]; then
    [ "$VERBOSE" = "yes" ] && echo "CUPS disabled."
    exit 0
else
    [ "$VERBOSE" = "yes" ] && echo "CUPS enabled."
    exit 1
fi