aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorhasufell2013-02-01 19:31:15 +0100
committerhasufell2013-02-01 19:31:15 +0100
commitb65365e0d314bff91f5fb3c4fbdd3da7944ea7a2 (patch)
treea0bebe6ba718ee0536e2c35b133d3d8a1b7da723 /configure
parentcef07f30d8fda37b5f03e7488f09aa0795dc57e1 (diff)
downloadscummvm-rg350-b65365e0d314bff91f5fb3c4fbdd3da7944ea7a2.tar.gz
scummvm-rg350-b65365e0d314bff91f5fb3c4fbdd3da7944ea7a2.tar.bz2
scummvm-rg350-b65365e0d314bff91f5fb3c4fbdd3da7944ea7a2.zip
CONFIGURE: Fix build under et_EE locale
Freetype-config reports a broken include dir when et_EE locale is used. We set LC_ALL and LANGUAGE to "C" explicitly like autoconf does to force consistent behavior.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure b/configure
index 91364eb304..3b8b845593 100755
--- a/configure
+++ b/configure
@@ -21,6 +21,12 @@
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
+# NLS nuisances.
+LC_ALL=C
+export LC_ALL
+LANGUAGE=C
+export LANGUAGE
+
# Save the current environment variables for next runs
SAVED_CONFIGFLAGS=$@
SAVED_LDFLAGS=$LDFLAGS