diff options
author | Thomas Bushnell <tb@debian.org> | 2005-10-26 19:31:02 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2017-02-20 00:05:28 -0800 |
commit | 5f7b0413c1bb0f96bb613ad74c0978f44116a136 (patch) | |
tree | fa4a4e8097af22dfcb5c8dba8eed67aabfe76599 /scmfig.h | |
parent | 37f2f5e0bb11a18deecf48c7ad6bcbf7bd932db2 (diff) | |
download | scm-5f7b0413c1bb0f96bb613ad74c0978f44116a136.tar.gz scm-5f7b0413c1bb0f96bb613ad74c0978f44116a136.zip |
Import Debian changes 5d9-5debian/5d9-5
scm (5d9-5) unstable; urgency=low
* New maintainer. Adopted with permission of previous maintainer.
* repl.c (s_read): Remove static qualifier on declaration.
* scmfig.h: Use SHORT_INT and CDR_DOUBLES on __powerpc64__ and
__x86_64__ just as with __ia64.
(Closes: #295074, #251765)
* debian/control (Build-Depends): Use libreadline5-dev in place of
libreadline4-dev. (Closes: #326297)
Diffstat (limited to 'scmfig.h')
-rw-r--r-- | scmfig.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -281,7 +281,7 @@ rgx.c init_rgx(); regcomp and regexec. */ #ifdef __alpha # define SHORT_INT #endif -#ifdef __ia64 +#if defined (__ia64) || defined (__powerpc64__) || defined (__x86_64__) # define SHORT_INT # define CDR_DOUBLES #endif |