summaryrefslogtreecommitdiff
path: root/Build/source/utils/asymptote
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2014-05-17 22:51:47 +0000
committerKarl Berry <karl@freefriends.org>2014-05-17 22:51:47 +0000
commitc74f44090105d239e355412add7df7adeb3efc42 (patch)
tree7bd3164f386e397f5db04c485844d53f8fc5dea3 /Build/source/utils/asymptote
parentbd09f1a3a2bca3ca48def62ab31a2d1d7d0d6d38 (diff)
asymptote 2.31
git-svn-id: svn://tug.org/texlive/trunk@34084 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/asymptote')
-rw-r--r--Build/source/utils/asymptote/runlabel.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/utils/asymptote/runlabel.cc b/Build/source/utils/asymptote/runlabel.cc
index 6e54c5dcd9e..2df1d839bfb 100644
--- a/Build/source/utils/asymptote/runlabel.cc
+++ b/Build/source/utils/asymptote/runlabel.cc
@@ -165,9 +165,9 @@ array *readpath(const string& psname, bool keep,
if(s.empty() || !gs.running()) break;
gs << newl;
-#ifdef __APPLE__
+// Workaround broken stringstream container in MacOS 10.9 libc++.
+#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__ )
for(string::iterator i=s.begin(); i != s.end(); ++i) {
- // Workaround broken stringstream container in MacOS 10.9 libc++.
if(isalpha(*i) && *i != 'e') {buf << " ";}
buf << *i;
}