pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/lang/clisp
Module Name: pkgsrc
Committed By: jperkin
Date: Mon Jan 29 17:38:23 UTC 2018
Modified Files:
pkgsrc/lang/clisp: distinfo
Added Files:
pkgsrc/lang/clisp/patches: patch-src_intparam.c
Log Message:
clisp: Fix SunOS/C99.
To generate a diff of this commit:
cvs rdiff -u -r1.35 -r1.36 pkgsrc/lang/clisp/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/lang/clisp/patches/patch-src_intparam.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/lang/clisp/distinfo
diff -u pkgsrc/lang/clisp/distinfo:1.35 pkgsrc/lang/clisp/distinfo:1.36
--- pkgsrc/lang/clisp/distinfo:1.35 Tue Sep 20 14:14:08 2016
+++ pkgsrc/lang/clisp/distinfo Mon Jan 29 17:38:23 2018
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.35 2016/09/20 14:14:08 wiz Exp $
+$NetBSD: distinfo,v 1.36 2018/01/29 17:38:23 jperkin Exp $
SHA1 (clisp-2.49.tar.gz) = 1743e7917013162400c955af441e991db43b3323
RMD160 (clisp-2.49.tar.gz) = ae30f3b681cb023e885c6e4ed12210ee5ba14c76
@@ -9,6 +9,7 @@ SHA1 (patch-ab) = 93aef2c423ce9e5eabebc2
SHA1 (patch-ac) = c31fcd65d7d37aeaf69c0eee9499bff596b6619b
SHA1 (patch-modules_readline_readline.lisp) = 1463cb15f6a21374dffc0e585670ac89bb758ff3
SHA1 (patch-src_configure) = 861681456cb768b7f308aa88e77f1cee1edb2090
+SHA1 (patch-src_intparam.c) = f968079252691d06e191cf991bd43eea0a0bc739
SHA1 (patch-src_lispbibl.d) = 68eeac6def2d22ffb214fd8be3870d5c654f10bc
SHA1 (patch-src_stream.d) = 28bde27e99277d9df24028534c3b46e2099c460c
SHA1 (patch-src_unix.d) = 7158a2a18fd0f3a524658896b9b0abc98286c01e
Added files:
Index: pkgsrc/lang/clisp/patches/patch-src_intparam.c
diff -u /dev/null pkgsrc/lang/clisp/patches/patch-src_intparam.c:1.1
--- /dev/null Mon Jan 29 17:38:23 2018
+++ pkgsrc/lang/clisp/patches/patch-src_intparam.c Mon Jan 29 17:38:23 2018
@@ -0,0 +1,16 @@
+$NetBSD: patch-src_intparam.c,v 1.1 2018/01/29 17:38:23 jperkin Exp $
+
+Fix SunOS/C99.
+
+--- src/intparam.c.orig 2008-12-22 14:12:12.000000000 +0000
++++ src/intparam.c
+@@ -8,7 +8,9 @@
+ * zu verhindern, bei AIX 3.2.5 (rs6000-ibm-aix3.2.5) jedoch nicht. Wir
+ * müssen Gewalt anwenden.
+ */
++#if !defined(__sun) || (__STDC_VERSION__-0 < 199901L)
+ #define _POSIX_SOURCE
++#endif
+ #define uchar os_uchar
+ #define ushort os_ushort
+ #define uint os_uint
Home |
Main Index |
Thread Index |
Old Index