mirror of
https://git.code.sf.net/p/fldigi/flamp
synced 2026-08-13 17:30:16 -04:00
* Add "modem.get_io_names" Prefiltered 8 bit compatible modem list
from FLDIGI.
* Update depreciated M4 macros.
* Update modem timimg table based on "modem.get_io_names" input.
* Add Receive Queue data/retore option for Relay Ops.
* Remove depreciated modem List.
* Append depreciated list to initial start-up modem list.
* GUI Interval timer widget position change.
* HAMCAST broke on XMLRPC timeout change, updated wait_for_rx().
* Add dummy file to keep directory "build-aux" in the git tree.
* New "relay" directory to store saved relay data. (.nbmes/FLAMP/relay)
* Updated scripting to handle dynamic modem list verification testing.
* Remove depreciated default modem names no longer present in FLDIGI.
* Update user document based on above changes.
9 lines
400 B
Text
9 lines
400 B
Text
AC_DEFUN([AC_FL_STATIC], [
|
|
AC_ARG_ENABLE([static],
|
|
AS_HELP_STRING([--enable-static], [enable static linking for some libraries]),
|
|
[case "${enableval}" in
|
|
yes|no) ac_cv_static="${enableval}" ;;
|
|
*) AC_MSG_ERROR([bad value ${enableval} for --enable-static]) ;;
|
|
esac],
|
|
[ac_cv_static=no])
|
|
])
|