View | Details | Raw Unified | Return to bug 195337 | Differences between
and this patch

Collapse All | Expand All

(-)ecgi/Makefile (-1 / +1 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	ecgi
4
PORTNAME=	ecgi
5
PORTVERSION=	0.6.2
5
PORTVERSION=	0.6.3
6
PORTREVISION=	3
6
PORTREVISION=	3
7
CATEGORIES=	devel
7
CATEGORIES=	devel
8
MASTER_SITES=	http://bsdforge.com/projects/source/devel/ecgi/
8
MASTER_SITES=	http://bsdforge.com/projects/source/devel/ecgi/
(-)ecgi/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (ecgi-0.6.2.tar.xz) = e8d8f00a9209c2ef87e100d35c15bc0e54c3f778e34c9551703f66c88d29e331
1
SHA256 (ecgi-0.6.3.tar.xz) = 154f6b13f7023d4eccf87c93f081b794784d6e2c26ea9027c22922ced47c54fd
2
SIZE (ecgi-0.6.2.tar.xz) = 163836
2
SIZE (ecgi-0.6.3.tar.xz) = 162116
(-)ecgi/files/patch-src_ecgitk.c (-10 / +7 lines)
Lines 1-5 Link Here
1
--- html2h/html2h.c.orig	2014-04-26 08:44:43.000000000 +0000
1
--- html2h/html2h.c.orig	2014-11-24 13:09:14.000000000 -0800
2
+++ html2h/html2h.c
2
+++ html2h/html2h.c	2014-11-24 13:25:12.000000000 -0800
3
@@ -6,15 +6,10 @@
3
@@ -6,15 +6,10 @@
4
 
4
 
5
 void usage()
5
 void usage()
Lines 8-29 Link Here
8
-html2h v0.1
8
-html2h v0.1
9
-usage:
9
-usage:
10
-	html2h input.html [output.h]
10
-	html2h input.html [output.h]
11
-	
11
-
12
-	if output is not set, input.h will be generated and overwritten!
12
-	if output is not set, input.h will be generated and overwritten!
13
-
13
-
14
-	debug messages are written to stderr!
14
-	debug messages are written to stderr!
15
-
15
-
16
+	printf("html2h v0.1\nusage:\n \
16
+	printf("html2h v0.1\nusage:\n \
17
+	html2h input.html [output.h]\n\n \
18
+	if output is not set, input.h will be generated and overwritten!\n\n \
19
+	debug messages are written to stderr!\n\n \
Lines 1-11 Link Here
1
--- src/ecgitk.c.orig	2014-04-26 08:53:43.000000000 +0000
1
--- src/ecgitk.c.orig	2014-11-24 13:35:51.000000000 -0800
2
+++ src/ecgitk.c
2
+++ src/ecgitk.c	2014-11-24 13:36:16.000000000 -0800
3
@@ -23,7 +23,7 @@ int ctkRedirect(const char *format, ...)
3
@@ -23,7 +23,7 @@
4
 {
4
 {
5
 	char buf[4096];
5
 	char buf[4096];
6
 	int used;
6
 	int used;
7
-	va_list *ap;
7
-	va_list *ap;
8
+	va_list ap;
8
+	va_list ap;
9
 	
9
 
10
 	va_start(ap, (void*)format);
10
 	va_start(ap, (void*)format);
11
 	used=vsnprintf(buf, 4095, format, ap);
11
 	used=vsnprintf(buf, 4095, format, ap);
(-)ecgi/pkg-descr (-2 / +4 lines)
Lines 1-9 Link Here
1
ecgi (easy CGI Libary) is an ANSI C library for the creation of
1
ecgi (easy CGI Libary) is an ANSI C library for the creation of
2
CGI-based Web applications. It transparently supports the CGI methods
2
CGI-based Web applications. It transparently supports the CGI methods
3
GET and POST and also multipart/form-data file uploads. The user
3
GET and POST, and also multipart/form-data file uploads. The user
4
interface is designed to be as easy as possible and maintains full
4
interface is designed to be as easy as possible and maintains full
5
compatibility to cgic 0.5.
5
compatibility to cgic 0.5.
6
6
7
It also contains a library independent introduction to CGI programming
7
It also contains a library independent introduction to CGI programming
8
with C, a .html to .h HTML template preprocessor, and fast,
8
with C, an .html to .h HTML template preprocessor, and fast,
9
block-allocating memory files.
9
block-allocating memory files.
10
11
WWW: http://bsdforge.com/projects/devel/ecgi/

Return to bug 195337