mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 15:44:20 +00:00
27 lines
1.1 KiB
Diff
27 lines
1.1 KiB
Diff
diff --git a/meson.build b/meson.build
|
|
index 59bbcfb7..dd75d4e2 100644
|
|
--- a/meson.build
|
|
+++ b/meson.build
|
|
@@ -80,6 +80,12 @@ if cc.has_function('clock_gettime', prefix: '#include <time.h>')
|
|
conf_data.set10('HAVE_CLOCK_GETTIME', true)
|
|
endif
|
|
|
|
+if build_machine.system() == 'darwin' or build_machine.system() == 'freebsd' or not cc.links('#include <argp.h>\nstatic error_t parse_opt (int key, char *arg, struct argp_state *state) { argp_usage(state); return 0; }; void main() {}')
|
|
+ argpdep = cc.find_library('argp')
|
|
+else
|
|
+ argpdep = dependency('', required : false)
|
|
+endif
|
|
+
|
|
# ************************ libcrystfel (subdir) ************************
|
|
|
|
subdir('libcrystfel')
|
|
@@ -180,7 +186,7 @@ endif
|
|
|
|
indexamajig = executable('indexamajig', indexamajig_sources,
|
|
dependencies: [mdep, libcrystfeldep, gsldep,
|
|
- pthreaddep, zmqdep, asapodep],
|
|
+ pthreaddep, zmqdep, asapodep, argpdep],
|
|
install: true,
|
|
install_rpath: '$ORIGIN/../lib64/:$ORIGIN/../lib')
|
|
|