summaryrefslogtreecommitdiff
path: root/lang/modula-3-lib/files/patch-ar
diff options
context:
space:
mode:
authorJohn Polstra <jdp@FreeBSD.org>2001-07-21 23:41:46 +0000
committerJohn Polstra <jdp@FreeBSD.org>2001-07-21 23:41:46 +0000
commit38972b0a463d6d2ef998fe878d5b1f0a39836493 (patch)
tree06622cb9a83f64b238c96e3a231adc9a57016a33 /lang/modula-3-lib/files/patch-ar
parentUnhook the obsolete modula-3 and modula-3-lib ports from the (diff)
Remove the old modula-3 and modula-3-lib ports. They are superseded
by the pm3-* family of ports, which build a newer and better-maintained version of Modula-3. I have converted all ports which depended on modula-3 to use pm3-* instead. PR: ports/27664 is rendered irrelevant
Diffstat (limited to 'lang/modula-3-lib/files/patch-ar')
-rw-r--r--lang/modula-3-lib/files/patch-ar48
1 files changed, 0 insertions, 48 deletions
diff --git a/lang/modula-3-lib/files/patch-ar b/lang/modula-3-lib/files/patch-ar
deleted file mode 100644
index 8201df109acf..000000000000
--- a/lang/modula-3-lib/files/patch-ar
+++ /dev/null
@@ -1,48 +0,0 @@
-This patch modifies m3browser to use the new "m3configvars" package.
-
-===================================================================
---- m3/m3browser/src/Main.m3.orig Mon Feb 5 10:49:57 1996
-+++ m3/m3browser/src/Main.m3 Tue Sep 24 15:39:45 1996
-@@ -13,13 +13,12 @@
-
- IMPORT Text, Rd, Wr, TextRd, Thread, Time, Fmt, IntRefTbl, IntList;
- IMPORT Process, Params, Lex, OS, FloatMode, Word, IntIntTbl, TextIntTbl;
--IMPORT FileWr, OSError, Atom, FmtTime, M3Config, RTParams, RTCollector;
-+IMPORT FileWr, OSError, Atom, FmtTime, M3ConfigVars, RTParams, RTCollector;
- IMPORT FS, RefList, IntSeq, XFormat, RefSeq, TextRefTbl, CharMap, IP;
- IMPORT Buf, ID, Wx, MarkUp, CMarkUp, TCPServer, ErrLog, RTutils, RTHeapStats;
-
- CONST
- Title_page = "m3browser.html";
-- SLASH = M3Config.PATH_SEP;
- StartPage = "<HTML>\n<HEAD>\n";
- StartTitle = "<TITLE>";
- Body = "<BODY BGCOLOR=\"#ffffff\" VLINK=\"#006633\">\n";
-@@ -28,10 +27,11 @@
- EndPage = "</BODY>\n</HTML>\n";
-
- VAR (* configuration *)
-- package_root := M3Config.PKG_USE;
-+ SLASH := M3ConfigVars.PATH_SEP;
-+ package_root := M3ConfigVars.PKG_USE;
- server_machine : TEXT; (* initialized in "ParseOptions" *)
- server_socket := 3829;
-- derived_dirs := IntList.List1 (ID.Add (M3Config.BUILD_DIR));
-+ derived_dirs := IntList.List1 (ID.Add (M3ConfigVars.BUILD_DIR));
- n_workers := 3;
- refresh_interval := 30.0d0; (* minutes *)
- start_time := Time.Now ();
-===================================================================
-RCS file: /home/jdp/m3-cvs/m3/m3browser/src/m3makefile,v
-retrieving revision 1.1.1.1
-diff -u -r1.1.1.1 m3makefile
---- m3/m3browser/src/m3makefile.orig 1996/09/24 05:21:56 1.1.1.1
-+++ m3/m3browser/src/m3makefile 1996/09/24 05:32:39
-@@ -6,6 +6,7 @@
-
- m3_option ("-times")
-
-+import ("m3configvars")
- import ("libm3")
- import ("tcp")
- import ("m3tools")