summaryrefslogtreecommitdiff
path: root/cups-config.in
diff options
context:
space:
mode:
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2008-10-27 21:56:38 +0000
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2008-10-27 21:56:38 +0000
commite4572d571c24d8e71db08ab9ec16210c2428c761 (patch)
treec592c8735b59de63e245859661f66115d9dd20a0 /cups-config.in
parent28b9d139c05c6edd6ebc25f466792b8e806d0fa6 (diff)
downloadcups-e4572d571c24d8e71db08ab9ec16210c2428c761.tar.gz
Merge changes from CUPS 1.4svn-r8088, the real official 1.4b1!
git-svn-id: svn+ssh://src.apple.com/svn/cups/easysw/current@1035 a1ca3aef-8c08-0410-bb20-df032aa958be
Diffstat (limited to 'cups-config.in')
-rwxr-xr-xcups-config.in7
1 files changed, 6 insertions, 1 deletions
diff --git a/cups-config.in b/cups-config.in
index 1a68a12c7..8a3db3375 100755
--- a/cups-config.in
+++ b/cups-config.in
@@ -4,7 +4,7 @@
#
# CUPS configuration utility.
#
-# Copyright 2007 by Apple Inc.
+# Copyright 2007-2008 by Apple Inc.
# Copyright 2001-2006 by Easy Software Products, all rights reserved.
#
# These coded instructions, statements, and computer programs are the
@@ -16,6 +16,7 @@
VERSION="@CUPS_VERSION@"
APIVERSION="1.4"
+BUILD="@CUPS_BUILD@"
prefix=@prefix@
exec_prefix=@exec_prefix@
@@ -62,6 +63,7 @@ fi
usage ()
{
echo "Usage: cups-config --api-version"
+ echo " cups-config --build"
echo " cups-config --cflags"
echo " cups-config --datadir"
echo " cups-config --help"
@@ -88,6 +90,9 @@ while test $# -gt 0; do
--api-version)
echo $APIVERSION
;;
+ --build)
+ echo $BUILD
+ ;;
--cflags)
echo $CFLAGS
;;