Skip to content

Commit

Permalink
in wrappers.lisp use the posix instead of os package
Browse files Browse the repository at this point in the history
os is a nickname of the posix package but it was breaking with -K full on gentoo.
  • Loading branch information
86me authored and sabetts committed Apr 25, 2009
1 parent 3834c21 commit 7a745e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wrappers.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ they should be windows. So use this function to make a window out of them."

#+ (and clisp (not (or linux freebsd)))
(eval-when (eval load compile)
(let ((osname (os:uname-sysname (os:uname))))
(let ((osname (posix:uname-sysname (posix:uname))))
(cond
((string= osname "Linux") (pushnew :linux *features*))
((string= osname "FreeBSD") (pushnew :freebsd *features*))
Expand Down

0 comments on commit 7a745e2

Please sign in to comment.