code
string
repo_name
string
path
string
language
string
license
string
size
int64
config BR2_PACKAGE_MTOOLS bool "mtools" depends on BR2_USE_WCHAR depends on BR2_USE_MMU # fork() help Mtools is a collection of utilities to access MS-DOS disks from Unix without mounting them. It supports Win'95 style long file names, OS/2 Xdf disks and 2m disks (store up to 1992k on a high density 3 1/2 disk). http://www.gnu.org/software/mtools/ comment "mtools needs a toolchain w/ wchar" depends on !BR2_USE_WCHAR depends on BR2_USE_MMU
shibajee/buildroot
package/mtools/Config.in
in
mit
466
config BR2_PACKAGE_HOST_MTOOLS bool "host mtools" help Mtools is a collection of utilities to access MS-DOS disks from Unix without mounting them. It supports Win'95 style long file names, OS/2 Xdf disks and 2m disks (store up to 1992k on a high density 3 1/2 disk). http://www.gnu.org/software/mtools/
shibajee/buildroot
package/mtools/Config.in.host
host
mit
321
# Locally calculated after checking pgp signature sha256 59e9cf80885399c4f229e5d87e49c0c2bfeec044e1386d59fcd0b0aead6b2f85 mtools-4.0.18.tar.bz2
shibajee/buildroot
package/mtools/mtools.hash
hash
mit
144
################################################################################ # # mtools # ################################################################################ MTOOLS_VERSION = 4.0.18 MTOOLS_SOURCE = mtools-$(MTOOLS_VERSION).tar.bz2 MTOOLS_SITE = $(BR2_GNU_MIRROR)/mtools MTOOLS_LICENSE = GPLv3+ MTOOLS_LICENSE_FILES = COPYING MTOOLS_CONF_OPTS = --without-x # info documentation not needed MTOOLS_CONF_ENV = \ ac_cv_func_setpgrp_void=yes \ ac_cv_path_INSTALL_INFO= HOST_MTOOLS_CONF_ENV = \ ac_cv_path_INSTALL_INFO= # link with iconv if enabled ifeq ($(BR2_PACKAGE_LIBICONV),y) MTOOLS_DEPENDENCIES += libiconv MTOOLS_CONF_ENV += LIBS=-liconv endif # Package does not build in parallel due to improper make rules MTOOLS_MAKE = $(MAKE1) $(eval $(autotools-package)) $(eval $(host-autotools-package))
shibajee/buildroot
package/mtools/mtools.mk
mk
mit
820
config BR2_PACKAGE_MTR bool "mtr" depends on BR2_USE_MMU # fork() help mtr combines the functionality of the 'traceroute' and 'ping' programs in a single network diagnostic tool. http://www.bitwizard.nl/mtr/
shibajee/buildroot
package/mtr/Config.in
in
mit
221
# Locally calculated sha256 12a6a94c0ec04d508de27eda5f5ba91f50d4b5fe74a98aca0973e2c16a42555a mtr-66de3ecbab28b054b868a73fbb57f30549d770ac.tar.gz
shibajee/buildroot
package/mtr/mtr.hash
hash
mit
145
################################################################################ # # mtr # ################################################################################ MTR_VERSION = 66de3ecbab28b054b868a73fbb57f30549d770ac MTR_SITE = $(call github,traviscross,mtr,$(MTR_VERSION)) MTR_AUTORECONF = YES MTR_CONF_OPTS = --without-gtk MTR_DEPENDENCIES = host-pkgconf $(if $(BR2_PACKAGE_NCURSES),ncurses) MTR_LICENSE = GPLv2 MTR_LICENSE_FILES = COPYING $(eval $(autotools-package))
shibajee/buildroot
package/mtr/mtr.mk
mk
mit
483
Makefile: link with pthread Otherwise building multicat in a static context fails: aggregartp.c:381: undefined reference to `pthread_self' Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> Sent upstream: https://mailman.videolan.org/pipermail/multicat-devel/2016-March/000125.html diff -purN multicat-2.1.orig/Makefile multicat-2.1/Makefile --- multicat-2.1.orig/Makefile 2015-10-05 18:36:29.000000000 +0200 +++ multicat-2.1/Makefile 2016-03-19 21:47:59.467745127 +0100 @@ -4,7 +4,7 @@ VERSION = 2.1 CFLAGS += -Wall -Wformat-security -O3 -fomit-frame-pointer -D_FILE_OFFSET_BITS=64 -D_ISOC99_SOURCE -D_BSD_SOURCE CFLAGS += -g # Comment out the following line for Mac OS X build -LDLIBS += -lrt +LDLIBS += -lrt -pthread OBJ_MULTICAT = multicat.o util.o OBJ_INGESTS = ingests.o util.o
shibajee/buildroot
package/multicat/0001-Fix-missing-pthread.patch
patch
mit
803
Fix musl build Defining _GNU_SOURCE is required to get proper member names in `struct udphdr` when building against musl. Build error: util.c: In function 'RawFillHeaders': util.c:481:9: error: 'struct udphdr' has no member named 'source' udph->source = htons(portsrc); ^ util.c:482:9: error: 'struct udphdr' has no member named 'dest' udph->dest = htons(portdst); ^ util.c:483:9: error: 'struct udphdr' has no member named 'len' udph->len = htons(sizeof(struct udphdr) + len); ^ util.c:484:9: error: 'struct udphdr' has no member named 'check' udph->check = 0; Including <sys/types.h> in needed for mode_t, otherwise musl build fails: util.h:91:1: error: unknown type name 'mode_t' Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> Sent upstream: https://mailman.videolan.org/pipermail/multicat-devel/2016-March/000126.html diff -purN multicat-2.1.orig/util.c multicat-2.1/util.c --- multicat-2.1.orig/util.c 2015-07-17 18:03:17.000000000 +0200 +++ multicat-2.1/util.c 2016-03-19 22:21:01.110178772 +0100 @@ -21,6 +21,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ +#define _GNU_SOURCE + #include <stdlib.h> #include <stdio.h> #include <stdint.h> diff -purN multicat-2.1.orig/util.h multicat-2.1/util.h --- multicat-2.1.orig/util.h 2015-07-15 22:47:39.000000000 +0200 +++ multicat-2.1/util.h 2016-03-19 22:21:58.649834990 +0100 @@ -21,6 +21,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. *****************************************************************************/ +#include <sys/types.h> #include <netinet/udp.h> #include <netinet/ip.h>
shibajee/buildroot
package/multicat/0002-Fix-musl-build.patch
patch
mit
1,807
uClibc may be configured without support for clock_nanosleep(). The function is only available with uClibc if the C library is build with NPTL support (sets __UCLIBC_HAS_THREADS_NATIVE__) and __UCLIBC_HAS_ADVANCED_REALTIME__ set. Upstream status: Pending https://mailman.videolan.org/pipermail/multicat-devel/2016-March/000129.html Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks> diff -purN multicat-2.1.orig/util.h multicat-2.1/util.h --- multicat-2.1.orig/util.h 2015-07-15 22:47:39.000000000 +0200 +++ multicat-2.1/util.h 2016-03-20 18:13:51.899780405 +0100 @@ -26,7 +26,10 @@ #ifdef __APPLE__ #define POLLRDHUP 0 -#else +/* uClibc may not have clock_nanosleep() available */ +#elif !defined (__UCLIBC__) || \ + defined (__UCLIBC__) && defined (__UCLIBC_HAS_THREADS_NATIVE__) \ + && defined (__UCLIBC_HAS_ADVANCED_REALTIME__) #define HAVE_CLOCK_NANOSLEEP #endif
shibajee/buildroot
package/multicat/0003-Fix-have-clock-nanosleep-with-uclibc.patch
patch
mit
919
config BR2_PACKAGE_MULTICAT bool "multicat" depends on BR2_TOOLCHAIN_HAS_THREADS select BR2_PACKAGE_BITSTREAM help Simple and efficient multicast and transport stream manipulation. http://www.videolan.org/projects/multicat.html comment "multicat needs a toolchain w/ threads" depends on !BR2_TOOLCHAIN_HAS_THREADS
shibajee/buildroot
package/multicat/Config.in
in
mit
327
# from https://get.videolan.org/multicat/2.1/multicat-2.1.tar.bz2.md5 md5 2e3ecd8dee64f5bd32a61733d4cc2226 multicat-2.1.tar.bz2 # locally calculated sha256 5eabe8d9a3dde452b2d348683cc7da213680551a9d4059c356f7319c6aa9b3d1 multicat-2.1.tar.bz2
shibajee/buildroot
package/multicat/multicat.hash
hash
mit
242
################################################################################ # # multicat # ################################################################################ MULTICAT_VERSION = 2.1 MULTICAT_SOURCE = multicat-$(MULTICAT_VERSION).tar.bz2 MULTICAT_SITE = https://get.videolan.org/multicat/$(MULTICAT_VERSION) MULTICAT_LICENSE = GPLv2+ MULTICAT_LICENSE_FILES = COPYING MULTICAT_DEPENDENCIES = bitstream MULTICAT_MAKE_ENV = $(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) define MULTICAT_BUILD_CMDS $(MULTICAT_MAKE_ENV) $(MAKE) -C $(@D) endef define MULTICAT_INSTALL_TARGET_CMDS $(MULTICAT_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) PREFIX=/usr install endef $(eval $(generic-package))
shibajee/buildroot
package/multicat/multicat.mk
mk
mit
710
Fixup installation of shared mpcdec library. Based on gentoo patch. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> --- diff -Nura musepack_src_r475.orig/libmpcdec/CMakeLists.txt musepack_src_r475/libmpcdec/CMakeLists.txt --- musepack_src_r475.orig/libmpcdec/CMakeLists.txt 2010-08-21 12:55:01.000000000 -0300 +++ musepack_src_r475/libmpcdec/CMakeLists.txt 2011-08-17 15:53:06.126873408 -0300 @@ -1,7 +1,12 @@ include_directories(${libmpc_SOURCE_DIR}/include) if(SHARED) - add_library(mpcdec SHARED huffman mpc_decoder mpc_reader streaminfo mpc_bits_reader mpc_demux requant synth_filter ${libmpc_SOURCE_DIR}/common/crc32) + add_library(mpcdec_shared SHARED huffman mpc_decoder mpc_reader streaminfo mpc_bits_reader mpc_demux requant synth_filter ${libmpc_SOURCE_DIR}/common/crc32) + set_target_properties(mpcdec_shared PROPERTIES OUTPUT_NAME mpcdec CLEAN_DIRECT_OUTPUT 1 VERSION 7.0.1 SOVERSION 7) + target_link_libraries(mpcdec_shared m) + install(TARGETS mpcdec_shared LIBRARY DESTINATION "lib${LIB_SUFFIX}" ARCHIVE DESTINATION "lib${LIB_SUFFIX}") else(SHARED) add_library(mpcdec_static STATIC huffman mpc_decoder mpc_reader streaminfo mpc_bits_reader mpc_demux requant synth_filter ${libmpc_SOURCE_DIR}/common/crc32) + set_target_properties(mpcdec_static PROPERTIES OUTPUT_NAME mpcdec CLEAN_DIRECT_OUTPUT 1) + target_link_libraries(mpcdec_static m) + install(TARGETS mpcdec_static LIBRARY DESTINATION "lib${LIB_SUFFIX}" ARCHIVE DESTINATION "lib${LIB_SUFFIX}") endif(SHARED) -
shibajee/buildroot
package/musepack/0001-shared.patch
patch
mit
1,507
From d2f01ba6fa2a065156fad686d1849309c661e527 Mon Sep 17 00:00:00 2001 From: Samuel Martin <s.martin49@gmail.com> Date: Sun, 31 Aug 2014 12:07:31 +0200 Subject: [PATCH 2/2] cmake: use the standard CMake flag to drive the shared object build If BUILD_SHARED_LIBS is set and SHARED undefined, then drive SHARED with the BUILD_SHARED_LIBS value. Signed-off-by: Samuel Martin <s.martin49@gmail.com> --- CMakeLists.txt | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b13f78c..db75510 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,11 +7,16 @@ project(libmpc C) set(CMAKE_VERBOSE_MAKEFILE false) TEST_BIG_ENDIAN(MPC_ENDIANNESS) -if(WIN32) - option(SHARED "Use shared libmpcdec" OFF) -else(WIN32) - option(SHARED "Use shared libmpcdec" ON) -endif(WIN32) +# Use the standard CMake flag to drive the shared object build. +if(DEFINED BUILD_SHARED_LIBS AND NOT DEFINED SHARED) + set(SHARED ${BUILD_SHARED_LIBS}) +else() + if(WIN32) + option(SHARED "Use shared libmpcdec" OFF) + else(WIN32) + option(SHARED "Use shared libmpcdec" ON) + endif(WIN32) +endif() add_definitions(-DFAST_MATH -DCVD_FASTLOG) -- 2.1.0
shibajee/buildroot
package/musepack/0002-cmake-use-the-standard-CMake-flag-to-drive-the-share.patch
patch
mit
1,208
Include <fpu_control.h> only on glibc systems The <fpu_control.h> header provides _FPU_*() macros, which the Init_FPU() function uses only on i386, and only when they are defined. Since <fpu_control.h> is not available, this causes a build failure with C libraries such as musl. By simply including <fpu_control.h> explicitly on glibc systems, we avoid the build failure, since mpcenc.c already conditionally uses the <fpu_control.h> macros only if they are defined. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> [Thomas: better commit log.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> diff -uNr musepack_src_r475.org/mpcenc/mpcenc.h musepack_src_r475/mpcenc/mpcenc.h --- musepack_src_r475.org/mpcenc/mpcenc.h 2009-02-23 19:15:46.000000000 +0100 +++ musepack_src_r475/mpcenc/mpcenc.h 2016-01-30 09:29:08.000000000 +0100 @@ -50,7 +51,7 @@ # include <unistd.h> #endif -#if defined __linux__ +#if defined __GLIBC__ # include <fpu_control.h> #elif defined __FreeBSD__ # include <machine/floatingpoint.h>
shibajee/buildroot
package/musepack/0003-include-fpu-control-with-glibc-only.patch
patch
mit
1,048
Add missing <sys/select.h> include This header is needed when types like fd_set are used. This fixes a build issue occuring on the musl C library. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> [Thomas: better commit log.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Index: b/mpcenc/mpcenc.h =================================================================== --- a/mpcenc/mpcenc.h +++ b/mpcenc/mpcenc.h @@ -34,6 +34,7 @@ //// portable system includes ////////////////////////////////////// #include <stddef.h> #include <math.h> +#include <sys/select.h> //// system dependent system includes ////////////////////////////// // low level I/O, where are prototypes and constants?
shibajee/buildroot
package/musepack/0004-missing-sys-select.patch
patch
mit
719
config BR2_PACKAGE_MUSEPACK bool "musepack" select BR2_PACKAGE_LIBCUEFILE select BR2_PACKAGE_LIBREPLAYGAIN help Musepack is an audio compression format with a strong emphasis on high quality. It's not lossless, but it is designed for transparency, so that you won't be able to hear differences between the original wave file and the much smaller MPC file. http://www.musepack.net/
shibajee/buildroot
package/musepack/Config.in
in
mit
401
# From https://www.musepack.net/index.php?pg=src md5 754d67be67f713e54baf70fcfdb2817e musepack_src_r475.tar.gz # Calculated based on the hash above sha256 a4b1742f997f83e1056142d556a8c20845ba764b70365ff9ccf2e3f81c427b2b musepack_src_r475.tar.gz
shibajee/buildroot
package/musepack/musepack.hash
hash
mit
245
################################################################################ # # musepack # ################################################################################ MUSEPACK_VERSION = r475 MUSEPACK_SITE = http://files.musepack.net/source MUSEPACK_SOURCE = musepack_src_$(MUSEPACK_VERSION).tar.gz MUSEPACK_DEPENDENCIES = libcuefile libreplaygain MUSEPACK_INSTALL_STAGING = YES MUSEPACK_MAKE = $(MAKE1) MUSEPACK_LICENSE = BSD-3c (*mpcdec), LGPLv2.1+ (*mpcenc) MUSEPACK_LICENSE_FILES = libmpcdec/COPYING libmpcenc/quant.c $(eval $(cmake-package))
shibajee/buildroot
package/musepack/musepack.mk
mk
mit
558
config BR2_PACKAGE_MUSL_COMPAT_HEADERS bool
shibajee/buildroot
package/musl-compat-headers/Config.in
in
mit
45
/* Copyright (C) 2016 Yann E. MORIN <yann.morin.1998@free.fr> * * This file is in the Public Domain. * * For jurisdictions in which the Public Domain does not exist * or it is not otherwise applicable, this file is licensed CC0 * (Creative Commons Zero). */ /* This file contains definitions for non-standard macros defined by * glibc, but quite commonly used in packages. * * Because they are non-standard, musl does not define those macros. * It does not provide cdefs.h either. * * This file is a compatibility header written from scratch, to be * installed when the C library is musl. * * Not all macros from the glibc's cdefs.h are available, only the * most commonly used ones. * * Please refer to the glibc documentation and source code for * explanations about those macros. */ #ifndef BUILDROOT_SYS_CDEFS_H #define BUILDROOT_SYS_CDEFS_H /* Function prototypes. */ #undef __P #define __P(arg) arg /* C declarations in C++ mode. */ #ifdef __cplusplus # define __BEGIN_DECLS extern "C" { # define __END_DECLS } #else # define __BEGIN_DECLS # define __END_DECLS #endif /* Don't throw exceptions in C functions. */ #ifndef __cplusplus # define __THROW __attribute__ ((__nothrow__)) # define __NTH(f) __attribute__ ((__nothrow__)) f #else # define __THROW # define __NTH(f) f #endif #endif /* ifndef BUILDROOT_SYS_CDEFS_H */
shibajee/buildroot
package/musl-compat-headers/cdefs.h
C++
mit
1,358
# Locally calculated sha256 c13407edd0e33be73cae72514cb234f8612e1c0e54401c9448daffd3a240158b queue.h?rev=1.70
shibajee/buildroot
package/musl-compat-headers/musl-compat-headers.hash
hash
mit
111
################################################################################ # # musl-compat-headers # ################################################################################ # No main site, just using extra downloads MUSL_COMPAT_HEADERS_QUEUE_H = http://cvsweb.netbsd.org/bsdweb.cgi/src/sys/sys/queue.h?rev=1.70 MUSL_COMPAT_HEADERS_EXTRA_DOWNLOADS = $(MUSL_COMPAT_HEADERS_QUEUE_H) MUSL_COMPAT_HEADERS_LICENSE = BSD-3c, Public Domain or CC0 MUSL_COMPAT_HEADERS_LICENSE_FILES = queue.h cdefs.h MUSL_COMPAT_HEADERS_ADD_TOOLCHAIN_DEPENDENCY = NO # Only installs headers MUSL_COMPAT_HEADERS_INSTALL_TARGET = NO MUSL_COMPAT_HEADERS_INSTALL_STAGING = YES # Copying both headers so legal-info finds them (they are _LICENSE_FILES) define MUSL_COMPAT_HEADERS_EXTRACT_CMDS $(INSTALL) -m 0644 -D $(DL_DIR)/$(notdir $(MUSL_COMPAT_HEADERS_QUEUE_H)) $(@D)/queue.h $(INSTALL) -m 0644 -D $(MUSL_COMPAT_HEADERS_PKGDIR)/cdefs.h $(@D)/cdefs.h endef define MUSL_COMPAT_HEADERS_INSTALL_STAGING_CMDS $(INSTALL) -D -m 0644 $(@D)/queue.h \ $(STAGING_DIR)/usr/include/sys/queue.h $(INSTALL) -D -m 0644 $(@D)/cdefs.h \ $(STAGING_DIR)/usr/include/sys/cdefs.h endef $(eval $(generic-package))
shibajee/buildroot
package/musl-compat-headers/musl-compat-headers.mk
mk
mit
1,194
From cff5747c74c41b22f1ce1340978b1c226a8cdf32 Mon Sep 17 00:00:00 2001 From: Rich Felker <dalias@aerifal.cx> Date: Wed, 13 Jul 2016 15:04:30 -0400 Subject: [PATCH] fix regression in tcsetattr on all mips archs revert commit 8c316e9e49d37ad92c2e7493e16166a2afca419f. it was wrong and does not match how the kernel API works. Signed-off-by: Rich Felker <dalias@aerifal.cx> Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> --- arch/mips/bits/termios.h | 6 +++--- arch/mips64/bits/termios.h | 6 +++--- arch/mipsn32/bits/termios.h | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/arch/mips/bits/termios.h b/arch/mips/bits/termios.h index f559f76..6a1205d 100644 --- a/arch/mips/bits/termios.h +++ b/arch/mips/bits/termios.h @@ -141,9 +141,9 @@ struct termios { #define TCOFLUSH 1 #define TCIOFLUSH 2 -#define TCSANOW 0x540e -#define TCSADRAIN 0x540f -#define TCSAFLUSH 0x5410 +#define TCSANOW 0 +#define TCSADRAIN 1 +#define TCSAFLUSH 2 #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) #define EXTA 0000016 diff --git a/arch/mips64/bits/termios.h b/arch/mips64/bits/termios.h index f559f76..6a1205d 100644 --- a/arch/mips64/bits/termios.h +++ b/arch/mips64/bits/termios.h @@ -141,9 +141,9 @@ struct termios { #define TCOFLUSH 1 #define TCIOFLUSH 2 -#define TCSANOW 0x540e -#define TCSADRAIN 0x540f -#define TCSAFLUSH 0x5410 +#define TCSANOW 0 +#define TCSADRAIN 1 +#define TCSAFLUSH 2 #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) #define EXTA 0000016 diff --git a/arch/mipsn32/bits/termios.h b/arch/mipsn32/bits/termios.h index f559f76..6a1205d 100644 --- a/arch/mipsn32/bits/termios.h +++ b/arch/mipsn32/bits/termios.h @@ -141,9 +141,9 @@ struct termios { #define TCOFLUSH 1 #define TCIOFLUSH 2 -#define TCSANOW 0x540e -#define TCSADRAIN 0x540f -#define TCSAFLUSH 0x5410 +#define TCSANOW 0 +#define TCSADRAIN 1 +#define TCSAFLUSH 2 #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) #define EXTA 0000016
shibajee/buildroot
package/musl/0001-fix-regression-in-tcsetattr-on-all-mips-archs.patch
patch
mit
1,981
config BR2_PACKAGE_MUSL bool depends on BR2_TOOLCHAIN_USES_MUSL default y select BR2_PACKAGE_LINUX_HEADERS select BR2_TOOLCHAIN_HAS_SSP # Compatibility headers: cdefs.h, queue.h select BR2_PACKAGE_MUSL_COMPAT_HEADERS
shibajee/buildroot
package/musl/Config.in
in
mit
224
# Locally calculated after checking pgp signature sha256 97e447c7ee2a7f613186ec54a93054fe15469fe34d7d323080f7ef38f5ecb0fa musl-1.1.15.tar.gz
shibajee/buildroot
package/musl/musl.hash
hash
mit
142
################################################################################ # # musl # ################################################################################ MUSL_VERSION = 1.1.15 MUSL_SITE = http://www.musl-libc.org/releases MUSL_LICENSE = MIT MUSL_LICENSE_FILES = COPYRIGHT # Before musl is configured, we must have the first stage # cross-compiler and the kernel headers MUSL_DEPENDENCIES = host-gcc-initial linux-headers # musl does not provide an implementation for sys/queue.h or sys/cdefs.h. # So, add the musl-compat-headers package that will install those files, # into the staging directory: # sys/queue.h: header from NetBSD # sys/cdefs.h: minimalist header bundled in Buildroot MUSL_DEPENDENCIES += musl-compat-headers # musl is part of the toolchain so disable the toolchain dependency MUSL_ADD_TOOLCHAIN_DEPENDENCY = NO MUSL_INSTALL_STAGING = YES # Thumb build is broken, build in ARM mode, since all architectures # that support Thumb1 also support ARM. ifeq ($(BR2_ARM_INSTRUCTIONS_THUMB),y) MUSL_EXTRA_CFLAGS += -marm endif define MUSL_CONFIGURE_CMDS (cd $(@D); \ $(TARGET_CONFIGURE_OPTS) \ CFLAGS="$(filter-out -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64,$(TARGET_CFLAGS)) $(MUSL_EXTRA_CFLAGS)" \ CPPFLAGS="$(filter-out -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64,$(TARGET_CPPFLAGS))" \ ./configure \ --target=$(GNU_TARGET_NAME) \ --host=$(GNU_TARGET_NAME) \ --prefix=/usr \ --libdir=/lib \ --disable-gcc-wrapper \ --enable-static \ $(if $(BR2_STATIC_LIBS),--disable-shared,--enable-shared)) endef define MUSL_BUILD_CMDS $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) endef define MUSL_INSTALL_STAGING_CMDS $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) \ DESTDIR=$(STAGING_DIR) install-libs install-tools install-headers endef define MUSL_INSTALL_TARGET_CMDS $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) \ DESTDIR=$(TARGET_DIR) install-libs $(RM) $(addprefix $(TARGET_DIR)/lib/,crt1.o crtn.o crti.o Scrt1.o) endef $(eval $(generic-package))
shibajee/buildroot
package/musl/musl.mk
mk
mit
2,041
Disable the documentation build The documentation tool is compiled for the target, but executed on the host. We don't bother fixing this, as we don't care of the documentation in Buildroot. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Index: mutt-1.5.17+20080114/Makefile.am =================================================================== --- mutt-1.5.17+20080114.orig/Makefile.am 2010-05-15 18:15:08.000000000 +0200 +++ mutt-1.5.17+20080114/Makefile.am 2010-05-15 18:15:17.000000000 +0200 @@ -9,7 +9,7 @@ IMAP_INCLUDES = -I$(top_srcdir)/imap endif -SUBDIRS = m4 po intl doc contrib $(IMAP_SUBDIR) +SUBDIRS = m4 po intl contrib $(IMAP_SUBDIR) bin_SCRIPTS = muttbug flea @SMIMEAUX_TARGET@
shibajee/buildroot
package/mutt/0001-nodoc.patch
patch
mit
729
config BR2_PACKAGE_MUTT bool "mutt" depends on BR2_USE_WCHAR depends on BR2_USE_MMU # fork() select BR2_PACKAGE_NCURSES help Mutt is a sophisticated text-based Mail User Agent (MUA) http://www.mutt.org/ if BR2_PACKAGE_MUTT config BR2_PACKAGE_MUTT_IMAP bool "imap" help IMAP support config BR2_PACKAGE_MUTT_POP3 bool "pop3" help POP3 support endif # BR2_PACKAGE_MUTT comment "mutt needs a toolchain w/ wchar" depends on BR2_USE_MMU depends on !BR2_USE_WCHAR
shibajee/buildroot
package/mutt/Config.in
in
mit
486
# Locally calculated sha256 98b26cecc6b1713082fc880344fa345c20bd7ded6459abe18c84429c7cf8ed20 mutt-1.6.1.tar.gz
shibajee/buildroot
package/mutt/mutt.hash
hash
mit
112
################################################################################ # # mutt # ################################################################################ MUTT_VERSION = 1.6.1 MUTT_SITE = https://bitbucket.org/mutt/mutt/downloads MUTT_LICENSE = GPLv2+ MUTT_LICENSE_FILES = GPL MUTT_DEPENDENCIES = ncurses MUTT_CONF_OPTS = --disable-smtp MUTT_AUTORECONF = YES ifeq ($(BR2_PACKAGE_LIBICONV),y) MUTT_DEPENDENCIES += libiconv MUTT_CONF_OPTS += --enable-iconv endif ifeq ($(BR2_PACKAGE_LIBIDN),y) MUTT_DEPENDENCIES += libidn MUTT_CONF_OPTS += --with-idn else MUTT_CONF_OPTS += --without-idn endif ifeq ($(BR2_PACKAGE_MUTT_IMAP),y) MUTT_CONF_OPTS += --enable-imap else MUTT_CONF_OPTS += --disable-imap endif ifeq ($(BR2_PACKAGE_MUTT_POP3),y) MUTT_CONF_OPTS += --enable-pop else MUTT_CONF_OPTS += --disable-pop endif # SSL support is only used by imap or pop3 module ifneq ($(BR2_PACKAGET_MUTT_IMAP)$(BR2_PACKAGE_MUTT_POP3),) ifeq ($(BR2_PACKAGE_OPENSSL),y) MUTT_DEPENDENCIES += openssl MUTT_CONF_OPTS += --with-ssl=$(STAGING_DIR)/usr else MUTT_CONF_OPTS += --without-ssl endif else MUTT_CONF_OPTS += --without-ssl endif # Avoid running tests to check for: # - target system is *BSD # - C99 conformance (snprintf, vsnprintf) # - behaviour of the regex library # - if mail spool directory is world/group writable # - we have a working libiconv MUTT_CONF_ENV += \ mutt_cv_bsdish=no \ mutt_cv_c99_snprintf=yes \ mutt_cv_c99_vsnprintf=yes \ mutt_cv_regex_broken=no \ mutt_cv_worldwrite=yes \ mutt_cv_groupwrite=yes \ mutt_cv_iconv_good=yes \ mutt_cv_iconv_nontrans=no MUTT_CONF_OPTS += --with-mailpath=/var/mail define MUTT_VAR_MAIL ln -sf /tmp $(TARGET_DIR)/var/mail endef MUTT_POST_INSTALL_TARGET_HOOKS += MUTT_VAR_MAIL $(eval $(autotools-package))
shibajee/buildroot
package/mutt/mutt.mk
mk
mit
1,782
From: Baruch Siach <baruch@tkos.co.il> Subject: [PATCH] mxml: workaround for cross build The added patch is a workaround for cross build as follows: * disable run of a test binary at build time * disable generation of documentation using the mxmldoc binary * remove now non-existent entries from the install target * disable strip when running install Signed-off-by: Baruch Siach <baruch@tkos.co.il> --- diff -Nuar mxml-2.7-orig/Makefile.in mxml-2.7/Makefile.in --- mxml-2.7-orig/Makefile.in 2011-04-13 18:43:32.000000000 +0300 +++ mxml-2.7/Makefile.in 2012-05-16 07:21:42.677220980 +0300 @@ -57,7 +57,7 @@ # Install commands... # -INSTALL_BIN = $(LIBTOOL) $(INSTALL) -m 755 -s +INSTALL_BIN = $(LIBTOOL) $(INSTALL) -m 755 INSTALL_DATA = $(INSTALL) -m 644 INSTALL_DIR = $(INSTALL) -d INSTALL_LIB = $(LIBTOOL) $(INSTALL) -m 755 @@ -88,7 +88,7 @@ mxml-index.o mxml-node.o mxml-search.o mxml-set.o LIBOBJS = $(PUBLIBOBJS) mxml-private.o mxml-string.o OBJS = mxmldoc.o testmxml.o $(LIBOBJS) -TARGETS = $(LIBMXML) mxmldoc testmxml mxml.xml doc/mxml.man +TARGETS = $(LIBMXML) libmxml.a # @@ -140,9 +140,6 @@ # install: $(TARGETS) install-$(LIBMXML) install-libmxml.a - echo Installing mxmldoc in $(BUILDROOT)$(bindir)... - $(INSTALL_DIR) $(BUILDROOT)$(bindir) - $(INSTALL_BIN) mxmldoc $(BUILDROOT)$(bindir) echo Installing documentation in $(BUILDROOT)$(docdir)... $(INSTALL_DIR) $(BUILDROOT)$(docdir) for file in $(DOCFILES); do \ @@ -154,11 +151,6 @@ echo Installing pkgconfig files in $(BUILDROOT)$(libdir)/pkgconfig... $(INSTALL_DIR) $(BUILDROOT)$(libdir)/pkgconfig $(INSTALL_DATA) mxml.pc $(BUILDROOT)$(libdir)/pkgconfig - echo Installing man pages in $(BUILDROOT)$(mandir)... - $(INSTALL_DIR) $(BUILDROOT)$(mandir)/man1 - $(INSTALL_MAN) doc/mxmldoc.man $(BUILDROOT)$(mandir)/man1/mxmldoc.1 - $(INSTALL_DIR) $(BUILDROOT)$(mandir)/man3 - $(INSTALL_MAN) doc/mxml.man $(BUILDROOT)$(mandir)/man3/mxml.3 install-libmxml.a: echo Installing libmxml.a to $(BUILDROOT)$(libdir)...
shibajee/buildroot
package/mxml/0001-fix-cross-target-installation.patch
patch
mit
2,020
config BR2_PACKAGE_MXML bool "Mini-XML" help Lightweight XML Library http://www.minixml.org
shibajee/buildroot
package/mxml/Config.in
in
mit
101
# From http://www.msweet.org/downloads.php?L+Z3 md5 e21cad0f7aacd18f942aa0568a8dee19 mxml-2.9.tar.gz # Locally computed sha256 cded54653c584b24c4a78a7fa1b3b4377d49ac4f451ddf170ebbc8161d85ff92 mxml-2.9.tar.gz
shibajee/buildroot
package/mxml/mxml.hash
hash
mit
208
################################################################################ # # mxml # ################################################################################ MXML_VERSION = 2.9 MXML_SITE = http://www.msweet.org/files/project3 MXML_LICENSE = LGPLv2+ with exceptions MXML_LICENSE_FILES = COPYING MXML_INSTALL_STAGING = YES MXML_INSTALL_STAGING_OPTS = DSTROOT=$(STAGING_DIR) install MXML_INSTALL_TARGET_OPTS = DSTROOT=$(TARGET_DIR) install $(eval $(autotools-package))
shibajee/buildroot
package/mxml/mxml.mk
mk
mit
484
config BR2_PACKAGE_HOST_MXSLDR bool "host mxsldr" depends on BR2_arm || BR2_armeb help This package contains tools to download and execute code on Freescale i.MX23 and i.MX28 SoC's through the Serial Download Protocol. git://git.denx.de/mxsldr.git
shibajee/buildroot
package/mxsldr/Config.in.host
host
mit
264
################################################################################ # # mxsldr # ################################################################################ MXSLDR_VERSION = 2793a657ab7a22487d21c1b020957806f8ae8383 MXSLDR_SITE = git://git.denx.de/mxsldr.git MXSLDR_LICENSE = GPLv2+ MXSLDR_LICENSE_FILES = COPYING HOST_MXSLDR_DEPENDENCIES = host-libusb host-pkgconf define HOST_MXSLDR_BUILD_CMDS $(HOST_CONFIGURE_OPTS) $(MAKE) -C $(@D) endef define HOST_MXSLDR_INSTALL_CMDS $(INSTALL) -m 0755 -D $(@D)/mxsldr $(HOST_DIR)/usr/bin/mxsldr endef $(eval $(host-generic-package))
shibajee/buildroot
package/mxsldr/mxsldr.mk
mk
mit
597
Patch borrowed from http://code.google.com/p/minimyth/source/browse/trunk/gar-minimyth/script/db/mysql/files/mysql-5.1.47-ac_cache_check.patch?r=6493. It allows to override through ac_cv_* variables various checks that cannot be performed when cross-compiling. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> --- storage/innodb_plugin/plug.in | 59 ++++++++++++++++++++++++++++-------------- 1 file changed, 40 insertions(+), 19 deletions(-) Index: mysql-5.1.53/storage/innodb_plugin/plug.in =================================================================== --- mysql-5.1.53.orig/storage/innodb_plugin/plug.in +++ mysql-5.1.53/storage/innodb_plugin/plug.in @@ -53,9 +53,10 @@ esac AC_SUBST(INNODB_DYNAMIC_CFLAGS) - AC_MSG_CHECKING(whether GCC atomic builtins are available) + AC_CACHE_CHECK([whether GCC atomic builtins are available], + [ac_cv_have_decl_HAVE_IB_GCC_ATOMIC_BUILTINS], # either define HAVE_IB_GCC_ATOMIC_BUILTINS or not - AC_TRY_RUN( + [AC_TRY_RUN( [ int main() { @@ -95,18 +96,23 @@ } ], [ - AC_DEFINE([HAVE_IB_GCC_ATOMIC_BUILTINS], [1], - [GCC atomic builtins are available]) AC_MSG_RESULT(yes) + ac_cv_have_decl_HAVE_IB_GCC_ATOMIC_BUILTINS=yes ], [ AC_MSG_RESULT(no) + ac_cv_have_decl_HAVE_IB_GCC_ATOMIC_BUILTINS=no ] - ) + )]) + if test "x$ac_cv_have_decl_HAVE_IB_GCC_ATOMIC_BUILTINS"= "xyes" ; then + AC_DEFINE([HAVE_IB_GCC_ATOMIC_BUILTINS], [1], + [GCC atomic builtins are available]) + fi - AC_MSG_CHECKING(whether pthread_t can be used by GCC atomic builtins) + AC_CACHE_CHECK([whether pthread_t can be used by GCC atomic builtins], + [ac_cv_have_decl_HAVE_IB_ATOMIC_PTHREAD_T_GCC], # either define HAVE_IB_ATOMIC_PTHREAD_T_GCC or not - AC_TRY_RUN( + [AC_TRY_RUN( [ #include <pthread.h> #include <string.h> @@ -126,14 +132,18 @@ } ], [ - AC_DEFINE([HAVE_IB_ATOMIC_PTHREAD_T_GCC], [1], - [pthread_t can be used by GCC atomic builtins]) AC_MSG_RESULT(yes) + ac_cv_have_decl_HAVE_IB_ATOMIC_PTHREAD_T_GCC=yes ], [ AC_MSG_RESULT(no) + ac_cv_have_decl_HAVE_IB_ATOMIC_PTHREAD_T_GCC=no ] - ) + )]) + if test "x$ac_cv_have_decl_HAVE_IB_ATOMIC_PTHREAD_T_GCC"= "xyes" ; then + AC_DEFINE([HAVE_IB_ATOMIC_PTHREAD_T_GCC], [1], + [pthread_t can be used by GCC atomic builtins]) + fi AC_MSG_CHECKING(whether Solaris libc atomic functions are available) # either define HAVE_IB_SOLARIS_ATOMICS or not @@ -148,9 +158,10 @@ are available]) ) - AC_MSG_CHECKING(whether pthread_t can be used by Solaris libc atomic functions) + AC_CACHE_CHECK([whether pthread_t can be used by Solaris libc atomic functions], + [ac_cv_have_decl_HAVE_IB_ATOMIC_PTHREAD_T_SOLARIS], # either define HAVE_IB_ATOMIC_PTHREAD_T_SOLARIS or not - AC_TRY_RUN( + [AC_TRY_RUN( [ #include <pthread.h> #include <string.h> @@ -181,28 +192,33 @@ } ], [ - AC_DEFINE([HAVE_IB_ATOMIC_PTHREAD_T_SOLARIS], [1], - [pthread_t can be used by solaris atomics]) AC_MSG_RESULT(yes) + ac_cv_have_decl_HAVE_IB_ATOMIC_PTHREAD_T_SOLARIS=yes ], [ AC_MSG_RESULT(no) + ac_cv_have_decl_HAVE_IB_ATOMIC_PTHREAD_T_SOLARIS=no ] - ) + )]) + if test "x$ac_cv_have_decl_HAVE_IB_ATOMIC_PTHREAD_T_SOLARIS"= "xyes" ; then + AC_DEFINE([HAVE_IB_ATOMIC_PTHREAD_T_SOLARIS], [1], + [pthread_t can be used by solaris atomics]) + fi # this is needed to know which one of atomic_cas_32() or atomic_cas_64() # to use in the source AC_CHECK_SIZEOF([pthread_t], [], [#include <pthread.h>]) # Check for x86 PAUSE instruction - AC_MSG_CHECKING(for x86 PAUSE instruction) + AC_CACHE_CHECK([for x86 PAUSE instruction], + [ac_cv_have_decl_HAVE_IB_PAUSE_INSTRUCTION], # We have to actually try running the test program, because of a bug # in Solaris on x86_64, where it wrongly reports that PAUSE is not # supported when trying to run an application. See # http://bugs.opensolaris.org/bugdatabase/printableBug.do?bug_id=6478684 # We use ib_ prefix to avoid collisoins if this code is added to # mysql's configure.in. - AC_TRY_RUN( + [AC_TRY_RUN( [ int main() { __asm__ __volatile__ ("pause"); @@ -210,16 +226,21 @@ } ], [ - AC_DEFINE([HAVE_IB_PAUSE_INSTRUCTION], [1], [Does x86 PAUSE instruction exist]) AC_MSG_RESULT(yes) + ac_cv_have_decl_HAVE_IB_PAUSE_INSTRUCTION=yes ], [ AC_MSG_RESULT(no) + ac_cv_have_decl_HAVE_IB_PAUSE_INSTRUCTION=no ], [ AC_MSG_RESULT(no) + ac_cv_have_decl_HAVE_IB_PAUSE_INSTRUCTION=no ] - ) + )]) + if test "x$ac_cv_have_decl_HAVE_IB_PAUSE_INSTRUCTION"= "xyes" ; then + AC_DEFINE([HAVE_IB_PAUSE_INSTRUCTION], [1], [Does x86 PAUSE instruction exist]) + fi ]) # vim: set ft=config:
shibajee/buildroot
package/mysql/0000-ac_cache_check.patch
patch
mit
5,077
Patch borrowed from http://cgit.openembedded.org/cgit.cgi/openembedded/tree/recipes/mysql/files/configure-ps-cache-check.patch It allows to specify through ac_cv_FIND_PROC how ps should be used on the target to find the PID of a program. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> --- configure.in | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) Index: mysql-5.1.53/configure.in =================================================================== --- mysql-5.1.53.orig/configure.in +++ mysql-5.1.53/configure.in @@ -462,8 +462,8 @@ # then Make, then shell. The autoconf substitution uses single quotes, so # no unprotected single quotes should appear in the expression. AC_PATH_PROG(PS, ps, ps) -AC_MSG_CHECKING("how to check if pid exists") -PS=$ac_cv_path_PS +AC_CACHE_CHECK([how to check if pid exists], [ac_cv_FIND_PROC], +[ # Linux style if $PS wwwp $$ 2> /dev/null | grep -- "$0" > /dev/null then @@ -502,8 +502,9 @@ AC_MSG_ERROR([Could not find the right ps and/or grep switches. Which OS is this? See the Installation chapter in the Reference Manual.]) esac fi -AC_SUBST(FIND_PROC) -AC_MSG_RESULT("$FIND_PROC") +ac_cv_FIND_PROC="$FIND_PROC" +]) +AC_SUBST([FIND_PROC], [$ac_cv_FIND_PROC]) # Check if a pid is valid AC_PATH_PROG(KILL, kill, kill)
shibajee/buildroot
package/mysql/0001-configure-ps-cache-check.patch
patch
mit
1,327
Tell MySQL to use the new readline interface even when an external readline is being used. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> --- configure.in | 1 + 1 file changed, 1 insertion(+) Index: mysql-5.1.53/configure.in =================================================================== --- mysql-5.1.53.orig/configure.in +++ mysql-5.1.53/configure.in @@ -2689,6 +2689,7 @@ # this way we avoid linking commercial source with GPL readline readline_link="-lreadline" want_to_use_readline="yes" + AC_DEFINE_UNQUOTED(USE_NEW_READLINE_INTERFACE, 1) elif [test "$mysql_cv_libedit_interface" = "yes"] then # Use libedit
shibajee/buildroot
package/mysql/0002-use-new-readline-iface.patch
patch
mit
682
misc.m4: ac_cv_c_stack_direction is unset. Signed-off-by: Marcelo Gutierrez (UTN/FRH) <kuyurix@gmail.com> --- mysql-5.1.70.orig/config/ac-macros/misc.m4 +++ mysql-5.1.70/config/ac-macros/misc.m4 @@ -477,7 +477,7 @@ exit(ptr_f(&a) < 0); } ], ac_cv_c_stack_direction=1, ac_cv_c_stack_direction=-1, - ac_cv_c_stack_direction=)]) + ac_cv_c_stack_direction=0)]) AC_DEFINE_UNQUOTED(STACK_DIRECTION, $ac_cv_c_stack_direction) ])dnl
shibajee/buildroot
package/mysql/0003-ac_stack_direction-is-unset.patch
patch
mit
447
Makefile: fix cross-compiling the server MySQL Makefile believes it can run code it just compiled, to generate a header. This does not work for cross-compilation. Instead, use a pre-installed host-version of the required tool. Signed-off-by: Marcelo Gutierrez (UTN/FRH) <kuyurix@gmail.com> --- mysql-5.1.70/sql/Makefile.am +++ mysql-5.1.70.patch/sql/Makefile.am @@ -177,7 +177,7 @@ # this avoid the rebuild of the built files in a source dist lex_hash.h: gen_lex_hash.cc lex.h $(MAKE) $(AM_MAKEFLAGS) gen_lex_hash$(EXEEXT) - ./gen_lex_hash$(EXEEXT) > $@-t + gen_lex_hash$(EXEEXT) > $@-t $(MV) $@-t $@ # For testing of udf_example.so --- mysql-5.1.70/sql/Makefile.in +++ mysql-5.1.70.patch/sql/Makefile.in @@ -1310,7 +1310,7 @@ # this avoid the rebuild of the built files in a source dist lex_hash.h: gen_lex_hash.cc lex.h $(MAKE) $(AM_MAKEFLAGS) gen_lex_hash$(EXEEXT) - ./gen_lex_hash$(EXEEXT) > $@-t + gen_lex_hash$(EXEEXT) > $@-t $(MV) $@-t $@ # We might have some stuff not built in this build, but that we want to install
shibajee/buildroot
package/mysql/0004-Fix-gen_lex_hash-execution.patch
patch
mit
1,057
fix the yacc code in mysql Signed-off-by: Marcelo Gutierrez (UTN/FRH) <kuyurix@gmail.com> --- diff -uNr mysql-5.1.73.orig/sql/sql_lex.cc mysql-5.1.73/sql/sql_lex.cc --- mysql-5.1.73.orig/sql/sql_lex.cc 2013-11-04 18:52:27.000000000 +0000 +++ mysql-5.1.73/sql/sql_lex.cc 2014-02-12 14:12:04.244111625 +0000 @@ -775,14 +775,13 @@ (which can't be followed by a signed number) */ -int MYSQLlex(void *arg, void *yythd) +int MYSQLlex(void *arg, THD *thd) { reg1 uchar c= 0; bool comment_closed; int tokval, result_state; uint length; enum my_lex_states state; - THD *thd= (THD *)yythd; Lex_input_stream *lip= & thd->m_parser_state->m_lip; LEX *lex= thd->lex; YYSTYPE *yylval=(YYSTYPE*) arg; diff -uNr mysql-5.1.73.orig/sql/sql_lex.h mysql-5.1.73/sql/sql_lex.h --- mysql-5.1.73.orig/sql/sql_lex.h 2013-11-04 18:52:27.000000000 +0000 +++ mysql-5.1.73/sql/sql_lex.h 2014-02-12 14:17:19.424106423 +0000 @@ -2072,7 +2072,7 @@ extern void lex_free(void); extern void lex_start(THD *thd); extern void lex_end(LEX *lex); -extern int MYSQLlex(void *arg, void *yythd); +extern int MYSQLlex(void *arg, THD *thd); extern void trim_whitespace(CHARSET_INFO *cs, LEX_STRING *str); diff -uNr mysql-5.1.73.orig/sql/sql_parse.cc mysql-5.1.73/sql/sql_parse.cc --- mysql-5.1.73.orig/sql/sql_parse.cc 2013-11-04 18:52:27.000000000 +0000 +++ mysql-5.1.73/sql/sql_parse.cc 2014-02-12 14:19:20.424104427 +0000 @@ -8012,7 +8012,7 @@ } -extern int MYSQLparse(void *thd); // from sql_yacc.cc +extern int MYSQLparse(THD *thd); // from sql_yacc.cc /** diff -uNr mysql-5.1.73.orig/sql/sql_yacc.yy mysql-5.1.73/sql/sql_yacc.yy --- mysql-5.1.73.orig/sql/sql_yacc.yy 2013-11-04 18:52:27.000000000 +0000 +++ mysql-5.1.73/sql/sql_yacc.yy 2014-02-12 20:17:06.707750140 +0000 @@ -23,19 +23,13 @@ */ %{ -/* thd is passed as an argument to yyparse(), and subsequently to yylex(). -** The type will be void*, so it must be cast to (THD*) when used. -** Use the YYTHD macro for this. -*/ -#define YYPARSE_PARAM yythd -#define YYLEX_PARAM yythd -#define YYTHD ((THD *)yythd) -#define YYLIP (& YYTHD->m_parser_state->m_lip) + +#define YYLIP (& thd->m_parser_state->m_lip) #define MYSQL_YACC #define YYINITDEPTH 100 #define YYMAXDEPTH 3200 /* Because of 64K stack */ -#define Lex (YYTHD->lex) +#define Lex (thd->lex) #define Select Lex->current_select #include "mysql_priv.h" #include "slave.h" @@ -55,7 +49,7 @@ #pragma warning (disable : 4065) #endif -int yylex(void *yylval, void *yythd); +int yylex(void *yylval, THD *thd); const LEX_STRING null_lex_str= {0,0}; @@ -64,7 +58,7 @@ ulong val= *(F); \ if (my_yyoverflow((B), (D), &val)) \ { \ - yyerror((char*) (A)); \ + yyerror(current_thd, (char*) (A)); \ return 2; \ } \ else \ @@ -76,7 +70,7 @@ #define MYSQL_YYABORT \ do \ { \ - LEX::cleanup_lex_after_parse_error(YYTHD);\ + LEX::cleanup_lex_after_parse_error(thd);\ YYABORT; \ } while (0) @@ -159,9 +153,8 @@ to abort from the parser. */ -void MYSQLerror(const char *s) +void MYSQLerror(THD *thd, const char *s) { - THD *thd= current_thd; /* Restore the original LEX if it was replaced when parsing @@ -675,7 +668,10 @@ bool my_yyoverflow(short **a, YYSTYPE **b, ulong *yystacksize); %} -%pure_parser /* We have threads */ +/* We have threads */ +%define api.pure +%parse-param { THD *thd } +%lex-param { THD *thd } /* Currently there are 169 shift/reduce conflicts. We should not introduce new conflicts any more. @@ -1516,7 +1512,6 @@ query: END_OF_INPUT { - THD *thd= YYTHD; if (!thd->bootstrap && (!(thd->lex->select_lex.options & OPTION_FOUND_COMMENT))) { @@ -1530,7 +1525,7 @@ { Lex_input_stream *lip = YYLIP; - if ((YYTHD->client_capabilities & CLIENT_MULTI_QUERIES) && + if ((thd->client_capabilities & CLIENT_MULTI_QUERIES) && ! lip->stmt_prepare_mode && ! lip->eof()) { @@ -1626,7 +1621,6 @@ deallocate: deallocate_or_drop PREPARE_SYM ident { - THD *thd= YYTHD; LEX *lex= thd->lex; lex->sql_command= SQLCOM_DEALLOCATE_PREPARE; lex->prepared_stmt_name= $3; @@ -1641,7 +1635,6 @@ prepare: PREPARE_SYM ident FROM prepare_src { - THD *thd= YYTHD; LEX *lex= thd->lex; lex->sql_command= SQLCOM_PREPARE; lex->prepared_stmt_name= $2; @@ -1651,14 +1644,12 @@ prepare_src: TEXT_STRING_sys { - THD *thd= YYTHD; LEX *lex= thd->lex; lex->prepared_stmt_code= $1; lex->prepared_stmt_code_is_varref= FALSE; } | '@' ident_or_text { - THD *thd= YYTHD; LEX *lex= thd->lex; lex->prepared_stmt_code= $2; lex->prepared_stmt_code_is_varref= TRUE; @@ -1668,7 +1659,6 @@ execute: EXECUTE_SYM ident { - THD *thd= YYTHD; LEX *lex= thd->lex; lex->sql_command= SQLCOM_EXECUTE; lex->prepared_stmt_name= $2; @@ -1826,7 +1816,6 @@ create: CREATE opt_table_options TABLE_SYM opt_if_not_exists table_ident { - THD *thd= YYTHD; LEX *lex= thd->lex; lex->sql_command= SQLCOM_CREATE_TABLE; if (!lex->select_lex.add_table_to_list(thd, $5, NULL, @@ -1844,13 +1833,13 @@ } create2 { - LEX *lex= YYTHD->lex; + LEX *lex= thd->lex; lex->current_select= &lex->select_lex; if ((lex->create_info.used_fields & HA_CREATE_USED_ENGINE) && !lex->create_info.db_type) { - lex->create_info.db_type= ha_default_handlerton(YYTHD); - push_warning_printf(YYTHD, MYSQL_ERROR::WARN_LEVEL_WARN, + lex->create_info.db_type= ha_default_handlerton(thd); + push_warning_printf(thd, MYSQL_ERROR::WARN_LEVEL_WARN, ER_WARN_USING_OTHER_HANDLER, ER(ER_WARN_USING_OTHER_HANDLER), ha_resolve_storage_engine_name(lex->create_info.db_type), @@ -1979,7 +1968,7 @@ event_tail: remember_name EVENT_SYM opt_if_not_exists sp_name { - THD *thd= YYTHD; + THD *thd= thd; LEX *lex=Lex; lex->stmt_definition_begin= $1; @@ -2046,7 +2035,7 @@ ev_starts: /* empty */ { - Item *item= new (YYTHD->mem_root) Item_func_now_local(); + Item *item= new (thd->mem_root) Item_func_now_local(); if (item == NULL) MYSQL_YYABORT; Lex->event_parse_data->item_starts= item; @@ -2096,7 +2085,6 @@ ev_sql_stmt: { - THD *thd= YYTHD; LEX *lex= thd->lex; Lex_input_stream *lip= YYLIP; @@ -2139,7 +2127,6 @@ } ev_sql_stmt_inner { - THD *thd= YYTHD; LEX *lex= thd->lex; /* return back to the original memory root ASAP */ @@ -2198,11 +2185,10 @@ $$= new sp_name($1, $3, true); if ($$ == NULL) MYSQL_YYABORT; - $$->init_qname(YYTHD); + $$->init_qname(thd); } | ident { - THD *thd= YYTHD; LEX *lex= thd->lex; LEX_STRING db; if (check_routine_name(&$1)) @@ -2272,7 +2258,7 @@ lex->sql_command= SQLCOM_CALL; lex->spname= $2; lex->value_list.empty(); - sp_add_used_routine(lex, YYTHD, $2, TYPE_ENUM_PROCEDURE); + sp_add_used_routine(lex, thd, $2, TYPE_ENUM_PROCEDURE); } opt_sp_cparam_list {} ; @@ -2345,7 +2331,7 @@ (enum enum_field_types)$3, sp_param_in); - if (lex->sphead->fill_field_definition(YYTHD, lex, + if (lex->sphead->fill_field_definition(thd, lex, (enum enum_field_types) $3, &spvar->field_def)) { @@ -2382,7 +2368,7 @@ (enum enum_field_types)$4, (sp_param_mode_t)$1); - if (lex->sphead->fill_field_definition(YYTHD, lex, + if (lex->sphead->fill_field_definition(thd, lex, (enum enum_field_types) $4, &spvar->field_def)) { @@ -2445,13 +2431,12 @@ { LEX *lex= Lex; - lex->sphead->reset_lex(YYTHD); + lex->sphead->reset_lex(thd); lex->spcont->declare_var_boundary($2); } type sp_opt_default { - THD *thd= YYTHD; LEX *lex= Lex; sp_pcontext *pctx= lex->spcont; uint num_vars= pctx->context_var_count(); @@ -2477,7 +2462,7 @@ spvar->type= var_type; spvar->dflt= dflt_value_item; - if (lex->sphead->fill_field_definition(YYTHD, lex, var_type, + if (lex->sphead->fill_field_definition(thd, lex, var_type, &spvar->field_def)) { MYSQL_YYABORT; @@ -2501,7 +2486,7 @@ } pctx->declare_var_boundary(0); - if (lex->sphead->restore_lex(YYTHD)) + if (lex->sphead->restore_lex(thd)) MYSQL_YYABORT; $$.vars= $2; $$.conds= $$.hndlrs= $$.curs= 0; @@ -2516,7 +2501,7 @@ my_error(ER_SP_DUP_COND, MYF(0), $2.str); MYSQL_YYABORT; } - if(YYTHD->lex->spcont->push_cond(&$2, $5)) + if(thd->lex->spcont->push_cond(&$2, $5)) MYSQL_YYABORT; $$.vars= $$.hndlrs= $$.curs= 0; $$.conds= 1; @@ -2602,7 +2587,7 @@ sp_cursor_stmt: { - Lex->sphead->reset_lex(YYTHD); + Lex->sphead->reset_lex(thd); } select { @@ -2618,7 +2603,7 @@ } lex->sp_lex_in_use= TRUE; $$= lex; - if (lex->sphead->restore_lex(YYTHD)) + if (lex->sphead->restore_lex(thd)) MYSQL_YYABORT; } ; @@ -2662,7 +2647,7 @@ sp_cond: ulong_num { /* mysql errno */ - $$= (sp_cond_type_t *)YYTHD->alloc(sizeof(sp_cond_type_t)); + $$= (sp_cond_type_t *)thd->alloc(sizeof(sp_cond_type_t)); if ($$ == NULL) MYSQL_YYABORT; $$->type= sp_cond_type_t::number; @@ -2675,7 +2660,7 @@ my_error(ER_SP_BAD_SQLSTATE, MYF(0), $3.str); MYSQL_YYABORT; } - $$= (sp_cond_type_t *)YYTHD->alloc(sizeof(sp_cond_type_t)); + $$= (sp_cond_type_t *)thd->alloc(sizeof(sp_cond_type_t)); if ($$ == NULL) MYSQL_YYABORT; $$->type= sp_cond_type_t::state; @@ -2705,21 +2690,21 @@ } | SQLWARNING_SYM /* SQLSTATEs 01??? */ { - $$= (sp_cond_type_t *)YYTHD->alloc(sizeof(sp_cond_type_t)); + $$= (sp_cond_type_t *)thd->alloc(sizeof(sp_cond_type_t)); if ($$ == NULL) MYSQL_YYABORT; $$->type= sp_cond_type_t::warning; } | not FOUND_SYM /* SQLSTATEs 02??? */ { - $$= (sp_cond_type_t *)YYTHD->alloc(sizeof(sp_cond_type_t)); + $$= (sp_cond_type_t *)thd->alloc(sizeof(sp_cond_type_t)); if ($$ == NULL) MYSQL_YYABORT; $$->type= sp_cond_type_t::notfound; } | SQLEXCEPTION_SYM /* All other SQLSTATEs */ { - $$= (sp_cond_type_t *)YYTHD->alloc(sizeof(sp_cond_type_t)); + $$= (sp_cond_type_t *)thd->alloc(sizeof(sp_cond_type_t)); if ($$ == NULL) MYSQL_YYABORT; $$->type= sp_cond_type_t::exception; @@ -2789,7 +2774,6 @@ sp_proc_stmt_statement: { - THD *thd= YYTHD; LEX *lex= thd->lex; Lex_input_stream *lip= YYLIP; @@ -2798,7 +2782,6 @@ } statement { - THD *thd= YYTHD; LEX *lex= thd->lex; Lex_input_stream *lip= YYLIP; sp_head *sp= lex->sphead; @@ -2845,7 +2828,7 @@ sp_proc_stmt_return: RETURN_SYM - { Lex->sphead->reset_lex(YYTHD); } + { Lex->sphead->reset_lex(thd); } expr { LEX *lex= Lex; @@ -2867,7 +2850,7 @@ MYSQL_YYABORT; sp->m_flags|= sp_head::HAS_RETURN; } - if (sp->restore_lex(YYTHD)) + if (sp->restore_lex(thd)) MYSQL_YYABORT; } ; @@ -3094,7 +3077,7 @@ ; sp_if: - { Lex->sphead->reset_lex(YYTHD); } + { Lex->sphead->reset_lex(thd); } expr THEN_SYM { LEX *lex= Lex; @@ -3108,7 +3091,7 @@ sp->add_cont_backpatch(i) || sp->add_instr(i)) MYSQL_YYABORT; - if (sp->restore_lex(YYTHD)) + if (sp->restore_lex(thd)) MYSQL_YYABORT; } sp_proc_stmts1 @@ -3147,7 +3130,7 @@ { LEX *lex= Lex; case_stmt_action_case(lex); - lex->sphead->reset_lex(YYTHD); /* For expr $3 */ + lex->sphead->reset_lex(thd); /* For expr $3 */ } expr { @@ -3156,7 +3139,7 @@ MYSQL_YYABORT; /* For expr $3 */ - if (lex->sphead->restore_lex(YYTHD)) + if (lex->sphead->restore_lex(thd)) MYSQL_YYABORT; } simple_when_clause_list @@ -3198,7 +3181,7 @@ simple_when_clause: WHEN_SYM { - Lex->sphead->reset_lex(YYTHD); /* For expr $3 */ + Lex->sphead->reset_lex(thd); /* For expr $3 */ } expr { @@ -3208,7 +3191,7 @@ if (case_stmt_action_when(lex, $3, true)) MYSQL_YYABORT; /* For expr $3 */ - if (lex->sphead->restore_lex(YYTHD)) + if (lex->sphead->restore_lex(thd)) MYSQL_YYABORT; } THEN_SYM @@ -3223,7 +3206,7 @@ searched_when_clause: WHEN_SYM { - Lex->sphead->reset_lex(YYTHD); /* For expr $3 */ + Lex->sphead->reset_lex(thd); /* For expr $3 */ } expr { @@ -3231,7 +3214,7 @@ if (case_stmt_action_when(lex, $3, false)) MYSQL_YYABORT; /* For expr $3 */ - if (lex->sphead->restore_lex(YYTHD)) + if (lex->sphead->restore_lex(thd)) MYSQL_YYABORT; } THEN_SYM @@ -3395,7 +3378,7 @@ MYSQL_YYABORT; } | WHILE_SYM - { Lex->sphead->reset_lex(YYTHD); } + { Lex->sphead->reset_lex(thd); } expr DO_SYM { LEX *lex= Lex; @@ -3409,7 +3392,7 @@ sp->new_cont_backpatch(i) || sp->add_instr(i)) MYSQL_YYABORT; - if (sp->restore_lex(YYTHD)) + if (sp->restore_lex(thd)) MYSQL_YYABORT; } sp_proc_stmts1 END WHILE_SYM @@ -3424,7 +3407,7 @@ lex->sphead->do_cont_backpatch(); } | REPEAT_SYM sp_proc_stmts1 UNTIL_SYM - { Lex->sphead->reset_lex(YYTHD); } + { Lex->sphead->reset_lex(thd); } expr END REPEAT_SYM { LEX *lex= Lex; @@ -3436,7 +3419,7 @@ if (i == NULL || lex->sphead->add_instr(i)) MYSQL_YYABORT; - if (lex->sphead->restore_lex(YYTHD)) + if (lex->sphead->restore_lex(thd)) MYSQL_YYABORT; /* We can shortcut the cont_backpatch here */ i->m_cont_dest= ip+1; @@ -3859,7 +3842,6 @@ create3 {} | LIKE table_ident { - THD *thd= YYTHD; TABLE_LIST *src_table; LEX *lex= thd->lex; @@ -3873,7 +3855,6 @@ } | '(' LIKE table_ident ')' { - THD *thd= YYTHD; TABLE_LIST *src_table; LEX *lex= thd->lex; @@ -4342,7 +4323,6 @@ bit_expr { Item *part_expr= $1; - THD *thd= YYTHD; LEX *lex= thd->lex; Name_resolution_context *context= &lex->current_select->context; TABLE_LIST *save_list= context->table_list; @@ -4364,7 +4344,7 @@ my_error(ER_PARTITION_FUNCTION_IS_NOT_ALLOWED, MYF(0)); MYSQL_YYABORT; } - if (part_expr->fix_fields(YYTHD, (Item**)0) || + if (part_expr->fix_fields(thd, (Item**)0) || ((context->table_list= save_list), FALSE) || (!part_expr->const_item()) || (!lex->safe_to_cache_query)) @@ -4629,7 +4609,7 @@ | TYPE_SYM opt_equal storage_engines { Lex->create_info.db_type= $3; - WARN_DEPRECATED(yythd, "6.0", "TYPE=storage_engine", + WARN_DEPRECATED(thd, "6.0", "TYPE=storage_engine", "'ENGINE=storage_engine'"); Lex->create_info.used_fields|= HA_CREATE_USED_ENGINE; } @@ -4791,19 +4771,19 @@ storage_engines: ident_or_text { - plugin_ref plugin= ha_resolve_by_name(YYTHD, &$1); + plugin_ref plugin= ha_resolve_by_name(thd, &$1); if (plugin) $$= plugin_data(plugin, handlerton*); else { - if (YYTHD->variables.sql_mode & MODE_NO_ENGINE_SUBSTITUTION) + if (thd->variables.sql_mode & MODE_NO_ENGINE_SUBSTITUTION) { my_error(ER_UNKNOWN_STORAGE_ENGINE, MYF(0), $1.str); MYSQL_YYABORT; } $$= 0; - push_warning_printf(YYTHD, MYSQL_ERROR::WARN_LEVEL_WARN, + push_warning_printf(thd, MYSQL_ERROR::WARN_LEVEL_WARN, ER_UNKNOWN_STORAGE_ENGINE, ER(ER_UNKNOWN_STORAGE_ENGINE), $1.str); @@ -4815,7 +4795,7 @@ ident_or_text { plugin_ref plugin; - if ((plugin= ha_resolve_by_name(YYTHD, &$1))) + if ((plugin= ha_resolve_by_name(thd, &$1))) $$= plugin_data(plugin, handlerton*); else { @@ -5043,7 +5023,7 @@ { char buff[sizeof("YEAR()") + MY_INT64_NUM_DECIMAL_DIGITS + 1]; my_snprintf(buff, sizeof(buff), "YEAR(%lu)", length); - push_warning_printf(YYTHD, MYSQL_ERROR::WARN_LEVEL_NOTE, + push_warning_printf(thd, MYSQL_ERROR::WARN_LEVEL_NOTE, ER_WARN_DEPRECATED_SYNTAX, ER(ER_WARN_DEPRECATED_SYNTAX), buff, "YEAR(4)"); @@ -5057,7 +5037,7 @@ { $$=MYSQL_TYPE_TIME; } | TIMESTAMP opt_field_length { - if (YYTHD->variables.sql_mode & MODE_MAXDB) + if (thd->variables.sql_mode & MODE_MAXDB) $$=MYSQL_TYPE_DATETIME; else { @@ -5189,7 +5169,7 @@ real_type: REAL { - $$= YYTHD->variables.sql_mode & MODE_REAL_AS_FLOAT ? + $$= thd->variables.sql_mode & MODE_REAL_AS_FLOAT ? MYSQL_TYPE_FLOAT : MYSQL_TYPE_DOUBLE; } | DOUBLE_SYM @@ -5263,7 +5243,7 @@ | DEFAULT now_or_signed_literal { Lex->default_value=$2; } | ON UPDATE_SYM NOW_SYM optional_braces { - Item *item= new (YYTHD->mem_root) Item_func_now_local(); + Item *item= new (thd->mem_root) Item_func_now_local(); if (item == NULL) MYSQL_YYABORT; Lex->on_update_value= item; @@ -5312,7 +5292,7 @@ now_or_signed_literal: NOW_SYM optional_braces { - $$= new (YYTHD->mem_root) Item_func_now_local(); + $$= new (thd->mem_root) Item_func_now_local(); if ($$ == NULL) MYSQL_YYABORT; } @@ -5673,7 +5653,6 @@ alter: ALTER opt_ignore TABLE_SYM table_ident { - THD *thd= YYTHD; LEX *lex= thd->lex; lex->name.str= 0; lex->name.length= 0; @@ -5799,7 +5778,7 @@ Event_parse_data. */ - if (!(Lex->event_parse_data= Event_parse_data::new_instance(YYTHD))) + if (!(Lex->event_parse_data= Event_parse_data::new_instance(thd))) MYSQL_YYABORT; Lex->event_parse_data->identifier= $4; @@ -6192,7 +6171,6 @@ { if (!$4) { - THD *thd= YYTHD; $4= thd->variables.collation_database; } $5= $5 ? $5 : $4; @@ -6556,7 +6534,7 @@ assign_to_keycache: table_ident cache_keys_spec { - if (!Select->add_table_to_list(YYTHD, $1, NULL, 0, TL_READ, + if (!Select->add_table_to_list(thd, $1, NULL, 0, TL_READ, Select->pop_index_hints())) MYSQL_YYABORT; } @@ -6585,7 +6563,7 @@ preload_keys: table_ident cache_keys_spec opt_ignore_leaves { - if (!Select->add_table_to_list(YYTHD, $1, NULL, $3, TL_READ, + if (!Select->add_table_to_list(thd, $1, NULL, $3, TL_READ, Select->pop_index_hints())) MYSQL_YYABORT; } @@ -6593,7 +6571,7 @@ cache_keys_spec: { - Lex->select_lex.alloc_index_hints(YYTHD); + Lex->select_lex.alloc_index_hints(thd); Select->set_index_hint_type(INDEX_HINT_USE, global_system_variables.old_mode ? INDEX_HINT_MASK_JOIN : @@ -6813,7 +6791,6 @@ | select_item | '*' { - THD *thd= YYTHD; Item *item= new (thd->mem_root) Item_field(&thd->lex->current_select->context, NULL, NULL, "*"); @@ -6828,7 +6805,6 @@ select_item: remember_name select_item2 remember_end select_alias { - THD *thd= YYTHD; DBUG_ASSERT($1 < $3); if (add_item_to_list(thd, $2)) @@ -6929,7 +6905,7 @@ else { /* X OR Y */ - $$ = new (YYTHD->mem_root) Item_cond_or($1, $3); + $$ = new (thd->mem_root) Item_cond_or($1, $3); if ($$ == NULL) MYSQL_YYABORT; } @@ -6937,7 +6913,7 @@ | expr XOR expr %prec XOR { /* XOR is a proprietary extension */ - $$ = new (YYTHD->mem_root) Item_cond_xor($1, $3); + $$ = new (thd->mem_root) Item_cond_xor($1, $3); if ($$ == NULL) MYSQL_YYABORT; } @@ -6979,50 +6955,50 @@ else { /* X AND Y */ - $$ = new (YYTHD->mem_root) Item_cond_and($1, $3); + $$ = new (thd->mem_root) Item_cond_and($1, $3); if ($$ == NULL) MYSQL_YYABORT; } } | NOT_SYM expr %prec NOT_SYM { - $$= negate_expression(YYTHD, $2); + $$= negate_expression(thd, $2); if ($$ == NULL) MYSQL_YYABORT; } | bool_pri IS TRUE_SYM %prec IS { - $$= new (YYTHD->mem_root) Item_func_istrue($1); + $$= new (thd->mem_root) Item_func_istrue($1); if ($$ == NULL) MYSQL_YYABORT; } | bool_pri IS not TRUE_SYM %prec IS { - $$= new (YYTHD->mem_root) Item_func_isnottrue($1); + $$= new (thd->mem_root) Item_func_isnottrue($1); if ($$ == NULL) MYSQL_YYABORT; } | bool_pri IS FALSE_SYM %prec IS { - $$= new (YYTHD->mem_root) Item_func_isfalse($1); + $$= new (thd->mem_root) Item_func_isfalse($1); if ($$ == NULL) MYSQL_YYABORT; } | bool_pri IS not FALSE_SYM %prec IS { - $$= new (YYTHD->mem_root) Item_func_isnotfalse($1); + $$= new (thd->mem_root) Item_func_isnotfalse($1); if ($$ == NULL) MYSQL_YYABORT; } | bool_pri IS UNKNOWN_SYM %prec IS { - $$= new (YYTHD->mem_root) Item_func_isnull($1); + $$= new (thd->mem_root) Item_func_isnull($1); if ($$ == NULL) MYSQL_YYABORT; } | bool_pri IS not UNKNOWN_SYM %prec IS { - $$= new (YYTHD->mem_root) Item_func_isnotnull($1); + $$= new (thd->mem_root) Item_func_isnotnull($1); if ($$ == NULL) MYSQL_YYABORT; } @@ -7032,19 +7008,19 @@ bool_pri: bool_pri IS NULL_SYM %prec IS { - $$= new (YYTHD->mem_root) Item_func_isnull($1); + $$= new (thd->mem_root) Item_func_isnull($1); if ($$ == NULL) MYSQL_YYABORT; } | bool_pri IS not NULL_SYM %prec IS { - $$= new (YYTHD->mem_root) Item_func_isnotnull($1); + $$= new (thd->mem_root) Item_func_isnotnull($1); if ($$ == NULL) MYSQL_YYABORT; } | bool_pri EQUAL_SYM predicate %prec EQUAL_SYM { - $$= new (YYTHD->mem_root) Item_func_equal($1,$3); + $$= new (thd->mem_root) Item_func_equal($1,$3); if ($$ == NULL) MYSQL_YYABORT; } @@ -7066,13 +7042,12 @@ predicate: bit_expr IN_SYM '(' subselect ')' { - $$= new (YYTHD->mem_root) Item_in_subselect($1, $4); + $$= new (thd->mem_root) Item_in_subselect($1, $4); if ($$ == NULL) MYSQL_YYABORT; } | bit_expr not IN_SYM '(' subselect ')' { - THD *thd= YYTHD; Item *item= new (thd->mem_root) Item_in_subselect($1, $5); if (item == NULL) MYSQL_YYABORT; @@ -7082,7 +7057,7 @@ } | bit_expr IN_SYM '(' expr ')' { - $$= handle_sql2003_note184_exception(YYTHD, $1, true, $4); + $$= handle_sql2003_note184_exception(thd, $1, true, $4); if ($$ == NULL) MYSQL_YYABORT; } @@ -7090,13 +7065,13 @@ { $6->push_front($4); $6->push_front($1); - $$= new (YYTHD->mem_root) Item_func_in(*$6); + $$= new (thd->mem_root) Item_func_in(*$6); if ($$ == NULL) MYSQL_YYABORT; } | bit_expr not IN_SYM '(' expr ')' { - $$= handle_sql2003_note184_exception(YYTHD, $1, false, $5); + $$= handle_sql2003_note184_exception(thd, $1, false, $5); if ($$ == NULL) MYSQL_YYABORT; } @@ -7104,7 +7079,7 @@ { $7->push_front($5); $7->push_front($1); - Item_func_in *item = new (YYTHD->mem_root) Item_func_in(*$7); + Item_func_in *item = new (thd->mem_root) Item_func_in(*$7); if (item == NULL) MYSQL_YYABORT; item->negate(); @@ -7112,14 +7087,14 @@ } | bit_expr BETWEEN_SYM bit_expr AND_SYM predicate { - $$= new (YYTHD->mem_root) Item_func_between($1,$3,$5); + $$= new (thd->mem_root) Item_func_between($1,$3,$5); if ($$ == NULL) MYSQL_YYABORT; } | bit_expr not BETWEEN_SYM bit_expr AND_SYM predicate { Item_func_between *item; - item= new (YYTHD->mem_root) Item_func_between($1,$4,$6); + item= new (thd->mem_root) Item_func_between($1,$4,$6); if (item == NULL) MYSQL_YYABORT; item->negate(); @@ -7127,42 +7102,42 @@ } | bit_expr SOUNDS_SYM LIKE bit_expr { - Item *item1= new (YYTHD->mem_root) Item_func_soundex($1); - Item *item4= new (YYTHD->mem_root) Item_func_soundex($4); + Item *item1= new (thd->mem_root) Item_func_soundex($1); + Item *item4= new (thd->mem_root) Item_func_soundex($4); if ((item1 == NULL) || (item4 == NULL)) MYSQL_YYABORT; - $$= new (YYTHD->mem_root) Item_func_eq(item1, item4); + $$= new (thd->mem_root) Item_func_eq(item1, item4); if ($$ == NULL) MYSQL_YYABORT; } | bit_expr LIKE simple_expr opt_escape { - $$= new (YYTHD->mem_root) Item_func_like($1,$3,$4,Lex->escape_used); + $$= new (thd->mem_root) Item_func_like($1,$3,$4,Lex->escape_used); if ($$ == NULL) MYSQL_YYABORT; } | bit_expr not LIKE simple_expr opt_escape { - Item *item= new (YYTHD->mem_root) Item_func_like($1,$4,$5, + Item *item= new (thd->mem_root) Item_func_like($1,$4,$5, Lex->escape_used); if (item == NULL) MYSQL_YYABORT; - $$= new (YYTHD->mem_root) Item_func_not(item); + $$= new (thd->mem_root) Item_func_not(item); if ($$ == NULL) MYSQL_YYABORT; } | bit_expr REGEXP bit_expr { - $$= new (YYTHD->mem_root) Item_func_regex($1,$3); + $$= new (thd->mem_root) Item_func_regex($1,$3); if ($$ == NULL) MYSQL_YYABORT; } | bit_expr not REGEXP bit_expr { - Item *item= new (YYTHD->mem_root) Item_func_regex($1,$4); + Item *item= new (thd->mem_root) Item_func_regex($1,$4); if (item == NULL) MYSQL_YYABORT; - $$= negate_expression(YYTHD, item); + $$= negate_expression(thd, item); if ($$ == NULL) MYSQL_YYABORT; } @@ -7172,85 +7147,85 @@ bit_expr: bit_expr '|' bit_expr %prec '|' { - $$= new (YYTHD->mem_root) Item_func_bit_or($1,$3); + $$= new (thd->mem_root) Item_func_bit_or($1,$3); if ($$ == NULL) MYSQL_YYABORT; } | bit_expr '&' bit_expr %prec '&' { - $$= new (YYTHD->mem_root) Item_func_bit_and($1,$3); + $$= new (thd->mem_root) Item_func_bit_and($1,$3); if ($$ == NULL) MYSQL_YYABORT; } | bit_expr SHIFT_LEFT bit_expr %prec SHIFT_LEFT { - $$= new (YYTHD->mem_root) Item_func_shift_left($1,$3); + $$= new (thd->mem_root) Item_func_shift_left($1,$3); if ($$ == NULL) MYSQL_YYABORT; } | bit_expr SHIFT_RIGHT bit_expr %prec SHIFT_RIGHT { - $$= new (YYTHD->mem_root) Item_func_shift_right($1,$3); + $$= new (thd->mem_root) Item_func_shift_right($1,$3); if ($$ == NULL) MYSQL_YYABORT; } | bit_expr '+' bit_expr %prec '+' { - $$= new (YYTHD->mem_root) Item_func_plus($1,$3); + $$= new (thd->mem_root) Item_func_plus($1,$3); if ($$ == NULL) MYSQL_YYABORT; } | bit_expr '-' bit_expr %prec '-' { - $$= new (YYTHD->mem_root) Item_func_minus($1,$3); + $$= new (thd->mem_root) Item_func_minus($1,$3); if ($$ == NULL) MYSQL_YYABORT; } | bit_expr '+' INTERVAL_SYM expr interval %prec '+' { - $$= new (YYTHD->mem_root) Item_date_add_interval($1,$4,$5,0); + $$= new (thd->mem_root) Item_date_add_interval($1,$4,$5,0); if ($$ == NULL) MYSQL_YYABORT; } | bit_expr '-' INTERVAL_SYM expr interval %prec '-' { - $$= new (YYTHD->mem_root) Item_date_add_interval($1,$4,$5,1); + $$= new (thd->mem_root) Item_date_add_interval($1,$4,$5,1); if ($$ == NULL) MYSQL_YYABORT; } | bit_expr '*' bit_expr %prec '*' { - $$= new (YYTHD->mem_root) Item_func_mul($1,$3); + $$= new (thd->mem_root) Item_func_mul($1,$3); if ($$ == NULL) MYSQL_YYABORT; } | bit_expr '/' bit_expr %prec '/' { - $$= new (YYTHD->mem_root) Item_func_div($1,$3); + $$= new (thd->mem_root) Item_func_div($1,$3); if ($$ == NULL) MYSQL_YYABORT; } | bit_expr '%' bit_expr %prec '%' { - $$= new (YYTHD->mem_root) Item_func_mod($1,$3); + $$= new (thd->mem_root) Item_func_mod($1,$3); if ($$ == NULL) MYSQL_YYABORT; } | bit_expr DIV_SYM bit_expr %prec DIV_SYM { - $$= new (YYTHD->mem_root) Item_func_int_div($1,$3); + $$= new (thd->mem_root) Item_func_int_div($1,$3); if ($$ == NULL) MYSQL_YYABORT; } | bit_expr MOD_SYM bit_expr %prec MOD_SYM { - $$= new (YYTHD->mem_root) Item_func_mod($1,$3); + $$= new (thd->mem_root) Item_func_mod($1,$3); if ($$ == NULL) MYSQL_YYABORT; } | bit_expr '^' bit_expr { - $$= new (YYTHD->mem_root) Item_func_bit_xor($1,$3); + $$= new (thd->mem_root) Item_func_bit_xor($1,$3); if ($$ == NULL) MYSQL_YYABORT; } @@ -7299,7 +7274,6 @@ | function_call_conflict | simple_expr COLLATE_SYM ident_or_text %prec NEG { - THD *thd= YYTHD; Item *i1= new (thd->mem_root) Item_string($3.str, $3.length, thd->charset()); @@ -7315,7 +7289,7 @@ | sum_expr | simple_expr OR_OR_SYM simple_expr { - $$= new (YYTHD->mem_root) Item_func_concat($1, $3); + $$= new (thd->mem_root) Item_func_concat($1, $3); if ($$ == NULL) MYSQL_YYABORT; } @@ -7325,25 +7299,25 @@ } | '-' simple_expr %prec NEG { - $$= new (YYTHD->mem_root) Item_func_neg($2); + $$= new (thd->mem_root) Item_func_neg($2); if ($$ == NULL) MYSQL_YYABORT; } | '~' simple_expr %prec NEG { - $$= new (YYTHD->mem_root) Item_func_bit_neg($2); + $$= new (thd->mem_root) Item_func_bit_neg($2); if ($$ == NULL) MYSQL_YYABORT; } | not2 simple_expr %prec NEG { - $$= negate_expression(YYTHD, $2); + $$= negate_expression(thd, $2); if ($$ == NULL) MYSQL_YYABORT; } | '(' subselect ')' { - $$= new (YYTHD->mem_root) Item_singlerow_subselect($2); + $$= new (thd->mem_root) Item_singlerow_subselect($2); if ($$ == NULL) MYSQL_YYABORT; } @@ -7352,20 +7326,20 @@ | '(' expr ',' expr_list ')' { $4->push_front($2); - $$= new (YYTHD->mem_root) Item_row(*$4); + $$= new (thd->mem_root) Item_row(*$4); if ($$ == NULL) MYSQL_YYABORT; } | ROW_SYM '(' expr ',' expr_list ')' { $5->push_front($3); - $$= new (YYTHD->mem_root) Item_row(*$5); + $$= new (thd->mem_root) Item_row(*$5); if ($$ == NULL) MYSQL_YYABORT; } | EXISTS '(' subselect ')' { - $$= new (YYTHD->mem_root) Item_exists_subselect($3); + $$= new (thd->mem_root) Item_exists_subselect($3); if ($$ == NULL) MYSQL_YYABORT; } @@ -7374,7 +7348,7 @@ | MATCH ident_list_arg AGAINST '(' bit_expr fulltext_options ')' { $2->push_front($5); - Item_func_match *i1= new (YYTHD->mem_root) Item_func_match(*$2, $6); + Item_func_match *i1= new (thd->mem_root) Item_func_match(*$2, $6); if (i1 == NULL) MYSQL_YYABORT; Select->add_ftfunc_to_list(i1); @@ -7382,7 +7356,7 @@ } | BINARY simple_expr %prec NEG { - $$= create_func_cast(YYTHD, $2, ITEM_CAST_CHAR, NULL, NULL, + $$= create_func_cast(thd, $2, ITEM_CAST_CHAR, NULL, NULL, &my_charset_bin); if ($$ == NULL) MYSQL_YYABORT; @@ -7390,27 +7364,27 @@ | CAST_SYM '(' expr AS cast_type ')' { LEX *lex= Lex; - $$= create_func_cast(YYTHD, $3, $5, lex->length, lex->dec, + $$= create_func_cast(thd, $3, $5, lex->length, lex->dec, lex->charset); if ($$ == NULL) MYSQL_YYABORT; } | CASE_SYM opt_expr when_list opt_else END { - $$= new (YYTHD->mem_root) Item_func_case(* $3, $2, $4 ); + $$= new (thd->mem_root) Item_func_case(* $3, $2, $4 ); if ($$ == NULL) MYSQL_YYABORT; } | CONVERT_SYM '(' expr ',' cast_type ')' { - $$= create_func_cast(YYTHD, $3, $5, Lex->length, Lex->dec, + $$= create_func_cast(thd, $3, $5, Lex->length, Lex->dec, Lex->charset); if ($$ == NULL) MYSQL_YYABORT; } | CONVERT_SYM '(' expr USING charset_name ')' { - $$= new (YYTHD->mem_root) Item_func_conv_charset($3,$5); + $$= new (thd->mem_root) Item_func_conv_charset($3,$5); if ($$ == NULL) MYSQL_YYABORT; } @@ -7423,14 +7397,14 @@ my_error(ER_WRONG_COLUMN_NAME, MYF(0), il->my_name()->str); MYSQL_YYABORT; } - $$= new (YYTHD->mem_root) Item_default_value(Lex->current_context(), + $$= new (thd->mem_root) Item_default_value(Lex->current_context(), $3); if ($$ == NULL) MYSQL_YYABORT; } | VALUES '(' simple_ident_nospvar ')' { - $$= new (YYTHD->mem_root) Item_insert_value(Lex->current_context(), + $$= new (thd->mem_root) Item_insert_value(Lex->current_context(), $3); if ($$ == NULL) MYSQL_YYABORT; @@ -7438,7 +7412,7 @@ | INTERVAL_SYM expr interval '+' expr %prec INTERVAL_SYM /* we cannot put interval before - */ { - $$= new (YYTHD->mem_root) Item_date_add_interval($5,$2,$3,0); + $$= new (thd->mem_root) Item_date_add_interval($5,$2,$3,0); if ($$ == NULL) MYSQL_YYABORT; } @@ -7453,19 +7427,19 @@ function_call_keyword: CHAR_SYM '(' expr_list ')' { - $$= new (YYTHD->mem_root) Item_func_char(*$3); + $$= new (thd->mem_root) Item_func_char(*$3); if ($$ == NULL) MYSQL_YYABORT; } | CHAR_SYM '(' expr_list USING charset_name ')' { - $$= new (YYTHD->mem_root) Item_func_char(*$3, $5); + $$= new (thd->mem_root) Item_func_char(*$3, $5); if ($$ == NULL) MYSQL_YYABORT; } | CURRENT_USER optional_braces { - $$= new (YYTHD->mem_root) Item_func_current_user(Lex->current_context()); + $$= new (thd->mem_root) Item_func_current_user(Lex->current_context()); if ($$ == NULL) MYSQL_YYABORT; Lex->set_stmt_unsafe(); @@ -7473,31 +7447,30 @@ } | DATE_SYM '(' expr ')' { - $$= new (YYTHD->mem_root) Item_date_typecast($3); + $$= new (thd->mem_root) Item_date_typecast($3); if ($$ == NULL) MYSQL_YYABORT; } | DAY_SYM '(' expr ')' { - $$= new (YYTHD->mem_root) Item_func_dayofmonth($3); + $$= new (thd->mem_root) Item_func_dayofmonth($3); if ($$ == NULL) MYSQL_YYABORT; } | HOUR_SYM '(' expr ')' { - $$= new (YYTHD->mem_root) Item_func_hour($3); + $$= new (thd->mem_root) Item_func_hour($3); if ($$ == NULL) MYSQL_YYABORT; } | INSERT '(' expr ',' expr ',' expr ',' expr ')' { - $$= new (YYTHD->mem_root) Item_func_insert($3,$5,$7,$9); + $$= new (thd->mem_root) Item_func_insert($3,$5,$7,$9); if ($$ == NULL) MYSQL_YYABORT; } | INTERVAL_SYM '(' expr ',' expr ')' %prec INTERVAL_SYM { - THD *thd= YYTHD; List<Item> *list= new (thd->mem_root) List<Item>; if (list == NULL) MYSQL_YYABORT; @@ -7512,7 +7485,6 @@ } | INTERVAL_SYM '(' expr ',' expr ',' expr_list ')' %prec INTERVAL_SYM { - THD *thd= YYTHD; $7->push_front($5); $7->push_front($3); Item_row *item= new (thd->mem_root) Item_row(*$7); @@ -7524,103 +7496,103 @@ } | LEFT '(' expr ',' expr ')' { - $$= new (YYTHD->mem_root) Item_func_left($3,$5); + $$= new (thd->mem_root) Item_func_left($3,$5); if ($$ == NULL) MYSQL_YYABORT; } | MINUTE_SYM '(' expr ')' { - $$= new (YYTHD->mem_root) Item_func_minute($3); + $$= new (thd->mem_root) Item_func_minute($3); if ($$ == NULL) MYSQL_YYABORT; } | MONTH_SYM '(' expr ')' { - $$= new (YYTHD->mem_root) Item_func_month($3); + $$= new (thd->mem_root) Item_func_month($3); if ($$ == NULL) MYSQL_YYABORT; } | RIGHT '(' expr ',' expr ')' { - $$= new (YYTHD->mem_root) Item_func_right($3,$5); + $$= new (thd->mem_root) Item_func_right($3,$5); if ($$ == NULL) MYSQL_YYABORT; } | SECOND_SYM '(' expr ')' { - $$= new (YYTHD->mem_root) Item_func_second($3); + $$= new (thd->mem_root) Item_func_second($3); if ($$ == NULL) MYSQL_YYABORT; } | TIME_SYM '(' expr ')' { - $$= new (YYTHD->mem_root) Item_time_typecast($3); + $$= new (thd->mem_root) Item_time_typecast($3); if ($$ == NULL) MYSQL_YYABORT; } | TIMESTAMP '(' expr ')' { - $$= new (YYTHD->mem_root) Item_datetime_typecast($3); + $$= new (thd->mem_root) Item_datetime_typecast($3); if ($$ == NULL) MYSQL_YYABORT; } | TIMESTAMP '(' expr ',' expr ')' { - $$= new (YYTHD->mem_root) Item_func_add_time($3, $5, 1, 0); + $$= new (thd->mem_root) Item_func_add_time($3, $5, 1, 0); if ($$ == NULL) MYSQL_YYABORT; } | TRIM '(' expr ')' { - $$= new (YYTHD->mem_root) Item_func_trim($3); + $$= new (thd->mem_root) Item_func_trim($3); if ($$ == NULL) MYSQL_YYABORT; } | TRIM '(' LEADING expr FROM expr ')' { - $$= new (YYTHD->mem_root) Item_func_ltrim($6,$4); + $$= new (thd->mem_root) Item_func_ltrim($6,$4); if ($$ == NULL) MYSQL_YYABORT; } | TRIM '(' TRAILING expr FROM expr ')' { - $$= new (YYTHD->mem_root) Item_func_rtrim($6,$4); + $$= new (thd->mem_root) Item_func_rtrim($6,$4); if ($$ == NULL) MYSQL_YYABORT; } | TRIM '(' BOTH expr FROM expr ')' { - $$= new (YYTHD->mem_root) Item_func_trim($6,$4); + $$= new (thd->mem_root) Item_func_trim($6,$4); if ($$ == NULL) MYSQL_YYABORT; } | TRIM '(' LEADING FROM expr ')' { - $$= new (YYTHD->mem_root) Item_func_ltrim($5); + $$= new (thd->mem_root) Item_func_ltrim($5); if ($$ == NULL) MYSQL_YYABORT; } | TRIM '(' TRAILING FROM expr ')' { - $$= new (YYTHD->mem_root) Item_func_rtrim($5); + $$= new (thd->mem_root) Item_func_rtrim($5); if ($$ == NULL) MYSQL_YYABORT; } | TRIM '(' BOTH FROM expr ')' { - $$= new (YYTHD->mem_root) Item_func_trim($5); + $$= new (thd->mem_root) Item_func_trim($5); if ($$ == NULL) MYSQL_YYABORT; } | TRIM '(' expr FROM expr ')' { - $$= new (YYTHD->mem_root) Item_func_trim($5,$3); + $$= new (thd->mem_root) Item_func_trim($5,$3); if ($$ == NULL) MYSQL_YYABORT; } | USER '(' ')' { - $$= new (YYTHD->mem_root) Item_func_user(); + $$= new (thd->mem_root) Item_func_user(); if ($$ == NULL) MYSQL_YYABORT; Lex->set_stmt_unsafe(); @@ -7628,7 +7600,7 @@ } | YEAR_SYM '(' expr ')' { - $$= new (YYTHD->mem_root) Item_func_year($3); + $$= new (thd->mem_root) Item_func_year($3); if ($$ == NULL) MYSQL_YYABORT; } @@ -7649,34 +7621,34 @@ function_call_nonkeyword: ADDDATE_SYM '(' expr ',' expr ')' { - $$= new (YYTHD->mem_root) Item_date_add_interval($3, $5, + $$= new (thd->mem_root) Item_date_add_interval($3, $5, INTERVAL_DAY, 0); if ($$ == NULL) MYSQL_YYABORT; } | ADDDATE_SYM '(' expr ',' INTERVAL_SYM expr interval ')' { - $$= new (YYTHD->mem_root) Item_date_add_interval($3, $6, $7, 0); + $$= new (thd->mem_root) Item_date_add_interval($3, $6, $7, 0); if ($$ == NULL) MYSQL_YYABORT; } | CURDATE optional_braces { - $$= new (YYTHD->mem_root) Item_func_curdate_local(); + $$= new (thd->mem_root) Item_func_curdate_local(); if ($$ == NULL) MYSQL_YYABORT; Lex->safe_to_cache_query=0; } | CURTIME optional_braces { - $$= new (YYTHD->mem_root) Item_func_curtime_local(); + $$= new (thd->mem_root) Item_func_curtime_local(); if ($$ == NULL) MYSQL_YYABORT; Lex->safe_to_cache_query=0; } | CURTIME '(' expr ')' { - $$= new (YYTHD->mem_root) Item_func_curtime_local($3); + $$= new (thd->mem_root) Item_func_curtime_local($3); if ($$ == NULL) MYSQL_YYABORT; Lex->safe_to_cache_query=0; @@ -7684,83 +7656,83 @@ | DATE_ADD_INTERVAL '(' expr ',' INTERVAL_SYM expr interval ')' %prec INTERVAL_SYM { - $$= new (YYTHD->mem_root) Item_date_add_interval($3,$6,$7,0); + $$= new (thd->mem_root) Item_date_add_interval($3,$6,$7,0); if ($$ == NULL) MYSQL_YYABORT; } | DATE_SUB_INTERVAL '(' expr ',' INTERVAL_SYM expr interval ')' %prec INTERVAL_SYM { - $$= new (YYTHD->mem_root) Item_date_add_interval($3,$6,$7,1); + $$= new (thd->mem_root) Item_date_add_interval($3,$6,$7,1); if ($$ == NULL) MYSQL_YYABORT; } | EXTRACT_SYM '(' interval FROM expr ')' { - $$=new (YYTHD->mem_root) Item_extract( $3, $5); + $$=new (thd->mem_root) Item_extract( $3, $5); if ($$ == NULL) MYSQL_YYABORT; } | GET_FORMAT '(' date_time_type ',' expr ')' { - $$= new (YYTHD->mem_root) Item_func_get_format($3, $5); + $$= new (thd->mem_root) Item_func_get_format($3, $5); if ($$ == NULL) MYSQL_YYABORT; } | NOW_SYM optional_braces { - $$= new (YYTHD->mem_root) Item_func_now_local(); + $$= new (thd->mem_root) Item_func_now_local(); if ($$ == NULL) MYSQL_YYABORT; Lex->safe_to_cache_query=0; } | NOW_SYM '(' expr ')' { - $$= new (YYTHD->mem_root) Item_func_now_local($3); + $$= new (thd->mem_root) Item_func_now_local($3); if ($$ == NULL) MYSQL_YYABORT; Lex->safe_to_cache_query=0; } | POSITION_SYM '(' bit_expr IN_SYM expr ')' { - $$ = new (YYTHD->mem_root) Item_func_locate($5,$3); + $$ = new (thd->mem_root) Item_func_locate($5,$3); if ($$ == NULL) MYSQL_YYABORT; } | SUBDATE_SYM '(' expr ',' expr ')' { - $$= new (YYTHD->mem_root) Item_date_add_interval($3, $5, + $$= new (thd->mem_root) Item_date_add_interval($3, $5, INTERVAL_DAY, 1); if ($$ == NULL) MYSQL_YYABORT; } | SUBDATE_SYM '(' expr ',' INTERVAL_SYM expr interval ')' { - $$= new (YYTHD->mem_root) Item_date_add_interval($3, $6, $7, 1); + $$= new (thd->mem_root) Item_date_add_interval($3, $6, $7, 1); if ($$ == NULL) MYSQL_YYABORT; } | SUBSTRING '(' expr ',' expr ',' expr ')' { - $$= new (YYTHD->mem_root) Item_func_substr($3,$5,$7); + $$= new (thd->mem_root) Item_func_substr($3,$5,$7); if ($$ == NULL) MYSQL_YYABORT; } | SUBSTRING '(' expr ',' expr ')' { - $$= new (YYTHD->mem_root) Item_func_substr($3,$5); + $$= new (thd->mem_root) Item_func_substr($3,$5); if ($$ == NULL) MYSQL_YYABORT; } | SUBSTRING '(' expr FROM expr FOR_SYM expr ')' { - $$= new (YYTHD->mem_root) Item_func_substr($3,$5,$7); + $$= new (thd->mem_root) Item_func_substr($3,$5,$7); if ($$ == NULL) MYSQL_YYABORT; } | SUBSTRING '(' expr FROM expr ')' { - $$= new (YYTHD->mem_root) Item_func_substr($3,$5); + $$= new (thd->mem_root) Item_func_substr($3,$5); if ($$ == NULL) MYSQL_YYABORT; } @@ -7775,9 +7747,9 @@ */ Lex->set_stmt_unsafe(); if (global_system_variables.sysdate_is_now == 0) - $$= new (YYTHD->mem_root) Item_func_sysdate_local(); + $$= new (thd->mem_root) Item_func_sysdate_local(); else - $$= new (YYTHD->mem_root) Item_func_now_local(); + $$= new (thd->mem_root) Item_func_now_local(); if ($$ == NULL) MYSQL_YYABORT; Lex->safe_to_cache_query=0; @@ -7785,42 +7757,42 @@ | SYSDATE '(' expr ')' { if (global_system_variables.sysdate_is_now == 0) - $$= new (YYTHD->mem_root) Item_func_sysdate_local($3); + $$= new (thd->mem_root) Item_func_sysdate_local($3); else - $$= new (YYTHD->mem_root) Item_func_now_local($3); + $$= new (thd->mem_root) Item_func_now_local($3); if ($$ == NULL) MYSQL_YYABORT; Lex->safe_to_cache_query=0; } | TIMESTAMP_ADD '(' interval_time_stamp ',' expr ',' expr ')' { - $$= new (YYTHD->mem_root) Item_date_add_interval($7,$5,$3,0); + $$= new (thd->mem_root) Item_date_add_interval($7,$5,$3,0); if ($$ == NULL) MYSQL_YYABORT; } | TIMESTAMP_DIFF '(' interval_time_stamp ',' expr ',' expr ')' { - $$= new (YYTHD->mem_root) Item_func_timestamp_diff($5,$7,$3); + $$= new (thd->mem_root) Item_func_timestamp_diff($5,$7,$3); if ($$ == NULL) MYSQL_YYABORT; } | UTC_DATE_SYM optional_braces { - $$= new (YYTHD->mem_root) Item_func_curdate_utc(); + $$= new (thd->mem_root) Item_func_curdate_utc(); if ($$ == NULL) MYSQL_YYABORT; Lex->safe_to_cache_query=0; } | UTC_TIME_SYM optional_braces { - $$= new (YYTHD->mem_root) Item_func_curtime_utc(); + $$= new (thd->mem_root) Item_func_curtime_utc(); if ($$ == NULL) MYSQL_YYABORT; Lex->safe_to_cache_query=0; } | UTC_TIMESTAMP_SYM optional_braces { - $$= new (YYTHD->mem_root) Item_func_now_utc(); + $$= new (thd->mem_root) Item_func_now_utc(); if ($$ == NULL) MYSQL_YYABORT; Lex->safe_to_cache_query=0; @@ -7835,62 +7807,61 @@ function_call_conflict: ASCII_SYM '(' expr ')' { - $$= new (YYTHD->mem_root) Item_func_ascii($3); + $$= new (thd->mem_root) Item_func_ascii($3); if ($$ == NULL) MYSQL_YYABORT; } | CHARSET '(' expr ')' { - $$= new (YYTHD->mem_root) Item_func_charset($3); + $$= new (thd->mem_root) Item_func_charset($3); if ($$ == NULL) MYSQL_YYABORT; } | COALESCE '(' expr_list ')' { - $$= new (YYTHD->mem_root) Item_func_coalesce(* $3); + $$= new (thd->mem_root) Item_func_coalesce(* $3); if ($$ == NULL) MYSQL_YYABORT; } | COLLATION_SYM '(' expr ')' { - $$= new (YYTHD->mem_root) Item_func_collation($3); + $$= new (thd->mem_root) Item_func_collation($3); if ($$ == NULL) MYSQL_YYABORT; } | DATABASE '(' ')' { - $$= new (YYTHD->mem_root) Item_func_database(); + $$= new (thd->mem_root) Item_func_database(); if ($$ == NULL) MYSQL_YYABORT; Lex->safe_to_cache_query=0; } | IF '(' expr ',' expr ',' expr ')' { - $$= new (YYTHD->mem_root) Item_func_if($3,$5,$7); + $$= new (thd->mem_root) Item_func_if($3,$5,$7); if ($$ == NULL) MYSQL_YYABORT; } | MICROSECOND_SYM '(' expr ')' { - $$= new (YYTHD->mem_root) Item_func_microsecond($3); + $$= new (thd->mem_root) Item_func_microsecond($3); if ($$ == NULL) MYSQL_YYABORT; } | MOD_SYM '(' expr ',' expr ')' { - $$ = new (YYTHD->mem_root) Item_func_mod($3, $5); + $$ = new (thd->mem_root) Item_func_mod($3, $5); if ($$ == NULL) MYSQL_YYABORT; } | OLD_PASSWORD '(' expr ')' { - $$= new (YYTHD->mem_root) Item_func_old_password($3); + $$= new (thd->mem_root) Item_func_old_password($3); if ($$ == NULL) MYSQL_YYABORT; } | PASSWORD '(' expr ')' { - THD *thd= YYTHD; Item* i1; if (thd->variables.old_passwords) i1= new (thd->mem_root) Item_func_old_password($3); @@ -7902,31 +7873,30 @@ } | QUARTER_SYM '(' expr ')' { - $$ = new (YYTHD->mem_root) Item_func_quarter($3); + $$ = new (thd->mem_root) Item_func_quarter($3); if ($$ == NULL) MYSQL_YYABORT; } | REPEAT_SYM '(' expr ',' expr ')' { - $$= new (YYTHD->mem_root) Item_func_repeat($3,$5); + $$= new (thd->mem_root) Item_func_repeat($3,$5); if ($$ == NULL) MYSQL_YYABORT; } | REPLACE '(' expr ',' expr ',' expr ')' { - $$= new (YYTHD->mem_root) Item_func_replace($3,$5,$7); + $$= new (thd->mem_root) Item_func_replace($3,$5,$7); if ($$ == NULL) MYSQL_YYABORT; } | TRUNCATE_SYM '(' expr ',' expr ')' { - $$= new (YYTHD->mem_root) Item_func_round($3,$5,1); + $$= new (thd->mem_root) Item_func_round($3,$5,1); if ($$ == NULL) MYSQL_YYABORT; } | WEEK_SYM '(' expr ')' { - THD *thd= YYTHD; Item *i1= new (thd->mem_root) Item_int((char*) "0", thd->variables.default_week_format, 1); @@ -7938,7 +7908,7 @@ } | WEEK_SYM '(' expr ',' expr ')' { - $$= new (YYTHD->mem_root) Item_func_week($3,$5); + $$= new (thd->mem_root) Item_func_week($3,$5); if ($$ == NULL) MYSQL_YYABORT; } @@ -7960,52 +7930,52 @@ geometry_function: CONTAINS_SYM '(' expr ',' expr ')' { - $$= GEOM_NEW(YYTHD, + $$= GEOM_NEW(thd, Item_func_spatial_rel($3, $5, Item_func::SP_CONTAINS_FUNC)); } | GEOMETRYCOLLECTION '(' expr_list ')' { - $$= GEOM_NEW(YYTHD, + $$= GEOM_NEW(thd, Item_func_spatial_collection(* $3, Geometry::wkb_geometrycollection, Geometry::wkb_point)); } | LINESTRING '(' expr_list ')' { - $$= GEOM_NEW(YYTHD, + $$= GEOM_NEW(thd, Item_func_spatial_collection(* $3, Geometry::wkb_linestring, Geometry::wkb_point)); } | MULTILINESTRING '(' expr_list ')' { - $$= GEOM_NEW(YYTHD, + $$= GEOM_NEW(thd, Item_func_spatial_collection(* $3, Geometry::wkb_multilinestring, Geometry::wkb_linestring)); } | MULTIPOINT '(' expr_list ')' { - $$= GEOM_NEW(YYTHD, + $$= GEOM_NEW(thd, Item_func_spatial_collection(* $3, Geometry::wkb_multipoint, Geometry::wkb_point)); } | MULTIPOLYGON '(' expr_list ')' { - $$= GEOM_NEW(YYTHD, + $$= GEOM_NEW(thd, Item_func_spatial_collection(* $3, Geometry::wkb_multipolygon, Geometry::wkb_polygon)); } | POINT_SYM '(' expr ',' expr ')' { - $$= GEOM_NEW(YYTHD, Item_func_point($3,$5)); + $$= GEOM_NEW(thd, Item_func_point($3,$5)); } | POLYGON '(' expr_list ')' { - $$= GEOM_NEW(YYTHD, + $$= GEOM_NEW(thd, Item_func_spatial_collection(* $3, Geometry::wkb_polygon, Geometry::wkb_linestring)); @@ -8043,7 +8013,6 @@ } opt_udf_expr_list ')' { - THD *thd= YYTHD; Create_func *builder; Item *item= NULL; @@ -8097,7 +8066,6 @@ } | ident '.' ident '(' opt_expr_list ')' { - THD *thd= YYTHD; Create_qfunc *builder; Item *item= NULL; @@ -8161,7 +8129,7 @@ udf_expr_list: udf_expr { - $$= new (YYTHD->mem_root) List<Item>; + $$= new (thd->mem_root) List<Item>; if ($$ == NULL) MYSQL_YYABORT; $$->push_back($1); @@ -8194,7 +8162,7 @@ remember_name we may get quoted or escaped names. */ else if ($2->type() != Item::FIELD_ITEM) - $2->set_name($1, (uint) ($3 - $1), YYTHD->charset()); + $2->set_name($1, (uint) ($3 - $1), thd->charset()); $$= $2; } ; @@ -8202,46 +8170,46 @@ sum_expr: AVG_SYM '(' in_sum_expr ')' { - $$= new (YYTHD->mem_root) Item_sum_avg($3); + $$= new (thd->mem_root) Item_sum_avg($3); if ($$ == NULL) MYSQL_YYABORT; } | AVG_SYM '(' DISTINCT in_sum_expr ')' { - $$= new (YYTHD->mem_root) Item_sum_avg_distinct($4); + $$= new (thd->mem_root) Item_sum_avg_distinct($4); if ($$ == NULL) MYSQL_YYABORT; } | BIT_AND '(' in_sum_expr ')' { - $$= new (YYTHD->mem_root) Item_sum_and($3); + $$= new (thd->mem_root) Item_sum_and($3); if ($$ == NULL) MYSQL_YYABORT; } | BIT_OR '(' in_sum_expr ')' { - $$= new (YYTHD->mem_root) Item_sum_or($3); + $$= new (thd->mem_root) Item_sum_or($3); if ($$ == NULL) MYSQL_YYABORT; } | BIT_XOR '(' in_sum_expr ')' { - $$= new (YYTHD->mem_root) Item_sum_xor($3); + $$= new (thd->mem_root) Item_sum_xor($3); if ($$ == NULL) MYSQL_YYABORT; } | COUNT_SYM '(' opt_all '*' ')' { - Item *item= new (YYTHD->mem_root) Item_int((int32) 0L,1); + Item *item= new (thd->mem_root) Item_int((int32) 0L,1); if (item == NULL) MYSQL_YYABORT; - $$= new (YYTHD->mem_root) Item_sum_count(item); + $$= new (thd->mem_root) Item_sum_count(item); if ($$ == NULL) MYSQL_YYABORT; } | COUNT_SYM '(' in_sum_expr ')' { - $$= new (YYTHD->mem_root) Item_sum_count($3); + $$= new (thd->mem_root) Item_sum_count($3); if ($$ == NULL) MYSQL_YYABORT; } @@ -8251,13 +8219,13 @@ { Select->in_sum_expr--; } ')' { - $$= new (YYTHD->mem_root) Item_sum_count_distinct(* $5); + $$= new (thd->mem_root) Item_sum_count_distinct(* $5); if ($$ == NULL) MYSQL_YYABORT; } | MIN_SYM '(' in_sum_expr ')' { - $$= new (YYTHD->mem_root) Item_sum_min($3); + $$= new (thd->mem_root) Item_sum_min($3); if ($$ == NULL) MYSQL_YYABORT; } @@ -8268,55 +8236,55 @@ */ | MIN_SYM '(' DISTINCT in_sum_expr ')' { - $$= new (YYTHD->mem_root) Item_sum_min($4); + $$= new (thd->mem_root) Item_sum_min($4); if ($$ == NULL) MYSQL_YYABORT; } | MAX_SYM '(' in_sum_expr ')' { - $$= new (YYTHD->mem_root) Item_sum_max($3); + $$= new (thd->mem_root) Item_sum_max($3); if ($$ == NULL) MYSQL_YYABORT; } | MAX_SYM '(' DISTINCT in_sum_expr ')' { - $$= new (YYTHD->mem_root) Item_sum_max($4); + $$= new (thd->mem_root) Item_sum_max($4); if ($$ == NULL) MYSQL_YYABORT; } | STD_SYM '(' in_sum_expr ')' { - $$= new (YYTHD->mem_root) Item_sum_std($3, 0); + $$= new (thd->mem_root) Item_sum_std($3, 0); if ($$ == NULL) MYSQL_YYABORT; } | VARIANCE_SYM '(' in_sum_expr ')' { - $$= new (YYTHD->mem_root) Item_sum_variance($3, 0); + $$= new (thd->mem_root) Item_sum_variance($3, 0); if ($$ == NULL) MYSQL_YYABORT; } | STDDEV_SAMP_SYM '(' in_sum_expr ')' { - $$= new (YYTHD->mem_root) Item_sum_std($3, 1); + $$= new (thd->mem_root) Item_sum_std($3, 1); if ($$ == NULL) MYSQL_YYABORT; } | VAR_SAMP_SYM '(' in_sum_expr ')' { - $$= new (YYTHD->mem_root) Item_sum_variance($3, 1); + $$= new (thd->mem_root) Item_sum_variance($3, 1); if ($$ == NULL) MYSQL_YYABORT; } | SUM_SYM '(' in_sum_expr ')' { - $$= new (YYTHD->mem_root) Item_sum_sum($3); + $$= new (thd->mem_root) Item_sum_sum($3); if ($$ == NULL) MYSQL_YYABORT; } | SUM_SYM '(' DISTINCT in_sum_expr ')' { - $$= new (YYTHD->mem_root) Item_sum_sum_distinct($4); + $$= new (thd->mem_root) Item_sum_sum_distinct($4); if ($$ == NULL) MYSQL_YYABORT; } @@ -8328,7 +8296,7 @@ { SELECT_LEX *sel= Select; sel->in_sum_expr--; - $$= new (YYTHD->mem_root) + $$= new (thd->mem_root) Item_func_group_concat(Lex->current_context(), $3, $5, sel->gorder_list, $7); if ($$ == NULL) @@ -8357,7 +8325,7 @@ ident_or_text SET_VAR expr { Item_func_set_user_var *item; - $$= item= new (YYTHD->mem_root) Item_func_set_user_var($1, $3); + $$= item= new (thd->mem_root) Item_func_set_user_var($1, $3); if ($$ == NULL) MYSQL_YYABORT; LEX *lex= Lex; @@ -8366,7 +8334,7 @@ } | ident_or_text { - $$= new (YYTHD->mem_root) Item_func_get_user_var($1); + $$= new (thd->mem_root) Item_func_get_user_var($1); if ($$ == NULL) MYSQL_YYABORT; LEX *lex= Lex; @@ -8380,7 +8348,7 @@ my_parse_error(ER(ER_SYNTAX_ERROR)); MYSQL_YYABORT; } - if (!($$= get_system_var(YYTHD, $2, $3, $4))) + if (!($$= get_system_var(thd, $2, $3, $4))) MYSQL_YYABORT; if (!((Item_func_get_system_var*) $$)->is_written_to_binlog()) Lex->set_stmt_unsafe(); @@ -8395,7 +8363,7 @@ opt_gconcat_separator: /* empty */ { - $$= new (YYTHD->mem_root) String(",", 1, &my_charset_latin1); + $$= new (thd->mem_root) String(",", 1, &my_charset_latin1); if ($$ == NULL) MYSQL_YYABORT; } @@ -8422,9 +8390,9 @@ gorder_list: gorder_list ',' order_ident order_dir - { if (add_gorder_to_list(YYTHD, $3,(bool) $4)) MYSQL_YYABORT; } + { if (add_gorder_to_list(thd, $3,(bool) $4)) MYSQL_YYABORT; } | order_ident order_dir - { if (add_gorder_to_list(YYTHD, $1,(bool) $2)) MYSQL_YYABORT; } + { if (add_gorder_to_list(thd, $1,(bool) $2)) MYSQL_YYABORT; } ; in_sum_expr: @@ -8477,7 +8445,7 @@ expr_list: expr { - $$= new (YYTHD->mem_root) List<Item>; + $$= new (thd->mem_root) List<Item>; if ($$ == NULL) MYSQL_YYABORT; $$->push_back($1); @@ -8497,7 +8465,7 @@ ident_list: simple_ident { - $$= new (YYTHD->mem_root) List<Item>; + $$= new (thd->mem_root) List<Item>; if ($$ == NULL) MYSQL_YYABORT; $$->push_back($1); @@ -8595,7 +8563,7 @@ { MYSQL_YYABORT_UNLESS($1 && $3); /* Change the current name resolution context to a local context. */ - if (push_new_name_resolution_context(YYTHD, $1, $3)) + if (push_new_name_resolution_context(thd, $1, $3)) MYSQL_YYABORT; Select->parsing_place= IN_ON; } @@ -8610,7 +8578,7 @@ { MYSQL_YYABORT_UNLESS($1 && $3); /* Change the current name resolution context to a local context. */ - if (push_new_name_resolution_context(YYTHD, $1, $3)) + if (push_new_name_resolution_context(thd, $1, $3)) MYSQL_YYABORT; Select->parsing_place= IN_ON; } @@ -8640,7 +8608,7 @@ { MYSQL_YYABORT_UNLESS($1 && $5); /* Change the current name resolution context to a local context. */ - if (push_new_name_resolution_context(YYTHD, $1, $5)) + if (push_new_name_resolution_context(thd, $1, $5)) MYSQL_YYABORT; Select->parsing_place= IN_ON; } @@ -8676,7 +8644,7 @@ { MYSQL_YYABORT_UNLESS($1 && $5); /* Change the current name resolution context to a local context. */ - if (push_new_name_resolution_context(YYTHD, $1, $5)) + if (push_new_name_resolution_context(thd, $1, $5)) MYSQL_YYABORT; Select->parsing_place= IN_ON; } @@ -8724,7 +8692,7 @@ } table_ident opt_table_alias opt_key_definition { - if (!($$= Select->add_table_to_list(YYTHD, $2, $3, + if (!($$= Select->add_table_to_list(thd, $2, $3, Select->get_table_join_options(), Lex->lock_option, Select->pop_index_hints()))) @@ -8922,7 +8890,7 @@ opt_index_hints_list: /* empty */ - | { Select->alloc_index_hints(YYTHD); } index_hints_list + | { Select->alloc_index_hints(thd); } index_hints_list ; opt_key_definition: @@ -8931,15 +8899,15 @@ ; opt_key_usage_list: - /* empty */ { Select->add_index_hint(YYTHD, NULL, 0); } + /* empty */ { Select->add_index_hint(thd, NULL, 0); } | key_usage_list {} ; key_usage_element: ident - { Select->add_index_hint(YYTHD, $1.str, $1.length); } + { Select->add_index_hint(thd, $1.str, $1.length); } | PRIMARY_SYM - { Select->add_index_hint(YYTHD, (char *)"PRIMARY", 7); } + { Select->add_index_hint(thd, (char *)"PRIMARY", 7); } ; key_usage_list: @@ -8952,7 +8920,7 @@ { if (!($$= new List<String>)) MYSQL_YYABORT; - String *s= new (YYTHD->mem_root) String((const char *) $1.str, + String *s= new (thd->mem_root) String((const char *) $1.str, $1.length, system_charset_info); if (s == NULL) @@ -8961,7 +8929,7 @@ } | using_list ',' ident { - String *s= new (YYTHD->mem_root) String((const char *) $3.str, + String *s= new (thd->mem_root) String((const char *) $3.str, $3.length, system_charset_info); if (s == NULL) @@ -9002,7 +8970,7 @@ implementation without changing its resolution. */ - WARN_DEPRECATED(yythd, VER_CELOSIA, "FRAC_SECOND", "MICROSECOND"); + WARN_DEPRECATED(thd, VER_CELOSIA, "FRAC_SECOND", "MICROSECOND"); } ; @@ -9086,7 +9054,6 @@ } | /* empty */ { - THD *thd= YYTHD; Lex->escape_used= FALSE; $$= ((thd->variables.sql_mode & MODE_NO_BACKSLASH_ESCAPES) ? new (thd->mem_root) Item_string("", 0, &my_charset_latin1) : @@ -9107,9 +9074,9 @@ group_list: group_list ',' order_ident order_dir - { if (add_group_to_list(YYTHD, $3,(bool) $4)) MYSQL_YYABORT; } + { if (add_group_to_list(thd, $3,(bool) $4)) MYSQL_YYABORT; } | order_ident order_dir - { if (add_group_to_list(YYTHD, $1,(bool) $2)) MYSQL_YYABORT; } + { if (add_group_to_list(thd, $1,(bool) $2)) MYSQL_YYABORT; } ; olap_opt: @@ -9156,7 +9123,6 @@ alter_order_item: simple_ident_nospvar order_dir { - THD *thd= YYTHD; bool ascending= ($2 == 1) ? true : false; if (add_order_to_list(thd, $1, ascending)) MYSQL_YYABORT; @@ -9209,9 +9175,9 @@ order_list: order_list ',' order_ident order_dir - { if (add_order_to_list(YYTHD, $3,(bool) $4)) MYSQL_YYABORT; } + { if (add_order_to_list(thd, $3,(bool) $4)) MYSQL_YYABORT; } | order_ident order_dir - { if (add_order_to_list(YYTHD, $1,(bool) $2)) MYSQL_YYABORT; } + { if (add_order_to_list(thd, $1,(bool) $2)) MYSQL_YYABORT; } ; order_dir: @@ -9271,19 +9237,19 @@ } | ULONGLONG_NUM { - $$= new (YYTHD->mem_root) Item_uint($1.str, $1.length); + $$= new (thd->mem_root) Item_uint($1.str, $1.length); if ($$ == NULL) MYSQL_YYABORT; } | LONG_NUM { - $$= new (YYTHD->mem_root) Item_uint($1.str, $1.length); + $$= new (thd->mem_root) Item_uint($1.str, $1.length); if ($$ == NULL) MYSQL_YYABORT; } | NUM { - $$= new (YYTHD->mem_root) Item_uint($1.str, $1.length); + $$= new (thd->mem_root) Item_uint($1.str, $1.length); if ($$ == NULL) MYSQL_YYABORT; } @@ -9365,7 +9331,7 @@ lex->proc_list.elements=0; lex->proc_list.first=0; lex->proc_list.next= &lex->proc_list.first; - Item_field *item= new (YYTHD->mem_root) + Item_field *item= new (thd->mem_root) Item_field(&lex->current_select->context, NULL, NULL, $2.str); if (item == NULL) @@ -9390,8 +9356,7 @@ procedure_item: remember_name expr remember_end { - THD *thd= YYTHD; - + if (add_proc_to_list(thd, $2)) MYSQL_YYABORT; if (!$2->name) @@ -9560,7 +9525,6 @@ } | DROP FUNCTION_SYM if_exists ident '.' ident { - THD *thd= YYTHD; LEX *lex= thd->lex; sp_name *spname; if ($4.str && check_db_name(&$4)) @@ -9583,7 +9547,6 @@ } | DROP FUNCTION_SYM if_exists ident { - THD *thd= YYTHD; LEX *lex= thd->lex; LEX_STRING db= {0, 0}; sp_name *spname; @@ -9664,7 +9627,7 @@ table_name: table_ident { - if (!Select->add_table_to_list(YYTHD, $1, NULL, TL_OPTION_UPDATING)) + if (!Select->add_table_to_list(thd, $1, NULL, TL_OPTION_UPDATING)) MYSQL_YYABORT; } ; @@ -9677,7 +9640,7 @@ table_alias_ref: table_ident_opt_wild { - if (!Select->add_table_to_list(YYTHD, $1, NULL, + if (!Select->add_table_to_list(thd, $1, NULL, TL_OPTION_UPDATING | TL_OPTION_ALIAS, Lex->lock_option )) MYSQL_YYABORT; @@ -9868,7 +9831,7 @@ expr { $$= $1;} | DEFAULT { - $$= new (YYTHD->mem_root) Item_default_value(Lex->current_context()); + $$= new (thd->mem_root) Item_default_value(Lex->current_context()); if ($$ == NULL) MYSQL_YYABORT; } @@ -9922,7 +9885,7 @@ update_elem: simple_ident_nospvar equal expr_or_default { - if (add_item_to_list(YYTHD, $1) || add_value_to_list(YYTHD, $3)) + if (add_item_to_list(thd, $1) || add_value_to_list(thd, $3)) MYSQL_YYABORT; } ; @@ -9965,7 +9928,7 @@ single_multi: FROM table_ident { - if (!Select->add_table_to_list(YYTHD, $2, NULL, TL_OPTION_UPDATING, + if (!Select->add_table_to_list(thd, $2, NULL, TL_OPTION_UPDATING, Lex->lock_option)) MYSQL_YYABORT; } @@ -9998,7 +9961,7 @@ Table_ident *ti= new Table_ident($1); if (ti == NULL) MYSQL_YYABORT; - if (!Select->add_table_to_list(YYTHD, + if (!Select->add_table_to_list(thd, ti, $3, TL_OPTION_UPDATING | TL_OPTION_ALIAS, @@ -10007,10 +9970,10 @@ } | ident '.' ident opt_wild opt_table_alias { - Table_ident *ti= new Table_ident(YYTHD, $1, $3, 0); + Table_ident *ti= new Table_ident(thd, $1, $3, 0); if (ti == NULL) MYSQL_YYABORT; - if (!Select->add_table_to_list(YYTHD, + if (!Select->add_table_to_list(thd, ti, $5, TL_OPTION_UPDATING | TL_OPTION_ALIAS, @@ -10130,7 +10093,7 @@ { LEX *lex= Lex; lex->sql_command= SQLCOM_SHOW_DATABASES; - if (prepare_schema_table(YYTHD, lex, 0, SCH_SCHEMATA)) + if (prepare_schema_table(thd, lex, 0, SCH_SCHEMATA)) MYSQL_YYABORT; } | opt_full TABLES opt_db wild_and_where @@ -10138,7 +10101,7 @@ LEX *lex= Lex; lex->sql_command= SQLCOM_SHOW_TABLES; lex->select_lex.db= $3; - if (prepare_schema_table(YYTHD, lex, 0, SCH_TABLE_NAMES)) + if (prepare_schema_table(thd, lex, 0, SCH_TABLE_NAMES)) MYSQL_YYABORT; } | opt_full TRIGGERS_SYM opt_db wild_and_where @@ -10146,7 +10109,7 @@ LEX *lex= Lex; lex->sql_command= SQLCOM_SHOW_TRIGGERS; lex->select_lex.db= $3; - if (prepare_schema_table(YYTHD, lex, 0, SCH_TRIGGERS)) + if (prepare_schema_table(thd, lex, 0, SCH_TRIGGERS)) MYSQL_YYABORT; } | EVENTS_SYM opt_db wild_and_where @@ -10154,7 +10117,7 @@ LEX *lex= Lex; lex->sql_command= SQLCOM_SHOW_EVENTS; lex->select_lex.db= $2; - if (prepare_schema_table(YYTHD, lex, 0, SCH_EVENTS)) + if (prepare_schema_table(thd, lex, 0, SCH_EVENTS)) MYSQL_YYABORT; } | TABLE_SYM STATUS_SYM opt_db wild_and_where @@ -10162,7 +10125,7 @@ LEX *lex= Lex; lex->sql_command= SQLCOM_SHOW_TABLE_STATUS; lex->select_lex.db= $3; - if (prepare_schema_table(YYTHD, lex, 0, SCH_TABLES)) + if (prepare_schema_table(thd, lex, 0, SCH_TABLES)) MYSQL_YYABORT; } | OPEN_SYM TABLES opt_db wild_and_where @@ -10170,22 +10133,22 @@ LEX *lex= Lex; lex->sql_command= SQLCOM_SHOW_OPEN_TABLES; lex->select_lex.db= $3; - if (prepare_schema_table(YYTHD, lex, 0, SCH_OPEN_TABLES)) + if (prepare_schema_table(thd, lex, 0, SCH_OPEN_TABLES)) MYSQL_YYABORT; } | opt_full PLUGIN_SYM { LEX *lex= Lex; - WARN_DEPRECATED(yythd, "6.0", "SHOW PLUGIN", "'SHOW PLUGINS'"); + WARN_DEPRECATED(thd, "6.0", "SHOW PLUGIN", "'SHOW PLUGINS'"); lex->sql_command= SQLCOM_SHOW_PLUGINS; - if (prepare_schema_table(YYTHD, lex, 0, SCH_PLUGINS)) + if (prepare_schema_table(thd, lex, 0, SCH_PLUGINS)) MYSQL_YYABORT; } | PLUGINS_SYM { LEX *lex= Lex; lex->sql_command= SQLCOM_SHOW_PLUGINS; - if (prepare_schema_table(YYTHD, lex, 0, SCH_PLUGINS)) + if (prepare_schema_table(thd, lex, 0, SCH_PLUGINS)) MYSQL_YYABORT; } | ENGINE_SYM known_storage_engines show_engine_param @@ -10198,7 +10161,7 @@ lex->sql_command= SQLCOM_SHOW_FIELDS; if ($5) $4->change_db($5); - if (prepare_schema_table(YYTHD, lex, $4, SCH_COLUMNS)) + if (prepare_schema_table(thd, lex, $4, SCH_COLUMNS)) MYSQL_YYABORT; } | NEW_SYM MASTER_SYM FOR_SYM SLAVE @@ -10233,7 +10196,7 @@ lex->sql_command= SQLCOM_SHOW_KEYS; if ($4) $3->change_db($4); - if (prepare_schema_table(YYTHD, lex, $3, SCH_STATISTICS)) + if (prepare_schema_table(thd, lex, $3, SCH_STATISTICS)) MYSQL_YYABORT; } | COLUMN_SYM TYPES_SYM @@ -10245,15 +10208,15 @@ { LEX *lex=Lex; lex->sql_command= SQLCOM_SHOW_STORAGE_ENGINES; - WARN_DEPRECATED(yythd, "6.0", "SHOW TABLE TYPES", "'SHOW [STORAGE] ENGINES'"); - if (prepare_schema_table(YYTHD, lex, 0, SCH_ENGINES)) + WARN_DEPRECATED(thd, "6.0", "SHOW TABLE TYPES", "'SHOW [STORAGE] ENGINES'"); + if (prepare_schema_table(thd, lex, 0, SCH_ENGINES)) MYSQL_YYABORT; } | opt_storage ENGINES_SYM { LEX *lex=Lex; lex->sql_command= SQLCOM_SHOW_STORAGE_ENGINES; - if (prepare_schema_table(YYTHD, lex, 0, SCH_ENGINES)) + if (prepare_schema_table(thd, lex, 0, SCH_ENGINES)) MYSQL_YYABORT; } | AUTHORS_SYM @@ -10285,7 +10248,7 @@ { LEX *lex= Lex; lex->sql_command= SQLCOM_SHOW_PROFILE; - if (prepare_schema_table(YYTHD, lex, NULL, SCH_PROFILES) != 0) + if (prepare_schema_table(thd, lex, NULL, SCH_PROFILES) != 0) YYABORT; } | opt_var_type STATUS_SYM wild_and_where @@ -10293,7 +10256,7 @@ LEX *lex= Lex; lex->sql_command= SQLCOM_SHOW_STATUS; lex->option_type= $1; - if (prepare_schema_table(YYTHD, lex, 0, SCH_STATUS)) + if (prepare_schema_table(thd, lex, 0, SCH_STATUS)) MYSQL_YYABORT; } | INNOBASE_SYM STATUS_SYM @@ -10301,24 +10264,24 @@ LEX *lex= Lex; lex->sql_command = SQLCOM_SHOW_ENGINE_STATUS; if (!(lex->create_info.db_type= - ha_resolve_by_legacy_type(YYTHD, DB_TYPE_INNODB))) + ha_resolve_by_legacy_type(thd, DB_TYPE_INNODB))) { my_error(ER_UNKNOWN_STORAGE_ENGINE, MYF(0), "InnoDB"); MYSQL_YYABORT; } - WARN_DEPRECATED(yythd, "6.0", "SHOW INNODB STATUS", "'SHOW ENGINE INNODB STATUS'"); + WARN_DEPRECATED(thd, "6.0", "SHOW INNODB STATUS", "'SHOW ENGINE INNODB STATUS'"); } | MUTEX_SYM STATUS_SYM { LEX *lex= Lex; lex->sql_command = SQLCOM_SHOW_ENGINE_MUTEX; if (!(lex->create_info.db_type= - ha_resolve_by_legacy_type(YYTHD, DB_TYPE_INNODB))) + ha_resolve_by_legacy_type(thd, DB_TYPE_INNODB))) { my_error(ER_UNKNOWN_STORAGE_ENGINE, MYF(0), "InnoDB"); MYSQL_YYABORT; } - WARN_DEPRECATED(yythd, "6.0", "SHOW MUTEX STATUS", "'SHOW ENGINE INNODB MUTEX'"); + WARN_DEPRECATED(thd, "6.0", "SHOW MUTEX STATUS", "'SHOW ENGINE INNODB MUTEX'"); } | opt_full PROCESSLIST_SYM { Lex->sql_command= SQLCOM_SHOW_PROCESSLIST;} @@ -10327,21 +10290,21 @@ LEX *lex= Lex; lex->sql_command= SQLCOM_SHOW_VARIABLES; lex->option_type= $1; - if (prepare_schema_table(YYTHD, lex, 0, SCH_VARIABLES)) + if (prepare_schema_table(thd, lex, 0, SCH_VARIABLES)) MYSQL_YYABORT; } | charset wild_and_where { LEX *lex= Lex; lex->sql_command= SQLCOM_SHOW_CHARSETS; - if (prepare_schema_table(YYTHD, lex, 0, SCH_CHARSETS)) + if (prepare_schema_table(thd, lex, 0, SCH_CHARSETS)) MYSQL_YYABORT; } | COLLATION_SYM wild_and_where { LEX *lex= Lex; lex->sql_command= SQLCOM_SHOW_COLLATIONS; - if (prepare_schema_table(YYTHD, lex, 0, SCH_COLLATIONS)) + if (prepare_schema_table(thd, lex, 0, SCH_COLLATIONS)) MYSQL_YYABORT; } | GRANTS @@ -10371,7 +10334,7 @@ { LEX *lex= Lex; lex->sql_command = SQLCOM_SHOW_CREATE; - if (!lex->select_lex.add_table_to_list(YYTHD, $3, NULL,0)) + if (!lex->select_lex.add_table_to_list(thd, $3, NULL,0)) MYSQL_YYABORT; lex->only_view= 0; lex->create_info.storage_media= HA_SM_DEFAULT; @@ -10380,7 +10343,7 @@ { LEX *lex= Lex; lex->sql_command = SQLCOM_SHOW_CREATE; - if (!lex->select_lex.add_table_to_list(YYTHD, $3, NULL, 0)) + if (!lex->select_lex.add_table_to_list(thd, $3, NULL, 0)) MYSQL_YYABORT; lex->only_view= 1; } @@ -10416,14 +10379,14 @@ { LEX *lex= Lex; lex->sql_command= SQLCOM_SHOW_STATUS_PROC; - if (prepare_schema_table(YYTHD, lex, 0, SCH_PROCEDURES)) + if (prepare_schema_table(thd, lex, 0, SCH_PROCEDURES)) MYSQL_YYABORT; } | FUNCTION_SYM STATUS_SYM wild_and_where { LEX *lex= Lex; lex->sql_command= SQLCOM_SHOW_STATUS_FUNC; - if (prepare_schema_table(YYTHD, lex, 0, SCH_PROCEDURES)) + if (prepare_schema_table(thd, lex, 0, SCH_PROCEDURES)) MYSQL_YYABORT; } | PROCEDURE CODE_SYM sp_name @@ -10501,7 +10464,7 @@ /* empty */ | LIKE TEXT_STRING_sys { - Lex->wild= new (YYTHD->mem_root) String($2.str, $2.length, + Lex->wild= new (thd->mem_root) String($2.str, $2.length, system_charset_info); if (Lex->wild == NULL) MYSQL_YYABORT; @@ -10525,7 +10488,7 @@ lex->sql_command= SQLCOM_SHOW_FIELDS; lex->select_lex.db= 0; lex->verbose= 0; - if (prepare_schema_table(YYTHD, lex, $2, SCH_COLUMNS)) + if (prepare_schema_table(thd, lex, $2, SCH_COLUMNS)) MYSQL_YYABORT; } opt_describe_column {} @@ -10554,7 +10517,7 @@ | text_string { Lex->wild= $1; } | ident { - Lex->wild= new (YYTHD->mem_root) String((const char*) $1.str, + Lex->wild= new (thd->mem_root) String((const char*) $1.str, $1.length, system_charset_info); if (Lex->wild == NULL) @@ -10697,7 +10660,6 @@ load: LOAD DATA_SYM { - THD *thd= YYTHD; LEX *lex= thd->lex; if (lex->sphead) @@ -10711,7 +10673,7 @@ | LOAD TABLE_SYM table_ident FROM MASTER_SYM { LEX *lex=Lex; - WARN_DEPRECATED(yythd, "6.0", "LOAD TABLE FROM MASTER", + WARN_DEPRECATED(thd, "6.0", "LOAD TABLE FROM MASTER", "MySQL Administrator (mysqldump, mysql)"); if (lex->sphead) { @@ -10719,7 +10681,7 @@ MYSQL_YYABORT; } lex->sql_command = SQLCOM_LOAD_MASTER_TABLE; - if (!Select->add_table_to_list(YYTHD, $3, NULL, TL_OPTION_UPDATING)) + if (!Select->add_table_to_list(thd, $3, NULL, TL_OPTION_UPDATING)) MYSQL_YYABORT; } ; @@ -10739,7 +10701,7 @@ opt_duplicate INTO TABLE_SYM table_ident { LEX *lex=Lex; - if (!Select->add_table_to_list(YYTHD, $9, NULL, TL_OPTION_UPDATING, + if (!Select->add_table_to_list(thd, $9, NULL, TL_OPTION_UPDATING, lex->lock_option)) MYSQL_YYABORT; lex->field_list.empty(); @@ -10754,7 +10716,7 @@ | FROM MASTER_SYM { Lex->sql_command = SQLCOM_LOAD_MASTER_DATA; - WARN_DEPRECATED(yythd, "6.0", "LOAD DATA FROM MASTER", + WARN_DEPRECATED(thd, "6.0", "LOAD DATA FROM MASTER", "mysqldump or future " "BACKUP/RESTORE DATABASE facility"); } @@ -10872,7 +10834,7 @@ simple_ident_nospvar {$$= $1;} | '@' ident_or_text { - $$= new (YYTHD->mem_root) Item_user_var_as_out_param($2); + $$= new (thd->mem_root) Item_user_var_as_out_param($2); if ($$ == NULL) MYSQL_YYABORT; } @@ -10889,7 +10851,6 @@ TEXT_STRING { LEX_STRING tmp; - THD *thd= YYTHD; CHARSET_INFO *cs_con= thd->variables.collation_connection; CHARSET_INFO *cs_cli= thd->variables.character_set_client; uint repertoire= thd->lex->text_string_is_7bit && @@ -10915,7 +10876,7 @@ uint repertoire= Lex->text_string_is_7bit ? MY_REPERTOIRE_ASCII : MY_REPERTOIRE_UNICODE30; DBUG_ASSERT(my_charset_is_ascii_based(national_charset_info)); - $$= new (YYTHD->mem_root) Item_string($1.str, $1.length, + $$= new (thd->mem_root) Item_string($1.str, $1.length, national_charset_info, DERIVATION_COERCIBLE, repertoire); @@ -10924,7 +10885,7 @@ } | UNDERSCORE_CHARSET TEXT_STRING { - Item_string *str= new (YYTHD->mem_root) Item_string($2.str, + Item_string *str= new (thd->mem_root) Item_string($2.str, $2.length, $1); if (str == NULL) MYSQL_YYABORT; @@ -10943,7 +10904,7 @@ If the string has been pure ASCII so far, check the new part. */ - CHARSET_INFO *cs= YYTHD->variables.collation_connection; + CHARSET_INFO *cs= thd->variables.collation_connection; item->collation.repertoire|= my_string_repertoire(cs, $2.str, $2.length); @@ -10954,15 +10915,15 @@ text_string: TEXT_STRING_literal { - $$= new (YYTHD->mem_root) String($1.str, + $$= new (thd->mem_root) String($1.str, $1.length, - YYTHD->variables.collation_connection); + thd->variables.collation_connection); if ($$ == NULL) MYSQL_YYABORT; } | HEX_NUM { - Item *tmp= new (YYTHD->mem_root) Item_hex_string($1.str, $1.length); + Item *tmp= new (thd->mem_root) Item_hex_string($1.str, $1.length); if (tmp == NULL) MYSQL_YYABORT; /* @@ -10974,7 +10935,7 @@ } | BIN_NUM { - Item *tmp= new (YYTHD->mem_root) Item_bin_string($1.str, $1.length); + Item *tmp= new (thd->mem_root) Item_bin_string($1.str, $1.length); if (tmp == NULL) MYSQL_YYABORT; /* @@ -10989,7 +10950,6 @@ param_marker: PARAM_MARKER { - THD *thd= YYTHD; LEX *lex= thd->lex; Lex_input_stream *lip= YYLIP; Item_param *item; @@ -11022,38 +10982,38 @@ | NUM_literal { $$ = $1; } | NULL_SYM { - $$ = new (YYTHD->mem_root) Item_null(); + $$ = new (thd->mem_root) Item_null(); if ($$ == NULL) MYSQL_YYABORT; YYLIP->next_state= MY_LEX_OPERATOR_OR_IDENT; } | FALSE_SYM { - $$= new (YYTHD->mem_root) Item_int((char*) "FALSE",0,1); + $$= new (thd->mem_root) Item_int((char*) "FALSE",0,1); if ($$ == NULL) MYSQL_YYABORT; } | TRUE_SYM { - $$= new (YYTHD->mem_root) Item_int((char*) "TRUE",1,1); + $$= new (thd->mem_root) Item_int((char*) "TRUE",1,1); if ($$ == NULL) MYSQL_YYABORT; } | HEX_NUM { - $$ = new (YYTHD->mem_root) Item_hex_string($1.str, $1.length); + $$ = new (thd->mem_root) Item_hex_string($1.str, $1.length); if ($$ == NULL) MYSQL_YYABORT; } | BIN_NUM { - $$= new (YYTHD->mem_root) Item_bin_string($1.str, $1.length); + $$= new (thd->mem_root) Item_bin_string($1.str, $1.length); if ($$ == NULL) MYSQL_YYABORT; } | UNDERSCORE_CHARSET HEX_NUM { - Item *tmp= new (YYTHD->mem_root) Item_hex_string($2.str, $2.length); + Item *tmp= new (thd->mem_root) Item_hex_string($2.str, $2.length); if (tmp == NULL) MYSQL_YYABORT; /* @@ -11064,7 +11024,7 @@ String *str= tmp->val_str((String*) 0); Item_string *item_str; - item_str= new (YYTHD->mem_root) + item_str= new (thd->mem_root) Item_string(NULL, /* name will be set in select_item */ str ? str->ptr() : "", str ? str->length() : 0, @@ -11082,7 +11042,7 @@ } | UNDERSCORE_CHARSET BIN_NUM { - Item *tmp= new (YYTHD->mem_root) Item_bin_string($2.str, $2.length); + Item *tmp= new (thd->mem_root) Item_bin_string($2.str, $2.length); if (tmp == NULL) MYSQL_YYABORT; /* @@ -11093,7 +11053,7 @@ String *str= tmp->val_str((String*) 0); Item_string *item_str; - item_str= new (YYTHD->mem_root) + item_str= new (thd->mem_root) Item_string(NULL, /* name will be set in select_item */ str ? str->ptr() : "", str ? str->length() : 0, @@ -11117,7 +11077,7 @@ NUM { int error; - $$= new (YYTHD->mem_root) + $$= new (thd->mem_root) Item_int($1.str, (longlong) my_strtoll10($1.str, NULL, &error), $1.length); @@ -11127,7 +11087,7 @@ | LONG_NUM { int error; - $$= new (YYTHD->mem_root) + $$= new (thd->mem_root) Item_int($1.str, (longlong) my_strtoll10($1.str, NULL, &error), $1.length); @@ -11136,23 +11096,23 @@ } | ULONGLONG_NUM { - $$= new (YYTHD->mem_root) Item_uint($1.str, $1.length); + $$= new (thd->mem_root) Item_uint($1.str, $1.length); if ($$ == NULL) MYSQL_YYABORT; } | DECIMAL_NUM { - $$= new (YYTHD->mem_root) Item_decimal($1.str, $1.length, - YYTHD->charset()); - if (($$ == NULL) || (YYTHD->is_error())) + $$= new (thd->mem_root) Item_decimal($1.str, $1.length, + thd->charset()); + if (($$ == NULL) || (thd->is_error())) { MYSQL_YYABORT; } } | FLOAT_NUM { - $$= new (YYTHD->mem_root) Item_float($1.str, $1.length); - if (($$ == NULL) || (YYTHD->is_error())) + $$= new (thd->mem_root) Item_float($1.str, $1.length); + if (($$ == NULL) || (thd->is_error())) { MYSQL_YYABORT; } @@ -11172,7 +11132,7 @@ ident '.' '*' { SELECT_LEX *sel= Select; - $$= new (YYTHD->mem_root) Item_field(Lex->current_context(), + $$= new (thd->mem_root) Item_field(Lex->current_context(), NullS, $1.str, "*"); if ($$ == NULL) MYSQL_YYABORT; @@ -11180,7 +11140,6 @@ } | ident '.' ident '.' '*' { - THD *thd= YYTHD; SELECT_LEX *sel= Select; const char* schema= thd->client_capabilities & CLIENT_NO_SCHEMA ? NullS : $1.str; @@ -11200,7 +11159,6 @@ simple_ident: ident { - THD *thd= YYTHD; LEX *lex= thd->lex; Lex_input_stream *lip= YYLIP; sp_variable_t *spv; @@ -11251,7 +11209,6 @@ simple_ident_nospvar: ident { - THD *thd= YYTHD; SELECT_LEX *sel=Select; if ((sel->parsing_place != IN_HAVING) || (sel->get_in_sum_expr() > 0)) @@ -11273,7 +11230,6 @@ simple_ident_q: ident '.' ident { - THD *thd= YYTHD; LEX *lex= thd->lex; /* @@ -11352,7 +11308,6 @@ } | '.' ident '.' ident { - THD *thd= YYTHD; LEX *lex= thd->lex; SELECT_LEX *sel= lex->current_select; if (sel->no_table_names_allowed) @@ -11377,7 +11332,6 @@ } | ident '.' ident '.' ident { - THD *thd= YYTHD; LEX *lex= thd->lex; SELECT_LEX *sel= lex->current_select; const char* schema= (thd->client_capabilities & CLIENT_NO_SCHEMA ? @@ -11445,7 +11399,7 @@ } | ident '.' ident { - $$= new Table_ident(YYTHD, $1,$3,0); + $$= new Table_ident(thd, $1,$3,0); if ($$ == NULL) MYSQL_YYABORT; } @@ -11467,7 +11421,7 @@ } | ident '.' ident opt_wild { - $$= new Table_ident(YYTHD, $1,$3,0); + $$= new Table_ident(thd, $1,$3,0); if ($$ == NULL) MYSQL_YYABORT; } @@ -11477,7 +11431,7 @@ ident { LEX_STRING db={(char*) any_db,3}; - $$= new Table_ident(YYTHD, db,$1,0); + $$= new Table_ident(thd, db,$1,0); if ($$ == NULL) MYSQL_YYABORT; } @@ -11487,8 +11441,7 @@ IDENT { $$= $1; } | IDENT_QUOTED { - THD *thd= YYTHD; - + if (thd->charset_is_system_charset) { CHARSET_INFO *cs= system_charset_info; @@ -11516,8 +11469,6 @@ TEXT_STRING_sys: TEXT_STRING { - THD *thd= YYTHD; - if (thd->charset_is_system_charset) $$= $1; else @@ -11532,8 +11483,6 @@ TEXT_STRING_literal: TEXT_STRING { - THD *thd= YYTHD; - if (thd->charset_is_collation_connection) $$= $1; else @@ -11548,8 +11497,6 @@ TEXT_STRING_filesystem: TEXT_STRING { - THD *thd= YYTHD; - if (thd->charset_is_character_set_filesystem) $$= $1; else @@ -11566,7 +11513,6 @@ IDENT_sys { $$=$1; } | keyword { - THD *thd= YYTHD; $$.str= thd->strmake($1.str, $1.length); if ($$.str == NULL) MYSQL_YYABORT; @@ -11578,7 +11524,6 @@ IDENT_sys { $$=$1; } | keyword_sp { - THD *thd= YYTHD; $$.str= thd->strmake($1.str, $1.length); if ($$.str == NULL) MYSQL_YYABORT; @@ -11595,7 +11540,6 @@ user: ident_or_text { - THD *thd= YYTHD; if (!($$=(LEX_USER*) thd->alloc(sizeof(st_lex_user)))) MYSQL_YYABORT; $$->user = $1; @@ -11609,7 +11553,6 @@ } | ident_or_text '@' ident_or_text { - THD *thd= YYTHD; if (!($$=(LEX_USER*) thd->alloc(sizeof(st_lex_user)))) MYSQL_YYABORT; $$->user = $1; $$->host=$3; @@ -11628,7 +11571,7 @@ } | CURRENT_USER optional_braces { - if (!($$=(LEX_USER*) YYTHD->alloc(sizeof(st_lex_user)))) + if (!($$=(LEX_USER*) thd->alloc(sizeof(st_lex_user)))) MYSQL_YYABORT; /* empty LEX_USER means current_user and @@ -11991,7 +11934,6 @@ option_type_value: { - THD *thd= YYTHD; LEX *lex= thd->lex; Lex_input_stream *lip= YYLIP; @@ -12022,7 +11964,6 @@ } ext_option_value { - THD *thd= YYTHD; LEX *lex= thd->lex; Lex_input_stream *lip= YYLIP; @@ -12105,7 +12046,6 @@ sys_option_value: option_type internal_variable_name equal set_expr_or_default { - THD *thd= YYTHD; LEX *lex= Lex; LEX_STRING *name= &$2.base_name; @@ -12117,7 +12057,7 @@ my_parse_error(ER(ER_SYNTAX_ERROR)); MYSQL_YYABORT; } - if (set_trigger_new_row(YYTHD, name, $4)) + if (set_trigger_new_row(thd, name, $4)) MYSQL_YYABORT; } else if ($2.var) @@ -12147,7 +12087,6 @@ } | option_type TRANSACTION_SYM ISOLATION LEVEL_SYM isolation_types { - THD *thd= YYTHD; LEX *lex=Lex; lex->option_type= $1; Item *item= new (thd->mem_root) Item_int((int32) $5); @@ -12167,7 +12106,7 @@ '@' ident_or_text equal expr { Item_func_set_user_var *item; - item= new (YYTHD->mem_root) Item_func_set_user_var($2, $4); + item= new (thd->mem_root) Item_func_set_user_var($2, $4); if (item == NULL) MYSQL_YYABORT; set_var_user *var= new set_var_user(item); @@ -12177,7 +12116,6 @@ } | '@' '@' opt_var_ident_type internal_variable_name equal set_expr_or_default { - THD *thd= YYTHD; struct sys_var_with_base tmp= $4; /* Lookup if necessary: must be a system variable. */ if (tmp.var == NULL) @@ -12190,7 +12128,6 @@ } | charset old_or_new_charset_name_or_default { - THD *thd= YYTHD; LEX *lex= thd->lex; CHARSET_INFO *cs2; cs2= $2 ? $2: global_system_variables.character_set_client; @@ -12238,7 +12175,6 @@ } | PASSWORD equal text_or_password { - THD *thd= YYTHD; LEX *lex= thd->lex; LEX_USER *user; sp_pcontext *spc= lex->spcont; @@ -12278,7 +12214,6 @@ internal_variable_name: ident { - THD *thd= YYTHD; sp_pcontext *spc= thd->lex->spcont; sp_variable_t *spv; @@ -12337,7 +12272,7 @@ } else { - sys_var *tmp=find_sys_var(YYTHD, $3.str, $3.length); + sys_var *tmp=find_sys_var(thd, $3.str, $3.length); if (!tmp) MYSQL_YYABORT; if (!tmp->is_struct()) @@ -12348,7 +12283,7 @@ } | DEFAULT '.' ident { - sys_var *tmp=find_sys_var(YYTHD, $3.str, $3.length); + sys_var *tmp=find_sys_var(thd, $3.str, $3.length); if (!tmp) MYSQL_YYABORT; if (!tmp->is_struct()) @@ -12370,16 +12305,16 @@ TEXT_STRING { $$=$1.str;} | PASSWORD '(' TEXT_STRING ')' { - $$= $3.length ? YYTHD->variables.old_passwords ? - Item_func_old_password::alloc(YYTHD, $3.str, $3.length) : - Item_func_password::alloc(YYTHD, $3.str, $3.length) : + $$= $3.length ? thd->variables.old_passwords ? + Item_func_old_password::alloc(thd, $3.str, $3.length) : + Item_func_password::alloc(thd, $3.str, $3.length) : $3.str; if ($$ == NULL) MYSQL_YYABORT; } | OLD_PASSWORD '(' TEXT_STRING ')' { - $$= $3.length ? Item_func_old_password::alloc(YYTHD, $3.str, + $$= $3.length ? Item_func_old_password::alloc(thd, $3.str, $3.length) : $3.str; if ($$ == NULL) @@ -12393,19 +12328,19 @@ | DEFAULT { $$=0; } | ON { - $$=new (YYTHD->mem_root) Item_string("ON", 2, system_charset_info); + $$=new (thd->mem_root) Item_string("ON", 2, system_charset_info); if ($$ == NULL) MYSQL_YYABORT; } | ALL { - $$=new (YYTHD->mem_root) Item_string("ALL", 3, system_charset_info); + $$=new (thd->mem_root) Item_string("ALL", 3, system_charset_info); if ($$ == NULL) MYSQL_YYABORT; } | BINARY { - $$=new (YYTHD->mem_root) Item_string("binary", 6, system_charset_info); + $$=new (thd->mem_root) Item_string("binary", 6, system_charset_info); if ($$ == NULL) MYSQL_YYABORT; } @@ -12443,7 +12378,7 @@ table_ident opt_table_alias lock_option { thr_lock_type lock_type= (thr_lock_type) $3; - if (!Select->add_table_to_list(YYTHD, $1, $2, 0, lock_type)) + if (!Select->add_table_to_list(thd, $1, $2, 0, lock_type)) MYSQL_YYABORT; /* If table is to be write locked, protect from a impending GRL. */ if (lock_type >= TL_WRITE_ALLOW_WRITE) @@ -12514,7 +12449,7 @@ lex->expr_allows_subselect= FALSE; lex->sql_command = SQLCOM_HA_READ; lex->ha_rkey_mode= HA_READ_KEY_EXACT; /* Avoid purify warnings */ - Item *one= new (YYTHD->mem_root) Item_int((int32) 1); + Item *one= new (thd->mem_root) Item_int((int32) 1); if (one == NULL) MYSQL_YYABORT; lex->current_select->select_limit= one; @@ -12836,10 +12771,10 @@ $$=$1; $1->password=$4; if ($4.length) { - if (YYTHD->variables.old_passwords) + if (thd->variables.old_passwords) { char *buff= - (char *) YYTHD->alloc(SCRAMBLED_PASSWORD_CHAR_LENGTH_323+1); + (char *) thd->alloc(SCRAMBLED_PASSWORD_CHAR_LENGTH_323+1); if (buff == NULL) MYSQL_YYABORT; my_make_scrambled_password_323(buff, $4.str, $4.length); @@ -12849,7 +12784,7 @@ else { char *buff= - (char *) YYTHD->alloc(SCRAMBLED_PASSWORD_CHAR_LENGTH+1); + (char *) thd->alloc(SCRAMBLED_PASSWORD_CHAR_LENGTH+1); if (buff == NULL) MYSQL_YYABORT; my_make_scrambled_password(buff, $4.str, $4.length); @@ -12881,7 +12816,7 @@ column_list_id: ident { - String *new_str = new (YYTHD->mem_root) String((const char*) $1.str,$1.length,system_charset_info); + String *new_str = new (thd->mem_root) String((const char*) $1.str,$1.length,system_charset_info); if (new_str == NULL) MYSQL_YYABORT; List_iterator <LEX_COLUMN> iter(Lex->columns); @@ -12981,14 +12916,14 @@ opt_chain: /* empty */ - { $$= (YYTHD->variables.completion_type == 1); } + { $$= (thd->variables.completion_type == 1); } | AND_SYM NO_SYM CHAIN_SYM { $$=0; } | AND_SYM CHAIN_SYM { $$=1; } ; opt_release: /* empty */ - { $$= (YYTHD->variables.completion_type == 2); } + { $$= (thd->variables.completion_type == 2); } | RELEASE_SYM { $$=1; } | NO_SYM RELEASE_SYM { $$=0; } ; @@ -13102,7 +13037,6 @@ union_order_or_limit: { - THD *thd= YYTHD; LEX *lex= thd->lex; DBUG_ASSERT(lex->current_select->linkage != GLOBAL_OPTIONS_TYPE); SELECT_LEX *sel= lex->current_select; @@ -13118,7 +13052,6 @@ } order_or_limit { - THD *thd= YYTHD; thd->lex->current_select->no_table_names_allowed= 0; thd->where= ""; } @@ -13255,14 +13188,14 @@ from older master servers (i.e. to create non-suid trigger in this case). */ - YYTHD->lex->definer= 0; + thd->lex->definer= 0; } ; definer: DEFINER_SYM EQ user { - YYTHD->lex->definer= get_current_user(YYTHD, $3); + thd->lex->definer= get_current_user(thd, $3); } ; @@ -13307,7 +13240,6 @@ view_tail: view_suid VIEW_SYM table_ident { - THD *thd= YYTHD; LEX *lex= thd->lex; lex->sql_command= SQLCOM_CREATE_VIEW; /* first table in list is target VIEW name */ @@ -13347,7 +13279,6 @@ } view_select_aux view_check_option { - THD *thd= YYTHD; LEX *lex= Lex; uint len= YYLIP->get_cpp_ptr() - lex->create_view_select.str; void *create_view_select= thd->memdup(lex->create_view_select.str, len); @@ -13403,7 +13334,6 @@ EACH_SYM ROW_SYM { /* $15 */ - THD *thd= YYTHD; LEX *lex= thd->lex; Lex_input_stream *lip= YYLIP; sp_head *sp; @@ -13437,8 +13367,8 @@ sp_head *sp= lex->sphead; lex->sql_command= SQLCOM_CREATE_TRIGGER; - sp->set_stmt_end(YYTHD); - sp->restore_thd_mem_root(YYTHD); + sp->set_stmt_end(thd); + sp->restore_thd_mem_root(thd); if (sp->is_not_allowed_in_function("trigger")) MYSQL_YYABORT; @@ -13448,7 +13378,7 @@ sp_proc_stmt alternatives are not saving/restoring LEX, so lex->query_tables can be wiped out. */ - if (!lex->select_lex.add_table_to_list(YYTHD, $9, + if (!lex->select_lex.add_table_to_list(thd, $9, (LEX_STRING*) 0, TL_OPTION_UPDATING, TL_IGNORE)) @@ -13466,7 +13396,6 @@ AGGREGATE_SYM remember_name FUNCTION_SYM ident RETURNS_SYM udf_type SONAME_SYM TEXT_STRING_sys { - THD *thd= YYTHD; LEX *lex= thd->lex; if (is_native_function(thd, & $4)) { @@ -13484,7 +13413,6 @@ | remember_name FUNCTION_SYM ident RETURNS_SYM udf_type SONAME_SYM TEXT_STRING_sys { - THD *thd= YYTHD; LEX *lex= thd->lex; if (is_native_function(thd, & $3)) { @@ -13507,7 +13435,6 @@ sp_name /* $3 */ '(' /* $4 */ { /* $5 */ - THD *thd= YYTHD; LEX *lex= thd->lex; Lex_input_stream *lip= YYLIP; sp_head *sp; @@ -13565,7 +13492,7 @@ MYSQL_YYABORT; } - if (sp->fill_field_definition(YYTHD, lex, + if (sp->fill_field_definition(thd, lex, (enum enum_field_types) $11, &sp->m_return_field_def)) MYSQL_YYABORT; @@ -13574,7 +13501,6 @@ } sp_c_chistics /* $13 */ { /* $14 */ - THD *thd= YYTHD; LEX *lex= thd->lex; Lex_input_stream *lip= YYLIP; @@ -13583,7 +13509,6 @@ } sp_proc_stmt /* $15 */ { - THD *thd= YYTHD; LEX *lex= thd->lex; sp_head *sp= lex->sphead; @@ -13654,10 +13579,10 @@ sp= new sp_head(); if (sp == NULL) MYSQL_YYABORT; - sp->reset_thd_mem_root(YYTHD); + sp->reset_thd_mem_root(thd); sp->init(lex); sp->m_type= TYPE_ENUM_PROCEDURE; - sp->init_sp_name(YYTHD, $3); + sp->init_sp_name(thd, $3); lex->sphead= sp; } @@ -13672,7 +13597,6 @@ sp_pdparam_list ')' { - THD *thd= YYTHD; LEX *lex= thd->lex; lex->sphead->m_param_end= YYLIP->get_cpp_tok_start(); @@ -13680,7 +13604,6 @@ } sp_c_chistics { - THD *thd= YYTHD; LEX *lex= thd->lex; lex->sphead->m_chistics= &lex->sp_chistics; @@ -13691,9 +13614,9 @@ LEX *lex= Lex; sp_head *sp= lex->sphead; - sp->set_stmt_end(YYTHD); + sp->set_stmt_end(thd); lex->sql_command= SQLCOM_CREATE_PROCEDURE; - sp->restore_thd_mem_root(YYTHD); + sp->restore_thd_mem_root(thd); } ; @@ -13730,21 +13653,21 @@ text_string { MYSQL_YYABORT_UNLESS($1->length() <= MAXGTRIDSIZE); - if (!(Lex->xid=(XID *)YYTHD->alloc(sizeof(XID)))) + if (!(Lex->xid=(XID *)thd->alloc(sizeof(XID)))) MYSQL_YYABORT; Lex->xid->set(1L, $1->ptr(), $1->length(), 0, 0); } | text_string ',' text_string { MYSQL_YYABORT_UNLESS($1->length() <= MAXGTRIDSIZE && $3->length() <= MAXBQUALSIZE); - if (!(Lex->xid=(XID *)YYTHD->alloc(sizeof(XID)))) + if (!(Lex->xid=(XID *)thd->alloc(sizeof(XID)))) MYSQL_YYABORT; Lex->xid->set(1L, $1->ptr(), $1->length(), $3->ptr(), $3->length()); } | text_string ',' text_string ',' ulong_num { MYSQL_YYABORT_UNLESS($1->length() <= MAXGTRIDSIZE && $3->length() <= MAXBQUALSIZE); - if (!(Lex->xid=(XID *)YYTHD->alloc(sizeof(XID)))) + if (!(Lex->xid=(XID *)thd->alloc(sizeof(XID)))) MYSQL_YYABORT; Lex->xid->set($5, $1->ptr(), $1->length(), $3->ptr(), $3->length()); }
shibajee/buildroot
package/mysql/0005-bison_3_breaks_mysql_server_build.patch
patch
mit
119,207
configure: do not force a static link for non-installed programs Otherwise, it tries to link against a static libz, which may not exist in a shared-only system. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> diff -durN mysql-5.1.73.orig/configure.in mysql-5.1.73/configure.in --- mysql-5.1.73.orig/configure.in 2014-12-22 00:04:46.550508208 +0100 +++ mysql-5.1.73/configure.in 2014-12-22 00:05:56.415307480 +0100 @@ -562,7 +562,6 @@ AC_MSG_ERROR([MySQL requires an ANSI C compiler (and a C++ compiler). Try gcc. See the Installation chapter in the Reference Manual.]) fi -NOINST_LDFLAGS="-static" static_nss="" STATIC_NSS_FLAGS=""
shibajee/buildroot
package/mysql/0006-no-force-static-build.patch
patch
mit
654
Don't install in mysql directory Installing libraries in a subdirectory of /usr/lib leads to no end of trouble. It requires either setting a RUN_PATH in the ELF files linked with it or adding the path to ld.so.conf and calling ldconfig on the target. So to simplify things, put everything in /usr/lib instead of /usr/lib/mysql Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> diff -Nrup mysql-5.1.73.orig/dbug/Makefile.am mysql-5.1.73/dbug/Makefile.am --- mysql-5.1.73.orig/dbug/Makefile.am 2013-11-04 19:52:27.000000000 +0100 +++ mysql-5.1.73/dbug/Makefile.am 2015-12-14 00:34:58.567937603 +0100 @@ -17,7 +17,7 @@ INCLUDES = -I$(top_builddir)/include -I$(top_srcdir)/include LDADD = libdbug.a ../mysys/libmysys.a ../strings/libmystrings.a -pkglib_LIBRARIES = libdbug.a +lib_LIBRARIES = libdbug.a noinst_HEADERS = dbug_long.h libdbug_a_SOURCES = dbug.c sanity.c EXTRA_DIST = CMakeLists.txt example1.c example2.c example3.c \ diff -Nrup mysql-5.1.73.orig/libmysql/Makefile.shared mysql-5.1.73/libmysql/Makefile.shared --- mysql-5.1.73.orig/libmysql/Makefile.shared 2013-11-04 19:52:27.000000000 +0100 +++ mysql-5.1.73/libmysql/Makefile.shared 2015-12-14 00:34:58.567937603 +0100 @@ -25,7 +25,7 @@ MYSQLBASEdir= $(prefix) ## We'll use CLIENT_EXTRA_LDFLAGS for threaded and non-threaded ## until someone complains that they need separate options. LDADD = @CLIENT_EXTRA_LDFLAGS@ $(target) -pkglib_LTLIBRARIES = $(target) +lib_LTLIBRARIES = $(target) noinst_PROGRAMS = conf_to_src diff -Nrup mysql-5.1.73.orig/libmysqld/Makefile.am mysql-5.1.73/libmysqld/Makefile.am --- mysql-5.1.73.orig/libmysqld/Makefile.am 2013-11-04 19:52:27.000000000 +0100 +++ mysql-5.1.73/libmysqld/Makefile.am 2015-12-14 00:34:58.567937603 +0100 @@ -38,7 +38,7 @@ INCLUDES= -I$(top_builddir)/include -I$ @condition_dependent_plugin_includes@ noinst_LIBRARIES = libmysqld_int.a -pkglib_LIBRARIES = libmysqld.a +lib_LIBRARIES = libmysqld.a SUBDIRS = . examples libmysqld_sources= libmysqld.c lib_sql.cc emb_qcache.cc libmysqlsources = errmsg.c get_password.c libmysql.c client.c pack.c \ diff -Nrup mysql-5.1.73.orig/mysys/Makefile.am mysql-5.1.73/mysys/Makefile.am --- mysql-5.1.73.orig/mysys/Makefile.am 2013-11-04 19:52:27.000000000 +0100 +++ mysql-5.1.73/mysys/Makefile.am 2015-12-14 00:34:58.567937603 +0100 @@ -18,7 +18,7 @@ MYSQLSHAREdir = $(pkgdatadir) MYSQLBASEdir= $(prefix) INCLUDES = @ZLIB_INCLUDES@ -I$(top_builddir)/include \ -I$(top_srcdir)/include -I$(srcdir) -pkglib_LIBRARIES = libmysys.a +lib_LIBRARIES = libmysys.a LDADD = libmysys.a $(top_builddir)/strings/libmystrings.a $(top_builddir)/dbug/libdbug.a noinst_HEADERS = mysys_priv.h my_static.h my_handler_errors.h libmysys_a_SOURCES = my_init.c my_getwd.c mf_getdate.c my_mmap.c \ diff -Nrup mysql-5.1.73.orig/storage/csv/Makefile.am mysql-5.1.73/storage/csv/Makefile.am --- mysql-5.1.73.orig/storage/csv/Makefile.am 2013-11-04 19:52:27.000000000 +0100 +++ mysql-5.1.73/storage/csv/Makefile.am 2015-12-14 00:34:58.563937596 +0100 @@ -30,7 +30,7 @@ DEFS = @DEFS@ noinst_HEADERS = ha_tina.h transparent_file.h EXTRA_LTLIBRARIES = ha_csv.la -pkglib_LTLIBRARIES = @plugin_csv_shared_target@ +lib_LTLIBRARIES = @plugin_csv_shared_target@ ha_csv_la_LDFLAGS = -module -rpath $(MYSQLLIBdir) ha_csv_la_CXXFLAGS = $(AM_CXXFLAGS) -DMYSQL_PLUGIN ha_csv_la_SOURCES = transparent_file.cc ha_tina.cc diff -Nrup mysql-5.1.73.orig/storage/heap/Makefile.am mysql-5.1.73/storage/heap/Makefile.am --- mysql-5.1.73.orig/storage/heap/Makefile.am 2013-11-04 19:52:27.000000000 +0100 +++ mysql-5.1.73/storage/heap/Makefile.am 2015-12-14 00:34:58.563937596 +0100 @@ -26,7 +26,7 @@ WRAPLIBS= LDADD = DEFS = @DEFS@ -pkglib_LIBRARIES = libheap.a +lib_LIBRARIES = libheap.a noinst_PROGRAMS = hp_test1 hp_test2 noinst_LIBRARIES = libheap.a hp_test1_LDFLAGS = @NOINST_LDFLAGS@ diff -Nrup mysql-5.1.73.orig/storage/myisam/Makefile.am mysql-5.1.73/storage/myisam/Makefile.am --- mysql-5.1.73.orig/storage/myisam/Makefile.am 2013-11-04 19:52:27.000000000 +0100 +++ mysql-5.1.73/storage/myisam/Makefile.am 2015-12-14 00:34:58.563937596 +0100 @@ -30,7 +30,7 @@ DEFS = @DEFS@ EXTRA_DIST = mi_test_all.sh mi_test_all.res ft_stem.c CMakeLists.txt plug.in pkgdata_DATA = mi_test_all mi_test_all.res -pkglib_LIBRARIES = libmyisam.a +lib_LIBRARIES = libmyisam.a bin_PROGRAMS = myisamchk myisamlog myisampack myisam_ftdump myisamchk_DEPENDENCIES= $(LIBRARIES) myisamchk_LDADD= @CLIENT_EXTRA_LDFLAGS@ libmyisam.a \ diff -Nrup mysql-5.1.73.orig/storage/myisammrg/Makefile.am mysql-5.1.73/storage/myisammrg/Makefile.am --- mysql-5.1.73.orig/storage/myisammrg/Makefile.am 2013-11-04 19:52:27.000000000 +0100 +++ mysql-5.1.73/storage/myisammrg/Makefile.am 2015-12-14 00:34:58.563937596 +0100 @@ -26,7 +26,7 @@ WRAPLIBS= LDADD = DEFS = @DEFS@ -pkglib_LIBRARIES = libmyisammrg.a +lib_LIBRARIES = libmyisammrg.a noinst_HEADERS = myrg_def.h ha_myisammrg.h noinst_LIBRARIES = libmyisammrg.a libmyisammrg_a_SOURCES = myrg_open.c myrg_extra.c myrg_info.c myrg_locking.c \ diff -Nrup mysql-5.1.73.orig/strings/Makefile.am mysql-5.1.73/strings/Makefile.am --- mysql-5.1.73.orig/strings/Makefile.am 2013-11-04 19:52:27.000000000 +0100 +++ mysql-5.1.73/strings/Makefile.am 2015-12-14 00:34:58.567937603 +0100 @@ -16,7 +16,7 @@ # This file is public domain and comes with NO WARRANTY of any kind INCLUDES = -I$(top_builddir)/include -I$(top_srcdir)/include -pkglib_LIBRARIES = libmystrings.a +lib_LIBRARIES = libmystrings.a # Exact one of ASSEMBLER_X if ASSEMBLER_x86 @@ -69,15 +69,15 @@ conf_to_src_LDFLAGS= @NOINST_LDFLAGS@ FLAGS=$(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) @NOINST_LDFLAGS@ -str_test: str_test.c $(pkglib_LIBRARIES) - $(LINK) $(FLAGS) -DMAIN $(INCLUDES) $(srcdir)/str_test.c $(LDADD) $(pkglib_LIBRARIES) +str_test: str_test.c $(lib_LIBRARIES) + $(LINK) $(FLAGS) -DMAIN $(INCLUDES) $(srcdir)/str_test.c $(LDADD) $(lib_LIBRARIES) uctypedump: uctypedump.c $(LINK) $(INCLUDES) $(srcdir)/uctypedump.c -test_decimal$(EXEEXT): decimal.c $(pkglib_LIBRARIES) +test_decimal$(EXEEXT): decimal.c $(lib_LIBRARIES) $(CP) $(srcdir)/decimal.c ./test_decimal.c - $(LINK) $(FLAGS) -DMAIN ./test_decimal.c $(LDADD) $(pkglib_LIBRARIES) + $(LINK) $(FLAGS) -DMAIN ./test_decimal.c $(LDADD) $(lib_LIBRARIES) $(RM) -f ./test_decimal.c # Don't update the files from bitkeeper diff -Nrup mysql-5.1.73.orig/tests/Makefile.am mysql-5.1.73/tests/Makefile.am --- mysql-5.1.73.orig/tests/Makefile.am 2013-11-04 19:52:27.000000000 +0100 +++ mysql-5.1.73/tests/Makefile.am 2015-12-14 00:34:58.567937603 +0100 @@ -51,11 +51,11 @@ mysql_client_test.o: mysql_client_fw.c insert_test_SOURCES= insert_test.c select_test_SOURCES= select_test.c -insert_test_DEPENDENCIES= $(LIBRARIES) $(pkglib_LTLIBRARIES) -select_test_DEPENDENCIES= $(LIBRARIES) $(pkglib_LTLIBRARIES) +insert_test_DEPENDENCIES= $(LIBRARIES) $(lib_LTLIBRARIES) +select_test_DEPENDENCIES= $(LIBRARIES) $(lib_LTLIBRARIES) bug25714_SOURCES= bug25714.c -bug25714_DEPENDENCIES= $(LIBRARIES) $(pkglib_LTLIBRARIES) +bug25714_DEPENDENCIES= $(LIBRARIES) $(lib_LTLIBRARIES) # Fix for mit-threads DEFS = -DMYSQL_CLIENT_NO_THREADS diff -Nrup mysql-5.1.73.orig/vio/Makefile.am mysql-5.1.73/vio/Makefile.am --- mysql-5.1.73.orig/vio/Makefile.am 2013-11-04 19:52:27.000000000 +0100 +++ mysql-5.1.73/vio/Makefile.am 2015-12-14 00:34:58.567937603 +0100 @@ -16,7 +16,7 @@ INCLUDES = -I$(top_builddir)/include -I$(top_srcdir)/include \ $(openssl_includes) LDADD = @CLIENT_EXTRA_LDFLAGS@ $(openssl_libs) $(yassl_libs) -pkglib_LIBRARIES = libvio.a +lib_LIBRARIES = libvio.a noinst_HEADERS = vio_priv.h diff -Nrup mysql-5.1.73.orig/zlib/Makefile.am mysql-5.1.73/zlib/Makefile.am --- mysql-5.1.73.orig/zlib/Makefile.am 2013-11-04 19:52:27.000000000 +0100 +++ mysql-5.1.73/zlib/Makefile.am 2015-12-14 00:34:58.567937603 +0100 @@ -19,7 +19,7 @@ INCLUDES= -I$(top_builddir)/include -I$ LIBS= $(NON_THREADED_LIBS) -pkglib_LTLIBRARIES = libz.la +lib_LTLIBRARIES = libz.la noinst_LTLIBRARIES = libzlt.la libz_la_LDFLAGS = -static
shibajee/buildroot
package/mysql/0007-dont-install-in-mysql-directory.patch
patch
mit
8,248
config BR2_PACKAGE_MYSQL bool "MySQL" depends on BR2_INSTALL_LIBSTDCPP depends on BR2_USE_MMU # fork() depends on BR2_TOOLCHAIN_HAS_THREADS select BR2_PACKAGE_NCURSES select BR2_PACKAGE_READLINE help The MySQL Open Source Database System http://www.mysql.com/ if BR2_PACKAGE_MYSQL config BR2_PACKAGE_MYSQL_SERVER bool "MySQL server" help Install the MySQL server on the target. endif comment "MySQL needs a toolchain w/ C++, threads" depends on BR2_USE_MMU depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
shibajee/buildroot
package/mysql/Config.in
in
mit
546
#!/bin/sh case "$1" in start) if [ ! -d /var/mysql/mysql ] ; then echo "Creating MySQL system tables..." mysql_install_db --user=mysql --ldata=/var/mysql fi # mysqld runs as user mysql, but /run is only writable by root # so create a subdirectory for mysql. install -d -o mysql -g root -m 0700 /run/mysql # We don't use start-stop-daemon because mysqld has # its own wrapper script. printf "Starting mysql..." /usr/bin/mysqld_safe --pid-file=/run/mysql/mysqld.pid & echo "done." ;; stop) printf "Stopping mysql..." if test -f /run/mysql/mysqld.pid ; then kill `cat /run/mysql/mysqld.pid` fi echo "done." ;; restart) $0 stop $0 start ;; *) echo "Usage: /etc/init.d/mysqld {start|stop|restart}" ;; esac
shibajee/buildroot
package/mysql/S97mysqld
none
mit
759
# From https://downloads.mariadb.com/archives/mysql-5.1/mysql-5.1.73.tar.gz.md5 md5 887f869bcc757957067b9198f707f32f mysql-5.1.73.tar.gz
shibajee/buildroot
package/mysql/mysql.hash
hash
mit
137
################################################################################ # # mysql # ################################################################################ MYSQL_VERSION_MAJOR = 5.1 MYSQL_VERSION = $(MYSQL_VERSION_MAJOR).73 MYSQL_SOURCE = mysql-$(MYSQL_VERSION).tar.gz MYSQL_SITE = http://downloads.skysql.com/archives/mysql-$(MYSQL_VERSION_MAJOR) MYSQL_INSTALL_STAGING = YES MYSQL_DEPENDENCIES = readline ncurses MYSQL_AUTORECONF = YES MYSQL_LICENSE = GPLv2 MYSQL_LICENSE_FILES = README COPYING MYSQL_CONF_ENV = \ ac_cv_sys_restartable_syscalls=yes \ ac_cv_path_PS=/bin/ps \ ac_cv_FIND_PROC="/bin/ps p \$\$PID | grep -v grep | grep mysqld > /dev/null" \ ac_cv_have_decl_HAVE_IB_ATOMIC_PTHREAD_T_GCC=yes \ ac_cv_have_decl_HAVE_IB_ATOMIC_PTHREAD_T_SOLARIS=no \ ac_cv_have_decl_HAVE_IB_GCC_ATOMIC_BUILTINS=yes \ mysql_cv_new_rl_interface=yes MYSQL_CONF_OPTS = \ --without-ndb-binlog \ --without-docs \ --without-man \ --without-libedit \ --without-readline \ --with-low-memory \ --enable-thread-safe-client \ --disable-mysql-maintainer-mode # host-mysql only installs what is needed to build mysql, i.e. the # gen_lex_hash tool, and it only builds the parts that are needed to # create this tool HOST_MYSQL_DEPENDENCIES = host-zlib host-ncurses HOST_MYSQL_CONF_OPTS = \ --with-embedded-server \ --disable-mysql-maintainer-mode define HOST_MYSQL_BUILD_CMDS $(MAKE) -C $(@D)/include my_config.h $(MAKE) -C $(@D)/mysys libmysys.a $(MAKE) -C $(@D)/strings libmystrings.a $(MAKE) -C $(@D)/vio libvio.a $(MAKE) -C $(@D)/dbug libdbug.a $(MAKE) -C $(@D)/regex libregex.a $(MAKE) -C $(@D)/sql gen_lex_hash endef define HOST_MYSQL_INSTALL_CMDS $(INSTALL) -m 0755 $(@D)/sql/gen_lex_hash $(HOST_DIR)/usr/bin/ endef ifeq ($(BR2_PACKAGE_OPENSSL),y) MYSQL_DEPENDENCIES += openssl endif ifeq ($(BR2_PACKAGE_ZLIB),y) MYSQL_DEPENDENCIES += zlib endif ifeq ($(BR2_PACKAGE_MYSQL_SERVER),y) MYSQL_DEPENDENCIES += host-mysql host-bison MYSQL_CONF_OPTS += \ --localstatedir=/var/mysql \ --with-atomic-ops=up \ --with-embedded-server \ --without-query-cache \ --without-plugin-partition \ --without-plugin-daemon_example \ --without-plugin-ftexample \ --without-plugin-archive \ --without-plugin-blackhole \ --without-plugin-example \ --without-plugin-federated \ --without-plugin-ibmdb2i \ --without-plugin-innobase \ --without-plugin-innodb_plugin \ --without-plugin-ndbcluster # Debugging is only available for the server, so no need for # this if-block outside of the server if-block ifeq ($(BR2_ENABLE_DEBUG),y) MYSQL_CONF_OPTS += --with-debug=full else MYSQL_CONF_OPTS += --without-debug endif define MYSQL_USERS mysql -1 nogroup -1 * /var/mysql - - MySQL daemon endef define MYSQL_ADD_FOLDER $(INSTALL) -d $(TARGET_DIR)/var/mysql endef MYSQL_POST_INSTALL_TARGET_HOOKS += MYSQL_ADD_FOLDER define MYSQL_INSTALL_INIT_SYSV $(INSTALL) -D -m 0755 package/mysql/S97mysqld \ $(TARGET_DIR)/etc/init.d/S97mysqld endef define MYSQL_INSTALL_INIT_SYSTEMD $(INSTALL) -D -m 644 package/mysql/mysqld.service \ $(TARGET_DIR)/usr/lib/systemd/system/mysqld.service mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants ln -sf ../../../../usr/lib/systemd/system/mysqld.service \ $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/mysqld.service endef else MYSQL_CONF_OPTS += \ --without-server endif define MYSQL_REMOVE_TEST_PROGS rm -rf $(TARGET_DIR)/usr/mysql-test $(TARGET_DIR)/usr/sql-bench endef MYSQL_POST_INSTALL_TARGET_HOOKS += MYSQL_REMOVE_TEST_PROGS $(eval $(autotools-package)) $(eval $(host-autotools-package))
shibajee/buildroot
package/mysql/mysql.mk
mk
mit
3,597
[Unit] Description=MySQL database server [Service] ExecStartPre=/bin/sh -c 'test -d /var/mysql/mysql || mysql_install_db --user=mysql --ldata=/var/mysql' ExecStart=/usr/bin/mysqld_safe Restart=always [Install] WantedBy=multi-user.target
shibajee/buildroot
package/mysql/mysqld.service
service
mit
239
config BR2_PACKAGE_NANO bool "nano" depends on BR2_USE_WCHAR # full version uses fork() select BR2_PACKAGE_NANO_TINY if !BR2_USE_MMU select BR2_PACKAGE_NCURSES help A nice ncurses-based editor. Started out as a clone of pico. Great editor for new users. http://www.nano-editor.org/ if BR2_PACKAGE_NANO config BR2_PACKAGE_NANO_TINY bool "optimize for size" default y help Disable all features for the sake of size. endif comment "nano needs a toolchain w/ wchar" depends on !BR2_USE_WCHAR
shibajee/buildroot
package/nano/Config.in
in
mit
515
# Locally calculated after checking pgp signature sha256 22f79cc635458e0c0d110d211576f1edc03b112a62d73b914826a46547a6ac27 nano-2.6.2.tar.xz
shibajee/buildroot
package/nano/nano.hash
hash
mit
141
################################################################################ # # nano # ################################################################################ NANO_VERSION_MAJOR = 2.6 NANO_VERSION = $(NANO_VERSION_MAJOR).2 NANO_SITE = https://www.nano-editor.org/dist/v$(NANO_VERSION_MAJOR) NANO_SOURCE = nano-$(NANO_VERSION).tar.xz NANO_LICENSE = GPLv3+ NANO_LICENSE_FILES = COPYING NANO_CONF_OPTS = \ --without-slang \ --with-wordbounds NANO_DEPENDENCIES = ncurses ifeq ($(BR2_PACKAGE_NCURSES_WCHAR),y) NANO_CONF_ENV += ac_cv_prog_NCURSESW_CONFIG=$(STAGING_DIR)/usr/bin/$(NCURSES_CONFIG_SCRIPTS) else NANO_CONF_ENV += ac_cv_prog_NCURSESW_CONFIG=false NANO_MAKE_ENV += CURSES_LIB="-lncurses" endif ifeq ($(BR2_PACKAGE_FILE),y) NANO_DEPENDENCIES += file else NANO_CONF_ENV += ac_cv_lib_magic_magic_open=no endif ifeq ($(BR2_PACKAGE_NANO_TINY),y) NANO_CONF_OPTS += --enable-tiny define NANO_INSTALL_TARGET_CMDS $(INSTALL) -m 0755 $(@D)/src/nano $(TARGET_DIR)/usr/bin/nano endef endif $(eval $(autotools-package))
shibajee/buildroot
package/nano/nano.mk
mk
mit
1,034
config BR2_PACKAGE_NANOCOM bool "nanocom" help Nanocom is based upon microcom (http://microcom.port5.com/) but removes the scripting and logging features while introducing support for setting local/remote echo, parity and stop bits. It also follows a more standard command line style using the getopt function. Internally much of the code has been rewritten and reformatted, the menu system in particular is almost entirely different. http://nanocom.sourceforge.net/
shibajee/buildroot
package/nanocom/Config.in
in
mit
491
# Locally computed: sha256 5cb26e3e232cfc4a7cb16da432db532b775c5ebdb887ac9d39df5632f2c9a5e5 nanocom.tar.gz
shibajee/buildroot
package/nanocom/nanocom.hash
hash
mit
109
################################################################################ # # nanocom # ################################################################################ NANOCOM_VERSION = 1.0 NANOCOM_SOURCE = nanocom.tar.gz NANOCOM_SITE = http://downloads.sourceforge.net/project/nanocom/nanocom/v$(NANOCOM_VERSION) NANOCOM_STRIP_COMPONENTS = 0 NANOCOM_LICENSE = GPLv2+ NANOCOM_LICENSE_FILES = COPYING define NANOCOM_BUILD_CMDS $(MAKE) CC="$(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS)" -C $(@D) endef define NANOCOM_INSTALL_TARGET_CMDS $(INSTALL) -m 0755 -D $(@D)/nanocom $(TARGET_DIR)/usr/bin/nanocom endef $(eval $(generic-package))
shibajee/buildroot
package/nanocom/nanocom.mk
mk
mit
650
# Locally calculated sha256 4c866b60c0b1c4ebc715205d007b4640ff4e36af637c9a7deb87b2900e544321 nasm-2.12.02.tar.xz
shibajee/buildroot
package/nasm/nasm.hash
hash
mit
113
################################################################################ # # nasm # ################################################################################ NASM_VERSION = 2.12.02 NASM_SOURCE = nasm-$(NASM_VERSION).tar.xz NASM_SITE = http://www.nasm.us/pub/nasm/releasebuilds/$(NASM_VERSION) NASM_LICENSE = BSD-2c NASM_LICENSE_FILES = LICENSE $(eval $(host-autotools-package))
shibajee/buildroot
package/nasm/nasm.mk
mk
mit
395
rename err() function to avoid clashing with err() form C library err() is a function available in the C library, so when static linking, there is a clash at link timebecause the function is provided both by nbd and the C library: http://autobuild.buildroot.org/results/aa8/aa8a1ac35a93e1c8b9fddbc2b5d66ecaa921f31e/build-end.log Fix that by renaming err() to nbd_err() and providing a small maco wrapper to avoid touching the many call sites. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> --- Upstream status: hack, not submitted. diff -durN nbd-3.11.orig/cliserv.h nbd-3.11/cliserv.h --- nbd-3.11.orig/cliserv.h 2015-05-25 12:27:56.000000000 +0200 +++ nbd-3.11/cliserv.h 2015-08-13 19:28:21.609467505 +0200 @@ -75,7 +75,8 @@ void setmysockopt(int sock); void err_nonfatal(const char *s); -void err(const char *s) G_GNUC_NORETURN; +void nbd_err(const char *s) G_GNUC_NORETURN; +#define err(S) nbd_err(S) void logging(const char* name);
shibajee/buildroot
package/nbd/0001-avoid-name-clashing.patch
patch
mit
965
config BR2_PACKAGE_NBD bool "nbd" depends on BR2_USE_WCHAR # glib2 depends on BR2_TOOLCHAIN_HAS_THREADS # glib2 depends on BR2_USE_MMU # glib2 select BR2_PACKAGE_LIBGLIB2 help NBD is a set of utilities to configure network block devices, allowing access to remote block devices over TCP/IP network. http://nbd.sf.net/ if BR2_PACKAGE_NBD config BR2_NBD_CLIENT bool "nbd client" default y help the client part of NBD. config BR2_NBD_SERVER bool "nbd server" help the server part of NBD. endif comment "nbd needs a toolchain w/ wchar, threads" depends on BR2_USE_MMU depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
shibajee/buildroot
package/nbd/Config.in
in
mit
654
# From http://sourceforge.net/projects/nbd/files/nbd/3.13/ md5 784be37497cc2f9a53c67c8c77d1676d nbd-3.13.tar.xz sha1 e43674a2d2b42d20719cba3149748e8f5683e554 nbd-3.13.tar.xz
shibajee/buildroot
package/nbd/nbd.hash
hash
mit
174
################################################################################ # # nbd # ################################################################################ NBD_VERSION = 3.13 NBD_SOURCE = nbd-$(NBD_VERSION).tar.xz NBD_SITE = http://downloads.sourceforge.net/project/nbd/nbd/$(NBD_VERSION) NBD_CONF_OPTS = --enable-lfs NBD_DEPENDENCIES = libglib2 NBD_LICENSE = GPLv2 NBD_LICENSE_FILES = COPYING ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC),y) # We have linux/falloc.h # but uClibc lacks fallocate(2) which is a glibc-ism NBD_CONF_ENV = ac_cv_header_linux_falloc_h=no endif ifneq ($(BR2_NBD_CLIENT),y) NBD_TOREMOVE += nbd-client endif ifneq ($(BR2_NBD_SERVER),y) NBD_TOREMOVE += nbd-server endif define NBD_CLEANUP_AFTER_INSTALL rm -f $(addprefix $(TARGET_DIR)/usr/sbin/, $(NBD_TOREMOVE)) endef NBD_POST_INSTALL_TARGET_HOOKS += NBD_CLEANUP_AFTER_INSTALL $(eval $(autotools-package))
shibajee/buildroot
package/nbd/nbd.mk
mk
mit
894
config BR2_PACKAGE_NCDU bool "ncdu" depends on BR2_USE_MMU # system() select BR2_PACKAGE_NCURSES help ncdu is a disk usage analyzer with an ncurses interface http://dev.yorhel.nl/ncdu
shibajee/buildroot
package/ncdu/Config.in
in
mit
195
# From http://dev.yorhel.nl/download/ncdu-1.11.tar.gz.{md5,sha1} md5 9e44240a5356b029f05f0e70a63c4d12 ncdu-1.11.tar.gz sha1 8f22d713e6d2b28e1f501eee2bd1e03b55550c8d ncdu-1.11.tar.gz
shibajee/buildroot
package/ncdu/ncdu.hash
hash
mit
195
################################################################################ # # ncdu # ################################################################################ NCDU_VERSION = 1.11 NCDU_SITE = http://dev.yorhel.nl/download NCDU_DEPENDENCIES = ncurses NCDU_LICENSE = MIT NCDU_LICENSE_FILES = COPYING $(eval $(autotools-package))
shibajee/buildroot
package/ncdu/ncdu.mk
mk
mit
344
config BR2_PACKAGE_NCFTP bool "ncftp" # fork() depends on BR2_USE_MMU help NcFTP Client (also known as just NcFTP) is a set of FREE application programs implementing the File Transfer Protocol (FTP). http://www.ncftp.com/ncftp/ if BR2_PACKAGE_NCFTP config BR2_PACKAGE_NCFTP_GET bool "ncftpget" default y config BR2_PACKAGE_NCFTP_PUT bool "ncftpput" default y config BR2_PACKAGE_NCFTP_LS bool "ncftpls" default y config BR2_PACKAGE_NCFTP_BATCH bool "ncftpbatch/ncftpspooler" default y config BR2_PACKAGE_NCFTP_BOOKMARKS bool "ncftpbookmarks" select BR2_PACKAGE_NCURSES endif
shibajee/buildroot
package/ncftp/Config.in
in
mit
605
# Locally computed: sha256 b4ebe2415761a5137cd1d313c8fc1352f26d8963cc9e9e354e29720aa2089d42 ncftp-3.2.5-src.tar.bz2
shibajee/buildroot
package/ncftp/ncftp.hash
hash
mit
118
################################################################################ # # ncftp # ################################################################################ NCFTP_VERSION = 3.2.5 NCFTP_SOURCE = ncftp-$(NCFTP_VERSION)-src.tar.bz2 NCFTP_SITE = ftp://ftp.ncftp.com/ncftp NCFTP_TARGET_BINS = ncftp NCFTP_LICENSE = Clarified Artistic License NCFTP_LICENSE_FILES = doc/LICENSE.txt NCFTP_DEPENDENCIES = host-autoconf # The bundled configure script is generated by autoconf 2.13 and doesn't # detect cross-compilation correctly. Therefore, we have to regenerate it. # We need to pass -I because of the non-standard m4 directory name, and # none of the other autotools are used, so the below is the easiest. define NCFTP_RUN_AUTOCONF (cd $(@D); $(HOST_DIR)/usr/bin/autoconf -I$(@D)/autoconf_local/) endef NCFTP_PRE_CONFIGURE_HOOKS += NCFTP_RUN_AUTOCONF ifeq ($(BR2_PACKAGE_NCFTP_GET),y) NCFTP_TARGET_BINS += ncftpget endif ifeq ($(BR2_PACKAGE_NCFTP_PUT),y) NCFTP_TARGET_BINS += ncftpput endif ifeq ($(BR2_PACKAGE_NCFTP_LS),y) NCFTP_TARGET_BINS += ncftpls endif ifeq ($(BR2_PACKAGE_NCFTP_BATCH),y) NCFTP_TARGET_BINS += ncftpbatch NCFTP_INSTALL_NCFTP_BATCH = \ ln -sf /usr/bin/ncftpbatch $(TARGET_DIR)/usr/bin/ncftpspooler endif ifeq ($(BR2_PACKAGE_NCFTP_BOOKMARKS),y) NCFTP_TARGET_BINS += ncftpbookmarks NCFTP_DEPENDENCIES += ncurses endif define NCFTP_INSTALL_TARGET_CMDS $(INSTALL) -m 0755 $(addprefix $(NCFTP_DIR)/bin/, $(NCFTP_TARGET_BINS)) $(TARGET_DIR)/usr/bin $(NCFTP_INSTALL_NCFTP_BATCH) endef $(eval $(autotools-package))
shibajee/buildroot
package/ncftp/ncftp.mk
mk
mit
1,552
config BR2_PACKAGE_NCMPC bool "ncmpc" depends on BR2_USE_MMU # fork() depends on BR2_USE_WCHAR # libglib2 -> gettext depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2 select BR2_PACKAGE_LIBGLIB2 select BR2_PACKAGE_LIBMPDCLIENT select BR2_PACKAGE_NCURSES help ncmpc is a fully featured MPD client, which runs in a terminal (using ncurses). Its goal is to provide a keyboard oriented and consistent interface to MPD, without wasting resources. http://www.musicpd.org/clients/ncmpc/ comment "ncmpc needs a toolchain w/ wchar, threads" depends on BR2_USE_MMU depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
shibajee/buildroot
package/ncmpc/Config.in
in
mit
633
# Calculated locally sha256 0e6f76b2b11449cfa479d2830ac681f4e3bff54a95a9134b069dd5a173b4c3e9 ncmpc-0.24.tar.xz
shibajee/buildroot
package/ncmpc/ncmpc.hash
hash
mit
111
################################################################################ # # ncmpc # ################################################################################ NCMPC_VERSION_MAJOR = 0 NCMPC_VERSION = $(NCMPC_VERSION_MAJOR).24 NCMPC_SOURCE = ncmpc-$(NCMPC_VERSION).tar.xz NCMPC_SITE = http://www.musicpd.org/download/ncmpc/$(NCMPC_VERSION_MAJOR) NCMPC_DEPENDENCIES = host-pkgconf libglib2 libmpdclient ncurses NCMPC_LICENSE = GPLv2+ NCMPC_LICENSE_FILES = COPYING $(eval $(autotools-package))
shibajee/buildroot
package/ncmpc/ncmpc.mk
mk
mit
507
Change handling of PKG_CONFIG_LIBDIR When PKG_CONFIG_LIBDIR was unset in the environment, the configure script was deducing the PKG_CONFIG_LIBDIR from the location of the pkg-config binary, which doesn't make a lot of sense, and isn't done by other autotools based packages. Also, the configure script was checking that the directory really exists. This forced to create the directory *and* provide an absolute path in PKG_CONFIG_LIBDIR, which didn't play well with the fact that at installation time, PKG_CONFIG_LIBDIR is suffixed to DESTDIR, which means that we got two times the staging directory location. This patch fixes both of those issues. Also, since ncurses uses a fork of autoconf 2.13, we can't simply use _AUTORECONF=YES, so we also fix the configure script in this patch. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Index: b/configure =================================================================== --- a/configure +++ b/configure @@ -3623,27 +3623,20 @@ # Leave this as something that can be overridden in the environment. if test -z "$PKG_CONFIG_LIBDIR" ; then - PKG_CONFIG_LIBDIR=`echo "$PKG_CONFIG" | sed -e 's,/[^/]*/[^/]*$,,'`/lib/pkgconfig + PKG_CONFIG_LIBDIR="/usr/lib/pkgconfig" fi + PKG_CONFIG_LIBDIR=`echo "$PKG_CONFIG_LIBDIR" | sed -e 's/^://' -e 's/:.*//'` - if test -n "$PKG_CONFIG_LIBDIR" && test -d "$PKG_CONFIG_LIBDIR" ; then -# Check whether --enable-pc-files or --disable-pc-files was given. -if test "${enable_pc_files+set}" = set; then - enableval="$enable_pc_files" - enable_pc_files=$enableval -else - enable_pc_files=no -fi; - echo "$as_me:3638: result: $enable_pc_files" >&5 -echo "${ECHO_T}$enable_pc_files" >&6 + # Check whether --enable-pc-files or --disable-pc-files was given. + if test "${enable_pc_files+set}" = set; then + enableval="$enable_pc_files" + enable_pc_files=$enableval else - echo "$as_me:3641: result: no" >&5 -echo "${ECHO_T}no" >&6 - { echo "$as_me:3643: WARNING: did not find library $PKG_CONFIG_LIBDIR" >&5 -echo "$as_me: WARNING: did not find library $PKG_CONFIG_LIBDIR" >&2;} - enable_pc_files=no - fi + enable_pc_files=no + fi; + echo "$as_me:3638: result: $enable_pc_files" >&5 + echo "${ECHO_T}$enable_pc_files" >&6 fi echo "$as_me:3649: checking if we should assume mixed-case filenames" >&5 Index: b/configure.in =================================================================== --- a/configure.in +++ b/configure.in @@ -174,20 +174,14 @@ # Leave this as something that can be overridden in the environment. if test -z "$PKG_CONFIG_LIBDIR" ; then - PKG_CONFIG_LIBDIR=`echo "$PKG_CONFIG" | sed -e 's,/[[^/]]*/[[^/]]*$,,'`/lib/pkgconfig + PKG_CONFIG_LIBDIR="/usr/lib/pkgconfig" fi PKG_CONFIG_LIBDIR=`echo "$PKG_CONFIG_LIBDIR" | sed -e 's/^://' -e 's/:.*//'` - if test -n "$PKG_CONFIG_LIBDIR" && test -d "$PKG_CONFIG_LIBDIR" ; then - AC_ARG_ENABLE(pc-files, + AC_ARG_ENABLE(pc-files, [ --enable-pc-files generate and install .pc files for pkg-config], [enable_pc_files=$enableval], [enable_pc_files=no]) - AC_MSG_RESULT($enable_pc_files) - else - AC_MSG_RESULT(no) - AC_MSG_WARN(did not find library $PKG_CONFIG_LIBDIR) - enable_pc_files=no - fi + AC_MSG_RESULT($enable_pc_files) fi AC_SUBST(PKG_CONFIG_LIBDIR)
shibajee/buildroot
package/ncurses/0001-fixup-pkg-config-handling.patch
patch
mit
3,303
Fix gcc 5.x build failure Extracted from upstream commit http://ncurses.scripts.mit.edu/?p=ncurses.git;a=commit;h=97bb4678dc03e753290b39bbff30ba2825df9517. + modify MKlib_gen.sh to work around change in development version of gcc introduced here: https://gcc.gnu.org/ml/gcc-patches/2014-06/msg02185.html https://gcc.gnu.org/ml/gcc-patches/2014-07/msg00236.html (reports by Marcus Shawcroft, Maohui Lei). Original author: Thomas E. Dickey <dickey@invisible-island.net> Signed-off-by: Mikhail Peselnik <bas@bmail.ru> --- a/ncurses/base/MKlib_gen.sh.orig 2015-07-23 21:52:32.239481505 +0300 +++ b/ncurses/base/MKlib_gen.sh 2015-07-23 21:53:20.772966587 +0300 @@ -437,11 +437,22 @@ -e 's/gen_$//' \ -e 's/ / /g' >>$TMP +cat >$ED1 <<EOF +s/ / /g +s/^ // +s/ $// +s/P_NCURSES_BOOL/NCURSES_BOOL/g +EOF + +# A patch discussed here: +# https://gcc.gnu.org/ml/gcc-patches/2014-06/msg02185.html +# introduces spurious #line markers. Work around that by ignoring the system's +# attempt to define "bool" and using our own symbol here. +sed -e 's/bool/P_NCURSES_BOOL/g' $TMP > $ED2 +cat $ED2 >$TMP + $preprocessor $TMP 2>/dev/null \ -| sed \ - -e 's/ / /g' \ - -e 's/^ //' \ - -e 's/_Bool/NCURSES_BOOL/g' \ +| sed -f $ED1 \ | $AWK -f $AW2 \ | sed -f $ED3 \ | sed \
shibajee/buildroot
package/ncurses/0002-gcc-5.x-MKlib_gen.patch
patch
mit
1,284
aclocal: fix detection for uclinux hosts uclinux is just a linux like the others... Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> diff -durN ncurses-5.9.orig/aclocal.m4 ncurses-5.9/aclocal.m4 --- ncurses-5.9.orig/aclocal.m4 2011-04-01 01:35:38.000000000 +0200 +++ ncurses-5.9/aclocal.m4 2016-08-21 15:24:47.003620029 +0200 @@ -6531,7 +6531,7 @@ irix[[56]].*) #(vi cf_xopen_source="-D_SGI_SOURCE" ;; -linux*|gnu*|mint*|k*bsd*-gnu) #(vi +linux*|uclinux*|gnu*|mint*|k*bsd*-gnu) #(vi CF_GNU_SOURCE ;; mirbsd*) #(vi diff -durN ncurses-5.9.orig/configure ncurses-5.9/configure --- ncurses-5.9.orig/configure 2016-08-21 15:21:50.789285661 +0200 +++ ncurses-5.9/configure 2016-08-21 15:24:35.187463625 +0200 @@ -6984,7 +6984,7 @@ irix[56].*) #(vi cf_xopen_source="-D_SGI_SOURCE" ;; -linux*|gnu*|mint*|k*bsd*-gnu) #(vi +linux*|uclinux*|gnu*|mint*|k*bsd*-gnu) #(vi echo "$as_me:6996: checking if we must define _GNU_SOURCE" >&5 echo $ECHO_N "checking if we must define _GNU_SOURCE... $ECHO_C" >&6
shibajee/buildroot
package/ncurses/0003-recognise-uclinux.patch
patch
mit
1,020
config BR2_PACKAGE_NCURSES bool "ncurses" help The Ncurses (new curses) library is a free software emulation of curses in System V Release 4.0, and more. This package installs only a few vital termcap entries http://www.gnu.org/software/ncurses/ if BR2_PACKAGE_NCURSES config BR2_PACKAGE_NCURSES_WCHAR bool "enable wide char support" depends on BR2_USE_WCHAR # Build broken @ curses.priv.h with bad declarations depends on !(BR2_bfin && BR2_BINFMT_FLAT) help Enable wide char & UTF-8 support in ncurses libraries config BR2_PACKAGE_NCURSES_TARGET_PANEL bool "ncurses libpanel in target" help Includes ncurses dynamic libpanel in target config BR2_PACKAGE_NCURSES_TARGET_FORM bool "ncurses libform in target" help Includes ncurses dynamic libform in target config BR2_PACKAGE_NCURSES_TARGET_MENU bool "ncurses libmenu in target" help Includes ncurses dynamic libmenu in target config BR2_PACKAGE_NCURSES_TARGET_PROGS bool "ncurses programs" help Include ncurses programs in target (clear, reset, tput, ...) endif
shibajee/buildroot
package/ncurses/Config.in
in
mit
1,063
# Locally calculated after checking pgp signature sha256 9046298fb440324c9d4135ecea7879ffed8546dd1b58e59430ea07a4633f563b ncurses-5.9.tar.gz
shibajee/buildroot
package/ncurses/ncurses.hash
hash
mit
141
################################################################################ # # ncurses # ################################################################################ NCURSES_VERSION = 5.9 NCURSES_SITE = $(BR2_GNU_MIRROR)/ncurses NCURSES_INSTALL_STAGING = YES NCURSES_DEPENDENCIES = host-ncurses NCURSES_PROGS = clear infocmp tabs tic toe tput tset NCURSES_LICENSE = MIT with advertising clause NCURSES_LICENSE_FILES = README NCURSES_CONFIG_SCRIPTS = ncurses$(NCURSES_LIB_SUFFIX)$(NCURSES_ABI_VERSION)-config NCURSES_CONF_OPTS = \ --without-cxx \ --without-cxx-binding \ --without-ada \ --without-tests \ --disable-big-core \ --without-profile \ --disable-rpath \ --disable-rpath-hack \ --enable-echo \ --enable-const \ --enable-overwrite \ --enable-pc-files \ $(if $(BR2_PACKAGE_NCURSES_TARGET_PROGS),,--without-progs) \ --without-manpages # Install after busybox for the full-blown versions ifeq ($(BR2_PACKAGE_BUSYBOX),y) NCURSES_DEPENDENCIES += busybox endif ifeq ($(BR2_STATIC_LIBS),y) NCURSES_CONF_OPTS += --without-shared --with-normal else ifeq ($(BR2_SHARED_LIBS),y) NCURSES_CONF_OPTS += --with-shared --without-normal else ifeq ($(BR2_SHARED_STATIC_LIBS),y) NCURSES_CONF_OPTS += --with-shared --with-normal endif # configure can't find the soname for libgpm when cross compiling ifeq ($(BR2_PACKAGE_GPM),y) NCURSES_CONF_OPTS += --with-gpm=libgpm.so.2 NCURSES_DEPENDENCIES += gpm else NCURSES_CONF_OPTS += --without-gpm endif NCURSES_LIBS-y = ncurses NCURSES_LIBS-$(BR2_PACKAGE_NCURSES_TARGET_MENU) += menu NCURSES_LIBS-$(BR2_PACKAGE_NCURSES_TARGET_PANEL) += panel NCURSES_LIBS-$(BR2_PACKAGE_NCURSES_TARGET_FORM) += form NCURSES_TERMINFO_FILES = \ a/ansi \ l/linux \ p/putty \ p/putty-vt100 \ s/screen \ v/vt100 \ v/vt100-putty \ v/vt102 \ v/vt200 \ v/vt220 \ x/xterm \ x/xterm-color \ x/xterm-xfree86 \ ifeq ($(BR2_PACKAGE_NCURSES_WCHAR),y) NCURSES_CONF_OPTS += --enable-widec NCURSES_LIB_SUFFIX = w define NCURSES_LINK_LIBS_STATIC $(foreach lib,$(NCURSES_LIBS-y:%=lib%), \ ln -sf $(lib)$(NCURSES_LIB_SUFFIX).a $(1)/usr/lib/$(lib).a ) ln -sf libncurses$(NCURSES_LIB_SUFFIX).a \ $(1)/usr/lib/libcurses.a endef define NCURSES_LINK_LIBS_SHARED $(foreach lib,$(NCURSES_LIBS-y:%=lib%), \ ln -sf $(lib)$(NCURSES_LIB_SUFFIX).so $(1)/usr/lib/$(lib).so ) ln -sf libncurses$(NCURSES_LIB_SUFFIX).so \ $(1)/usr/lib/libcurses.so endef define NCURSES_LINK_PC $(foreach pc,$(NCURSES_LIBS-y), \ ln -sf $(pc)$(NCURSES_LIB_SUFFIX).pc \ $(1)/usr/lib/pkgconfig/$(pc).pc ) endef NCURSES_LINK_TARGET_LIBS = \ $(if $(BR2_STATIC_LIBS)$(BR2_SHARED_STATIC_LIBS),$(call NCURSES_LINK_LIBS_STATIC,$(TARGET_DIR));) \ $(if $(BR2_SHARED_LIBS)$(BR2_SHARED_STATIC_LIBS),$(call NCURSES_LINK_LIBS_SHARED,$(TARGET_DIR))) NCURSES_LINK_STAGING_LIBS = \ $(if $(BR2_STATIC_LIBS)$(BR2_SHARED_STATIC_LIBS),$(call NCURSES_LINK_LIBS_STATIC,$(STAGING_DIR));) \ $(if $(BR2_SHARED_LIBS)$(BR2_SHARED_STATIC_LIBS),$(call NCURSES_LINK_LIBS_SHARED,$(STAGING_DIR))) NCURSES_LINK_STAGING_PC = $(call NCURSES_LINK_PC,$(STAGING_DIR)) NCURSES_CONF_OPTS += --enable-ext-colors NCURSES_ABI_VERSION = 6 NCURSES_TERMINFO_FILES += \ p/putty-256color \ x/xterm+256color \ x/xterm-256color NCURSES_POST_INSTALL_STAGING_HOOKS += NCURSES_LINK_STAGING_LIBS NCURSES_POST_INSTALL_STAGING_HOOKS += NCURSES_LINK_STAGING_PC else # BR2_PACKAGE_NCURSES_WCHAR NCURSES_ABI_VERSION = 5 endif # BR2_PACKAGE_NCURSES_WCHAR ifneq ($(BR2_ENABLE_DEBUG),y) NCURSES_CONF_OPTS += --without-debug endif # ncurses breaks with parallel build, but takes quite a while to # build single threaded. Work around it similar to how Gentoo does define NCURSES_BUILD_CMDS $(MAKE1) -C $(@D) DESTDIR=$(STAGING_DIR) sources rm -rf $(@D)/misc/pc-files $(MAKE) -C $(@D) DESTDIR=$(STAGING_DIR) endef ifneq ($(BR2_STATIC_LIBS),y) define NCURSES_INSTALL_TARGET_LIBS $(foreach lib,$(NCURSES_LIBS-y:%=lib%), \ cp -dpf $(NCURSES_DIR)/lib/$(lib)$(NCURSES_LIB_SUFFIX).so* \ $(TARGET_DIR)/usr/lib/ ) endef endif ifeq ($(BR2_PACKAGE_NCURSES_TARGET_PROGS),y) define NCURSES_INSTALL_TARGET_PROGS $(foreach prog,$(NCURSES_PROGS), \ $(INSTALL) -m 0755 $(NCURSES_DIR)/progs/$(prog) \ $(TARGET_DIR)/usr/bin/$(prog) ) ln -sf tset $(TARGET_DIR)/usr/bin/reset endef endif define NCURSES_INSTALL_TARGET_CMDS mkdir -p $(TARGET_DIR)/usr/lib $(NCURSES_INSTALL_TARGET_LIBS) $(NCURSES_LINK_TARGET_LIBS) $(NCURSES_INSTALL_TARGET_PROGS) ln -snf /usr/share/terminfo $(TARGET_DIR)/usr/lib/terminfo $(foreach terminfo,$(NCURSES_TERMINFO_FILES),\ $(INSTALL) -D -m 0644 $(STAGING_DIR)/usr/share/terminfo/$(terminfo) \ $(TARGET_DIR)/usr/share/terminfo/$(terminfo) ) endef # NCURSES_INSTALL_TARGET_CMDS # # On systems with an older version of tic, the installation of ncurses hangs # forever. To resolve the problem, build a static version of tic on host # ourselves, and use that during installation. # define HOST_NCURSES_BUILD_CMDS $(MAKE1) -C $(@D) sources $(MAKE) -C $(@D)/progs tic endef HOST_NCURSES_CONF_OPTS = \ --with-shared \ --without-gpm \ --without-manpages \ --without-cxx \ --without-cxx-binding \ --without-ada \ --without-normal $(eval $(autotools-package)) $(eval $(host-autotools-package))
shibajee/buildroot
package/ncurses/ncurses.mk
mk
mit
5,210
From 0be2fe3a750b62cafca9794e37f040624d3a59de Mon Sep 17 00:00:00 2001 From: Peter Korsgaard <jacmet@sunsite.dk> Date: Thu, 26 Apr 2012 23:45:25 +0200 Subject: [PATCH] trace-{tcp,udp}.c: fix build on uClibc Selection of the BSD variant of struct tcphdr/udphdr on uClibc fails because of config.h. This is caused by config.h setting _GNU_SOURCE and the compat handling (uClibc doesn't have inet6_rth_*) including sys/types.h which in term includes features.h, which figures out what bsd/gnu/posix variant to use because of: /* If _BSD_SOURCE was defined by the user, favor BSD over POSIX. */ #if defined _BSD_SOURCE && \ !(defined _POSIX_SOURCE || defined _POSIX_C_SOURCE || \ defined _XOPEN_SOURCE || defined _XOPEN_SOURCE_EXTENDED || \ defined _GNU_SOURCE || defined _SVID_SOURCE) # define __FAVOR_BSD 1 #endif The current workaround of undefining _GNU_SOURCE after config.h doesn't work as features.h has already been evaluated by then. Instead, simply don't include config.h as it isn't needed in these two files. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk> --- src/trace-tcp.c | 5 ----- src/trace-udp.c | 5 ----- 2 files changed, 10 deletions(-) diff --git a/src/trace-tcp.c b/src/trace-tcp.c index 6a7732d..91b64c2 100644 --- a/src/trace-tcp.c +++ b/src/trace-tcp.c @@ -17,11 +17,6 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. * *************************************************************************/ -#ifdef HAVE_CONFIG_H -# include <config.h> -#endif - -#undef _GNU_SOURCE #define _BSD_SOURCE 1 #include <string.h> diff --git a/src/trace-udp.c b/src/trace-udp.c index 821c24c..1754338 100644 --- a/src/trace-udp.c +++ b/src/trace-udp.c @@ -17,11 +17,6 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. * *************************************************************************/ -#ifdef HAVE_CONFIG_H -# include <config.h> -#endif - -#undef _GNU_SOURCE #define _BSD_SOURCE 1 #include <string.h> -- 1.7.10
shibajee/buildroot
package/ndisc6/0001-trace-tcp-upd-uClibc-fix.patch
patch
mit
2,037
config BR2_PACKAGE_NDISC6 bool "ndisc6 tools" depends on BR2_USE_MMU # fork() select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE help NDisc6 is a small collection of useful tools for IPv6 networking http://www.remlab.net/ndisc6/ if BR2_PACKAGE_NDISC6 config BR2_PACKAGE_NDISC6_NAME2ADDR bool "name2addr" help name2addr perform DNS lookups from scripts. config BR2_PACKAGE_NDISC6_NDISC6 bool "ndisc6" help ndisc6 performs ICMPv6 Neighbor Discovery in userland. config BR2_PACKAGE_NDISC6_RDISC6 bool "rdisc6" help rdisc6 performs ICMPv6 Router Discovery in userland. config BR2_PACKAGE_NDISC6_RDNSSD bool "rdnssd" help IPv6 Recursive DNS Server discovery Daemon. config BR2_PACKAGE_NDISC6_RLTRACEROUTE6 bool "rltraceroute6" help rltraceroute6 is an IPv6 traceroute implementation. config BR2_PACKAGE_NDISC6_TCPTRACEROUTE6 bool "tcptraceroute6" help tcptraceroute6 is an TCP/IPv6 traceroute implementation. config BR2_PACKAGE_NDISC6_TCPSPRAY bool "tcpspray" help TCP/IP bandwidth measurement tool (Discard and Echo client). endif
shibajee/buildroot
package/ndisc6/Config.in
in
mit
1,089
# Locally calculated after checking pgp signature sha256 6acec8a0cb9efa3ac98456f46c3016aeec0598b0c7557c95242b5228ad62ca7a ndisc6-1.0.2.tar.bz2
shibajee/buildroot
package/ndisc6/ndisc6.hash
hash
mit
143
################################################################################ # # ndisc6 # ################################################################################ NDISC6_VERSION = 1.0.2 NDISC6_SOURCE = ndisc6-$(NDISC6_VERSION).tar.bz2 NDISC6_SITE = http://www.remlab.net/files/ndisc6 NDISC6_CONF_ENV = CC="$(TARGET_CC) -std=gnu99" NDISC6_CONF_OPTS = --disable-rpath --disable-suid-install NDISC6_LICENSE = GPLv2 or GPLv3 NDISC6_LICENSE_FILES = COPYING ifeq ($(BR2_NEEDS_GETTEXT_IF_LOCALE),y) NDISC6_DEPENDENCIES += gettext NDISC6_CONF_ENV += LIBS="-lintl" endif NDISC6_BIN_ += dnssort # perl script NDISC6_BIN_$(BR2_PACKAGE_NDISC6_NAME2ADDR) += name2addr addr2name NDISC6_BIN_$(BR2_PACKAGE_NDISC6_TCPSPRAY) += tcpspray tcpspray6 NDISC6_SBIN_$(BR2_PACKAGE_NDISC6_NDISC6) += ndisc6 NDISC6_SBIN_$(BR2_PACKAGE_NDISC6_RDISC6) += rdisc6 NDISC6_SBIN_$(BR2_PACKAGE_NDISC6_RDNSSD) += rdnssd NDISC6_SBIN_$(BR2_PACKAGE_NDISC6_RLTRACEROUTE6) += rltraceroute6 tracert6 NDISC6_SBIN_$(BR2_PACKAGE_NDISC6_TCPTRACEROUTE6) += tcptraceroute6 define NDISC6_REMOVE_UNNEEDED rm -rf $(addprefix $(TARGET_DIR)/usr/bin/,$(NDISC6_BIN_)) \ $(addprefix $(TARGET_DIR)/usr/sbin/,$(NDISC6_SBIN_)) $(if $(BR2_PACKAGE_NDISC6_RDNSSD),,\ rm -rf $(TARGET_DIR)/etc/rdnssd $(TARGET_DIR)/var/run/rdnssd) endef NDISC6_POST_INSTALL_TARGET_HOOKS += NDISC6_REMOVE_UNNEEDED $(eval $(autotools-package))
shibajee/buildroot
package/ndisc6/ndisc6.mk
mk
mit
1,384
From 9ff39800cec5f1dabba246b253794582d611bc6d Mon Sep 17 00:00:00 2001 From: Baruch Siach <baruch@tkos.co.il> Date: Fri, 20 Feb 2015 10:44:15 -0600 Subject: [PATCH] CMakeLists: don't hard code thumb code generation Migrating to version 1.2.0 Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Clayton Shotwell <clayton.shotwell@rockwellcollins.com> --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fdf01ec..34ae26e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -84,7 +84,7 @@ if(ANDROID_PLATFORM) ${ANDROID_TOOLCHAIN_PATH}/arm-linux-androideabi-ar ${ANDROID_TOOLCHAIN_PATH}/arm-linux-androideabi-ranlib") elseif(GNULINUX_PLATFORM) - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -mthumb-interwork -mthumb -march=armv7-a -mfpu=vfp3") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -mthumb-interwork -march=armv7-a -mfpu=vfp3") set(CMAKE_ASM_FLAGS "${CMAKE_C_FLAGS} -mthumb-interwork -mthumb -march=armv7-a -mfpu=neon") elseif(IOS_PLATFORM) #set minimal target ios version.If not provided this option, Xcode -- 1.9.1
shibajee/buildroot
package/ne10/0001-CMakeLists-don-t-hard-code-thumb-code-generation.patch
patch
mit
1,123
config BR2_PACKAGE_NE10 bool "ne10" depends on BR2_arm depends on BR2_ARM_FPU_NEON || BR2_ARM_FPU_NEON_VFPV4 help The Ne10 project has been set up to provide a set of common, useful functions which have been heavily optimized for the ARM Architecture and provide consistent well tested behavior that can be easily incorporated into applications. C interfaces to the functions are provided for both assembler and NEON implementations. http://projectne10.github.io/Ne10/ comment "ne10 needs a toolchain w/ neon" depends on BR2_arm depends on !(BR2_ARM_FPU_NEON || BR2_ARM_FPU_NEON_VFPV4)
shibajee/buildroot
package/ne10/Config.in
in
mit
615
# Locally calculated sha256 450dac5bb3a2351019ae23792e97c3bf965d16a21c0598b73cea9fbc3b3a56af ne10-v1.2.0.tar.gz
shibajee/buildroot
package/ne10/ne10.hash
hash
mit
113
################################################################################ # # ne10 # ################################################################################ NE10_VERSION = v1.2.0 NE10_SITE = $(call github,projectNe10,Ne10,$(NE10_VERSION)) NE10_LICENSE = BSD-3c or Apache-2.0 NE10_LICENSE_FILES = doc/LICENSE NE10_INSTALL_STAGING = YES NE10_CONF_OPTS = -DGNULINUX_PLATFORM=ON ifeq ($(BR2_STATIC_LIBS),) NE10_CONF_OPTS += \ -DNE10_BUILD_SHARED=ON endif # The package does not have any install target, so have to provide # INSTALL_STAGING_CMDS and INSTALL_TARGET_CMDS. ifeq ($(BR2_STATIC_LIBS),) define NE10_INSTALL_STAGING_SHARED_LIB cp -dpf $(@D)/modules/libNE10*.so* $(STAGING_DIR)/usr/lib/ endef endif define NE10_INSTALL_STAGING_CMDS cp -dpf $(@D)/inc/NE10*h $(STAGING_DIR)/usr/include/ cp -dpf $(@D)/modules/libNE10.a $(STAGING_DIR)/usr/lib/ $(NE10_INSTALL_STAGING_SHARED_LIB) endef define NE10_INSTALL_TARGET_CMDS cp -dpf $(@D)/modules/libNE10*.so* $(TARGET_DIR)/usr/lib/ endef $(eval $(cmake-package))
shibajee/buildroot
package/ne10/ne10.mk
mk
mit
1,038
config BR2_PACKAGE_NEARD bool "neard" depends on BR2_USE_WCHAR # libglib2 depends on BR2_TOOLCHAIN_HAS_THREADS # libnl, dbus, libglib2 depends on BR2_USE_MMU # dbus, libglib2 depends on !BR2_STATIC_LIBS # dlopen depends on BR2_TOOLCHAIN_HAS_SYNC_4 select BR2_PACKAGE_DBUS select BR2_PACKAGE_LIBGLIB2 select BR2_PACKAGE_LIBNL help Near Field Communication (NFC) manager. This userspace daemon is a part of the NFC stack provided by the Linux NFC project. http://git.kernel.org/?p=network/nfc/neard.git;a=summary https://01.org/linux-nfc/documentation/how-start-linux-nfc-code... if BR2_PACKAGE_NEARD config BR2_PACKAGE_NEARD_TOOLS bool "neard tools" help Build and install neard tools. endif comment "neard needs a toolchain w/ wchar, threads, dynamic library" depends on BR2_USE_MMU depends on BR2_TOOLCHAIN_HAS_SYNC_4 depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
shibajee/buildroot
package/neard/Config.in
in
mit
930
#!/bin/sh # # Starts neard # NAME=neard DAEMON=/usr/libexec/nfc/$NAME # Exit gracefully if the package has been removed [ -x $DAEMON ] || exit 0 case "$1" in start) printf "Starting $NAME: " start-stop-daemon -S -q -p /var/run/${NAME}.pid -x $DAEMON -- -d '*' echo "OK" ;; stop) printf "Stopping $NAME: " start-stop-daemon -K -q -p /var/run/${NAME}.pid echo "OK" ;; restart|reload) $0 stop sleep 1 $0 start ;; *) echo "Usage: $0 {start|stop|restart}" exit 1 esac exit $?
shibajee/buildroot
package/neard/S53neard
none
mit
539
# From https://www.kernel.org/pub/linux/network/nfc/sha256sums.asc sha256 6ea724b443d39d679168fc7776a965d1f64727c3735391df2c01469ee7cd8cca neard-0.14.tar.xz
shibajee/buildroot
package/neard/neard.hash
hash
mit
157
################################################################################ # # neard # ################################################################################ NEARD_VERSION = 0.14 NEARD_SOURCE = neard-$(NEARD_VERSION).tar.xz NEARD_SITE = $(BR2_KERNEL_MIRROR)/linux/network/nfc NEARD_LICENSE = GPLv2 NEARD_LICENSE_FILES = COPYING NEARD_DEPENDENCIES = host-pkgconf dbus libglib2 libnl NEARD_CONF_OPTS = --disable-traces ifeq ($(BR2_PACKAGE_NEARD_TOOLS),y) NEARD_CONF_OPTS += --enable-tools endif define NEARD_INSTALL_INIT_SYSV $(INSTALL) -D -m 0755 package/neard/S53neard \ $(TARGET_DIR)/etc/init.d/S53neard endef $(eval $(autotools-package))
shibajee/buildroot
package/neard/neard.mk
mk
mit
664
config BR2_PACKAGE_NEARDAL bool "neardal" depends on BR2_USE_WCHAR # glib2 depends on BR2_TOOLCHAIN_HAS_THREADS # dbus, glib2 depends on BR2_USE_MMU # dbus select BR2_PACKAGE_DBUS select BR2_PACKAGE_DBUS_GLIB select BR2_PACKAGE_READLINE if !BR2_PACKAGE_LIBEDIT help Provides a simple C API to exchange data with the neard NFC manager daemon. https://github.com/connectivity/neardal if BR2_PACKAGE_NEARDAL config BR2_PACKAGE_NEARDAL_NCL bool "ncl tool" help Build and install neardal ncl command line interpreter tool. endif comment "neardal needs a toolchain w/ wchar, threads" depends on BR2_USE_MMU depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
shibajee/buildroot
package/neardal/Config.in
in
mit
686
# Locally calculated sha256 9955753759a2604fa47562a4bbccd3b787d625e70311bb6662936d89d26715b7 neardal-33b54a55032b047fd885a5eb3592c169c0056c49.tar.gz
shibajee/buildroot
package/neardal/neardal.hash
hash
mit
150
################################################################################ # # neardal # ################################################################################ NEARDAL_VERSION = 33b54a55032b047fd885a5eb3592c169c0056c49 NEARDAL_SITE = $(call github,connectivity,neardal,$(NEARDAL_VERSION)) NEARDAL_INSTALL_STAGING = YES NEARDAL_LICENSE = GPLv2 NEARDAL_LICENSE_FILES = COPYING NEARDAL_DEPENDENCIES = host-pkgconf dbus dbus-glib NEARDAL_AUTORECONF = YES # Either readline or libedit are needed, and the Config.in file # guarantees at least one of them is enabled ifeq ($(BR2_PACKAGE_READLINE),y) NEARDAL_DEPENDENCIES += readline else ifeq ($(BR2_PACKAGE_LIBEDIT),y) NEARDAL_DEPENDENCIES += libedit endif # Both readline and libedit link with ncurses but the configure script # forgets to take that into account, causing the detection to fail # when linking statically ifeq ($(BR2_STATIC_LIBS),y) NEARDAL_CONF_ENV += LIBS="`$(PKG_CONFIG_HOST_BINARY) --libs ncurses`" endif define NEARDAL_INSTALL_NCL $(INSTALL) -m 0755 -D $(@D)/ncl/ncl $(TARGET_DIR)/usr/bin/ncl endef ifeq ($(BR2_PACKAGE_NEARDAL_NCL),y) NEARDAL_POST_INSTALL_TARGET_HOOKS += NEARDAL_INSTALL_NCL endif $(eval $(autotools-package))
shibajee/buildroot
package/neardal/neardal.mk
mk
mit
1,216
config BR2_PACKAGE_NEON bool "libneon" help HTTP and WebDAV client library, with a C interface. http://www.webdav.org/neon/ if BR2_PACKAGE_NEON config BR2_PACKAGE_NEON_ZLIB bool "ZLIB support" select BR2_PACKAGE_ZLIB help build with ZLIB support config BR2_PACKAGE_NEON_SSL bool "SSL support" select BR2_PACKAGE_OPENSSL help build with SSL support # This is an hidden symbol other packages can select to ensure that # Neon has XML support, either provided by Expat or libxml2. config BR2_PACKAGE_NEON_XML bool select BR2_PACKAGE_NEON_EXPAT if !BR2_PACKAGE_NEON_LIBXML2 config BR2_PACKAGE_NEON_EXPAT bool "XML support with expat" select BR2_PACKAGE_EXPAT depends on !BR2_PACKAGE_NEON_LIBXML2 help Enable XML support in neon, using the Expat XML library. config BR2_PACKAGE_NEON_LIBXML2 bool "XML support with libxml2" select BR2_PACKAGE_LIBXML2 help Enable XML support in neon, using the libxml2 XML library. endif
shibajee/buildroot
package/neon/Config.in
in
mit
957
# Locally calculated after checking pgp signature sha256 2962cfcb5d30f3272e3d2fa0e473434419770a3801afe3d46e5d1650787990c2 neon-0.30.0.tar.gz
shibajee/buildroot
package/neon/neon.hash
hash
mit
141
################################################################################ # # neon # ################################################################################ NEON_VERSION = 0.30.0 NEON_SITE = http://www.webdav.org/neon NEON_LICENSE = LGPLv2+ (library), GPLv2+ (manual and tests) NEON_LICENSE_FILES = src/COPYING.LIB test/COPYING README NEON_INSTALL_STAGING = YES NEON_CONF_OPTS = --without-gssapi --disable-rpath NEON_CONFIG_SCRIPTS = neon-config NEON_DEPENDENCIES = host-pkgconf ifeq ($(BR2_PACKAGE_NEON_ZLIB),y) NEON_CONF_OPTS += --with-zlib=$(STAGING_DIR) NEON_DEPENDENCIES += zlib else NEON_CONF_OPTS += --without-zlib endif ifeq ($(BR2_PACKAGE_NEON_SSL),y) NEON_CONF_OPTS += --with-ssl NEON_DEPENDENCIES += openssl else NEON_CONF_OPTS += --without-ssl endif ifeq ($(BR2_PACKAGE_NEON_EXPAT),y) NEON_CONF_OPTS += --with-expat=yes NEON_DEPENDENCIES += expat else NEON_CONF_OPTS += --with-expat=no endif ifeq ($(BR2_PACKAGE_NEON_LIBXML2),y) NEON_CONF_OPTS += --with-libxml2=yes NEON_CONF_ENV += ac_cv_prog_XML2_CONFIG=$(STAGING_DIR)/usr/bin/xml2-config NEON_DEPENDENCIES += libxml2 else NEON_CONF_OPTS += --with-libxml2=no endif ifeq ($(BR2_PACKAGE_NEON_EXPAT)$(BR2_PACKAGE_NEON_LIBXML2),) # webdav needs xml support NEON_CONF_OPTS += --disable-webdav endif $(eval $(autotools-package))
shibajee/buildroot
package/neon/neon.mk
mk
mit
1,310
From a2076079a409141704701ec17a205d89e5b24052 Mon Sep 17 00:00:00 2001 From: Romain Naour <romain.naour@gmail.com> Date: Sat, 28 May 2016 20:45:02 +0200 Subject: [PATCH] Makefile: fix static linking issue with lintl When net-tools are build with uClibc-ng and statically linked, some tools like hostname and route needs to link with -lintl. Adding -lintl in LDFLAGS place the library before object files: arm-linux-gcc -O2 -g -Wall -fno-strict-aliasing -static -lintl -Llib -o hostname hostname.o Add $(LIBS) after object files in the Makefile to place -lintl correctly. Fixes: http://autobuild.buildroot.net/results/134/1345b6d366125320b89512e7ce7f142f1a03acf8 Ref: http://lists.busybox.net/pipermail/buildroot/2016-May/162216.html Signed-off-by: Romain Naour <romain.naour@gmail.com> --- Makefile | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Makefile b/Makefile index 171123d..a2baf79 100644 --- a/Makefile +++ b/Makefile @@ -158,37 +158,37 @@ subdirs: libdir @for i in $(SUBDIRS:$(NET_LIB_PATH)/=); do $(MAKE) -C $$i || exit $$? ; done ifconfig: $(NET_LIB) ifconfig.o - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ ifconfig.o $(NLIB) + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ ifconfig.o $(LIBS) $(NLIB) nameif: $(NET_LIB) nameif.o $(CC) $(CFLAGS) $(LDFLAGS) -o $@ nameif.o $(NLIB) hostname: hostname.o - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ hostname.o $(DNLIB) + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ hostname.o $(LIBS) $(DNLIB) route: $(NET_LIB) route.o - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ route.o $(NLIB) + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ route.o $(LIBS) $(NLIB) arp: $(NET_LIB) arp.o - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ arp.o $(NLIB) + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ arp.o $(LIBS) $(NLIB) rarp: $(NET_LIB) rarp.o - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ rarp.o $(NLIB) + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ rarp.o $(LIBS) $(NLIB) slattach: $(NET_LIB) slattach.o - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ slattach.o $(NLIB) + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ slattach.o $(LIBS) $(NLIB) plipconfig: $(NET_LIB) plipconfig.o - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ plipconfig.o $(NLIB) + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ plipconfig.o $(LIBS) $(NLIB) netstat: $(NET_LIB) netstat.o statistics.o - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ netstat.o statistics.o $(NLIB) $(SELIB) + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ netstat.o statistics.o $(LIBS) $(NLIB) $(SELIB) iptunnel: $(NET_LIB) iptunnel.o - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ iptunnel.o $(NLIB) + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ iptunnel.o $(LIBS) $(NLIB) ipmaddr: $(NET_LIB) ipmaddr.o - $(CC) $(CFLAGS) $(LDFLAGS) -o $@ ipmaddr.o $(NLIB) + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ ipmaddr.o $(LIBS) $(NLIB) mii-tool: $(NET_LIB) mii-tool.o $(CC) $(CFLAGS) $(LDFLAGS) -o $@ mii-tool.o $(NLIB) -- 2.5.5
shibajee/buildroot
package/net-tools/0001-Makefile-fix-static-linking-issue-with-lintl.patch
patch
mit
2,816
config BR2_PACKAGE_NET_TOOLS bool "net-tools" depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE help A collection of programs that form the base set of the NET-3 networking distribution for the Linux operating system. Includes: arp, hostname, ifconfig, netstat, rarp, route, plipconfig, slattach, mii-tool, iptunnel and ipmaddr. http://sourceforge.net/projects/net-tools/
shibajee/buildroot
package/net-tools/Config.in
in
mit
443
################################################################################ # # net-tools # ################################################################################ NET_TOOLS_VERSION = 3f170bff115303e92319791cbd56371e33dcbf6d NET_TOOLS_SITE = git://git.code.sf.net/p/net-tools/code NET_TOOLS_DEPENDENCIES = $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext) NET_TOOLS_LICENSE = GPLv2+ NET_TOOLS_LICENSE_FILES = COPYING # Install after busybox for the full-blown versions ifeq ($(BR2_PACKAGE_BUSYBOX),y) NET_TOOLS_DEPENDENCIES += busybox endif define NET_TOOLS_CONFIGURE_CMDS (cd $(@D); yes "" | ./configure.sh config.in ) endef # Enable I18N when appropiate ifeq ($(BR2_ENABLE_LOCALE),y) define NET_TOOLS_ENABLE_I18N $(SED) 's:I18N 0:I18N 1:' $(@D)/config.h endef endif # Enable IPv6 define NET_TOOLS_ENABLE_IPV6 $(SED) 's:_AFINET6 0:_AFINET6 1:' $(@D)/config.h endef NET_TOOLS_POST_CONFIGURE_HOOKS += NET_TOOLS_ENABLE_I18N NET_TOOLS_ENABLE_IPV6 define NET_TOOLS_BUILD_CMDS $(TARGET_CONFIGURE_OPTS) \ LIBS="$(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),-lintl)" \ $(MAKE) -C $(@D) endef # install renames conflicting binaries, update does not # ifconfig & route reside in /sbin for busybox define NET_TOOLS_INSTALL_TARGET_CMDS $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) update mv -f $(TARGET_DIR)/bin/ifconfig $(TARGET_DIR)/sbin/ifconfig mv -f $(TARGET_DIR)/bin/route $(TARGET_DIR)/sbin/route endef $(eval $(generic-package))
shibajee/buildroot
package/net-tools/net-tools.mk
mk
mit
1,458
From 60d100713b5289948e9cdf5b0646ff3cdd2c206b Mon Sep 17 00:00:00 2001 From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be> Date: Mon, 17 Dec 2012 22:32:44 +0100 Subject: [PATCH] Fix setting of LD_LIBRARY_FLAGS ($shlibpath_var). LD_LIBRARY_PATH should not be set when cross-compiling, because it adds the cross-libraries to the build's LD-path. Also the restoring of LD_LIBRARY_PATH was done incorrectly: it would set LD_LIBRARY_PATH=LD_LIBRARY_PATH. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> --- macros/db3-check.m4 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/macros/db3-check.m4 b/macros/db3-check.m4 index 902220b..d5a5446 100644 --- a/macros/db3-check.m4 +++ b/macros/db3-check.m4 @@ -94,7 +94,7 @@ if test "x$bdb_required" = "xyes"; then savedldflags="$LDFLAGS" savedcppflags="$CPPFLAGS" savedlibs="$LIBS" - saved_shlibpath_var=$shlibpath_var + eval saved_shlibpath_var=\$$shlibpath_var dnl required BDB version: 4.6, because of cursor API change DB_MAJOR_REQ=4 @@ -148,7 +148,7 @@ if test "x$bdb_required" = "xyes"; then dnl -- LD_LIBRARY_PATH on many platforms. This will be fairly dnl -- portable hopefully. Reference: dnl -- http://lists.gnu.org/archive/html/autoconf/2009-03/msg00040.html - eval export $shlibpath_var=$bdblibdir + test "$cross_compiling" = yes || eval export $shlibpath_var=$bdblibdir NETATALK_BDB_TRY_LINK eval export $shlibpath_var=$saved_shlibpath_var @@ -171,7 +171,7 @@ if test "x$bdb_required" = "xyes"; then CPPFLAGS="-I${bdbdir}/include${subdir} $CPPFLAGS" LDFLAGS="-L$bdblibdir $LDFLAGS" - eval export $shlibpath_var=$bdblibdir + test "$cross_compiling" = yes || eval export $shlibpath_var=$bdblibdir NETATALK_BDB_TRY_LINK eval export $shlibpath_var=$saved_shlibpath_var --
shibajee/buildroot
package/netatalk/0001-Fix-setting-of-LD_LIBRARY_FLAGS-shlibpath_var.patch
patch
mit
2,160