Andrew Geissler | fc113ea | 2023-03-31 09:59:46 -0500 | [diff] [blame^] | 1 | From 62c922f43b54585d25ba89be36c10612b479270b Mon Sep 17 00:00:00 2001 |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 2 | From: Hongxu Jia <hongxu.jia@windriver.com> |
| 3 | Date: Thu, 27 Apr 2017 02:15:02 -0400 |
Andrew Geissler | fc113ea | 2023-03-31 09:59:46 -0500 | [diff] [blame^] | 4 | Subject: [PATCH] configure.ac: remove prog test of augparse |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 5 | |
| 6 | The build time does not require it. |
| 7 | |
Andrew Geissler | 6aa7eec | 2023-03-03 12:41:14 -0600 | [diff] [blame] | 8 | Upstream-Status: Inappropriate [workaround] |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 9 | |
| 10 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> |
Andrew Geissler | fc113ea | 2023-03-31 09:59:46 -0500 | [diff] [blame^] | 11 | |
| 12 | Modify to apply to v2.17.8. |
| 13 | |
| 14 | Signed-off-by: Joe Slater <joe.slater@windriver.com> |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 15 | --- |
Andrew Geissler | fc113ea | 2023-03-31 09:59:46 -0500 | [diff] [blame^] | 16 | configure.ac | 9 --------- |
| 17 | 1 file changed, 9 deletions(-) |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 18 | |
| 19 | diff --git a/configure.ac b/configure.ac |
Andrew Geissler | fc113ea | 2023-03-31 09:59:46 -0500 | [diff] [blame^] | 20 | index 17ece200..89b463a4 100644 |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 21 | --- a/configure.ac |
| 22 | +++ b/configure.ac |
Andrew Geissler | fc113ea | 2023-03-31 09:59:46 -0500 | [diff] [blame^] | 23 | @@ -287,15 +287,6 @@ AC_ARG_WITH(largedatatmpdir, |
| 24 | [], [with_largedatatmpdir="/var/tmp"]) |
| 25 | AC_SUBST([LARGE_DATA_TMP_DIR], [$with_largedatatmpdir]) |
| 26 | |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 27 | -AC_PATH_PROG(AUGPARSE, augparse, no) |
| 28 | -[if test "$AUGPARSE" = "no"] |
| 29 | -[then] |
| 30 | - [echo "The augparse program was not found in the search path. Please ensure"] |
| 31 | - [echo "that it is installed and its directory is included in the search path."] |
| 32 | - [echo "Then run configure again before attempting to build libreport."] |
| 33 | - [exit 1] |
| 34 | -[fi] |
Andrew Geissler | fc113ea | 2023-03-31 09:59:46 -0500 | [diff] [blame^] | 35 | - |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 36 | AC_ARG_WITH([defaultdumpdirmode], |
| 37 | AS_HELP_STRING([--with-defaultdumpdirmode=OCTAL-MODE], |
Andrew Geissler | fc113ea | 2023-03-31 09:59:46 -0500 | [diff] [blame^] | 38 | [Default dump dir mode (default: 0x1A0 (0640))]), |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 39 | -- |
Andrew Geissler | fc113ea | 2023-03-31 09:59:46 -0500 | [diff] [blame^] | 40 | 2.25.1 |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 41 | |