Files
buildroot/package/xscreensaver/0001-allow_unrecognized_conf_opts.patch
Bernd Kuhls 34a03bdba4 package/xscreensaver: bump version to 6.12
Added two patches from Debian to fix configure errors.

Switched from libgtk2 to libgtk3 and adjusted dependencies.
Added dependency to libxcrypt.

Fixed broken include path for gl.h, inspired by Gentoo:
https://gitweb.gentoo.org/repo/gentoo.git/tree/x11-misc/xscreensaver/xscreensaver-6.12-r2.ebuild#n172

Removed dependency to gdk-pixbuf-xlib, not needed since version 6.05:
https://gitweb.gentoo.org/repo/gentoo.git/commit/x11-misc/xscreensaver?id=3d6bc3a216196c795de6e0932f74055548beb9bb

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
[Julien: replace the sed substitute separator with '%']
Signed-off-by: Julien Olivain <ju.o@free.fr>
2025-11-09 18:18:58 +01:00

29 lines
917 B
Diff

Description: Allow unrecognized configure options
Fix an oddity in upstream-generated configure.
Our dh_auto_configure will add several unrecognized options.
Forwarded: not-needed
Author: Tormod Volden <debian.tormod@gmail.com>
Downloaded from
https://sources.debian.org/data/main/x/xscreensaver/6.09%2Bdfsg1-1/debian/patches/94_allow_unrecognized_conf_opts.patch
Upstream: not applicable
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Index: xscreensaver-git/configure
===================================================================
--- xscreensaver-git.orig/configure
+++ xscreensaver-git/configure
@@ -2856,8 +2856,8 @@ echo "current directory: `pwd`"
echo "command line was: $0 $@"
if ! test -z "$ac_unrecognized_opts" ; then
- echo "" >&2
- exit 2
+ echo "ignored options $ac_unrecognized_opts" >&2
+ #exit 2
fi
###############################################################################