Update librep to version 0.16.2

--
Make it work on powerpc.
Bring PLIST and PFRAG.shared to reality.
This commit is contained in:
margarida 2003-05-15 05:26:58 +00:00
parent c6f8190533
commit 0c8f243123
9 changed files with 131 additions and 255 deletions

View File

@ -1,15 +1,10 @@
# $OpenBSD: Makefile,v 1.12 2002/11/28 16:34:29 margarida Exp $
# Original from: John Harper <jsh@users.sourceforge.net>
# $OpenBSD: Makefile,v 1.13 2003/05/15 05:26:58 margarida Exp $
COMMENT= "Emacs Lisp-like runtime library"
NOT_FOR_ARCHS= ${NO_SHARED_ARCHS}
.if ${MACHINE_ARCH} == "powerpc"
BROKEN= A bug in GCC on powerpc
.endif
VERSION= 0.13.4
VERSION= 0.16.2
DISTNAME= librep-${VERSION}
CATEGORIES= lang
@ -22,6 +17,7 @@ LIB_DEPENDS= gdbm.2::databases/gdbm
MAINTAINER= Margarida Sequeira <margarida@openbsd.org>
# GPL
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
@ -33,6 +29,10 @@ SUBST_VARS= OPSYS_VER VERSION
CFLAGS+= -O0
.endif
.if ${MACHINE_ARCH:Mpowerpc}
PATCH_LIST= gcc-* patch-*
.endif
USE_GMAKE= Yes
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS+= ${CONFIGURE_SHARED} --enable-static

View File

@ -1,3 +1,3 @@
MD5 (librep-0.13.4.tar.gz) = 92703636d670c8effe132ba995fa9237
RMD160 (librep-0.13.4.tar.gz) = 03f8af4d8a8d445aec761913b4a29526542d0c75
SHA1 (librep-0.13.4.tar.gz) = a5d2f9759cc20b734e5949b7af48fc8af35fc00b
MD5 (librep-0.16.2.tar.gz) = b0f219f9f3d51bc06ebb1bd1861b6e5c
RMD160 (librep-0.16.2.tar.gz) = 52b7e520f0a011fe6830379f2244585ad9c8b47e
SHA1 (librep-0.16.2.tar.gz) = 598647aa72387aa3c70dd58f95d7553b30be2a7a

View File

@ -0,0 +1,13 @@
$OpenBSD: gcc-patch-src_Makefile_in,v 1.1 2003/05/15 05:26:58 margarida Exp $
--- src/Makefile.in.orig Mon Dec 17 21:23:55 2001
+++ src/Makefile.in Wed May 14 22:16:44 2003
@@ -134,6 +134,9 @@ rep-config : rep-config.sh Makefile
repdoc : repdoc.o
$(LIBTOOL) --mode=link $(CC) $(LDFLAGS) -o $@ $^ $(GDBM_LIBS)
+lispmach.lo safemach.lo:
+ $(rep_LIBTOOL) --mode=compile $(CC) -c $(CPPFLAGS) $(CFLAGS) -O0 $<
+
sdbm.la : $(SDBM_LOBJS) repsdbm.lo
$(rep_DL_LD) $(LDFLAGS) -o $@ $^

View File

@ -0,0 +1,19 @@
$OpenBSD: patch-configure,v 1.1 2003/05/15 05:26:58 margarida Exp $
--- configure.orig Wed May 14 01:21:58 2003
+++ configure Wed May 14 01:22:35 2003
@@ -3986,15 +3986,6 @@ echo "$ac_t""$hardcode_action" 1>&6
striplib=
old_striplib=
-echo $ac_n "checking whether stripping libraries is possible""... $ac_c" 1>&6
-echo "configure:3991: checking whether stripping libraries is possible" >&5
-if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then
- test -z "$old_striplib" && old_striplib="$STRIP --strip-debug"
- test -z "$striplib" && striplib="$STRIP --strip-unneeded"
- echo "$ac_t""yes" 1>&6
-else
- echo "$ac_t""no" 1>&6
-fi
reload_cmds='$LD$reload_flag -o $output$reload_objs'
test -z "$deplibs_check_method" && deplibs_check_method=unknown

