summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authormsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2015-07-14 18:07:49 +0000
committermsweet <msweet@a1ca3aef-8c08-0410-bb20-df032aa958be>2015-07-14 18:07:49 +0000
commit6fe0e36094869da2904a9567d1ab74ad09a5195d (patch)
treebc51df741c4c05e3528649277ec55f1e99624d00 /configure.ac
parent4bdf6dfacf0fa6e047ede93259eb15950ac5b107 (diff)
downloadcups-6fe0e36094869da2904a9567d1ab74ad09a5195d.tar.gz
Updated autoconf sources to use newer form of AC_INIT (STR #4664)
git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@12785 a1ca3aef-8c08-0410-bb20-df032aa958be
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac8
1 files changed, 6 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 3bc86bf10..f52e08aad 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3,7 +3,7 @@ dnl "$Id$"
dnl
dnl Configuration script for CUPS.
dnl
-dnl Copyright 2007-2014 by Apple Inc.
+dnl Copyright 2007-2015 by Apple Inc.
dnl Copyright 1997-2007 by Easy Software Products, all rights reserved.
dnl
dnl These coded instructions, statements, and computer programs are the
@@ -13,7 +13,11 @@ dnl which should have been included with this file. If this file is
dnl file is missing or damaged, see the license at "http://www.cups.org/".
dnl
-AC_INIT(cups/cups.h)
+dnl We need at least autoconf 2.60...
+AC_PREREQ(2.60)
+
+dnl Package name and version...
+AC_INIT([CUPS], [2.1rc1])
sinclude(config-scripts/cups-opsys.m4)
sinclude(config-scripts/cups-common.m4)