| Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
| Name: clisp | Distribution: openSUSE Tumbleweed |
| Version: 2.49.95 | Vendor: openSUSE |
| Release: 1.1 | Build date: Mon Jun 23 17:23:10 2025 |
| Group: Development/Languages/Other | Build host: reproducible |
| Size: 57598618 | Source RPM: clisp-2.49.95-1.1.src.rpm |
| Packager: http://bugs.opensuse.org | |
| Url: https://gitlab.com/gnu-clisp/clisp | |
| Summary: A Common Lisp Interpreter | |
Common Lisp is a high-level, all-purpose programming language. CLISP is an implementation of Common Lisp that closely follows the book "Common Lisp - The Language" by Guy L. Steele Jr. This package includes an interactive programming environment with an interpreter, a compiler, and a debugger. Start this environment with the command 'clisp'.
GPL-2.0-or-later AND GPL-3.0-or-later
* Mon Jun 23 2025 Dr. Werner Fink <werner@suse.de>
- Update to latest commit f6622093 (based on 2.49.95+git20241103)
to get it build with gcc15
Fix expansion of CL_FFCALL in src/configure.
Reported by Adam Sampson <ats@offog.org> at
<https://gitlab.com/gnu-clisp/clisp/-/issues/60>.
* glm4/lib-link.m4 (AC_LIB_FROMPACKAGE): Import bug fix from gnulib.
* src/configure: Regenerated.
Enable most optimizations on Hurd/x86_64.
* lispbibl.d (MAPPABLE_ADDRESS_RANGE_START, MAPPABLE_ADDRESS_RANGE_END,
SINGLEMAP_*, *_WORKS): Define for Hurd/x86_64.
* Makefile.devel (multibuild-hurd-x86_64): Enable all build variants
that work.
* makemake.in (Z_XCFLAGS): For Hurd/x86_64, enable all optimizations
except ASM.
Recommend libsigsegv 2.15.
* configure (libsigsegv_url): Update to 2.15.
Find a better way to make things work with gcc 15.1.0.
Suggested by Jerry James in
<https://gitlab.com/gnu-clisp/clisp/-/merge_requests/12>.
According to ISO C 99/11/17 § 6.5.6.(8), ISO C 23 § 6.5.7.(9),
computing (T*)0 + constant is undefined behaviour.
* package.d (rehash_symtab): Change 'offset' to be of integral type.
Re-enable gcc optimizations.
(map_symtab, map_symtab_c): Change 'offset' to be of integral type.
Fix most gcc -Wimplicit-fallthrough warnings.
* Makefile.devel (GNULIB_CORE): Add 'attribute'.
* lispbibl.d: Include attribute.h.
* eval.d: Silence -Wimplicit-fallthrough warnings.
* foreign.d (foreign_pointer): Add 'FALLTHROUGH;' statement.
* stream.d (interactive_stream_p, READ-BYTE-NO-HANG): Likewise.
* lisparit.d (read_float): Likewise.
* intelem.d (I_to_UL, I_to_UQ): Likewise.
* io.d (GET-MACRO-CHARACTER, test_number_syntax, PARSE-INTEGER,
pr_real_number): Likewise.
* charstrg.d: Use 'FALLTHROUGH;' statements.
* hashtabl.d: Likewise.
* pathname.d: Likewise.
* spvw.d: Likewise.
Fix a gcc -Wformat-overflow warning.
* utils/varbrace.c (line_repeat_else, line_repeat_endif): Make buf
larger.
Fix a gcc warning "macro ‘__DATE__’ might prevent reproducible builds".
* genclisph.d (main): Don't store a time stamp in clisp-test.c; its
time stamp on disk is sufficient.
Work around a gcc 15.1.0 bug on x86_64.
* package.d (rehash_symtab): When compiled by GCC 15, disable all
optimizations.
Update after gnulib changed.
* Makefile.devel (GNULIB_CORE): Use the new names of renamed gnulib
modules.
Revisit Linux/riscv64 builds.
* Makefile.devel (multibuild-linux-riscv64): Enable all build variants
that work.
Upgrade ASDF. This fixes a bug on Haiku.
Reported by Alexandru Popa <alpopa@gmail.com>
in <https://sourceforge.net/p/clisp/mailman/message/58844235/>.
* modules/asdf/asdf.lisp: Upgrade to upstream 3.3.6.7.
* modules/asdf/asdf.xml: Update.
* doc/impnotes.html: Regenerated.
Add comments.
* Makefile.devel (build-porting*): Add comments regarding *_WORKS macros
Enable most optimizations on Linux/loongarch64.
* lispbibl.d (LOONGARCH64): New macro.
(C_CODE_ALIGNMENT, intDsize, varobject_alignment, SP_register,
ASM_get_SP_register, SP_DOWN): Define for loongarch64.
(MAPPABLE_ADDRESS_RANGE_START, MAPPABLE_ADDRESS_RANGE_END, SINGLEMAP_*,
HEAPCODES1BIT_WITH_TRIVIALMAP_WORKS, HEAPCODES1BIT_WITH_MALLOC_WORKS,
GENERIC64C_HEAPCODES_WORKS, TYPECODES_WITH_TRIVIALMAP_WORKS,
TYPECODES_WITH_MALLOC_WORKS): Define for Linux/loongarch64.
* Makefile.devel (multibuild-linux-loongarch64): New target. Enable all
build variants that work.
* makemake.in (XCFLAGS): For Linux/loongarch64, enable all optimizations
except ASM.
Review memory mapping on Linux/powerpc64 with newer Linux kernels.
* lispbibl.d: Update comments.
Review memory mapping on Linux/arm64 with newer Linux kernels.
* lispbibl.d (MALLOC_ADDRESS_RANGE): Move override.
Fix a compiler bug that would lead to a wrong value of STACK.
Reported by Paul F. Dietz
at <https://gitlab.com/gnu-clisp/clisp/issues/11>.
* compiler.lisp (simplify): Fix the (SKIPI k11 k21 n1)
(SKIPI k21 k22 n2) combination rule.
Add user configuration for Haiku, part 3.
Reported by Alexandru Popa <alpopa@gmail.com>.
* cfghaiku.lisp: Remove *clhs-root-default* assignment. It is being
added automatically to config.lisp during the build process.
Improve memory mapping on Linux/s390x with newer Linux kernels.
Reported by Sébastien Villemot in
<https://gitlab.com/gnu-clisp/clisp/-/issues/2>.
* lispbibl.d [UNIX_LINUX && S390_64]: Support more variation of
CODE_ADDRESS_RANGE. Choose larger values for
MAPPABLE_ADDRESS_RANGE_START, MAPPABLE_ADDRESS_RANGE_END. Choose new
values for SINGLEMAP_TYPE_MASK, SINGLEMAP_oint_type_shift. Don't favour
GENERIC64_HEAPCODES. Set HEAPCODES1BIT_WITH_MALLOC_WORKS to 1.
* Makefile.devel (multibuild-linux-s390x): Enable all build variants.
* tests/alltest.tst: Allow new values of most-positive-fixnum,
most-negative-fixnum.
Fix compilation errors of SAFETY=3 builds with gcc versions < 5.
* lispbibl.d (OBJECT_STRUCT, CHART_STRUCT): Don't define with gcc
versions < 5.
Fix universal-time overflow in the year 2036.
Reported by Bernhard M. Wiedemann via Dr. Werner Fink in
<https://sourceforge.net/p/clisp/feature-requests/59/>
<https://gitlab.com/gnu-clisp/clisp/-/issues/48>.
* lispbibl.d (sec_usec_number): Change seconds parameter to sint64 and
microseconds parameter to uint32.
(Q_to_I): Declare unconditionally.
* intelem.d (Q_to_I): Define unconditionally.
* time.d (convert_time_to_universal): Cast time_t to sint64. Use Q_to_I
instead of UL_to_I.
(convert_time_from_universal): Use I_to_Q instead of I_to_UL.
(real_time_sec): Return a sint64.
(GET-UNIVERSAL-TIME): Use Q_to_I instead of UL_to_I.
* stream.d (sec_usec): Check that the seconds parameter is a sint64 or
sint64, depending on the type of 'tv_sec' in 'struct timeval'.
(sec_usec_number): Change seconds parameter to sint64 and microseconds
parameter to uint32. Use Q_to_I.
* modules/syscalls/calls.c (file_stat_to_STACK): Convert each st_*time
value to sint64 before adding +UNIX_LISP_TIME_DIFF.
Remove support for C compilers that don't support 64-bit 'long long'.
* intparam.c: Assume HAVE_LONG_LONG_INT.
* m4/intparam.m4 (CL_INTPARAM_CROSS): Don't require
AC_TYPE_LONG_LONG_INT. Handle 'long long' and 'unsigned long long' types
always.
* configure.in: Don't invoke AC_TYPE_LONG_LONG_INT.
* src/configure: Regenerated.
* lispbibl.d (LL, ULL): Remove macros.
(SLONGLONG, ULONGLONG): Define unconditionally.
(uint33, sint33, uint48, sint48, uint64, sint64): Define
unconditionally.
(sintL2, uintL2): Remove types.
(timescore_t, gc_space): Use uint64 instead of uintL2.
(I_to_UQ, I_to_Q): Declare unconditionally.
(I_to_uint64, I_to_sint64): Declare unconditionally.
* genclisph.d (printf_arg, fill_printf_arg, ULLsuffix,
print_printf_arg): Assume HAVE_LONG_LONG_INT.
* unixaux.d (FACTOR, NSPERSEC): Update.
* spvw_gcstat.d (gc_space, inc_gc_space): Use uint64 instead of uintL2.
* spvw_garcol.d (uintVLA): Likewise.
* spvw_garcol_old.d (uintVLA): Likewise.
* spvw_sigsegv.d (print_mem_stats): Use fprintf %llu unconditionally.
* debug.d (SYS::%ROOM): Use UQ_to_I unconditionally.
* time.d (convert_time_to_universal, real_time_sec): Assume
HAVE_LONG_LONG_INT.
(SYSTEM::%%TIME): Use uint64 unconditionally.
* aridecl.d (wbitc): Assume HAVE_LONG_LONG_INT.
* arilev0.d (mulu32, divu_6432_3232): Assume HAVE_LONG_LONG_INT.
* arilev1.d (muluD, divuD): Assume HAVE_LONG_LONG_INT.
* intelem.d (I_to_UQ, I_to_Q): Define unconditionally.
* intlog.d (logcount_64): Update.
* intmal.d (FN_fak_I): Update.
* intsqrt.d: Use uint64 instead of uintL2.
* foreign.d (struct_uint64, struct_sint64): Remove types. All uses
replaced with uint64, sint64.
(error_64bit): Remove function.
(foreign_layout, convert_from_foreign, convert_to_foreign, do_av_start,
do_av_arg, do_va_start, do_va_arg, do_va_return): Assume
HAVE_LONG_LONG_INT.
* tests/ffi.tst: Remove outdated comment.
Remove support for Mach systems without mmap.
This fixes a compilation error on Mac OS X caused by the last commit.
* lispbibl.d: Remove HAVE_MACH_VM specific code.
* unix.d: Likewise.
* spvw.d, spvw_mmap.d: Likewise.
* configure.in: Don't invoke CL_MACH_VM.
* m4/mach-vm.m4: Remove file.
* aclocal.m4, src/config*, src/gllib/Makefile.in: Regenerated.
On Mach, use mach_task_self() instead of task_self().
Reported by Florian Weimer in
<https://gitlab.com/gnu-clisp/clisp/-/issues/42>.
* m4/mach-vm.m4 (CL_MACH_VM): Use mach_task_self() and include the
appropriate Mach headers.
* unix.d [HAVE_MACH_VM]: Include <mach/mach_init.h>.
* spvw_mmap.d (mmap_zeromap, mmap_filemap, munmap, mprotect): Use
mach_task_self() instead of task_self().
* src/configure: Regenerated.
doc: Increase user privacy in HTML documentation.
* doc/common.xsl: Remove donation request (is redirected to paypal.com
and does not work), sourceforge.org reference (can be seen as a web
bug), and optional google ad (anti-social).
* doc/Makefile (GOOGLEADS): Remove variable.
(XMLOUT): Don't set google.ads any more.
* doc/*.html: Regenerated.
pari: Add support for pari 2.17.
* modules/pari/pari.lisp (diffptr): Remove declaration.
doc: Don't require an internet connection to build the doc.
* doc/gpl-2.0.dbk: Fix a syntax error.
* doc/impnotes.xml.in: Include fdl-1.3.dbk, gpl-2.0.dbk directly.
* doc/impnotes.html: Regenerated.
doc: Use a local copy of the GFDL and GPL licenses.
* doc/fdl-1.3.dbk: New file, from
https://www.gnu.org/licenses/fdl-1.3.dbk.
* doc/gpl-2.0.dbk: New file, from
https://www.gnu.org/licenses/old-licenses/gpl-2.0.dbk.
* doc/Makefile (IMPNOTES): Add them.
doc: Don't use undocumented groff man macro 'an-trap'.
* doc/Makefile (MAN_XSL_POSTPROCESS): Replace 'an-trap' with
'an-input-trap'.
doc: Add missing line breaks before .PP.
Reported by Erik Auerswald <auerswal@unix-ag.uni-kl.de> in
<https://sourceforge.net/p/clisp/bugs/748/>
<https://bugs.launchpad.net/ubuntu/+source/clisp/+bug/2022970>
<https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1041788>
* doc/Makefile (MAN_XSL_POSTPROCESS): New variable.
(clisp.1, clisp-link.1): Use it for post-processing.
doc: Comments about quality checking.
* Makefile.devel (view-man): Use -Tutf8 nowadays.
* doc/Makefile: Add comments.
syscalls tests: Don't assume that errno values are small. For Hurd/i386.
* modules/syscalls/test.tst: Start checking the errno values at the
minimum valid errno, not at 0.
Fix memory mapping on Hurd from 2021 or newer.
Reported by Flavio Cruz in
<https://gitlab.com/gnu-clisp/clisp/-/merge_requests/6>.
* lispbibl.d (MAPPABLE_ADDRESS_RANGE_START): Change for Hurd/i386.
Revisit list of predefined browsers.
* clhs.lisp (*browsers*): Add :falkon, :falkon-window, :falkon-tab,
:tor, :gnome, :sensible-browser. Change :chromium. Remove :mmm, :mosaic.
build: Build genclx without gnulib.
Reported by Peter Van Eynde in
<https://gitlab.com/gnu-clisp/clisp/-/issues/53>.
* modules/clx/new-clx/Makefile.in (BUILD_CC, BUILD_CPPFLAGS,
BUILD_CFLAGS, BUILD_LDFLAGS): New variables.
(clx.d): Use them to compile genclx.c.
berkeley-db: Fix configure test.
* modules/berkeley-db/configure.in: Avoid using uninitialized variables
in test programs, especially with -Werror.
* modules/berkeley-db/configure: Regenerated.
berkeley-db: Fix BDB:TXN-RECOVER on 64-bit platforms.
Reported by Jerry James in
<https://gitlab.com/gnu-clisp/clisp/-/merge_requests/9>.
* modules/berkeley-db/bdb.c (BDB:TXN-RECOVER): Change type of local
variables.
berkeley-db: Fix configure test.
Reported by Florian Weimer in
<https://gitlab.com/gnu-clisp/clisp/-/merge_requests/8>.
* modules/berkeley-db/configure.in: Fix arguments to db.stat.
* modules/berkeley-db/configure: Regenerated.
Update the GPL text.
* GNU-GPL: Update from <https://ftp.gnu.org/gnu/Licenses/gpl-2.0.txt>.
Add user configuration for Haiku, part 2.
* clhs.lisp (*browsers): Add :webpositive.
* cfghaiku.lisp (edit-file): Start the Haiku UI editor in the background.
(*browser*): Set to a keyword, not a string.
Bump version number.
* version.sh: Bump version number to 2.49.95+.
* version.h, src/configure: Regenerated.
build: Build the clisp driver program without gnulib, part 2.
* makemake.in (install-bin): When building $(bindir)/clisp, use only the
user-provided options and -DLISPLIBDIR, -DLOCALEDIR.
Add user configuration for Haiku.
* cfghaiku.lisp: New file, based on cfgunix.lisp, with small changes by
Alexandru Popa <alpopa@gmail.com>.
* makemake.in (CONFIG): Use it on Haiku.
Enable most optimizations on Haiku/x86_64.
* lispbibl.d (MAPPABLE_ADDRESS_RANGE_START, MAPPABLE_ADDRESS_RANGE_END,
SINGLEMAP_*): Define for Haiku/x86_64.
(TRIVIALMAP_MEMORY): Don't disable it by default on Haiku/x86_64.
(GENERATIONAL_GC): Don't enable it by default on Haiku.
* Makefile.devel (multibuild-haiku-64): Enable all build variants that
work.
* makemake.in (Z_XCFLAGS): For Haiku/x86_64, enable all optimizations
except ASM.
Improve port to Haiku/x86_64.
* stream.d (clear_tty_input, clear_tty_output): Ignore error code -1 on
Haiku.
* time.d (SYS::%SLEEP): On Haiku, use a smaller first argument to
Avoid a hang during configuration on Haiku.
* m4/mmap.m4 (CL_MMAP): Don't run the MAP_FIXED test on Haiku.
Enable most optimizations on Haiku/i386.
* Makefile.devel (multibuild-haiku-32): Enable all build variants that
work.
* makemake.in (Z_XCFLAGS): For Haiku/i386, enable all optimizations
except ASM.
Improve port to Haiku/i386.
* lispbibl.d: Update comments.
* modules/syscalls/posix.lisp (*services-file*): Set differently on
Haiku.
* modules/regexp/test.tst: Update expected test result on Haiku.
* modules/rawsock/rawsock.c (IFF): Change default to ~0L. This fixes a
compilation error on Haiku in debug-gcsafety mode.
Update to the newest gnulib. This fixes the DEBUG_GCSAFETY builds.
Ran "make -f Makefile.devel build-aux-update gnulib-imported \
&& make -f Makefile.devel build-prerequisites".
* build-aux/config.*: Update.
* gllib/*: Update from gnulib.
* glm4/*: Likewise.
* aclocal.m4, src/configure, src/config.h.in: Regenerated.
* modules/*/configure, modules/*/config.h.in: Regenerated.
build: Build the clisp driver program without gnulib.
* makemake.in (clisp${TEXE}): Use only the user-provided options and
- DENABLE_RELOCATABLE.
* _clisp.c: Don't include config.h.
build: Fix host-system / target-system confusion.
* _clisp.c: Include <fcntl.h>, needed by execname.c.
* execname.c: Don't use macro names WIN32_NATIVE, UNIX, UNIX_CYGWIN,
my_open_mask that are not present on the target system.
build: Build the utils/*.c programs without gnulib.
* makemake.in (UTILCOMPILE): Use only the user-provided options.
(${util}${HEXE}): Remove -I. option.
* utils/ccmp2c.c: Don't include <config.h>.
* utils/ccpaux.c: Likewise.
* utils/comment5.c: Likewise.
* utils/deema.c: Likewise.
* utils/gctrigger.c: Likewise.
* utils/txt2c.c: Likewise.
* utils/varbrace.c: Likewise.
build: Rename CLFLAGS to LDFLAGS, for consistency with Autoconf.
* makemake.in: Use Z_LDFLAGS instead of CLFLAGS.
* built.d (built_flags): Update.
build: Separate the user-provided CFLAGS from our added CFLAGS.
* makemake.in: New variables A_CFLAGS, Z_CFLAGS, A_XCFLAGS, Z_XCFLAGS.
build: Separate the user-provided CPPFLAGS from our added CPPFLAGS.
* makemake.in: New variables A_CPPFLAGS, Z_CPPFLAGS, A_XCPPFLAGS,
Z_XCPPFLAGS.
Align clisp module system better with GNU standards.
* doc/impext.xml: Mention LDFLAGS instead of CLFLAGS.
* makemake.in: In makevars and when invoking a 'clisp-module' rule, set
LDFLAGS instead of CLFLAGS. Rename MODULE_CLFLAGS_VAR to
MODULE_LDFLAGS_VAR.
* clisp-link.in: Use LDFLAGS instead of CLFLAGS.
* modules/queens/Makefile: Set LDFLAGS instead of CLFLAGS.
* modules/matlab/link.sh: Set LDFLAGS instead of CLFLAGS.
Replace FSF snail-mail addresses with URLs.
* spvw.d (print_license): Update GPL license notice.
build: Modernize 'update-gnulib' target.
* Makefile.devel (GNULIB_GIT): Use secured URL.
(GNULIB_CVS_ROOT, GNULIB_CVS_REPOSITORY): Remove variables.
(update-gnulib): Don't use cvs any more.
Fix DEPENDENCIES.
* DEPENDENCIES: Remove mention of unsupported option
- -with-ncurses-prefix.
- Port patches
* clisp-2.49-configure.dif
* clisp-2.49-personality.patch
* clisp-db6.diff
* clisp-gcc14.patch
* clisp-link.dif
* Thu Mar 20 2025 Andreas Stieger <andreas.stieger@gmx.de>
- disable pcre module (boo#1201805)
* Mon Feb 17 2025 Dr. Werner Fink <werner@suse.de>
- Shorten path of screen configuration to shorten socket path as
otherwise bind(2) used by screen(1) fails with invalid argument
due shorten path of 108 chracters of sun_path used in glibc
(note that kernel use UNIX_PATH_MAX)
* Mon Nov 25 2024 Dr. Werner Fink <werner@suse.de>
- Make it build with latest pari version
* Tue Sep 03 2024 Dr. Werner Fink <werner@suse.de>
- Choose lto settings depending on architecture as otherwise
we might see crashing clisp
* Mon Sep 02 2024 Dr. Werner Fink <werner@suse.de>
- Refresh clisp.spec and make it build on s390x as well by avoiding
Position Independent Executables at compile and link time.
* Thu Aug 29 2024 Dr. Werner Fink <werner@suse.de>
- Update to latest commit f5acef38 of devel version 2.49.93+ from 20240704
- Add modules libsvm and pari as well as feature ffcall
- Add source clhs.el as upstream has skipped this
- Drop patch
* clisp-2.49-rpath.dif
* clisp-2.49.92.tar.bz2
- Port patches
* clisp-2.49-configure.dif
* clisp-2.49-gctoken.dif
* clisp-gcc14.patch
* clisp-link.dif
* Wed Aug 28 2024 Dr. Werner Fink <werner@suse.de>
- Add patch clisp-gcc14.patch to make it build again
* Mon Feb 26 2024 Dominique Leuenberger <dimstar@opensuse.org>
- Use %patch -P N instead of deprecated %patchN.
* Fri Oct 21 2022 Martin Liška <mliska@suse.cz>
- Depends on gzip as CLISP memory image data are compressed
with gzip (boo#1132118).
/usr/bin/clisp /usr/bin/clisp-link /usr/lib/clisp-2.49.95+ /usr/lib/clisp-2.49.95+/asdf /usr/lib/clisp-2.49.95+/asdf/Makefile /usr/lib/clisp-2.49.95+/asdf/asdf.fas /usr/lib/clisp-2.49.95+/asdf/asdf.lisp /usr/lib/clisp-2.49.95+/asdf/link.sh /usr/lib/clisp-2.49.95+/base /usr/lib/clisp-2.49.95+/base/calls.o /usr/lib/clisp-2.49.95+/base/gettext.o /usr/lib/clisp-2.49.95+/base/libgnu.a /usr/lib/clisp-2.49.95+/base/libnoreadline.a /usr/lib/clisp-2.49.95+/base/lisp.a /usr/lib/clisp-2.49.95+/base/lisp.run /usr/lib/clisp-2.49.95+/base/lispinit.mem /usr/lib/clisp-2.49.95+/base/makevars /usr/lib/clisp-2.49.95+/base/modules.h /usr/lib/clisp-2.49.95+/base/modules.o /usr/lib/clisp-2.49.95+/base/readline.o /usr/lib/clisp-2.49.95+/base/regexi.o /usr/lib/clisp-2.49.95+/berkeley-db /usr/lib/clisp-2.49.95+/berkeley-db/Makefile /usr/lib/clisp-2.49.95+/berkeley-db/bdb.o /usr/lib/clisp-2.49.95+/berkeley-db/dbi.fas /usr/lib/clisp-2.49.95+/berkeley-db/dbi.lisp /usr/lib/clisp-2.49.95+/berkeley-db/link.sh /usr/lib/clisp-2.49.95+/berkeley-db/preload.lisp /usr/lib/clisp-2.49.95+/bindings /usr/lib/clisp-2.49.95+/bindings/glibc /usr/lib/clisp-2.49.95+/bindings/glibc/Makefile /usr/lib/clisp-2.49.95+/bindings/glibc/link.sh /usr/lib/clisp-2.49.95+/bindings/glibc/linux.fas /usr/lib/clisp-2.49.95+/bindings/glibc/linux.lisp /usr/lib/clisp-2.49.95+/bindings/glibc/linux.o /usr/lib/clisp-2.49.95+/bindings/glibc/wrap.fas /usr/lib/clisp-2.49.95+/bindings/glibc/wrap.lisp /usr/lib/clisp-2.49.95+/build-aux /usr/lib/clisp-2.49.95+/build-aux/config.rpath /usr/lib/clisp-2.49.95+/build-aux/depcomp /usr/lib/clisp-2.49.95+/clx /usr/lib/clisp-2.49.95+/clx/new-clx /usr/lib/clisp-2.49.95+/clx/new-clx/Makefile /usr/lib/clisp-2.49.95+/clx/new-clx/README /usr/lib/clisp-2.49.95+/clx/new-clx/clx-preload.lisp /usr/lib/clisp-2.49.95+/clx/new-clx/clx.fas /usr/lib/clisp-2.49.95+/clx/new-clx/clx.lisp /usr/lib/clisp-2.49.95+/clx/new-clx/clx.o /usr/lib/clisp-2.49.95+/clx/new-clx/demos /usr/lib/clisp-2.49.95+/clx/new-clx/demos/README /usr/lib/clisp-2.49.95+/clx/new-clx/demos/bball.lisp /usr/lib/clisp-2.49.95+/clx/new-clx/demos/bwindow.lisp /usr/lib/clisp-2.49.95+/clx/new-clx/demos/clclock.lisp /usr/lib/clisp-2.49.95+/clx/new-clx/demos/clx-demos.lisp /usr/lib/clisp-2.49.95+/clx/new-clx/demos/greynetic.lisp /usr/lib/clisp-2.49.95+/clx/new-clx/demos/hanoi.lisp /usr/lib/clisp-2.49.95+/clx/new-clx/demos/koch.lisp /usr/lib/clisp-2.49.95+/clx/new-clx/demos/petal.lisp /usr/lib/clisp-2.49.95+/clx/new-clx/demos/plaid.lisp /usr/lib/clisp-2.49.95+/clx/new-clx/demos/qix.lisp /usr/lib/clisp-2.49.95+/clx/new-clx/demos/recurrence.lisp /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.1 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.10 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.11 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.12 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.13 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.14 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.15 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.16 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.17 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.18 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.19 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.2 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.20 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.21 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.22 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.23 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.24 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.25 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.26 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.27 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.28 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.29 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.3 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.30 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.31 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.32 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.33 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.34 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.35 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.36 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.37 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.38 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.39 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.4 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.40 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.41 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.42 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.43 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.44 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.45 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.46 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.47 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.48 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.49 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.5 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.50 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.6 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.7 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.8 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/screens/screen.9 /usr/lib/clisp-2.49.95+/clx/new-clx/demos/sokoban.lisp /usr/lib/clisp-2.49.95+/clx/new-clx/demos/xpms /usr/lib/clisp-2.49.95+/clx/new-clx/demos/xpms/centerwall.xpm /usr/lib/clisp-2.49.95+/clx/new-clx/demos/xpms/east_twall.xpm /usr/lib/clisp-2.49.95+/clx/new-clx/demos/xpms/eastwall.xpm /usr/lib/clisp-2.49.95+/clx/new-clx/demos/xpms/floor.xpm /usr/lib/clisp-2.49.95+/clx/new-clx/demos/xpms/goal.xpm /usr/lib/clisp-2.49.95+/clx/new-clx/demos/xpms/horizwall.xpm /usr/lib/clisp-2.49.95+/clx/new-clx/demos/xpms/llcorner.xpm /usr/lib/clisp-2.49.95+/clx/new-clx/demos/xpms/lonewall.xpm /usr/lib/clisp-2.49.95+/clx/new-clx/demos/xpms/lrcorner.xpm /usr/lib/clisp-2.49.95+/clx/new-clx/demos/xpms/man.xpm /usr/lib/clisp-2.49.95+/clx/new-clx/demos/xpms/man_down.xpm /usr/lib/clisp-2.49.95+/clx/new-clx/demos/xpms/man_left.xpm /usr/lib/clisp-2.49.95+/clx/new-clx/demos/xpms/man_right.xpm /usr/lib/clisp-2.49.95+/clx/new-clx/demos/xpms/man_up.xpm /usr/lib/clisp-2.49.95+/clx/new-clx/demos/xpms/north_twall.xpm /usr/lib/clisp-2.49.95+/clx/new-clx/demos/xpms/northwall.xpm /usr/lib/clisp-2.49.95+/clx/new-clx/demos/xpms/object.xpm /usr/lib/clisp-2.49.95+/clx/new-clx/demos/xpms/save_man_down.xpm /usr/lib/clisp-2.49.95+/clx/new-clx/demos/xpms/save_man_left.xpm /usr/lib/clisp-2.49.95+/clx/new-clx/demos/xpms/save_man_right.xpm /usr/lib/clisp-2.49.95+/clx/new-clx/demos/xpms/save_man_up.xpm /usr/lib/clisp-2.49.95+/clx/new-clx/demos/xpms/saveman.xpm /usr/lib/clisp-2.49.95+/clx/new-clx/demos/xpms/south_twall.xpm /usr/lib/clisp-2.49.95+/clx/new-clx/demos/xpms/southwall.xpm /usr/lib/clisp-2.49.95+/clx/new-clx/demos/xpms/treasure.xpm /usr/lib/clisp-2.49.95+/clx/new-clx/demos/xpms/ulcorner.xpm /usr/lib/clisp-2.49.95+/clx/new-clx/demos/xpms/urcorner.xpm /usr/lib/clisp-2.49.95+/clx/new-clx/demos/xpms/vertiwall.xpm /usr/lib/clisp-2.49.95+/clx/new-clx/demos/xpms/wall.xpm /usr/lib/clisp-2.49.95+/clx/new-clx/demos/xpms/west_twall.xpm /usr/lib/clisp-2.49.95+/clx/new-clx/demos/xpms/westwall.xpm /usr/lib/clisp-2.49.95+/clx/new-clx/image.fas /usr/lib/clisp-2.49.95+/clx/new-clx/image.lisp /usr/lib/clisp-2.49.95+/clx/new-clx/link.sh /usr/lib/clisp-2.49.95+/clx/new-clx/resource.fas /usr/lib/clisp-2.49.95+/clx/new-clx/resource.lisp /usr/lib/clisp-2.49.95+/data /usr/lib/clisp-2.49.95+/data/Symbol-Table.text /usr/lib/clisp-2.49.95+/data/UnicodeDataFull.txt /usr/lib/clisp-2.49.95+/dbus /usr/lib/clisp-2.49.95+/dbus/Makefile /usr/lib/clisp-2.49.95+/dbus/dbus.fas /usr/lib/clisp-2.49.95+/dbus/dbus.lisp /usr/lib/clisp-2.49.95+/dbus/dbus.o /usr/lib/clisp-2.49.95+/dbus/link.sh /usr/lib/clisp-2.49.95+/dynmod /usr/lib/clisp-2.49.95+/dynmod/asdf.lisp /usr/lib/clisp-2.49.95+/dynmod/bdb.lisp /usr/lib/clisp-2.49.95+/dynmod/clx.lisp /usr/lib/clisp-2.49.95+/dynmod/dbus.lisp /usr/lib/clisp-2.49.95+/dynmod/editor.lisp /usr/lib/clisp-2.49.95+/dynmod/fastcgi.lisp /usr/lib/clisp-2.49.95+/dynmod/gdbm.lisp /usr/lib/clisp-2.49.95+/dynmod/gtk.lisp /usr/lib/clisp-2.49.95+/dynmod/lib-bdb.so /usr/lib/clisp-2.49.95+/dynmod/lib-clx.so /usr/lib/clisp-2.49.95+/dynmod/lib-dbus.so /usr/lib/clisp-2.49.95+/dynmod/lib-fastcgi.so /usr/lib/clisp-2.49.95+/dynmod/lib-gdbm.so /usr/lib/clisp-2.49.95+/dynmod/lib-gtk.so /usr/lib/clisp-2.49.95+/dynmod/lib-libsvm.so /usr/lib/clisp-2.49.95+/dynmod/lib-linux.so /usr/lib/clisp-2.49.95+/dynmod/lib-pari.so /usr/lib/clisp-2.49.95+/dynmod/lib-postgresql.so /usr/lib/clisp-2.49.95+/dynmod/lib-queens.so /usr/lib/clisp-2.49.95+/dynmod/lib-rawsock.so /usr/lib/clisp-2.49.95+/dynmod/lib-zlib.so /usr/lib/clisp-2.49.95+/dynmod/libsvm.lisp /usr/lib/clisp-2.49.95+/dynmod/linux.lisp /usr/lib/clisp-2.49.95+/dynmod/pari.lisp /usr/lib/clisp-2.49.95+/dynmod/postgresql.lisp /usr/lib/clisp-2.49.95+/dynmod/queens.lisp /usr/lib/clisp-2.49.95+/dynmod/rawsock.lisp /usr/lib/clisp-2.49.95+/dynmod/zlib.lisp /usr/lib/clisp-2.49.95+/editor /usr/lib/clisp-2.49.95+/editor/Makefile /usr/lib/clisp-2.49.95+/editor/editor.fas /usr/lib/clisp-2.49.95+/editor/editor.lisp /usr/lib/clisp-2.49.95+/editor/link.sh /usr/lib/clisp-2.49.95+/fastcgi /usr/lib/clisp-2.49.95+/fastcgi/Makefile /usr/lib/clisp-2.49.95+/fastcgi/README /usr/lib/clisp-2.49.95+/fastcgi/fastcgi.fas /usr/lib/clisp-2.49.95+/fastcgi/fastcgi.lisp /usr/lib/clisp-2.49.95+/fastcgi/fastcgi.o /usr/lib/clisp-2.49.95+/fastcgi/fastcgi_wrappers.o /usr/lib/clisp-2.49.95+/fastcgi/link.sh /usr/lib/clisp-2.49.95+/full /usr/lib/clisp-2.49.95+/full/bdb.o /usr/lib/clisp-2.49.95+/full/callqueens.o /usr/lib/clisp-2.49.95+/full/calls.o /usr/lib/clisp-2.49.95+/full/clx.o /usr/lib/clisp-2.49.95+/full/cpari.o /usr/lib/clisp-2.49.95+/full/dbus.o /usr/lib/clisp-2.49.95+/full/fastcgi.o /usr/lib/clisp-2.49.95+/full/fastcgi_wrappers.o /usr/lib/clisp-2.49.95+/full/gdbm.o /usr/lib/clisp-2.49.95+/full/gettext.o /usr/lib/clisp-2.49.95+/full/gtk.o /usr/lib/clisp-2.49.95+/full/libgnu.a /usr/lib/clisp-2.49.95+/full/libnoreadline.a /usr/lib/clisp-2.49.95+/full/libsvm.o /usr/lib/clisp-2.49.95+/full/linux.o /usr/lib/clisp-2.49.95+/full/lisp.a /usr/lib/clisp-2.49.95+/full/lisp.run /usr/lib/clisp-2.49.95+/full/lispinit.mem /usr/lib/clisp-2.49.95+/full/makevars /usr/lib/clisp-2.49.95+/full/modules.h /usr/lib/clisp-2.49.95+/full/modules.o /usr/lib/clisp-2.49.95+/full/pari.o /usr/lib/clisp-2.49.95+/full/postgresql.o /usr/lib/clisp-2.49.95+/full/queens.o /usr/lib/clisp-2.49.95+/full/rawsock.o /usr/lib/clisp-2.49.95+/full/readline.o /usr/lib/clisp-2.49.95+/full/regexi.o /usr/lib/clisp-2.49.95+/full/zlib.o /usr/lib/clisp-2.49.95+/gdbm /usr/lib/clisp-2.49.95+/gdbm/Makefile /usr/lib/clisp-2.49.95+/gdbm/gdbm.fas /usr/lib/clisp-2.49.95+/gdbm/gdbm.lisp /usr/lib/clisp-2.49.95+/gdbm/gdbm.o /usr/lib/clisp-2.49.95+/gdbm/link.sh /usr/lib/clisp-2.49.95+/gdbm/preload.lisp /usr/lib/clisp-2.49.95+/gtk2 /usr/lib/clisp-2.49.95+/gtk2/Makefile /usr/lib/clisp-2.49.95+/gtk2/gtk-server.cfg /usr/lib/clisp-2.49.95+/gtk2/gtk.fas /usr/lib/clisp-2.49.95+/gtk2/gtk.lisp /usr/lib/clisp-2.49.95+/gtk2/gtk.o /usr/lib/clisp-2.49.95+/gtk2/link.sh /usr/lib/clisp-2.49.95+/gtk2/preload.lisp /usr/lib/clisp-2.49.95+/gtk2/ui.glade /usr/lib/clisp-2.49.95+/libsvm /usr/lib/clisp-2.49.95+/libsvm/Makefile /usr/lib/clisp-2.49.95+/libsvm/README /usr/lib/clisp-2.49.95+/libsvm/libsvm.fas /usr/lib/clisp-2.49.95+/libsvm/libsvm.lisp /usr/lib/clisp-2.49.95+/libsvm/libsvm.o /usr/lib/clisp-2.49.95+/libsvm/link.sh /usr/lib/clisp-2.49.95+/libsvm/preload.lisp /usr/lib/clisp-2.49.95+/linkkit /usr/lib/clisp-2.49.95+/linkkit/clisp.h /usr/lib/clisp-2.49.95+/linkkit/modprep.lisp /usr/lib/clisp-2.49.95+/linkkit/modules.c /usr/lib/clisp-2.49.95+/pari /usr/lib/clisp-2.49.95+/pari/Makefile /usr/lib/clisp-2.49.95+/pari/README /usr/lib/clisp-2.49.95+/pari/cpari.o /usr/lib/clisp-2.49.95+/pari/desc2lisp.lisp /usr/lib/clisp-2.49.95+/pari/link.sh /usr/lib/clisp-2.49.95+/pari/pari.fas /usr/lib/clisp-2.49.95+/pari/pari.lisp /usr/lib/clisp-2.49.95+/pari/pari.o /usr/lib/clisp-2.49.95+/pari/preload.lisp /usr/lib/clisp-2.49.95+/postgresql /usr/lib/clisp-2.49.95+/postgresql/Makefile /usr/lib/clisp-2.49.95+/postgresql/README /usr/lib/clisp-2.49.95+/postgresql/link.sh /usr/lib/clisp-2.49.95+/postgresql/postgresql.fas /usr/lib/clisp-2.49.95+/postgresql/postgresql.lisp /usr/lib/clisp-2.49.95+/postgresql/postgresql.o /usr/lib/clisp-2.49.95+/postgresql/sql.fas /usr/lib/clisp-2.49.95+/postgresql/sql.lisp /usr/lib/clisp-2.49.95+/queens /usr/lib/clisp-2.49.95+/queens/Makefile /usr/lib/clisp-2.49.95+/queens/callqueens.o /usr/lib/clisp-2.49.95+/queens/link.sh /usr/lib/clisp-2.49.95+/queens/queens.o /usr/lib/clisp-2.49.95+/rawsock /usr/lib/clisp-2.49.95+/rawsock/Makefile /usr/lib/clisp-2.49.95+/rawsock/demos /usr/lib/clisp-2.49.95+/rawsock/demos/README /usr/lib/clisp-2.49.95+/rawsock/demos/sniffer.lisp /usr/lib/clisp-2.49.95+/rawsock/link.sh /usr/lib/clisp-2.49.95+/rawsock/preload.lisp /usr/lib/clisp-2.49.95+/rawsock/rawsock.o /usr/lib/clisp-2.49.95+/rawsock/sock.fas /usr/lib/clisp-2.49.95+/rawsock/sock.lisp /usr/lib/clisp-2.49.95+/zlib /usr/lib/clisp-2.49.95+/zlib/Makefile /usr/lib/clisp-2.49.95+/zlib/link.sh /usr/lib/clisp-2.49.95+/zlib/zlib.fas /usr/lib/clisp-2.49.95+/zlib/zlib.lisp /usr/lib/clisp-2.49.95+/zlib/zlib.o /usr/share/aclocal/clisp.m4 /usr/share/emacs/site-lisp /usr/share/emacs/site-lisp/clhs.el /usr/share/emacs/site-lisp/clisp-coding.el /usr/share/emacs/site-lisp/clisp-ffi.el /usr/share/emacs/site-lisp/clisp-indent.el /usr/share/emacs/site-lisp/clisp-indent.lisp /usr/share/locale/da/LC_MESSAGES/clisp.mo /usr/share/locale/da/LC_MESSAGES/clisplow.mo /usr/share/locale/de/LC_MESSAGES/clisp.mo /usr/share/locale/de/LC_MESSAGES/clisplow.mo /usr/share/locale/en/LC_MESSAGES/clisp.mo /usr/share/locale/en/LC_MESSAGES/clisplow.mo /usr/share/locale/es/LC_MESSAGES/clisp.mo /usr/share/locale/es/LC_MESSAGES/clisplow.mo /usr/share/locale/fr/LC_MESSAGES/clisp.mo /usr/share/locale/fr/LC_MESSAGES/clisplow.mo /usr/share/locale/nl/LC_MESSAGES/clisp.mo /usr/share/locale/nl/LC_MESSAGES/clisplow.mo /usr/share/locale/ru/LC_MESSAGES/clisp.mo /usr/share/locale/ru/LC_MESSAGES/clisplow.mo /usr/share/locale/sv/LC_MESSAGES/clisp.mo /usr/share/locale/sv/LC_MESSAGES/clisplow.mo /usr/share/man/man1/clisp-link.1.gz /usr/share/man/man1/clisp.1.gz /usr/share/vim/site/after/syntax/lisp.vim
Generated by rpm2html 1.8.1
Fabrice Bellet, Fri Oct 24 23:22:36 2025