annotate libgui/module.mk @ 20654:b65888ec820e draft default tip gccjit

dmalcom gcc jit import
author Stefan Mahr <dac922@gmx.de>
date Fri, 27 Feb 2015 16:59:36 +0100
parents 048f7cda88ea
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
20387
c3dab5d8e6ab allow --disable-gui to work again (bug #45543)
John W. Eaton <jwe@octave.org>
parents: 20361
diff changeset
1 if AMCOND_BUILD_GUI
c3dab5d8e6ab allow --disable-gui to work again (bug #45543)
John W. Eaton <jwe@octave.org>
parents: 20361
diff changeset
2
20401
9b44691a3520 provide per-directory clean targets
John W. Eaton <jwe@octave.org>
parents: 20387
diff changeset
3 libgui_EXTRA_DIST =
9b44691a3520 provide per-directory clean targets
John W. Eaton <jwe@octave.org>
parents: 20387
diff changeset
4
9b44691a3520 provide per-directory clean targets
John W. Eaton <jwe@octave.org>
parents: 20387
diff changeset
5 libgui_CLEANFILES =
9b44691a3520 provide per-directory clean targets
John W. Eaton <jwe@octave.org>
parents: 20387
diff changeset
6 libgui_DISTCLEANFILES =
9b44691a3520 provide per-directory clean targets
John W. Eaton <jwe@octave.org>
parents: 20387
diff changeset
7 libgui_MAINTAINERCLEANFILES =
9b44691a3520 provide per-directory clean targets
John W. Eaton <jwe@octave.org>
parents: 20387
diff changeset
8
20361
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 MOC_CPPFLAGS =
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11 ## Fix for bug #42839 where -mieee CFLAG option is added to CPPFLAGS by gnulib.
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12 ## Users may also pass other options in CPPFLAGS that moc does not understand.
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13 ## Only keep moc-compatible options -Idir, -Dmacro, and -Umacro.
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
14 MOC_OCTAVE_CPPFLAGS = $(filter -I% -D% -U%, $(AM_CPPFLAGS) $(CPPFLAGS))
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
15
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16 octlib_LTLIBRARIES += libgui/liboctgui.la
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18 TRANSLATIONS = \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19 libgui/languages/be_BY.ts \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20 libgui/languages/de_DE.ts \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 libgui/languages/en_US.ts \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
22 libgui/languages/es_ES.ts \
20556
048f7cda88ea Add Basque translation for the GUI by Ander Aurrekoetxea (bug #46041)
Pantxo Diribarne <pantxo.diribarne@gmail.com>
parents: 20418
diff changeset
23 libgui/languages/eu_ES.ts \
20361
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
24 libgui/languages/fr_FR.ts \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
25 libgui/languages/it_IT.ts \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
26 libgui/languages/ja_JP.ts \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
27 libgui/languages/nl_NL.ts \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
28 libgui/languages/pt_BR.ts \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
29 libgui/languages/pt_PT.ts \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
30 libgui/languages/ru_RU.ts \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
31 libgui/languages/uk_UA.ts \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
32 libgui/languages/zh_CN.ts
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
33
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
34 LOCALES = $(patsubst libgui/languages/%.ts, libgui/languages/%.qm, $(TRANSLATIONS))
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
35
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
36 include libgui/src/module.mk
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
37 include libgui/graphics/module.mk
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
38 include libgui/qterminal-module.mk
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
39
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
40 ## liboctgui merely collects a bunch of compiled convenience libraries.
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
41 ## It has no source code itself.
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
42 libgui_liboctgui_la_SOURCES =
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
43
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
44 # Dummy C++ source to force C++ linking.
20418
1625e6bd5ce7 build: Move nonexistent dummy source files into lib directories
Mike Miller <mtmiller@octave.org>
parents: 20403
diff changeset
45 nodist_EXTRA_libgui_liboctgui_la_SOURCES = libgui/dummy.cc
20361
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
46
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
47 libgui_liboctgui_la_LIBADD = \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
48 libgui/qterminal/libqterminal.la \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
49 libgui/src/libgui-src.la \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
50 libgui/graphics/libgui-graphics.la \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
51 $(top_builddir)/libinterp/liboctinterp.la \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
52 $(top_builddir)/liboctave/liboctave.la \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
53 $(LIBOCTGUI_LINK_DEPS)
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
54
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
55 # Increment these as needed and according to the rules in the libtool manual:
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
56 libgui_liboctgui_current = 1
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
57 libgui_liboctgui_revision = 0
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
58 libgui_liboctgui_age = 0
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
59
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
60 libgui_liboctgui_version_info = $(libgui_liboctgui_current):$(libgui_liboctgui_revision):$(libgui_liboctgui_age)
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
61
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
62 libgui_liboctgui_la_LDFLAGS = \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
63 -version-info $(libgui_liboctgui_version_info) \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
64 $(NO_UNDEFINED_LDFLAG) \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
65 -bindir $(bindir) \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
66 $(LIBOCTGUI_LINK_OPTS)
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
67
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
68 octetc_DATA += libgui/default-qt-settings
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
69
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
70 octlocale_DATA += $(LOCALES)
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
71
20402
6b7c10920dfe make interpreter targets and dirstamp files order-only prerequisites
John W. Eaton <jwe@octave.org>
parents: 20401
diff changeset
72 libgui/default-qt-settings: libgui/default-qt-settings.in | libgui/$(octave_dirstamp)
20361
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
73 $(AM_V_GEN)$(do_subst_qt_settings)
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
74
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
75 DIRSTAMP_FILES += \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
76 libgui/$(octave_dirstamp)
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
77
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
78 define moc-command
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
79 rm -f $@-t $@ && \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
80 ( echo "#ifdef HAVE_CONFIG_H"; \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
81 echo "#include <config.h>"; \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
82 echo "#endif"; \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
83 $(MOC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(MOC_OCTAVE_CPPFLAGS) $(MOC_CPPFLAGS) $(libgui_liboctgui_la_CPPFLAGS) $< ) > $@-t && \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
84 mv $@-t $@
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
85 endef
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
86
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
87 define rcc-command
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
88 rm -f $@-t $@ && \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
89 ( echo "#ifdef HAVE_CONFIG_H"; \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
90 echo "#include <config.h>"; \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
91 echo "#endif"; \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
92 $(RCC) -name $(@D) $< ) > $@-t && \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
93 mv $@-t $@
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
94 endef
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
95
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
96 moc-%.cc: %.h
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
97 $(AM_V_GEN)$(moc-command)
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
98
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
99 ui-%.h: %.ui
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
100 $(AM_V_GEN)$(UIC) -o $@ $<
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
101
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
102 qrc-%.cc: %.qrc
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
103 $(AM_V_GEN)$(rcc-command)
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
104
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
105 AM_V_lrelease = $(am__v_lrelease_$(V))
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
106 am__v_lrelease_ = $(am__v_lrelease_$(AM_DEFAULT_VERBOSITY))
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
107 am__v_lrelease_0 = -silent
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
108 am__v_lrelease_1 =
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
109
20402
6b7c10920dfe make interpreter targets and dirstamp files order-only prerequisites
John W. Eaton <jwe@octave.org>
parents: 20401
diff changeset
110 %.qm: %.ts | libgui/languages/$(octave_dirstamp)
20361
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
111 $(AM_V_GEN)$(LRELEASE) $(AM_V_lrelease) -qm $@ $<
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
112
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
113 DIRSTAMP_FILES += \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
114 libgui/languages/$(octave_dirstamp)
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
115
20401
9b44691a3520 provide per-directory clean targets
John W. Eaton <jwe@octave.org>
parents: 20387
diff changeset
116 libgui_EXTRA_DIST += \
9b44691a3520 provide per-directory clean targets
John W. Eaton <jwe@octave.org>
parents: 20387
diff changeset
117 $(TRANSLATIONS) \
9b44691a3520 provide per-directory clean targets
John W. Eaton <jwe@octave.org>
parents: 20387
diff changeset
118 libgui/default-qt-settings.in
9b44691a3520 provide per-directory clean targets
John W. Eaton <jwe@octave.org>
parents: 20387
diff changeset
119
20403
2f9119bb3fe5 build: Add EXTRA_DIST files frob libgui/ and test/ to tarball.
Rik <rik@octave.org>
parents: 20402
diff changeset
120 EXTRA_DIST += $(libgui_EXTRA_DIST)
2f9119bb3fe5 build: Add EXTRA_DIST files frob libgui/ and test/ to tarball.
Rik <rik@octave.org>
parents: 20402
diff changeset
121
20401
9b44691a3520 provide per-directory clean targets
John W. Eaton <jwe@octave.org>
parents: 20387
diff changeset
122 libgui_DISTCLEANFILES += \
20361
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
123 libgui/default-qt-settings \
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
124 $(LOCALES)
8ef616eec739 eliminate recursive make invocation in libgui directory tree
John W. Eaton <jwe@octave.org>
parents:
diff changeset
125
20401
9b44691a3520 provide per-directory clean targets
John W. Eaton <jwe@octave.org>
parents: 20387
diff changeset
126 CLEANFILES += $(libgui_CLEANFILES)
9b44691a3520 provide per-directory clean targets
John W. Eaton <jwe@octave.org>
parents: 20387
diff changeset
127 DISTCLEANFILES += $(libgui_DISTCLEANFILES)
9b44691a3520 provide per-directory clean targets
John W. Eaton <jwe@octave.org>
parents: 20387
diff changeset
128 MAINTAINERCLEANFILES += $(libgui_MAINTAINERCLEANFILES)
9b44691a3520 provide per-directory clean targets
John W. Eaton <jwe@octave.org>
parents: 20387
diff changeset
129
9b44691a3520 provide per-directory clean targets
John W. Eaton <jwe@octave.org>
parents: 20387
diff changeset
130 libgui-clean:
9b44691a3520 provide per-directory clean targets
John W. Eaton <jwe@octave.org>
parents: 20387
diff changeset
131 rm -f $(libgui_CLEANFILES)
9b44691a3520 provide per-directory clean targets
John W. Eaton <jwe@octave.org>
parents: 20387
diff changeset
132
9b44691a3520 provide per-directory clean targets
John W. Eaton <jwe@octave.org>
parents: 20387
diff changeset
133 libgui-distclean: libgui-clean
9b44691a3520 provide per-directory clean targets
John W. Eaton <jwe@octave.org>
parents: 20387
diff changeset
134 rm -f $(libgui_DISTCLEANFILES)
9b44691a3520 provide per-directory clean targets
John W. Eaton <jwe@octave.org>
parents: 20387
diff changeset
135
9b44691a3520 provide per-directory clean targets
John W. Eaton <jwe@octave.org>
parents: 20387
diff changeset
136 libgui-maintainer-clean: libgui-distclean
9b44691a3520 provide per-directory clean targets
John W. Eaton <jwe@octave.org>
parents: 20387
diff changeset
137 rm -f $(libgui_MAINTAINERCLEANFILES)
20387
c3dab5d8e6ab allow --disable-gui to work again (bug #45543)
John W. Eaton <jwe@octave.org>
parents: 20361
diff changeset
138 endif