mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +00:00
75b430129c
- Fix build on clang - Add MAKE_JOBS_UNSAFE - Add LICENSE - Add DOCS option - Bump PORTREVISION - Pet portlint PR: 191049 Submitted by: k@stereochro.me Reviewed by: cpm@fbsd.es, joemann@beefree.free.de, marino, riggs Final patch by: cpm@fbsd.es, riggs MFH: 2014Q3
21 lines
429 B
C++
21 lines
429 B
C++
--- ./src/Utility/ropeStuff.hh.orig 2014-09-03 02:27:15.000000000 +0200
|
|
+++ ./src/Utility/ropeStuff.hh 2014-09-03 02:28:58.000000000 +0200
|
|
@@ -25,6 +25,11 @@
|
|
//
|
|
#ifndef _ropeStuff_hh_
|
|
#define _ropeStuff_hh_
|
|
+#include <cstddef>
|
|
+#ifdef _LIBCPP_VERSION
|
|
+#include <string>
|
|
+typedef std::string crope;
|
|
+#else
|
|
#ifdef __GNUC__
|
|
#if __GNUC__ < 3
|
|
#include <rope.h>
|
|
@@ -50,3 +55,5 @@
|
|
#include <rope>
|
|
#endif
|
|
#endif
|
|
+
|
|
+#endif
|