You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
708 B

  1. --- a/meson.build
  2. +++ b/meson.build
  3. @@ -35,14 +35,6 @@ add_project_arguments('-Os', '-Wall', '-
  4. glib = dependency('glib-2.0')
  5. -cc = meson.get_compiler('c')
  6. -null_dep = dependency('', required : false)
  7. -if cc.has_function('dlopen')
  8. - libdl = null_dep
  9. -else
  10. - libdl = cc.find_library('dl')
  11. -endif
  12. -
  13. executable('conmon',
  14. ['src/conmon.c',
  15. 'src/config.h',
  16. @@ -78,7 +70,7 @@ executable('conmon',
  17. 'src/utils.h',
  18. 'src/seccomp_notify.c',
  19. 'src/seccomp_notify.h'],
  20. - dependencies : [glib, libdl],
  21. + dependencies : [glib],
  22. install : true,
  23. install_dir : join_paths(get_option('libexecdir'), 'podman'),
  24. )