From: Dan Fandrich Date: Wed, 19 Dec 2007 21:19:01 +0000 (+0000) Subject: Ensure that nroff doesn't put anything but ASCII characters into the X-Git-Tag: curl-7_18_0~143 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c3a02f54074c59ec043bc9c6fd31785d61e6d426;p=thirdparty%2Fcurl.git Ensure that nroff doesn't put anything but ASCII characters into the --manual text. --- diff --git a/CHANGES b/CHANGES index 340a4b1f52..5ec5dd0ec3 100644 --- a/CHANGES +++ b/CHANGES @@ -6,6 +6,9 @@ Changelog +Daniel Fandrich (19 Dec 2007) +- Ensure that nroff doesn't put anything but ASCII characters into the + --manual text. Yang Tse (18 Dec 2007) - MSVC 9.0 (VS2008) does not support Windows build targets prior to WinXP, diff --git a/src/Makefile.am b/src/Makefile.am index 13fad213e8..cf806abe1f 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -41,7 +41,9 @@ curl_LDADD = ../lib/libcurl.la @CURL_LIBS@ curl_DEPENDENCIES = ../lib/libcurl.la BUILT_SOURCES = hugehelp.c CLEANFILES = hugehelp.c -NROFF=@NROFF@ @MANOPT@ # figured out by the configure script +# Use the C locale to ensure that only ASCII characters appear in the +# embedded text. +NROFF=env LC_ALL=C @NROFF@ @MANOPT@ # figured out by the configure script EXTRA_DIST = mkhelp.pl makefile.dj Makefile.vc6 Makefile.b32 Makefile.m32 \ Makefile.riscos config.h.in macos/curl.mcp.xml.sit.hqx \