diff options
author | 2007-10-10 21:07:18 +0000 | |
---|---|---|
committer | 2007-10-10 21:07:18 +0000 | |
commit | 41e289137d3b5d3e7460458cbe77d8b4000b594a (patch) | |
tree | c6508bdb2fc55436c1a7849df7ea4c063b1e6cb5 /net-print/cups/files/cups-1.3.0-configure.patch | |
parent | bump to 1.5.6 (from overlay) (diff) | |
download | gentoo-2-41e289137d3b5d3e7460458cbe77d8b4000b594a.tar.gz gentoo-2-41e289137d3b5d3e7460458cbe77d8b4000b594a.tar.bz2 gentoo-2-41e289137d3b5d3e7460458cbe77d8b4000b594a.zip |
Add cups-1.3.3.ebuild, fixes bug #188993 and also has a patch applied for bug #192294.
(Portage version: 2.1.3.12)
Diffstat (limited to 'net-print/cups/files/cups-1.3.0-configure.patch')
-rw-r--r-- | net-print/cups/files/cups-1.3.0-configure.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/net-print/cups/files/cups-1.3.0-configure.patch b/net-print/cups/files/cups-1.3.0-configure.patch new file mode 100644 index 000000000000..f248dfeb0298 --- /dev/null +++ b/net-print/cups/files/cups-1.3.0-configure.patch @@ -0,0 +1,18 @@ +diff -Naur cups-1.3.3/config-scripts/cups-common.m4 cups-1.3.3.new/config-scripts/cups-common.m4 +--- cups-1.3.3/config-scripts/cups-common.m4 2007-09-28 22:40:03.000000000 +0200 ++++ cups-1.3.3.new/config-scripts/cups-common.m4 2007-10-04 14:40:49.414154416 +0200 +@@ -270,7 +270,12 @@ + dnl See if we have POSIX ACL support... + SAVELIBS="$LIBS" + LIBS="" +-AC_SEARCH_LIBS(acl_init, acl, AC_DEFINE(HAVE_ACL_INIT)) ++ ++AC_ARG_ENABLE(acl, [ --enable-acl enable POSIX ACL support, default=auto]) ++if test "x$enable_acl" != xno; then ++ AC_SEARCH_LIBS(acl_init, acl, AC_DEFINE(HAVE_ACL_INIT)) ++fi ++ + CUPSDLIBS="$CUPSDLIBS $LIBS" + LIBS="$SAVELIBS" + + |