Skip to content

Commit

Permalink
Config.in files: add missing dependencies to toolchain option comments
Browse files Browse the repository at this point in the history
When a package A depends on config option B and toolchain option C, then
the comment that is given when C is not fulfilled should also depend on B.
For example:

config BR2_PACKAGE_A
	depends on BR2_B
	depends on BR2_LARGEFILE
	depends on BR2_WCHAR

comment "A needs a toolchain w/ largefile, wchar"
	depends on !BR2_LARGEFILE || !BR2_WCHAR

This comment should actually be:

comment "A needs a toolchain w/ largefile, wchar"
	depends on BR2_B
	depends on !BR2_LARGEFILE || !BR2_WCHAR

or if possible (typically when B is a package config option declared in that
same Config.in file):

if BR2_B

comment "A needs a toolchain w/ largefile, wchar"
	depends on !BR2_LARGEFILE || !BR2_WCHAR

[other config options depending on B]

endif

Otherwise, the comment would be visible even though the other dependencies
are not met.

This patch adds such missing dependencies, and changes existing such
dependencies from
  depends on BR2_BASE_DEP && !BR2_TOOLCHAIN_USES_GLIBC
to
  depends on BR2_BASE_DEP
  depends on !BR2_TOOLCHAIN_USES_GLIBC
so that (positive) base dependencies are separate from the (negative)
toolchain dependencies. This strategy makes it easier to write such comments
(because one can simply copy the base dependency from the actual package
config option), but also avoids complex and long boolean expressions.

Signed-off-by: Thomas De Schampheleire <[email protected]>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <[email protected]>
 (untested)
Signed-off-by: Peter Korsgaard <[email protected]>
  • Loading branch information
patrickdepinguin authored and jacmet committed Nov 10, 2013
1 parent 3c33c11 commit be08420
Show file tree
Hide file tree
Showing 162 changed files with 228 additions and 50 deletions.
3 changes: 2 additions & 1 deletion fs/iso9660/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ config BR2_TARGET_ROOTFS_ISO9660_BOOT_MENU
default "fs/iso9660/menu.lst"

comment "iso image requires a Linux kernel to be built"
depends on (BR2_i386 || BR2_x86_64) && !BR2_LINUX_KERNEL
depends on BR2_i386 || BR2_x86_64
depends on !BR2_LINUX_KERNEL
2 changes: 2 additions & 0 deletions linux/Config.ext.in
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ config BR2_LINUX_KERNEL_EXT_XENOMAI
PowerPC, 2.6.35.7, 2.6.36.4, 3.0.8.

comment "xenomai needs a toolchain w/ threads"
depends on BR2_i386 || BR2_x86_64 || BR2_arm || \
BR2_bfin || BR2_powerpc || BR2_sh4
depends on !BR2_TOOLCHAIN_HAS_THREADS

config BR2_LINUX_KERNEL_EXT_XENOMAI_ADEOS_PATCH
Expand Down
3 changes: 2 additions & 1 deletion package/a10disp/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ config BR2_PACKAGE_A10DISP
http:https://github.com/hglm/a10disp

comment "a10disp requires the linux kernel"
depends on BR2_arm && !BR2_LINUX_KERNEL
depends on BR2_arm
depends on !BR2_LINUX_KERNEL
1 change: 1 addition & 0 deletions package/aiccu/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@ config BR2_PACKAGE_AICCU
http:https://www.sixxs.net/tools/aiccu/

comment "aiccu needs a toolchain w/ IPv6, wchar, threads"
depends on BR2_USE_MMU
depends on !(BR2_INET_IPV6 && BR2_USE_WCHAR && BR2_TOOLCHAIN_HAS_THREADS)
1 change: 1 addition & 0 deletions package/aircrack-ng/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ config BR2_PACKAGE_AIRCRACK_NG
http:https://www.aircrack-ng.org/

comment "aircrack-ng needs a toolchain w/ largefile, threads"
depends on BR2_USE_MMU
depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS

3 changes: 2 additions & 1 deletion package/alsamixergui/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ config BR2_PACKAGE_ALSAMIXERGUI
http:https://www.iua.upf.es/~mdeboer/projects/alsamixergui/

comment "alsamixergui needs a toolchain w/ C++, threads"
depends on (!BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS) && BR2_PACKAGE_XORG7
depends on BR2_PACKAGE_XORG7 && BR2_USE_MMU
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
1 change: 1 addition & 0 deletions package/avahi/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,5 @@ config BR2_PACKAGE_AVAHI_DAEMON
endif

