Raymond Toy pushed to branch rtoy-unix-core at cmucl / cmucl
Commits:
30055476 by Raymond Toy at 2015-05-11T19:44:18Z
Remove terminal-speeds since it's in code/unix-glibc2.lisp now.
- - - - -
1 changed file:
- src/contrib/unix/unix-glibc2.lisp
Changes:
=====================================
src/contrib/unix/unix-glibc2.lisp
=====================================
--- a/src/contrib/unix/unix-glibc2.lisp
+++ b/src/contrib/unix/unix-glibc2.lisp
@@ -1883,10 +1883,6 @@ in at a time in poll.")
(defconstant writeoth #o2 _N"Write by others")
(defconstant execoth #o1 _N"Execute (search directory) by others")
-(defconstant terminal-speeds
- '#(0 50 75 110 134 150 200 300 600 1200 1800 2400
- 4800 9600 19200 38400 57600 115200 230400))
-
;;;; Support routines for dealing with unix pathnames.
(export '(unix-file-kind unix-maybe-prepend-current-directory
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/300554765f2b19fdb4219edc6…
Raymond Toy pushed to branch rtoy-unix-core at cmucl / cmucl
Commits:
eb4a83b4 by Raymond Toy at 2015-05-10T14:16:20Z
Load up the unix fasl file using compile-file-pathname.
- - - - -
1f888009 by Raymond Toy at 2015-05-10T14:23:23Z
Remove set -x that was accidentally left in.
- - - - -
2 changed files:
- bin/make-main-dist.sh
- src/contrib/load-unix.lisp
Changes:
=====================================
bin/make-main-dist.sh
=====================================
--- a/bin/make-main-dist.sh
+++ b/bin/make-main-dist.sh
@@ -133,7 +133,6 @@ do
install -d ${GROUP} ${OWNER} -m 0755 $DESTDIR/lib/cmucl/lib/contrib/$f
done
-set -x
case `uname -s` in
Linux*) UCONTRIB="unix-glibc2" ;;
*) UCONTRIB="unix" ;;
=====================================
src/contrib/load-unix.lisp
=====================================
--- a/src/contrib/load-unix.lisp
+++ b/src/contrib/load-unix.lisp
@@ -1,7 +1,7 @@
;; Load extra functionality in the UNIX package.
(ext:without-package-locks
- (load #-linux "modules:unix/unix"
- #+linux "modules:unix/unix-glibc2"))
+ (load (compile-file-pathname #-linux "modules:unix/unix"
+ #+linux "modules:unix/unix-glibc2")))
(provide 'unix)
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/compare/f5368940188bb555a1843895…