Raymond Toy pushed to branch master at cmucl / cmucl
Commits:
7602e68b by Raymond Toy at 2015-07-15T20:56:53Z
Update from logs.
- - - - -
1 changed file:
- src/general-info/release-21a.txt
Changes:
=====================================
src/general-info/release-21a.txt
=====================================
--- a/src/general-info/release-21a.txt
+++ b/src/general-info/release-21a.txt
@@ -48,6 +48,7 @@ New in this release:
* ANSI compliance fixes:
+ * See Issue #3, #4, #5, #7.
* Bugfixes:
* On ppc machines with clock speeds over 2 GHz or so,
@@ -76,6 +77,10 @@ New in this release:
exceptions for the special functions.
* Fix compiler warnings in motif about destructive functions
discarding their results.
+ * Move back some UNIX functionality back into the core. asdf
+ wants unxi-getenv and slime wants unix-execve and unix-fork.
+ * Increase *ERROR-PRINT-LINES* to 10.
+ * Updated FreeBSD 9.3 support for building motifd.
* Trac Tickets:
* Ticket #54 fixed.
@@ -84,7 +89,12 @@ New in this release:
* Ticket #112 fixed.
* Gitlab tickets:
- * Issue #1 fixed: Handle funcall in compiler macro functions.
+ * Issue #1: Handle funcall in compiler macro functions.
+ * Issue #5: Give better error message when using T in CASE.
+ * Issue #4: ELT on lists does not signal an error when given
+ invalid index.
+ * Issue #3: Shadowing compiler macro functions.
+ * Issue #7: Local functions and get-setf-expansions
* Other changes:
* Cross compile scripts from x86 to sparc and ppc updated to work
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/7602e68b48555c676bff9acb7…
Raymond Toy pushed to branch master at cmucl / cmucl
Commits:
111f357d by Raymond Toy at 2015-07-15T20:44:50Z
Update paths for FreeBSD 9.3
>From Fred Gilham.
- - - - -
1 changed file:
- src/motif/server/Config.FreeBSD
Changes:
=====================================
src/motif/server/Config.FreeBSD
=====================================
--- a/src/motif/server/Config.FreeBSD
+++ b/src/motif/server/Config.FreeBSD
@@ -1,5 +1,5 @@
-CFLAGS = -pthread -O2 -I/usr/X11R6/include -I. -I$(VPATH)
-LDFLAGS = -L/usr/X11R6/lib
+CFLAGS = -pthread -O2 -I/usr/local/include -I. -I$(VPATH)
+LDFLAGS = -L/usr/local/lib
LIBS = -lXm -lXt -lX11
# This def assumes you are building in the same or parallel
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/111f357d1479ae3564f662924…