e09a43abd1
Excerpt of https://github.com/troglobit/mg/releases/tag/v3.6: - Sync with mg upstream, OpenBSD 7.2, as of April 10 2023 - Drop trailing whitespace on RET (c-mode) - Add zap-to-char and zap-up-to-char, binding the former to M-z - Fix dobeep_msgs() usage, does not support format strings, this may have caused unexpected crashes for some operations, e.g. goto line that does not exist - Fix memleaks and possible crashes in ctags support - Fall back to /bin/sh if $SHELL is undefined - Fix typos and duplicate undo in *quick* help buffer - Add support for exuberant/universal Ctags tags file format - Add support for M-, to pop-tag-mark, like GNU Emacs Signed-off-by: Joachim Wiberg <troglobit@gmail.com> Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
20 lines
484 B
Makefile
20 lines
484 B
Makefile
################################################################################
|
|
#
|
|
# mg
|
|
#
|
|
################################################################################
|
|
|
|
MG_VERSION = 3.6
|
|
MG_SITE = https://github.com/troglobit/mg/releases/download/v$(MG_VERSION)
|
|
MG_LICENSE = Public Domain
|
|
MG_LICENSE_FILES = UNLICENSE
|
|
|
|
ifeq ($(BR2_PACKAGE_NCURSES),y)
|
|
MG_DEPENDENCIES += ncurses
|
|
MG_CONF_OPTS += --with-curses
|
|
else
|
|
MG_CONF_OPTS += --without-curses
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|