comment "avahi needs a toolchain w/ threads"
depends on BR2_USE_MMU
depends on !BR2_TOOLCHAIN_HAS_THREADS
1 change: 1 addition & 0 deletions package/bcusdk/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@ config BR2_PACKAGE_BCUSDK
http:https://www.auto.tuwien.ac.at/~mkoegler/eib/

comment "bcusdk needs a toolchain w/ C++"
depends on BR2_USE_MMU
depends on !BR2_INSTALL_LIBSTDCPP
1 change: 1 addition & 0 deletions package/bind/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,5 @@ config BR2_PACKAGE_BIND_TOOLS
endif

comment "bind needs a toolchain w/ largefile, IPv6"
depends on BR2_USE_MMU
depends on !(BR2_LARGEFILE || BR2_INET_IPV6)
3 changes: 2 additions & 1 deletion package/blackbox/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ config BR2_PACKAGE_BLACKBOX
http:https://blackboxwm.sourceforge.net/

comment "blackbox needs a toolchain w/ C++"
depends on BR2_PACKAGE_XORG7 && !BR2_INSTALL_LIBSTDCPP
depends on BR2_PACKAGE_XORG7 && BR2_USE_MMU
depends on !BR2_INSTALL_LIBSTDCPP
1 change: 1 addition & 0 deletions package/bluez_utils/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,5 @@ config BR2_PACKAGE_BLUEZ_UTILS_USB
endif

comment "bluez-utils needs a toolchain w/ wchar, threads"
depends on !BR2_avr32 && BR2_USE_MMU
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
1 change: 1 addition & 0 deletions package/bmon/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ config BR2_PACKAGE_BMON
Linux bandwidth monitor

comment "bmon needs a toolchain w/ IPv6"
depends on BR2_USE_MMU
depends on !BR2_INET_IPV6
1 change: 1 addition & 0 deletions package/bonnie/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ config BR2_PACKAGE_BONNIE
http:https://www.coker.com.au/bonnie++/

comment "bonnie++ needs a toolchain w/ C++"
depends on BR2_USE_MMU
depends on !BR2_INSTALL_LIBSTDCPP
1 change: 1 addition & 0 deletions package/bustle/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@ config BR2_PACKAGE_BUSTLE
http:https://www.willthompson.co.uk/bustle/

comment "bustle needs a toolchain w/ wchar, threads"
depends on BR2_PACKAGE_DBUS
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
1 change: 1 addition & 0 deletions package/ccid/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ config BR2_PACKAGE_CCID
http:https://pcsclite.alioth.debian.org/ccid.html

comment "ccid needs a toolchain w/ threads"
depends on BR2_USE_MMU
depends on !BR2_TOOLCHAIN_HAS_THREADS
1 change: 1 addition & 0 deletions package/cdrkit/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ config BR2_PACKAGE_CDRKIT
http:https://www.cdrkit.org/

comment "cdrkit needs a toolchain w/ largefile"
depends on BR2_USE_MMU
depends on !BR2_LARGEFILE
1 change: 1 addition & 0 deletions package/civetweb/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@ comment "Lua support needs a toolchain w/ largefile"
endif

comment "civetweb needs a toolchain w/ threads"
depends on BR2_USE_MMU
depends on !BR2_TOOLCHAIN_HAS_THREADS
1 change: 1 addition & 0 deletions package/classpath/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ config BR2_PACKAGE_CLASSPATH
http:https://classpath.org

comment "classpath needs a toolchain w/ IPv6"
depends on BR2_PACKAGE_JAMVM
depends on !BR2_INET_IPV6
2 changes: 1 addition & 1 deletion package/connman/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ config BR2_PACKAGE_CONNMAN_CLIENT
endif # BR2_PACKAGE_CONNMAN

comment "connman needs a toolchain w/ IPv6, wchar, threads, resolver"
depends on !BR2_avr32
depends on BR2_USE_MMU && !BR2_avr32
depends on BR2_UCLIBC_VERSION_0_9_32 || \
!BR2_USE_WCHAR || !BR2_INET_IPV6 || !BR2_TOOLCHAIN_HAS_THREADS
1 change: 1 addition & 0 deletions package/conntrack-tools/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ config BR2_PACKAGE_CONNTRACK_TOOLS
http:https://www.netfilter.org/projects/conntrack-tools/

comment "conntrack-tools needs a toolchain w/ IPv6, largefile, threads"
depends on BR2_USE_MMU
depends on !BR2_INET_IPV6 || \
!BR2_LARGEFILE || \
!(BR2_TOOLCHAIN_HAS_THREADS || BR2_TOOLCHAIN_HAS_NATIVE_RPC)
1 change: 1 addition & 0 deletions package/coreutils/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ config BR2_PACKAGE_COREUTILS
http:https://www.gnu.org/software/coreutils/

