View | Details | Raw Unified | Return to bug 188956
Collapse All | Expand All

(-)./Makefile (-2 / +2 lines)
Lines 2-12 Link Here
2
# $FreeBSD: head/www/cgicc/Makefile 339887 2014-01-16 03:23:23Z danilo $
2
# $FreeBSD: head/www/cgicc/Makefile 339887 2014-01-16 03:23:23Z danilo $
3
3
4
PORTNAME=	cgicc
4
PORTNAME=	cgicc
5
PORTVERSION=	3.2.12
5
PORTVERSION=	3.2.14
6
CATEGORIES=	www devel
6
CATEGORIES=	www devel
7
MASTER_SITES=	GNU
7
MASTER_SITES=	GNU
8
8
9
MAINTAINER=	ports@FreeBSD.org
9
MAINTAINER=	5u623l20@gmail.com
10
COMMENT=	C++ class library for writing CGI applications
10
COMMENT=	C++ class library for writing CGI applications
11
11
12
LICENSE=	LGPL3 # (or later)
12
LICENSE=	LGPL3 # (or later)
(-)./distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (cgicc-3.2.12.tar.gz) = 4b3789e94e77b0616d42ac3e6c80b8dab22009dcf997f69df9cd26c5b8bca9f4
1
SHA256 (cgicc-3.2.14.tar.gz) = 15a0c511c8b384ffd49fd0b7a27e026756d6373a457e0f966c8b3a987c5ce097
2
SIZE (cgicc-3.2.12.tar.gz) = 2385390
2
SIZE (cgicc-3.2.14.tar.gz) = 1400200
(-)./files/patch-warnings (-21 lines)
Lines 1-21 Link Here
1
--- demo/cardgame.cpp	2013-01-12 06:48:14.000000000 -0500
2
+++ demo/cardgame.cpp	2013-01-14 12:48:50.000000000 -0500
3
@@ -350,5 +350,5 @@
4
 		string actualCard;
5
 		bool isPlaying=false;
6
-		int points;
7
+		int points = -1;
8
 		
9
 		int vNBCardsQueue1=0;
10
@@ -1483,8 +1483,8 @@
11
       Cgicc cgi;
12
       
13
-       // Get the name and value of the cookie to set
14
-       const_form_iterator name = cgi.getElement("name");
15
+       // Get the name and value of the cookie to set XXX unused
16
+       // const_form_iterator name = cgi.getElement("name"); 
17
        
18
-       const_form_iterator value = cgi.getElement("value");
19
+       // const_form_iterator value = cgi.getElement("value");
20
        
21
        const_form_iterator actionIn = cgi.getElement("actionner");

Return to bug 188956