aboutsummaryrefslogtreecommitdiffstats
path: root/testing/fprintd/fix-missing-libintl.patch
diff options
context:
space:
mode:
Diffstat (limited to 'testing/fprintd/fix-missing-libintl.patch')
-rw-r--r--testing/fprintd/fix-missing-libintl.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/testing/fprintd/fix-missing-libintl.patch b/testing/fprintd/fix-missing-libintl.patch
deleted file mode 100644
index 07a9e40b229..00000000000
--- a/testing/fprintd/fix-missing-libintl.patch
+++ /dev/null
@@ -1,23 +0,0 @@
---- a/meson.build
-+++ b/meson.build
-@@ -97,6 +97,10 @@
- required: get_option('pam'),
- has_headers: 'security/pam_modules.h',
- )
-+intl_dep = cc.find_library('intl',
-+ required: get_option('pam'),
-+ has_headers: 'libintl.h',
-+)
-
- pod2man = find_program('pod2man', required: get_option('man'))
- xsltproc = find_program('xsltproc', required: get_option('gtk_doc'))
---- a/pam/meson.build
-+++ b/pam/meson.build
-@@ -16,6 +16,7 @@
- dependencies: [
- libsystemd_dep,
- pam_dep,
-+ intl_dep,
- ],
- c_args: [
- '-DLOCALEDIR="@0@"'.format(localedir),