head	1.3;
access;
symbols
	RELEASE_4_9_0:1.2
	RELEASE_5_1_0:1.2
	RELEASE_4_8_0:1.2
	RELEASE_5_0_0:1.2
	RELEASE_4_7_0:1.2
	RELEASE_4_6_2:1.2
	RELEASE_4_6_1:1.2
	RELEASE_4_6_0:1.2
	RELEASE_5_0_DP1:1.2
	RELEASE_4_5_0:1.2
	RELEASE_4_4_0:1.2
	RELEASE_4_3_0:1.2
	RELEASE_4_2_0:1.2
	RELEASE_4_1_1:1.2
	RELEASE_4_1_0:1.2
	RELEASE_3_5_0:1.2
	RELEASE_4_0_0:1.2
	RELEASE_3_4_0:1.2
	RELEASE_3_3_0:1.2
	RELEASE_3_2_0:1.2
	RELEASE_3_1_0:1.2
	RELEASE_2_2_8:1.2
	RELEASE_3_0_0:1.2
	RELEASE_2_2_7:1.2
	RELEASE_2_2_6:1.2
	RELEASE_2_2_5:1.1
	RELEASE_2_2_1:1.1
	RELEASE_2_2_2:1.1;
locks; strict;
comment	@# @;


1.3
date	2003.10.18.22.09.25;	author kris;	state dead;
branches;
next	1.2;

1.2
date	97.11.26.07.53.34;	author tg;	state Exp;
branches;
next	1.1;

1.1
date	95.09.23.07.30.03;	author asami;	state Exp;
branches;
next	;


desc
@@


1.3
log
@Remove the chimera2 port, which has not been in active development for many
years, never made it out of alpha status and just doesn't appear to work
with the modern WWW (crashed on the first page I tried it on).

Submitted by:	maintainer
@
text
@--- Common.tmpl.dist.orig	Mon Sep 29 01:32:46 1997
+++ Common.tmpl.dist	Tue Nov 25 09:13:24 1997
@@@@ -35,22 +35,22 @@@@
 */
 
 /* Uncomment and modify if you have the JPEG 6 library */
-/*
+
 #define Use_JPEG
 JPEGDIR = /usr/local
 JPEGINCLUDE = -I$(JPEGDIR)/include
-JPEGLIB = -L$(JPEGDIR)/lib -ljpeg$(IMGLEXT)
-JPEGDEPLIB = $(JPEGDIR)/lib/libjpeg$(IMGLEXT).a
-*/
+JPEGLIB = -L$(JPEGDIR)/lib -ljpeg
+JPEGDEPLIB = $(JPEGDIR)/lib/libjpeg.a
+
 
 /* Uncomment and modify if you have the PNG library */
-/*
+
 #define Use_PNG
 PNGDIR = /usr/local
 PNGINCLUDE = -I$(PNGDIR)/include
-PNGLIB = -L$(PNGDIR)/lib -lpng$(IMGLEXT) -lz$(IMGLEXT)
-PNGDEPLIB = $(PNGDIR)/lib/libpng$(IMGLEXT).a $(PNGDIR)/lib/libz$(IMGLEXT).a
-*/
+PNGLIB = -L$(PNGDIR)/lib -lpng -lz
+PNGDEPLIB = $(PNGDIR)/lib/libpng.a /usr/lib/libz.a
+
 
 /*
  * Uncomment if you need GNU rx.  Not actually used right now.
@


1.2
log
@Bring in changes for chimera-2.0a11. A repository copy from
ports/www/chimera was done before.

PR:		4248
Submitted by:	Bruce Gingery <bgingery@@gtcs.com>
@
text
@@


1.1
log
@Fix core dump due to miscalucalting length of malloc() string.  Bug
already reported to original authors.
@
text
@d1 4
a4 4
--- ./src/url.c.org	Sun Mar 26 01:26:06 1995
+++ ./src/url.c	Fri Sep 22 23:53:00 1995
@@@@ -173,7 +173,7 @@@@
   }
d6 28
a33 6
   len = strlen(protocol) + strlen(hostname) + strlen(filename) +
-        strlen(delim) + 11;
+        strlen(anchor) + strlen(delim) + strlen(delim2) + strlen(delim3) + 11;
   u = alloc_mem(len + 1);
   if (up->port == 0)
   {
@
