Skip to content

Commit

Permalink
Fix: Reverted Unnecessary Change in meson.build
Browse files Browse the repository at this point in the history
Also: Corrected copyright message in brew.yaml
  • Loading branch information
dgreatwood committed Dec 28, 2024
1 parent 0452296 commit 1cfbb4f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/brew.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2022 Andrea Pappacoda
# SPDX-FileCopyrightText: 2024 Duncan Greatwood
#
# SPDX-License-Identifier: Apache-2.0

Expand Down
17 changes: 0 additions & 17 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -36,23 +36,6 @@ if get_option('b_coverage')
add_project_arguments(compiler.get_supported_arguments(['-fstack-protector-all', '--param=ssp-buffer-size=4']), language: 'cpp')
endif

# howardhinnant/date has several names - look for them, from the most
# to the least explicit name.
# In Meson 0.60.0, this can be replaced with a simpler:
#
# dependency('howardhinnant-date', 'hinnant-date', 'date')
#
date_dep = dependency('howard-hinnant-date', required: false)
if not date_dep.found()
date_dep = dependency('howardhinnant-date', required: false)
endif
if not date_dep.found()
date_dep = dependency('hinnant-date', required: false)
endif
if not date_dep.found()
date_dep = dependency('date', fallback: ['hinnant-date', 'date_dep'])
endif

deps_libpistache = [
dependency('threads')
]
Expand Down

0 comments on commit 1cfbb4f

Please sign in to comment.