python-pyasn: bump to version 1.6.0b1
[buildroot-gz.git] / package / poco / 0001-poco-add-the-staging-path-to-search-path.patch
blob5695b626186c84b1990c7adaab627acb373682ee
1 From b8417607ec8840e6a1e27cf03b6958c794a33e49 Mon Sep 17 00:00:00 2001
2 From: Baruch Siach <baruch@tkos.co.il>
3 Date: Tue, 4 Aug 2015 10:14:00 +0200
4 Subject: [PATCH 1/2] poco: add the staging path to search path
5 MIME-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
9 Add the mysql headers and client libraries to the search path of the
10 preprocessor and the linker. The $MYSQL_LIBDIR / $MYSQL_INCIDR variables
11 must be set from the make command line.
13 [Peter: Remove host dirs, add MYSQL_INCDIR]
14 Signed-off-by: Baruch Siach <baruch@tkos.co.il>
15 [Jörg: Update to version 1.6.1 from github]
16 Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>
17 ---
18 Data/MySQL/Makefile | 4 ++--
19 1 file changed, 2 insertions(+), 2 deletions(-)
21 diff --git a/Data/MySQL/Makefile b/Data/MySQL/Makefile
22 index 0b18ca5..094e807 100644
23 --- a/Data/MySQL/Makefile
24 +++ b/Data/MySQL/Makefile
25 @@ -8,8 +8,8 @@
27 include $(POCO_BASE)/build/rules/global
29 -SYSLIBS += -L/usr/local/lib$(LIB64SUFFIX)/mysql -L/usr/lib$(LIB64SUFFIX)/mysql -L/usr/mysql/lib$(LIB64SUFFIX) -L/usr/mysql/lib$(LIB64SUFFIX)/mysql -L/usr/local/mysql/lib$(LIB64SUFFIX) -lmysqlclient
30 -INCLUDE += -I/usr/local/include/mysql/ -I/usr/include/mysql/ -I/usr/mysql/include/mysql -I/usr/local/mysql/include
31 +SYSLIBS += -L$(MYSQL_LIBDIR) -lmysqlclient
32 +INCLUDE += -I$(MYSQL_INCDIR)
33 SYSFLAGS += -DTHREADSAFE -DNO_TCL
35 objects = Binder Extractor SessionImpl Connector \
36 --
37 2.5.0