summaryrefslogtreecommitdiff
path: root/www/webalizer/files/patch-ad
diff options
context:
space:
mode:
authorBill Fumerola <billf@FreeBSD.org>1999-08-01 20:30:09 +0000
committerBill Fumerola <billf@FreeBSD.org>1999-08-01 20:30:09 +0000
commite2cd3f47081e6dacbb72135747f562d3c789fc36 (patch)
tree24d4aa74d88f70a3c09139f78e6dd5fe6ce1bbf7 /www/webalizer/files/patch-ad
parentMove CHECKSUM.MD5 generation to after INDEX splitting. Not much change (diff)
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:
Notes
Notes: svn path=/head/; revision=20472
Diffstat (limited to '')
-rw-r--r--www/webalizer/files/patch-ad38
1 files changed, 38 insertions, 0 deletions
diff --git a/www/webalizer/files/patch-ad b/www/webalizer/files/patch-ad
new file mode 100644
index 000000000000..d0c305c1ac57
--- /dev/null
+++ b/www/webalizer/files/patch-ad
@@ -0,0 +1,38 @@
+--- 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);
+ }
+ /* 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 */