code
string
repo_name
string
path
string
language
string
license
string
size
int64
#!/bin/sh # # avahi-daemon init script DAEMON=/usr/sbin/avahi-daemon case "$1" in start) $DAEMON -c || $DAEMON -D ;; stop) $DAEMON -c && $DAEMON -k ;; reload) $DAEMON -c && $DAEMON -r ;; *) echo "Usage: S50avahi-daemon {start|stop|reload}" >&2 exit 1 ;; esac
shibajee/buildroot
package/avahi/S50avahi-daemon
none
mit
285
# Locally calculated sha256 d54991185d514a0aba54ebeb408d7575b60f5818a772e28fa0e18b98bc1db454 avahi-0.6.32.tar.gz
shibajee/buildroot
package/avahi/avahi.hash
hash
mit
114
################################################################################ # # avahi # ################################################################################ # # This program is free software; you can redistribute it # and/or modify it under the terms of the GNU Lesser General # Public License as published by the Free Software Foundation # either version 2.1 of the License, or (at your option) any # later version. AVAHI_VERSION = 0.6.32 AVAHI_SITE = https://github.com/lathiat/avahi/releases/download/v$(AVAHI_VERSION) AVAHI_LICENSE = LGPLv2.1+ AVAHI_LICENSE_FILES = LICENSE AVAHI_INSTALL_STAGING = YES AVAHI_CONF_ENV = \ ac_cv_func_strtod=yes \ ac_fsusage_space=yes \ fu_cv_sys_stat_statfs2_bsize=yes \ ac_cv_func_closedir_void=no \ ac_cv_func_getloadavg=no \ ac_cv_lib_util_getloadavg=no \ ac_cv_lib_getloadavg_getloadavg=no \ ac_cv_func_getgroups=yes \ ac_cv_func_getgroups_works=yes \ ac_cv_func_chown_works=yes \ ac_cv_have_decl_euidaccess=no \ ac_cv_func_euidaccess=no \ ac_cv_have_decl_strnlen=yes \ ac_cv_func_strnlen_working=yes \ ac_cv_func_lstat_dereferences_slashed_symlink=yes \ ac_cv_func_lstat_empty_string_bug=no \ ac_cv_func_stat_empty_string_bug=no \ vb_cv_func_rename_trailing_slash_bug=no \ ac_cv_have_decl_nanosleep=yes \ jm_cv_func_nanosleep_works=yes \ gl_cv_func_working_utimes=yes \ ac_cv_func_utime_null=yes \ ac_cv_have_decl_strerror_r=yes \ ac_cv_func_strerror_r_char_p=no \ jm_cv_func_svid_putenv=yes \ ac_cv_func_getcwd_null=yes \ ac_cv_func_getdelim=yes \ ac_cv_func_mkstemp=yes \ utils_cv_func_mkstemp_limitations=no \ utils_cv_func_mkdir_trailing_slash_bug=no \ jm_cv_func_gettimeofday_clobber=no \ am_cv_func_working_getline=yes \ gl_cv_func_working_readdir=yes \ jm_ac_cv_func_link_follows_symlink=no \ utils_cv_localtime_cache=no \ ac_cv_struct_st_mtim_nsec=no \ gl_cv_func_tzset_clobber=no \ gl_cv_func_getcwd_null=yes \ gl_cv_func_getcwd_path_max=yes \ ac_cv_func_fnmatch_gnu=yes \ am_getline_needs_run_time_check=no \ am_cv_func_working_getline=yes \ gl_cv_func_mkdir_trailing_slash_bug=no \ gl_cv_func_mkstemp_limitations=no \ ac_cv_func_working_mktime=yes \ jm_cv_func_working_re_compile_pattern=yes \ ac_use_included_regex=no \ avahi_cv_sys_cxx_works=yes \ DATADIRNAME=share # Note: even if we have Gtk2 and Gtk3 support in Buildroot, we # explicitly disable support for them, in order to avoid the following # circular dependencies: # # avahi -> libglade -> libgtk2 -> cups -> avahi # avahi -> libgtk3 -> cups -> avahi # # Since Gtk2 and Gtk3 in Avahi are only used for some example/demo # programs, we decided to disable their support to solve the circular # dependency. AVAHI_CONF_OPTS = \ --disable-qt3 \ --disable-qt4 \ --disable-gtk \ --disable-gtk3 \ --disable-gdbm \ --disable-pygtk \ --disable-mono \ --disable-monodoc \ --disable-stack-protector \ --with-distro=none \ --disable-manpages \ $(if $(BR2_PACKAGE_AVAHI_AUTOIPD),--enable,--disable)-autoipd \ --with-avahi-user=avahi \ --with-avahi-group=avahi \ --with-autoipd-user=avahi \ --with-autoipd-group=avahi AVAHI_DEPENDENCIES = \ $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext) host-intltool \ host-pkgconf host-gettext AVAHI_CFLAGS = $(TARGET_CFLAGS) ifeq ($(BR2_PACKAGE_SYSTEMD),y) AVAHI_CONF_OPTS += --with-systemdsystemunitdir=/usr/lib/systemd/system else AVAHI_CONF_OPTS += --with-systemdsystemunitdir=no AVAHI_CFLAGS += -DDISABLE_SYSTEMD endif ifneq ($(BR2_PACKAGE_AVAHI_DAEMON)$(BR2_PACKAGE_AVAHI_AUTOIPD),) AVAHI_DEPENDENCIES += libdaemon else AVAHI_CONF_OPTS += --disable-libdaemon endif ifeq ($(BR2_PACKAGE_LIBCAP),y) AVAHI_DEPENDENCIES += libcap endif ifeq ($(BR2_PACKAGE_AVAHI_DAEMON),y) AVAHI_DEPENDENCIES += expat AVAHI_CONF_OPTS += --with-xml=expat else AVAHI_CONF_OPTS += --with-xml=none endif ifeq ($(BR2_PACKAGE_AVAHI_LIBDNSSD_COMPATIBILITY),y) AVAHI_CONF_OPTS += --enable-compat-libdns_sd endif ifeq ($(BR2_PACKAGE_DBUS),y) AVAHI_DEPENDENCIES += dbus else AVAHI_CONF_OPTS += --disable-dbus endif ifeq ($(BR2_PACKAGE_LIBGLIB2),y) AVAHI_DEPENDENCIES += libglib2 else AVAHI_CONF_OPTS += --disable-glib --disable-gobject endif ifeq ($(BR2_PACKAGE_PYTHON),y) AVAHI_CONF_ENV += \ am_cv_pathless_PYTHON=python \ am_cv_path_PYTHON=$(PYTHON_TARGET_BINARY) \ am_cv_python_version=$(PYTHON_VERSION) \ am_cv_python_platform=linux2 \ am_cv_python_pythondir=/usr/lib/python$(PYTHON_VERSION_MAJOR)/site-packages \ am_cv_python_pyexecdir=/usr/lib/python$(PYTHON_VERSION_MAJOR)/site-packages \ py_cv_mod_socket_=yes AVAHI_DEPENDENCIES += python AVAHI_CONF_OPTS += --enable-python else AVAHI_CONF_OPTS += --disable-python endif ifeq ($(BR2_PACKAGE_DBUS_PYTHON),y) AVAHI_CONF_OPTS += --enable-python-dbus AVAHI_CONF_ENV += py_cv_mod_dbus_=yes AVAHI_DEPENDENCIES += dbus-python else AVAHI_CONF_OPTS += --disable-python-dbus endif AVAHI_CONF_ENV += CFLAGS="$(AVAHI_CFLAGS)" AVAHI_MAKE_OPTS += $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),LIBS=-lintl) define AVAHI_USERS avahi -1 avahi -1 * - - - endef define AVAHI_REMOVE_INITSCRIPT rm -rf $(TARGET_DIR)/etc/init.d/avahi-* endef AVAHI_POST_INSTALL_TARGET_HOOKS += AVAHI_REMOVE_INITSCRIPT ifeq ($(BR2_PACKAGE_AVAHI_AUTOIPD),y) define AVAHI_INSTALL_AUTOIPD rm -f $(TARGET_DIR)/var/lib/avahi-autoipd $(INSTALL) -d -m 0755 $(TARGET_DIR)/var/lib ln -sf /tmp/avahi-autoipd $(TARGET_DIR)/var/lib/avahi-autoipd endef define AVAHI_INSTALL_AUTOIPD_INIT_SYSV $(INSTALL) -D -m 0755 package/avahi/S05avahi-setup.sh $(TARGET_DIR)/etc/init.d/S05avahi-setup.sh endef AVAHI_POST_INSTALL_TARGET_HOOKS += AVAHI_INSTALL_AUTOIPD endif ifeq ($(BR2_PACKAGE_AVAHI_DAEMON),y) define AVAHI_INSTALL_INIT_SYSTEMD mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants ln -fs ../../../../usr/lib/systemd/system/avahi-daemon.service \ $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/avahi-daemon.service ln -fs ../../../../usr/lib/systemd/system/avahi-dnsconfd.service \ $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/avahi-dnsconfd.service $(INSTALL) -D -m 644 package/avahi/avahi_tmpfiles.conf \ $(TARGET_DIR)/usr/lib/tmpfiles.d/avahi.conf endef define AVAHI_INSTALL_DAEMON_INIT_SYSV $(INSTALL) -D -m 0755 package/avahi/S50avahi-daemon $(TARGET_DIR)/etc/init.d/S50avahi-daemon endef endif define AVAHI_INSTALL_INIT_SYSV $(AVAHI_INSTALL_AUTOIPD_INIT_SYSV) $(AVAHI_INSTALL_DAEMON_INIT_SYSV) endef ifeq ($(BR2_PACKAGE_AVAHI_LIBDNSSD_COMPATIBILITY),y) # applications expects to be able to #include <dns_sd.h> define AVAHI_STAGING_INSTALL_LIBDNSSD_LINK ln -sf avahi-compat-libdns_sd/dns_sd.h \ $(STAGING_DIR)/usr/include/dns_sd.h endef AVAHI_POST_INSTALL_STAGING_HOOKS += AVAHI_STAGING_INSTALL_LIBDNSSD_LINK endif $(eval $(autotools-package))
shibajee/buildroot
package/avahi/avahi.mk
mk
mit
6,736
d /tmp/avahi-autopid 0755 avahi avahi
shibajee/buildroot
package/avahi/avahi_tmpfiles.conf
INI
mit
38
config BR2_PACKAGE_AVRDUDE bool "avrdude" select BR2_PACKAGE_ELFUTILS select BR2_PACKAGE_LIBUSB select BR2_PACKAGE_LIBUSB_COMPAT select BR2_PACKAGE_NCURSES depends on BR2_TOOLCHAIN_HAS_THREADS depends on BR2_USE_WCHAR # elfutils depends on !BR2_STATIC_LIBS # elfutils depends on !BR2_bfin # elfutils depends on BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC # elfutils help avrdude is a programmer for Atmel AVR microcontrollers this package provides a version with new linuxspi driver https://github.com/kcuzner/avrdude comment "avrdude needs a uClibc or glibc toolchain w/ threads, wchar, dynamic library" depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR || BR2_STATIC_LIBS \ || !(BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_GLIBC) depends on !BR2_bfin
shibajee/buildroot
package/avrdude/Config.in
in
mit
799
# Locally computed sha256 b32128f4812d5e852cfba2e863d950ec30e0f72f09bc14fb41c02528bbc5dd18 avrdude-ad04c429a90f4c34f000ea4ae11db2705915a31f.tar.gz
shibajee/buildroot
package/avrdude/avrdude.hash
hash
mit
147
################################################################################ # # avrdude # ################################################################################ AVRDUDE_VERSION = ad04c429a90f4c34f000ea4ae11db2705915a31f AVRDUDE_SITE = $(call github,kcuzner,avrdude,$(AVRDUDE_VERSION)) AVRDUDE_LICENSE = GPLv2+ AVRDUDR_LICENSE_FILES = avrdude/COPYING AVRDUDE_SUBDIR = avrdude # Sources coming from git, without generated configure and Makefile.in # files. AVRDUDE_AUTORECONF = YES AVRDUDE_DEPENDENCIES = elfutils libusb libusb-compat ncurses \ host-flex host-bison AVRDUDE_LICENSE = GPLv2+ AVRDUDE_LICENSE_FILES = avrdude/COPYING ifeq ($(BR2_PACKAGE_LIBFTDI1),y) AVRDUDE_DEPENDENCIES += libftdi1 else ifeq ($(BR2_PACKAGE_LIBFTDI),y) AVRDUDE_DEPENDENCIES += libftdi endif # if /etc/avrdude.conf exists, the installation process creates a # backup file, which we do not want in the context of Buildroot. define AVRDUDE_REMOVE_BACKUP_FILE $(RM) -f $(TARGET_DIR)/etc/avrdude.conf.bak endef AVRDUDE_POST_INSTALL_TARGET_HOOKS += AVRDUDE_REMOVE_BACKUP_FILE $(eval $(autotools-package))
shibajee/buildroot
package/avrdude/avrdude.mk
mk
mit
1,100
config BR2_PACKAGE_AXEL bool "axel" select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE depends on BR2_TOOLCHAIN_HAS_THREADS help HTTP/FTP download accelerator. http://axel.alioth.debian.org/ comment "axel needs a toolchain w/ threads" depends on !BR2_TOOLCHAIN_HAS_THREADS
shibajee/buildroot
package/axel/Config.in
in
mit
293
# Locally calculated sha256 359a57ab4e354bcb6075430d977c59d33eb3e2f1415a811948fa8ae657ca8036 axel-2.4.tar.gz
shibajee/buildroot
package/axel/axel.hash
hash
mit
110
################################################################################ # # axel # ################################################################################ AXEL_VERSION = 2.4 AXEL_SITE = http://sources.buildroot.net AXEL_LICENSE = GPLv2+ AXEL_LICENSE_FILES = COPYING ifeq ($(BR2_NEEDS_GETTEXT_IF_LOCALE),y) AXEL_DEPENDENCIES += gettext AXEL_LDFLAGS += -lintl endif # -lintl may use symbols from -lpthread AXEL_LDFLAGS += -lpthread ifneq ($(BR2_ENABLE_LOCALE),y) AXEL_DISABLE_I18N = --i18n=0 endif define AXEL_CONFIGURE_CMDS (cd $(@D); \ ./configure \ --prefix=/usr \ --debug=1 \ $(AXEL_DISABLE_I18N) \ ) endef define AXEL_BUILD_CMDS $(MAKE) CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS)" \ LFLAGS="$(TARGET_LDFLAGS) $(AXEL_LDFLAGS)" -C $(@D) endef define AXEL_INSTALL_TARGET_CMDS $(MAKE) DESTDIR=$(TARGET_DIR) -C $(@D) install endef $(eval $(generic-package))
shibajee/buildroot
package/axel/axel.mk
mk
mit
898
Makefile: complement CFLAGS provided by the user In some circumstances, the user may want to pass its own CFLAGS, like for when the zlib headers are not located in the standard gcc search paths. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> diff -durN a/mkfs.axfs-legacy/Makefile b/mkfs.axfs-legacy/Makefile --- a/mkfs.axfs-legacy/Makefile +++ b/mkfs.axfs-legacy/Makefile @@ -1,5 +1,5 @@ -INC = -I./ -CFLAGS = -g $(INC) -O0 +INC += -I./ +CFLAGS += -g $(INC) -O0 MKFSOBJS = mkfs.axfs.o
shibajee/buildroot
package/axfsutils/0001-fix-cflags.patch
patch
mit
504
Makefile: use LDFLAGS as provided by the user In some circumstances, the user may want to pass some LDFLAGS, like -L flags to point to the zlib location if it was not installed in a standard location. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> diff -durN a/mkfs.axfs-legacy/Makefile b/mkfs.axfs-legacy/Makefile --- a/mkfs.axfs-legacy/Makefile +++ b/mkfs.axfs-legacy/Makefile @@ -6,7 +6,7 @@ all: mkfs.axfs mkfs.axfs: $(MKFSOBJS) - $(CC) $(CFLAGS) -o mkfs.axfs $(MKFSOBJS) -lz + $(CC) $(CFLAGS) $(LDFLAGS) -o mkfs.axfs $(MKFSOBJS) -lz clean_mkfs.axfs: rm -rf $(MKFSOBJS) mkfs.axfs
shibajee/buildroot
package/axfsutils/0002-use-ldflags.patch
patch
mit
608
# Locally calculated sha256 80dd97305b005262643e9fad04ec03b860430ea2c58666ce5b007897afbc9693 axfsutils-64886703fdff6cfc64eb20fbe7d7295bbeec867b.tar.gz
shibajee/buildroot
package/axfsutils/axfsutils.hash
hash
mit
151
################################################################################ # # axfsutils # ################################################################################ AXFSUTILS_VERSION = 64886703fdff6cfc64eb20fbe7d7295bbeec867b AXFSUTILS_SITE = $(call github,jaredeh,axfs,$(AXFSUTILS_VERSION)) AXFSUTILS_LICENSE = GPLv2 AXFSUTILS_LICENSE_FILES = mkfs.axfs-legacy/COPYING HOST_AXFSUTILS_DEPENDENCIES = host-zlib # The 'new' mkfs.axfs version requires GNUstep which is not a buildroot # prerequisite. The 'legacy' one works just as well without that requirement. define HOST_AXFSUTILS_BUILD_CMDS $(HOST_MAKE_ENV) $(HOST_CONFIGURE_OPTS) $(MAKE) -C $(@D)/mkfs.axfs-legacy endef define HOST_AXFSUTILS_INSTALL_CMDS $(INSTALL) -D -m 0755 $(@D)/mkfs.axfs-legacy/mkfs.axfs \ $(HOST_DIR)/usr/bin/mkfs.axfs endef $(eval $(host-generic-package))
shibajee/buildroot
package/axfsutils/axfsutils.mk
mk
mit
853
config BR2_PACKAGE_B43_FIRMWARE bool "b43-firmware" help Firmware for the Broadcom Wifi devices supported by the b43 kernel driver. if BR2_PACKAGE_B43_FIRMWARE choice prompt "Kernel version" default BR2_PACKAGE_B43_FIRMWARE_KERNEL_AFTER_3_2 help Select the kernel version you're using. The b43 driver in kernel >= 3.2 need a different firmware than the b43 drivers from kernel < 3.2. config BR2_PACKAGE_B43_FIRMWARE_KERNEL_AFTER_3_2 bool ">= 3.2" config BR2_PACKAGE_B43_FIRMWARE_KERNEL_BEFORE_3_2 bool "< 3.2" endchoice endif
shibajee/buildroot
package/b43-firmware/Config.in
in
mit
558
# Locally computed: sha256 f1e7067aac5b62b67b8b6e4c517990277804339ac16065eb13c731ff909ae46f broadcom-wl-5.100.138.tar.bz2 sha256 26a8c370f48fc129d0731cfd751c36cae1419b0bc8ca35781126744e60eae009 broadcom-wl-5.10.56.27.3_mipsel.tar.bz2
shibajee/buildroot
package/b43-firmware/b43-firmware.hash
hash
mit
234
################################################################################ # # b43-firmware # ################################################################################ ifeq ($(BR2_PACKAGE_B43_FIRMWARE_KERNEL_AFTER_3_2),y) B43_FIRMWARE_VERSION = 5.100.138 B43_FIRMWARE_SITE = http://www.lwfinger.com/b43-firmware B43_FIRMWARE_SOURCE = broadcom-wl-$(B43_FIRMWARE_VERSION).tar.bz2 B43_FIRMWARE_DRIVER_FILE = linux/wl_apsta.o else ifeq ($(BR2_PACKAGE_B43_FIRMWARE_KERNEL_BEFORE_3_2),y) B43_FIRMWARE_VERSION = 5.10.56.27.3 B43_FIRMWARE_SITE = http://mirror2.openwrt.org/sources B43_FIRMWARE_SOURCE = broadcom-wl-$(B43_FIRMWARE_VERSION)_mipsel.tar.bz2 B43_FIRMWARE_DRIVER_FILE = driver/wl_apsta/wl_prebuilt.o endif B43_FIRMWARE_LICENSE = PROPRIETARY B43_FIRMWARE_REDISTRIBUTE = NO B43_FIRMWARE_DEPENDENCIES = host-b43-fwcutter define B43_FIRMWARE_INSTALL_TARGET_CMDS $(INSTALL) -d -m 0755 $(TARGET_DIR)/lib/firmware/ $(HOST_DIR)/usr/bin/b43-fwcutter -w $(TARGET_DIR)/lib/firmware/ $(@D)/$(B43_FIRMWARE_DRIVER_FILE) endef $(eval $(generic-package))
shibajee/buildroot
package/b43-firmware/b43-firmware.mk
mk
mit
1,062
# Locally calculated after checking pgp signature sha256 4c6a53d1f5d76b8aa224d294bee47726b1477f35327f4e23e8cb799865e0f6eb b43-fwcutter-015.tar.bz2
shibajee/buildroot
package/b43-fwcutter/b43-fwcutter.hash
hash
mit
147
################################################################################ # # b43-fwcutter # ################################################################################ B43_FWCUTTER_VERSION = 015 B43_FWCUTTER_SITE = http://bues.ch/b43/fwcutter B43_FWCUTTER_SOURCE = b43-fwcutter-$(B43_FWCUTTER_VERSION).tar.bz2 B43_FWCUTTER_LICENSE = BSD-2c B43_FWCUTTER_LICENSE_FILES = COPYING define HOST_B43_FWCUTTER_BUILD_CMDS $(HOST_CONFIGURE_OPTS) $(MAKE) -C $(@D) endef define HOST_B43_FWCUTTER_INSTALL_CMDS $(INSTALL) -D -m 0755 $(@D)/b43-fwcutter $(HOST_DIR)/usr/bin/b43-fwcutter endef $(eval $(host-generic-package))
shibajee/buildroot
package/b43-fwcutter/b43-fwcutter.mk
mk
mit
628
From 723bbfd8bdb76012a3da937c7499cf3c0b111dd5 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Date: Sat, 20 Aug 2016 11:13:56 +0200 Subject: [PATCH] kernel_netlink.c: don't include <linux/if_bridge.h> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Including <linux/if_bridge.h> causes the inclusion of <linux/in6.h>, which defines 'struct in6_addr', also defined in <netinet/in.h>, causing a build failure with the musl C library: In file included from /home/thomas/projets/buildroot/output/host/usr/x86_64-buildroot-linux-musl/sysroot/usr/include/linux/if_bridge.h:18:0, from kernel_netlink.c:42, from kernel.c:31: /home/thomas/projets/buildroot/output/host/usr/x86_64-buildroot-linux-musl/sysroot/usr/include/linux/in6.h:32:8: error: redefinition of ‘struct in6_addr’ struct in6_addr { ^ In file included from kernel_netlink.c:33:0, from kernel.c:31: /home/thomas/projets/buildroot/output/host/usr/x86_64-buildroot-linux-musl/sysroot/usr/include/netinet/in.h:23:8: note: originally defined here struct in6_addr { ^ In file included from /home/thomas/projets/buildroot/output/host/usr/x86_64-buildroot-linux-musl/sysroot/usr/include/linux/if_bridge.h:18:0, from kernel_netlink.c:42, from kernel.c:31: /home/thomas/projets/buildroot/output/host/usr/x86_64-buildroot-linux-musl/sysroot/usr/include/linux/in6.h:49:8: error: redefinition of ‘struct sockaddr_in6’ struct sockaddr_in6 { ^ In file included from kernel_netlink.c:33:0, from kernel.c:31: /home/thomas/projets/buildroot/output/host/usr/x86_64-buildroot-linux-musl/sysroot/usr/include/netinet/in.h:34:8: note: originally defined here struct sockaddr_in6 { ^ In file included from /home/thomas/projets/buildroot/output/host/usr/x86_64-buildroot-linux-musl/sysroot/usr/include/linux/if_bridge.h:18:0, from kernel_netlink.c:42, from kernel.c:31: /home/thomas/projets/buildroot/output/host/usr/x86_64-buildroot-linux-musl/sysroot/usr/include/linux/in6.h:59:8: error: redefinition of ‘struct ipv6_mreq’ struct ipv6_mreq { ^ In file included from kernel_netlink.c:33:0, from kernel.c:31: /home/thomas/projets/buildroot/output/host/usr/x86_64-buildroot-linux-musl/sysroot/usr/include/netinet/in.h:42:8: note: originally defined here struct ipv6_mreq { ^ In order to address this, this patch removes the <linux/if_bridge.h> inclusion, and instead defines BRCTL_GET_BRIDGES to the appropriate value if it's not provided by the C library. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> --- kernel_netlink.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/kernel_netlink.c b/kernel_netlink.c index 4eadc39..1a5b3dd 100644 --- a/kernel_netlink.c +++ b/kernel_netlink.c @@ -39,10 +39,14 @@ THE SOFTWARE. #include <sys/socket.h> #include <linux/netlink.h> #include <linux/rtnetlink.h> -#include <linux/if_bridge.h> #include <linux/fib_rules.h> #include <net/if_arp.h> +/* From <linux/if_bridge.h> */ +#ifndef BRCTL_GET_BRIDGES +#define BRCTL_GET_BRIDGES 1 +#endif + #if(__GLIBC__ < 2) || (__GLIBC__ == 2 && __GLIBC_MINOR__ <= 5) #define RTA_TABLE 15 #endif -- 2.7.4
shibajee/buildroot
package/babeld/0001-kernel_netlink.c-don-t-include-linux-if_bridge.h.patch
patch
mit
3,374
config BR2_PACKAGE_BABELD bool "babeld" depends on BR2_USE_MMU # fork() help Babel is a loop-avoiding distance-vector routing protocol for IPv6 and IPv4 with fast convergence properties. http://www.pps.univ-paris-diderot.fr/~jch/software/babel/
shibajee/buildroot
package/babeld/Config.in
in
mit
258
#!/bin/sh # # Starts babeld. # # Allow a few customizations from a config file test -r /etc/default/babeld && . /etc/default/babeld start() { printf "Starting babeld: " start-stop-daemon -S -q -p /run/babeld.pid \ --exec /usr/sbin/babeld -- $DAEMON_ARGS [ $? = 0 ] && echo "OK" || echo "FAIL" } stop() { printf "Stopping babeld: " start-stop-daemon -K -q -p /run/babeld.pid [ $? = 0 ] && echo "OK" || echo "FAIL" } restart() { stop start } case "$1" in start) start ;; stop) stop ;; restart|reload) restart ;; *) echo "Usage: $0 {start|stop|restart}" exit 1 esac exit $?
shibajee/buildroot
package/babeld/S50babeld
none
mit
601
# Locally computed sha256 2c955e7d4ad971da1e860e5cedbaf1dd79903468ff6488b3f67102b2a8d087b6 babeld-1.7.1.tar.gz
shibajee/buildroot
package/babeld/babeld.hash
hash
mit
112
################################################################################ # # babeld # ################################################################################ BABELD_VERSION = 1.7.1 BABELD_SITE = http://www.pps.univ-paris-diderot.fr/~jch/software/files BALELD_LICENSE = MIT BALELD_LICENSE_FILES = LICENSE define BABELD_BUILD_CMDS $(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) endef define BABELD_INSTALL_TARGET_CMDS $(INSTALL) -D -m 755 $(@D)/babeld $(TARGET_DIR)/usr/sbin/babeld endef define BABELD_INSTALL_INIT_SYSV $(INSTALL) -D -m 755 package/babeld/S50babeld \ $(TARGET_DIR)/etc/init.d/S50babeld endef define BABELD_INSTALL_INIT_SYSTEMD $(INSTALL) -D -m 644 package/babeld/babeld.service \ $(TARGET_DIR)/usr/lib/systemd/system/babeld.service mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants ln -fs ../../../../usr/lib/systemd/system/babeld.service \ $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/babeld.service endef $(eval $(generic-package))
shibajee/buildroot
package/babeld/babeld.mk
mk
mit
1,009
[Unit] Description=Babel daemon [Service] EnvironmentFile=-/etc/default/babeld ExecStart=/usr/sbin/babeld $DAEMON_ARGS ExecReload=/bin/kill -HUP $MAINPID [Install] WantedBy=multi-user.target
shibajee/buildroot
package/babeld/babeld.service
service
mit
193
config BR2_PACKAGE_BANDWIDTHD bool "bandwidthd" depends on BR2_USE_MMU # fork() select BR2_PACKAGE_LIBPNG select BR2_PACKAGE_LIBPCAP select BR2_PACKAGE_GD help BandwidthD - Bandwidth monitoring Provides a method to measure the bandwidth that travels through the machine, grouped by subnet and IP. This information can be stored locally in /var/lib/bandwidthd and can be configured to generate static HTML pages which can be hosted by a web server. It is highly recommended that the target has some way of retaining the time between reboots. (e.g. NTP on boot or an RTC) It is suggested to use sqlite for logfile storage but works fine without, and can be completely ignored if the postgresql portion is used. As upstream is no longer actively maintained, a fork is available on github that works on making BandwidthD's build process more compatible with buildroot's. Upstream: http://bandwidthd.sourceforge.net/ Github fork: http://github.com/nroach44/bandwidthd if BR2_PACKAGE_BANDWIDTHD config BR2_PACKAGE_BANDWIDTHD_POSTGRESQL bool "enable postgresql log target support" select BR2_PACKAGE_POSTGRESQL depends on !BR2_STATIC_LIBS help Enable support for logging the bandwidthd data to a remote (or local) postgresql server. This data can then be viewed through a php site. See README in the source code (github.com/nroach44/bandwidthd) for more information. comment "postgresql support needs a toolchain w/ dynamic library" depends on BR2_STATIC_LIBS config BR2_PACKAGE_BANDWIDTHD_SQLITE3 bool "enable sqlite3 log storage" select BR2_PACKAGE_SQLITE help Enable support for storing the aggregated data in an sqlite db instead of a plain text file. endif
shibajee/buildroot
package/bandwidthd/Config.in
in
mit
1,748
# Locally calculated sha256 0270d0def6cc53c8d47d59a9dd093d51fbca1620adeef85c15e35a32010e26ab bandwidthd-v2.0.1-auto-r11.tar.gz
shibajee/buildroot
package/bandwidthd/bandwidthd.hash
hash
mit
128
################################################################################ # # bandwidthd # ################################################################################ BANDWIDTHD_VERSION = v2.0.1-auto-r11 BANDWIDTHD_SITE = $(call github,nroach44,bandwidthd,$(BANDWIDTHD_VERSION)) # Specified as "any version of the GPL that is current as of your # download" by upstream. BANDWIDTHD_LICENSE = GPL BANDWIDTHD_DEPENDENCIES = gd libpng libpcap host-pkgconf BANDWIDTHD_AUTORECONF = YES BANDWIDTHD_CONF_OPTS += --with-pcap-config=$(STAGING_DIR)/usr/bin/pcap-config ifeq ($(BR2_PACKAGE_BANDWIDTHD_POSTGRESQL),y) BANDWIDTHD_DEPENDENCIES += postgresql BANDWIDTHD_CONF_OPTS += --with-postgresql-logging=true else BANDWIDTHD_CONF_OPTS += --with-postgresql-logging=false endif ifeq ($(BR2_PACKAGE_BANDWIDTHD_SQLITE3),y) BANDWIDTHD_DEPENDENCIES += sqlite BANDWIDTHD_CONF_OPTS += --with-sqlite-storage=true else BANDWIDTHD_CONF_OPTS += --with-sqlite-storage=false endif define BANDWIDTHD_INSTALL_INIT_SYSTEMD $(INSTALL) -D -m 644 package/bandwidthd/bandwidthd.service \ $(TARGET_DIR)/usr/lib/systemd/system/bandwidthd.service mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants ln -sf /usr/lib/systemd/system/bandwidthd.service \ $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/bandwidthd.service endef $(eval $(autotools-package))
shibajee/buildroot
package/bandwidthd/bandwidthd.mk
mk
mit
1,370
[Unit] Description=Bandwidth usage monitor and reporter After=network.target [Service] Type=forking ExecStart=/usr/bin/bandwidthd PIDFile=/var/run/bandwidthd.pid [Install] WantedBy=multi-user.target
shibajee/buildroot
package/bandwidthd/bandwidthd.service
service
mit
201
From http://ftp.gnu.org/pub/gnu/bash/bash-4.3-patches/bash43-031 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> BASH PATCH REPORT ================= Bash-Release: 4.3 Patch-ID: bash43-031 Bug-Reported-by: lolilolicon <lolilolicon@gmail.com> Bug-Reference-ID: <CAMtVo_Nz=32Oq=zWTb6=+8gUNXOo2rRvud1W4oPnA-cgVk_ZqQ@mail.gmail.com> Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2014-08/msg00139.html Bug-Description: The new nameref assignment functionality introduced in bash-4.3 did not perform enough validation on the variable value and would create variables with invalid names. Patch (apply with `patch -p0'): *** a/bash-4.3-patched/subst.h 2014-01-11 21:02:27.000000000 -0500 --- b/subst.h 2014-09-01 12:16:56.000000000 -0400 *************** *** 48,51 **** --- 48,52 ---- #define ASS_MKGLOBAL 0x0008 /* force global assignment */ #define ASS_NAMEREF 0x0010 /* assigning to nameref variable */ + #define ASS_FROMREF 0x0020 /* assigning from value of nameref variable */ /* Flags for the string extraction functions. */ *** a/bash-4.3-patched/variables.c 2014-05-15 08:26:50.000000000 -0400 --- b/variables.c 2014-09-01 14:37:44.000000000 -0400 *************** *** 2504,2511 **** int hflags, aflags; { ! char *newval; SHELL_VAR *entry; entry = (hflags & HASH_NOSRCH) ? (SHELL_VAR *)NULL : hash_lookup (name, table); /* Follow the nameref chain here if this is the global variables table */ if (entry && nameref_p (entry) && (invisible_p (entry) == 0) && table == global_variables->table) --- 2566,2590 ---- int hflags, aflags; { ! char *newname, *newval; SHELL_VAR *entry; + #if defined (ARRAY_VARS) + arrayind_t ind; + char *subp; + int sublen; + #endif + newname = 0; + #if defined (ARRAY_VARS) + if ((aflags & ASS_FROMREF) && (hflags & HASH_NOSRCH) == 0 && valid_array_reference (name)) + { + newname = array_variable_name (name, &subp, &sublen); + if (newname == 0) + return (SHELL_VAR *)NULL; /* XXX */ + entry = hash_lookup (newname, table); + } + else + #endif entry = (hflags & HASH_NOSRCH) ? (SHELL_VAR *)NULL : hash_lookup (name, table); + /* Follow the nameref chain here if this is the global variables table */ if (entry && nameref_p (entry) && (invisible_p (entry) == 0) && table == global_variables->table) *************** *** 2538,2541 **** --- 2617,2630 ---- } } + #if defined (ARRAY_VARS) + else if (entry == 0 && newname) + { + entry = make_new_array_variable (newname); /* indexed array by default */ + if (entry == 0) + return entry; + ind = array_expand_index (name, subp, sublen); + bind_array_element (entry, ind, value, aflags); + } + #endif else if (entry == 0) { *************** *** 2658,2662 **** if (nameref_cell (nv) == 0) return (bind_variable_internal (nv->name, value, nvc->table, 0, flags)); ! return (bind_variable_internal (nameref_cell (nv), value, nvc->table, 0, flags)); } else --- 2747,2752 ---- if (nameref_cell (nv) == 0) return (bind_variable_internal (nv->name, value, nvc->table, 0, flags)); ! /* XXX - bug here with ref=array[index] */ ! return (bind_variable_internal (nameref_cell (nv), value, nvc->table, 0, flags|ASS_FROMREF)); } else *** a/bash-4.3/patchlevel.h 2012-12-29 10:47:57.000000000 -0500 --- b/patchlevel.h 2014-03-20 20:01:28.000000000 -0400 *************** *** 26,30 **** looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 30 #endif /* _PATCHLEVEL_H_ */ --- 26,30 ---- looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 31 #endif /* _PATCHLEVEL_H_ */
shibajee/buildroot
package/bash/0031-patchlevel-31.patch
patch
mit
3,817
From http://ftp.gnu.org/pub/gnu/bash/bash-4.3-patches/bash43-032 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> BASH PATCH REPORT ================= Bash-Release: 4.3 Patch-ID: bash43-032 Bug-Reported-by: crispusfairbairn@gmail.com Bug-Reference-ID: <b5e499f7-3b98-408d-9f94-c0387580e73a@googlegroups.com> Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2014-09/msg00013.html Bug-Description: When bash is running in Posix mode, it allows signals -- including SIGCHLD -- to interrupt the `wait' builtin, as Posix requires. However, the interrupt causes bash to not run a SIGCHLD trap for all exited children. This patch fixes the issue and restores the documented behavior in Posix mode. Patch (apply with `patch -p0'): *** a/bash-4.3-patched/jobs.c 2014-05-14 09:20:15.000000000 -0400 --- b/jobs.c 2014-09-09 11:50:38.000000000 -0400 *************** *** 3340,3344 **** { interrupt_immediately = 0; ! trap_handler (SIGCHLD); /* set pending_traps[SIGCHLD] */ wait_signal_received = SIGCHLD; /* If we're in a signal handler, let CHECK_WAIT_INTR pick it up; --- 3346,3352 ---- { interrupt_immediately = 0; ! /* This was trap_handler (SIGCHLD) but that can lose traps if ! children_exited > 1 */ ! queue_sigchld_trap (children_exited); wait_signal_received = SIGCHLD; /* If we're in a signal handler, let CHECK_WAIT_INTR pick it up; *** a/bash-4.3/patchlevel.h 2012-12-29 10:47:57.000000000 -0500 --- b/patchlevel.h 2014-03-20 20:01:28.000000000 -0400 *************** *** 26,30 **** looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 31 #endif /* _PATCHLEVEL_H_ */ --- 26,30 ---- looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 32 #endif /* _PATCHLEVEL_H_ */
shibajee/buildroot
package/bash/0032-patchlevel-32.patch
patch
mit
1,861
From http://ftp.gnu.org/pub/gnu/bash/bash-4.3-patches/bash43-033 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> BASH PATCH REPORT ================= Bash-Release: 4.3 Patch-ID: bash43-033 Bug-Reported-by: mickael9@gmail.com, Jan Rome <jan.rome@gmail.com> Bug-Reference-ID: <20140907224046.382ED3610CC@mickael-laptop.localdomain>, <540D661D.50908@gmail.com> Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2014-09/msg00029.html http://lists.gnu.org/archive/html/bug-bash/2014-09/msg00030.html Bug-Description: Bash does not clean up the terminal state in all cases where bash or readline modifies it and bash is subsequently terminated by a fatal signal. This happens when the `read' builtin modifies the terminal settings, both when readline is active and when it is not. It occurs most often when a script installs a trap that exits on a signal without re-sending the signal to itself. Patch (apply with `patch -p0'): *** a/bash-4.3-patched/shell.c 2014-01-14 08:04:32.000000000 -0500 --- b/shell.c 2014-12-22 10:27:50.000000000 -0500 *************** *** 74,77 **** --- 74,78 ---- #if defined (READLINE) + # include <readline/readline.h> # include "bashline.h" #endif *************** *** 910,913 **** --- 912,923 ---- fflush (stderr); + /* Clean up the terminal if we are in a state where it's been modified. */ + #if defined (READLINE) + if (RL_ISSTATE (RL_STATE_TERMPREPPED) && rl_deprep_term_function) + (*rl_deprep_term_function) (); + #endif + if (read_tty_modified ()) + read_tty_cleanup (); + /* Do trap[0] if defined. Allow it to override the exit status passed to us. */ *** a/bash-4.3-patched/builtins/read.def 2014-10-01 12:57:38.000000000 -0400 --- b/builtins/read.def 2014-12-22 10:48:54.000000000 -0500 *************** *** 141,148 **** int sigalrm_seen; ! static int reading; static SigHandler *old_alrm; static unsigned char delim; /* In all cases, SIGALRM just sets a flag that we check periodically. This avoids problems with the semi-tricky stuff we do with the xfree of --- 141,150 ---- int sigalrm_seen; ! static int reading, tty_modified; static SigHandler *old_alrm; static unsigned char delim; + static struct ttsave termsave; + /* In all cases, SIGALRM just sets a flag that we check periodically. This avoids problems with the semi-tricky stuff we do with the xfree of *************** *** 189,193 **** SHELL_VAR *var; TTYSTRUCT ttattrs, ttset; - struct ttsave termsave; #if defined (ARRAY_VARS) WORD_LIST *alist; --- 191,194 ---- *************** *** 222,226 **** USE_VAR(lastsig); ! sigalrm_seen = reading = 0; i = 0; /* Index into the string that we are reading. */ --- 223,227 ---- USE_VAR(lastsig); ! sigalrm_seen = reading = tty_modified = 0; i = 0; /* Index into the string that we are reading. */ *************** *** 439,442 **** --- 440,445 ---- goto assign_vars; } + if (interactive_shell == 0) + initialize_terminating_signals (); old_alrm = set_signal_handler (SIGALRM, sigalrm); add_unwind_protect (reset_alarm, (char *)NULL); *************** *** 483,487 **** --- 486,493 ---- if (i < 0) sh_ttyerror (1); + tty_modified = 1; add_unwind_protect ((Function *)ttyrestore, (char *)&termsave); + if (interactive_shell == 0) + initialize_terminating_signals (); } } *************** *** 498,502 **** --- 504,511 ---- sh_ttyerror (1); + tty_modified = 1; add_unwind_protect ((Function *)ttyrestore, (char *)&termsave); + if (interactive_shell == 0) + initialize_terminating_signals (); } *************** *** 589,592 **** --- 598,603 ---- else lastsig = 0; + if (terminating_signal && tty_modified) + ttyrestore (&termsave); /* fix terminal before exiting */ CHECK_TERMSIG; eof = 1; *************** *** 979,982 **** --- 990,1007 ---- { ttsetattr (ttp->fd, ttp->attrs); + tty_modified = 0; + } + + void + read_tty_cleanup () + { + if (tty_modified) + ttyrestore (&termsave); + } + + int + read_tty_modified () + { + return (tty_modified); } *** ./bash-4.3-patched/builtins/common.h 2014-10-01 12:57:47.000000000 -0400 --- b/builtins/common.h 2014-12-22 10:10:14.000000000 -0500 *************** *** 123,126 **** --- 141,148 ---- extern void getopts_reset __P((int)); + /* Functions from read.def */ + extern void read_tty_cleanup __P((void)); + extern int read_tty_modified __P((void)); + /* Functions from set.def */ extern int minus_o_option_value __P((char *)); *** a/bash-4.3-patched/bashline.c 2014-05-14 09:22:39.000000000 -0400 --- b/bashline.c 2014-09-08 11:28:56.000000000 -0400 *************** *** 203,206 **** --- 203,207 ---- extern int array_needs_making; extern int posixly_correct, no_symbolic_links; + extern int sigalrm_seen; extern char *current_prompt_string, *ps1_prompt; extern STRING_INT_ALIST word_token_alist[]; *************** *** 4209,4214 **** /* If we're going to longjmp to top_level, make sure we clean up readline. check_signals will call QUIT, which will eventually longjmp to top_level, ! calling run_interrupt_trap along the way. */ ! if (interrupt_state) rl_cleanup_after_signal (); bashline_reset_event_hook (); --- 4262,4268 ---- /* If we're going to longjmp to top_level, make sure we clean up readline. check_signals will call QUIT, which will eventually longjmp to top_level, ! calling run_interrupt_trap along the way. The check for sigalrm_seen is ! to clean up the read builtin's state. */ ! if (terminating_signal || interrupt_state || sigalrm_seen) rl_cleanup_after_signal (); bashline_reset_event_hook (); *** a/bash-4.3-patched/sig.c 2014-01-10 15:06:06.000000000 -0500 --- b/sig.c 2014-09-08 11:26:33.000000000 -0400 *************** *** 533,538 **** /* Set the event hook so readline will call it after the signal handlers finish executing, so if this interrupted character input we can get ! quick response. */ ! if (interactive_shell && interactive && no_line_editing == 0) bashline_set_event_hook (); #endif --- 533,540 ---- /* Set the event hook so readline will call it after the signal handlers finish executing, so if this interrupted character input we can get ! quick response. If readline is active or has modified the terminal we ! need to set this no matter what the signal is, though the check for ! RL_STATE_TERMPREPPED is possibly redundant. */ ! if (RL_ISSTATE (RL_STATE_SIGHANDLER) || RL_ISSTATE (RL_STATE_TERMPREPPED)) bashline_set_event_hook (); #endif *** a/bash-4.3/patchlevel.h 2012-12-29 10:47:57.000000000 -0500 --- b/patchlevel.h 2014-03-20 20:01:28.000000000 -0400 *************** *** 26,30 **** looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 32 #endif /* _PATCHLEVEL_H_ */ --- 26,30 ---- looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 33 #endif /* _PATCHLEVEL_H_ */
shibajee/buildroot
package/bash/0033-patchlevel-33.patch
patch
mit
7,169
From http://ftp.gnu.org/pub/gnu/bash/bash-4.3-patches/bash43-034 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> BASH PATCH REPORT ================= Bash-Release: 4.3 Patch-ID: bash43-034 Bug-Reported-by: Dreamcat4 <dreamcat4@gmail.com> Bug-Reference-ID: <CAN39uTpAEs2GFu4ebC_SfSVMRTh-DJ9YanrY4BZZ3OO+CCHjng@mail.gmail.com> Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2015-05/msg00001.html Bug-Description: If neither the -f nor -v options is supplied to unset, and a name argument is found to be a function and unset, subsequent name arguments are not treated as variables before attempting to unset a function by that name. Patch (apply with `patch -p0'): *** a/bash-4.3-patched/builtins/set.def 2013-04-19 07:20:34.000000000 -0400 --- b/builtins/set.def 2015-05-05 13:25:36.000000000 -0400 *************** *** 752,758 **** --- 797,805 ---- { int unset_function, unset_variable, unset_array, opt, nameref, any_failed; + int global_unset_func, global_unset_var; char *name; unset_function = unset_variable = unset_array = nameref = any_failed = 0; + global_unset_func = global_unset_var = 0; reset_internal_getopt (); *************** *** 762,769 **** { case 'f': ! unset_function = 1; break; case 'v': ! unset_variable = 1; break; case 'n': --- 809,816 ---- { case 'f': ! global_unset_func = 1; break; case 'v': ! global_unset_var = 1; break; case 'n': *************** *** 778,782 **** list = loptend; ! if (unset_function && unset_variable) { builtin_error (_("cannot simultaneously unset a function and a variable")); --- 825,829 ---- list = loptend; ! if (global_unset_func && global_unset_var) { builtin_error (_("cannot simultaneously unset a function and a variable")); *************** *** 796,799 **** --- 843,849 ---- name = list->word->word; + unset_function = global_unset_func; + unset_variable = global_unset_var; + #if defined (ARRAY_VARS) unset_array = 0; *** a/bash-4.3/patchlevel.h 2012-12-29 10:47:57.000000000 -0500 --- b/patchlevel.h 2014-03-20 20:01:28.000000000 -0400 *************** *** 26,30 **** looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 33 #endif /* _PATCHLEVEL_H_ */ --- 26,30 ---- looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 34 #endif /* _PATCHLEVEL_H_ */
shibajee/buildroot
package/bash/0034-patchlevel-34.patch
patch
mit
2,519
From http://ftp.gnu.org/pub/gnu/bash/bash-4.3-patches/bash43-035 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> BASH PATCH REPORT ================= Bash-Release: 4.3 Patch-ID: bash43-035 Bug-Reported-by: <romerox.adrian@gmail.com> Bug-Reference-ID: <CABV5r3zhPXmSKUe9uedeGc5YFBM2njJ1iVmY2h5neWdQpDBQug@mail.gmail.com> Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2014-08/msg00045.html Bug-Description: A locale with a long name can trigger a buffer overflow and core dump. This applies on systems that do not have locale_charset in libc, are not using GNU libiconv, and are not using the libintl that ships with bash in lib/intl. Patch (apply with `patch -p0'): *** a/bash-4.3-patched/lib/sh/unicode.c 2014-01-30 16:47:19.000000000 -0500 --- b/lib/sh/unicode.c 2015-05-01 08:58:30.000000000 -0400 *************** *** 79,83 **** if (s) { ! strcpy (charsetbuf, s+1); t = strchr (charsetbuf, '@'); if (t) --- 79,84 ---- if (s) { ! strncpy (charsetbuf, s+1, sizeof (charsetbuf) - 1); ! charsetbuf[sizeof (charsetbuf) - 1] = '\0'; t = strchr (charsetbuf, '@'); if (t) *************** *** 85,89 **** return charsetbuf; } ! strcpy (charsetbuf, locale); return charsetbuf; } --- 86,91 ---- return charsetbuf; } ! strncpy (charsetbuf, locale, sizeof (charsetbuf) - 1); ! charsetbuf[sizeof (charsetbuf) - 1] = '\0'; return charsetbuf; } *** a/bash-4.3/patchlevel.h 2012-12-29 10:47:57.000000000 -0500 --- b/patchlevel.h 2014-03-20 20:01:28.000000000 -0400 *************** *** 26,30 **** looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 34 #endif /* _PATCHLEVEL_H_ */ --- 26,30 ---- looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 35 #endif /* _PATCHLEVEL_H_ */
shibajee/buildroot
package/bash/0035-patchlevel-35.patch
patch
mit
1,927
From http://ftp.gnu.org/pub/gnu/bash/bash-4.3-patches/bash43-036 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> BASH PATCH REPORT ================= Bash-Release: 4.3 Patch-ID: bash43-036 Bug-Reported-by: emanuelczirai@cryptolab.net Bug-Reference-ID: <f962e4f556da5ebfadaf7afe9c78a8cb@cryptolab.net> Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2015-02/msg00071.html Bug-Description: When evaluating and setting integer variables, and the assignment fails to create a variable (for example, when performing an operation on an array variable with an invalid subscript), bash attempts to dereference a null pointer, causing a segmentation violation. Patch (apply with `patch -p0'): *** a/bash-20150206/variables.c 2015-01-23 20:39:27.000000000 -0500 --- b/variables.c 2015-02-19 13:56:12.000000000 -0500 *************** *** 2834,2841 **** v = bind_variable (lhs, rhs, 0); ! if (v && isint) ! VSETATTR (v, att_integer); ! ! VUNSETATTR (v, att_invisible); return (v); --- 2834,2843 ---- v = bind_variable (lhs, rhs, 0); ! if (v) ! { ! if (isint) ! VSETATTR (v, att_integer); ! VUNSETATTR (v, att_invisible); ! } return (v); *** a/bash-4.3/patchlevel.h 2012-12-29 10:47:57.000000000 -0500 --- b/patchlevel.h 2014-03-20 20:01:28.000000000 -0400 *************** *** 26,30 **** looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 35 #endif /* _PATCHLEVEL_H_ */ --- 26,30 ---- looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 36 #endif /* _PATCHLEVEL_H_ */
shibajee/buildroot
package/bash/0036-patchlevel-36.patch
patch
mit
1,666
From http://ftp.gnu.org/pub/gnu/bash/bash-4.3-patches/bash43-037 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> BASH PATCH REPORT ================= Bash-Release: 4.3 Patch-ID: bash43-037 Bug-Reported-by: Greg Wooledge <wooledg@eeg.ccf.org> Bug-Reference-ID: <20150204144240.GN13956@eeg.ccf.org> Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2015-02/msg00007.html Bug-Description: If an associative array uses `@' or `*' as a subscript, `declare -p' produces output that cannot be reused as input. Patch (apply with `patch -p0'): *** a/bash-4.3-patched/assoc.c 2011-11-05 16:39:05.000000000 -0400 --- b/assoc.c 2015-02-04 15:28:25.000000000 -0500 *************** *** 437,440 **** --- 440,445 ---- if (sh_contains_shell_metas (tlist->key)) istr = sh_double_quote (tlist->key); + else if (ALL_ELEMENT_SUB (tlist->key[0]) && tlist->key[1] == '\0') + istr = sh_double_quote (tlist->key); else istr = tlist->key; *** a/bash-4.3/patchlevel.h 2012-12-29 10:47:57.000000000 -0500 --- b/patchlevel.h 2014-03-20 20:01:28.000000000 -0400 *************** *** 26,30 **** looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 36 #endif /* _PATCHLEVEL_H_ */ --- 26,30 ---- looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 37 #endif /* _PATCHLEVEL_H_ */
shibajee/buildroot
package/bash/0037-patchlevel-37.patch
patch
mit
1,411
From http://ftp.gnu.org/pub/gnu/bash/bash-4.3-patches/bash43-038 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> BASH PATCH REPORT ================= Bash-Release: 4.3 Patch-ID: bash43-038 Bug-Reported-by: worley@alum.mit.edu (Dale R. Worley) Bug-Reference-ID: <201406100051.s5A0pCeB014978@hobgoblin.ariadne.com> Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2014-06/msg00028.html Bug-Description: There are a number of instances where `time' is not recognized as a reserved word when the shell grammar says it should be. Patch (apply with `patch -p0'): *** a/bash-4.3-patched/parse.y 2014-04-07 11:56:12.000000000 -0400 --- b/parse.y 2014-06-11 10:25:53.000000000 -0400 *************** *** 2819,2827 **** case OR_OR: case '&': case DO: case THEN: case ELSE: case '{': /* } */ ! case '(': /* ) */ case BANG: /* ! time pipeline */ case TIME: /* time time pipeline */ --- 2819,2832 ---- case OR_OR: case '&': + case WHILE: case DO: + case UNTIL: + case IF: case THEN: + case ELIF: case ELSE: case '{': /* } */ ! case '(': /* )( */ ! case ')': /* only valid in case statement */ case BANG: /* ! time pipeline */ case TIME: /* time time pipeline */ *** a/bash-4.3-patched/y.tab.c 2014-10-05 13:52:50.000000000 -0400 --- b/y.tab.c 2015-05-19 15:08:43.000000000 -0400 *************** *** 5131,5139 **** case OR_OR: case '&': case DO: case THEN: case ELSE: case '{': /* } */ ! case '(': /* ) */ case BANG: /* ! time pipeline */ case TIME: /* time time pipeline */ --- 5131,5144 ---- case OR_OR: case '&': + case WHILE: case DO: + case UNTIL: + case IF: case THEN: + case ELIF: case ELSE: case '{': /* } */ ! case '(': /* )( */ ! case ')': /* only valid in case statement */ case BANG: /* ! time pipeline */ case TIME: /* time time pipeline */ *** a/bash-4.3/patchlevel.h 2012-12-29 10:47:57.000000000 -0500 --- b/patchlevel.h 2014-03-20 20:01:28.000000000 -0400 *************** *** 26,30 **** looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 37 #endif /* _PATCHLEVEL_H_ */ --- 26,30 ---- looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 38 #endif /* _PATCHLEVEL_H_ */
shibajee/buildroot
package/bash/0038-patchlevel-38.patch
patch
mit
2,482
From http://ftp.gnu.org/pub/gnu/bash/bash-4.3-patches/bash43-039 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> BASH PATCH REPORT ================= Bash-Release: 4.3 Patch-ID: bash43-039 Bug-Reported-by: SN <poczta-sn@gazeta.pl> Bug-Reference-ID: <54E2554C.205@gazeta.pl> Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2015-02/msg00060.html Bug-Description: Using the output of `declare -p' when run in a function can result in variables that are invisible to `declare -p'. This problem occurs when an assignment builtin such as `declare' receives a quoted compound array assignment as one of its arguments. Patch (apply with `patch -p0'): *** a/bash-4.3-patched/arrayfunc.c 2014-10-01 13:08:48.000000000 -0400 --- b/arrayfunc.c 2015-02-19 14:33:05.000000000 -0500 *************** *** 405,408 **** --- 405,411 ---- else array_insert (a, i, l->word->word); + + VUNSETATTR (var, att_invisible); /* no longer invisible */ + return var; } *************** *** 635,638 **** --- 638,645 ---- if (nlist) dispose_words (nlist); + + if (var) + VUNSETATTR (var, att_invisible); /* no longer invisible */ + return (var); } *** a/bash-4.3/patchlevel.h 2012-12-29 10:47:57.000000000 -0500 --- b/patchlevel.h 2014-03-20 20:01:28.000000000 -0400 *************** *** 26,30 **** looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 38 #endif /* _PATCHLEVEL_H_ */ --- 26,30 ---- looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 39 #endif /* _PATCHLEVEL_H_ */
shibajee/buildroot
package/bash/0039-patchlevel-39.patch
patch
mit
1,641
From http://ftp.gnu.org/pub/gnu/bash/bash-4.3-patches/bash43-040 Signed-off-by: Gustavo Zacarias <gustavo@zacrias.com.ar> BASH PATCH REPORT ================= Bash-Release: 4.3 Patch-ID: bash43-040 Bug-Reported-by: Jean Delvare <jdelvare@suse.de> Bug-Reference-ID: <20150609180231.5f463695@endymion.delvare> Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2015-06/msg00033.html Bug-Description: There is a memory leak that occurs when bash expands an array reference on the rhs of an assignment statement. Patch (apply with `patch -p0'): *** a/bash-4.3-patched/subst.c 2014-10-01 12:57:47.000000000 -0400 --- b/subst.c 2015-06-22 09:16:53.000000000 -0400 *************** *** 5783,5787 **** if (pflags & PF_ASSIGNRHS) { ! temp = array_variable_name (name, &tt, (int *)0); if (ALL_ELEMENT_SUB (tt[0]) && tt[1] == ']') temp = array_value (name, quoted|Q_DOUBLE_QUOTES, 0, &atype, &ind); --- 5783,5787 ---- if (pflags & PF_ASSIGNRHS) { ! var = array_variable_part (name, &tt, (int *)0); if (ALL_ELEMENT_SUB (tt[0]) && tt[1] == ']') temp = array_value (name, quoted|Q_DOUBLE_QUOTES, 0, &atype, &ind); *** a/bash-4.3/patchlevel.h 2012-12-29 10:47:57.000000000 -0500 --- b/patchlevel.h 2014-03-20 20:01:28.000000000 -0400 *************** *** 26,30 **** looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 39 #endif /* _PATCHLEVEL_H_ */ --- 26,30 ---- looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 40 #endif /* _PATCHLEVEL_H_ */
shibajee/buildroot
package/bash/0040-patchlevel-40.patch
patch
mit
1,658
From http://ftp.gnu.org/pub/gnu/bash/bash-4.3-patches/bash43-041 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> BASH PATCH REPORT ================= Bash-Release: 4.3 Patch-ID: bash43-041 Bug-Reported-by: Hanno Böck <hanno@hboeck.de> Bug-Reference-ID: <20150623131106.6f111da9@pc1>, <20150707004640.0e61d2f9@pc1> Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2015-06/msg00089.html, http://lists.gnu.org/archive/html/bug-bash/2015-07/msg00018.html Bug-Description: There are several out-of-bounds read errors that occur when completing command lines where assignment statements appear before the command name. The first two appear only when programmable completion is enabled; the last one only happens when listing possible completions. Patch (apply with `patch -p0'): *** a/bash-4.3.40/bashline.c 2014-12-29 14:39:43.000000000 -0500 --- b/bashline.c 2015-08-12 10:21:58.000000000 -0400 *************** *** 1469,1476 **** --- 1469,1489 ---- os = start; n = 0; + was_assignment = 0; s = find_cmd_start (os); e = find_cmd_end (end); do { + /* Don't read past the end of rl_line_buffer */ + if (s > rl_end) + { + s1 = s = e1; + break; + } + /* Or past point if point is within an assignment statement */ + else if (was_assignment && s > rl_point) + { + s1 = s = e1; + break; + } /* Skip over assignment statements preceding a command name. If we don't find a command name at all, we can perform command name *** a/bash-4.3.40/lib/readline/complete.c 2013-10-14 09:27:10.000000000 -0400 --- b/lib/readline/complete.c 2015-07-31 09:34:39.000000000 -0400 *************** *** 690,693 **** --- 690,695 ---- if (temp == 0 || *temp == '\0') return (pathname); + else if (temp[1] == 0 && temp == pathname) + return (pathname); /* If the basename is NULL, we might have a pathname like '/usr/src/'. Look for a previous slash and, if one is found, return the portion *** a/bash-4.3/patchlevel.h 2012-12-29 10:47:57.000000000 -0500 --- b/patchlevel.h 2014-03-20 20:01:28.000000000 -0400 *************** *** 26,30 **** looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 40 #endif /* _PATCHLEVEL_H_ */ --- 26,30 ---- looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 41 #endif /* _PATCHLEVEL_H_ */
shibajee/buildroot
package/bash/0041-patchlevel-41.patch
patch
mit
2,490
From http://ftp.gnu.org/pub/gnu/bash/bash-4.3-patches/bash43-042 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> BASH PATCH REPORT ================= Bash-Release: 4.3 Patch-ID: bash43-042 Bug-Reported-by: Nathan Neulinger <nneul@neulinger.org> Bug-Reference-ID: <558EFDF2.7060402@neulinger.org> Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2015-06/msg00096.html Bug-Description: There is a problem when parsing command substitutions containing `case' commands within pipelines that causes the parser to not correctly identify the end of the command substitution. Patch (apply with `patch -p0'): *** a/bash-4.3-patched/parse.y 2015-05-18 19:27:05.000000000 -0400 --- b/parse.y 2015-06-29 10:59:27.000000000 -0400 *************** *** 3709,3712 **** --- 3709,3714 ---- tflags |= LEX_INWORD; lex_wlen = 0; + if (tflags & LEX_RESWDOK) + lex_rwlen = 0; } } *** a/bash-4.3-patched/y.tab.c 2015-05-18 19:27:05.000000000 -0400 --- b/y.tab.c 2015-06-29 10:59:27.000000000 -0400 *************** *** 6021,6024 **** --- 6021,6026 ---- tflags |= LEX_INWORD; lex_wlen = 0; + if (tflags & LEX_RESWDOK) + lex_rwlen = 0; } } *** a/bash-4.3/patchlevel.h 2012-12-29 10:47:57.000000000 -0500 --- b/patchlevel.h 2014-03-20 20:01:28.000000000 -0400 *************** *** 26,30 **** looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 41 #endif /* _PATCHLEVEL_H_ */ --- 26,30 ---- looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 42 #endif /* _PATCHLEVEL_H_ */
shibajee/buildroot
package/bash/0042-patchlevel-42.patch
patch
mit
1,663
From http://ftp.gnu.org/pub/gnu/bash/bash-4.3-patches/bash43-043 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> BASH PATCH REPORT ================= Bash-Release: 4.3 Patch-ID: bash43-043 Bug-Reported-by: lolilolicon <lolilolicon@gmail.com> Bug-Reference-ID: <CAMtVo_MF16KWanCB4C8WxA88Qt26zWsvV6V7+_U2fM0E6tCDxw@mail.gmail.com> Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2014-08/msg00040.html Bug-Description: When the lastpipe option is enabled, the last component can contain nested pipelines and cause a segmentation fault under certain circumestances. Patch (apply with `patch -p0'): *** a/execute_cmd.c 2014-07-30 10:26:52.000000000 -0400 --- b/execute_cmd.c 2014-08-15 08:55:24.000000000 -0400 *************** *** 2406,2412 **** { #if defined (JOB_CONTROL) ! append_process (savestring (the_printed_command), dollar_dollar_pid, exec_result, lastpipe_jid); ! #endif lstdin = wait_for (lastpid); #if defined (JOB_CONTROL) /* If wait_for removes the job from the jobs table, use result of last --- 2433,2447 ---- { #if defined (JOB_CONTROL) ! if (INVALID_JOB (lastpipe_jid) == 0) ! { ! append_process (savestring (the_printed_command_except_trap), dollar_dollar_pid, exec_result, lastpipe_jid); ! lstdin = wait_for (lastpid); ! } ! else ! lstdin = wait_for_single_pid (lastpid); /* checks bgpids list */ ! #else lstdin = wait_for (lastpid); + #endif + #if defined (JOB_CONTROL) /* If wait_for removes the job from the jobs table, use result of last *** a/patchlevel.h 2012-12-29 10:47:57.000000000 -0500 --- b/patchlevel.h 2014-03-20 20:01:28.000000000 -0400 *************** *** 26,30 **** looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 42 #endif /* _PATCHLEVEL_H_ */ --- 26,30 ---- looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 43 #endif /* _PATCHLEVEL_H_ */
shibajee/buildroot
package/bash/0043-patchlevel-43.patch
patch
mit
2,038
From http://ftp.gnu.org/pub/gnu/bash/bash-4.3-patches/bash43-044 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> BASH PATCH REPORT ================= Bash-Release: 4.3 Patch-ID: bash43-044 Bug-Reported-by: Ondrej Oprala <ooprala@redhat.com> Bug-Reference-ID: <539ED55B.2080103@redhat.com> Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2014-06/msg00046.html Bug-Description: A typo prevents the `compat42' shopt option from working as intended. Patch (apply with `patch -p0'): diff -rC 2 bash-4.3.42/builtins/shopt.def bash-4.3.43/builtins/shopt.def *** a/builtins/shopt.def 2013-02-27 09:43:20.000000000 -0500 --- b/builtins/shopt.def 2015-10-16 11:25:28.000000000 -0400 *************** *** 161,165 **** { "compat40", &shopt_compat40, set_compatibility_level }, { "compat41", &shopt_compat41, set_compatibility_level }, ! { "compat42", &shopt_compat41, set_compatibility_level }, #if defined (READLINE) { "complete_fullquote", &complete_fullquote, (shopt_set_func_t *)NULL}, --- 161,165 ---- { "compat40", &shopt_compat40, set_compatibility_level }, { "compat41", &shopt_compat41, set_compatibility_level }, ! { "compat42", &shopt_compat42, set_compatibility_level }, #if defined (READLINE) { "complete_fullquote", &complete_fullquote, (shopt_set_func_t *)NULL}, *** a/patchlevel.h 2012-12-29 10:47:57.000000000 -0500 --- b/patchlevel.h 2014-03-20 20:01:28.000000000 -0400 *************** *** 26,30 **** looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 43 #endif /* _PATCHLEVEL_H_ */ --- 26,30 ---- looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 44 #endif /* _PATCHLEVEL_H_ */
shibajee/buildroot
package/bash/0044-patchlevel-44.patch
patch
mit
1,762
From http://ftp.gnu.org/pub/gnu/bash/bash-4.3-patches/bash43-045 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> BASH PATCH REPORT ================= Bash-Release: 4.3 Patch-ID: bash43-045 Bug-Reported-by: Basin Ilya <basinilya@gmail.com> Bug-Reference-ID: <5624C0AC.8070802@gmail.com> Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2015-10/msg00141.html Bug-Description: If a file open attempted as part of a redirection fails because it is interrupted by a signal, the shell needs to process any pending traps to allow the redirection to be canceled. Patch (apply with `patch -p0'): *** a/redir.c 2014-12-03 10:47:38.000000000 -0500 --- b/redir.c 2015-01-16 10:15:47.000000000 -0500 *************** *** 672,676 **** e = errno; if (fd < 0 && e == EINTR) ! QUIT; errno = e; } --- 672,679 ---- e = errno; if (fd < 0 && e == EINTR) ! { ! QUIT; ! run_pending_traps (); ! } errno = e; } *** a/patchlevel.h 2012-12-29 10:47:57.000000000 -0500 --- b/patchlevel.h 2014-03-20 20:01:28.000000000 -0400 *************** *** 26,30 **** looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 44 #endif /* _PATCHLEVEL_H_ */ --- 26,30 ---- looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 45 #endif /* _PATCHLEVEL_H_ */
shibajee/buildroot
package/bash/0045-patchlevel-45.patch
patch
mit
1,414
From http://ftp.gnu.org/pub/gnu/bash/bash-4.3-patches/bash43-046 Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> BASH PATCH REPORT ================= Bash-Release: 4.3 Patch-ID: bash43-046 Bug-Reported-by: Sergey Tselikh <stselikh@gmail.com> Bug-Reference-ID: <20150816110235.91f3e12e3f20d20cdaad963e@gmail.com> Bug-Reference-URL: http://lists.gnu.org/archive/html/bug-bash/2015-08/msg00080.html Bug-Description: An incorrect conversion from an indexed to associative array can result in a core dump. Patch (apply with `patch -p0'): *** a/subst.c 2015-08-13 11:32:54.000000000 -0400 --- b/subst.c 2015-08-18 10:13:59.000000000 -0400 *************** *** 9562,9566 **** opts[opti] = '\0'; if (opti > 0) ! make_internal_declare (tlist->word->word, opts); t = do_word_assignment (tlist->word, 0); --- 9562,9573 ---- opts[opti] = '\0'; if (opti > 0) ! { ! t = make_internal_declare (tlist->word->word, opts); ! if (t != EXECUTION_SUCCESS) ! { ! last_command_exit_value = t; ! exp_jump_to_top_level (DISCARD); ! } ! } t = do_word_assignment (tlist->word, 0); *** a/patchlevel.h 2012-12-29 10:47:57.000000000 -0500 --- b/patchlevel.h 2014-03-20 20:01:28.000000000 -0400 *************** *** 26,30 **** looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 45 #endif /* _PATCHLEVEL_H_ */ --- 26,30 ---- looks for to find the patch level (for the sccs version string). */ ! #define PATCHLEVEL 46 #endif /* _PATCHLEVEL_H_ */
shibajee/buildroot
package/bash/0046-patchlevel-46.patch
patch
mit
1,581
config BR2_PACKAGE_BASH bool "bash" select BR2_PACKAGE_NCURSES select BR2_PACKAGE_READLINE # uses fork() depends on BR2_USE_MMU depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS help The standard GNU Bourne again shell. http://tiswww.case.edu/php/chet/bash/bashtop.html
shibajee/buildroot
package/bash/Config.in
in
mit
277
# Locally calculated after checking pgp signature sha256 317881019bbf2262fb814b7dd8e40632d13c3608d2f237800a8828fbb8a640dd bash-4.3.30.tar.gz
shibajee/buildroot
package/bash/bash.hash
hash
mit
141
################################################################################ # # bash # ################################################################################ BASH_VERSION = 4.3.30 BASH_SITE = $(BR2_GNU_MIRROR)/bash # Build after since bash is better than busybox shells BASH_DEPENDENCIES = ncurses readline host-bison \ $(if $(BR2_PACKAGE_BUSYBOX),busybox) BASH_CONF_OPTS = --with-installed-readline BASH_LICENSE = GPLv3+ BASH_LICENSE_FILES = COPYING BASH_CONF_ENV += \ ac_cv_rl_prefix="$(STAGING_DIR)" \ ac_cv_rl_version="$(READLINE_VERSION)" \ bash_cv_getcwd_malloc=yes \ bash_cv_job_control_missing=present \ bash_cv_sys_named_pipes=present \ bash_cv_func_sigsetjmp=present \ bash_cv_printf_a_format=yes # The static build needs some trickery ifeq ($(BR2_STATIC_LIBS),y) BASH_CONF_OPTS += --enable-static-link --without-bash-malloc # bash wants to redefine the getenv() function. To check whether this is # possible, AC_TRY_RUN is used which is not possible in # cross-compilation. # On uClibc, redefining getenv is not possible; on glibc and musl it is. # Related: # http://lists.gnu.org/archive/html/bug-bash/2012-03/msg00052.html ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC),y) BASH_CONF_ENV += bash_cv_getenv_redef=no else BASH_CONF_ENV += bash_cv_getenv_redef=yes endif endif # Make /bin/sh -> bash (no other shell, better than busybox shells) define BASH_INSTALL_TARGET_CMDS $(TARGET_MAKE_ENV) $(MAKE) -C $(@D) \ DESTDIR=$(TARGET_DIR) exec_prefix=/ install rm -f $(TARGET_DIR)/bin/bashbug endef $(eval $(autotools-package))
shibajee/buildroot
package/bash/bash.mk
mk
mit
1,555
config BR2_PACKAGE_BATCTL bool "batctl" depends on BR2_TOOLCHAIN_HAS_THREADS # libnl select BR2_PACKAGE_LIBNL help Batctl is the configuration and debugging tool for batman-adv. http://www.open-mesh.org/projects/batman-adv/wiki/Using-batctl comment "batctl needs a toolchain w/ threads" depends on !BR2_TOOLCHAIN_HAS_THREADS
shibajee/buildroot
package/batctl/Config.in
in
mit
338
# http://downloads.open-mesh.org/batman/releases/batman-adv-2016.1/batctl-2016.1.tar.gz.sha1 sha1 72b974bde707594e2cf0cc122d7d7da0f1f65160 batctl-2016.1.tar.gz # Locally calculated sha256 c854397b2ddd2cb8d15d1e65839819380648ccb37507d0303e133011fe6f03c9 batctl-2016.1.tar.gz
shibajee/buildroot
package/batctl/batctl.hash
hash
mit
275
################################################################################ # # batctl # ################################################################################ BATCTL_VERSION = 2016.1 BATCTL_SITE = http://downloads.open-mesh.org/batman/releases/batman-adv-$(BATCTL_VERSION) BATCTL_LICENSE = GPLv2 BATCTL_DEPENDENCIES = libnl host-pkgconf define BATCTL_BUILD_CMDS $(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) all endef define BATCTL_INSTALL_TARGET_CMDS $(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) \ PREFIX=/usr DESTDIR=$(TARGET_DIR) install endef $(eval $(generic-package))
shibajee/buildroot
package/batctl/batctl.mk
mk
mit
629
comment "batman-adv needs a Linux kernel to be built" depends on !BR2_LINUX_KERNEL config BR2_PACKAGE_BATMAN_ADV bool "batman-adv" depends on BR2_LINUX_KERNEL help batman-adv mesh networking kernel module https://www.open-mesh.org/projects/batman-adv/ if BR2_PACKAGE_BATMAN_ADV config BR2_PACKAGE_BATMAN_ADV_DEBUG bool "enable debugging" help Enables B.A.T.M.A.N. debugging. config BR2_PACKAGE_BATMAN_ADV_NC bool "enable network coding" help Enables B.A.T.M.A.N. network coding. Note: this requires promiscuous mode on ALL nodes! https://www.open-mesh.org/projects/batman-adv/wiki/NetworkCoding config BR2_PACKAGE_BATMAN_ADV_BATMAN_V bool "enable B.A.T.M.A.N. V protocol (experimental)" help Enables B.A.T.M.A.N. V network protocol. This is the next-gen protocol and is experimental at this time. https://www.open-mesh.org/projects/batman-adv/wiki/BATMAN_V endif
shibajee/buildroot
package/batman-adv/Config.in
in
mit
909
# From https://downloads.open-mesh.org/batman/stable/sources/batman-adv/batman-adv-2016.1.tar.gz.sha1 sha1 c9ca52c913fbf81aca266695a77359ecdbcc8bd8 batman-adv-2016.1.tar.gz
shibajee/buildroot
package/batman-adv/batman-adv.hash
hash
mit
173
################################################################################ # # batman-adv # ################################################################################ BATMAN_ADV_VERSION = 2016.1 BATMAN_ADV_SITE = https://downloads.open-mesh.org/batman/stable/sources/batman-adv BATMAN_ADV_SOURCE = batman-adv-$(BATMAN_ADV_VERSION).tar.gz BATMAN_ADV_LICENSE = GPLv2 # Bridge Loop Avoidance, Distributed Arp Table are always enabled BATMAN_ADV_CFLAGS = \ -I$(@D)/compat-include/ \ -include $(@D)/compat.h \ -DBATADV_SOURCE_VERSION=\"\\\"$(BATMAN_ADV_VERSION)\\\"\" BATMAN_ADV_MODULE_MAKE_OPTS = \ KVER=$(LINUX_VERSION_PROBED) \ INSTALL_MOD_DIR=updates/net/batman-adv \ NOSTDINC_FLAGS="$(BATMAN_ADV_CFLAGS)" \ CONFIG_BATMAN_ADV=m \ CONFIG_BATMAN_ADV_BATMAN_V=$(BR2_PACKAGE_BATMAN_ADV_BATMAN_V) \ CONFIG_BATMAN_ADV_BLA=y \ CONFIG_BATMAN_ADV_DAT=y \ CONFIG_BATMAN_ADV_DEBUG=$(BR2_PACKAGE_BATMAN_ADV_DEBUG) \ CONFIG_BATMAN_ADV_MCAST=y \ CONFIG_BATMAN_ADV_NC=$(BR2_PACKAGE_BATMAN_ADV_NC) BATMAN_ADV_MODULE_SUBDIRS = net/batman-adv define BATMAN_ADV_CONFIGURE_CMDS $(BATMAN_ADV_MODULE_MAKE_OPTS) $(@D)/gen-compat-autoconf.sh $(@D)/compat-autoconf.h endef $(eval $(kernel-module)) $(eval $(generic-package))
shibajee/buildroot
package/batman-adv/batman-adv.mk
mk
mit
1,229
Description: Fix array initialization bug Author: Phil Nelson Origin: upstream Bug-Debian: http://bugs.debian.org/586969 Bug-Debian: http://bugs.debian.org/671513 --- This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ Index: bc/bc/storage.c =================================================================== --- bc.orig/bc/storage.c 2013-06-02 20:34:09.401273864 -0400 +++ bc/bc/storage.c 2013-06-02 20:34:11.000000000 -0400 @@ -179,7 +179,7 @@ /* Initialize the new elements. */ - for (; indx < v_count; indx++) + for (; indx < a_count; indx++) arrays[indx] = NULL; /* Free the old elements. */
shibajee/buildroot
package/bc/01_array_initialize.patch
patch
mit
631
Description: notice read and write errors on input and output Quoting from the bug report: +bc (1.06-19ubuntu1) dapper; urgency=low + + * Make dc notice read and write errors on its input and output. + I grepped for mentions of the strings `putc', `print', `getc', `FILE', + `stdin', `stdout' and `stderr' and added calls to new error-checking + functions unless it was clear from the immediately-surrounding code + that the program was exiting nonzero, or would exit nonzero if the + call failed. I ignored hits in lib/getopt*, which seems to + pervasively ignore write errors when printing usage messages, in the + hope that these were correct. I _think_ I got them all. -iwj. + + -- Ian Jackson <iwj@ubuntu.com> Tue, 4 Apr 2006 17:21:02 +0100 Author: Ian Jackson <iwj@ubuntu.com> Origin: other Bug-Debian: http://bugs.debian.org/488735 --- This patch header follows DEP-3: http://dep.debian.net/deps/dep3/ diff --git a/bc/execute.c b/bc/execute.c index e4e8ef7..8787048 100644 --- a/bc/execute.c +++ b/bc/execute.c @@ -108,6 +108,7 @@ execute () } out_char ('\n'); } + checkferror_output(stdout); } #endif @@ -222,6 +223,7 @@ execute () } } fflush (stdout); + checkferror_output(stdout); break; case 'R' : /* Return from function */ @@ -257,6 +259,7 @@ execute () if (inst == 'W') out_char ('\n'); store_var (4); /* Special variable "last". */ fflush (stdout); + checkferror_output(stdout); pop (); break; @@ -338,6 +341,7 @@ execute () case 'w' : /* Write a string to the output. */ while ((ch = byte(&pc)) != '"') out_schar (ch); fflush (stdout); + checkferror_output(stdout); break; case 'x' : /* Exchange Top of Stack with the one under the tos. */ @@ -545,7 +549,10 @@ execute () { signal (SIGINT, use_quit); if (had_sigint) - printf ("\ninterrupted execution.\n"); + { + printf ("\ninterrupted execution.\n"); + checkferror_output(stdout); + } } } @@ -580,6 +587,7 @@ input_char () out_col = 0; /* Saw a new line */ } } + checkferror_input(stdin); /* Classify and preprocess the input character. */ if (isdigit(in_ch)) diff --git a/bc/load.c b/bc/load.c index 1035198..4039e86 100644 --- a/bc/load.c +++ b/bc/load.c @@ -217,6 +217,7 @@ load_code (code) if (label_no > 65535L) { /* Better message? */ fprintf (stderr,"Program too big.\n"); + checkferror_output(stderr); exit(1); } addbyte ( (char) (label_no & 0xFF)); diff --git a/bc/main.c b/bc/main.c index 9a2461e..3ae427d 100644 --- a/bc/main.c +++ b/bc/main.c @@ -358,6 +358,9 @@ use_quit (sig) errno = save; #else write (1, "\n(interrupt) Exiting bc.\n", 26); +#ifdef READLINE + rl_initialize (); /* Clear readline buffer */ +#endif #if defined(LIBEDIT) if (edit != NULL) el_end(edit); diff --git a/bc/sbc.y b/bc/sbc.y index 0ded29e..6fcc1fa 100644 --- a/bc/sbc.y +++ b/bc/sbc.y @@ -86,7 +86,9 @@ program : /* empty */ if (interactive && !quiet) { show_bc_version (); + checkferror_output(stdout); welcome (); + checkferror_output(stdout); } } | program input_item diff --git a/bc/scan.c b/bc/scan.c index 1f78ec2..2b5eeb4 100644 --- a/bc/scan.c +++ b/bc/scan.c @@ -799,6 +799,7 @@ bcel_input (buf, result, max) if (bcel_len != 0) history (hist, &histev, H_ENTER, bcel_line); fflush (stdout); + checkferror_output(stdout); } if (bcel_len <= max) @@ -874,6 +875,7 @@ rl_input (buf, result, max) add_history (rl_line); rl_line[rl_len-1] = '\n'; fflush (stdout); + checkferror_output(stdout); } if (rl_len <= max) diff --git a/bc/scan.l b/bc/scan.l index 841c3df..16cd62e 100644 --- a/bc/scan.l +++ b/bc/scan.l @@ -111,6 +111,7 @@ bcel_input (buf, result, max) if (bcel_len != 0) history (hist, &histev, H_ENTER, bcel_line); fflush (stdout); + checkferror_output(stdout); } if (bcel_len <= max) @@ -186,6 +187,7 @@ rl_input (buf, result, max) add_history (rl_line); rl_line[rl_len-1] = '\n'; fflush (stdout); + checkferror_output(stdout); } if (rl_len <= max) @@ -310,6 +312,7 @@ limits return(Limits); if (c == EOF) { fprintf (stderr,"EOF encountered in a comment.\n"); + checkferror_output(stderr); break; } } diff --git a/bc/storage.c b/bc/storage.c index 699729a..37b4c6c 100644 --- a/bc/storage.c +++ b/bc/storage.c @@ -99,6 +99,7 @@ more_functions (VOID) { f = &functions[indx]; f->f_defined = FALSE; + f->f_void = FALSE; f->f_body = (char *) bc_malloc (BC_START_SIZE); f->f_body_size = BC_START_SIZE; f->f_code_size = 0; diff --git a/bc/util.c b/bc/util.c index 30beaf9..669235f 100644 --- a/bc/util.c +++ b/bc/util.c @@ -260,9 +260,10 @@ init_gen () continue_label = 0; next_label = 1; out_count = 2; - if (compile_only) + if (compile_only) { printf ("@i"); - else + checkferror_output(stdout); + } else init_load (); had_error = FALSE; did_gen = FALSE; @@ -286,6 +287,7 @@ generate (str) printf ("\n"); out_count = 0; } + checkferror_output(stdout); } else load_code (str); @@ -303,6 +305,7 @@ run_code() if (compile_only) { printf ("@r\n"); + checkferror_output(stdout); out_count = 0; } else @@ -341,6 +344,7 @@ out_char (ch) } putchar (ch); } + checkferror_output(stdout); } /* Output routines: Write a character CH to the standard output. @@ -371,6 +375,7 @@ out_schar (ch) } putchar (ch); } + checkferror_output(stdout); } @@ -657,6 +662,7 @@ limits() #ifdef OLD_EQ_OP printf ("Old assignment operatiors are valid. (=-, =+, ...)\n"); #endif + checkferror_output(stdout); } /* bc_malloc will check the return value so all other places do not @@ -721,6 +727,7 @@ yyerror (str, va_alist) fprintf (stderr,"%s %d: ",name,line_no); vfprintf (stderr, str, args); fprintf (stderr, "\n"); + checkferror_output(stderr); had_error = TRUE; va_end (args); } @@ -761,6 +768,7 @@ warn (mesg, va_alist) fprintf (stderr,"%s %d: Error: ",name,line_no); vfprintf (stderr, mesg, args); fprintf (stderr, "\n"); + checkferror_output(stderr); had_error = TRUE; } else @@ -773,6 +781,7 @@ warn (mesg, va_alist) fprintf (stderr,"%s %d: (Warning) ",name,line_no); vfprintf (stderr, mesg, args); fprintf (stderr, "\n"); + checkferror_output(stderr); } va_end (args); } @@ -807,6 +816,7 @@ rt_error (mesg, va_alist) va_end (args); fprintf (stderr, "\n"); + checkferror_output(stderr); runtime_error = TRUE; } @@ -843,4 +853,5 @@ rt_warn (mesg, va_alist) va_end (args); fprintf (stderr, "\n"); + checkferror_output(stderr); } diff --git a/dc/dc.c b/dc/dc.c index e03f094..0faf03a 100644 --- a/dc/dc.c +++ b/dc/dc.c @@ -61,6 +61,7 @@ static void bug_report_info DC_DECLVOID() { printf("Email bug reports to: bug-dc@gnu.org .\n"); + checkferror_output(stdout); } static void @@ -71,6 +72,7 @@ show_version DC_DECLVOID() This is free software; see the source for copying conditions. There is NO\n\ warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE,\n\ to the extent permitted by law.\n", DC_COPYRIGHT); + checkferror_output(stdout); } /* your generic usage function */ @@ -87,6 +89,7 @@ Usage: %s [OPTION] [file ...]\n\ \n\ ", progname); bug_report_info(); + checkferror_output(f); } /* returns a pointer to one past the last occurance of c in s, diff --git a/dc/eval.c b/dc/eval.c index 4af7200..153d331 100644 --- a/dc/eval.c +++ b/dc/eval.c @@ -94,12 +94,15 @@ static int input_pushback; static int input_fil DC_DECLVOID() { + int c; if (input_pushback != EOF){ - int c = input_pushback; + c = input_pushback; input_pushback = EOF; return c; } - return getc(input_fil_fp); + c = getc(input_fil_fp); + checkferror_input(input_fil_fp); + return c; } /* passed as an argument to dc_getnum */ @@ -298,11 +301,13 @@ dc_func DC_DECLARG((c, peekc, negcmp)) tmpint = dc_num2int(datum.v.number, DC_TOSS); if (2 <= tmpint && tmpint <= DC_IBASE_MAX) dc_ibase = tmpint; - else + else { fprintf(stderr, "%s: input base must be a number \ between 2 and %d (inclusive)\n", progname, DC_IBASE_MAX); + checkferror_output(stderr); + } } break; case 'k': /* set scale to value on top of stack */ @@ -310,11 +315,12 @@ between 2 and %d (inclusive)\n", tmpint = -1; if (datum.dc_type == DC_NUMBER) tmpint = dc_num2int(datum.v.number, DC_TOSS); - if ( ! (tmpint >= 0) ) + if ( ! (tmpint >= 0) ) { fprintf(stderr, "%s: scale must be a nonnegative number\n", progname); - else + checkferror_output(stderr); + } else dc_scale = tmpint; } break; @@ -338,11 +344,12 @@ between 2 and %d (inclusive)\n", tmpint = 0; if (datum.dc_type == DC_NUMBER) tmpint = dc_num2int(datum.v.number, DC_TOSS); - if ( ! (tmpint > 1) ) + if ( ! (tmpint > 1) ) { fprintf(stderr, "%s: output base must be a number greater than 1\n", progname); - else + checkferror_output(stderr); + } else dc_obase = tmpint; } break; @@ -383,6 +390,7 @@ between 2 and %d (inclusive)\n", fprintf(stderr, "%s: square root of nonnumeric attempted\n", progname); + checkferror_output(stderr); }else if (dc_sqrt(datum.v.number, dc_scale, &tmpnum) == DC_SUCCESS){ dc_free_num(&datum.v.number); datum.v.number = tmpnum; @@ -444,6 +452,7 @@ between 2 and %d (inclusive)\n", fprintf(stderr, "%s: Q command requires a number >= 1\n", progname); + checkferror_output(stderr); } break; #if 0 @@ -489,11 +498,12 @@ between 2 and %d (inclusive)\n", if (datum.dc_type == DC_NUMBER) tmpint = dc_num2int(datum.v.number, DC_TOSS); if (dc_pop(&datum) == DC_SUCCESS){ - if (tmpint < 0) + if (tmpint < 0) { fprintf(stderr, "%s: array index must be a nonnegative integer\n", progname); - else + checkferror_output(stderr); + } else dc_array_set(peekc, tmpint, datum); } } @@ -505,17 +515,19 @@ between 2 and %d (inclusive)\n", tmpint = -1; if (datum.dc_type == DC_NUMBER) tmpint = dc_num2int(datum.v.number, DC_TOSS); - if (tmpint < 0) + if (tmpint < 0) { fprintf(stderr, "%s: array index must be a nonnegative integer\n", progname); - else + checkferror_output(stderr); + } else dc_push(dc_array_get(peekc, tmpint)); } return DC_EATONE; default: /* What did that user mean? */ fprintf(stderr, "%s: ", progname); + checkferror_output(stderr); dc_show_id(stdout, c, " unimplemented\n"); break; } @@ -544,6 +556,7 @@ dc_evalstr DC_DECLARG((string)) fprintf(stderr, "%s: eval called with non-string argument\n", progname); + checkferror_output(stderr); return DC_OKAY; } interrupt_seen = 0; @@ -640,6 +653,7 @@ dc_evalstr DC_DECLARG((string)) return DC_FAIL; } fprintf(stderr, "%s: unexpected EOS\n", progname); + checkferror_output(stderr); return DC_OKAY; } } @@ -665,6 +679,7 @@ dc_evalfile DC_DECLARG((fp)) stdin_lookahead = EOF; for (c=getc(fp); c!=EOF; c=peekc){ peekc = getc(fp); + checkferror_input(stdin); /* * The following if() is the only place where ``stdin_lookahead'' * might be set to other than EOF: @@ -716,6 +731,7 @@ dc_evalfile DC_DECLARG((fp)) return DC_SUCCESS; fprintf(stderr, "%s: Q command argument exceeded \ string execution depth\n", progname); + checkferror_output(stderr); } }else{ dc_garbage("at top of stack", -1); @@ -728,8 +744,11 @@ string execution depth\n", progname); fprintf(stderr, "%s: Q command argument exceeded string execution depth\n", progname); - if (stdin_lookahead != peekc && fp == stdin) + checkferror_output(stderr); + if (stdin_lookahead != peekc && fp == stdin) { peekc = getc(fp); + checkferror_input(stdin); + } break; case DC_INT: @@ -771,6 +790,7 @@ string execution depth\n", progname); if (ferror(fp)) goto error_fail; fprintf(stderr, "%s: unexpected EOF\n", progname); + checkferror_output(stderr); return DC_FAIL; } } diff --git a/dc/misc.c b/dc/misc.c index f2388b0..1be56fe 100644 --- a/dc/misc.c +++ b/dc/misc.c @@ -91,6 +91,7 @@ dc_show_id DC_DECLARG((fp, id, suffix)) fprintf(fp, "'%c' (%#o)%s", (unsigned int) id, id, suffix); else fprintf(fp, "%#o%s", (unsigned int) id, suffix); + checkferror_output(fp); } diff --git a/dc/numeric.c b/dc/numeric.c index 8e5e70f..c875eba 100644 --- a/dc/numeric.c +++ b/dc/numeric.c @@ -134,6 +134,7 @@ dc_div DC_DECLARG((a, b, kscale, result)) bc_init_num(CastNumPtr(result)); if (bc_divide(CastNum(a), CastNum(b), CastNumPtr(result), kscale)){ fprintf(stderr, "%s: divide by zero\n", progname); + checkferror_output(stderr); return DC_DOMAIN_ERROR; } return DC_SUCCESS; @@ -156,6 +157,7 @@ dc_divrem DC_DECLARG((a, b, kscale, quotient, remainder)) if (bc_divmod(CastNum(a), CastNum(b), CastNumPtr(quotient), CastNumPtr(remainder), kscale)){ fprintf(stderr, "%s: divide by zero\n", progname); + checkferror_output(stderr); return DC_DOMAIN_ERROR; } return DC_SUCCESS; @@ -174,6 +176,7 @@ dc_rem DC_DECLARG((a, b, kscale, result)) bc_init_num(CastNumPtr(result)); if (bc_modulo(CastNum(a), CastNum(b), CastNumPtr(result), kscale)){ fprintf(stderr, "%s: remainder by zero\n", progname); + checkferror_output(stderr); return DC_DOMAIN_ERROR; } return DC_SUCCESS; @@ -226,6 +229,7 @@ dc_sqrt DC_DECLARG((value, kscale, result)) tmp = bc_copy_num(CastNum(value)); if (!bc_sqrt(&tmp, kscale)){ fprintf(stderr, "%s: square root of negative number\n", progname); + checkferror_output(stderr); bc_free_num(&tmp); return DC_DOMAIN_ERROR; } @@ -429,8 +433,10 @@ dc_out_num DC_DECLARG((value, obase, newline_p, discard_p)) { out_char('\0'); /* clear the column counter */ bc_out_num(CastNum(value), obase, out_char, 0); - if (newline_p == DC_WITHNL) + if (newline_p == DC_WITHNL) { putchar ('\n'); + checkferror_output(stdout); + } if (discard_p == DC_TOSS) dc_free_num(&value); } @@ -475,6 +481,7 @@ dc_dump_num DC_DECLARG((dcvalue, discard_p)) for (cur=top_of_stack; cur; cur=next) { putchar(cur->digit); + checkferror_output(stdout); next = cur->link; free(cur); } @@ -592,6 +599,7 @@ out_char (ch) out_col = 1; } putchar(ch); + checkferror_output(stderr); } } @@ -631,6 +639,7 @@ rt_error (mesg, va_alist) vfprintf (stderr, mesg, args); va_end (args); fprintf (stderr, "\n"); + checkferror_output(stderr); } @@ -664,6 +673,7 @@ rt_warn (mesg, va_alist) vfprintf (stderr, mesg, args); va_end (args); fprintf (stderr, "\n"); + checkferror_output(stderr); } diff --git a/dc/stack.c b/dc/stack.c index 0730e9c..5db3975 100644 --- a/dc/stack.c +++ b/dc/stack.c @@ -38,7 +38,10 @@ #include "dc-regdef.h" /* an oft-used error message: */ -#define Empty_Stack fprintf(stderr, "%s: stack empty\n", progname) +#define Empty_Stack do{ \ + fprintf(stderr, "%s: stack empty\n", progname); \ + checkferror_output(stderr); \ + }while(0) /* simple linked-list implementation suffices: */ @@ -94,6 +97,7 @@ dc_binop DC_DECLARG((op, kscale)) if (dc_stack->value.dc_type!=DC_NUMBER || dc_stack->link->value.dc_type!=DC_NUMBER){ fprintf(stderr, "%s: non-numeric value\n", progname); + checkferror_output(stderr); return; } (void)dc_pop(&b); @@ -134,6 +138,7 @@ dc_binop2 DC_DECLARG((op, kscale)) if (dc_stack->value.dc_type!=DC_NUMBER || dc_stack->link->value.dc_type!=DC_NUMBER){ fprintf(stderr, "%s: non-numeric value\n", progname); + checkferror_output(stderr); return; } (void)dc_pop(&b); @@ -172,6 +177,7 @@ dc_cmpop DC_DECLVOID() if (dc_stack->value.dc_type!=DC_NUMBER || dc_stack->link->value.dc_type!=DC_NUMBER){ fprintf(stderr, "%s: non-numeric value\n", progname); + checkferror_output(stderr); return 0; } (void)dc_pop(&b); @@ -209,6 +215,7 @@ dc_triop DC_DECLARG((op, kscale)) || dc_stack->link->value.dc_type!=DC_NUMBER || dc_stack->link->link->value.dc_type!=DC_NUMBER){ fprintf(stderr, "%s: non-numeric value\n", progname); + checkferror_output(stderr); return; } (void)dc_pop(&c); @@ -327,6 +334,7 @@ dc_register_get DC_DECLARG((regid, result)) r = dc_register[regid]; if (r==NULL || r->value.dc_type==DC_UNINITIALIZED){ fprintf(stderr, "%s: register ", progname); + checkferror_output(stderr); dc_show_id(stderr, regid, " is empty\n"); return DC_FAIL; } @@ -401,6 +409,7 @@ dc_register_pop DC_DECLARG((stackid, result)) r = dc_register[stackid]; if (r == NULL){ fprintf(stderr, "%s: stack register ", progname); + checkferror_output(stderr); dc_show_id(stderr, stackid, " is empty\n"); return DC_FAIL; } diff --git a/dc/string.c b/dc/string.c index ff1e7f1..e24092d 100644 --- a/dc/string.c +++ b/dc/string.c @@ -101,6 +101,7 @@ dc_out_str DC_DECLARG((value, newline, discard_flag)) fwrite(value->s_ptr, value->s_len, sizeof *value->s_ptr, stdout); if (newline == DC_WITHNL) putchar('\n'); + checkferror_output(stdout); if (discard_flag == DC_TOSS) dc_free_str(&value); } @@ -176,6 +177,7 @@ dc_readstring DC_DECLARG((fp, ldelim, rdelim)) } *p++ = c; } + checkferror_input(fp); return dc_makestring(line_buf, (size_t)(p-line_buf)); } diff --git a/h/number.h b/h/number.h index 9b034b6..3a00a92 100644 --- a/h/number.h +++ b/h/number.h @@ -150,4 +150,7 @@ _PROTOTYPE(int bc_sqrt, (bc_num *num, int scale)); _PROTOTYPE(void bc_out_num, (bc_num num, int o_base, void (* out_char)(int), int leading_zero)); +_PROTOTYPE(void checkferror_input, (FILE*)); +_PROTOTYPE(void checkferror_output, (FILE*)); + #endif diff --git a/lib/number.c b/lib/number.c index e211840..4d3ce46 100644 --- a/lib/number.c +++ b/lib/number.c @@ -1776,6 +1776,7 @@ static void out_char (int c) { putchar(c); + checkferror_output(stdout); } @@ -1785,6 +1786,7 @@ pn (num) { bc_out_num (num, 10, out_char, 0); out_char ('\n'); + checkferror_output(stdout); } @@ -1799,6 +1801,28 @@ pv (name, num, len) printf ("%s=", name); for (i=0; i<len; i++) printf ("%c",BCD_CHAR(num[i])); printf ("\n"); + checkferror_output(stdout); } #endif + +/* check ferror() status and if so die */ +void +checkferror_input (fp) + FILE *fp; +{ + if (ferror(fp)) { + perror("dc: could not read input file"); + exit(EXIT_FAILURE); + } +} + +void +checkferror_output (fp) + FILE *fp; +{ + if (ferror(fp)) { + perror("dc: could not write output file"); + exit(EXIT_FAILURE); + } +}
shibajee/buildroot
package/bc/02_notice_read_write_errors.patch
patch
mit
19,028
Use the appropiate MAKEINFO variable rather than the hardcoded makeinfo command directly, otherwise missing logic never works. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> diff -Nura bc-1.06.95.orig/doc/Makefile.in bc-1.06.95/doc/Makefile.in --- bc-1.06.95.orig/doc/Makefile.in 2015-06-13 09:39:46.946620294 -0300 +++ bc-1.06.95/doc/Makefile.in 2015-06-13 09:40:10.019407630 -0300 @@ -96,7 +96,7 @@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ -MAKEINFO = makeinfo --no-split +MAKEINFO = @MAKEINFO@ --no-split OBJEXT = @OBJEXT@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
shibajee/buildroot
package/bc/03_use_appropiate_makeinfo.patch
patch
mit
622
config BR2_PACKAGE_BC bool "bc" help 'bc' is an arbitrary precision numeric processing language Its syntax is similar to C, but differs in many substantial areas. It supports interactive execution of statements. 'Bc' is a utility included in the POSIX P1003.2/D11 draft standard. This version does not use the historical method of having bc be a compiler for the dc calculator (the POSIX document doesn't specify how bc must be implemented). This version has a single executable that both compiles the language and runs the resulting 'byte code.' The byte code is not the dc language. http://www.gnu.org/software/bc
shibajee/buildroot
package/bc/Config.in
in
mit
649
# Locally calculated sha256 7ee4abbcfac03d8a6e1a8a3440558a3d239d6b858585063e745c760957725ecc bc-1.06.95.tar.bz2
shibajee/buildroot
package/bc/bc.hash
hash
mit
113
################################################################################ # # bc # ################################################################################ BC_VERSION = 1.06.95 BC_SOURCE = bc-$(BC_VERSION).tar.bz2 BC_SITE = http://alpha.gnu.org/gnu/bc BC_DEPENDENCIES = host-flex BC_LICENSE = GPLv2+, LGPLv2.1+ BC_LICENSE_FILES = COPYING COPYING.LIB # Build after busybox so target ends up with bc's "dc" version ifeq ($(BR2_PACKAGE_BUSYBOX),y) BC_DEPENDENCIES += busybox endif $(eval $(autotools-package))
shibajee/buildroot
package/bc/bc.mk
mk
mit
525
Don't inline crc64 for gcc-5 compatability This patch is backported from Debian and it fixes the following error: bcache.c:125:9: warning: 'crc_table' is static but used in inline function 'crc64' which is not static ... make-bcache.c:277: undefined reference to `crc64' Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> From: David Mohr <david@mcbf.net> Date: Tue, 26 May 2015 20:34:31 -0600 Subject: Don't inline crc64 for gcc-5 compatability Forwarded: http://article.gmane.org/gmane.linux.kernel.bcache.devel/2919 By James Cowgill, see Debian bug #777798 --- bcache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bcache.c b/bcache.c index 8f37445..8b4b986 100644 --- a/bcache.c +++ b/bcache.c @@ -115,7 +115,7 @@ static const uint64_t crc_table[256] = { 0x9AFCE626CE85B507ULL }; -inline uint64_t crc64(const void *_data, size_t len) +uint64_t crc64(const void *_data, size_t len) { uint64_t crc = 0xFFFFFFFFFFFFFFFFULL; const unsigned char *data = _data;
shibajee/buildroot
package/bcache-tools/0001-Don-t-inline-crc64-for-gcc-5-compatability.patch
patch
mit
1,013
config BR2_PACKAGE_BCACHE_TOOLS bool "bcache tools" depends on BR2_PACKAGE_HAS_UDEV depends on BR2_USE_WCHAR # util-linux depends on BR2_USE_MMU # util-linux (libblkid) select BR2_PACKAGE_UTIL_LINUX select BR2_PACKAGE_UTIL_LINUX_LIBUUID select BR2_PACKAGE_UTIL_LINUX_LIBBLKID help Bcache is a Linux kernel block layer cache. It allows one or more fast disk drives such as flash-based solid state drives (SSDs) to act as a cache for one or more slower hard disk drives. http://bcache.evilpiepirate.org/ This is the user space bcache tools, required to setup the linux bcache feature of the Linux kernel. comment "bcache-tools needs udev /dev management and a toolchain w/ wchar" depends on BR2_USE_MMU depends on !BR2_PACKAGE_HAS_UDEV || !BR2_USE_WCHAR
shibajee/buildroot
package/bcache-tools/Config.in
in
mit
783
# Locally calculated sha256 d56923936f37287efc57a46315679102ef2c86cd0be5874590320acd48c1201c bcache-tools-v1.0.8.tar.gz
shibajee/buildroot
package/bcache-tools/bcache-tools.hash
hash
mit
121
################################################################################ # # bcache-tools # ################################################################################ BCACHE_TOOLS_VERSION = v1.0.8 BCACHE_TOOLS_SITE = $(call github,g2p,bcache-tools,$(BCACHE_TOOLS_VERSION)) BCACHE_TOOLS_LICENSE = GPLv2 BCACHE_TOOLS_LICENSE_FILES = COPYING BCACHE_TOOLS_DEPENDENCIES = host-pkgconf util-linux # We pass $(TARGET_CONFIGURE_OPTS) as environment variable to allow # the bcache-tools Makefile to alter CFLAGS define BCACHE_TOOLS_BUILD_CMDS $(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) endef # The bcache-tools Makefile expects the man8 directory to exist # expects the /lib/udev/rules.d directory to exist. define BCACHE_TOOLS_CREATE_MISSING_DIRS $(INSTALL) -m 0755 -d $(TARGET_DIR)/usr/share/man/man8 $(INSTALL) -m 0755 -d $(TARGET_DIR)/lib/udev/rules.d endef BCACHE_TOOLS_PRE_INSTALL_TARGET_HOOKS += BCACHE_TOOLS_CREATE_MISSING_DIRS define BCACHE_TOOLS_INSTALL_TARGET_CMDS $(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) \ DESTDIR=$(TARGET_DIR) install endef $(eval $(generic-package))
shibajee/buildroot
package/bcache-tools/bcache-tools.mk
mk
mit
1,137
config BR2_PACKAGE_BCM2835 bool "bcm2835" depends on BR2_arm help C library for Broadcom BCM 2835 as used in Raspberry Pi. It provides access to GPIO and other IO functions on the Broadcom BCM 2835 chip, allowing access to the GPIO pins on the 26 pin IDE plug on the RPi board so you can control and interface with various external devices. WARNING: the opinion of the Buildroot developers is that such library is a complete abomination as it entirely works around the standard Linux interfaces to access GPIOs, I2C, SPI busses or other IOs. The library directly remaps the hardware registers in user-space, completely bypassing what the kernel drivers are doing, and potentially conflicting with them. http://www.airspayce.com/mikem/bcm2835
shibajee/buildroot
package/bcm2835/Config.in
in
mit
786
# Locally computed: sha256 295f66dab533592ce41db8e07befe985645a2e661bbf75dce9c383e61e24cb5f bcm2835-1.48.tar.gz
shibajee/buildroot
package/bcm2835/bcm2835.hash
hash
mit
112
################################################################################ # # bcm2835 # ################################################################################ BCM2835_VERSION = 1.48 BCM2835_SITE = http://www.airspayce.com/mikem/bcm2835 BCM2835_LICENSE = GPLv2 BCM2835_LICENSE_FILES = COPYING BCM2835_INSTALL_STAGING = YES $(eval $(autotools-package))
shibajee/buildroot
package/bcm2835/bcm2835.mk
mk
mit
370
From 2541ee3d709803096b17e45610ccc1404e2e5eee Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Date: Sat, 8 Aug 2015 17:46:34 +0200 Subject: [PATCH] fd_set requires inclusion of <sys/select.h> According to POSIX.1-2001, the definition fd_set and related macros is in <sys/select.h>, so it should be included in files using fd_set to make the code compatible with all standard C libraries. Submitted upstream: https://sourceforge.net/p/bcusdk/patches/3/ Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> --- eibd/examples/common.h | 1 + 1 file changed, 1 insertion(+) diff --git a/eibd/examples/common.h b/eibd/examples/common.h index 51fc514..f038da1 100644 --- a/eibd/examples/common.h +++ b/eibd/examples/common.h @@ -20,6 +20,7 @@ #include <stdlib.h> #include <errno.h> #include <unistd.h> +#include <sys/select.h> #include "eibclient.h" /** unsigned char*/ -- 2.5.0
shibajee/buildroot
package/bcusdk/0001-fd_set-requires-inclusion-of-sys-select.h.patch
patch
mit
942
config BR2_PACKAGE_BCUSDK bool "bcusdk" depends on BR2_USE_MMU # libpthsem depends on BR2_INSTALL_LIBSTDCPP select BR2_PACKAGE_LIBPTHSEM select BR2_PACKAGE_ARGP_STANDALONE if BR2_TOOLCHAIN_USES_UCLIBC || BR2_TOOLCHAIN_USES_MUSL help A free development environment for the Bus Coupling Units of the European Installation Bus. The European Installation Bus EIB is a home and building automation bus system. It is optimized for low-speed control applications like lighting and blinds control. BCUs (Bus Coupling Units) are standardized, generic platforms for embedded EIB devices. They include the entire physical layer network interface, power supply and a microcontroller with an implementation of the EIB protocol stack stored in the ROM. http://www.auto.tuwien.ac.at/~mkoegler/eib/ comment "bcusdk needs a toolchain w/ C++" depends on BR2_USE_MMU depends on !BR2_INSTALL_LIBSTDCPP
shibajee/buildroot
package/bcusdk/Config.in
in
mit
927
# Locally calculated sha256 014cdaafc36f223c584b39ae5d698dd037a8e15aba4e78a2e531b51ff1331304 bcusdk_0.0.5.tar.gz
shibajee/buildroot
package/bcusdk/bcusdk.hash
hash
mit
114
################################################################################ # # bcusdk # ################################################################################ BCUSDK_VERSION = 0.0.5 BCUSDK_SOURCE = bcusdk_$(BCUSDK_VERSION).tar.gz BCUSDK_SITE = http://www.auto.tuwien.ac.at/~mkoegler/eib BCUSDK_LICENSE = GPLv2+ BCUSDK_LICENSE_FILES = COPYING BCUSDK_INSTALL_STAGING = YES BCUSDK_CONF_OPTS = \ --enable-onlyeibd \ --enable-ft12 \ --enable-pei16 \ --enable-eibnetip \ --enable-eibnetipserver \ --enable-eibnetiptunnel \ --without-pth-test \ --with-pth=$(STAGING_DIR)/usr BCUSDK_DEPENDENCIES = \ libpthsem \ $(if $(BR2_PACKAGE_ARGP_STANDALONE),argp-standalone) define BCUSDK_REMOVE_EXAMPLES $(RM) -rf $(TARGET_DIR)/usr/share/bcusdk endef BCUSDK_POST_INSTALL_TARGET_HOOKS += BCUSDK_REMOVE_EXAMPLES $(eval $(autotools-package))
shibajee/buildroot
package/bcusdk/bcusdk.mk
mk
mit
855
configure.ac: add check for NO_GETCONTEXT definition Signed-off-by: Samuel Martin <s.martin49@gmail.com> [yann.morin.1998@free.fr: add a comment, change variable name, use AS_IF, remove debug traces, use AC_CHECK_FUNCS (as suggested by Thomas)] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> --- configure.ac | 6 ++++++ 1 file changed, 6 insertions(+) --- bdwgc-7.2f.orig/configure.ac 2014-06-01 19:00:47.000000000 +0200 +++ bdwgc-7.2f/configure.ac 2014-12-23 14:13:11.585716713 +0100 @@ -365,6 +365,12 @@ AC_MSG_RESULT($ac_cv_fno_strict_aliasing) fi +# Check for getcontext (uClibc can be configured without it, for example) +AC_CHECK_FUNCS([getcontext]) +AS_IF([test "$ac_cv_func_getcontext" = "no"], + [CFLAGS="$CFLAGS -DNO_GETCONTEXT" + CPPFLAGS="$CPPFLAGS -DNO_GETCONTEXT"]) + case "$host" in # While IRIX 6 has libdl for the O32 and N32 ABIs, it's missing for N64 # and unnecessary everywhere.
shibajee/buildroot
package/bdwgc/0001-configure.ac-add-check-for-NO_GETCONTEXT-definition.patch
patch
mit
988
From c887470e0e3310c81ecdb7e736bc5d2ead45db2a Mon Sep 17 00:00:00 2001 From: Ivan Maidanski <ivmai@mail.ru> Date: Mon, 6 Apr 2015 20:06:47 +0300 Subject: [PATCH 1/1] Do not include sigcontext.h and asm/sigcontext.h (these Linux headers define sigcontext which is no longer used as replaced with ucontext_t in GC 7.0alpha1) * os_dep.c: Do not include linux/version.h (do not test LINUX_VERSION_CODE), asm/signal.h, sigcontext.h, asm/sigcontext.h since struct sigcontext not used in GC v7+. Signed-off-by: Brendan Heading <brendanheading@gmail.com> Upstream-status: backport --- os_dep.c | 30 ------------------------------ 1 file changed, 30 deletions(-) diff --git a/os_dep.c b/os_dep.c index f62d4ed..a1bafbd 100644 --- a/os_dep.c +++ b/os_dep.c @@ -16,36 +16,6 @@ #include "private/gc_priv.h" -#if defined(LINUX) && !defined(POWERPC) && !defined(NO_SIGCONTEXT_H) -# include <linux/version.h> -# if (LINUX_VERSION_CODE <= 0x10400) - /* Ugly hack to get struct sigcontext_struct definition. Required */ - /* for some early 1.3.X releases. Will hopefully go away soon. */ - /* in some later Linux releases, asm/sigcontext.h may have to */ - /* be included instead. */ -# define __KERNEL__ -# include <asm/signal.h> -# undef __KERNEL__ -# else - /* Kernels prior to 2.1.1 defined struct sigcontext_struct instead of */ - /* struct sigcontext. libc6 (glibc2) uses "struct sigcontext" in */ - /* prototypes, so we have to include the top-level sigcontext.h to */ - /* make sure the former gets defined to be the latter if appropriate. */ -# include <features.h> -# if 2 <= __GLIBC__ -# if 2 == __GLIBC__ && 0 == __GLIBC_MINOR__ - /* glibc 2.1 no longer has sigcontext.h. But signal.h */ - /* has the right declaration for glibc 2.1. */ -# include <sigcontext.h> -# endif /* 0 == __GLIBC_MINOR__ */ -# else /* __GLIBC__ < 2 */ - /* libc5 doesn't have <sigcontext.h>: go directly with the kernel */ - /* one. Check LINUX_VERSION_CODE to see which we should reference. */ -# include <asm/sigcontext.h> -# endif /* __GLIBC__ < 2 */ -# endif -#endif /* LINUX && !POWERPC */ - #if !defined(OS2) && !defined(PCR) && !defined(AMIGA) && !defined(MACOS) \ && !defined(MSWINCE) && !defined(__CC_ARM) # include <sys/types.h> -- 2.4.3
shibajee/buildroot
package/bdwgc/0002-Do-not-include-sigcontext.h-and-asm-sigcontext.h.patch
patch
mit
2,417
Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> From 5e756d4d8df2949cb3b6e51532d3016cbb276fd7 Mon Sep 17 00:00:00 2001 From: Ivan Maidanski <ivmai@mail.ru> Date: Fri, 27 Feb 2015 21:32:22 +0300 Subject: [PATCH 004/135] Revert "Move asm machine-dependent files to 'src' folder" (partly) Asm files moved back to base folder to avoid build issues (reported for NetBSD and Solaris on Sparc). Alternative way is to adjust configure.ac and Makefile.am properly but it requires more efforts (including testing). * Makefile.am (EXTRA_libgc_la_SOURCES): Remove "src/" prefix. * Makefile.direct (SRCS, mach_dep.o): Likewise. * src/ia64_save_regs_in_stack.s: Move to base folder. * src/sparc_mach_dep.S: Likewise. * src/sparc_netbsd_mach_dep.s: Likewise. * src/sparc_sunos4_mach_dep.s: Likewise. --- Makefile.am | 4 +-- Makefile.direct | 20 +++++++------- ia64_save_regs_in_stack.s | 11 ++++++++ sparc_mach_dep.S | 61 +++++++++++++++++++++++++++++++++++++++++ sparc_netbsd_mach_dep.s | 34 +++++++++++++++++++++++ sparc_sunos4_mach_dep.s | 32 +++++++++++++++++++++ src/ia64_save_regs_in_stack.s | 11 -------- src/sparc_mach_dep.S | 61 ----------------------------------------- src/sparc_netbsd_mach_dep.s | 34 ----------------------- src/sparc_sunos4_mach_dep.s | 32 --------------------- 11 files changed, 151 insertions(+), 151 deletions(-) create mode 100644 ia64_save_regs_in_stack.s create mode 100644 sparc_mach_dep.S create mode 100644 sparc_netbsd_mach_dep.s create mode 100644 sparc_sunos4_mach_dep.s delete mode 100644 src/ia64_save_regs_in_stack.s delete mode 100644 src/sparc_mach_dep.S delete mode 100644 src/sparc_netbsd_mach_dep.s delete mode 100644 src/sparc_sunos4_mach_dep.s diff --git a/Makefile.am b/Makefile.am index f8057db..1688be2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -100,8 +100,8 @@ libgc_la_LIBADD = @addobjs@ $(THREADDLLIBS) $(UNWINDLIBS) $(ATOMIC_OPS_LIBS) libgc_la_DEPENDENCIES = @addobjs@ libgc_la_LDFLAGS = $(extra_ldflags_libgc) -version-info 1:3:0 -no-undefined -EXTRA_libgc_la_SOURCES = src/ia64_save_regs_in_stack.s src/sparc_mach_dep.S \ - src/sparc_netbsd_mach_dep.s src/sparc_sunos4_mach_dep.s +EXTRA_libgc_la_SOURCES = ia64_save_regs_in_stack.s sparc_mach_dep.S \ + sparc_netbsd_mach_dep.s sparc_sunos4_mach_dep.s # C++ Interface diff --git a/Makefile.direct b/Makefile.direct index d64598b..8ab80e8 100644 --- a/Makefile.direct +++ b/Makefile.direct @@ -108,8 +108,8 @@ SRCS= $(CSRCS) \ include/gc_config_macros.h include/private/pthread_support.h \ include/private/pthread_stop_world.h include/private/darwin_semaphore.h \ include/private/darwin_stop_world.h include/private/thread_local_alloc.h \ - src/ia64_save_regs_in_stack.s src/sparc_mach_dep.S \ - src/sparc_netbsd_mach_dep.s src/sparc_sunos4_mach_dep.s $(CORD_SRCS) + ia64_save_regs_in_stack.s sparc_mach_dep.S \ + sparc_netbsd_mach_dep.s sparc_sunos4_mach_dep.s $(CORD_SRCS) DOC_FILES= README.QUICK TODO doc/README.Mac doc/README.OS2 \ doc/README.amiga doc/README.cords doc/debugging.html \ @@ -309,17 +309,17 @@ dyn_test: # gcc -shared -Wl,-soname=libgc.so.0 -o libgc.so.0 $(LIBOBJS) dyn_load.lo # touch liblinuxgc.so -mach_dep.o: $(srcdir)/mach_dep.c $(srcdir)/src/sparc_mach_dep.S \ - $(srcdir)/src/sparc_sunos4_mach_dep.s \ - $(srcdir)/src/ia64_save_regs_in_stack.s \ - $(srcdir)/src/sparc_netbsd_mach_dep.s $(UTILS) +mach_dep.o: $(srcdir)/mach_dep.c $(srcdir)/sparc_mach_dep.S \ + $(srcdir)/sparc_sunos4_mach_dep.s \ + $(srcdir)/ia64_save_regs_in_stack.s \ + $(srcdir)/sparc_netbsd_mach_dep.s $(UTILS) rm -f mach_dep.o - ./if_mach SPARC SOLARIS $(CC) -c -o mach_dep2.o $(srcdir)/src/sparc_mach_dep.S - ./if_mach SPARC OPENBSD $(AS) -o mach_dep2.o $(srcdir)/src/sparc_sunos4_mach_dep.s - ./if_mach SPARC NETBSD $(AS) -o mach_dep2.o $(srcdir)/src/sparc_netbsd_mach_dep.s + ./if_mach SPARC SOLARIS $(CC) -c -o mach_dep2.o $(srcdir)/sparc_mach_dep.S + ./if_mach SPARC OPENBSD $(AS) -o mach_dep2.o $(srcdir)/sparc_sunos4_mach_dep.s + ./if_mach SPARC NETBSD $(AS) -o mach_dep2.o $(srcdir)/sparc_netbsd_mach_dep.s ./if_mach SPARC "" $(CC) -c -o mach_dep1.o $(SPECIALCFLAGS) $(srcdir)/mach_dep.c ./if_mach SPARC "" ld -r -o mach_dep.o mach_dep1.o mach_dep2.o - ./if_mach IA64 "" as $(AS_ABI_FLAG) -o ia64_save_regs_in_stack.o $(srcdir)/src/ia64_save_regs_in_stack.s + ./if_mach IA64 "" as $(AS_ABI_FLAG) -o ia64_save_regs_in_stack.o $(srcdir)/ia64_save_regs_in_stack.s ./if_mach IA64 "" $(CC) -c -o mach_dep1.o $(SPECIALCFLAGS) $(srcdir)/mach_dep.c ./if_mach IA64 "" ld -r -o mach_dep.o mach_dep1.o ia64_save_regs_in_stack.o ./if_not_there mach_dep.o $(CC) -c $(SPECIALCFLAGS) $(srcdir)/mach_dep.c diff --git a/ia64_save_regs_in_stack.s b/ia64_save_regs_in_stack.s new file mode 100644 index 0000000..2b81edf --- /dev/null +++ b/ia64_save_regs_in_stack.s @@ -0,0 +1,11 @@ + .text + .align 16 + .global GC_save_regs_in_stack + .proc GC_save_regs_in_stack +GC_save_regs_in_stack: + .body + flushrs + ;; + mov r8=ar.bsp + br.ret.sptk.few rp + .endp GC_save_regs_in_stack diff --git a/sparc_mach_dep.S b/sparc_mach_dep.S new file mode 100644 index 0000000..d204dc4 --- /dev/null +++ b/sparc_mach_dep.S @@ -0,0 +1,61 @@ +! SPARCompiler 3.0 and later apparently no longer handles +! asm outside functions. So we need a separate .s file +! This is only set up for SunOS 5, not SunOS 4. +! Assumes this is called before the stack contents are +! examined. + + .seg "text" + .globl GC_save_regs_in_stack +GC_save_regs_in_stack: +#if defined(__arch64__) || defined(__sparcv9) + save %sp,-128,%sp + flushw + ret + restore %sp,2047+128,%o0 +#else /* 32 bit SPARC */ + ta 0x3 ! ST_FLUSH_WINDOWS + mov %sp,%o0 + retl + nop +#endif /* 32 bit SPARC */ +.GC_save_regs_in_stack_end: + .size GC_save_regs_in_stack,.GC_save_regs_in_stack_end-GC_save_regs_in_stack + +! GC_clear_stack_inner(arg, limit) clears stack area up to limit and +! returns arg. Stack clearing is crucial on SPARC, so we supply +! an assembly version that s more careful. Assumes limit is hotter +! than sp, and limit is 8 byte aligned. + .globl GC_clear_stack_inner +GC_clear_stack_inner: +#if defined(__arch64__) || defined(__sparcv9) + mov %sp,%o2 ! Save sp + add %sp,2047-8,%o3 ! p = sp+bias-8 + add %o1,-2047-192,%sp ! Move sp out of the way, + ! so that traps still work. + ! Includes some extra words + ! so we can be sloppy below. +loop: + stx %g0,[%o3] ! *(long *)p = 0 + cmp %o3,%o1 + bgu,pt %xcc, loop ! if (p > limit) goto loop + add %o3,-8,%o3 ! p -= 8 (delay slot) + retl + mov %o2,%sp ! Restore sp., delay slot +#else /* 32 bit SPARC */ + mov %sp,%o2 ! Save sp + add %sp,-8,%o3 ! p = sp-8 + clr %g1 ! [g0,g1] = 0 + add %o1,-0x60,%sp ! Move sp out of the way, + ! so that traps still work. + ! Includes some extra words + ! so we can be sloppy below. +loop: + std %g0,[%o3] ! *(long long *)p = 0 + cmp %o3,%o1 + bgu loop ! if (p > limit) goto loop + add %o3,-8,%o3 ! p -= 8 (delay slot) + retl + mov %o2,%sp ! Restore sp., delay slot +#endif /* 32 bit SPARC */ +.GC_clear_stack_inner_end: + .size GC_clear_stack_inner,.GC_clear_stack_inner_end-GC_clear_stack_inner diff --git a/sparc_netbsd_mach_dep.s b/sparc_netbsd_mach_dep.s new file mode 100644 index 0000000..14feb15 --- /dev/null +++ b/sparc_netbsd_mach_dep.s @@ -0,0 +1,34 @@ +! SPARCompiler 3.0 and later apparently no longer handles +! asm outside functions. So we need a separate .s file +! This is only set up for SunOS 4. +! Assumes this is called before the stack contents are +! examined. + +#include "machine/asm.h" + + .seg "text" + .globl _C_LABEL(GC_save_regs_in_stack) + .globl _C_LABEL(GC_push_regs) +_C_LABEL(GC_save_regs_in_stack): +_C_LABEL(GC_push_regs): + ta 0x3 ! ST_FLUSH_WINDOWS + mov %sp,%o0 + retl + nop + + .globl _C_LABEL(GC_clear_stack_inner) +_C_LABEL(GC_clear_stack_inner): + mov %sp,%o2 ! Save sp + add %sp,-8,%o3 ! p = sp-8 + clr %g1 ! [g0,g1] = 0 + add %o1,-0x60,%sp ! Move sp out of the way, + ! so that traps still work. + ! Includes some extra words + ! so we can be sloppy below. +loop: + std %g0,[%o3] ! *(long long *)p = 0 + cmp %o3,%o1 + bgu loop ! if (p > limit) goto loop + add %o3,-8,%o3 ! p -= 8 (delay slot) + retl + mov %o2,%sp ! Restore sp., delay slot diff --git a/sparc_sunos4_mach_dep.s b/sparc_sunos4_mach_dep.s new file mode 100644 index 0000000..923f5ea --- /dev/null +++ b/sparc_sunos4_mach_dep.s @@ -0,0 +1,32 @@ +! SPARCompiler 3.0 and later apparently no longer handles +! asm outside functions. So we need a separate .s file +! This is only set up for SunOS 4. +! Assumes this is called before the stack contents are +! examined. + + .seg "text" + .globl _GC_save_regs_in_stack + .globl _GC_push_regs +_GC_save_regs_in_stack: +_GC_push_regs: + ta 0x3 ! ST_FLUSH_WINDOWS + mov %sp,%o0 + retl + nop + + .globl _GC_clear_stack_inner +_GC_clear_stack_inner: + mov %sp,%o2 ! Save sp + add %sp,-8,%o3 ! p = sp-8 + clr %g1 ! [g0,g1] = 0 + add %o1,-0x60,%sp ! Move sp out of the way, + ! so that traps still work. + ! Includes some extra words + ! so we can be sloppy below. +loop: + std %g0,[%o3] ! *(long long *)p = 0 + cmp %o3,%o1 + bgu loop ! if (p > limit) goto loop + add %o3,-8,%o3 ! p -= 8 (delay slot) + retl + mov %o2,%sp ! Restore sp., delay slot diff --git a/src/ia64_save_regs_in_stack.s b/src/ia64_save_regs_in_stack.s deleted file mode 100644 index 2b81edf..0000000 --- a/src/ia64_save_regs_in_stack.s +++ /dev/null @@ -1,11 +0,0 @@ - .text - .align 16 - .global GC_save_regs_in_stack - .proc GC_save_regs_in_stack -GC_save_regs_in_stack: - .body - flushrs - ;; - mov r8=ar.bsp - br.ret.sptk.few rp - .endp GC_save_regs_in_stack diff --git a/src/sparc_mach_dep.S b/src/sparc_mach_dep.S deleted file mode 100644 index d204dc4..0000000 --- a/src/sparc_mach_dep.S +++ /dev/null @@ -1,61 +0,0 @@ -! SPARCompiler 3.0 and later apparently no longer handles -! asm outside functions. So we need a separate .s file -! This is only set up for SunOS 5, not SunOS 4. -! Assumes this is called before the stack contents are -! examined. - - .seg "text" - .globl GC_save_regs_in_stack -GC_save_regs_in_stack: -#if defined(__arch64__) || defined(__sparcv9) - save %sp,-128,%sp - flushw - ret - restore %sp,2047+128,%o0 -#else /* 32 bit SPARC */ - ta 0x3 ! ST_FLUSH_WINDOWS - mov %sp,%o0 - retl - nop -#endif /* 32 bit SPARC */ -.GC_save_regs_in_stack_end: - .size GC_save_regs_in_stack,.GC_save_regs_in_stack_end-GC_save_regs_in_stack - -! GC_clear_stack_inner(arg, limit) clears stack area up to limit and -! returns arg. Stack clearing is crucial on SPARC, so we supply -! an assembly version that s more careful. Assumes limit is hotter -! than sp, and limit is 8 byte aligned. - .globl GC_clear_stack_inner -GC_clear_stack_inner: -#if defined(__arch64__) || defined(__sparcv9) - mov %sp,%o2 ! Save sp - add %sp,2047-8,%o3 ! p = sp+bias-8 - add %o1,-2047-192,%sp ! Move sp out of the way, - ! so that traps still work. - ! Includes some extra words - ! so we can be sloppy below. -loop: - stx %g0,[%o3] ! *(long *)p = 0 - cmp %o3,%o1 - bgu,pt %xcc, loop ! if (p > limit) goto loop - add %o3,-8,%o3 ! p -= 8 (delay slot) - retl - mov %o2,%sp ! Restore sp., delay slot -#else /* 32 bit SPARC */ - mov %sp,%o2 ! Save sp - add %sp,-8,%o3 ! p = sp-8 - clr %g1 ! [g0,g1] = 0 - add %o1,-0x60,%sp ! Move sp out of the way, - ! so that traps still work. - ! Includes some extra words - ! so we can be sloppy below. -loop: - std %g0,[%o3] ! *(long long *)p = 0 - cmp %o3,%o1 - bgu loop ! if (p > limit) goto loop - add %o3,-8,%o3 ! p -= 8 (delay slot) - retl - mov %o2,%sp ! Restore sp., delay slot -#endif /* 32 bit SPARC */ -.GC_clear_stack_inner_end: - .size GC_clear_stack_inner,.GC_clear_stack_inner_end-GC_clear_stack_inner diff --git a/src/sparc_netbsd_mach_dep.s b/src/sparc_netbsd_mach_dep.s deleted file mode 100644 index 14feb15..0000000 --- a/src/sparc_netbsd_mach_dep.s +++ /dev/null @@ -1,34 +0,0 @@ -! SPARCompiler 3.0 and later apparently no longer handles -! asm outside functions. So we need a separate .s file -! This is only set up for SunOS 4. -! Assumes this is called before the stack contents are -! examined. - -#include "machine/asm.h" - - .seg "text" - .globl _C_LABEL(GC_save_regs_in_stack) - .globl _C_LABEL(GC_push_regs) -_C_LABEL(GC_save_regs_in_stack): -_C_LABEL(GC_push_regs): - ta 0x3 ! ST_FLUSH_WINDOWS - mov %sp,%o0 - retl - nop - - .globl _C_LABEL(GC_clear_stack_inner) -_C_LABEL(GC_clear_stack_inner): - mov %sp,%o2 ! Save sp - add %sp,-8,%o3 ! p = sp-8 - clr %g1 ! [g0,g1] = 0 - add %o1,-0x60,%sp ! Move sp out of the way, - ! so that traps still work. - ! Includes some extra words - ! so we can be sloppy below. -loop: - std %g0,[%o3] ! *(long long *)p = 0 - cmp %o3,%o1 - bgu loop ! if (p > limit) goto loop - add %o3,-8,%o3 ! p -= 8 (delay slot) - retl - mov %o2,%sp ! Restore sp., delay slot diff --git a/src/sparc_sunos4_mach_dep.s b/src/sparc_sunos4_mach_dep.s deleted file mode 100644 index 923f5ea..0000000 --- a/src/sparc_sunos4_mach_dep.s +++ /dev/null @@ -1,32 +0,0 @@ -! SPARCompiler 3.0 and later apparently no longer handles -! asm outside functions. So we need a separate .s file -! This is only set up for SunOS 4. -! Assumes this is called before the stack contents are -! examined. - - .seg "text" - .globl _GC_save_regs_in_stack - .globl _GC_push_regs -_GC_save_regs_in_stack: -_GC_push_regs: - ta 0x3 ! ST_FLUSH_WINDOWS - mov %sp,%o0 - retl - nop - - .globl _GC_clear_stack_inner -_GC_clear_stack_inner: - mov %sp,%o2 ! Save sp - add %sp,-8,%o3 ! p = sp-8 - clr %g1 ! [g0,g1] = 0 - add %o1,-0x60,%sp ! Move sp out of the way, - ! so that traps still work. - ! Includes some extra words - ! so we can be sloppy below. -loop: - std %g0,[%o3] ! *(long long *)p = 0 - cmp %o3,%o1 - bgu loop ! if (p > limit) goto loop - add %o3,-8,%o3 ! p -= 8 (delay slot) - retl - mov %o2,%sp ! Restore sp., delay slot -- 1.7.10.4
shibajee/buildroot
package/bdwgc/0003-Revert-Move-asm-machine-dependent-files-to-src-folde.patch
patch
mit
14,286
From f8ecc7fb09adf34a23d324f373e667c81311fc1c Mon Sep 17 00:00:00 2001 From: Romain Naour <romain.naour@gmail.com> Date: Sat, 6 Aug 2016 23:24:35 +0200 Subject: [PATCH] configure: match uclinux pattern bdwgc does not recognize "uclinux" as a valid OS part of the target tuple which is used by some arm cortex-M toolchains. Fixes: http://autobuild.buildroot.net/results/94f/94fbc1e5afe183e5b071d1e869b2d780025389e2 Signed-off-by: Romain Naour <romain.naour@gmail.com> --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index b1ce2b2..a69d101 100644 --- a/configure.ac +++ b/configure.ac @@ -186,7 +186,7 @@ case "$THREADS" in AC_DEFINE(THREAD_LOCAL_ALLOC) AC_MSG_WARN("Explicit GC_INIT() calls may be required."); ;; - *-*-linux*) + *-*-*linux*) AC_DEFINE(GC_LINUX_THREADS) AC_DEFINE(_REENTRANT) ;; -- 2.5.5
shibajee/buildroot
package/bdwgc/0004-configure-match-uclinux-pattern.patch
patch
mit
937
config BR2_PACKAGE_BDWGC bool "bdwgc" depends on BR2_PACKAGE_LIBATOMIC_OPS_ARCH_SUPPORTS select BR2_PACKAGE_LIBATOMIC_OPS help The Boehm-Demers-Weiser conservative garbage collector can be used as a garbage collecting replacement for C 'malloc' or C++ 'new'. http://www.hboehm.info/gc/
shibajee/buildroot
package/bdwgc/Config.in
in
mit
303
# Locally computed sha256 63320ad7c45460e4a40e03f5aa4c6893783f21a16416c3282b994f933312afa2 gc-7.4.2.tar.gz
shibajee/buildroot
package/bdwgc/bdwgc.hash
hash
mit
107
################################################################################ # # bdwgc # ################################################################################ BDWGC_VERSION = 7.4.2 BDWGC_SOURCE = gc-$(BDWGC_VERSION).tar.gz BDWGC_SITE = http://www.hboehm.info/gc/gc_source BDWGC_INSTALL_STAGING = YES BDWGC_LICENSE = bdwgc license BDWGC_LICENSE_FILES = README.QUICK BDWGC_DEPENDENCIES = libatomic_ops host-pkgconf HOST_BDWGC_DEPENDENCIES = host-libatomic_ops host-pkgconf # The libtool shipped with the package is bogus and generates some # -L/usr/lib flags. It uses a version not supported by Buildroot # libtool patches, so autoreconfiguring the packages is the easiest # solution. BDWGC_AUTORECONF = YES BDWGC_CFLAGS = $(TARGET_CFLAGS) ifeq ($(BR2_sparc),y) BDWGC_CFLAGS += -DAO_NO_SPARC_V9 endif ifeq ($(BR2_STATIC_LIBS),y) BDWGC_CFLAGS += -DGC_NO_DLOPEN endif # Ensure we use the system libatomic_ops, and not the internal one. BDWGC_CONF_OPTS = --with-libatomic-ops=yes CFLAGS="$(BDWGC_CFLAGS)" HOST_BDWGC_CONF_OPTS = --with-libatomic-ops=yes $(eval $(autotools-package)) $(eval $(host-autotools-package))
shibajee/buildroot
package/bdwgc/bdwgc.mk
mk
mit
1,131
Makefile.am: Only compile/link cppglue.cxx if --with-cplusplus is used Bloats libbeecrypt for no use and breaks build on systems without a C++ compiler. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk> --- Makefile.am | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) Index: beecrypt-4.2.1/Makefile.am =================================================================== --- beecrypt-4.2.1.orig/Makefile.am +++ beecrypt-4.2.1/Makefile.am @@ -62,7 +62,12 @@ lib_LTLIBRARIES = libbeecrypt.la -libbeecrypt_la_SOURCES = aes.c base64.c beecrypt.c blockmode.c blockpad.c blowfish.c dhies.c dldp.c dlkp.c dlpk.c dlsvdp-dh.c dsa.c elgamal.c endianness.c entropy.c fips186.c hmac.c hmacmd5.c hmacsha1.c hmacsha224.c hmacsha256.c md4.c md5.c hmacsha384.c hmacsha512.c memchunk.c mp.c mpbarrett.c mpnumber.c mpprime.c mtprng.c pkcs1.c pkcs12.c ripemd128.c ripemd160.c ripemd256.c ripemd320.c rsa.c rsakp.c rsapk.c sha1.c sha224.c sha256.c sha384.c sha512.c sha2k32.c sha2k64.c timestamp.c cppglue.cxx +libbeecrypt_la_SOURCES = aes.c base64.c beecrypt.c blockmode.c blockpad.c blowfish.c dhies.c dldp.c dlkp.c dlpk.c dlsvdp-dh.c dsa.c elgamal.c endianness.c entropy.c fips186.c hmac.c hmacmd5.c hmacsha1.c hmacsha224.c hmacsha256.c md4.c md5.c hmacsha384.c hmacsha512.c memchunk.c mp.c mpbarrett.c mpnumber.c mpprime.c mtprng.c pkcs1.c pkcs12.c ripemd128.c ripemd160.c ripemd256.c ripemd320.c rsa.c rsakp.c rsapk.c sha1.c sha224.c sha256.c sha384.c sha512.c sha2k32.c sha2k64.c timestamp.c + +if WITH_CPLUSPLUS +libbeecrypt_la_SOURCES += cppglue.cxx +endif + libbeecrypt_la_DEPENDENCIES = $(BEECRYPT_OBJECTS) libbeecrypt_la_LIBADD = blowfishopt.lo mpopt.lo sha1opt.lo $(OPENMP_LIBS) libbeecrypt_la_LDFLAGS = -no-undefined -version-info $(LIBBEECRYPT_LT_CURRENT):$(LIBBEECRYPT_LT_REVISION):$(LIBBEECRYPT_LT_AGE)
shibajee/buildroot
package/beecrypt/0001-cppglue.cxx-cplusplus-only.patch
patch
mit
1,825
configure: Use AC_COMPILE_IFELSE for ICU check for cross compilation compat AC_RUN_IFELSE doesn't work when cross compiling, but we can do the check in the preprocessor instead, so use AC_COMPILE_IFELSE instead. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk> --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Index: beecrypt-4.2.1/configure.ac =================================================================== --- beecrypt-4.2.1.orig/configure.ac +++ beecrypt-4.2.1/configure.ac @@ -295,13 +295,13 @@ if test "$ac_with_cplusplus" = yes; then AC_MSG_CHECKING([for IBM's ICU library version >= 2.8]) AC_LANG_PUSH(C) - AC_RUN_IFELSE([ + AC_COMPILE_IFELSE([ AC_LANG_PROGRAM([[#include <unicode/uversion.h>]],[[ #if U_ICU_VERSION_MAJOR_NUM < 2 - exit(1); + #error too old #elif U_ICU_VERSION_MAJOR_NUM == 2 # if U_ICU_VERSION_MINOR_NUM < 8 - exit(1); + #error too old # else exit(0); # endif
shibajee/buildroot
package/beecrypt/0002-icu-check-cross-compile.patch
patch
mit
1,003
Fix build with BR2_ENABLE_DEBUG=yes, no need for expert mode anymore Otherwise configure issues this error message: configure: error: --enable-debug cannot be used in conjunction with --enable-expert-mode Downloaded from Gentoo: http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/dev-libs/beecrypt/files/beecrypt-4.2.1-build-system.patch?revision=1.2&view=markup This patch also removes the hard-coded CFLAGS provided by beecrypt in favour of the CFLAGS provided by buildroot. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> --- beecrypt-4.2.1/configure.ac +++ beecrypt-4.2.1/configure.ac @@ -11,7 +11,7 @@ # Checks for package options AC_ARG_ENABLE(expert-mode, [ --enable-expert-mode follow user-defined CFLAGS settings [[default=no]]],[ - ac_enable_expert_mode=yes + ac_enable_expert_mode=$enableval ],[ if test "X$CFLAGS" != "X"; then echo "enabling expert mode" @@ -25,7 +25,7 @@ if test "$ac_enable_expert_mode" = yes; then AC_MSG_ERROR([--enable-debug cannot be used in conjunction with --enable-expert-mode]) fi - ac_enable_debug=yes + ac_enable_debug=$enableval ],[ ac_enable_debug=no ]) @@ -456,7 +456,7 @@ ac_cv_python_include="-I`$PYTHON -c 'import distutils.sysconfig; print distutils.sysconfig.get_python_inc()'`" ]) AC_CACHE_CHECK([where to install python libraries], ac_cv_python_libdir, [ - ac_cv_python_libdir=`$PYTHON -c 'import distutils.sysconfig; print distutils.sysconfig.get_python_lib()'` + ac_cv_python_libdir=`$PYTHON -c 'import distutils.sysconfig; print distutils.sysconfig.get_python_lib(1, 0)'` ]) fi fi --- beecrypt-4.2.1/acinclude.m4 +++ beecrypt-4.2.1/acinclude.m4 @@ -498,15 +498,6 @@ AC_DEFUN([BEE_GNU_CC],[ AC_SUBST(OPENMP_LIBS,"-lgomp") fi case $bc_target_arch in - x86_64 | athlon64 | athlon-fx | k8 | opteron | em64t | nocona) - CC="$CC -m64" - ;; - i[[3456]]86 | \ - pentium* | \ - athlon*) - CC="$CC -m32" - CCAS="$CCAS -m32" - ;; ia64) case $target_os in # HP/UX on Itanium needs to be told that a long is 64-bit! @@ -525,17 +516,8 @@ AC_DEFUN([BEE_GNU_CC],[ aix*) CC="$CC -maix64" ;; - linux*) - CC="$CC -m64" - ;; esac ;; - sparc | sparcv8*) - CC="$CC -m32" - ;; - sparc64 | sparcv9*) - CC="$CC -m64" - ;; esac # Certain platforms needs special flags for multi-threaded code if test "$ac_enable_threads" = yes; then @@ -646,14 +646,6 @@ dnl BEE_GNU_CXX AC_DEFUN([BEE_GNU_CXX],[ AC_REQUIRE([AC_PROG_CXX]) case $bc_target_arch in - x86_64 | athlon64 | athlon-fx | k8 | opteron | em64t | nocona | core2) - CXX="$CXX -m64" - ;; - i[[3456]]86 | \ - pentium* | \ - athlon*) - CXX="$CXX -m32" - ;; ia64) case $target_os in # HP/UX on Itanium needs to be told that a long is 64-bit! @@ -672,17 +664,8 @@ AC_DEFUN([BEE_GNU_CXX],[ aix*) CXX="$CXX -maix64" ;; - linux*) - CXX="$CXX -m64" - ;; esac ;; - sparc | sparcv8*) - CXX="$CXX -m32" - ;; - sparc64 | sparcv9*) - CXX="$CXX -m64" - ;; esac # Certain platforms needs special flags for multi-threaded code if test "$ac_enable_threads" = yes; then --- beecrypt-4.2.1/java/Makefile.am +++ beecrypt-4.2.1/java/Makefile.am @@ -26,7 +26,7 @@ INCLUDES = -I$(top_srcdir)/include -libaltdir=$(prefix)/lib@LIBALT@ +libaltdir=$(libdir) libalt_LTLIBRARIES = libbeecrypt_java.la --- beecrypt-4.2.1/acinclude.m4 +++ beecrypt-4.2.1/acinclude.m4 @@ -1589,20 +1589,5 @@ AC_SUBST(TYPEDEF_BC_THREADID_T,$bc_typedef_bc_threadid_t) ]) - -AH_BOTTOM([ -#if ENABLE_THREADS -# ifndef _REENTRANT -# define _REENTRANT -# endif -# if LINUX -# define _LIBC_REENTRANT -# endif -#else -# ifdef _REENTRANT -# undef _REENTRANT -# endif -#endif -]) dnl BEE_THREAD_LOCAL_STORAGE @@ -1623,7 +1609,5 @@ ]) AH_BOTTOM([ -#if !ENABLE_THREAD_LOCAL_STORAGE -# define __thread -#endif +#include "config.threads.h" ]) --- beecrypt-4.2.1/config.threads.h +++ beecrypt-4.2.1/config.threads.h @@ -0,0 +1,16 @@ +#if ENABLE_THREADS +# ifndef _REENTRANT +# define _REENTRANT +# endif +# if LINUX +# define _LIBC_REENTRANT +# endif +#else +# ifdef _REENTRANT +# undef _REENTRANT +# endif +#endif + +#if !ENABLE_THREAD_LOCAL_STORAGE +# define __thread +#endif
shibajee/buildroot
package/beecrypt/0003-build-system.patch
patch
mit
4,336
Really fixes gcc-4.7 related compile error: ../../include/beecrypt/c++/util/AbstractSet.h:59:27: error: 'containsAll' was not declared in this scope, and no declarations were found by argument-dependent lookup at the point of instantiation [-fpermissive] Downloaded from upstream bugtracker: http://sourceforge.net/p/beecrypt/patches/10/ Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> --- a/include/beecrypt/c++/util/AbstractSet.h +++ b/include/beecrypt/c++/util/AbstractSet.h @@ -56,7 +56,7 @@ if (c->size() != size()) return false; - return containsAll(*c); + return this->containsAll(*c); } return false; }
shibajee/buildroot
package/beecrypt/0004-gcc-4.7.patch
patch
mit
656
comment "beecrypt needs a toolchain w/ threads" depends on !BR2_TOOLCHAIN_HAS_THREADS config BR2_PACKAGE_BEECRYPT bool "beecrypt" depends on BR2_TOOLCHAIN_HAS_THREADS help Beecrypt is a general-purpose cryptography library. http://beecrypt.sf.net if BR2_PACKAGE_BEECRYPT config BR2_PACKAGE_BEECRYPT_CPP bool "C++ support" depends on BR2_INSTALL_LIBSTDCPP depends on BR2_USE_WCHAR # icu depends on !BR2_BINFMT_FLAT # icu depends on !BR2_STATIC_LIBS select BR2_PACKAGE_ICU help Enable C++ support. This pulls in the (large) icu package. comment "C++ support needs a toolchain w/ C++, wchar, dynamic libraries" depends on !BR2_BINFMT_FLAT depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR \ || BR2_STATIC_LIBS endif # BR2_PACKAGE_BEECRYPT
shibajee/buildroot
package/beecrypt/Config.in
in
mit
768
# Locally computed: sha256 286f1f56080d1a6b1d024003a5fa2158f4ff82cae0c6829d3c476a4b5898c55d beecrypt-4.2.1.tar.gz
shibajee/buildroot
package/beecrypt/beecrypt.hash
hash
mit
116
################################################################################ # # beecrypt # ################################################################################ BEECRYPT_VERSION = 4.2.1 BEECRYPT_SITE = http://downloads.sourceforge.net/project/beecrypt/beecrypt/$(BEECRYPT_VERSION) BEECRYPT_AUTORECONF = YES BEECRYPT_INSTALL_STAGING = YES BEECRYPT_LICENSE = LGPLv2.1+ BEECRYPT_LICENSE_FILES = COPYING.LIB BEECRYPT_CONF_OPTS = \ --disable-expert-mode \ --without-java \ --without-python \ --disable-openmp # disable optimized m68k assembly as it doesn't compile for coldfire ifeq ($(BR2_m68k_cf),y) BEECRYPT_CONF_OPTS += --enable-debug endif # arm asm optimization doesn't work for thumb-only ifeq ($(BR2_arm):$(BR2_ARM_CPU_HAS_ARM),y:) BEECRYPT_CONF_OPTS += --enable-debug endif ifeq ($(BR2_PACKAGE_BEECRYPT_CPP),y) BEECRYPT_DEPENDENCIES += icu BEECRYPT_CONF_OPTS += --with-cplusplus else BEECRYPT_CONF_OPTS += --without-cplusplus # automake/libtool uses the C++ compiler to link libbeecrypt because of # (the optional) cppglue.cxx. Force it to use the C compiler instead. define BEECRYPT_LINK_WITH_CC $(SED) 's/--tag=CXX/--tag=CC/g' $(@D)/Makefile endef BEECRYPT_POST_CONFIGURE_HOOKS += BEECRYPT_LINK_WITH_CC endif $(eval $(autotools-package))
shibajee/buildroot
package/beecrypt/beecrypt.mk
mk
mit
1,273
[PATCH] don't force -Werror in CFLAGS Released software shouldn't get built with -Werror. Signed-of-by: Peter Korsgaard <jacmet@sunsite.dk> --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: libomxil-bellagio-0.9.3/configure.ac =================================================================== --- libomxil-bellagio-0.9.3.orig/configure.ac +++ libomxil-bellagio-0.9.3/configure.ac @@ -5,7 +5,7 @@ AC_PREREQ([2.59]) AC_CONFIG_HEADERS([config.h]) -CFLAGS="${CFLAGS} -Wall -Werror" +CFLAGS="${CFLAGS} -Wall" ################################################################################ # Set the shared versioning info, according to section 6.3 of the libtool info #
shibajee/buildroot
package/bellagio/0001-drop-werror.patch
patch
mit
711
When libomxdynamicloader.so is loaded, it complains that RM_Deinit can't be resolved. Link explicitly against omxil-bellagio so that ld.so can find the reference. Signed-off-by: Qais Yousef <qais.yousef@imgtec.com> --- bellagio-0.9.3/src/dynamic_loader/Makefile.am.old 2012-03-23 15:07:47.379021034 +0000 +++ bellagio-0.9.3/src/dynamic_loader/Makefile.am 2012-03-23 15:08:47.563034818 +0000 @@ -3,7 +3,7 @@ omxdynamicloader_LTLIBRARIES = libomxdynamicloader.la libomxdynamicloader_la_SOURCES = ste_dynamic_component_loader.c ste_dynamic_component_loader.h -libomxdynamicloader_la_LDFLAGS = +libomxdynamicloader_la_LDFLAGS = -lomxil-bellagio -L$(abs_top_srcdir)/src/.libs libomxdynamicloader_la_CFLAGS = -I$(top_srcdir)/include \ -I$(top_srcdir)/src \ -I$(top_srcdir)/src/base \
shibajee/buildroot
package/bellagio/0002-dynamicloader-linking.patch
patch
mit
793
Fix dependency issue to allow parallel build Signed-off-by: Qais Yousef <qais.yousef@imgtec.com> Index: bellagio-0.9.3/src/Makefile.am =================================================================== --- bellagio-0.9.3.orig/src/Makefile.am +++ bellagio-0.9.3/src/Makefile.am @@ -8,6 +8,7 @@ omxregister_bellagio_SOURCES = omxregist omxregister_bellagio_CFLAGS = -DOMXILCOMPONENTSPATH=\"$(plugindir)/\" \ -I$(top_srcdir)/include omxregister_bellagio_LDFLAGS = -lomxil-bellagio -L$(builddir) +omxregister_bellagio_DEPENDENCIES = libomxil-bellagio.la lib_LTLIBRARIES = libomxil-bellagio.la libomxil_bellagio_la_SOURCES = component_loader.h \
shibajee/buildroot
package/bellagio/0003-parallel-build.patch
patch
mit
660
We always access globalComponentList[] at indexComponent=-1 which causes a segfault. Use i as the index instead. Signed-off-by: Qais Yousef <qais.yousef@imgtec.com> --- bellagio-0.9.3/src/omx_reference_resource_manager.c.old 2012-03-13 10:15:25.743940980 +0000 +++ bellagio-0.9.3/src/omx_reference_resource_manager.c 2012-03-13 10:18:02.201971009 +0000 @@ -485,7 +485,6 @@ OMX_ERRORTYPE RM_removeFromWaitForResource(OMX_COMPONENTTYPE *openmaxStandComp) { omx_base_component_PrivateType* omx_base_component_Private; int i = 0; - int indexComponent = -1; DEBUG(DEB_LEV_FUNCTION_NAME, "In %s\n", __func__); omx_base_component_Private = (omx_base_component_PrivateType*)openmaxStandComp->pComponentPrivate; @@ -493,16 +492,13 @@ while(listOfcomponentRegistered[i].component_name != NULL ) { if (!strcmp(listOfcomponentRegistered[i].component_name, omx_base_component_Private->name)) { // found component in the list of the resource manager - removeElemFromList(&globalComponentList[indexComponent], openmaxStandComp); - break; + removeElemFromList(&globalComponentList[i], openmaxStandComp); + DEBUG(DEB_LEV_FUNCTION_NAME, "Out of %s\n", __func__); + return OMX_ErrorNone; } i++; } - if (indexComponent <0) { - // No resource to be handled - DEBUG(DEB_LEV_ERR, "In %s No resource to be handled\n", __func__); - return OMX_ErrorNone; - } - DEBUG(DEB_LEV_FUNCTION_NAME, "Out of %s\n", __func__); + // No resource to be handled + DEBUG(DEB_LEV_ERR, "In %s No resource to be handled\n", __func__); return OMX_ErrorNone; }
shibajee/buildroot
package/bellagio/0004-segfault-on-removeFromWaitResource.patch
patch
mit
1,560
config BR2_PACKAGE_BELLAGIO bool "bellagio" depends on BR2_INSTALL_LIBSTDCPP depends on BR2_TOOLCHAIN_HAS_THREADS depends on !BR2_STATIC_LIBS select BR2_PACKAGE_HAS_LIBOPENMAX help Bellagio is an opensource implementation of the OpenMAX IL API. OpenMAX Integration Layer (IL) is a standard API to access Multimedia Components on mobile platforms. It has been defined by the Khronos group. By means of the OpenMAX IL API, multimedia frameworks can access hardware accelerators on platforms that provide it. http://omxil.sourceforge.net/ if BR2_PACKAGE_BELLAGIO config BR2_PACKAGE_PROVIDES_LIBOPENMAX default "bellagio" endif comment "bellagio needs a toolchain w/ C++, threads, dynamic library" depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
shibajee/buildroot
package/bellagio/Config.in
in
mit
818
# Locally computed: sha256 593c0729c8ef8c1467b3bfefcf355ec19a46dd92e31bfc280e17d96b0934d74c libomxil-bellagio-0.9.3.tar.gz
shibajee/buildroot
package/bellagio/bellagio.hash
hash
mit
125
################################################################################ # # bellagio # ################################################################################ BELLAGIO_VERSION = 0.9.3 BELLAGIO_SOURCE = libomxil-bellagio-$(BELLAGIO_VERSION).tar.gz BELLAGIO_SITE = http://downloads.sourceforge.net/project/omxil/omxil/Bellagio%20$(BELLAGIO_VERSION) BELLAGIO_AUTORECONF = YES BELLAGIO_INSTALL_STAGING = YES BELLAGIO_LICENSE = LGPLv2.1+ BELLAGIO_LICENSE_FILES = COPYING BELLAGIO_PROVIDES = libopenmax $(eval $(autotools-package))
shibajee/buildroot
package/bellagio/bellagio.mk
mk
mit
546
Some older toolchains do not recognize c11 as a valid standard. Since the code actually builds well with c99, use that instead. The only two non-standard features used are // comments and for(int i ...) declarations in C. Signed-off-by: Alex Suykov <alex.suykov@gmail.com> --- a/SConstruct +++ b/SConstruct @@ -9,9 +9,8 @@ mydir = os.getcwd() #Set default C++ building flags for both libraries and executables default_env = Environment(ENV = os.environ) default_env.Append(CPPPATH = [mydir + '/include']) -default_env.Append(CCFLAGS = ' -Wall -pedantic') -default_env.Append(CFLAGS = ' -std=c11') -default_env.Append(CXXFLAGS = ' -std=c++11') +default_env.Append(CFLAGS = ' -Wall') +default_env.Append(CFLAGS = ' -std=c99') #default_env.Append(CCFLAGS = ' -O2 -fomit-frame-pointer') default_env.Append(CCFLAGS = ' -O0 -g')
shibajee/buildroot
package/benejson/0001-c-std.patch
patch
mit
833
config BR2_PACKAGE_BENEJSON bool "benejson" depends on BR2_INSTALL_LIBSTDCPP help benejson is a buffering SAX-style JSON parser library. The library package contains 3 major components: - benejson.js: SAX-style parser written in Javascript - PullParser: A C++ class for JSON pull parsing - Core: The parsing core with minimal dependencies https://codehero.github.io/benejson/ comment "benejson needs a toolchain w/ C++" depends on !BR2_INSTALL_LIBSTDCPP
shibajee/buildroot
package/benejson/Config.in
in
mit
479
# Localy computed sha256 2ce5f3c2323500bdf651e7fcaecbd1011997141e6067567b8d2caa4cf7182f4a benejson-0.9.7.tar.gz
shibajee/buildroot
package/benejson/benejson.hash
hash
mit
114
################################################################################ # # benejson # ################################################################################ BENEJSON_VERSION = 0.9.7 BENEJSON_SITE = $(call github,codehero,benejson,$(BENEJSON_VERSION)) BENEJSON_LICENSE = MIT BENEJSON_LICENSE_FILES = LICENSE BENEJSON_INSTALL_STAGING = YES BENEJSON_DEPENDENCIES = host-scons # wchar support needs to be manually disabled ifeq ($(BR2_USE_WCHAR),) define BENEJSON_DISABLE_WCHAR $(SED) 's,^#define BNJ_WCHAR_SUPPORT,#undef BNJ_WCHAR_SUPPORT,' \ $(@D)/benejson/benejson.h endef BENEJSON_POST_PATCH_HOOKS += BENEJSON_DISABLE_WCHAR endif BENEJSON_SCONS_TARGETS = include ifeq ($(BR2_STATIC_LIBS)$(BR2_SHARED_STATIC_LIBS),y) BENEJSON_SCONS_TARGETS += lib/libbenejson.a define BENEJSON_INSTALL_STATIC_LIB $(INSTALL) -D -m 0644 $(@D)/lib/libbenejson.a \ $(1)/usr/lib/libbenejson.a endef endif # Static enabled ifeq ($(BR2_SHARED_LIBS)$(BR2_SHARED_STATIC_LIBS),y) BENEJSON_SCONS_TARGETS += lib/libbenejson.so define BENEJSON_INSTALL_SHARED_LIB $(INSTALL) -D -m 0644 $(@D)/lib/libbenejson.so \ $(1)/usr/lib/libbenejson.so endef endif # Shared enabled define BENEJSON_BUILD_CMDS (cd $(@D); \ $(TARGET_CONFIGURE_OPTS) CROSS=$(TARGET_CROSS) \ $(SCONS) $(BENEJSON_SCONS_TARGETS)) endef define BENEJSON_INSTALL_STAGING_CMDS $(INSTALL) -D -m 0644 $(@D)/include/benejson/benejson.h \ $(STAGING_DIR)/usr/include/benejson/benejson.h; \ $(INSTALL) -D -m 0644 $(@D)/include/benejson/pull.hh \ $(STAGING_DIR)/usr/include/benejson/pull.hh $(call BENEJSON_INSTALL_STATIC_LIB,$(STAGING_DIR)) $(call BENEJSON_INSTALL_SHARED_LIB,$(STAGING_DIR)) endef define BENEJSON_INSTALL_TARGET_CMDS $(call BENEJSON_INSTALL_SHARED_LIB,$(TARGET_DIR)) endef $(eval $(generic-package))
shibajee/buildroot
package/benejson/benejson.mk
mk
mit
1,792
config BR2_PACKAGE_BERKELEYDB bool "berkeleydb" help The Berkeley database. A very common library for database applications. http://www.sleepycat.com/products/db.shtml if BR2_PACKAGE_BERKELEYDB config BR2_PACKAGE_BERKELEYDB_COMPAT185 bool "DB 1.85 compatibility" help Build and install DB 1.85 compatibility API. config BR2_PACKAGE_BERKELEYDB_TOOLS bool "install tools" help Install berkeleydb tools, mostly useful for debugging purposes. endif
shibajee/buildroot
package/berkeleydb/Config.in
in
mit
471
# Locally calculated sha256 76a25560d9e52a198d37a31440fd07632b5f1f8f9f2b6d5438f4bc3e7c9013ef db-5.3.28.NC.tar.gz
shibajee/buildroot
package/berkeleydb/berkeleydb.hash
hash
mit
114
################################################################################ # # berkeleydb # ################################################################################ # Since BerkeleyDB version 6 and above are licensed under the Affero # GPL (AGPL), we want to keep this 'bdb' package at version 5.x to # avoid licensing issues. # BerkeleyDB version 6 or above should be provided by a dedicated # package instead. BERKELEYDB_VERSION = 5.3.28 BERKELEYDB_SITE = http://download.oracle.com/berkeley-db BERKELEYDB_SOURCE = db-$(BERKELEYDB_VERSION).NC.tar.gz BERKELEYDB_SUBDIR = build_unix BERKELEYDB_LICENSE = BerkeleyDB License BERKELEYDB_LICENSE_FILES = LICENSE BERKELEYDB_INSTALL_STAGING = YES BERKELEYDB_BINARIES = db_archive db_checkpoint db_deadlock db_dump \ db_hotbackup db_load db_log_verify db_printlog db_recover db_replicate \ db_stat db_tuner db_upgrade db_verify # build directory can't be the directory where configure are there, so.. define BERKELEYDB_CONFIGURE_CMDS (cd $(@D)/build_unix; rm -rf config.cache; \ $(TARGET_CONFIGURE_OPTS) \ $(TARGET_CONFIGURE_ARGS) \ ../dist/configure $(QUIET) \ --target=$(GNU_TARGET_NAME) \ --host=$(GNU_TARGET_NAME) \ --build=$(GNU_HOST_NAME) \ --prefix=/usr \ --exec-prefix=/usr \ --sysconfdir=/etc \ --with-gnu-ld \ $(if $(BR2_INSTALL_LIBSTDCPP),--enable-cxx,--disable-cxx) \ --disable-java \ --disable-tcl \ $(if $(BR2_PACKAGE_BERKELEYDB_COMPAT185),--enable-compat185,--disable-compat185) \ $(SHARED_STATIC_LIBS_OPTS) \ --with-pic \ --enable-o_direct \ $(if $(BR2_TOOLCHAIN_HAS_THREADS),--enable-mutexsupport,--disable-mutexsupport) \ ) endef ifneq ($(BR2_PACKAGE_BERKELEYDB_TOOLS),y) define BERKELEYDB_REMOVE_TOOLS rm -f $(addprefix $(TARGET_DIR)/usr/bin/, $(BERKELEYDB_BINARIES)) endef BERKELEYDB_POST_INSTALL_TARGET_HOOKS += BERKELEYDB_REMOVE_TOOLS endif define BERKELEYDB_REMOVE_DOCS rm -rf $(TARGET_DIR)/usr/docs endef BERKELEYDB_POST_INSTALL_TARGET_HOOKS += BERKELEYDB_REMOVE_DOCS $(eval $(autotools-package))
shibajee/buildroot
package/berkeleydb/berkeleydb.mk
mk
mit
2,029
Use host compiler to build 'gen' since it's run when building. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> diff -Nura bind-9.5.1-P1/lib/dns/Makefile.in bind-9.5.1-P1.gencross/lib/dns/Makefile.in --- bind-9.5.1-P1/lib/dns/Makefile.in 2007-09-11 22:09:08.000000000 -0300 +++ bind-9.5.1-P1.gencross/lib/dns/Makefile.in 2009-03-04 16:35:23.000000000 -0200 @@ -160,8 +160,8 @@ ./gen -s ${srcdir} > code.h gen: gen.c - ${BUILD_CC} ${BUILD_CFLAGS} -I${top_srcdir}/lib/isc/include \ - ${BUILD_CPPFLAGS} ${BUILD_LDFLAGS} -o $@ ${srcdir}/gen.c ${BUILD_LIBS} + ${HOSTCC} ${HOST_CFLAGS} -I${top_srcdir}/lib/isc/include \ + ${HOST_LDFLAGS} -o $@ ${srcdir}/gen.c rbtdb64.@O@: rbtdb.c
shibajee/buildroot
package/bind/0002-cross.patch
patch
mit
693