1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
Description: remove beos-specific code
Author: Anton Gladky <gladk@debian.org>
Last-Update: 2014-09-29
Index: gnuplot-5.0.rc2/configure.in
===================================================================
--- gnuplot-5.0.rc2.orig/configure.in
+++ gnuplot-5.0.rc2/configure.in
@@ -1310,7 +1310,6 @@ AC_OUTPUT([Makefile
share/Makefile
share/LaTeX/Makefile
src/Makefile
- src/beos/Makefile
src/wxterminal/Makefile
src/qtterminal/Makefile
term/Makefile
@@ -1418,10 +1417,6 @@ if test "$is_msdos" = yes; then
AC_MSG_RESULT([ svga terminal (MSDOS/djgpp): yes])
fi
-if test "$build_src_beos_subdir" = yes; then
- AC_MSG_RESULT([ be terminal (BeOS): yes])
-fi
-
if test "$is_next" = yes; then
AC_MSG_RESULT([ next terminal: yes])
fi
Index: gnuplot-5.0.rc2/src/Makefile.am
===================================================================
--- gnuplot-5.0.rc2.orig/src/Makefile.am
+++ gnuplot-5.0.rc2/src/Makefile.am
@@ -75,11 +75,7 @@ getcolor_x11.o: getcolor.c
bf_test_SOURCES = bf_test.c
bf_test_LIBS = -lm
-if BUILD_SRC_BEOS_SUBDIR
-d_beos = beos
-endif
-
-SUBDIRS = $(d_beos) wxterminal qtterminal
+SUBDIRS = wxterminal qtterminal
EXTRA_gnuplot_SOURCES = strftime.c vms.c
|