1
Fork 0

Compare commits

...

3 Commits

4 changed files with 12 additions and 6 deletions

View File

@ -2,6 +2,10 @@
Changelog
=========
LADI Version 12 on 2024-01-08
-----------------------
* Fix meson build with when dbus support is disabled
LADI Version 11 on 2024-01-07
-----------------------
* Fix bunch of warnings

View File

@ -8,7 +8,7 @@ project(
],
meson_version: '>=0.50.0',
license: 'GPL2+',
version: '9')
version: '12')
cc = meson.get_compiler('c')
@ -31,7 +31,8 @@ src_a2jmidid = [
'paths.c',
#'conf.c',
'jack.c',
'list.c']
'list.c',
'sigsegv.c']
# config.h input
conf_data = configuration_data()
@ -64,8 +65,7 @@ else
src_a2jmidid += [
'dbus.c',
'dbus_iface_introspectable.c',
'dbus_iface_control.c',
'sigsegv.c']
'dbus_iface_control.c']
install_man('man/a2j.1')
install_man('man/a2j_control.1')
configure_file(

View File

@ -25,7 +25,9 @@
<hr>
-->
<h2>Get it</h2>
Latest version is <a href="https://gitea.ladish.org/LADI/a2jmidid/commit/319d21eec36d877286d4a78de687292aae5b7cf2">9.1</a>. Clone from <a href="https://gitea.ladish.org/LADI/a2jmidid">Gitea</a>.
<ul>
<li>Latest version is <a href="http://dl.ladish.org/a2jmidid/">12</a> (signed tarball).</li>
<li>Clone from <a href="https://gitea.ladish.org/LADI/a2jmidid">Gitea</a>.</li>
<hr>
<!--
You can use package management system:

View File

@ -13,7 +13,7 @@ from waflib.Build import BuildContext, CleanContext, InstallContext, UninstallCo
from waftoolchainflags import WafToolchainFlags
APPNAME='a2jmidid'
VERSION='11'
VERSION='12'
# these variables are mandatory ('/' are converted automatically)
srcdir = '.'