summaryrefslogtreecommitdiffstats
path: root/external/meta-openembedded/meta-oe/recipes-support/onig/files/do-not-use-system-headers.patch
blob: b93602a268a5f40574e598d4b0ea75ad566970cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Author: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>

When build on host with older eglibc (Ubuntu 12.04) build fails with:

/tmp/OE/build/tmp-eglibc/sysroots/genericarmv8/usr/include/bits/predefs.h:23:3: error: #error "Never use <bits/predefs.h> directly; include <stdc-predef.h> instead."

Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>

Upstream-Status: Inappropriate [embedded specific]

---
 Makefile.am        |    2 +-
 sample/Makefile.am |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

--- onig-5.9.3.orig/Makefile.am
+++ onig-5.9.3/Makefile.am
@@ -4,11 +4,11 @@ sampledir = $(top_srcdir)/sample
 libname = libonig.la

 ACLOCAL_AMFLAGS = -I m4
 #AM_CFLAGS = -DNOT_RUBY
 AM_CFLAGS =
-INCLUDES  = -I$(top_srcdir) -I$(includedir)
+INCLUDES  = -I$(top_srcdir)

 SUBDIRS = . sample

 include_HEADERS = oniguruma.h oniggnu.h onigposix.h
 lib_LTLIBRARIES = $(libname)
--- onig-5.9.3.orig/sample/Makefile.am
+++ onig-5.9.3/sample/Makefile.am
@@ -1,10 +1,10 @@
 noinst_PROGRAMS = encode listcap names posix simple sql syntax crnl

 libname = $(top_builddir)/libonig.la
 LDADD   = $(libname)
-INCLUDES  = -I$(top_srcdir) -I$(includedir)
+INCLUDES  = -I$(top_srcdir)

 encode_SOURCES  = encode.c
 listcap_SOURCES = listcap.c
 names_SOURCES   = names.c
 posix_SOURCES   = posix.c