mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
By popular demand, make the modula-3 ports build successfully even
if X11 is not installed. PR: closes ports/4178
This commit is contained in:
parent
da55a9a064
commit
e8b37db2f2
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=11303
@ -3,7 +3,7 @@
|
||||
# Date created: 28 Oct 1996
|
||||
# Whom: John Polstra <jdp@polstra.com>
|
||||
#
|
||||
# $Id: Makefile,v 1.8 1997/07/13 18:49:22 max Exp $
|
||||
# $Id: Makefile,v 1.9 1997/07/17 15:12:48 max Exp $
|
||||
#
|
||||
|
||||
DISTNAME= modula-3-lib-3.6
|
||||
@ -48,6 +48,14 @@ have_gcc!= /bin/sh scripts/check_files files/T.gcc m3cc /usr/src/contrib
|
||||
DISTFILES+= m3-fbsd-gcc-3.6.tar.gz
|
||||
.endif
|
||||
|
||||
# Support building on systems with or without X11 installed. The port
|
||||
# only supports X11R6 in the standard location, so we don't bother using
|
||||
# the X11BASE macro. It's not defined yet at this point in the Makefile
|
||||
# anyway.
|
||||
.if !exists(/usr/X11R6/lib/libX11.a)
|
||||
PLIST= ${PKGDIR}/PLIST.noX11
|
||||
.endif
|
||||
|
||||
# Startup script, run at boot time
|
||||
startup_dir= ${PREFIX}/etc/rc.d
|
||||
startup_script= ${startup_dir}/50.m3.sh
|
||||
@ -116,10 +124,10 @@ do-install:
|
||||
@echo "Installing shared libraries"
|
||||
@cd ${temp_prefix}; \
|
||||
umask 022; \
|
||||
grep '^lib/m3/' ${PKGDIR}/PLIST | \
|
||||
grep '^lib/m3/' ${PLIST} | \
|
||||
cpio -dump -R ${BINOWN}.${BINGRP} ${PREFIX}
|
||||
@cd ${PREFIX}; \
|
||||
grep '^lib/m3/' ${PKGDIR}/PLIST | xargs chmod go=u-w; \
|
||||
grep '^lib/m3/' ${PLIST} | xargs chmod go=u-w; \
|
||||
find -X lib/m3 -type d | xargs chown ${BINOWN}.${BINGRP}; \
|
||||
find -X lib/m3 -type d | xargs chmod 755
|
||||
@echo "Installing copyright notice"
|
||||
|
@ -12,7 +12,7 @@ Update the m3build templates for FreeBSD-2.1 and later.
|
||||
local link = format ("%s%s%s", dest, SL, src)
|
||||
>> M3SHIP_FILE in
|
||||
--- m3/m3build/templates/FreeBSD2.orig Thu Jun 20 12:17:07 1996
|
||||
+++ m3/m3build/templates/FreeBSD2 Fri Oct 25 13:47:16 1996
|
||||
+++ m3/m3build/templates/FreeBSD2 Sat Jun 6 10:39:25 1998
|
||||
@@ -8,8 +8,9 @@
|
||||
% Modified On Thu Apr 8 13:45:49 PDT 1993 by muller
|
||||
%
|
||||
@ -71,7 +71,20 @@ Update the m3build templates for FreeBSD-2.1 and later.
|
||||
end
|
||||
|
||||
readonly proc import_DECPEX() is
|
||||
@@ -128,9 +138,9 @@
|
||||
@@ -114,8 +124,10 @@
|
||||
readonly proc import_TCP() is
|
||||
end
|
||||
|
||||
-readonly PLATFORM_SUPPORTS_X = "TRUE"
|
||||
-readonly PLATFORM_SUPPORTS_MOTIF = "TRUE"
|
||||
+readonly PLATFORM_SUPPORTS_X = (not stale ("/usr/X11R6/lib/libX11.a",
|
||||
+ "/usr/X11R6/lib/libX11.a"))
|
||||
+readonly PLATFORM_SUPPORTS_MOTIF = (not stale ("/usr/X11R6/lib/libXm.a",
|
||||
+ "/usr/X11R6/lib/libXm.a"))
|
||||
readonly PLATFORM_SUPPORTS_DECPEX = ""
|
||||
readonly PLATFORM_SUPPORTS_OPENGL = ""
|
||||
|
||||
@@ -128,9 +140,9 @@
|
||||
% entire function. Note, the distributed code assumes gnuemacs version 19
|
||||
% or later.
|
||||
|
||||
@ -84,7 +97,7 @@ Update the m3build templates for FreeBSD-2.1 and later.
|
||||
|
||||
%---------------------------------------------------- C compiler and linker ---
|
||||
% The following definitions are used to compile and link C modules.
|
||||
@@ -142,33 +152,27 @@
|
||||
@@ -142,33 +154,27 @@
|
||||
% The actual definitions must be kept on one line due to finicky details
|
||||
% of the bootstrap process.
|
||||
|
||||
@ -129,7 +142,7 @@ Update the m3build templates for FreeBSD-2.1 and later.
|
||||
|
||||
%------------------------------------------------------------- GNU variants ---
|
||||
% The two large pieces of GNU software used by the Modula-3 system
|
||||
@@ -179,9 +183,9 @@
|
||||
@@ -179,9 +185,9 @@
|
||||
% To use the GNU defaults for CC and CFLAGS, specify "*".
|
||||
%
|
||||
|
||||
@ -142,7 +155,7 @@ Update the m3build templates for FreeBSD-2.1 and later.
|
||||
|
||||
%-------------------------------------------------------- Modula-3 compiler ---
|
||||
% The syntax for the values passed to most of the M3_CONFIG options is
|
||||
@@ -192,7 +196,8 @@
|
||||
@@ -192,7 +198,8 @@
|
||||
M3 = LIB_USE & "/m3"
|
||||
|
||||
% What are the standard flags?
|
||||
@ -152,7 +165,7 @@ Update the m3build templates for FreeBSD-2.1 and later.
|
||||
|
||||
M3_CONFIG = [
|
||||
"-Y1" & _pack_args (CC),
|
||||
@@ -201,11 +206,11 @@
|
||||
@@ -201,11 +208,11 @@
|
||||
"-Y4" & _pack_args (RANLIB),
|
||||
"-Y7" & _pack_args (ASM),
|
||||
|
||||
@ -167,7 +180,7 @@ Update the m3build templates for FreeBSD-2.1 and later.
|
||||
|
||||
"-z3" & LIB_USE & SL & "report_coverage.o",
|
||||
% --- library linked in programs compiled with "-Z" coverage option
|
||||
@@ -248,7 +253,7 @@
|
||||
@@ -248,7 +255,7 @@
|
||||
% passes in a file and then deletes the file, unless "-keep" or
|
||||
% "-verbose" is specified.
|
||||
|
||||
@ -176,7 +189,7 @@ Update the m3build templates for FreeBSD-2.1 and later.
|
||||
% --- Set the value of "-zK" to "1" if you want the m3 driver to
|
||||
% supply -Bdynamic/-Bstatic options to the linker, "0" otherwise.
|
||||
|
||||
@@ -263,9 +268,9 @@
|
||||
@@ -263,9 +270,9 @@
|
||||
|
||||
proc build_standalone() is
|
||||
% --- reset the linker to avoid shared libraries.
|
||||
@ -188,7 +201,7 @@ Update the m3build templates for FreeBSD-2.1 and later.
|
||||
end
|
||||
|
||||
proc build_shared() is
|
||||
@@ -282,7 +287,7 @@
|
||||
@@ -282,7 +289,7 @@
|
||||
|
||||
proc after_library_hooks(x) is
|
||||
local lib_a = format ("lib%s.a", x)
|
||||
@ -197,7 +210,7 @@ Update the m3build templates for FreeBSD-2.1 and later.
|
||||
local dest = format ("%s%s%s%s%s", PKG_INSTALL, SL, BUILD_PACKAGE,
|
||||
SL, BUILD_DIR)
|
||||
|
||||
@@ -291,7 +296,7 @@
|
||||
@@ -291,7 +298,7 @@
|
||||
write ("missing ", lib_a, ": not building ", lib_so, CR)
|
||||
else
|
||||
if stale (lib_so, lib_a)
|
||||
|
@ -2,7 +2,7 @@ Changes to what is built by default in the FreeBSD port.
|
||||
|
||||
===================================================================
|
||||
--- m3/src/m3makefile.orig Tue Sep 17 16:47:59 1996
|
||||
+++ m3/src/m3makefile Wed Sep 25 17:14:37 1996
|
||||
+++ m3/src/m3makefile Sat Jun 6 10:54:04 1998
|
||||
@@ -83,6 +83,12 @@
|
||||
% requires:
|
||||
BuildChunk ("m3core")
|
||||
@ -140,7 +140,15 @@ Changes to what is built by default in the FreeBSD port.
|
||||
end
|
||||
|
||||
%--- ui --- library -------------------------------------------------
|
||||
@@ -316,18 +322,18 @@
|
||||
@@ -311,23 +317,25 @@
|
||||
% by most graphical applications.
|
||||
% requires: X11R4 and tcp on POSIX; libm3 on WIN32
|
||||
% Note: The WIN32 version is still VERY buggy
|
||||
-BuildChunk ("ui")
|
||||
+if PLATFORM_SUPPORTS_X
|
||||
+ BuildChunk ("ui")
|
||||
+end
|
||||
|
||||
%--- bicycle --- library -------------------------------------------------
|
||||
% bicycle is a library of playing card images.
|
||||
% requires: ui
|
||||
@ -162,7 +170,7 @@ Changes to what is built by default in the FreeBSD port.
|
||||
|
||||
%--- m3tools --- library -------------------------------------------------
|
||||
% a simple Modula-3 scanner, needed by m3tohtml and m3browser
|
||||
@@ -336,12 +342,12 @@
|
||||
@@ -336,12 +344,12 @@
|
||||
|
||||
%--- m3tohtml --- utility -------------------------------------------------
|
||||
% a program to convert batches of Modula-3 source to interconnected HTML
|
||||
@ -177,7 +185,15 @@ Changes to what is built by default in the FreeBSD port.
|
||||
if equal (OS_TYPE, "POSIX")
|
||||
BuildChunk ("m3browser")
|
||||
end
|
||||
@@ -370,7 +376,7 @@
|
||||
@@ -365,17 +373,19 @@
|
||||
% a large collection of useful window widgets, needed by many of the
|
||||
% following libraries and programs.
|
||||
% requires: ui
|
||||
-BuildChunk ("vbtkit")
|
||||
+if PLATFORM_SUPPORTS_X
|
||||
+ BuildChunk ("vbtkit")
|
||||
+end
|
||||
|
||||
%--- fours --- game -------------------------------------------------
|
||||
% a collection of Modula-3 variants of the PC game, tetris.
|
||||
% requires: vbtkit
|
||||
@ -186,7 +202,87 @@ Changes to what is built by default in the FreeBSD port.
|
||||
|
||||
%--- showheap --- utility -------------------------------------------------
|
||||
% a program to graphically display in real-time the state of each heap page.
|
||||
@@ -442,37 +448,37 @@
|
||||
% requires: vbtkit
|
||||
-if equal (OS_TYPE, "POSIX")
|
||||
+if equal (OS_TYPE, "POSIX") and PLATFORM_SUPPORTS_X
|
||||
BuildChunk ("showheap")
|
||||
end
|
||||
|
||||
@@ -389,90 +399,102 @@
|
||||
%--- replayheap --- utility -------------------------------------------------
|
||||
% a program to graphically display the log captured by "recordheap"
|
||||
% requires: vbtkit
|
||||
-if equal (OS_TYPE, "POSIX")
|
||||
+if equal (OS_TYPE, "POSIX") and PLATFORM_SUPPORTS_X
|
||||
BuildChunk ("replayheap")
|
||||
end
|
||||
|
||||
%--- shownew --- utility -------------------------------------------------
|
||||
% a program to graphically display in real-time per-type allocations
|
||||
% requires: vbtkit
|
||||
-if equal (OS_TYPE, "POSIX")
|
||||
+if equal (OS_TYPE, "POSIX") and PLATFORM_SUPPORTS_X
|
||||
BuildChunk ("shownew")
|
||||
end
|
||||
|
||||
%--- showthread --- utility -------------------------------------------------
|
||||
% a program to graphically display in real-time the state of each thread.
|
||||
% requires: vbtkit
|
||||
-if equal (OS_TYPE, "POSIX")
|
||||
+if equal (OS_TYPE, "POSIX") and PLATFORM_SUPPORTS_X
|
||||
BuildChunk ("showthread")
|
||||
end
|
||||
|
||||
%--- images --- library -------------------------------------------------
|
||||
% support for displaying bitmap images
|
||||
% requires: ui
|
||||
-BuildChunk ("images")
|
||||
+if PLATFORM_SUPPORTS_X
|
||||
+ BuildChunk ("images")
|
||||
+end
|
||||
|
||||
%--- jvideo --- library -------------------------------------------------
|
||||
% a low-level interface to the J-video hardware, needed by videovbt
|
||||
% requires: tcp
|
||||
-BuildChunk ("jvideo")
|
||||
+if PLATFORM_SUPPORTS_X
|
||||
+ BuildChunk ("jvideo")
|
||||
+end
|
||||
|
||||
%--- videovbt --- library -------------------------------------------------
|
||||
% a window widget that displays live video images
|
||||
% requires: jvideo, ui
|
||||
-BuildChunk ("videovbt")
|
||||
+if PLATFORM_SUPPORTS_X
|
||||
+ BuildChunk ("videovbt")
|
||||
+end
|
||||
|
||||
%--- formsvbtpixmaps --- library -------------------------------------------
|
||||
% misc. bitmaps, cursors and stuff used by formsvbt
|
||||
% requires: libm3, m3bundle
|
||||
-BuildChunk ("formsvbtpixmaps")
|
||||
+if PLATFORM_SUPPORTS_X
|
||||
+ BuildChunk ("formsvbtpixmaps")
|
||||
+end
|
||||
|
||||
%--- formsvbt --- library -------------------------------------------------
|
||||
% a high-level language based on S-expressions that makes it easy
|
||||
% to assemble VBTs (windows) using the TeX metaphors of boxes and
|
||||
% glue.
|
||||
% requires: vbtkit, videovbt, formsvbtpixmaps, web
|
||||
-BuildChunk ("formsvbt")
|
||||
+if PLATFORM_SUPPORTS_X
|
||||
+ BuildChunk ("formsvbt")
|
||||
+end
|
||||
|
||||
%--- formsedit --- utility -------------------------------------------------
|
||||
% a 1-1/2 view GUI editor for FormsVBT expressions
|
||||
% requires: formsvbt
|
||||
-BuildChunk ("formsedit")
|
||||
+if PLATFORM_SUPPORTS_X
|
||||
+ BuildChunk ("formsedit")
|
||||
+end
|
||||
|
||||
%--- fisheye --- demo -------------------------------------------------
|
||||
% a demo of "fisheye" views for graph browsing
|
||||
% requires: formsvbt
|
||||
@ -231,7 +327,7 @@ Changes to what is built by default in the FreeBSD port.
|
||||
|
||||
%--- anim3D --- library -------------------------------------------
|
||||
% a collection of 3D animation widgets
|
||||
@@ -480,118 +486,118 @@
|
||||
@@ -480,118 +502,118 @@
|
||||
% X11R4 and PEX
|
||||
% X11R4 and OpenGL
|
||||
% soon: OpenGL and Windows NT
|
||||
@ -373,7 +469,7 @@ Changes to what is built by default in the FreeBSD port.
|
||||
end
|
||||
|
||||
%
|
||||
@@ -644,37 +650,40 @@
|
||||
@@ -644,37 +666,40 @@
|
||||
%--- visualobliq --- demo -------------------------------------------
|
||||
% a prototype of an easy-to-use distributed programming environment
|
||||
% requires: formsvbt, obliq, obliqlibui, obliqlibm3
|
||||
@ -420,7 +516,7 @@ Changes to what is built by default in the FreeBSD port.
|
||||
end
|
||||
|
||||
%--- gnuemacs --- library -------------------------------------------------
|
||||
@@ -682,67 +691,67 @@
|
||||
@@ -682,67 +707,67 @@
|
||||
% also a program to build Modula-3 tags
|
||||
% requires:
|
||||
if equal (OS_TYPE, "POSIX")
|
||||
@ -500,7 +596,7 @@ Changes to what is built by default in the FreeBSD port.
|
||||
|
||||
%--- tcpextras --- library -------------------------------------------------
|
||||
% Additions to the tcp library
|
||||
@@ -752,9 +761,9 @@
|
||||
@@ -752,9 +777,9 @@
|
||||
%--- http --- library -------------------------------------------------
|
||||
% library for hypertext transfer protocol (HTTP)
|
||||
% requires: tcpextras
|
||||
|
28
lang/modula-3-lib/pkg-plist.noX11
Normal file
28
lang/modula-3-lib/pkg-plist.noX11
Normal file
@ -0,0 +1,28 @@
|
||||
etc/rc.d/50.m3.sh
|
||||
lib/m3/FreeBSD2/libDiGraph.so.6.0
|
||||
lib/m3/FreeBSD2/libGeometry.so.6.0
|
||||
lib/m3/FreeBSD2/libTempFiles.so.6.0
|
||||
lib/m3/FreeBSD2/libm3.so.6.0
|
||||
lib/m3/FreeBSD2/libm3core.so.6.0
|
||||
lib/m3/FreeBSD2/libm3parseparams.so.6.0
|
||||
lib/m3/FreeBSD2/libm3tcp.so.6.0
|
||||
lib/m3/FreeBSD2/libm3tools.so.6.0
|
||||
lib/m3/FreeBSD2/libset.so.6.0
|
||||
lib/m3/FreeBSD2/libtable-list.so.6.0
|
||||
lib/m3/FreeBSD2/libtcpextras.so.6.0
|
||||
lib/m3/FreeBSD2/libweb.so.6.0
|
||||
lib/m3/pkg/digraph/FreeBSD2/libDiGraph.so.6.0
|
||||
lib/m3/pkg/libm3/FreeBSD2/libm3.so.6.0
|
||||
lib/m3/pkg/m3core/FreeBSD2/libm3core.so.6.0
|
||||
lib/m3/pkg/m3tools/FreeBSD2/libm3tools.so.6.0
|
||||
lib/m3/pkg/parseparams/FreeBSD2/libm3parseparams.so.6.0
|
||||
lib/m3/pkg/realgeometry/FreeBSD2/libGeometry.so.6.0
|
||||
lib/m3/pkg/set/FreeBSD2/libset.so.6.0
|
||||
lib/m3/pkg/table-list/FreeBSD2/libtable-list.so.6.0
|
||||
lib/m3/pkg/tcp/FreeBSD2/libm3tcp.so.6.0
|
||||
lib/m3/pkg/tcpextras/FreeBSD2/libtcpextras.so.6.0
|
||||
lib/m3/pkg/tempfiles/FreeBSD2/libTempFiles.so.6.0
|
||||
lib/m3/pkg/web/FreeBSD2/libweb.so.6.0
|
||||
share/modula-3-lib/COPYRIGHT
|
||||
@exec /sbin/ldconfig -m %D/lib/m3/FreeBSD2
|
||||
@unexec /sbin/ldconfig -R
|
@ -3,7 +3,7 @@
|
||||
# Date created: 18 Mar 1996
|
||||
# Whom: John Polstra <jdp@polstra.com>
|
||||
#
|
||||
# $Id: Makefile,v 1.18 1997/07/26 00:24:53 jdp Exp $
|
||||
# $Id: Makefile,v 1.19 1998/04/28 22:23:10 jdp Exp $
|
||||
#
|
||||
|
||||
DISTNAME= modula-3-3.6
|
||||
@ -18,10 +18,19 @@ WRKSRC= ${PORTSDIR}/lang/modula-3-lib/work
|
||||
NO_CHECKSUM= yes
|
||||
NO_CONFIGURE= yes
|
||||
NO_BUILD= yes
|
||||
MAN1= analyze_coverage.1 formsedit.1 m3browser.1 \
|
||||
m3build.1 m3bundle.1 m3pp.1 m3ship.1 m3tohtml.1 \
|
||||
m3totex.1 m3where.1 quake.1 recordheap.1 \
|
||||
replayheap.1 showheap.1 shownew.1 showthread.1
|
||||
MAN1= analyze_coverage.1 m3browser.1 m3build.1 \
|
||||
m3bundle.1 m3pp.1 m3ship.1 m3tohtml.1 \
|
||||
m3totex.1 m3where.1 quake.1 recordheap.1
|
||||
|
||||
# Support building on systems with or without X11 installed. The port
|
||||
# only supports X11R6 in the standard location, so we don't bother using
|
||||
# the X11BASE macro. It's not defined yet at this point in the Makefile
|
||||
# anyway.
|
||||
.if !exists(/usr/X11R6/lib/libX11.a)
|
||||
PLIST= ${PKGDIR}/PLIST.noX11
|
||||
.else
|
||||
MAN1+= formsedit.1 replayheap.1 showheap.1 shownew.1 showthread.1
|
||||
.endif
|
||||
|
||||
# Keep these in sync with the PLIST and with the library version numbers
|
||||
# in the modula-3-lib port (PLIST and patch-ah there).
|
||||
@ -44,7 +53,7 @@ do-install:
|
||||
@cd ${temp_prefix}; \
|
||||
umask 022; \
|
||||
sed -e "/^@/d" -e "/m3build-/d" -e "s/\.gz$$//" \
|
||||
-e "/^share/d" ${PKGDIR}/PLIST | \
|
||||
-e "/^share/d" ${PLIST} | \
|
||||
cpio -dump -R ${BINOWN}.${BINGRP} ${PREFIX}
|
||||
@echo "Fixing absolute pathnames in installed files"
|
||||
@${SH} ${SCRIPTDIR}/fix_pathnames ${temp_prefix} ${PREFIX}
|
||||
@ -87,9 +96,9 @@ do-install:
|
||||
ln -f m3build m3build-${major}.${minor}
|
||||
@echo "Fixing file permissions"
|
||||
@cd ${PREFIX}; \
|
||||
sed -e "/^@/d" -e "s/\.gz$$//" ${PKGDIR}/PLIST |\
|
||||
sed -e "/^@/d" -e "s/\.gz$$//" ${PLIST} |\
|
||||
xargs chown ${BINOWN}.${BINGRP}; \
|
||||
sed -e "/^@/d" -e "s/\.gz$$//" ${PKGDIR}/PLIST |\
|
||||
sed -e "/^@/d" -e "s/\.gz$$//" ${PLIST} |\
|
||||
xargs chmod go=u-w; \
|
||||
find -X lib/m3 -type d | xargs chown ${BINOWN}.${BINGRP}; \
|
||||
find -X lib/m3 -type d | xargs chmod 755
|
||||
|
495
lang/modula-3/pkg-plist.noX11
Normal file
495
lang/modula-3/pkg-plist.noX11
Normal file
@ -0,0 +1,495 @@
|
||||
bin/analyze_coverage
|
||||
bin/m3browser
|
||||
bin/m3build
|
||||
bin/m3build-6
|
||||
bin/m3build-6.0
|
||||
bin/m3bundle
|
||||
bin/m3pp
|
||||
bin/m3ship
|
||||
bin/m3tohtml
|
||||
bin/m3totex
|
||||
bin/m3where
|
||||
bin/quake
|
||||
bin/recordheap
|
||||
lib/m3/FreeBSD2/libm3configvars.so.6.0
|
||||
lib/m3/FreeBSD2/m3
|
||||
lib/m3/FreeBSD2/m3cgc1
|
||||
lib/m3/FreeBSD2/m3mkdir
|
||||
lib/m3/FreeBSD2/report_coverage.o
|
||||
lib/m3/pkg/digraph/FreeBSD2/.M3EXPORTS
|
||||
lib/m3/pkg/digraph/FreeBSD2/.M3IMPTAB
|
||||
lib/m3/pkg/digraph/FreeBSD2/.M3WEB
|
||||
lib/m3/pkg/digraph/FreeBSD2/libDiGraph.a
|
||||
lib/m3/pkg/digraph/FreeBSD2/libDiGraph.m3x
|
||||
lib/m3/pkg/digraph/src/DiGraph.ig
|
||||
lib/m3/pkg/digraph/src/DiGraph.mg
|
||||
lib/m3/pkg/digraph/src/NullEdgeType.i3
|
||||
lib/m3/pkg/digraph/src/POEdgeType.i3
|
||||
lib/m3/pkg/digraph/src/digraph.tmpl
|
||||
lib/m3/pkg/libm3/FreeBSD2/.M3EXPORTS
|
||||
lib/m3/pkg/libm3/FreeBSD2/.M3IMPTAB
|
||||
lib/m3/pkg/libm3/FreeBSD2/.M3WEB
|
||||
lib/m3/pkg/libm3/FreeBSD2/AtomAtomTbl.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/AtomIntTbl.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/AtomList.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/AtomListSort.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/AtomPQ.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/AtomPQRep.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/AtomRefTbl.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/AtomSeq.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/AtomSeqRep.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/AtomTextTbl.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/IntArraySort.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/IntAtomTbl.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/IntIntTbl.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/IntList.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/IntListSort.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/IntPQ.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/IntPQRep.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/IntRefTbl.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/IntSeq.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/IntSeqRep.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/IntTextTbl.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/LongFloatExtras.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/LongSqrt.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/M3Config.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/RealFloatExtras.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/RealSqrt.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/RefAtomTbl.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/RefIntTbl.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/RefList.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/RefListSort.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/RefPQ.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/RefPQRep.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/RefRefTbl.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/RefSeq.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/RefSeqRep.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/RefTextTbl.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/SortedAtomAtomTbl.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/SortedAtomIntTbl.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/SortedAtomRefTbl.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/SortedAtomTextTbl.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/SortedIntAtomTbl.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/SortedIntIntTbl.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/SortedIntRefTbl.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/SortedIntTextTbl.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/SortedRefAtomTbl.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/SortedRefIntTbl.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/SortedRefRefTbl.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/SortedRefTextTbl.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/SortedTextAtomTbl.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/SortedTextIntTbl.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/SortedTextRefTbl.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/SortedTextTextTbl.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/TextArraySort.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/TextAtomTbl.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/TextIntTbl.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/TextList.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/TextListSort.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/TextPQ.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/TextPQRep.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/TextRefTbl.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/TextSeq.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/TextSeqRep.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/TextTextTbl.i3
|
||||
lib/m3/pkg/libm3/FreeBSD2/libm3.a
|
||||
lib/m3/pkg/libm3/FreeBSD2/libm3.m3x
|
||||
lib/m3/pkg/libm3/src/arith/POSIX/Math.i3
|
||||
lib/m3/pkg/libm3/src/atom/Atom.i3
|
||||
lib/m3/pkg/libm3/src/bundleintf/Bundle.i3
|
||||
lib/m3/pkg/libm3/src/bundleintf/BundleRep.i3
|
||||
lib/m3/pkg/libm3/src/etimer/ETimer.i3
|
||||
lib/m3/pkg/libm3/src/fmtlex/Fmt.i3
|
||||
lib/m3/pkg/libm3/src/fmtlex/FmtBuf.i3
|
||||
lib/m3/pkg/libm3/src/fmtlex/FmtBufF.i3
|
||||
lib/m3/pkg/libm3/src/fmtlex/FmtBufTest.i3
|
||||
lib/m3/pkg/libm3/src/fmtlex/Lex.i3
|
||||
lib/m3/pkg/libm3/src/fmtlex/OldFmt.i3
|
||||
lib/m3/pkg/libm3/src/fmtlex/OldLex.i3
|
||||
lib/m3/pkg/libm3/src/fmtlex/OldScan.i3
|
||||
lib/m3/pkg/libm3/src/fmtlex/Scan.i3
|
||||
lib/m3/pkg/libm3/src/formatter/Formatter.i3
|
||||
lib/m3/pkg/libm3/src/geometry/Axis.i3
|
||||
lib/m3/pkg/libm3/src/geometry/Interval.i3
|
||||
lib/m3/pkg/libm3/src/geometry/Path.i3
|
||||
lib/m3/pkg/libm3/src/geometry/PathPrivate.i3
|
||||
lib/m3/pkg/libm3/src/geometry/Point.i3
|
||||
lib/m3/pkg/libm3/src/geometry/PolyRegion.i3
|
||||
lib/m3/pkg/libm3/src/geometry/Rect.i3
|
||||
lib/m3/pkg/libm3/src/geometry/Region.i3
|
||||
lib/m3/pkg/libm3/src/geometry/RegionRep.i3
|
||||
lib/m3/pkg/libm3/src/geometry/Transform.i3
|
||||
lib/m3/pkg/libm3/src/geometry/Trapezoid.i3
|
||||
lib/m3/pkg/libm3/src/list/List.ig
|
||||
lib/m3/pkg/libm3/src/list/List.mg
|
||||
lib/m3/pkg/libm3/src/list/ListSort.ig
|
||||
lib/m3/pkg/libm3/src/list/ListSort.mg
|
||||
lib/m3/pkg/libm3/src/list/list.tmpl
|
||||
lib/m3/pkg/libm3/src/os/Common/FS.i3
|
||||
lib/m3/pkg/libm3/src/os/Common/File.i3
|
||||
lib/m3/pkg/libm3/src/os/Common/OSError.i3
|
||||
lib/m3/pkg/libm3/src/os/Common/Pathname.i3
|
||||
lib/m3/pkg/libm3/src/os/Common/Pipe.i3
|
||||
lib/m3/pkg/libm3/src/os/Common/Process.i3
|
||||
lib/m3/pkg/libm3/src/os/Common/RegularFile.i3
|
||||
lib/m3/pkg/libm3/src/os/Common/Terminal.i3
|
||||
lib/m3/pkg/libm3/src/os/POSIX/FilePosix.i3
|
||||
lib/m3/pkg/libm3/src/os/POSIX/OSErrorPosix.i3
|
||||
lib/m3/pkg/libm3/src/params/Env.i3
|
||||
lib/m3/pkg/libm3/src/params/Params.i3
|
||||
lib/m3/pkg/libm3/src/perftool/Common/LowPerfTool.i3
|
||||
lib/m3/pkg/libm3/src/perftool/Common/PerfComm.ig
|
||||
lib/m3/pkg/libm3/src/perftool/Common/PerfComm.mg
|
||||
lib/m3/pkg/libm3/src/perftool/Common/PerfTool.i3
|
||||
lib/m3/pkg/libm3/src/pickle/Pickle.i3
|
||||
lib/m3/pkg/libm3/src/pqueue/PQueue.ig
|
||||
lib/m3/pkg/libm3/src/pqueue/PQueue.mg
|
||||
lib/m3/pkg/libm3/src/pqueue/PQueueRep.ig
|
||||
lib/m3/pkg/libm3/src/pqueue/pqueue.tmpl
|
||||
lib/m3/pkg/libm3/src/property/MProperty.i3
|
||||
lib/m3/pkg/libm3/src/property/MPropertyF.i3
|
||||
lib/m3/pkg/libm3/src/property/Property.i3
|
||||
lib/m3/pkg/libm3/src/property/PropertyF.i3
|
||||
lib/m3/pkg/libm3/src/property/PropertyV.i3
|
||||
lib/m3/pkg/libm3/src/random/Common/Random.i3
|
||||
lib/m3/pkg/libm3/src/random/Common/RandomPerm.i3
|
||||
lib/m3/pkg/libm3/src/random/Common/RandomReal.i3
|
||||
lib/m3/pkg/libm3/src/rw/Common/AutoFlushWr.i3
|
||||
lib/m3/pkg/libm3/src/rw/Common/FileRd.i3
|
||||
lib/m3/pkg/libm3/src/rw/Common/FileWr.i3
|
||||
lib/m3/pkg/libm3/src/rw/Common/IO.i3
|
||||
lib/m3/pkg/libm3/src/rw/Common/MsgRd.i3
|
||||
lib/m3/pkg/libm3/src/rw/Common/MsgWr.i3
|
||||
lib/m3/pkg/libm3/src/rw/Common/NullRd.i3
|
||||
lib/m3/pkg/libm3/src/rw/Common/NullWr.i3
|
||||
lib/m3/pkg/libm3/src/rw/Common/Rd.i3
|
||||
lib/m3/pkg/libm3/src/rw/Common/RdClass.i3
|
||||
lib/m3/pkg/libm3/src/rw/Common/RdCopy.i3
|
||||
lib/m3/pkg/libm3/src/rw/Common/RdUtils.i3
|
||||
lib/m3/pkg/libm3/src/rw/Common/Stdio.i3
|
||||
lib/m3/pkg/libm3/src/rw/Common/TextRd.i3
|
||||
lib/m3/pkg/libm3/src/rw/Common/TextWr.i3
|
||||
lib/m3/pkg/libm3/src/rw/Common/UnsafeRd.i3
|
||||
lib/m3/pkg/libm3/src/rw/Common/UnsafeWr.i3
|
||||
lib/m3/pkg/libm3/src/rw/Common/Wr.i3
|
||||
lib/m3/pkg/libm3/src/rw/Common/WrClass.i3
|
||||
lib/m3/pkg/libm3/src/sequence/Sequence.ig
|
||||
lib/m3/pkg/libm3/src/sequence/Sequence.mg
|
||||
lib/m3/pkg/libm3/src/sequence/SequenceRep.ig
|
||||
lib/m3/pkg/libm3/src/sequence/sequence.tmpl
|
||||
lib/m3/pkg/libm3/src/sort/ArraySort.ig
|
||||
lib/m3/pkg/libm3/src/sort/ArraySort.mg
|
||||
lib/m3/pkg/libm3/src/sort/arraysort.tmpl
|
||||
lib/m3/pkg/libm3/src/sortedtable/SortedTable.ig
|
||||
lib/m3/pkg/libm3/src/sortedtable/SortedTable.mg
|
||||
lib/m3/pkg/libm3/src/sortedtable/sortedtable.tmpl
|
||||
lib/m3/pkg/libm3/src/sqrt/FloatExtras.ig
|
||||
lib/m3/pkg/libm3/src/sqrt/FloatExtras.mg
|
||||
lib/m3/pkg/libm3/src/sqrt/Sqrt.ig
|
||||
lib/m3/pkg/libm3/src/sqrt/Sqrt.mg
|
||||
lib/m3/pkg/libm3/src/statistics/Stat.i3
|
||||
lib/m3/pkg/libm3/src/sx/Sx.i3
|
||||
lib/m3/pkg/libm3/src/table/Table.ig
|
||||
lib/m3/pkg/libm3/src/table/Table.mg
|
||||
lib/m3/pkg/libm3/src/table/table.tmpl
|
||||
lib/m3/pkg/libm3/src/types/ASCII.i3
|
||||
lib/m3/pkg/libm3/src/types/Boolean.i3
|
||||
lib/m3/pkg/libm3/src/types/Char.i3
|
||||
lib/m3/pkg/libm3/src/types/Int32.i3
|
||||
lib/m3/pkg/libm3/src/types/Integer.i3
|
||||
lib/m3/pkg/libm3/src/types/LongrealType.i3
|
||||
lib/m3/pkg/libm3/src/types/RealType.i3
|
||||
lib/m3/pkg/libm3/src/types/Refany.i3
|
||||
lib/m3/pkg/libm3/src/uid/Common/Capability.i3
|
||||
lib/m3/pkg/libm3/src/uid/Common/MachineID.i3
|
||||
lib/m3/pkg/libm3/src/uid/Common/Swap.i3
|
||||
lib/m3/pkg/libm3/src/uid/Common/TimeStamp.i3
|
||||
lib/m3/pkg/libm3/src/uid/Common/TimeStampRep.i3
|
||||
lib/m3/pkg/m3browser/FreeBSD2/.M3EXPORTS
|
||||
lib/m3/pkg/m3browser/FreeBSD2/.M3IMPTAB
|
||||
lib/m3/pkg/m3browser/FreeBSD2/.M3WEB
|
||||
lib/m3/pkg/m3browser/src/Buf.i3
|
||||
lib/m3/pkg/m3browser/src/CMarkUp.i3
|
||||
lib/m3/pkg/m3browser/src/CharMap.i3
|
||||
lib/m3/pkg/m3browser/src/ErrLog.i3
|
||||
lib/m3/pkg/m3browser/src/ID.i3
|
||||
lib/m3/pkg/m3browser/src/M3MarkUp.i3
|
||||
lib/m3/pkg/m3browser/src/MarkUp.i3
|
||||
lib/m3/pkg/m3browser/src/OS.i3
|
||||
lib/m3/pkg/m3browser/src/TCPPeer.i3
|
||||
lib/m3/pkg/m3browser/src/TCPServer.i3
|
||||
lib/m3/pkg/m3browser/src/Wx.i3
|
||||
lib/m3/pkg/m3browser/src/XFormat.i3
|
||||
lib/m3/pkg/m3build/templates/CLEANUP
|
||||
lib/m3/pkg/m3build/templates/COMMON
|
||||
lib/m3/pkg/m3build/templates/COMMON.BOOT
|
||||
lib/m3/pkg/m3build/templates/FreeBSD2
|
||||
lib/m3/pkg/m3build/templates/PLATFORMS
|
||||
lib/m3/pkg/m3build/templates/POSIX
|
||||
lib/m3/pkg/m3bundle/FreeBSD2/.M3EXPORTS
|
||||
lib/m3/pkg/m3bundle/FreeBSD2/.M3IMPTAB
|
||||
lib/m3/pkg/m3bundle/FreeBSD2/.M3WEB
|
||||
lib/m3/pkg/m3configvars/FreeBSD2/.M3EXPORTS
|
||||
lib/m3/pkg/m3configvars/FreeBSD2/.M3IMPTAB
|
||||
lib/m3/pkg/m3configvars/FreeBSD2/.M3WEB
|
||||
lib/m3/pkg/m3configvars/FreeBSD2/libm3configvars.a
|
||||
lib/m3/pkg/m3configvars/FreeBSD2/libm3configvars.m3x
|
||||
lib/m3/pkg/m3configvars/FreeBSD2/libm3configvars.so.6.0
|
||||
lib/m3/pkg/m3configvars/src/M3ConfigVars.i3
|
||||
lib/m3/pkg/m3core/FreeBSD2/.M3EXPORTS
|
||||
lib/m3/pkg/m3core/FreeBSD2/.M3IMPTAB
|
||||
lib/m3/pkg/m3core/FreeBSD2/.M3WEB
|
||||
lib/m3/pkg/m3core/FreeBSD2/libm3core.a
|
||||
lib/m3/pkg/m3core/FreeBSD2/libm3core.m3x
|
||||
lib/m3/pkg/m3core/src/C/32BITS/BasicCtypes.i3
|
||||
lib/m3/pkg/m3core/src/C/Common/Cerrno.i3
|
||||
lib/m3/pkg/m3core/src/C/Common/Cstdarg.i3
|
||||
lib/m3/pkg/m3core/src/C/Common/Cstddef.i3
|
||||
lib/m3/pkg/m3core/src/C/Common/Cstdlib.i3
|
||||
lib/m3/pkg/m3core/src/C/Common/Ctypes.i3
|
||||
lib/m3/pkg/m3core/src/C/Common/M3toC.i3
|
||||
lib/m3/pkg/m3core/src/C/FreeBSD2/Csetjmp.i3
|
||||
lib/m3/pkg/m3core/src/C/FreeBSD2/Csignal.i3
|
||||
lib/m3/pkg/m3core/src/C/FreeBSD2/Cstdio.i3
|
||||
lib/m3/pkg/m3core/src/C/FreeBSD2/Cstring.i3
|
||||
lib/m3/pkg/m3core/src/Csupport/Common/dtoa.h
|
||||
lib/m3/pkg/m3core/src/convert/CConvert.i3
|
||||
lib/m3/pkg/m3core/src/convert/Convert.i3
|
||||
lib/m3/pkg/m3core/src/fingerprint/Fingerprint.i3
|
||||
lib/m3/pkg/m3core/src/fingerprint/Poly.i3
|
||||
lib/m3/pkg/m3core/src/fingerprint/PolyBasis.i3
|
||||
lib/m3/pkg/m3core/src/float/Common/DragonInt.i3
|
||||
lib/m3/pkg/m3core/src/float/Common/DragonT.i3
|
||||
lib/m3/pkg/m3core/src/float/Common/ExtendedFloat.i3
|
||||
lib/m3/pkg/m3core/src/float/Common/Float.ig
|
||||
lib/m3/pkg/m3core/src/float/Common/IEEESpecial.i3
|
||||
lib/m3/pkg/m3core/src/float/Common/LongFloat.i3
|
||||
lib/m3/pkg/m3core/src/float/Common/RealFloat.i3
|
||||
lib/m3/pkg/m3core/src/float/IEEE-default/FPU.i3
|
||||
lib/m3/pkg/m3core/src/float/IEEE-default/FloatMode.i3
|
||||
lib/m3/pkg/m3core/src/float/IEEE-le/LongRealRep.i3
|
||||
lib/m3/pkg/m3core/src/float/IEEE-le/RealRep.i3
|
||||
lib/m3/pkg/m3core/src/float/IEEE/Extended.i3
|
||||
lib/m3/pkg/m3core/src/float/IEEE/LongReal.i3
|
||||
lib/m3/pkg/m3core/src/float/IEEE/Real.i3
|
||||
lib/m3/pkg/m3core/src/main/Main.i3
|
||||
lib/m3/pkg/m3core/src/runtime/FreeBSD2/RTMachine.i3
|
||||
lib/m3/pkg/m3core/src/runtime/POSIX/RT0u.i3
|
||||
lib/m3/pkg/m3core/src/runtime/POSIX/RTPerfTool.i3
|
||||
lib/m3/pkg/m3core/src/runtime/POSIX/RTThread.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RT0.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTAllocStats.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTAllocator.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTArgs.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTCollector.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTCollectorSRC.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTException.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTHeap.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTHeapDebug.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTHeapDep.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTHeapEvent.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTHeapInfo.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTHeapMap.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTHeapRep.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTHeapStats.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTHooks.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTIO.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTLinker.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTMapOp.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTMisc.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTModule.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTOS.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTPacking.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTParams.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTProcedure.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTProcedureSRC.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTProcess.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTSignal.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTStack.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTThreadInit.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTTipe.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTType.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTTypeFP.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTTypeMap.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTTypeSRC.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTWeakRef.i3
|
||||
lib/m3/pkg/m3core/src/runtime/common/RTutils.i3
|
||||
lib/m3/pkg/m3core/src/runtime/ex_frame/RTExRep.i3
|
||||
lib/m3/pkg/m3core/src/text/Text.i3
|
||||
lib/m3/pkg/m3core/src/text/TextConv.i3
|
||||
lib/m3/pkg/m3core/src/text/TextF.i3
|
||||
lib/m3/pkg/m3core/src/thread/Common/Scheduler.i3
|
||||
lib/m3/pkg/m3core/src/thread/Common/Thread.i3
|
||||
lib/m3/pkg/m3core/src/thread/POSIX/SchedulerPosix.i3
|
||||
lib/m3/pkg/m3core/src/thread/POSIX/ThreadEvent.i3
|
||||
lib/m3/pkg/m3core/src/thread/POSIX/ThreadF.i3
|
||||
lib/m3/pkg/m3core/src/time/Common/Date.i3
|
||||
lib/m3/pkg/m3core/src/time/Common/FmtTime.i3
|
||||
lib/m3/pkg/m3core/src/time/Common/Tick.i3
|
||||
lib/m3/pkg/m3core/src/time/Common/Time.i3
|
||||
lib/m3/pkg/m3core/src/time/POSIX/TimePosix.i3
|
||||
lib/m3/pkg/m3core/src/unix/freebsd-2/Udir.i3
|
||||
lib/m3/pkg/m3core/src/unix/freebsd-2/Uerror.i3
|
||||
lib/m3/pkg/m3core/src/unix/freebsd-2/Uexec.i3
|
||||
lib/m3/pkg/m3core/src/unix/freebsd-2/Ugrp.i3
|
||||
lib/m3/pkg/m3core/src/unix/freebsd-2/Uin.i3
|
||||
lib/m3/pkg/m3core/src/unix/freebsd-2/Uipc.i3
|
||||
lib/m3/pkg/m3core/src/unix/freebsd-2/Umman.i3
|
||||
lib/m3/pkg/m3core/src/unix/freebsd-2/Umsg.i3
|
||||
lib/m3/pkg/m3core/src/unix/freebsd-2/Unetdb.i3
|
||||
lib/m3/pkg/m3core/src/unix/freebsd-2/Unix.i3
|
||||
lib/m3/pkg/m3core/src/unix/freebsd-2/Uprocess.i3
|
||||
lib/m3/pkg/m3core/src/unix/freebsd-2/Upwd.i3
|
||||
lib/m3/pkg/m3core/src/unix/freebsd-2/Uresource.i3
|
||||
lib/m3/pkg/m3core/src/unix/freebsd-2/Usem.i3
|
||||
lib/m3/pkg/m3core/src/unix/freebsd-2/Ushm.i3
|
||||
lib/m3/pkg/m3core/src/unix/freebsd-2/Usignal.i3
|
||||
lib/m3/pkg/m3core/src/unix/freebsd-2/Usocket.i3
|
||||
lib/m3/pkg/m3core/src/unix/freebsd-2/Ustat.i3
|
||||
lib/m3/pkg/m3core/src/unix/freebsd-2/Usyslog.i3
|
||||
lib/m3/pkg/m3core/src/unix/freebsd-2/Utime.i3
|
||||
lib/m3/pkg/m3core/src/unix/freebsd-2/Utypes.i3
|
||||
lib/m3/pkg/m3core/src/unix/freebsd-2/Uugid.i3
|
||||
lib/m3/pkg/m3core/src/unix/freebsd-2/Uuio.i3
|
||||
lib/m3/pkg/m3core/src/unix/freebsd-2/Uutmp.i3
|
||||
lib/m3/pkg/m3core/src/weakref/WeakRef.i3
|
||||
lib/m3/pkg/m3core/src/word/Word.i3
|
||||
lib/m3/pkg/m3tohtml/FreeBSD2/.M3EXPORTS
|
||||
lib/m3/pkg/m3tohtml/FreeBSD2/.M3IMPTAB
|
||||
lib/m3/pkg/m3tohtml/FreeBSD2/.M3WEB
|
||||
lib/m3/pkg/m3tohtml/src/DBRd.i3
|
||||
lib/m3/pkg/m3tohtml/src/DBWr.i3
|
||||
lib/m3/pkg/m3tohtml/src/FilePath.i3
|
||||
lib/m3/pkg/m3tohtml/src/HTMLDir.i3
|
||||
lib/m3/pkg/m3tohtml/src/M3DB.i3
|
||||
lib/m3/pkg/m3tohtml/src/M3MarkUp.i3
|
||||
lib/m3/pkg/m3tohtml/src/MarkUp.i3
|
||||
lib/m3/pkg/m3tohtml/src/TextDB.i3
|
||||
lib/m3/pkg/m3tools/FreeBSD2/.M3EXPORTS
|
||||
lib/m3/pkg/m3tools/FreeBSD2/.M3IMPTAB
|
||||
lib/m3/pkg/m3tools/FreeBSD2/.M3WEB
|
||||
lib/m3/pkg/m3tools/FreeBSD2/libm3tools.a
|
||||
lib/m3/pkg/m3tools/FreeBSD2/libm3tools.m3x
|
||||
lib/m3/pkg/m3tools/src/M3ID.i3
|
||||
lib/m3/pkg/m3tools/src/M3Scanner.i3
|
||||
lib/m3/pkg/m3tools/src/M3Token.i3
|
||||
lib/m3/pkg/m3totex/FreeBSD2/.M3EXPORTS
|
||||
lib/m3/pkg/m3totex/FreeBSD2/.M3IMPTAB
|
||||
lib/m3/pkg/m3totex/FreeBSD2/.M3WEB
|
||||
lib/m3/pkg/m3totex/FreeBSD2/B.i3
|
||||
lib/m3/pkg/mtex/FreeBSD2/.M3EXPORTS
|
||||
lib/m3/pkg/mtex/src/mtex.tmpl
|
||||
lib/m3/pkg/parseparams/FreeBSD2/.M3EXPORTS
|
||||
lib/m3/pkg/parseparams/FreeBSD2/.M3IMPTAB
|
||||
lib/m3/pkg/parseparams/FreeBSD2/.M3WEB
|
||||
lib/m3/pkg/parseparams/FreeBSD2/libm3parseparams.a
|
||||
lib/m3/pkg/parseparams/FreeBSD2/libm3parseparams.m3x
|
||||
lib/m3/pkg/parseparams/src/ParseParams.i3
|
||||
lib/m3/pkg/pp/FreeBSD2/.M3EXPORTS
|
||||
lib/m3/pkg/pp/FreeBSD2/.M3IMPTAB
|
||||
lib/m3/pkg/pp/FreeBSD2/.M3WEB
|
||||
lib/m3/pkg/pp/src/ExceptionArg.i3
|
||||
lib/m3/pkg/pp/src/FBE.i3
|
||||
lib/m3/pkg/pp/src/FBEPostScript.i3
|
||||
lib/m3/pkg/pp/src/FBEWr.i3
|
||||
lib/m3/pkg/pp/src/NewFormatter.i3
|
||||
lib/m3/pkg/pp/src/Parse.i3
|
||||
lib/m3/pkg/realgeometry/FreeBSD2/.M3EXPORTS
|
||||
lib/m3/pkg/realgeometry/FreeBSD2/.M3IMPTAB
|
||||
lib/m3/pkg/realgeometry/FreeBSD2/.M3WEB
|
||||
lib/m3/pkg/realgeometry/FreeBSD2/libGeometry.a
|
||||
lib/m3/pkg/realgeometry/FreeBSD2/libGeometry.m3x
|
||||
lib/m3/pkg/realgeometry/src/PathExtra.i3
|
||||
lib/m3/pkg/realgeometry/src/RealInterval.i3
|
||||
lib/m3/pkg/realgeometry/src/RealPath.i3
|
||||
lib/m3/pkg/realgeometry/src/RealPoint.i3
|
||||
lib/m3/pkg/realgeometry/src/RealRect.i3
|
||||
lib/m3/pkg/realgeometry/src/RealTransform.i3
|
||||
lib/m3/pkg/set/FreeBSD2/.M3EXPORTS
|
||||
lib/m3/pkg/set/FreeBSD2/.M3IMPTAB
|
||||
lib/m3/pkg/set/FreeBSD2/.M3WEB
|
||||
lib/m3/pkg/set/FreeBSD2/AtomSet.i3
|
||||
lib/m3/pkg/set/FreeBSD2/AtomSetDef.i3
|
||||
lib/m3/pkg/set/FreeBSD2/AtomSetList.i3
|
||||
lib/m3/pkg/set/FreeBSD2/IntSet.i3
|
||||
lib/m3/pkg/set/FreeBSD2/IntSetDef.i3
|
||||
lib/m3/pkg/set/FreeBSD2/IntSetList.i3
|
||||
lib/m3/pkg/set/FreeBSD2/RefSet.i3
|
||||
lib/m3/pkg/set/FreeBSD2/RefSetList.i3
|
||||
lib/m3/pkg/set/FreeBSD2/TextSet.i3
|
||||
lib/m3/pkg/set/FreeBSD2/TextSetDef.i3
|
||||
lib/m3/pkg/set/FreeBSD2/TextSetList.i3
|
||||
lib/m3/pkg/set/FreeBSD2/libset.a
|
||||
lib/m3/pkg/set/FreeBSD2/libset.m3x
|
||||
lib/m3/pkg/set/src/Set.ig
|
||||
lib/m3/pkg/set/src/Set.mg
|
||||
lib/m3/pkg/set/src/SetDef.ig
|
||||
lib/m3/pkg/set/src/SetDef.mg
|
||||
lib/m3/pkg/set/src/SetList.ig
|
||||
lib/m3/pkg/set/src/SetList.mg
|
||||
lib/m3/pkg/set/src/set.tmpl
|
||||
lib/m3/pkg/table-list/FreeBSD2/.M3EXPORTS
|
||||
lib/m3/pkg/table-list/FreeBSD2/.M3IMPTAB
|
||||
lib/m3/pkg/table-list/FreeBSD2/.M3WEB
|
||||
lib/m3/pkg/table-list/FreeBSD2/AtomAtomTblList.i3
|
||||
lib/m3/pkg/table-list/FreeBSD2/AtomRefTblList.i3
|
||||
lib/m3/pkg/table-list/FreeBSD2/AtomTextTblList.i3
|
||||
lib/m3/pkg/table-list/FreeBSD2/RefAtomTblList.i3
|
||||
lib/m3/pkg/table-list/FreeBSD2/RefRefTblList.i3
|
||||
lib/m3/pkg/table-list/FreeBSD2/RefTextTblList.i3
|
||||
lib/m3/pkg/table-list/FreeBSD2/TextAtomTblList.i3
|
||||
lib/m3/pkg/table-list/FreeBSD2/TextRefTblList.i3
|
||||
lib/m3/pkg/table-list/FreeBSD2/TextTextTblList.i3
|
||||
lib/m3/pkg/table-list/FreeBSD2/libtable-list.a
|
||||
lib/m3/pkg/table-list/FreeBSD2/libtable-list.m3x
|
||||
lib/m3/pkg/table-list/src/TableList.ig
|
||||
lib/m3/pkg/table-list/src/TableList.mg
|
||||
lib/m3/pkg/table-list/src/table-list.tmpl
|
||||
lib/m3/pkg/tcp/FreeBSD2/.M3EXPORTS
|
||||
lib/m3/pkg/tcp/FreeBSD2/.M3IMPTAB
|
||||
lib/m3/pkg/tcp/FreeBSD2/.M3WEB
|
||||
lib/m3/pkg/tcp/FreeBSD2/libm3tcp.a
|
||||
lib/m3/pkg/tcp/FreeBSD2/libm3tcp.m3x
|
||||
lib/m3/pkg/tcp/src/POSIX/Herrno.i3
|
||||
lib/m3/pkg/tcp/src/POSIX/TCPHack.i3
|
||||
lib/m3/pkg/tcp/src/POSIX/TCPPosix.i3
|
||||
lib/m3/pkg/tcp/src/common/ConnFD.i3
|
||||
lib/m3/pkg/tcp/src/common/ConnMsgRW.i3
|
||||
lib/m3/pkg/tcp/src/common/ConnRW.i3
|
||||
lib/m3/pkg/tcp/src/common/IP.i3
|
||||
lib/m3/pkg/tcp/src/common/TCP.i3
|
||||
lib/m3/pkg/tcp/src/common/TCPSpecial.i3
|
||||
lib/m3/pkg/tcpextras/FreeBSD2/.M3EXPORTS
|
||||
lib/m3/pkg/tcpextras/FreeBSD2/.M3IMPTAB
|
||||
lib/m3/pkg/tcpextras/FreeBSD2/.M3WEB
|
||||
lib/m3/pkg/tcpextras/FreeBSD2/libtcpextras.a
|
||||
lib/m3/pkg/tcpextras/FreeBSD2/libtcpextras.m3x
|
||||
lib/m3/pkg/tcpextras/src/TCPExtras.i3
|
||||
lib/m3/pkg/tcpextras/src/TCPPeer.i3
|
||||
lib/m3/pkg/tempfiles/FreeBSD2/.M3EXPORTS
|
||||
lib/m3/pkg/tempfiles/FreeBSD2/.M3IMPTAB
|
||||
lib/m3/pkg/tempfiles/FreeBSD2/.M3WEB
|
||||
lib/m3/pkg/tempfiles/FreeBSD2/libTempFiles.a
|
||||
lib/m3/pkg/tempfiles/FreeBSD2/libTempFiles.m3x
|
||||
lib/m3/pkg/tempfiles/src/TempFiles.i3
|
||||
lib/m3/pkg/web/FreeBSD2/.M3EXPORTS
|
||||
lib/m3/pkg/web/FreeBSD2/.M3IMPTAB
|
||||
lib/m3/pkg/web/FreeBSD2/.M3WEB
|
||||
lib/m3/pkg/web/FreeBSD2/libweb.a
|
||||
lib/m3/pkg/web/FreeBSD2/libweb.m3x
|
||||
lib/m3/pkg/web/src/Web.i3
|
||||
lib/m3/www/m3tohtml.1.html
|
||||
man/man1/analyze_coverage.1.gz
|
||||
man/man1/m3browser.1.gz
|
||||
man/man1/m3build.1.gz
|
||||
man/man1/m3bundle.1.gz
|
||||
man/man1/m3pp.1.gz
|
||||
man/man1/m3ship.1.gz
|
||||
man/man1/m3tohtml.1.gz
|
||||
man/man1/m3totex.1.gz
|
||||
man/man1/m3where.1.gz
|
||||
man/man1/quake.1.gz
|
||||
man/man1/recordheap.1.gz
|
||||
share/modula-3/COPYRIGHT
|
||||
@exec /sbin/ldconfig -m %D/lib/m3/FreeBSD2
|
||||
@unexec /sbin/ldconfig -R
|
Loading…
Reference in New Issue
Block a user