summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/log4c/log4c/fix_configure_with-expat.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe/recipes-support/log4c/log4c/fix_configure_with-expat.patch')
-rw-r--r--meta-oe/recipes-support/log4c/log4c/fix_configure_with-expat.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/log4c/log4c/fix_configure_with-expat.patch b/meta-oe/recipes-support/log4c/log4c/fix_configure_with-expat.patch
new file mode 100644
index 000000000..4872eb4f5
--- /dev/null
+++ b/meta-oe/recipes-support/log4c/log4c/fix_configure_with-expat.patch
@@ -0,0 +1,21 @@
1The original use of AC_ARG_WITH is buggy and causes expat support
2to be *disabled* if "--with-expat" is passed to configure.
3
4Upstream status: pending
5
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