]> git.ipfire.org Git - thirdparty/cups.git/blob - cups-config.in
<rdar://problem/5792631> dependency cycle in cups-144 / PrintingCore-250 / Applicatio...
[thirdparty/cups.git] / cups-config.in
1 #! /bin/sh
2 #
3 # "$Id: cups-config.in 6649 2007-07-11 21:46:42Z mike $"
4 #
5 # CUPS configuration utility.
6 #
7 # Copyright 2007 by Apple Inc.
8 # Copyright 2001-2006 by Easy Software Products, all rights reserved.
9 #
10 # These coded instructions, statements, and computer programs are the
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/".
15 #
16
17 VERSION="@CUPS_VERSION@"
18 APIVERSION="1.4"
19
20 prefix=@prefix@
21 exec_prefix=@exec_prefix@
22 bindir=@bindir@
23 includedir=@includedir@
24 libdir=@libdir@
25 imagelibdir=@libdir@
26 datarootdir=@datadir@
27 datadir=@datadir@
28 sysconfdir=@sysconfdir@
29 cups_datadir=@CUPS_DATADIR@
30 cups_serverbin=@CUPS_SERVERBIN@
31 cups_serverroot=@CUPS_SERVERROOT@
32 INSTALLSTATIC=@INSTALLSTATIC@
33
34 # flags for C++ compiler:
35 CFLAGS=""
36 LDFLAGS="@EXPORT_LDFLAGS@"
37 LIBS="@LIBGSSAPI@ @EXPORT_SSLLIBS@ @EXPORT_LIBZ@ @LIBS@"
38 IMGLIBS="@EXPORT_LIBTIFF@ @EXPORT_LIBJPEG@ @EXPORT_LIBPNG@"
39
40 # Check for local invocation...
41 selfdir=`dirname $0`
42
43 if 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"
48 if test ! -f "$selfdir/cups/raster.h"; then
49 ln -s ../filter/raster.h "$selfdir/cups"
50 fi
51 else
52 if test $includedir != /usr/include; then
53 CFLAGS="$CFLAGS -I$includedir"
54 fi
55
56 if test $libdir != /usr/lib -a $libdir != /usr/lib32 -a $libdir != /usr/lib64; then
57 LDFLAGS="$LDFLAGS -L$libdir"
58 fi
59 fi
60
61
62 usage ()
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"
69 echo " cups-config [--driver] [--image] [--static] --libs"
70 echo " cups-config --serverbin"
71 echo " cups-config --serverroot"
72 echo " cups-config --version"
73
74 exit $1
75 }
76
77 if test $# -eq 0; then
78 usage 1
79 fi
80
81 # Parse command line options
82 static=no
83 image=no
84 driver=no
85
86 while 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 ;;
97 --driver)
98 driver=yes
99 ;;
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
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
118 else
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"
125 fi
126 fi
127 echo $libs
128 ;;
129 --serverbin)
130 echo $cups_serverbin
131 ;;
132 --serverroot)
133 echo $cups_serverroot
134 ;;
135 --static)
136 if test -z "$INSTALLSTATIC"; then
137 echo "WARNING: Static libraries not installed!" >&2
138 else
139 static=yes
140 fi
141 ;;
142 --version)
143 echo $VERSION
144 ;;
145 *)
146 usage 1
147 ;;
148 esac
149
150 shift
151 done
152
153 #
154 # End of "$Id: cups-config.in 6649 2007-07-11 21:46:42Z mike $".
155 #