diff options
author | Didier Raboud <odyx@debian.org> | 2012-10-25 21:07:57 +0200 |
---|---|---|
committer | Didier Raboud <odyx@debian.org> | 2012-10-25 21:07:57 +0200 |
commit | 81ab83f382660bc7980ae954725c4ebf28764b03 (patch) | |
tree | 523268f698a63a8fd44f3491d94d140266b2403b /cups-config.in | |
parent | a75966e33dbc3e3e096338fd332f515cb313b58a (diff) | |
download | cups-81ab83f382660bc7980ae954725c4ebf28764b03.tar.gz |
Imported Upstream version 1.6.0upstream/1.6.0
Diffstat (limited to 'cups-config.in')
-rwxr-xr-x | cups-config.in | 30 |
1 files changed, 8 insertions, 22 deletions
diff --git a/cups-config.in b/cups-config.in index 2cdeca87..7ba10447 100755 --- a/cups-config.in +++ b/cups-config.in @@ -1,10 +1,10 @@ #! /bin/sh # -# "$Id: cups-config.in 9153 2010-06-16 00:48:25Z mike $" -# +# "$Id: cups-config.in 9926 2011-08-27 09:23:01Z mike $" +# # CUPS configuration utility. # -# Copyright 2007-2010 by Apple Inc. +# Copyright 2007-2011 by Apple Inc. # Copyright 2001-2006 by Easy Software Products, all rights reserved. # # These coded instructions, statements, and computer programs are the @@ -15,7 +15,7 @@ # VERSION="@CUPS_VERSION@" -APIVERSION="1.5" +APIVERSION="1.6" BUILD="@CUPS_BUILD@" prefix=@prefix@ @@ -35,8 +35,7 @@ INSTALLSTATIC=@INSTALLSTATIC@ # flags for C++ compiler: CFLAGS="" LDFLAGS="@EXPORT_LDFLAGS@" -LIBS="@LIBGSSAPI@ @EXPORT_SSLLIBS@ @EXPORT_LIBZ@ @LIBS@" -IMGLIBS="@EXPORT_LIBTIFF@ @EXPORT_LIBJPEG@ @EXPORT_LIBPNG@" +LIBS="@LIBGSSAPI@ @EXPORT_SSLLIBS@ @LIBZ@ @LIBS@" # Check for local invocation... selfdir=`dirname $0` @@ -46,9 +45,6 @@ if test -f "$selfdir/cups/cups.h"; then LDFLAGS="-L$selfdir/cups -L$selfdir/filter $LDFLAGS" libdir="$selfdir/cups" imagelibdir="$selfdir/filter" - if test ! -f "$selfdir/cups/raster.h"; then - ln -s ../filter/raster.h "$selfdir/cups" - fi else if test $includedir != /usr/include; then CFLAGS="$CFLAGS -I$includedir" @@ -68,7 +64,7 @@ usage () echo " cups-config --datadir" echo " cups-config --help" echo " cups-config --ldflags" - echo " cups-config [--driver] [--image] [--static] --libs" + echo " cups-config [--image] [--static] --libs" echo " cups-config --serverbin" echo " cups-config --serverroot" echo " cups-config --version" @@ -83,7 +79,6 @@ fi # Parse command line options static=no image=no -driver=no while test $# -gt 0; do case $1 in @@ -99,9 +94,6 @@ while test $# -gt 0; do --datadir) echo $cups_datadir ;; - --driver) - driver=yes - ;; --help) usage 0 ;; @@ -117,16 +109,10 @@ while test $# -gt 0; do if test $image = yes; then libs="@EXTLINKCUPSIMAGE@ $libs" fi - if test $driver = yes; then - libs="@EXTLINKCUPSDRIVER@ $libs" - fi else libs="$libdir/libcups.a $LIBS"; if test $image = yes; then - libs="$libdir/libcupsimage.a $IMGLIBS $libs" - fi - if test $driver = yes; then - libs="$libdir/libcupsdriver.a $libs" + libs="$libdir/libcupsimage.a $libs" fi fi echo $libs @@ -156,5 +142,5 @@ while test $# -gt 0; do done # -# End of "$Id: cups-config.in 9153 2010-06-16 00:48:25Z mike $". +# End of "$Id: cups-config.in 9926 2011-08-27 09:23:01Z mike $". # |