Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
clim-tos
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
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
clim-tos
Commits
a14b1310
Commit
a14b1310
authored
27 years ago
by
layer
Browse files
Options
Downloads
Patches
Plain Diff
2.2.1.8
parent
6bf938c6
No related branches found
No related tags found
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
ChangeLog.n
+12
-0
12 additions, 0 deletions
ChangeLog.n
Makefile.defs
+3
-5
3 additions, 5 deletions
Makefile.defs
Makefile.generic
+2
-2
2 additions, 2 deletions
Makefile.generic
demo/README
+2
-2
2 additions, 2 deletions
demo/README
utils/packages.lisp
+3
-3
3 additions, 3 deletions
utils/packages.lisp
with
22 additions
and
12 deletions
ChangeLog.n
+
12
−
0
View file @
a14b1310
...
...
@@ -10,6 +10,18 @@ Tests for new features: <`no new features', `no tests for new features', or
<standard changelog date stamp>
* <changes go here...>
*******************************************************************************
2.2.1.8
Documentation changes: none
Tests for new features: no new features
Fri Mar 06 09:13:49 1998 <layer@HOBART>
* Makefile.defs: CLIM defaults to climi.dxl
* Makefile.generic: :purify back to `t' since lisp bug fixed
* demo/README: cosmetic
*******************************************************************************
2.2.1.7
...
...
This diff is collapsed.
Click to expand it.
Makefile.defs
+
3
−
5
View file @
a14b1310
# $Header: /repo/cvs.copy/clim2/Makefile.defs,v 1.4
3
199
7/10/20 23:10:57
layer Exp $
# $Header: /repo/cvs.copy/clim2/Makefile.defs,v 1.4
4
199
8/03/06 19:06:39
layer Exp $
#
# Makefile.defs for CLIM 2.0
#
...
...
@@ -7,6 +7,8 @@ SHARED_EXT = so
LISP
=
../src/lispi
DCL
=
dcli
CLIM
=
climi.dxl
CL
=
$(
LISP
)
-I
$(
DCL
)
CLOPTS
=
-qq
-batch
-backtrace-on-error
...
...
@@ -50,10 +52,6 @@ compile_verbose = t
compile_print
=
nil
redef_warning
=
t
# where to dump the CLIM images
CLIM
=
clim.dxl
CFLAGS
=
-O
-D_NO_PROTO
-DSTRINGS_ALIGNED
-DNO_REGEX
-DNO_ISDIR
\
-DUSE_RE_COMP
-DUSER_GETWD
LDFLAGS
=
...
...
This diff is collapsed.
Click to expand it.
Makefile.generic
+
2
−
2
View file @
a14b1310
# $Header: /repo/cvs.copy/clim2/Makefile.generic,v 1.4
5
1998/0
2/13 21:04:44
layer Exp $
# $Header: /repo/cvs.copy/clim2/Makefile.generic,v 1.4
6
1998/0
3/06 19:06:39
layer Exp $
#
# Makefile.generic for CLIM 2.0
#
...
...
@@ -138,7 +138,7 @@ $(CLIM): FORCE $(PRODUCT-OBJS) $(ICS-PRODUCT-OBJS)
(load-it '
$(
SYSTEM
)
)))
\
:autoload-warning nil
\
:image-only t
\
:purify
nil
\
:purify
t
\
:debug-on-error t
\
:internal-debug
\"
build-clim.out
\"
\
:shlib-warning nil
\
...
...
This diff is collapsed.
Click to expand it.
demo/README
+
2
−
2
View file @
a14b1310
;; copyright (c) 1985, 1986 Franz Inc, Alameda, CA All rights reserved.
;; copyright (c) 1986-1991 Franz Inc, Berkeley, CA All rights reserved.
;; $Id: README,v 1.
4
1998/0
2/13 21:04:46
layer Exp $
;; $Id: README,v 1.
5
1998/0
3/06 19:06:39
layer Exp $
Running the CLIM demos:
...
...
@@ -10,4 +10,4 @@ Running the CLIM demos:
2. To start, evaluate:
(clim-demo:start-demo)
(clim-demo:start-demo)
This diff is collapsed.
Click to expand it.
utils/packages.lisp
+
3
−
3
View file @
a14b1310
;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Package: CL-USER; Base: 10; Lowercase: Yes -*-
;; $Header: /repo/cvs.copy/clim2/utils/packages.lisp,v 1.
79
1998/03/0
2 23:17:04 duane
Exp $
;; $Header: /repo/cvs.copy/clim2/utils/packages.lisp,v 1.
80
1998/03/0
6 19:06:42 layer
Exp $
(
in-package
:common-lisp-user
)
...
...
@@ -3301,7 +3301,7 @@
(
cl:defvar
*clim-major-version*
2
)
(
cl:defvar
*clim-minor-version*
2
)
(
cl:defvar
*clim-generation-version*
1
)
(
cl:defvar
*clim-build-version*
7
)
(
cl:defvar
*clim-build-version*
8
)
(
cl:defparameter
*clim-version*
(
cl:format
()
"CLIM ~d.~d.~d.~a"
...
...
@@ -3309,4 +3309,4 @@
*clim-generation-version*
*clim-build-version*
))
#-
aclpc
(
si::rcsnote
*clim-version*
"$Id: packages.lisp,v 1.
79
1998/03/0
2 23:17:04 duane
Exp $"
)
(
si::rcsnote
*clim-version*
"$Id: packages.lisp,v 1.
80
1998/03/0
6 19:06:42 layer
Exp $"
)
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