Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/build-omv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ jobs:
lib64asound-devel \
lib64pulseaudio-devel \
lib64sndio-devel \
lib64pango1.0-devel
lib64pango1.0-devel \
git

- name: Configure Meson
run: |
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ conf_data.set_quoted('VERSION', '1.0.31')
# Generate version.h (similar to Makefile.am)
# Uses git describe if .git-src exists, otherwise uses project version
# Check for .git-src file existence using run_command
git_src_check = run_command('test', '-f', '.git-src').returncode()
git_src_check = run_command('test', '-f', '.git-src', check: false).returncode()
if git_src_check == 0
# Try to get git describe output
git_version = run_command('git', 'describe', '--dirty', check: false).stdout().strip()
Expand Down
2 changes: 1 addition & 1 deletion meson_options.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ option('sndldr', type: 'combo', value: 'sndfile', choices: ['sndfile', 'audiofil

# Other features
option('enable-sm', type: 'boolean', value: true, description: 'Enable session management support')
option('enable-pango', type: 'boolean', value: true, description: 'Enable Pango-XFT support')
option('enable-pango', type: 'boolean', value: false, description: 'Enable Pango-XFT support (currently broken)')
option('enable-libhack', type: 'boolean', value: true, description: 'Build window mode helper library')
option('enable-libtrip', type: 'boolean', value: false, description: 'Build debug library')
option('enable-dialogs', type: 'boolean', value: true, description: 'Enable configuration dialogs support')
Expand Down
Loading