1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
DEscription: Default BrowseRemoteProtocols should not include "cups" protocol.
configure.ac | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Index: cups-filters-1.28.17/configure.ac
===================================================================
--- cups-filters-1.28.17.orig/configure.ac 2024-09-27 15:38:49.000000000 +0200
+++ cups-filters-1.28.17/configure.ac 2024-09-27 16:31:37.079375228 +0200
@@ -428,9 +428,9 @@
AC_SUBST(GIO_UNIX_LIBS)
AC_ARG_WITH([browseremoteprotocols],
- [AS_HELP_STRING([--with-browseremoteprotocols=value], [Set which protocols to listen for in cups-browsed (default: dnssd cups)])],
+ [AS_HELP_STRING([--with-browseremoteprotocols=value], [Set which protocols to listen for in cups-browsed (default: dnssd)])],
[with_browseremoteprotocols="$withval"],
- [with_browseremoteprotocols="dnssd cups"]
+ [with_browseremoteprotocols="dnssd"]
)
BROWSEREMOTEPROTOCOLS="$with_browseremoteprotocols"
AC_SUBST(BROWSEREMOTEPROTOCOLS)
|