View File

@ -1,53 +0,0 @@
--- ltconfig.orig Thu Jan 4 18:03:28 2001
+++ ltconfig Wed Feb 21 12:12:21 2001
@@ -1105,6 +1105,9 @@ cygwin* | mingw*)
with_gnu_ld=no
fi
;;
+openbsd*)
+ with_gnu_ld=no
+ ;;
esac
@@ -1402,10 +1405,21 @@ else
;;
openbsd*)
- archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linkopts'
- hardcode_libdir_flag_spec='-R$libdir'
hardcode_direct=yes
hardcode_shlibpath_var=no
+ case "$host_os" in
+ openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*)
+ archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linkopts'
+ hardcode_libdir_flag_spec='-R$libdir'
+ ;;
+ *)
+ archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $linkopts'
+ hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
+ if [ "`/usr/bin/file /usr/lib/libc.so.* | grep ELF`" != "" ]; then
+ export_dynamic_flag_spec='${wl}-E'
+ fi
+ ;;
+ esac
;;
os2*)
@@ -2021,13 +2035,12 @@ netbsd*)
openbsd*)
version_type=sunos
- if test "$with_gnu_ld" = yes; then
- need_lib_prefix=no
- need_version=no
- fi
library_names_spec='${libname}${release}.so$versuffix ${libname}.so$versuffix'
finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
shlibpath_var=LD_LIBRARY_PATH
+ deplibs_check_method='pass_all'
+ need_lib_prefix=no
+ need_version=no
;;
os2*)

View File

@ -1,92 +0,0 @@
--- ltmain.sh.orig Thu Jan 4 18:03:28 2001
+++ ltmain.sh Wed Feb 21 12:13:37 2001
@@ -1079,7 +1079,18 @@ compiler."
# These systems don't actually have c library (as such)
continue
;;
+ *-*-openbsd*)
+ # Do not include libc due to us having libc/libc_r.
+ continue
+ ;;
esac
+ elif test "$arg" = "-lc_r"; then
+ case "$host" in
+ *-*-openbsd*)
+ # Do not include libc_r directly, use -pthread flag.
+ continue
+ ;;
+ esac
elif test "$arg" = "-lm"; then
case "$host" in
*-*-cygwin* | *-*-beos*)
@@ -1091,6 +1102,10 @@ compiler."
deplibs="$deplibs $arg"
;;
+ -?thread)
+ deplibs="$deplibs $arg"
+ ;;
+
-module)
module=yes
continue
@@ -1795,6 +1810,9 @@ compiler."
*-*-cygwin* | *-*-mingw* | *-*-os2* | *-*-beos*)
# these systems don't actually have a c library (as such)!
;;
+ *-*-openbsd*)
+ # Do not include libc due to us having libc/libc_r.
+ ;;
*-*-rhapsody*)
# rhapsody is a little odd...
deplibs="$deplibs -framework System"
@@ -2623,7 +2641,7 @@ static const void *lt_preloaded_setup()
# linked before any other PIC object. But we must not use
# pic_flag when linking with -static. The problem exists in
# FreeBSD 2.2.6 and is fixed in FreeBSD 3.1.
- *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*)
+ *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*)
case "$compile_command " in
*" -static "*) ;;
*) pic_flag_for_symtable=" $pic_flag -DPIC -DFREEBSD_WORKAROUND";;
@@ -3571,40 +3589,6 @@ libdir='$install_libdir'\
# Exit here if they wanted silent mode.
test "$show" = : && exit 0
- echo "----------------------------------------------------------------------"
- echo "Libraries have been installed in:"
- for libdir in $libdirs; do
- echo " $libdir"
- done
- echo
- echo "If you ever happen to want to link against installed libraries"
- echo "in a given directory, LIBDIR, you must either use libtool, and"
- echo "specify the full pathname of the library, or use \`-LLIBDIR'"
- echo "flag during linking and do at least one of the following:"
- if test -n "$shlibpath_var"; then
- echo " - add LIBDIR to the \`$shlibpath_var' environment variable"
- echo " during execution"
- fi
- if test -n "$runpath_var"; then
- echo " - add LIBDIR to the \`$runpath_var' environment variable"
- echo " during linking"
- fi
- if test -n "$hardcode_libdir_flag_spec"; then
- libdir=LIBDIR
- eval flag=\"$hardcode_libdir_flag_spec\"
-
- echo " - use the \`$flag' linker flag"
- fi
- if test -n "$admincmds"; then
- echo " - have your system administrator run these commands:$admincmds"
- fi
- if test -f /etc/ld.so.conf; then
- echo " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'"
- fi
- echo
- echo "See any operating system documentation about shared libraries for"
- echo "more information, such as the ld(1) and ld.so(8) manual pages."
- echo "----------------------------------------------------------------------"
exit 0
;;

