pkgsrc/x11/xscreensaver/patches/patch-ak
khorben d10192b0b4 Package x11/xscreensaver{,-demo} 5.33
According to the release notes:

 * New hacks, splitflap and romanboy.
 * Better detection of user activity on modern GNOME systems.
 * Sonar now does asynchronous host name resolution.
 * Improved Unicode support.
 * Updated webcollage for recent changes.
 * Various minor fixes.
2015-07-02 18:47:57 +00:00

19 lines
415 B
Text

$NetBSD: patch-ak,v 1.3 2015/07/02 18:47:57 khorben Exp $
fix build on solaris 9
--- hacks/m6502.c.orig 2015-03-02 03:59:21.000000000 +0000
+++ hacks/m6502.c
@@ -12,7 +12,12 @@
* Created: 07-May-2007
*/
+#include <config.h>
+#if defined(HAVE_STDINT_H)
+#include <stdint.h>
+#elif defined(HAVE_INTTYPES_H)
#include <inttypes.h>
+#endif
#include <string.h>
#include "screenhack.h"
#include "analogtv.h"