d10192b0b4
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.
19 lines
422 B
Text
19 lines
422 B
Text
$NetBSD: patch-al,v 1.4 2015/07/02 18:47:57 khorben Exp $
|
|
|
|
fix build on solaris 9
|
|
|
|
--- hacks/asm6502.c.orig 2015-03-02 03:59:21.000000000 +0000
|
|
+++ hacks/asm6502.c
|
|
@@ -31,7 +31,12 @@
|
|
#include <assert.h>
|
|
#include <ctype.h>
|
|
#include <math.h>
|
|
+#include <config.h>
|
|
+#if defined(HAVE_STDINT_H)
|
|
+#include <stdint.h>
|
|
+#elif defined(HAVE_INTTYPES_H)
|
|
#include <inttypes.h>
|
|
+#endif
|
|
#include <unistd.h>
|
|
|
|
#include "yarandom.h"
|