annotate src/s/openbsd.h @ 5370:4c4b96b13f70

Address the easy test failures in tests/automated. src/ChangeLog addition: 2011-03-11 Aidan Kehoe <kehoea@parhasard.net> * bytecode.c (optimize_byte_code): Only transform assignments to keywords to Bdiscard if NEED_TO_HANDLE_21_4_CODE is turned on. Cf. similar code in reject_constant_symbols(). tests/ChangeLog addition: 2011-03-11 Aidan Kehoe <kehoea@parhasard.net> * automated/byte-compiler-tests.el: (defconst :foo 1) now gives a warning when byte-compiled, check for that. (setq :foo 1) now errors with interpreted code, but succeeds with byte-compiled code; check for the former, wrap a Known-Bug-Expect-Failure around a check for the error in the latter case, we can't yet remove this behaviour while we're using packages compiled by 21.4. * automated/lisp-tests.el (wrong-type-argument): Integer zero is a valid argument to #'substring-no-properties, use Assert not Check-Error for it. Check some other aspects of the functionality of #'substring-no-properties in passing.
author Aidan Kehoe <kehoea@parhasard.net>
date Fri, 11 Mar 2011 20:40:01 +0000
parents 57709be46d1b
children 861f2601a38b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
286
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents:
diff changeset
1 /* s/ file for openbsd systems. */
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents:
diff changeset
2
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents:
diff changeset
3 /* Get most of the stuff from bsd4.3 */
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents:
diff changeset
4 #include "bsd4-3.h"
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents:
diff changeset
5
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents:
diff changeset
6 /* OpenBSD alpha has no shared libs yet. */
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents:
diff changeset
7 #if defined (__alpha__) && !defined (__ELF__)
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents:
diff changeset
8 #define NO_SHARED_LIBS
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents:
diff changeset
9 #endif
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents:
diff changeset
10
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents:
diff changeset
11 /* Get the rest of the stuff from NetBSD */
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents:
diff changeset
12 #include "netbsd.h"