Last change
on this file since 3810 was
3810,
checked in by gb, 15 years ago
|
Bump.
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
1.2 KB
|
Line | |
---|
1 | ;;;-*-Mode: LISP; Package: CCL -*- |
---|
2 | ;;; |
---|
3 | ;;; Copyright (C) 1994-2001 Digitool, Inc |
---|
4 | ;;; This file is part of OpenMCL. |
---|
5 | ;;; |
---|
6 | ;;; OpenMCL is licensed under the terms of the Lisp Lesser GNU Public |
---|
7 | ;;; License , known as the LLGPL and distributed with OpenMCL as the |
---|
8 | ;;; file "LICENSE". The LLGPL consists of a preamble and the LGPL, |
---|
9 | ;;; which is distributed with OpenMCL as the file "LGPL". Where these |
---|
10 | ;;; conflict, the preamble takes precedence. |
---|
11 | ;;; |
---|
12 | ;;; OpenMCL is referenced in the preamble as the "LIBRARY." |
---|
13 | ;;; |
---|
14 | ;;; The LLGPL is also available online at |
---|
15 | ;;; http://opensource.franz.com/preamble.html |
---|
16 | |
---|
17 | (in-package "CCL") |
---|
18 | |
---|
19 | (defparameter *openmcl-major-version* 1) |
---|
20 | (defparameter *openmcl-minor-version* 1) |
---|
21 | (defparameter *openmcl-revision* 0) |
---|
22 | (defparameter *openmcl-suffix* "pre-060316") |
---|
23 | (defparameter *openmcl-dev-level* |
---|
24 | #+ppc64-target "Beta" #-ppc64-target nil) |
---|
25 | |
---|
26 | (defparameter *openmcl-version* (format nil "~d.~d~@[.~d~]~@[-~a~] (~@[~A: ~]~~A)" |
---|
27 | *openmcl-major-version* |
---|
28 | *openmcl-minor-version* |
---|
29 | (unless (zerop *openmcl-revision*) |
---|
30 | *openmcl-revision*) |
---|
31 | *openmcl-suffix* |
---|
32 | *openmcl-dev-level*)) |
---|
33 | |
---|
34 | |
---|
35 | ; end |
---|
Note: See
TracBrowser
for help on using the repository browser.