]> git.ipfire.org Git - thirdparty/cups.git/blame - cups-config.in
Merge changes from CUPS 1.4svn-r7874.
[thirdparty/cups.git] / cups-config.in
CommitLineData
ef416fc2 1#! /bin/sh
2#
75bd9771 3# "$Id: cups-config.in 7394 2008-03-21 23:41:43Z mike $"
ef416fc2 4#
5# CUPS configuration utility.
6#
bc44d920 7# Copyright 2007 by Apple Inc.
bd7854cb 8# Copyright 2001-2006 by Easy Software Products, all rights reserved.
ef416fc2 9#
10# These coded instructions, statements, and computer programs are the
bc44d920 11# property of Apple Inc. and are protected by Federal copyright
12# law. Distribution and use rights are outlined in the file "LICENSE.txt"
13# which should have been included with this file. If this file is
14# file is missing or damaged, see the license at "http://www.cups.org/".
ef416fc2 15#
16
17VERSION="@CUPS_VERSION@"
50fe7201 18APIVERSION="1.4"
ef416fc2 19
20prefix=@prefix@
21exec_prefix=@exec_prefix@
22bindir=@bindir@
23includedir=@includedir@
24libdir=@libdir@
f301802f 25imagelibdir=@libdir@
d09495fa 26datarootdir=@datadir@
ef416fc2 27datadir=@datadir@
28sysconfdir=@sysconfdir@
29cups_datadir=@CUPS_DATADIR@
30cups_serverbin=@CUPS_SERVERBIN@
31cups_serverroot=@CUPS_SERVERROOT@
bd7854cb 32INSTALLSTATIC=@INSTALLSTATIC@
ef416fc2 33
34# flags for C++ compiler:
35CFLAGS=""
36LDFLAGS="@EXPORT_LDFLAGS@"
f7deaa1a 37LIBS="@LIBGSSAPI@ @EXPORT_SSLLIBS@ @EXPORT_LIBZ@ @LIBS@"
8ca02f3c 38IMGLIBS="@EXPORT_LIBTIFF@ @EXPORT_LIBJPEG@ @EXPORT_LIBPNG@"
ef416fc2 39
f301802f 40# Check for local invocation...
41selfdir=`dirname $0`
42
43if test -f "$selfdir/cups/cups.h"; then
44 CFLAGS="-I$selfdir"
45 LDFLAGS="-L$selfdir/cups -L$selfdir/filter $LDFLAGS"
46 libdir="$selfdir/cups"
47 imagelibdir="$selfdir/filter"
ed486911 48 if test ! -f "$selfdir/cups/raster.h"; then
f301802f 49 ln -s ../filter/raster.h "$selfdir/cups"
50 fi
51else
52 if test $includedir != /usr/include; then
53 CFLAGS="$CFLAGS -I$includedir"
54 fi
ef416fc2 55
f301802f 56 if test $libdir != /usr/lib -a $libdir != /usr/lib32 -a $libdir != /usr/lib64; then
57 LDFLAGS="$LDFLAGS -L$libdir"
58 fi
ef416fc2 59fi
60
f301802f 61
ef416fc2 62usage ()
63{
64 echo "Usage: cups-config --api-version"
65 echo " cups-config --cflags"
66 echo " cups-config --datadir"
67 echo " cups-config --help"
68 echo " cups-config --ldflags"
50fe7201 69 echo " cups-config [--driver] [--image] [--static] --libs"
ef416fc2 70 echo " cups-config --serverbin"
71 echo " cups-config --serverroot"
72 echo " cups-config --version"
73
74 exit $1
75}
76
77if test $# -eq 0; then
78 usage 1
79fi
80
81# Parse command line options
82static=no
83image=no
50fe7201 84driver=no
ef416fc2 85
86while test $# -gt 0; do
87 case $1 in
88 --api-version)
89 echo $APIVERSION
90 ;;
91 --cflags)
92 echo $CFLAGS
93 ;;
94 --datadir)
95 echo $cups_datadir
96 ;;
50fe7201
MS
97 --driver)
98 driver=yes
99 ;;
ef416fc2 100 --help)
101 usage 0
102 ;;
103 --image)
104 image=yes
105 ;;
106 --ldflags)
107 echo $LDFLAGS
108 ;;
109 --libs)
110 if test $static = no; then
50fe7201
MS
111 libs="-lcups $LIBS";
112 if test $image = yes; then
113 libs="-lcupsimage $libs"
114 fi
115 if test $driver = yes; then
116 libs="-lcupsdriver $libs"
117 fi
ef416fc2 118 else
50fe7201
MS
119 libs="$libdir/libcups.a $LIBS";
120 if test $image = yes; then
121 libs="$libdir/libcupsimage.a $IMGLIBS $libs"
122 fi
123 if test $driver = yes; then
124 libs="$libdir/libcupsdriver.a $libs"
ef416fc2 125 fi
126 fi
50fe7201 127 echo $libs
ef416fc2 128 ;;
129 --serverbin)
130 echo $cups_serverbin
131 ;;
132 --serverroot)
133 echo $cups_serverroot
134 ;;
135 --static)
bd7854cb 136 if test -z "$INSTALLSTATIC"; then
137 echo "WARNING: Static libraries not installed!" >&2
138 else
139 static=yes
140 fi
ef416fc2 141 ;;
142 --version)
143 echo $VERSION
144 ;;
145 *)
146 usage 1
147 ;;
148 esac
149
150 shift
151done
152
153#
75bd9771 154# End of "$Id: cups-config.in 7394 2008-03-21 23:41:43Z mike $".
ef416fc2 155#