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