summaryrefslogtreecommitdiff
path: root/security/pam_howdy/files/patch-meson.build
blob: 534d964c98a3ca77d0bb9a4a4fe6ad46788c24dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--- meson.build.orig	2023-03-08 16:41:32 UTC
+++ meson.build
@@ -4,6 +4,9 @@ threads = dependency('threads')
 libevdev = dependency('libevdev')
 libpam = meson.get_compiler('cpp').find_library('pam')
 threads = dependency('threads')
+# On FreeBSD, libepoll-shim library is required for signalfd.h
+epoll_shim = dependency('epoll-shim', required : false)
+libintl = dependency('intl')
 
 # Translations
 subdir('po')
@@ -17,6 +20,8 @@ shared_library(
 		inih_cpp,
 		threads,
 		libevdev,
+		epoll_shim,
+		libintl,
 	],
 	install: true,
 	install_dir: '/lib/security',