head	1.5;
access;
symbols
	RELEASE_4_3_0:1.4
	RELEASE_4_2_0:1.4
	RELEASE_4_0_0:1.1
	RELEASE_3_4_0:1.1
	RELEASE_3_3_0:1.1;
locks; strict;
comment	@# @;


1.5
date	2001.05.16.18.55.28;	author dinoex;	state dead;
branches;
next	1.4;

1.4
date	2000.10.14.13.47.12;	author ache;	state Exp;
branches;
next	1.3;

1.3
date	2000.09.24.10.36.14;	author ache;	state Exp;
branches;
next	1.2;

1.2
date	2000.04.18.18.11.21;	author ache;	state dead;
branches;
next	1.1;

1.1
date	99.08.01.20.30.09;	author billf;	state Exp;
branches;
next	;


desc
@@


1.5
log
@- Removed development port, all changes have meen merged into www/webalizer
@
text
@--- output.c.orig	Fri Sep 29 07:51:42 2000
+++ output.c	Sat Oct 14 17:18:55 2000
@@@@ -1450,10 +1450,17 @@@@
       rptr=*pointer++;
       if (rptr->flag == OBJ_REG)
       {
-         fprintf(out_fp,"%-8lu %6.02f%%  %s\n",
-            rptr->count,
-            (t_hit==0)?0:((float)rptr->count/t_hit)*100.0,
-            rptr->string);
+	 if (strstr(rptr->string,"://")!=NULL)
+	    fprintf(out_fp,"%-8lu %6.02f%%  <A HREF=\"%s\">%s</A>\n",
+	       rptr->count,
+	       (t_hit==0)?0:((float)rptr->count/t_hit)*100.0,
+	       rptr->string,
+	       rptr->string);
+	 else
+	    fprintf(out_fp,"%-8lu %6.02f%%  %s\n",
+	       rptr->count,
+	       (t_hit==0)?0:((float)rptr->count/t_hit)*100.0,
+	       rptr->string);
          r_reg--;
       }
    }
@@@@ -1932,7 +1939,7 @@@@
          {
             domain = hptr->string+strlen(hptr->string)-1;
             while ( (*domain!='.')&&(domain!=hptr->string)) domain--;
-            if ((domain==hptr->string)||(isdigit((int)*++domain)))
+	    if ((domain==hptr->string)||(isdigit((unsigned char)*++domain)))
             {
                ctry[0].count+=hptr->count;
                ctry[0].files+=hptr->files;
@


1.4
log
@ctype fixes
@
text
@@


1.3
log
@Make AllReferers page links clickable
@
text
@d1 3
a3 3
--- output.c.orig	Sun Mar 19 02:37:06 2000
+++ output.c	Sun Sep 24 14:28:15 2000
@@@@ -1447,10 +1447,17 @@@@
d25 9
@


1.2
log
@preserve cvs history now
@
text
@d1 23
a23 9
--- graphs.c.orig	Tue Jun 15 06:33:40 1999
+++ graphs.c	Sat Jul 31 10:43:48 1999
@@@@ -285,7 +285,7 @@@@
    /* save gif image */
    if ((out = fopen(fname, "wb")) != NULL)
    {
-      gdImageGif(im, out);
+      gdImagePng(im, out);
       fclose(out);
a24 28
    /* deallocate memory */
@@@@ -501,7 +501,7 @@@@
    /* open file for writing */
    if ((out = fopen(fname, "wb")) != NULL)
    {
-      gdImageGif(im, out);
+      gdImagePng(im, out);
       fclose(out);
    }
    /* deallocate memory */
@@@@ -614,7 +614,7 @@@@
    /* save as gif file */
    if ( (out = fopen(fname, "wb")) != NULL)
    {
-      gdImageGif(im, out);
+      gdImagePng(im, out);
       fclose(out);
    }
    /* deallocate memory */
@@@@ -700,7 +700,7 @@@@
    /* save gif image */
    if ((out = fopen(fname, "wb")) != NULL)
    {
-      gdImageGif(im, out);
+      gdImagePng(im, out);
       fclose(out);
    }
    /* deallocate memory */
@


1.1
log
@o Upgrade to 1.30-04
o Use new API for GD functions

PR:		ports/12857
Submitted by:	Dirk Meyer <dirk.meyer@@dinoex.sub.org>

o Pass information to configure that will allow this port to work
  for people with alternative PREFIXes
o Make this port respect CFLAGS
o Change BUILD_DEPENDS on the static gd library to a LIB_DEPENDS on the
  shared library, which is what this port really uses.
o Remove a patch and a one-line(functionally) script and simply use a perl
  command in pre-configure:
@
text
@@