comment "coreutils needs a toolchain w/ wchar"
depends on BR2_USE_MMU
depends on !BR2_USE_WCHAR
1 change: 1 addition & 0 deletions package/cryptsetup/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ config BR2_PACKAGE_CRYPTSETUP
https://code.google.com/p/cryptsetup/

comment "cryptsetup needs a toolchain w/ largefile, wchar"
depends on BR2_USE_MMU
depends on !BR2_LARGEFILE || !BR2_USE_WCHAR
1 change: 1 addition & 0 deletions package/curlftpfs/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ config BR2_PACKAGE_CURLFTPFS
http:https://curlftpfs.sourceforge.net/

comment "curlftpfs needs a toolchain w/ largefile, wchar, threads, dynamic library"
depends on BR2_USE_MMU
depends on !BR2_LARGEFILE || !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || BR2_PREFER_STATIC_LIB
1 change: 1 addition & 0 deletions package/cvs/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ config BR2_PACKAGE_CVS_SERVER
Enable cvs server code

comment "cvs needs a toolchain w/ wchar"
depends on BR2_USE_MMU
depends on !BR2_USE_WCHAR
2 changes: 2 additions & 0 deletions package/czmq/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,7 @@ config BR2_PACKAGE_CZMQ
http:https://czmq.zeromq.org/

comment "czmq needs a toolchain w/ C++, IPv6, largefile, wchar, threads"
depends on !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R2 && \
!BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R1
depends on !(BR2_INSTALL_LIBSTDCPP && BR2_INET_IPV6 && BR2_LARGEFILE \
&& BR2_USE_WCHAR && BR2_TOOLCHAIN_HAS_THREADS)
4 changes: 2 additions & 2 deletions package/dbus-glib/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ config BR2_PACKAGE_DBUS_GLIB
http:https://www.freedesktop.org/software/dbus

comment "dbus-glib needs a toolchain w/ wchar, threads"
depends on BR2_PACKAGE_DBUS && \
(!BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS)
depends on BR2_PACKAGE_DBUS
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
4 changes: 2 additions & 2 deletions package/dbus-python/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ config BR2_PACKAGE_DBUS_PYTHON
http:https://dbus.freedesktop.org/doc/dbus-python/

comment "dbus-python needs a toolchain w/ wchar, threads"
depends on BR2_PACKAGE_DBUS && BR2_PACKAGE_PYTHON && \
(!BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS)
depends on BR2_PACKAGE_DBUS && BR2_PACKAGE_PYTHON
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
1 change: 1 addition & 0 deletions package/dbus/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,5 @@ choice
endchoice

comment "dbus needs a toolchain w/ threads"
depends on BR2_USE_MMU
depends on !BR2_TOOLCHAIN_HAS_THREADS
1 change: 1 addition & 0 deletions package/dmraid/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ config BR2_PACKAGE_DMRAID
respective mappings for the ATARAID sets discovered.

comment "dmraid needs a toolchain w/ largefile"
depends on BR2_USE_MMU
depends on !BR2_LARGEFILE
4 changes: 2 additions & 2 deletions package/docker/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ config BR2_PACKAGE_DOCKER
http:https://icculus.org/openbox/2/docker

comment "docker needs a toolchain w/ wchar, threads"
depends on BR2_PACKAGE_XORG7 && \
(!BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS)
depends on BR2_PACKAGE_XORG7
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
1 change: 1 addition & 0 deletions package/dropwatch/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ config BR2_PACKAGE_DROPWATCH
https://fedorahosted.org/dropwatch/

comment "dropwatch needs a toolchain w/ threads"
depends on !BR2_aarch64
depends on !BR2_TOOLCHAIN_HAS_THREADS
1 change: 1 addition & 0 deletions package/dstat/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@ config BR2_PACKAGE_DSTAT
http:https://dag.wieers.com/home-made/dstat/

comment "dstat needs a toolchain w/ wchar"
depends on BR2_USE_MMU
depends on !BR2_USE_WCHAR
1 change: 1 addition & 0 deletions package/ebtables/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ config BR2_PACKAGE_EBTABLES
http:https://ebtables.sourceforge.net

comment "ebtables needs a toolchain w/ IPv6"
depends on BR2_USE_MMU
depends on !BR2_INET_IPV6
2 changes: 2 additions & 0 deletions package/efl/libedbus/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ config BR2_PACKAGE_LIBEDBUS_BLUEZ
Bluetooth support.

