diff options
author | joerg <joerg@pkgsrc.org> | 2013-07-19 12:51:10 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2013-07-19 12:51:10 +0000 |
commit | 83fb9c831a6007f0573b91240a6c14185b1056c5 (patch) | |
tree | e11a4d84f137fbfda91d40721c7039698ede28fe | |
parent | 29026943ed2f9cc6b96aa07a7f48a576c84fa92c (diff) | |
download | pkgsrc-83fb9c831a6007f0573b91240a6c14185b1056c5.tar.gz |
Fix return type.
-rw-r--r-- | emulators/x48/distinfo | 5 | ||||
-rw-r--r-- | emulators/x48/patches/patch-src_debugger.c | 13 | ||||
-rw-r--r-- | emulators/x48/patches/patch-src_x48_x11.c | 11 |
3 files changed, 26 insertions, 3 deletions
diff --git a/emulators/x48/distinfo b/emulators/x48/distinfo index d331ce39f67..e06f83f7435 100644 --- a/emulators/x48/distinfo +++ b/emulators/x48/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.9 2013/07/09 10:24:22 he Exp $ +$NetBSD: distinfo,v 1.10 2013/07/19 12:51:10 joerg Exp $ SHA1 (gxrom-r.bz2) = c60a83cd57681c3cb359f0cd2505ede686fdb4c8 RMD160 (gxrom-r.bz2) = 1dafce5902310161cb60f3dde401941565fd031c @@ -11,7 +11,8 @@ RMD160 (x48-0.6.4.tar.bz2) = a5d7ddb4eb47426c639941d8cf53926bd3451ef5 Size (x48-0.6.4.tar.bz2) = 227991 bytes SHA1 (patch-Makefile.am) = c17957624ea2a65e7bce3e65ced645993b30ee0c SHA1 (patch-configure.ac) = 55f1033b0f49e0a296290a1af83f6772e5783f0d +SHA1 (patch-src_debugger.c) = 639388a375290cabe9870a11759d7cd3a1fc1707 SHA1 (patch-src_emulate.c) = 75a62b9038a07baff779ed7fad46252e276e69b0 SHA1 (patch-src_global.h) = 48f076bdf72fb7a6df92e1bb961997fb3844ab30 SHA1 (patch-src_serial.c) = 9b681d0d94ad53c9d770e54d56eddbda900627b1 -SHA1 (patch-src_x48_x11.c) = 4615a57f65e23f4352ea2717306f0095ef9464b0 +SHA1 (patch-src_x48_x11.c) = a83e5c184d007b16ac80247cbc6d0bd1a5a66d96 diff --git a/emulators/x48/patches/patch-src_debugger.c b/emulators/x48/patches/patch-src_debugger.c new file mode 100644 index 00000000000..a1b4fc5bffa --- /dev/null +++ b/emulators/x48/patches/patch-src_debugger.c @@ -0,0 +1,13 @@ +$NetBSD: patch-src_debugger.c,v 1.1 2013/07/19 12:51:11 joerg Exp $ + +--- src/debugger.c.orig 2013-07-19 10:21:21.000000000 +0000 ++++ src/debugger.c +@@ -1528,7 +1528,7 @@ struct se { + struct se *se_next; + }; + +-char * ++void + #ifdef __FunctionProto__ + get_stack (void) + #else diff --git a/emulators/x48/patches/patch-src_x48_x11.c b/emulators/x48/patches/patch-src_x48_x11.c index 94e3e6ff79d..7c2b0f14335 100644 --- a/emulators/x48/patches/patch-src_x48_x11.c +++ b/emulators/x48/patches/patch-src_x48_x11.c @@ -1,4 +1,4 @@ -$NetBSD: patch-src_x48_x11.c,v 1.1 2013/07/09 10:24:22 he Exp $ +$NetBSD: patch-src_x48_x11.c,v 1.2 2013/07/19 12:51:11 joerg Exp $ Pick X11 application defaults from path specified in the package Makefile. @@ -16,3 +16,12 @@ Makefile. /* 3. Values in $XUSERFILESEARCHPATH/X48, or $XAPPLRESDIR/X48 */ +@@ -3833,7 +3834,7 @@ int first_key = 0; + + int last_button = -1; + +-extern char *get_stack(void); ++extern void get_stack(void); + + int + #ifdef __FunctionProto__ |