Index: head/lang/ecl/Makefile =================================================================== --- head/lang/ecl/Makefile (revision 541225) +++ head/lang/ecl/Makefile (revision 541226) @@ -1,80 +1,80 @@ # Created by: Julian Stecklina # $FreeBSD$ PORTNAME= ecl -PORTVERSION= 16.1.3 -PORTREVISION= 2 +PORTVERSION= 20.4.24 CATEGORIES= lang lisp MASTER_SITES= https://common-lisp.net/project/ecl/static/files/release/ MAINTAINER= olgeni@FreeBSD.org COMMENT= ANSI Common Lisp implementation LICENSE= LGPL20 BROKEN_aarch64= fails to compile: error: unknown type name AO_TS_t BROKEN_mips= fails to build: qemu: uncaught target signal 11 (Segmentation fault) - core dumped BROKEN_mips64= fails to build: qemu: uncaught target signal 11 (Segmentation fault) - core dumped BUILD_DEPENDS= ${LOCALBASE}/lib/libatomic_ops.a:devel/libatomic_ops LIB_DEPENDS= libgmp.so:math/gmp \ libgc.so:devel/boehm-gc MAKE_JOBS_UNSAFE= yes -USES= autoreconf gmake localbase perl5 tar:tgz +USES= autoreconf gmake localbase perl5 tar:tgz makeinfo USE_PERL5= build GNU_CONFIGURE= yes AUTORECONF_WRKSRC= ${WRKSRC}/src CONFIGURE_ARGS= --with-system-gmp \ --with-gmp-prefix=${LOCALBASE} \ --enable-boehm=system \ --enable-libatomic=system USE_LDCONFIG= yes +INFO= ecl OPTIONS_DEFINE= ASDF DFFI SAGE SOCKETS THREADS X11 OPTIONS_DEFAULT=ASDF DFFI SAGE SOCKETS THREADS ASDF_DESC= Enable ASDF building facility SAGE_DESC= Build with patches for sage SOCKETS_DESC= Enable socket interface DFFI_DESC= Dynamic foreign-function support OPTIONS_SUB= yes PLIST_SUB= VERSION="${PORTVERSION}" ASDF_CONFIGURE_ON= --with-asdf=yes ASDF_CONFIGURE_OFF= --with-asdf=no X11_USES= xorg X11_USE= XORG=x11 X11_CONFIGURE_ON= --with-x=yes X11_CONFIGURE_OFF= --with-x=no SAGE_EXTRA_PATCHES= ${PATCHDIR}/extra-patch-src_aclocal.m4 \ ${PATCHDIR}/extra-patch-src_c_file.d \ ${PATCHDIR}/extra-patch-src_compile.lsp.in \ ${PATCHDIR}/extra-patch-src_configure.ac \ ${PATCHDIR}/extra-patch-src_lsp_format.lsp \ ${PATCHDIR}/extra-patch-src_Makefile.in SOCKETS_CONFIGURE_ON= --with-tcp=yes SOCKETS_CONFIGURE_OFF= --with-tcp=no DFFI_LIB_DEPENDS= libffi.so:devel/libffi DFFI_CONFIGURE_ON= --with-dffi=system DFFI_CONFIGURE_OFF= --with-dffi=no THREADS_CONFIGURE_ON= --enable-threads=yes THREADS_LDFLAGS= -lpthread -lgc-threaded THREADS_LIB_DEPENDS= libgc-threaded.so:devel/boehm-gc-threaded THREADS_CONFIGURE_OFF= --enable-threads=no post-patch-THREADS-on: @${REINPLACE_CMD} -e 's|-lgc|-lgc-threaded|' ${WRKSRC}/src/configure post-install: ${RMDIR} ${STAGEDIR}${PREFIX}/include/ecl/gc/private ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libecl.so.${PORTVERSION} ${LN} -sf ecl-${PORTVERSION} ${STAGEDIR}${PREFIX}/lib/ecl .include Index: head/lang/ecl/distinfo =================================================================== --- head/lang/ecl/distinfo (revision 541225) +++ head/lang/ecl/distinfo (revision 541226) @@ -1,3 +1,3 @@ -TIMESTAMP = 1565942436 -SHA256 (ecl-16.1.3.tgz) = 76a585c616e8fa83a6b7209325a309da5bc0ca68e0658f396f49955638111254 -SIZE (ecl-16.1.3.tgz) = 7459212 +TIMESTAMP = 1592221665 +SHA256 (ecl-20.4.24.tgz) = 670838edf258a936b522fdb620da336de7e575aa0d27e34841727252726d0f07 +SIZE (ecl-20.4.24.tgz) = 7815444 Index: head/lang/ecl/files/extra-patch-src_lsp_format.lsp =================================================================== --- head/lang/ecl/files/extra-patch-src_lsp_format.lsp (revision 541225) +++ head/lang/ecl/files/extra-patch-src_lsp_format.lsp (nonexistent) @@ -1,78 +0,0 @@ ---- src/lsp/format.lsp.orig 2016-12-19 10:25:00 UTC -+++ src/lsp/format.lsp -@@ -308,11 +308,14 @@ - :start (format-directive-start struct) - :end (format-directive-end struct)))) - -+;; Patch borrowed from SageMath -+(defconstant +format-directive-limit+ (1+ (char-code #\~))) -+ - #+formatter - (defparameter *format-directive-expanders* -- (make-array char-code-limit :initial-element nil)) -+ (make-array +format-directive-limit+ :initial-element nil)) - (defparameter *format-directive-interpreters* -- (make-array char-code-limit :initial-element nil)) -+ (make-array +format-directive-limit+ :initial-element nil)) - - (defparameter *default-format-error-control-string* nil) - (defparameter *default-format-error-offset* nil) -@@ -545,24 +548,24 @@ - (write-string directive stream) - (interpret-directive-list stream (cdr directives) orig-args args)) - (#-ecl format-directive #+ecl vector -+ (multiple-value-bind -+ (new-directives new-args) -+ (let* ((code (char-code (format-directive-character directive))) -+ (function -+ (and (< code +format-directive-limit+) -+ (svref *format-directive-interpreters* code))) -+ (*default-format-error-offset* -+ (1- (format-directive-end directive)))) -+ (unless function -+ (error 'format-error -+ :complaint "Unknown format directive.")) - (multiple-value-bind - (new-directives new-args) -- (let ((function -- (svref *format-directive-interpreters* -- (char-code (format-directive-character -- directive)))) -- (*default-format-error-offset* -- (1- (format-directive-end directive)))) -- (unless function -- (error 'format-error -- :complaint "Unknown format directive.")) -- (multiple-value-bind -- (new-directives new-args) -- (funcall function stream directive -- (cdr directives) orig-args args) -- (values new-directives new-args))) -- (interpret-directive-list stream new-directives -- orig-args new-args))))) -+ (funcall function stream directive -+ (cdr directives) orig-args args) -+ (values new-directives new-args))) -+ (interpret-directive-list stream new-directives -+ orig-args new-args))))) - args)) - - -@@ -634,11 +637,12 @@ - (values `(write-string ,directive stream) - more-directives)) - (format-directive -- (let ((expander -- (aref *format-directive-expanders* -- (char-code (format-directive-character directive)))) -- (*default-format-error-offset* -- (1- (format-directive-end directive)))) -+ (let* ((code (char-code (format-directive-character directive))) -+ (expander -+ (and (< code +format-directive-limit+) -+ (svref *format-directive-expanders* code))) -+ (*default-format-error-offset* -+ (1- (format-directive-end directive)))) - (if expander - (funcall expander directive more-directives) - (error 'format-error Property changes on: head/lang/ecl/files/extra-patch-src_lsp_format.lsp ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/lang/ecl/files/extra-patch-src_Makefile.in =================================================================== --- head/lang/ecl/files/extra-patch-src_Makefile.in (revision 541225) +++ head/lang/ecl/files/extra-patch-src_Makefile.in (revision 541226) @@ -1,21 +1,19 @@ -Patch from SageMath - ---- src/Makefile.in.orig 2016-12-19 10:25:00 UTC +--- src/Makefile.in.orig 2020-04-24 10:54:52 UTC +++ src/Makefile.in -@@ -304,10 +304,14 @@ install: +@@ -220,10 +220,14 @@ install: if test -s $$i ; then \ if echo $$i | grep dll; then \ $(INSTALL_LIBRARY) $$i $(DESTDIR)$(bindir); \ - fi; \ - $(INSTALL_LIBRARY) $$i $(DESTDIR)$(libdir); \ + else \ + $(INSTALL_LIBRARY) $$i $(DESTDIR)$(libdir); \ + fi \ fi \ done + if [ "x@IMPLIB_NAME@" != "x" -a -f "@IMPLIB_NAME@" ]; then \ + $(INSTALL_LIBRARY) @IMPLIB_NAME@ $(DESTDIR)$(libdir); \ + fi - if [ "x@SONAME3@" != "x" -a -f "@SONAME3@" ]; then \ + if [ "x@SONAME3@" != "x" -a -f "@SONAME3@" -a "@SONAME@" != "@SONAME3@" ]; then \ ( $(INSTALL_LIBRARY) @SONAME3@ $(DESTDIR)$(libdir) && \ cd $(DESTDIR)$(libdir) && $(RM) -f @SONAME2@ @SONAME1@ @SONAME@ && \ Index: head/lang/ecl/files/extra-patch-src_aclocal.m4 =================================================================== --- head/lang/ecl/files/extra-patch-src_aclocal.m4 (revision 541225) +++ head/lang/ecl/files/extra-patch-src_aclocal.m4 (revision 541226) @@ -1,64 +1,64 @@ ---- src/aclocal.m4.orig 2016-12-19 10:25:00 UTC +--- src/aclocal.m4.orig 2020-04-24 10:54:52 UTC +++ src/aclocal.m4 -@@ -231,6 +231,8 @@ AC_SUBST(LIBPREFIX)dnl Name components of a statically +@@ -246,6 +246,8 @@ AC_SUBST(LIBPREFIX)dnl Name components of a statically AC_SUBST(LIBEXT) AC_SUBST(SHAREDEXT)dnl Name components of a dynamically linked library AC_SUBST(SHAREDPREFIX) +AC_SUBST(IMPLIB_EXT)dnl Name components of a dynamically linked library import file - borrowed from SageMath +AC_SUBST(IMPLIB_PREFIX) AC_SUBST(OBJEXT)dnl These are set by autoconf AC_SUBST(EXEEXT) AC_SUBST(INSTALL_TARGET)dnl Which type of installation: flat directory or unix like. -@@ -240,6 +242,8 @@ ECL_GC_DIR=bdwgc +@@ -257,6 +259,8 @@ ECL_GC_DIR=bdwgc ECL_LDRPATH='' SHAREDEXT='so' SHAREDPREFIX='lib' +IMPLIB_EXT='' +IMPLIB_PREFIX='' LIBPREFIX='lib' LIBEXT='a' PICFLAG='-fPIC' -@@ -251,6 +255,8 @@ THREAD_OBJ="$THREAD_OBJ c/threads/process c/threads/qu +@@ -268,6 +272,8 @@ THREAD_OBJ="$THREAD_OBJ threads/process threads/queue clibs='-lm' SONAME='' SONAME_LDFLAGS='' +IMPLIB_NAME='' +IMPLIB_LDFLAGS='' case "${host_os}" in - linux-androideabi) + linux-android*) thehost='android' -@@ -366,10 +372,14 @@ case "${host_os}" in +@@ -385,10 +391,14 @@ case "${host_os}" in shared='yes' THREAD_CFLAGS='-D_THREAD_SAFE' THREAD_LIBS='-lpthread' - SHARED_LDFLAGS="-shared ${LDFLAGS}" - BUNDLE_LDFLAGS="-shared ${LDFLAGS}" - SHAREDPREFIX='' + SHARED_LDFLAGS="-shared -Wl,--enable-auto-image-base ${LDFLAGS}" + BUNDLE_LDFLAGS="-shared -Wl,--enable-auto-image-base ${LDFLAGS}" + SHAREDPREFIX='cyg' SHAREDEXT='dll' + IMPLIB_PREFIX='lib' + IMPLIB_EXT='dll.a' + IMPLIB_NAME="${IMPLIB_PREFIX}ecl.${IMPLIB_EXT}" + IMPLIB_LDFLAGS="-Wl,--out-implib,${IMPLIB_NAME}" PICFLAG='' if test "x$host_cpu" = "xx86_64" ; then # Our GMP library is too old and does not support -@@ -387,10 +397,14 @@ case "${host_os}" in +@@ -405,10 +415,14 @@ case "${host_os}" in enable_threads='yes' THREAD_CFLAGS='-D_THREAD_SAFE' THREAD_GC_FLAGS='--enable-threads=win32' -- SHARED_LDFLAGS='' -- BUNDLE_LDFLAGS='' -+ SHARED_LDFLAGS="-shared -Wl,--enable-auto-image-base ${LDFLAGS}" -+ BUNDLE_LDFLAGS="-shared -Wl,--enable-auto-image-base ${LDFLAGS}" +- SHARED_LDFLAGS="-Wl,--stack,${ECL_DEFAULT_C_STACK_SIZE}" +- BUNDLE_LDFLAGS="-Wl,--stack,${ECL_DEFAULT_C_STACK_SIZE}" ++ SHARED_LDFLAGS="-shared -Wl,--stack,${ECL_DEFAULT_C_STACK_SIZE} -Wl,--enable-auto-image-base ${LDFLAGS}" ++ BUNDLE_LDFLAGS="-shared -Wl,--stack,${ECL_DEFAULT_C_STACK_SIZE} -Wl,--enable-auto-image-base ${LDFLAGS}" SHAREDPREFIX='' SHAREDEXT='dll' + IMPLIB_PREFIX='lib' + IMPLIB_EXT='dll.a' + IMPLIB_NAME="${IMPLIB_PREFIX}ecl.${IMPLIB_EXT}" + IMPLIB_LDFLAGS="-Wl,--out-implib,${IMPLIB_NAME}" PICFLAG='' INSTALL_TARGET='flatinstall' TCPLIBS='-lws2_32' Index: head/lang/ecl/files/patch-75877dd.c =================================================================== --- head/lang/ecl/files/patch-75877dd.c (nonexistent) +++ head/lang/ecl/files/patch-75877dd.c (revision 541226) @@ -0,0 +1,47 @@ +From 75877dd8f0d534552284ba4380ba65baa74f028f Mon Sep 17 00:00:00 2001 +From: Marius Gerbershagen +Date: Sun, 28 Jun 2020 11:02:15 +0200 +Subject: [PATCH] fpe: fix ECL_WITH_LISP_FPE macro + +We can't use ecl_process_env_unsafe() == NULL to check if ECL has +booted because the return value of ecl_process_env_unsafe is +unpredictable before ECL has booted. The reason is that +ecl_process_env_unsafe calls pthread_getspecific with an uninitialized +key stored in cl_env_key. But another call to pthread_setspecific +might have already registered a key which happens to be the same as +the not yet initialized cl_env_key, yielding a non-NULL value. +--- + src/h/impl/math_fenv.h | 17 ++++++++--------- + 1 file changed, 8 insertions(+), 9 deletions(-) + +diff --git a/src/h/impl/math_fenv.h b/src/h/impl/math_fenv.h +index 0a93c8e0a..9630f4c6c 100644 +--- src/h/impl/math_fenv.h ++++ src/h/impl/math_fenv.h +@@ -72,15 +72,14 @@ + + #if defined(HAVE_FENV_H) && !defined(ECL_AVOID_FPE_H) + # if defined(HAVE_FEENABLEEXCEPT) +-# define ECL_WITH_LISP_FPE_BEGIN do { \ +- fenv_t __fenv; \ +- fegetenv(&__fenv); \ +- cl_env_ptr __the_env = ecl_process_env_unsafe(); \ +- if (__the_env) { \ +- int bits = __the_env->trap_fpe_bits; \ +- fedisableexcept(FE_ALL_EXCEPT & ~bits); \ +- feenableexcept(FE_ALL_EXCEPT & bits); \ +- } \ ++# define ECL_WITH_LISP_FPE_BEGIN do { \ ++ fenv_t __fenv; \ ++ fegetenv(&__fenv); \ ++ if (ecl_get_option(ECL_OPT_BOOTED) > 0) { \ ++ int bits = ecl_process_env()->trap_fpe_bits; \ ++ fedisableexcept(FE_ALL_EXCEPT & ~bits); \ ++ feenableexcept(FE_ALL_EXCEPT & bits); \ ++ } \ + feclearexcept(FE_ALL_EXCEPT); + # else + # define ECL_WITH_LISP_FPE_BEGIN do { \ +-- +GitLab + Property changes on: head/lang/ecl/files/patch-75877dd.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/lang/ecl/pkg-plist =================================================================== --- head/lang/ecl/pkg-plist (revision 541225) +++ head/lang/ecl/pkg-plist (revision 541226) @@ -1,238 +1,231 @@ bin/ecl bin/ecl-config include/ecl/bytecodes.h include/ecl/cache.h include/ecl/config-internal.h include/ecl/config.h include/ecl/configpre-int.h include/ecl/configpre.h include/ecl/cons.h include/ecl/cs.h +include/ecl/ecl_atomics.h include/ecl/ecl-cmp.h include/ecl/ecl-inl.h include/ecl/ecl.h include/ecl/external.h include/ecl/impl/math_dispatch.h include/ecl/impl/math_dispatch2.h include/ecl/impl/math_fenv.h include/ecl/impl/math_fenv_msvc.h include/ecl/internal.h include/ecl/legacy.h include/ecl/number.h include/ecl/object.h include/ecl/page.h +include/ecl/stack-resize.h include/ecl/stacks.h lib/ecl lib/ecl-%%VERSION%%/COPYING lib/ecl-%%VERSION%%/LICENSE lib/ecl-%%VERSION%%/TAGS %%ASDF%%lib/ecl-%%VERSION%%/asdf.fas lib/ecl-%%VERSION%%/build-stamp lib/ecl-%%VERSION%%/cmp.asd lib/ecl-%%VERSION%%/cmp.fas %%SOCKETS%%lib/ecl-%%VERSION%%/deflate.asd %%SOCKETS%%lib/ecl-%%VERSION%%/deflate.fas -lib/ecl-%%VERSION%%/defsystem.asd -lib/ecl-%%VERSION%%/defsystem.fas lib/ecl-%%VERSION%%/dpp lib/ecl-%%VERSION%%/ecl-cdb.asd lib/ecl-%%VERSION%%/ecl-cdb.fas %%SOCKETS%%lib/ecl-%%VERSION%%/ecl-curl.asd %%SOCKETS%%lib/ecl-%%VERSION%%/ecl-curl.fas lib/ecl-%%VERSION%%/ecl-help.asd lib/ecl-%%VERSION%%/ecl-help.fas %%SOCKETS%%lib/ecl-%%VERSION%%/ecl-quicklisp.asd %%SOCKETS%%lib/ecl-%%VERSION%%/ecl-quicklisp.fas lib/ecl-%%VERSION%%/ecl_min lib/ecl-%%VERSION%%/encodings/arabic lib/ecl-%%VERSION%%/encodings/ascii lib/ecl-%%VERSION%%/encodings/asmo-708 lib/ecl-%%VERSION%%/encodings/atarist.bin lib/ecl-%%VERSION%%/encodings/cp-856.bin lib/ecl-%%VERSION%%/encodings/cp819 lib/ecl-%%VERSION%%/encodings/cp850 lib/ecl-%%VERSION%%/encodings/cp862 lib/ecl-%%VERSION%%/encodings/cp866 lib/ecl-%%VERSION%%/encodings/cp932 lib/ecl-%%VERSION%%/encodings/cp936 lib/ecl-%%VERSION%%/encodings/cp949 lib/ecl-%%VERSION%%/encodings/cp950 lib/ecl-%%VERSION%%/encodings/cyrillic lib/ecl-%%VERSION%%/encodings/dos-cp437.bin lib/ecl-%%VERSION%%/encodings/dos-cp737.bin lib/ecl-%%VERSION%%/encodings/dos-cp775.bin lib/ecl-%%VERSION%%/encodings/dos-cp850.bin lib/ecl-%%VERSION%%/encodings/dos-cp852.bin lib/ecl-%%VERSION%%/encodings/dos-cp855.bin lib/ecl-%%VERSION%%/encodings/dos-cp857.bin lib/ecl-%%VERSION%%/encodings/dos-cp860.bin lib/ecl-%%VERSION%%/encodings/dos-cp861.bin lib/ecl-%%VERSION%%/encodings/dos-cp862.bin lib/ecl-%%VERSION%%/encodings/dos-cp863.bin lib/ecl-%%VERSION%%/encodings/dos-cp864.bin lib/ecl-%%VERSION%%/encodings/dos-cp865.bin lib/ecl-%%VERSION%%/encodings/dos-cp866.bin lib/ecl-%%VERSION%%/encodings/dos-cp869.bin lib/ecl-%%VERSION%%/encodings/dos-cp874.bin lib/ecl-%%VERSION%%/encodings/ecma-114 lib/ecl-%%VERSION%%/encodings/ecma-118 lib/ecl-%%VERSION%%/encodings/greek lib/ecl-%%VERSION%%/encodings/greek8 lib/ecl-%%VERSION%%/encodings/hebrew lib/ecl-%%VERSION%%/encodings/ibm437 lib/ecl-%%VERSION%%/encodings/ibm819 lib/ecl-%%VERSION%%/encodings/ibm850 lib/ecl-%%VERSION%%/encodings/ibm852 lib/ecl-%%VERSION%%/encodings/ibm855 lib/ecl-%%VERSION%%/encodings/ibm857 lib/ecl-%%VERSION%%/encodings/ibm860 lib/ecl-%%VERSION%%/encodings/ibm861 lib/ecl-%%VERSION%%/encodings/ibm862 lib/ecl-%%VERSION%%/encodings/ibm863 lib/ecl-%%VERSION%%/encodings/ibm864 lib/ecl-%%VERSION%%/encodings/ibm865 lib/ecl-%%VERSION%%/encodings/ibm866 lib/ecl-%%VERSION%%/encodings/ibm869 lib/ecl-%%VERSION%%/encodings/iso-2022-jp lib/ecl-%%VERSION%%/encodings/iso-2022-jp-1 lib/ecl-%%VERSION%%/encodings/iso-8859-1.bin lib/ecl-%%VERSION%%/encodings/iso-8859-10.bin lib/ecl-%%VERSION%%/encodings/iso-8859-11.bin lib/ecl-%%VERSION%%/encodings/iso-8859-13.bin lib/ecl-%%VERSION%%/encodings/iso-8859-14.bin lib/ecl-%%VERSION%%/encodings/iso-8859-15.bin lib/ecl-%%VERSION%%/encodings/iso-8859-16.bin lib/ecl-%%VERSION%%/encodings/iso-8859-2.bin lib/ecl-%%VERSION%%/encodings/iso-8859-3.bin lib/ecl-%%VERSION%%/encodings/iso-8859-4.bin lib/ecl-%%VERSION%%/encodings/iso-8859-5.bin lib/ecl-%%VERSION%%/encodings/iso-8859-6.bin lib/ecl-%%VERSION%%/encodings/iso-8859-7.bin lib/ecl-%%VERSION%%/encodings/iso-8859-8.bin lib/ecl-%%VERSION%%/encodings/iso-8859-9.bin lib/ecl-%%VERSION%%/encodings/iso8859-1 lib/ecl-%%VERSION%%/encodings/iso8859-10 lib/ecl-%%VERSION%%/encodings/iso8859-13 lib/ecl-%%VERSION%%/encodings/iso8859-14 lib/ecl-%%VERSION%%/encodings/iso8859-15 lib/ecl-%%VERSION%%/encodings/iso8859-2 lib/ecl-%%VERSION%%/encodings/iso8859-3 lib/ecl-%%VERSION%%/encodings/iso8859-4 lib/ecl-%%VERSION%%/encodings/iso8859-5 lib/ecl-%%VERSION%%/encodings/iso8859-6 lib/ecl-%%VERSION%%/encodings/iso8859-7 lib/ecl-%%VERSION%%/encodings/iso8859-8 lib/ecl-%%VERSION%%/encodings/iso8859-9 lib/ecl-%%VERSION%%/encodings/jisx0201.bin lib/ecl-%%VERSION%%/encodings/jisx0208.bin lib/ecl-%%VERSION%%/encodings/jisx0212.bin lib/ecl-%%VERSION%%/encodings/koi8-r.bin lib/ecl-%%VERSION%%/encodings/koi8-u.bin lib/ecl-%%VERSION%%/encodings/koi8r lib/ecl-%%VERSION%%/encodings/latin-1 lib/ecl-%%VERSION%%/encodings/latin-2 lib/ecl-%%VERSION%%/encodings/latin-3 lib/ecl-%%VERSION%%/encodings/latin-4 lib/ecl-%%VERSION%%/encodings/latin-5 lib/ecl-%%VERSION%%/encodings/latin-6 lib/ecl-%%VERSION%%/encodings/latin-7 lib/ecl-%%VERSION%%/encodings/latin-8 lib/ecl-%%VERSION%%/encodings/latin-9 lib/ecl-%%VERSION%%/encodings/latin2 lib/ecl-%%VERSION%%/encodings/latin3 lib/ecl-%%VERSION%%/encodings/latin4 lib/ecl-%%VERSION%%/encodings/latin5 lib/ecl-%%VERSION%%/encodings/latin6 lib/ecl-%%VERSION%%/encodings/latin7 lib/ecl-%%VERSION%%/encodings/latin8 lib/ecl-%%VERSION%%/encodings/latin9 lib/ecl-%%VERSION%%/encodings/ms-ansi lib/ecl-%%VERSION%%/encodings/ms-arab lib/ecl-%%VERSION%%/encodings/ms-cyrl lib/ecl-%%VERSION%%/encodings/ms-ee lib/ecl-%%VERSION%%/encodings/ms-greek lib/ecl-%%VERSION%%/encodings/ms-hebr lib/ecl-%%VERSION%%/encodings/ms-turk lib/ecl-%%VERSION%%/encodings/shift-jis.bin lib/ecl-%%VERSION%%/encodings/tools.lisp lib/ecl-%%VERSION%%/encodings/ucs2 lib/ecl-%%VERSION%%/encodings/ucs2be lib/ecl-%%VERSION%%/encodings/ucs2le lib/ecl-%%VERSION%%/encodings/ucs4 lib/ecl-%%VERSION%%/encodings/ucs4be lib/ecl-%%VERSION%%/encodings/ucs4le lib/ecl-%%VERSION%%/encodings/unicode lib/ecl-%%VERSION%%/encodings/utf-16 lib/ecl-%%VERSION%%/encodings/utf-16be lib/ecl-%%VERSION%%/encodings/utf-16le lib/ecl-%%VERSION%%/encodings/utf-32 lib/ecl-%%VERSION%%/encodings/utf-32be lib/ecl-%%VERSION%%/encodings/utf-32le lib/ecl-%%VERSION%%/encodings/utf16 lib/ecl-%%VERSION%%/encodings/utf32 lib/ecl-%%VERSION%%/encodings/utf8 lib/ecl-%%VERSION%%/encodings/winbaltrim lib/ecl-%%VERSION%%/encodings/windows-1250 lib/ecl-%%VERSION%%/encodings/windows-1251 lib/ecl-%%VERSION%%/encodings/windows-1252 lib/ecl-%%VERSION%%/encodings/windows-1253 lib/ecl-%%VERSION%%/encodings/windows-1254 lib/ecl-%%VERSION%%/encodings/windows-1255 lib/ecl-%%VERSION%%/encodings/windows-1256 lib/ecl-%%VERSION%%/encodings/windows-1257 lib/ecl-%%VERSION%%/encodings/windows-1258 lib/ecl-%%VERSION%%/encodings/windows-932 lib/ecl-%%VERSION%%/encodings/windows-936 lib/ecl-%%VERSION%%/encodings/windows-949 lib/ecl-%%VERSION%%/encodings/windows-950 lib/ecl-%%VERSION%%/encodings/windows-cp1250.bin lib/ecl-%%VERSION%%/encodings/windows-cp1251.bin lib/ecl-%%VERSION%%/encodings/windows-cp1252.bin lib/ecl-%%VERSION%%/encodings/windows-cp1253.bin lib/ecl-%%VERSION%%/encodings/windows-cp1254.bin lib/ecl-%%VERSION%%/encodings/windows-cp1255.bin lib/ecl-%%VERSION%%/encodings/windows-cp1256.bin lib/ecl-%%VERSION%%/encodings/windows-cp1257.bin lib/ecl-%%VERSION%%/encodings/windows-cp1258.bin lib/ecl-%%VERSION%%/encodings/windows-cp932.bin lib/ecl-%%VERSION%%/encodings/windows-cp936.bin lib/ecl-%%VERSION%%/encodings/windows-cp949.bin lib/ecl-%%VERSION%%/encodings/windows-cp950.bin lib/ecl-%%VERSION%%/help.doc %%ASDF%%lib/ecl-%%VERSION%%/libasdf.a lib/ecl-%%VERSION%%/libcmp.a %%SOCKETS%%lib/ecl-%%VERSION%%/libdeflate.a -lib/ecl-%%VERSION%%/libdefsystem.a lib/ecl-%%VERSION%%/libecl-cdb.a %%SOCKETS%%lib/ecl-%%VERSION%%/libecl-curl.a lib/ecl-%%VERSION%%/libecl-help.a %%SOCKETS%%lib/ecl-%%VERSION%%/libecl-quicklisp.a lib/ecl-%%VERSION%%/libpackage-locks.a -lib/ecl-%%VERSION%%/libprofile.a %%SOCKETS%%lib/ecl-%%VERSION%%/libql-minitar.a -lib/ecl-%%VERSION%%/librt.a %%SOCKETS%%lib/ecl-%%VERSION%%/libsb-bsd-sockets.a lib/ecl-%%VERSION%%/libserve-event.a lib/ecl-%%VERSION%%/package-locks.asd lib/ecl-%%VERSION%%/package-locks.fas %%ASDF%%lib/ecl-%%VERSION%%/prebuilt-asdf.asd %%SOCKETS%%lib/ecl-%%VERSION%%/libsockets.a -lib/ecl-%%VERSION%%/profile.asd -lib/ecl-%%VERSION%%/profile.fas %%SOCKETS%%lib/ecl-%%VERSION%%/ql-minitar.asd %%SOCKETS%%lib/ecl-%%VERSION%%/ql-minitar.fas -lib/ecl-%%VERSION%%/rt.asd -lib/ecl-%%VERSION%%/rt.fas %%SOCKETS%%lib/ecl-%%VERSION%%/sb-bsd-sockets.asd %%SOCKETS%%lib/ecl-%%VERSION%%/sb-bsd-sockets.fas lib/ecl-%%VERSION%%/serve-event.asd lib/ecl-%%VERSION%%/serve-event.fas %%SOCKETS%%lib/ecl-%%VERSION%%/sockets.asd %%SOCKETS%%lib/ecl-%%VERSION%%/sockets.fas lib/libecl.so -lib/libecl.so.16 -lib/libecl.so.16.1 lib/libecl.so.%%VERSION%% +lib/libecl.so.20 +lib/libecl.so.20.4 man/man1/ecl-config.1.gz man/man1/ecl.1.gz @dir include/ecl/gc