File: 09_remove_beos.patch

package info (click to toggle)
gnuplot 6.0.3%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 14,960 kB
  • sloc: ansic: 95,874; cpp: 7,199; makefile: 2,470; javascript: 2,339; sh: 1,531; lisp: 664; perl: 304; pascal: 191; tcl: 88; python: 46
file content (53 lines) | stat: -rw-r--r-- 1,471 bytes parent folder | download
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
45
46
47
48
49
50
51
52
53
Description: remove beos-specific code
Author: Anton Gladky <gladk@debian.org>
Last-Update: 2015-06-16

Index: gnuplot-6.0.3/src/Makefile.am
===================================================================
--- gnuplot-6.0.3.orig/src/Makefile.am
+++ gnuplot-6.0.3/src/Makefile.am
@@ -83,11 +83,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 = vms.c vms.h
 
Index: gnuplot-6.0.3/configure.ac
===================================================================
--- gnuplot-6.0.3.orig/configure.ac
+++ gnuplot-6.0.3/configure.ac
@@ -215,7 +215,6 @@ GP_MSDOS
 GP_APPLE
 GP_BEOS
 GP_ALPHA
-AM_CONDITIONAL(BUILD_SRC_BEOS_SUBDIR, test x$build_beos_subdir = xyes)
 
 dnl _instead_ of -lm ...
 AC_CHECK_FUNC(sin,,[AC_CHECK_LIB(m,sin)])
@@ -1205,7 +1204,6 @@ AC_CONFIG_FILES([Makefile
            share/Makefile
            share/LaTeX/Makefile
            src/Makefile
-           src/beos/Makefile
            src/wxterminal/Makefile
            src/qtterminal/Makefile
            term/Makefile
@@ -1290,11 +1288,6 @@ if test "$is_msdos" = yes; then
   AC_MSG_RESULT([    svga (djgpp): yes])
 fi
 
-if test "$build_src_beos_subdir" = yes; then
-  AC_MSG_RESULT([    be (BeOS) : yes])
-
-fi
-
 if test "$with_caca" = yes; then
   AC_MSG_RESULT([    caca      : yes   (EXPERIMENTAL)])
 else