diff options
Diffstat (limited to 'meta-networking/recipes-support/dnsmasq/dnsmasq/lua.patch')
-rw-r--r-- | meta-networking/recipes-support/dnsmasq/dnsmasq/lua.patch | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/meta-networking/recipes-support/dnsmasq/dnsmasq/lua.patch b/meta-networking/recipes-support/dnsmasq/dnsmasq/lua.patch new file mode 100644 index 0000000000..aac7b97a16 --- /dev/null +++ b/meta-networking/recipes-support/dnsmasq/dnsmasq/lua.patch | |||
@@ -0,0 +1,16 @@ | |||
1 | Upstream-status: Inappropriate [OE specific] | ||
2 | Signed-off-by: Christopher Larson <chris_larson@mentor.com> | ||
3 | |||
4 | --- dnsmasq-2.68.orig/Makefile 2014-08-11 09:05:17.000000000 -0700 | ||
5 | +++ dnsmasq-2.68/Makefile 2014-08-11 09:05:51.930648617 -0700 | ||
6 | @@ -57,8 +57,8 @@ | ||
7 | idn_libs = `echo $(COPTS) | $(top)/bld/pkg-wrapper HAVE_IDN $(PKG_CONFIG) --libs libidn` | ||
8 | ct_cflags = `echo $(COPTS) | $(top)/bld/pkg-wrapper HAVE_CONNTRACK $(PKG_CONFIG) --cflags libnetfilter_conntrack` | ||
9 | ct_libs = `echo $(COPTS) | $(top)/bld/pkg-wrapper HAVE_CONNTRACK $(PKG_CONFIG) --libs libnetfilter_conntrack` | ||
10 | -lua_cflags = `echo $(COPTS) | $(top)/bld/pkg-wrapper HAVE_LUASCRIPT $(PKG_CONFIG) --cflags lua5.1` | ||
11 | -lua_libs = `echo $(COPTS) | $(top)/bld/pkg-wrapper HAVE_LUASCRIPT $(PKG_CONFIG) --libs lua5.1` | ||
12 | +lua_cflags = `echo $(COPTS) | $(top)/bld/pkg-wrapper HAVE_LUASCRIPT $(PKG_CONFIG) --cflags lua` | ||
13 | +lua_libs = `echo $(COPTS) | $(top)/bld/pkg-wrapper HAVE_LUASCRIPT $(PKG_CONFIG) --libs lua` | ||
14 | sunos_libs = `if uname | grep SunOS >/dev/null 2>&1; then echo -lsocket -lnsl -lposix4; fi` | ||
15 | version = -DVERSION='\"`$(top)/bld/get-version $(top)`\"' | ||
16 | |||