blob: dadefec33a327eb0eb2369f281b2fd8b061d3fc4 [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001The original use of AC_ARG_WITH is buggy and causes expat support
2to be *disabled* if "--with-expat" is passed to configure.
3
Patrick Williamsb9af8752023-01-30 13:28:01 -06004Upstream-Status: Pending
Patrick Williamsb48b7b42016-08-17 15:04:38 -05005
6Index: log4c-1.2.4/configure.in
7===================================================================
8--- log4c-1.2.4.orig/configure.in
9+++ log4c-1.2.4/configure.in
10@@ -217,9 +217,9 @@ AC_ARG_WITH(expat,
11 have any effect and Log4C uses some bundled yacc/lex code
12 for parsing it's configuration file.
13 ]),
14- with_expat=no,
15+ [],
16 with_expat=yes)
17-if test x$with_expat = xyes ; then
18+if test x$with_expat != xno ; then
19 use_expat=yes
20 AM_PATH_EXPAT(1.95.1)
21 fi