summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>1998-07-28 17:03:51 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>1998-07-28 17:03:51 +0000
commitee6e58e035d8c620128a232ca93463777b2dc1a0 (patch)
treec38b392d6dcae0a7bad7ab2426afd7f8605ebabd /net
parentAdd a patch for glib-config. (diff)
The default Archie server is now "archie.rutgers.edu".
This servers seems slow to me, but my 1st two favorates (at sura.net and ans.net) don't DNS resolve anymore. I welcome sugguestions for other default Archie servers to use. PR: ports/7077 Submitted by: Takeshi WATANABE watanabe@komadori.planet.kobe-u.ac.jp
Notes
Notes: svn path=/head/; revision=12188
Diffstat (limited to 'net')
-rw-r--r--net/archie/files/patch-aa111
1 files changed, 48 insertions, 63 deletions
diff --git a/net/archie/files/patch-aa b/net/archie/files/patch-aa
index 53e2ab08cba8..77c9c0b3e1e9 100644
--- a/net/archie/files/patch-aa
+++ b/net/archie/files/patch-aa
@@ -1,63 +1,48 @@
-*** Makefile.orig Fri Oct 21 00:25:31 1994
---- Makefile Fri Oct 21 00:26:55 1994
-***************
-*** 2,15 ****
- # Makefile for the minimal build for an archie Prospero client.
- #
- # Your C compiler:
-! #CC=cc
-
- # For most systems, these OPTIONS will suffice. Exceptions:
- #
- # * If you're on a Stardent, add -43
- # * If you're running EP/IX, you may need to add -systype bsd43
- # but try it without it first.
-! OPTIONS= -O -I. -I/usr/netinclude -I/usr/ucbinclude
-
- # For this, DEFINES is usually ok as-is. Try it without any of these
- # first; if some stuff fails or shows up undefined, then come back and
---- 2,15 ----
- # Makefile for the minimal build for an archie Prospero client.
- #
- # Your C compiler:
-! CC=cc
-
- # For most systems, these OPTIONS will suffice. Exceptions:
- #
- # * If you're on a Stardent, add -43
- # * If you're running EP/IX, you may need to add -systype bsd43
- # but try it without it first.
-! OPTIONS= -O -I.
-
- # For this, DEFINES is usually ok as-is. Try it without any of these
- # first; if some stuff fails or shows up undefined, then come back and
-***************
-*** 30,36 ****
- # * if your system is lacking strspn(), add -DSTRSPN
- # * if you're using the unbundled SparcCompiler on a
- # Solaris 2 system, add -DSOLARIS2
-! DEFINES= -DDEBUG
-
- # The default Archie server; choose one of:
- # archie.ans.net (USA [NY])
---- 30,36 ----
- # * if your system is lacking strspn(), add -DSTRSPN
- # * if you're using the unbundled SparcCompiler on a
- # Solaris 2 system, add -DSOLARIS2
-! DEFINES= -DDEBUG -DNOREGEX
-
- # The default Archie server; choose one of:
- # archie.ans.net (USA [NY])
-***************
-*** 84,89 ****
---- 84,93 ----
- vlalloc.o vl_comp.o
-
- all: archie
-+
-+ install:
-+ install -c -s archie ${PREFIX}/bin/archie
-+ install -c archie.man ${PREFIX}/man/man1/archie.1
-
- archie: $(OBJS)
- $(CC) $(CFLAGS) -o $@ $(OBJS) $(LDFLAGS)
+--- Makefile.orig Mon Oct 26 15:11:04 1992
++++ Makefile Tue Jul 28 09:44:38 1998
+@@ -2,14 +2,14 @@
+ # Makefile for the minimal build for an archie Prospero client.
+ #
+ # Your C compiler:
+-#CC=cc
++CC=cc
+
+ # For most systems, these OPTIONS will suffice. Exceptions:
+ #
+ # * If you're on a Stardent, add -43
+ # * If you're running EP/IX, you may need to add -systype bsd43
+ # but try it without it first.
+-OPTIONS= -O -I. -I/usr/netinclude -I/usr/ucbinclude
++OPTIONS= -O -I.
+
+ # For this, DEFINES is usually ok as-is. Try it without any of these
+ # first; if some stuff fails or shows up undefined, then come back and
+@@ -30,7 +30,7 @@
+ # * if your system is lacking strspn(), add -DSTRSPN
+ # * if you're using the unbundled SparcCompiler on a
+ # Solaris 2 system, add -DSOLARIS2
+-DEFINES= -DDEBUG
++DEFINES= -DDEBUG -DNOREGEX
+
+ # The default Archie server; choose one of:
+ # archie.ans.net (USA [NY])
+@@ -46,7 +46,7 @@
+ #
+ # Note this only applies to the command-line client; to change the
+ # default for the Emacs lisp version, set the archie-server variable.
+-ARCHIE= archie.sura.net
++ARCHIE= archie.rutgers.edu
+
+ # Usually LDFLAGS is empty; if, after you build this, archie
+ # complains that it can't resolve ARCHIE.ANS.NET (or whatever
+@@ -84,6 +84,10 @@
+ vlalloc.o vl_comp.o
+
+ all: archie
++
++install:
++ install -c -s archie ${PREFIX}/bin/archie
++ install -c archie.man ${PREFIX}/man/man1/archie.1
+
+ archie: $(OBJS)
+ $(CC) $(CFLAGS) -o $@ $(OBJS) $(LDFLAGS)