diff options
author | Steve Langasek <vorlon@debian.org> | 2003-07-13 18:41:04 +0000 |
---|---|---|
committer | Steve Langasek <vorlon@debian.org> | 2003-07-13 18:41:04 +0000 |
commit | 2f36c829822a4b016ba075575c720ad9cb3c6463 (patch) | |
tree | 51b4a20becbd7b9d92b6bc0d73565a438525265d /Makefile | |
parent | eaffa5288f918a542c5322b79975793efc1b3a10 (diff) | |
download | pam-2f36c829822a4b016ba075575c720ad9cb3c6463.tar.gz pam-2f36c829822a4b016ba075575c720ad9cb3c6463.tar.bz2 pam-2f36c829822a4b016ba075575c720ad9cb3c6463.zip |
Relevant BUGIDs: 643357
Purpose of commit: bugfix
Commit summary:
---------------
Patch from Sam Hartman to fix handling of module linking on Linux:
modules should be linked against libpam if they call any functions from
the library, since not all platforms will correctly resolve symbol
references otherwise. Also, make sure we use gcc, not ld, when linking,
since there's additional linker glue that gcc will pull in for us.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -19,6 +19,10 @@ THINGSTOMAKE = modules libpam libpamc libpam_misc doc examples all: $(THINGSTOMAKE) + # Let's get a dynamic libpam.so first + bootstrap-libpam: _pam_aconf.h prep + $(MAKE) -C libpam bootstrap-libpam + prep: rm -f security ln -sf . security @@ -52,7 +56,7 @@ configure: configure.in @rm -f configure @exit 1 -$(THINGSTOMAKE): _pam_aconf.h prep +$(THINGSTOMAKE): _pam_aconf.h prep bootstrap-libpam $(MAKE) -C $@ all install: _pam_aconf.h prep |