--- src/clisp-link.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- src/clisp-link.in +++ src/clisp-link.in 2016-11-29 12:56:40.625559126 +0000 @@ -578,7 +578,7 @@ case "$1" in # when running "CLISP=./clisp ./clisp-link install " # in the build directory, avoid "cp: `...' and `...' are the same file" if [ "${absolute_moduledir}" != "${absdestdir}/$moduledir" ]; then - make clisp-module-distrib LN=${INSTALL_DATA-cp} distribdir="${absdestdir}/$moduledir" + make clisp-module-distrib LN="${INSTALL_DATA-cp}" distribdir="${absdestdir}/$moduledir" mkdir -p ${absdestdir}/${DYNMOD}; 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 /* 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 */ + #define bitQ(n) bit(n) + #define bitQm(n) bitm(n) #endif /* Use 'uintX' and 'sintX' for Integers with approximately given width and a minumum of storage space. */