Compare commits

..

No commits in common. "977de72135d1b818b58225db353ebc6f78cfe279" and "ec51eeddc5fbdf04e75de72213ab43baa320cb65" have entirely different histories.

3 changed files with 9 additions and 30 deletions

8
NEWS
View File

@ -1,12 +1,6 @@
= Version 1.2 on 2023-03-29 =
Changes since 1.1:
= Version 1.2 on 20XX-XX-XX =
* Apply downstream patches from FreeBSD
* meson: Fix project license field (MIT->GPL-2.0-only)
* meson: Fix version.h when building from tarball
* meson: disable siginfo build
* meson: Fix after README->README.adoc rename in 1.1
= Version 1.1 on 2023-11-26 =

View File

@ -46,9 +46,6 @@ daemon_sources = [
'../string_constants.c',
]
# define SIGINFO_ENABLED and build
# 'siginfo.c',
ladishd = executable('ladishd', daemon_sources,
dependencies : deps,
include_directories : inc,

View File

@ -1,31 +1,19 @@
project('ladish', 'c', 'cpp',
version : '1.2',
license : 'GPL-2.0-only')
version : '0.3',
license : 'MIT')
data_dir = get_option('prefix') / 'share' / 'ladish'
locale_dir = get_option('prefix') / 'share' / 'locale'
dbus_name_base = 'org.ladish'
dbus_base_path = '/org/ladish'
fs = import('fs')
if fs.is_dir('.git')
# This block handles building from git source tree
# version.h is generated during build
git_version = run_command(['git', 'rev-parse', '--short', 'HEAD']).stdout().strip()
git_version = run_command(['git', 'rev-parse', '--short', 'HEAD']).stdout().strip()
configure_file(output : 'version.h',
configuration : {
'GIT_VERSION' : '"@0@"'.format(git_version)
}
)
else
# Tarballs already have version.h,
# Just copy the file in this case
configure_file(output : 'version.h',
input : 'version.h',
copy: true
)
endif
configure_file(output : 'version.h',
configuration : {
'GIT_VERSION' : '"@0@"'.format(git_version)
}
)
configure_file(output : 'config.h',
configuration : {