comment "bluez support needs a toolchain w/ wchar, threads"
depends on !BR2_avr32
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS

config BR2_PACKAGE_LIBEDBUS_CONNMAN
Expand All @@ -40,4 +41,5 @@ config BR2_PACKAGE_LIBEDBUS_NOTIFY
endif

comment "libedbus needs a toolchain w/ threads"
depends on BR2_USE_MMU
depends on !BR2_TOOLCHAIN_HAS_THREADS
2 changes: 1 addition & 1 deletion package/enlightenment/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ config BR2_PACKAGE_ENLIGHTENMENT
http:https://www.enlightenment.org/

comment "enlightenment needs a toolchain w/ wchar, C++, threads"
depends on BR2_PACKAGE_XORG7
depends on BR2_PACKAGE_XORG7 && BR2_USE_MMU
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP
depends on !BR2_avr32
1 change: 1 addition & 0 deletions package/exfat/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ config BR2_PACKAGE_EXFAT
http:https://code.google.com/p/exfat/

comment "exfat needs a toolchain w/ largefile, wchar, threads, dynamic library"
depends on BR2_USE_MMU
depends on !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_USE_WCHAR || BR2_PREFER_STATIC_LIB
3 changes: 3 additions & 0 deletions package/fdk-aac/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,6 @@ config BR2_PACKAGE_FDK_AAC

comment "fdk-aac needs a toolchain w/ C++"
depends on !BR2_INSTALL_LIBSTDCPP
depends on BR2_i386 || BR2_x86_64 || BR2_arm || BR2_armeb || \
BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el || \
BR2_powerpc || BR2_sh || BR2_sh64
2 changes: 2 additions & 0 deletions package/filemq/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,7 @@ config BR2_PACKAGE_FILEMQ
http:https://github.com/zeromq/filemq

comment "filemq needs a toolchain w/ C++, IPv6, largefile, wchar, threads"
depends on !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R2 && \
!BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R1
depends on !(BR2_INSTALL_LIBSTDCPP && BR2_INET_IPV6 && BR2_LARGEFILE \
&& BR2_USE_WCHAR && BR2_TOOLCHAIN_HAS_THREADS)
1 change: 1 addition & 0 deletions package/findutils/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ config BR2_PACKAGE_FINDUTILS
http:https://www.gnu.org/software/findutils/findutils.html

comment "findutils needs a toolchain w/ wchar"
depends on BR2_USE_MMU
depends on !BR2_USE_WCHAR
6 changes: 5 additions & 1 deletion package/flex/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,20 @@ config BR2_PACKAGE_FLEX

http:https://flex.sourceforge.net/

if BR2_PACKAGE_FLEX

config BR2_PACKAGE_FLEX_BINARY
bool "Install tool in the target"
# needs fork()
depends on BR2_USE_MMU
depends on BR2_PACKAGE_FLEX
# runtime dependency
select BR2_PACKAGE_M4
depends on BR2_USE_WCHAR # m4
help
Install the flex binary tool in the target filesystem.

comment "flex binary needs a toolchain w/ wchar"
depends on BR2_USE_MMU
depends on !BR2_USE_WCHAR

endif
3 changes: 2 additions & 1 deletion package/fltk/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ config BR2_PACKAGE_FLTK
http:https://www.fltk.org/

comment "fltk needs a toolchain w/ C++"
depends on !BR2_INSTALL_LIBSTDCPP && BR2_PACKAGE_XORG7
depends on BR2_USE_MMU && BR2_PACKAGE_XORG7
depends on !BR2_INSTALL_LIBSTDCPP
1 change: 1 addition & 0 deletions package/foomatic-filters/Config.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
comment "foomatic-filters needs a toolchain w/ threads"
depends on BR2_PACKAGE_CUPS
depends on !BR2_TOOLCHAIN_HAS_THREADS

config BR2_PACKAGE_FOOMATIC_FILTERS
Expand Down
1 change: 1 addition & 0 deletions package/freescale-imx/gpu-viv-bin-mx6q/Config.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
comment "gpu-viv-bin-mx6q needs an (e)glibc toolchain"
depends on BR2_arm
depends on !BR2_TOOLCHAIN_USES_GLIBC

config BR2_PACKAGE_GPU_VIV_BIN_MX6Q
Expand Down
1 change: 1 addition & 0 deletions package/gawk/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ config BR2_PACKAGE_GAWK
http:https://www.gnu.org/software/gawk/

