summaryrefslogtreecommitdiff
path: root/cups-config.in
diff options
context:
space:
mode:
authorjlovell <jlovell@a1ca3aef-8c08-0410-bb20-df032aa958be>2006-07-20 22:59:35 +0000
committerjlovell <jlovell@a1ca3aef-8c08-0410-bb20-df032aa958be>2006-07-20 22:59:35 +0000
commit8ca02f3c0539293422509d03219786fb6d7db48b (patch)
tree20bd0e2739f7c6cadc7c70be3831505d59466e08 /cups-config.in
parentf7faf1f5c3235dfa4f883522da7dc6446f028247 (diff)
downloadcups-8ca02f3c0539293422509d03219786fb6d7db48b.tar.gz
Load cups into easysw/current.
git-svn-id: svn+ssh://src.apple.com/svn/cups/easysw/current@194 a1ca3aef-8c08-0410-bb20-df032aa958be
Diffstat (limited to 'cups-config.in')
-rwxr-xr-xcups-config.in12
1 files changed, 6 insertions, 6 deletions
diff --git a/cups-config.in b/cups-config.in
index 9b998736f..ef5084a64 100755
--- a/cups-config.in
+++ b/cups-config.in
@@ -1,6 +1,6 @@
#! /bin/sh
#
-# "$Id: cups-config.in 5676 2006-06-19 20:28:05Z mike $"
+# "$Id: cups-config.in 5688 2006-06-23 20:33:08Z mike $"
#
# CUPS configuration utility.
#
@@ -42,8 +42,8 @@ INSTALLSTATIC=@INSTALLSTATIC@
# flags for C++ compiler:
CFLAGS=""
LDFLAGS="@EXPORT_LDFLAGS@"
-LIBS="@EXPORT_SSLLIBS@ @LIBS@"
-IMGLIBS="@EXPORT_LIBTIFF@ @EXPORT_LIBJPEG@ @EXPORT_LIBPNG@ @EXPORT_LIBZ@"
+LIBS="@EXPORT_SSLLIBS@ @EXPORT_LIBZ@ @LIBS@"
+IMGLIBS="@EXPORT_LIBTIFF@ @EXPORT_LIBJPEG@ @EXPORT_LIBPNG@"
# Check for local invocation...
selfdir=`dirname $0`
@@ -115,13 +115,13 @@ while test $# -gt 0; do
if test $image = no; then
echo -lcups $LIBS
else
- echo -lcupsimage $IMGLIBS -lcups $LIBS
+ echo -lcupsimage -lcups $IMGLIBS $LIBS
fi
else
if test $image = no; then
echo $libdir/libcups.a $LIBS
else
- echo $imagelibdir/libcupsimage.a $IMGLIBS $libdir/libcups.a $LIBS
+ echo $imagelibdir/libcupsimage.a $libdir/libcups.a $IMGLIBS $LIBS
fi
fi
;;
@@ -150,5 +150,5 @@ while test $# -gt 0; do
done
#
-# End of "$Id: cups-config.in 5676 2006-06-19 20:28:05Z mike $".
+# End of "$Id: cups-config.in 5688 2006-06-23 20:33:08Z mike $".
#