blob: 8ea34cf239969739783b7afe24fe2551833ca97e [file] [log] [blame]
Brad Bishopd7bf8c12018-02-25 22:55:05 -05001From fda0ff49968aebc7b27f9711cf6eb7f6c560adc1 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Tue, 25 Jul 2017 18:28:15 -0700
4Subject: [PATCH] Makefile.am: Link with libm for powl() API
5
6Signed-off-by: Khem Raj <raj.khem@gmail.com>
7---
8 Makefile.am | 2 +-
9 1 file changed, 1 insertion(+), 1 deletion(-)
10
11diff --git a/Makefile.am b/Makefile.am
Andrew Geissler595f6302022-01-24 19:11:47 +000012index 779416a..67e2cc3 100644
Brad Bishopd7bf8c12018-02-25 22:55:05 -050013--- a/Makefile.am
14+++ b/Makefile.am
Andrew Geissler595f6302022-01-24 19:11:47 +000015@@ -82,7 +82,7 @@ endif
Brad Bishopd7bf8c12018-02-25 22:55:05 -050016 userhelper_SOURCES = userhelper.c userhelper.h shvar.c shvar.h
17 userhelper_CPPFLAGS = $(AM_CPPFLAGS) -DSYSCONFDIR='"$(sysconfdir)"'
Andrew Geissler595f6302022-01-24 19:11:47 +000018 userhelper_LDADD = liblib.a $(LIBUSER_LIBS) $(GLIB_LIBS) $(PAM_LIBS) -lm \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050019- $(SELINUX_LIBS) $(EFENCE_LIBS)
20+ $(SELINUX_LIBS) $(EFENCE_LIBS) -lm
21
Andrew Geissler595f6302022-01-24 19:11:47 +000022 if GTK
Brad Bishopd7bf8c12018-02-25 22:55:05 -050023 userinfo_SOURCES = userinfo.c
Brad Bishopd7bf8c12018-02-25 22:55:05 -050024--
Andrew Geissler595f6302022-01-24 19:11:47 +0000252.31.1
Brad Bishopd7bf8c12018-02-25 22:55:05 -050026