comment "gawk needs a toolchain w/ wchar"
depends on BR2_USE_MMU
depends on !BR2_USE_WCHAR
2 changes: 2 additions & 0 deletions package/gdb/Config.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
comment "gdb/gdbserver needs a toolchain w/ threads, threads debug"
depends on !BR2_aarch64
depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_HAS_THREADS_DEBUG

config BR2_PACKAGE_GDB
Expand Down Expand Up @@ -42,6 +43,7 @@ config BR2_PACKAGE_GDB_DEBUGGER
depends on !BR2_sh && !BR2_sh64 && !BR2_avr32 && !BR2_microblaze && !BR2_bfin

comment "full gdb on target needs a toolchain w/ wchar"
depends on !BR2_sh && !BR2_sh64 && !BR2_avr32 && !BR2_microblaze && !BR2_bfin
depends on !BR2_USE_WCHAR

endif
1 change: 1 addition & 0 deletions package/gesftpserver/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ config BR2_PACKAGE_GESFTPSERVER
http:https://www.greenend.org.uk/rjk/sftpserver/

comment "gesftpserver needs a toolchain w/ wchar, threads"
depends on BR2_USE_MMU
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
3 changes: 2 additions & 1 deletion package/gettext/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@ config BR2_PACKAGE_GETTEXT_TOOLS
correct operation of programs.

comment "gettext needs a toolchain w/ wchar"
depends on BR2_NEEDS_GETTEXT && !BR2_USE_WCHAR
depends on BR2_NEEDS_GETTEXT
depends on !BR2_USE_WCHAR
1 change: 1 addition & 0 deletions package/git/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ config BR2_PACKAGE_GIT
http:https://git-scm.com

comment "git needs a toolchain w/ largefile"
depends on BR2_USE_MMU
depends on !BR2_LARGEFILE
4 changes: 2 additions & 2 deletions package/gmpc/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ config BR2_PACKAGE_GMPC
http:https://gmpcwiki.sarine.nl/index.php?title=GMPC

comment "gmpc needs a toolchain w/ wchar, threads"
depends on BR2_PACKAGE_LIBGTK2 && !BR2_USE_WCHAR || \
!BR2_TOOLCHAIN_HAS_THREADS
depends on BR2_PACKAGE_XORG7 && BR2_PACKAGE_LIBGTK2
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
1 change: 1 addition & 0 deletions package/gob2/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ config BR2_PACKAGE_GOB2
http:https://www.jirka.org/gob.html

comment "gob2 needs a toolchain w/ wchar"
depends on BR2_USE_MMU
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
1 change: 1 addition & 0 deletions package/gpsd/Config.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
comment "gpsd needs a toolchain w/ threads"
depends on BR2_USE_MMU
depends on !BR2_TOOLCHAIN_HAS_THREADS

config BR2_PACKAGE_GPSD
Expand Down
1 change: 1 addition & 0 deletions package/gstreamer/gst-ffmpeg/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ config BR2_PACKAGE_GST_FFMPEG
http:https://gstreamer.freedesktop.org/

comment "gst-ffmpeg needs a toolchain w/ largefile, IPv6"
depends on BR2_PACKAGE_GSTREAMER
depends on !(BR2_LARGEFILE && BR2_INET_IPV6)
1 change: 1 addition & 0 deletions package/gtest/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,5 @@ config BR2_PACKAGE_GTEST
http:https://code.google.com/p/googletest/

comment "gtest needs a toolchain w/ C++, wchar, threads"
depends on BR2_USE_MMU
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP
1 change: 1 addition & 0 deletions package/gutenprint/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ config BR2_PACKAGE_GUTENPRINT
http:https://gimp-print.sourceforge.net/

comment "gutenprint needs a toolchain w/ C++"
depends on BR2_PACKAGE_CUPS
depends on !BR2_INSTALL_LIBSTDCPP
1 change: 1 addition & 0 deletions package/gvfs/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ config BR2_PACKAGE_GVFS
http:https://en.wikipedia.org/wiki/GVFS

comment "gvfs needs a toolchain w/ largefile, wchar, threads"
depends on BR2_USE_MMU
depends on !BR2_LARGEFILE || !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
1 change: 1 addition & 0 deletions package/hiawatha/Config.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
comment "hiawatha needs a toolchain w/ threads"
depends on BR2_USE_MMU
depends on !BR2_TOOLCHAIN_HAS_THREADS

config BR2_PACKAGE_HIAWATHA
Expand Down
Loading

0 comments on commit be08420

Please sign in to comment.