2017-07-27 13:11:34 +00:00
committed by Git OBS Bridge
parent 503bf5dc8f
commit 47cbd9f605
10 changed files with 173 additions and 172 deletions

View File

@@ -4,7 +4,7 @@
2 files changed, 4 insertions(+), 2 deletions(-)
--- src/clisp-link.in
+++ src/clisp-link.in 2016-11-29 12:56:40.625559126 +0000
+++ src/clisp-link.in 2017-07-27 12:34:06.144647126 +0000
@@ -578,7 +578,7 @@ case "$1" in
# when running "CLISP=./clisp ./clisp-link install <modname>"
# in the build directory, avoid "cp: `...' and `...' are the same file"
@@ -15,8 +15,8 @@
for f in ${DYNDIR_FILES}; do
cp ${f} ${absdestdir}/${DYNMOD}/
--- src/lispbibl.d
+++ src/lispbibl.d 2016-11-29 14:23:35.426290281 +0000
@@ -1450,6 +1450,8 @@ typedef SLONG sint32; /* signed 32 bi
+++ src/lispbibl.d 2017-07-27 12:34:06.152646979 +0000
@@ -1571,6 +1571,8 @@ typedef SLONG sint32; /* signed 32 bi
/* Emulate 64-Bit-numbers using two 32-Bit-numbers. */
typedef struct { sintL hi; uintL lo; } sintL2; /* signed 64 Bit integer */
typedef struct { uintL hi; uintL lo; } uintL2; /* unsigned 64 Bit integer */
@@ -25,7 +25,7 @@
#endif
/* Use 'uintX' and 'sintX' for Integers with approximately given width
and a minumum of storage space. */
@@ -11622,7 +11622,7 @@ re-enters the corresponding top-level lo
@@ -11973,7 +11975,7 @@ re-enters the corresponding top-level lo
#define pushSTACK(obj) (STACK_(-1) = (obj), STACK skipSTACKop -1)
/* Almost equivalent with *--STACK = obj resp. *STACK++ = obj , but
Careful: first enter the object into STACK_(-1), THEN modify the STACK! */