package/gnuplot: fix readline dependency
--without-readline is interpreted as --with-readline=builtin since bump to version 5.4.0 in commit263da09323
andb492ea63bd
so add a mandatory dependency to readline or libedit to gnuplot As a side-effect, this will avoid the following build failure with builtin readline raised since bump to version 6.0.0 in commit5f11ce4aea
: /home/autobuild/autobuild/instance-14/output-1/host/lib/gcc/arm-buildroot-linux-gnueabi/13.2.0/../../../../arm-buildroot-linux-gnueabi/bin/ld: history.o: in function `read_history': history.c:(.text+0xa8): undefined reference to `gp_read_history' Fixes:5f11ce4aea
- http://autobuild.buildroot.org/results/5e45dd8f9071694110c8481f222b9b07b6a97ef3 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
58ccc55bff
commit
93864cef0b
@ -1,5 +1,6 @@
|
||||
config BR2_PACKAGE_GNUPLOT
|
||||
bool "gnuplot"
|
||||
select BR2_PACKAGE_READLINE if !BR2_PACKAGE_LIBEDIT
|
||||
help
|
||||
A portable command-line driven graphing utility.
|
||||
|
||||
|
@ -41,8 +41,9 @@ endif
|
||||
ifeq ($(BR2_PACKAGE_READLINE),y)
|
||||
GNUPLOT_CONF_OPTS += --with-readline=gnu
|
||||
GNUPLOT_DEPENDENCIES += readline
|
||||
else
|
||||
GNUPLOT_CONF_OPTS += --without-readline
|
||||
else ifeq ($(BR2_PACKAGE_LIBEDIT),y)
|
||||
GNUPLOT_CONF_OPTS += --with-readline=bsd
|
||||
GNUPLOT_DEPENDENCIES += libedit
|
||||
endif
|
||||
|
||||
# Remove Javascript scripts, lua scripts, PostScript files
|
||||
|
Loading…
Reference in New Issue
Block a user