Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | From 28b473c3c96682a820e292cc1be006e19aee11bc Mon Sep 17 00:00:00 2001 |
| 2 | From: Jackie Huang <jackie.huang@windriver.com> |
| 3 | Date: Fri, 24 May 2013 01:07:24 -0400 |
| 4 | Subject: [PATCH] lrzsz check locale.h |
| 5 | |
| 6 | fix the build failure when using -O0 in a debug build: |
| 7 | lrz.c:284:13: error: 'LC_ALL' undeclared (first use in this function) |
| 8 | |
| 9 | Upstream-Status: Submitted [uwe@ohse.de] |
| 10 | |
| 11 | Signed-off-by: Jackie Huang <jackie.huang@windriver.com> |
| 12 | Signed-off-by: Mark Hatle <mark.hatle@windriver.com> |
| 13 | --- |
| 14 | configure.in | 2 +- |
| 15 | 1 file changed, 1 insertion(+), 1 deletion(-) |
| 16 | |
| 17 | diff --git a/configure.in b/configure.in |
| 18 | index 6e2064c..c10460c 100644 |
| 19 | --- a/configure.in |
| 20 | +++ b/configure.in |
| 21 | @@ -130,7 +130,7 @@ AC_CHECK_HEADERS(fcntl.h limits.h sys/ioctl.h sys/time.h unistd.h sys/times.h) |
| 22 | LRZSZ_HEADERS_TERM_IO |
| 23 | AC_CHECK_HEADERS(termios.h sys/termios.h termio.h sys/termio.h sgtty.h) |
| 24 | AC_CHECK_HEADERS(sys/mman.h utime.h syslog.h sys/syslog.h sys/param.h) |
| 25 | -AC_CHECK_HEADERS(sys/select.h strings.h arpa/inet.h) |
| 26 | +AC_CHECK_HEADERS(sys/select.h strings.h locale.h arpa/inet.h) |
| 27 | |
| 28 | dnl Checks for typedefs, structures, and compiler characteristics. |
| 29 | AC_TYPE_SIZE_T |
| 30 | -- |
| 31 | 1.7.9.5 |
| 32 | |