View File

@ -1,37 +0,0 @@
--- src/readline.c.orig Tue Nov 14 06:53:28 2000
+++ src/readline.c Sun Feb 4 10:38:00 2001
@@ -77,7 +77,7 @@ completion_generator (char *word, int st
}
/* gratuitously stolen from guile, guile-readline/readline.c */
-static void match_paren(int x, int k);
+static int match_paren(int x, int k);
static int find_matching_paren(int k);
static void init_bouncing_parens();
@@ -130,7 +130,7 @@ find_matching_paren(int k)
return -1;
}
-static void
+static int
match_paren(int x, int k)
{
int tmp;
@@ -142,7 +142,7 @@ match_paren(int x, int k)
/* Did we just insert a quoted paren? If so, then don't bounce. */
if (rl_point - 1 >= 1
&& rl_line_buffer[rl_point - 2] == '\\')
- return;
+ return 0;
/* tmp = 200000 */
timeout.tv_sec = 0 /* tmp / 1000000 */ ;
@@ -159,6 +159,7 @@ match_paren(int x, int k)
}
rl_point = tmp;
}
+ return 0;
}
#endif

View File

@ -1,18 +1,19 @@
@comment $OpenBSD: PFRAG.shared,v 1.2 2001/02/21 17:56:28 danh Exp $
lib/librep.so.10.3
DYNLIBDIR(%B)
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/gdbm.so
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/gettext.so
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/readline.so
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/data/tables.so
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/i18n/gettext.so
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/io/db/gdbm.so
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/io/db/sdbm.so
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/io/readline.so
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/io/sockets.so
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/io/timers.so
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/lang/record-profile.so
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/vm/safe-interpreter.so
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/sdbm.so
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/tables.so
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/timers.so
@comment $OpenBSD: PFRAG.shared,v 1.3 2003/05/15 05:26:58 margarida Exp $
lib/librep.so.12.0
DYNLIBDIR(%D/lib)
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/gdbm.so
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/gettext.so
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/readline.so
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/data/tables.so
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/i18n/gettext.so
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/io/db/gdbm.so
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/io/db/sdbm.so
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/io/readline.so
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/io/sockets.so
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/io/timers.so
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/lang/record-profile.so
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/util/md5.so
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/vm/safe-interpreter.so
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/sdbm.so
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/tables.so
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/timers.so

View File

