Skip to content

Commit

Permalink
Update maxima program search in meson.build
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasdiez committed Mar 10, 2024
1 parent d1109b4 commit 040dd68
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,11 @@ endif

singular = dependency('Singular', required: false, disabler: true)

maxima = find_program('maxima', required: true)
# On Debian, maxima-sage comes with the ecl integration
maxima = find_program('maxima-sage', required: false)
if not maxima.found()
maxima = find_program('maxima', required: true)
endif

# Cannot be found via pkg-config
ntl = cc.find_library('ntl', required: true)
Expand Down

0 comments on commit 040dd68

Please sign in to comment.