blob: 7a052b23b987fad0a97d514f0123228fbb15998b [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
Patrick Williams8e7b46e2023-05-01 14:19:06 -05006Upstream-Status: Pending
Brad Bishopd7bf8c12018-02-25 22:55:05 -05007Signed-off-by: Khem Raj <raj.khem@gmail.com>
8---
9 Makefile.am | 2 +-
10 1 file changed, 1 insertion(+), 1 deletion(-)
11
12diff --git a/Makefile.am b/Makefile.am
Andrew Geissler595f6302022-01-24 19:11:47 +000013index 779416a..67e2cc3 100644
Brad Bishopd7bf8c12018-02-25 22:55:05 -050014--- a/Makefile.am
15+++ b/Makefile.am
Andrew Geissler595f6302022-01-24 19:11:47 +000016@@ -82,7 +82,7 @@ endif
Brad Bishopd7bf8c12018-02-25 22:55:05 -050017 userhelper_SOURCES = userhelper.c userhelper.h shvar.c shvar.h
18 userhelper_CPPFLAGS = $(AM_CPPFLAGS) -DSYSCONFDIR='"$(sysconfdir)"'
Andrew Geissler595f6302022-01-24 19:11:47 +000019 userhelper_LDADD = liblib.a $(LIBUSER_LIBS) $(GLIB_LIBS) $(PAM_LIBS) -lm \
Brad Bishopd7bf8c12018-02-25 22:55:05 -050020- $(SELINUX_LIBS) $(EFENCE_LIBS)
21+ $(SELINUX_LIBS) $(EFENCE_LIBS) -lm
22
Andrew Geissler595f6302022-01-24 19:11:47 +000023 if GTK
Brad Bishopd7bf8c12018-02-25 22:55:05 -050024 userinfo_SOURCES = userinfo.c
Brad Bishopd7bf8c12018-02-25 22:55:05 -050025--
Andrew Geissler595f6302022-01-24 19:11:47 +0000262.31.1
Brad Bishopd7bf8c12018-02-25 22:55:05 -050027