Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
clx
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alastair Bridgewater
clx
Commits
b2c0dbce
Commit
b2c0dbce
authored
22 years ago
by
dan
Browse files
Options
Downloads
Patches
Plain Diff
Update in preparation for SBCL 0.7.13 release
darcs-hash:20030221172016-2591e-54dda917ff8b0aaa4969f2d222f386290e2fc74b.gz
parent
0ec96edb
No related branches found
Branches containing commit
Tags
v0_4_1_
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
README
+20
-5
20 additions, 5 deletions
README
clx.asd
+1
-1
1 addition, 1 deletion
clx.asd
dependent.lisp
+2
-2
2 additions, 2 deletions
dependent.lisp
with
23 additions
and
8 deletions
README
+
20
−
5
View file @
b2c0dbce
This directory contains CLX, an X11 client library for Common
Lisp. The code was originally taken from a CMUCL distribution, was
modified somewhat in order to make it compile and run under SBCL, then
a selection of patches were added from other CLXes around the net
,
a selection of patches were added from other CLXes around the net
.
= Features
- SHAPE extension support (Gilbert Baumann)
- X authority support that works with ssh forwarding (Eric Marsden via CMUCL)
- OPEN-DEFAULT-DISPLAY function, as the name suggests, does that (dan)
- various bug fixes (
mostly thanks to Iban Hatchondo
)
- various bug fixes (
Iban Hatchondo and a cast of several
)
= Building
0. You need SBCL 0.7.1
2.25 (CVS version) or any release after that
0. You need SBCL 0.7.1
3 or any later release
1. Untar this tree somewhere
2. Add a symlink to clx.asd from one of the directories listed in your
asdf:*central-registry*
asdf:*central-registry*
If that makes no sense to you yet, choose one of -
2a. personal installation:
$ cd $HOME/.sbcl/systems # you may have to create this directory
$ ln -s /path/to/clx/source/clx.asd .
2b. systemwide installations: you need to ask SBCL where it lives
$ sbcl --noinform --eval '(format t "~A~%" (posix-getenv "SBCL_HOME"))' </dev/null
/usr/local/lib/sbcl/
*
$ cd /usr/local/lib/sbcl/site-systems
$ ln -s /path/to/clx/source/clx.asd .
3.
* (require 'asdf)
...
...
@@ -59,4 +74,4 @@ For packaging or SBCL-specific problems, mail dan at metacircles.com
--
Heavy lifting by Raymond.Wiker@fast.no
ASDFized version and ongoing by Daniel Barlow <dan@metacirles.com>
ASDFized version and ongoing by Daniel Barlow <dan@metacir
c
les.com>
This diff is collapsed.
Click to expand it.
clx.asd
+
1
−
1
View file @
b2c0dbce
...
...
@@ -27,7 +27,7 @@
(
defsystem
CLX
:depends-on
(
sb-bsd-sockets
)
:version
"0.4"
:version
"0.4
.1
"
:serial
t
:components
((
:file
"package"
)
...
...
This diff is collapsed.
Click to expand it.
dependent.lisp
+
2
−
2
View file @
b2c0dbce
...
...
@@ -1409,8 +1409,8 @@
(
declare
(
ignore
protocol
)
(
type
(
integer
0
)
display
))
(
socket-make-stream
(
if
(
or
(
string=
host
""
)
(
string=
host
"unix"
))
; AF_
UNIX
domain socket
(
let
((
s
(
make-instance
'
unix
-socket
:type
:stream
)))
(
if
(
or
(
string=
host
""
)
(
string=
host
"unix"
))
; AF_
LOCAL
domain socket
(
let
((
s
(
make-instance
'
local
-socket
:type
:stream
)))
(
socket-connect
s
(
format
nil
"~A~D"
+X-unix-socket-path+
display
))
s
)
(
let
((
host
(
car
(
host-ent-addresses
(
get-host-by-name
host
)))))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment