diff mbox

[2/5] gnuplot : disable inadequate options for embedded platform

Message ID 1357565417-16782-2-git-send-email-viallard@syscom-instruments.com
State Superseded
Headers show

Commit Message

Anthony Viallard Jan. 7, 2013, 1:30 p.m. UTC
Disable options for embedded platform to save space and
make a good cross compilation.

Signed-off-by: Anthony Viallard <viallard@syscom-instruments.com>
---
 package/gnuplot/gnuplot.mk |   10 +++++++++-
 1 files changed, 9 insertions(+), 1 deletion(-)

1.7.10.4
diff mbox

Patch

diff --git a/package/gnuplot/gnuplot.mk b/package/gnuplot/gnuplot.mk
index 2f05624..ea4a6f4 100644
--- a/package/gnuplot/gnuplot.mk
+++ b/package/gnuplot/gnuplot.mk
@@ -8,7 +8,17 @@  GNUPLOT_SOURCE = gnuplot-$(GNUPLOT_VERSION).tar.gz
 GNUPLOT_SITE = http://superb-dca2.dl.sourceforge.net/project/gnuplot/gnuplot/$(GNUPLOT_VERSION)
 GNUPLOT_INSTALL_STAGING = YES
 GNUPLOT_INSTALL_TARGET = YES
-GNUPLOT_CONF_OPT = 
+GNUPLOT_CONF_OPT = --without-x \
+		--disable-raise-console \
+		--disable-mouse \
+	        --without-tutorial \
+		--without-demo --disable-demo \
+	        --without-row-help \
+		--disable-history-file \
+	        --without-lisp-files \
+	        --disable-wxwidgets \
+	        --without-lua \
+		--without-latex \
+	        --without-cairo
 
 $(eval $(autotools-package))
--