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

(-)www/suphp/Makefile (-1 / +1 lines)
Lines 7-13 Link Here
7
7
8
PORTNAME=	suphp
8
PORTNAME=	suphp
9
PORTVERSION=	0.7.1
9
PORTVERSION=	0.7.1
10
PORTREVISION=	5
10
PORTREVISION=	6
11
CATEGORIES=	www
11
CATEGORIES=	www
12
MASTER_SITES=	http://www.suphp.org/download/ \
12
MASTER_SITES=	http://www.suphp.org/download/ \
13
		${MASTER_SITE_LOCAL:S|%SUBDIR%|koitsu|}
13
		${MASTER_SITE_LOCAL:S|%SUBDIR%|koitsu|}
(-)www/suphp/files/patch-src_SmartPtr.hpp (+15 lines)
Added Link Here
1
$NetBSD: patch-src_SmartPtr.hpp,v 1.1 2011/09/21 12:54:16 adam Exp $
2
3
Fix C++ syntax
4
5
--- src/SmartPtr.hpp.orig	2011-09-21 12:48:02.000000000 +0000
6
+++ src/SmartPtr.hpp
7
@@ -150,7 +150,7 @@ namespace suPHP {
8
     template<class T>
9
     const SmartPtr<T>& suPHP::SmartPtr<T>::operator=(
10
         const SmartPtr<T>& ref) {
11
-        this.reset(ref.ptr);
12
+        this->reset(ref.ptr);
13
         return *this;
14
     }
15

Return to bug 168579