Skip to content
Snippets Groups Projects
Commit 3dc4a6aa authored by moore's avatar moore
Browse files

Fixed #+ conditional so object file loading for the Elf static FreeBSD case
isn't built on other OSs.
parent d7c4035b
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain. ;;; Carnegie Mellon University, and has been placed in the public domain.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/foreign.lisp,v 1.38 2002/03/13 08:01:55 moore Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/foreign.lisp,v 1.39 2002/03/15 00:37:32 moore Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -89,7 +89,7 @@ ...@@ -89,7 +89,7 @@
;;; The following definitions are taken from ;;; The following definitions are taken from
;;; /usr/include/sys/elf_common.h and /usr/include/sys/elf32.h. ;;; /usr/include/sys/elf_common.h and /usr/include/sys/elf32.h.
;;; ;;;
#+(or NetBSD (and FreeBSD elf) (not FreeBSD4)) #+(or NetBSD (and FreeBSD elf (not FreeBSD4)))
(progn (progn
(alien:def-alien-type elf-address (alien:unsigned 32)) (alien:def-alien-type elf-address (alien:unsigned 32))
(alien:def-alien-type elf-half-word (alien:unsigned 16)) (alien:def-alien-type elf-half-word (alien:unsigned 16))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment