summaryrefslogtreecommitdiff
path: root/cups-config.in
diff options
context:
space:
mode:
authorjlovell <jlovell@a1ca3aef-8c08-0410-bb20-df032aa958be>2006-02-20 18:43:55 +0000
committerjlovell <jlovell@a1ca3aef-8c08-0410-bb20-df032aa958be>2006-02-20 18:43:55 +0000
commitbd7854cb4d663bb0e561eaf5b01bbd47baa71d22 (patch)
treebca042d698732a5e19035c88c6ffc39d80f543f1 /cups-config.in
parent4400e98de24bd267328aa20d57951fb6678297fe (diff)
downloadcups-bd7854cb4d663bb0e561eaf5b01bbd47baa71d22.tar.gz
Load cups into easysw/current.
git-svn-id: svn+ssh://src.apple.com/svn/cups/easysw/current@60 a1ca3aef-8c08-0410-bb20-df032aa958be
Diffstat (limited to 'cups-config.in')
-rwxr-xr-xcups-config.in13
1 files changed, 9 insertions, 4 deletions
diff --git a/cups-config.in b/cups-config.in
index fdea47ea2..2f5ea715c 100755
--- a/cups-config.in
+++ b/cups-config.in
@@ -1,10 +1,10 @@
#! /bin/sh
#
-# "$Id: cups-config.in 4802 2005-10-19 13:48:06Z mike $"
+# "$Id: cups-config.in 5134 2006-02-19 15:16:08Z mike $"
#
# CUPS configuration utility.
#
-# Copyright 2001-2005 by Easy Software Products, all rights reserved.
+# Copyright 2001-2006 by Easy Software Products, all rights reserved.
#
# These coded instructions, statements, and computer programs are the
# property of Easy Software Products and are protected by Federal
@@ -36,6 +36,7 @@ sysconfdir=@sysconfdir@
cups_datadir=@CUPS_DATADIR@
cups_serverbin=@CUPS_SERVERBIN@
cups_serverroot=@CUPS_SERVERROOT@
+INSTALLSTATIC=@INSTALLSTATIC@
# flags for C++ compiler:
CFLAGS=""
@@ -116,7 +117,11 @@ while test $# -gt 0; do
echo $cups_serverroot
;;
--static)
- static=yes
+ if test -z "$INSTALLSTATIC"; then
+ echo "WARNING: Static libraries not installed!" >&2
+ else
+ static=yes
+ fi
;;
--version)
echo $VERSION
@@ -130,5 +135,5 @@ while test $# -gt 0; do
done
#
-# End of "$Id: cups-config.in 4802 2005-10-19 13:48:06Z mike $".
+# End of "$Id: cups-config.in 5134 2006-02-19 15:16:08Z mike $".
#