X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=cups-config.in;h=9dd094d16f4bf6208a6c5fbaeca68159dc584b58;hb=2cfb7357e2cfa874899f2ed9555456684fdbd8d7;hp=a73a70fcbb84acc8c30db31985f52837057dd0eb;hpb=53f8d64f8451caa0737c635aa4eb126a1869d624;p=thirdparty%2Fcups.git diff --git a/cups-config.in b/cups-config.in index a73a70fcb..9dd094d16 100755 --- a/cups-config.in +++ b/cups-config.in @@ -2,7 +2,7 @@ # # CUPS configuration utility. # -# Copyright © 2007-2018 by Apple Inc. +# Copyright © 2007-2019 by Apple Inc. # Copyright © 2001-2006 by Easy Software Products, all rights reserved. # # Licensed under Apache License v2.0. See the file "LICENSE" for more @@ -18,7 +18,6 @@ exec_prefix=@exec_prefix@ bindir=@bindir@ includedir=@includedir@ libdir=@libdir@ -imagelibdir=@libdir@ datarootdir=@datadir@ datadir=@datadir@ sysconfdir=@sysconfdir@ @@ -27,19 +26,18 @@ cups_serverbin=@CUPS_SERVERBIN@ cups_serverroot=@CUPS_SERVERROOT@ INSTALLSTATIC=@INSTALLSTATIC@ -# flags for C++ compiler: +# flags for compiler and linker... CFLAGS="" LDFLAGS="@EXPORT_LDFLAGS@" -LIBS="@LIBGSSAPI@ @EXPORT_SSLLIBS@ @LIBZ@ @LIBS@" +LIBS="@LIBGSSAPI@ @DNSSDLIBS@ @EXPORT_SSLLIBS@ @LIBZ@ @LIBS@" # Check for local invocation... selfdir=`dirname $0` if test -f "$selfdir/cups/cups.h"; then CFLAGS="-I$selfdir" - LDFLAGS="-L$selfdir/cups -L$selfdir/filter $LDFLAGS" + LDFLAGS="-L$selfdir/cups $LDFLAGS" libdir="$selfdir/cups" - imagelibdir="$selfdir/filter" else if test $includedir != /usr/include; then CFLAGS="$CFLAGS -I$includedir" @@ -73,7 +71,6 @@ fi # Parse command line options static=no -image=no while test $# -gt 0; do case $1 in @@ -93,22 +90,16 @@ while test $# -gt 0; do usage 0 ;; --image) - image=yes + # Do nothing ;; --ldflags) echo $LDFLAGS ;; --libs) if test $static = no; then - libs="@EXTLINKCUPS@ $LIBS"; - if test $image = yes; then - libs="@EXTLINKCUPSIMAGE@ $libs" - fi + libs="@EXTLINKCUPS@"; else libs="$libdir/libcups.a $LIBS"; - if test $image = yes; then - libs="$libdir/libcupsimage.a $libs" - fi fi echo $libs ;; @@ -120,7 +111,7 @@ while test $# -gt 0; do ;; --static) if test -z "$INSTALLSTATIC"; then - echo "WARNING: Static libraries not installed!" >&2 + echo "WARNING: Static libraries not installed." >&2 else static=yes fi