diff options
author | Thorsten Kukuk <kukuk@thkukuk.de> | 2005-08-18 11:13:30 +0000 |
---|---|---|
committer | Thorsten Kukuk <kukuk@thkukuk.de> | 2005-08-18 11:13:30 +0000 |
commit | d0fdfbbb6df637df2049129a12fd51dd313937e3 (patch) | |
tree | af321381af8b405ffc01c1ce5850dcc25e153891 /modules/pam_motd | |
parent | 61453cd289e5bcf6f0c87ede494fa54e4e282456 (diff) | |
download | linux-pam-git-d0fdfbbb6df637df2049129a12fd51dd313937e3.tar.gz |
Relevant BUGIDs: none
Purpose of commit: new feature
Commit summary:
---------------
Use modules.map as linker version map for all PAM modules
Use /var/run for debug output instead of /tmp (Patches from ALT Linux/OWL)
Diffstat (limited to 'modules/pam_motd')
-rw-r--r-- | modules/pam_motd/Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/pam_motd/Makefile.am b/modules/pam_motd/Makefile.am index 9e2faa41..859e4419 100644 --- a/modules/pam_motd/Makefile.am +++ b/modules/pam_motd/Makefile.am @@ -9,8 +9,11 @@ secureconfdir = $(SCONFIGDIR) AM_CFLAGS = -I$(top_srcdir)/libpam/include -I$(top_srcdir)/libpamc/include \ -I$(top_srcdir)/modules/pammodutil/include/ -AM_LDFLAGS = -avoid-version -module \ +AM_LDFLAGS = -no-undefined -avoid-version -module \ -L$(top_builddir)/modules/pammodutil -lpammodutil \ -L$(top_builddir)/libpam -lpam +if HAVE_VERSIONING + AM_LDFLAGS += -Wl,--version-script=../modules.map +endif securelib_LTLIBRARIES = pam_motd.la |