Browse Source

mysql: disable SSP for ppc (toolchain issue?)

Signed-off-by: Steven Barth <steven@midlink.org>
Steven Barth 9 years ago
parent
commit
e1e671139c
2 changed files with 6 additions and 1 deletions
  1. 1
    1
      libs/libgcrypt/Makefile
  2. 5
    0
      utils/mysql/Makefile

+ 1
- 1
libs/libgcrypt/Makefile View File

15
 PKG_SOURCE_URL:=ftp://ftp.gnupg.org/gcrypt/libgcrypt
15
 PKG_SOURCE_URL:=ftp://ftp.gnupg.org/gcrypt/libgcrypt
16
 PKG_MD5SUM:=a5a5060dc2f80bcac700ab0236ea47dc
16
 PKG_MD5SUM:=a5a5060dc2f80bcac700ab0236ea47dc
17
 
17
 
18
-PKG_FIXUP:=patch-libtool
18
+PKG_FIXUP:=autoreconf
19
 PKG_INSTALL:=1
19
 PKG_INSTALL:=1
20
 PKG_BUILD_PARALLEL:=1
20
 PKG_BUILD_PARALLEL:=1
21
 
21
 

+ 5
- 0
utils/mysql/Makefile View File

62
   TARGET_CXX=g++-uc
62
   TARGET_CXX=g++-uc
63
 endif
63
 endif
64
 
64
 
65
+ifeq ($(ARCH),powerpc)
66
+  TARGET_CFLAGS += -fno-stack-protector
67
+endif
68
+
69
+
65
 TARGET_CFLAGS += $(FPIC)
70
 TARGET_CFLAGS += $(FPIC)
66
 
71
 
67
 CONFIGURE_ARGS += \
72
 CONFIGURE_ARGS += \