Permalink
Browse files
LyX: fix build on older systems
add missing header that seems to manifest only with the gcc headers (when using stdlib=macports-libstdc++) blacklist clang version that can't build this this port closes: https://trac.macports.org/ticket/58379
- Loading branch information
Showing
with
14 additions
and 0 deletions.
| @@ -0,0 +1,10 @@ | ||
| --- src/support/AppleScriptProxy.cpp.orig 2019-04-20 11:01:31.000000000 -0700 | ||
| +++ src/support/AppleScriptProxy.cpp 2019-04-20 11:09:34.000000000 -0700 | ||
| @@ -23,6 +23,7 @@ | ||
| #include "support/debug.h" | ||
|
|
||
| #include <stdlib.h> | ||
| +#include <string.h> | ||
|
|
||
| using namespace std; | ||
| using namespace lyx; |