diff options
| author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2015-06-21 19:56:13 +0200 |
|---|---|---|
| committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2015-06-22 04:10:39 +0200 |
| commit | 17e7768e3393eaac91ebfa7467be3d1cabd7659a (patch) | |
| tree | 61287c03ac216f91f8e8460ebb771ac3ad918519 /scintilla.am | |
| parent | 1d626c2785117f9c9bf6683d98f57e825a9e7938 (diff) | |
added XCurses support
* enabled via --with-interface=xcurses, so we can configure
it automatically via xcurses-config.
This also adds XCURSES_CFLAGS and XCURSES_LIBS.
* The X11 window class name is set to "SciTECO".
X11 resource overrides can currently not be set via
sciteco's command line. The user may use .Xdefaults though.
* interruptions via CTRL+C are currently not supported.
Apparently, XCurses also does send SIGINT in cbreak() mode.
An XCurses-specific hack would be cumbersome.
* ~InterfaceCurses() should probably be rewritten.
Curses cleanup should be completely in restore_batch() as
the destructor may be called after Curses-cleanup handlers.
E.g. isendwin() SEGFAULTs on XCurses when called from the
destructor.
Diffstat (limited to 'scintilla.am')
| -rw-r--r-- | scintilla.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scintilla.am b/scintilla.am index 53f22d6..481bcc6 100644 --- a/scintilla.am +++ b/scintilla.am @@ -7,7 +7,7 @@ MAKE_SCINTILLA = $(MAKE) -C @SCINTILLA_PATH@/gtk \ CONFIGFLAGS='@LIBGTK_CFLAGS@' else MAKE_SCINTILLA = $(MAKE) -C @SCINTERM_PATH@ \ - CURSES_CFLAGS='@PDCURSES_CFLAGS@ @NCURSES_CFLAGS@' + CURSES_CFLAGS='@PDCURSES_CFLAGS@ @XCURSES_CFLAGS@ @NCURSES_CFLAGS@' endif # Pass toolchain configuration to Scintilla. |