@ -1,4 +1,4 @@
@comment $OpenBSD: PLIST,v 1.2 2001/02/21 17:56:28 danh Exp $
@comment $OpenBSD: PLIST,v 1.3 2003/05/15 05:26:58 margarida Exp $
bin/rep
bin/rep-config
bin/rep-remote
@ -13,41 +13,44 @@ info/librep.info
@exec install-info --info-dir=%D/info %D/info/librep.info
lib/librep.a
lib/librep.la
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/DOC
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/gdbm.a
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/gdbm.la
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/gettext.a
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/gettext.la
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/readline.a
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/readline.la
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/data/tables.a
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/data/tables.la
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/i18n/gettext.a
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/i18n/gettext.la
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/io/db/gdbm.a
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/io/db/gdbm.la
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/io/db/sdbm.a
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/io/db/sdbm.la
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/io/readline.a
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/io/readline.la
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/io/sockets.a
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/io/sockets.la
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/io/timers.a
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/io/timers.la
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/lang/record-profile.a
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/lang/record-profile.la
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/vm/safe-interpreter.a
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/vm/safe-interpreter.la
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/sdbm.a
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/sdbm.la
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/tables.a
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/tables.la
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/timers.a
libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/timers.la
libexec/rep/${ARCH}-unknown-openbsd${OPSYS_VER}/install-aliases
libexec/rep/${ARCH}-unknown-openbsd${OPSYS_VER}/libtool
libexec/rep/${ARCH}-unknown-openbsd${OPSYS_VER}/rep_config.h
libexec/rep/${ARCH}-unknown-openbsd${OPSYS_VER}/rules.mk
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/DOC
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/emulate-gnu-tar
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/gdbm.a
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/gdbm.la
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/gettext.a
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/gettext.la
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/readline.a
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/readline.la
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/data/tables.a
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/data/tables.la
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/i18n/gettext.a
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/i18n/gettext.la
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/io/db/gdbm.a
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/io/db/gdbm.la
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/io/db/sdbm.a
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/io/db/sdbm.la
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/io/readline.a
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/io/readline.la
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/io/sockets.a
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/io/sockets.la
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/io/timers.a
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/io/timers.la
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/lang/record-profile.a
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/lang/record-profile.la
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/util/md5.a
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/util/md5.la
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/vm/safe-interpreter.a
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/vm/safe-interpreter.la
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/sdbm.a
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/sdbm.la
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/tables.a
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/tables.la
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/timers.a
libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/timers.la
libexec/rep/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/install-aliases
libexec/rep/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/libtool
libexec/rep/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep_config.h
libexec/rep/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rules.mk
share/aclocal/rep.m4
share/rep/${VERSION}/lisp/cgi-get.jl
share/rep/${VERSION}/lisp/cgi-get.jlc
@ -93,6 +96,8 @@ share/rep/${VERSION}/lisp/rep/data/string-util.jl
share/rep/${VERSION}/lisp/rep/data/string-util.jlc
share/rep/${VERSION}/lisp/rep/data/symbol-table.jl
share/rep/${VERSION}/lisp/rep/data/symbol-table.jlc
share/rep/${VERSION}/lisp/rep/data/trie.jl
share/rep/${VERSION}/lisp/rep/data/trie.jlc
share/rep/${VERSION}/lisp/rep/i18n/xgettext.jl
share/rep/${VERSION}/lisp/rep/i18n/xgettext.jlc
share/rep/${VERSION}/lisp/rep/io/file-handlers.jl
@ -125,6 +130,8 @@ share/rep/${VERSION}/lisp/rep/lang/define.jl
share/rep/${VERSION}/lisp/rep/lang/define.jlc
share/rep/${VERSION}/lisp/rep/lang/doc.jl
share/rep/${VERSION}/lisp/rep/lang/doc.jlc
share/rep/${VERSION}/lisp/rep/lang/error-helper.jl
share/rep/${VERSION}/lisp/rep/lang/error-helper.jlc
share/rep/${VERSION}/lisp/rep/lang/interpreter.jl
share/rep/${VERSION}/lisp/rep/lang/interpreter.jlc
share/rep/${VERSION}/lisp/rep/lang/math.jl
@ -137,6 +144,8 @@ share/rep/${VERSION}/lisp/rep/module-system.jl
share/rep/${VERSION}/lisp/rep/module-system.jlc
share/rep/${VERSION}/lisp/rep/net/domain-name.jl
share/rep/${VERSION}/lisp/rep/net/domain-name.jlc
share/rep/${VERSION}/lisp/rep/net/rpc.jl
share/rep/${VERSION}/lisp/rep/net/rpc.jlc
share/rep/${VERSION}/lisp/rep/regexp.jl
share/rep/${VERSION}/lisp/rep/regexp.jlc
share/rep/${VERSION}/lisp/rep/structures.jl
@ -147,10 +156,19 @@ share/rep/${VERSION}/lisp/rep/system/environ.jl
share/rep/${VERSION}/lisp/rep/system/environ.jlc
share/rep/${VERSION}/lisp/rep/system/pwd-prompt.jl
share/rep/${VERSION}/lisp/rep/system/pwd-prompt.jlc
share/rep/${VERSION}/lisp/rep/test/autoload.jl
share/rep/${VERSION}/lisp/rep/test/data.jl
share/rep/${VERSION}/lisp/rep/test/data.jlc
share/rep/${VERSION}/lisp/rep/test/framework.jl
share/rep/${VERSION}/lisp/rep/test/framework.jlc
share/rep/${VERSION}/lisp/rep/threads/condition-variable.jl
share/rep/${VERSION}/lisp/rep/threads/condition-variable.jlc
share/rep/${VERSION}/lisp/rep/threads/message-port.jl
share/rep/${VERSION}/lisp/rep/threads/message-port.jlc
share/rep/${VERSION}/lisp/rep/threads/mutex.jl
share/rep/${VERSION}/lisp/rep/threads/mutex.jlc
share/rep/${VERSION}/lisp/rep/threads/proxy.jl
share/rep/${VERSION}/lisp/rep/threads/proxy.jlc
share/rep/${VERSION}/lisp/rep/threads/utils.jl
share/rep/${VERSION}/lisp/rep/threads/utils.jlc
share/rep/${VERSION}/lisp/rep/user.jl
@ -211,6 +229,10 @@ share/rep/${VERSION}/lisp/rep/www/fetch-url.jl
share/rep/${VERSION}/lisp/rep/www/fetch-url.jlc
share/rep/${VERSION}/lisp/rep/www/quote-url.jl
share/rep/${VERSION}/lisp/rep/www/quote-url.jlc
share/rep/${VERSION}/lisp/rep/xml/printer.jl
share/rep/${VERSION}/lisp/rep/xml/printer.jlc
share/rep/${VERSION}/lisp/rep/xml/reader.jl
share/rep/${VERSION}/lisp/rep/xml/reader.jlc
share/rep/${VERSION}/lisp/ring.jl
share/rep/${VERSION}/lisp/ring.jlc
share/rep/${VERSION}/lisp/scheme.jl
@ -240,11 +262,13 @@ share/rep/${VERSION}/lisp/unscheme/syntax.jlc
%%SHARED%%
@dirrm share/rep/${VERSION}/lisp/unscheme
@dirrm share/rep/${VERSION}/lisp/scheme
@dirrm share/rep/${VERSION}/lisp/rep/xml
@dirrm share/rep/${VERSION}/lisp/rep/www
@dirrm share/rep/${VERSION}/lisp/rep/vm/compiler
@dirrm share/rep/${VERSION}/lisp/rep/vm
@dirrm share/rep/${VERSION}/lisp/rep/util
@dirrm share/rep/${VERSION}/lisp/rep/threads
@dirrm share/rep/${VERSION}/lisp/rep/test
@dirrm share/rep/${VERSION}/lisp/rep/system
@dirrm share/rep/${VERSION}/lisp/rep/net
@dirrm share/rep/${VERSION}/lisp/rep/mail
@ -258,14 +282,15 @@ share/rep/${VERSION}/lisp/unscheme/syntax.jlc
@dirrm share/rep/${VERSION}/lisp
@dirrm share/rep/${VERSION}
@dirrm share/rep
@dirrm libexec/rep/${ARCH}-unknown-openbsd${OPSYS_VER}
@dirrm libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/vm
@dirrm libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/lang
@dirrm libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/io/db
@dirrm libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/io
@dirrm libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/i18n
@dirrm libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep/data
@dirrm libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}/rep
@dirrm libexec/rep/${VERSION}/${ARCH}-unknown-openbsd${OPSYS_VER}
@dirrm libexec/rep/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}
@dirrm libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/vm
@dirrm libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/util
@dirrm libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/lang
@dirrm libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/io/db
@dirrm libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/io
@dirrm libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/i18n
@dirrm libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep/data
@dirrm libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}/rep
@dirrm libexec/rep/${VERSION}/${MACHINE_ARCH}-unknown-openbsd${OPSYS_VER}
@dirrm libexec/rep/${VERSION}
@dirrm libexec/rep