mirror of
https://github.com/beard7n/bsdports.git
synced 2026-04-12 11:31:18 +02:00
16 lines
373 B
C++
16 lines
373 B
C++
Build fix, at least building with libc++ fails because LC_ALL is not defined if
|
|
locale.h is not included.
|
|
|
|
Submitted upstream: http://article.gmane.org/gmane.editors.lyx.devel/152732
|
|
--- src/support/os_unix.cpp
|
|
+++ src/support/os_unix.cpp
|
|
@@ -23,6 +23,7 @@
|
|
#include "support/lassert.h"
|
|
|
|
#include <limits.h>
|
|
+#include <locale.h>
|
|
#include <stdlib.h>
|
|
|
|
#ifdef __APPLE__
|
|
|