Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 13 Sep 2013 02:52:44 +0000 (UTC)
From:      Kevin Lo <kevlo@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r327130 - in head/www/htmlcxx: . files
Message-ID:  <201309130252.r8D2qils021251@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kevlo
Date: Fri Sep 13 02:52:43 2013
New Revision: 327130
URL: http://svnweb.freebsd.org/changeset/ports/327130

Log:
  - Fix build with clang
  - Mark jobs unsafe

Added:
  head/www/htmlcxx/files/patch-ci_string.h   (contents, props changed)
Modified:
  head/www/htmlcxx/Makefile

Modified: head/www/htmlcxx/Makefile
==============================================================================
--- head/www/htmlcxx/Makefile	Fri Sep 13 02:44:46 2013	(r327129)
+++ head/www/htmlcxx/Makefile	Fri Sep 13 02:52:43 2013	(r327130)
@@ -19,6 +19,8 @@ GNU_CONFIGURE=	yes
 CPPFLAGS+=	-I${LOCALBASE}/include
 LDFLAGS+=	-L${LOCALBASE}/lib
 
+MAKE_JOBS_UNSAFE=yes
+
 MAKE_ARGS=	pkgconfigdir="${PREFIX}/libdata/pkgconfig"
 
 .include <bsd.port.mk>

Added: head/www/htmlcxx/files/patch-ci_string.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/htmlcxx/files/patch-ci_string.h	Fri Sep 13 02:52:43 2013	(r327130)
@@ -0,0 +1,19 @@
+--- html/ci_string.h.orig	2013-09-13 10:48:21.000000000 +0800
++++ html/ci_string.h	2013-09-13 10:48:35.000000000 +0800
+@@ -4,16 +4,7 @@
+ #include <cctype>
+ #include <string>
+ 
+-#if __GNUC__ >= 3
+-#include <bits/char_traits.h>
+ struct ci_char_traits : public std::char_traits<char>
+-#elif defined(__GNUC__)
+-#include <std/straits.h>
+-struct ci_char_traits : public std::string_char_traits<char>
+-#else 
+-//Hope string already include it
+-struct ci_char_traits : public std::char_traits<char>
+-#endif
+ 
+ // just inherit all the other functions
+ //  that we don't need to override



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201309130252.r8D2qils021251>