mirror of
https://github.com/MiyooCFW/buildroot.git
synced 2025-09-27 22:24:19 +03:00
bump version to 2022.02.9
add miyoo_defconfig
This commit is contained in:
@@ -1,17 +0,0 @@
|
||||
history.c: Patch to solve the 'undefined reference to gp_read_history'
|
||||
|
||||
Signed-off-by: Michael Fischer <mf@go-sys.de>
|
||||
|
||||
diff -purN gnuplot-5.4.0.org/src/history.c gnuplot-5.4.0/src/history.c
|
||||
--- gnuplot-5.4.0.org/src/history.c 2019-12-10 07:22:32.000000000 +0100
|
||||
+++ gnuplot-5.4.0/src/history.c 2020-09-14 10:07:36.525441702 +0200
|
||||
@@ -91,7 +91,9 @@ write_history(char *filename)
|
||||
void
|
||||
read_history(char *filename)
|
||||
{
|
||||
- gp_read_history(filename);
|
||||
+#ifdef GNUPLOT_HISTORY
|
||||
+ gp_read_history(filename);
|
||||
+#endif
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
# From https://sourceforge.net/projects/gnuplot/files/gnuplot/5.4.0/
|
||||
md5 ac586178f3b031dea82cd3890cefb21b gnuplot-5.4.0.tar.gz
|
||||
sha1 b4660dff7d047a453c55fd77faba11f63bb2d5ed gnuplot-5.4.0.tar.gz
|
||||
# From https://sourceforge.net/projects/gnuplot/files/gnuplot/5.4.2/
|
||||
md5 9bb03cfa77e38924e08ffbb9eb59d8b1 gnuplot-5.4.3.tar.gz
|
||||
sha1 c4b60fd7a700b22fa62b14829cbb0e17911627c9 gnuplot-5.4.3.tar.gz
|
||||
# Locally computed
|
||||
sha256 eb4082f03a399fd1e9e2b380cf7a4f785e77023d8dcc7e17570c1b5570a49c47 gnuplot-5.4.0.tar.gz
|
||||
sha256 51f89bbab90f96d3543f95235368d188eb1e26eda296912256abcd3535bd4d84 gnuplot-5.4.3.tar.gz
|
||||
sha256 895928ec0735cca1c8cec42656c7e314a065d0242813bb8693c0c1bf61fd4e4d Copyright
|
||||
|
||||
@@ -4,10 +4,11 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
GNUPLOT_VERSION = 5.4.0
|
||||
GNUPLOT_VERSION = 5.4.3
|
||||
GNUPLOT_SITE = http://downloads.sourceforge.net/project/gnuplot/gnuplot/$(GNUPLOT_VERSION)
|
||||
GNUPLOT_LICENSE = gnuplot license (open source)
|
||||
GNUPLOT_LICENSE_FILES = Copyright
|
||||
GNUPLOT_CPE_ID_VENDOR = gnuplot_project
|
||||
|
||||
GNUPLOT_AUTORECONF = YES
|
||||
|
||||
@@ -31,9 +32,7 @@ endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GD)$(BR2_PACKAGE_LIBPNG),yy)
|
||||
GNUPLOT_CONF_OPTS += --with-gd
|
||||
GNUPLOT_DEPENDENCIES += gd
|
||||
GNUPLOT_CONF_ENV += \
|
||||
ac_cv_path_GDLIB_CONFIG=$(STAGING_DIR)/usr/bin/gdlib-config
|
||||
GNUPLOT_DEPENDENCIES += host-pkgconf gd
|
||||
else
|
||||
GNUPLOT_CONF_OPTS += --without-gd
|
||||
endif
|
||||
|
||||
Reference in New Issue
Block a user