From: Davide Cavalca Date: Tue, 24 Apr 2018 20:34:48 +0000 (-0700) Subject: meson: only build test-lib{systemd,udev}-static-sym for pic X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=4125c1e54f58f53eaa1c05ce9d52617cddd4c64f;p=elogind.git meson: only build test-lib{systemd,udev}-static-sym for pic --- diff --git a/meson.build b/meson.build index 496dffe71..cd7972368 100644 --- a/meson.build +++ b/meson.build @@ -2856,15 +2856,13 @@ endforeach # 'test-libsystemd-static-sym', # test_libsystemd_sym_c, # include_directories : includes, -# c_args : static_libsystemd_pic ? [] : ['-fno-PIC'], -# link_args : static_libsystemd_pic ? [] : ['-fno-PIC'], # link_with : [install_libsystemd_static], # dependencies : [threads], # threads is already included in dependencies on the library, # # but does not seem to get propagated. Add here as a work-around. -# build_by_default : static_libsystemd != 'false', -# install : install_tests and static_libsystemd != 'false', +# build_by_default : static_libsystemd_pic, +# install : install_tests and static_libsystemd_pic, # install_dir : testsdir) -# if static_libsystemd != 'false' +# if static_libsystemd_pic # test('test-libsystemd-static-sym', exe) # endif # @@ -2882,13 +2880,12 @@ endforeach # 'test-libudev-static-sym', # test_libudev_sym_c, # include_directories : includes, -# c_args : ['-Wno-deprecated-declarations'] + -# (static_libsystemd_pic ? [] : ['-fno-PIC']), +# c_args : ['-Wno-deprecated-declarations'], # link_with : [install_libudev_static], -# build_by_default : static_libudev != 'false', -# install : install_tests and static_libudev != 'false', +# build_by_default : static_libudev_pic, +# install : install_tests and static_libudev_pic, # install_dir : testsdir) -# if static_libudev != 'false' +# if static_libudev_pic # test('test-libudev-static-sym', exe) # endif #