#
196f4c26 |
| 10-Apr-2002 |
Ruslan Ermilov <ru@FreeBSD.org> |
Fixed broken "make depend; make clean; make all" sequence.
I've looked for this example for a long time, to demonstrate some people why it's a really BAD idea to use ${.OBJDIR} instead of ".". I ho
Fixed broken "make depend; make clean; make all" sequence.
I've looked for this example for a long time, to demonstrate some people why it's a really BAD idea to use ${.OBJDIR} instead of ".". I hope these people are reading this. :-)
Approved by: des
show more ...
|
#
51906f45 |
| 18-Mar-2002 |
Crist J. Clark <cjc@FreeBSD.org> |
Fix world breakage introduced by my recent modifications to chpass(8). The relations between libc, libpam, chpass, passwd, and vipw are a mess and probably should be cleaned up.
Submitted by: Peter
Fix world breakage introduced by my recent modifications to chpass(8). The relations between libc, libpam, chpass, passwd, and vipw are a mess and probably should be cleaned up.
Submitted by: Peter Pentchev <roam@ringlet.net>
show more ...
|
#
f651c153 |
| 07-Mar-2002 |
Maxim Sobolev <sobomax@FreeBSD.org> |
Don't ignore system CFLAGS.
|
#
519b6a4c |
| 05-Mar-2002 |
Dag-Erling Smørgrav <des@FreeBSD.org> |
Switch to OpenPAM. Bump library version. Modules are now versioned, so applications linked with Linux-PAM will still work. Remove pam_get_pass(); OpenPAM has pam_get_authtok(). Remove pam_prompt();
Switch to OpenPAM. Bump library version. Modules are now versioned, so applications linked with Linux-PAM will still work. Remove pam_get_pass(); OpenPAM has pam_get_authtok(). Remove pam_prompt(); OpenPAM has pam_{,v}{error,info,prompt}(). Remove pam_set_item(3) man page as OpenPAM has its own.
Sponsored by: DARPA, NAI Labs
show more ...
|
#
30577d19 |
| 06-Feb-2002 |
Mark Murray <markm@FreeBSD.org> |
Remove NO_WERROR, now that WARNS=n is gone.
|
Revision tags: release/4.5.0_cvs, release/4.4.0_cvs |
|
#
c2065008 |
| 24-Jan-2002 |
Mark Murray <markm@FreeBSD.org> |
WARNS=4 fixes. Protect with NO_WERROR for the modules that have warnings that are hard to fix or that I've been asked to leave alone.
|
#
3d55a6c0 |
| 26-Aug-2001 |
Mark Murray <markm@FreeBSD.org> |
Big module makeover; improve logging, standardise variable names, introduce ability to change passwords for both "usual" Unix methods and NIS.
|
#
1642eb1a |
| 09-Jul-2001 |
Mark Murray <markm@FreeBSD.org> |
Clean up (and in some cases write) the PAM mudules, using o The new options-processing API o The new DEBUG-logging API
Add man(1) pages for ALL modules. MDOC-Police welcome to check this.
Audit, cl
Clean up (and in some cases write) the PAM mudules, using o The new options-processing API o The new DEBUG-logging API
Add man(1) pages for ALL modules. MDOC-Police welcome to check this.
Audit, clean up while I'm here.
show more ...
|
#
084a4682 |
| 04-Jun-2001 |
Mark Murray <markm@FreeBSD.org> |
Big module cleanup.
Move common stuff into Makefile.inc, and tidy up all the Makefiles as a result.
Build new modules.
Put a commented-out dependancy on libpam for the (shared) modules. I can't br
Big module cleanup.
Move common stuff into Makefile.inc, and tidy up all the Makefiles as a result.
Build new modules.
Put a commented-out dependancy on libpam for the (shared) modules. I can't bring this in just yet, as the dependancy (modules->libpam) is reversed for the static case (libpam->modules).
show more ...
|
Revision tags: release/4.3.0_cvs, release/4.3.0 |
|
#
3f6014e6 |
| 06-Jan-2001 |
David E. O'Brien <obrien@FreeBSD.org> |
Use a unified libgcc rather than a seperate one for threaded and non-threaded programs. This provides threaded programs with the needed exception frame symbols.
parts submitted by: Max Khon <fjoe@i
Use a unified libgcc rather than a seperate one for threaded and non-threaded programs. This provides threaded programs with the needed exception frame symbols.
parts submitted by: Max Khon <fjoe@iclub.nsu.ru> PR: 23252
show more ...
|
Revision tags: release/4.2.0, release/4.1.1_cvs, release/4.1.0, release/3.5.0_cvs, release/4.0.0_cvs, release/3.4.0_cvs |
|
#
394b3be1 |
| 30-Sep-1999 |
Mark Murray <markm@FreeBSD.org> |
Add libcrypt. This previously/coincidentally worked for login, because login was already linked against it, but others have a problem.
|
Revision tags: release/3.3.0_cvs, release/3.2.0 |
|
#
d65b34db |
| 08-May-1999 |
John Polstra <jdp@FreeBSD.org> |
Revive the pam_deny and pam_permit modules from Linux-PAM. They are simple enough to be trusted.
Add account management functionality to the pam_unix module.
These changes should make it possible
Revive the pam_deny and pam_permit modules from Linux-PAM. They are simple enough to be trusted.
Add account management functionality to the pam_unix module.
These changes should make it possible to use PAM in some ports.
Submitted by: Max Khon <fjoe@iclub.nsu.ru>
show more ...
|
Revision tags: release/3.1.0, release/3.0.0, release/2.2.8 |
|
#
9294327d |
| 20-Jan-1999 |
John Polstra <jdp@FreeBSD.org> |
Make it possible to use PAM in statically-linked applications.
|
#
9a10bb17 |
| 18-Nov-1998 |
John Polstra <jdp@FreeBSD.org> |
Build structure for contribified Linux-PAM, plus some home-grown modules for FreeBSD's standard authentication methods. Although the Linux-PAM modules are present in the contrib tree, we don't use a
Build structure for contribified Linux-PAM, plus some home-grown modules for FreeBSD's standard authentication methods. Although the Linux-PAM modules are present in the contrib tree, we don't use any of them.
The main library "libpam" is composed of sources taken from three places. First are the standard Linux-PAM libpam sources from the contrib tree. Second are the Linux-PAM "libpam_misc" sources, also from the contrib tree. In Linux these form a separate library. But as Mike Smith pointed out to me, that seems pointless, so I have combined them into the libpam library. Third are some additional sources from the "src/lib/libpam" tree with some common functions that make it easier to write modules. Those I wrote myself.
This work has been donated to FreeBSD by Juniper Networks, Inc.
show more ...
|
Revision tags: release/7.4.0_cvs, release/8.2.0_cvs, release/7.4.0, release/8.2.0, release/8.1.0_cvs, release/8.1.0, release/7.3.0_cvs, release/7.3.0, release/8.0.0_cvs, release/8.0.0, release/7.2.0_cvs, release/7.2.0, release/7.1.0_cvs, release/7.1.0, release/6.4.0_cvs, release/6.4.0, release/7.0.0_cvs, release/7.0.0, release/6.3.0_cvs, release/6.3.0 |
|
#
4f6d329f |
| 20-Oct-2007 |
Ruslan Ermilov <ru@FreeBSD.org> |
- Convert NO_INSTALLLIB option to a new syntax: makefiles should test MK_INSTALLLIB, users can set WITHOUT_INSTALLLIB. The old NO_INSTALLLIB is still supported as several makefiles set it.
- Wh
- Convert NO_INSTALLLIB option to a new syntax: makefiles should test MK_INSTALLLIB, users can set WITHOUT_INSTALLLIB. The old NO_INSTALLLIB is still supported as several makefiles set it.
- While here, fix an install when instructed not to install libs (usr.bin/lex/lib/Makefile).
PR: bin/114200 Submitted by: Henrik Brix Andersen
show more ...
|
Revision tags: release/6.2.0_cvs, release/6.2.0, release/5.5.0_cvs, release/5.5.0, release/6.1.0_cvs, release/6.1.0 |
|
#
c365539d |
| 19-Mar-2006 |
Ruslan Ermilov <ru@FreeBSD.org> |
Fix build until I find a way to handle this case properly.
|
#
e1fe3dba |
| 17-Mar-2006 |
Ruslan Ermilov <ru@FreeBSD.org> |
Reimplementation of world/kernel build options. For details, see:
http://lists.freebsd.org/pipermail/freebsd-current/2006-March/061725.html
The src.conf(5) manpage is to follow in a few days.
Bro
Reimplementation of world/kernel build options. For details, see:
http://lists.freebsd.org/pipermail/freebsd-current/2006-March/061725.html
The src.conf(5) manpage is to follow in a few days.
Brought to you by: imp, jhb, kris, phk, ru (all bugs are mine)
show more ...
|
Revision tags: release/6.0.0_cvs, release/6.0.0, release/5.4.0_cvs, release/5.4.0, release/4.11.0_cvs, release/4.11.0 |
|
#
6c58990d |
| 13-Nov-2004 |
Bjoern A. Zeeb <bz@FreeBSD.org> |
Add knob NO_NIS (fka NO_YP_LIBC) and make world compileable when set. If turned on no NIS support and related programs will be built.
Lost parts rediscovered by: Danny Braniss <danny at cs.huji.ac.
Add knob NO_NIS (fka NO_YP_LIBC) and make world compileable when set. If turned on no NIS support and related programs will be built.
Lost parts rediscovered by: Danny Braniss <danny at cs.huji.ac.il> PR: bin/68303 No objections: des, gshapiro, nectar Reviewed by: ru Approved by: rwatson (mentor) MFC after: 2 weeks
show more ...
|
Revision tags: release/5.3.0_cvs, release/5.3.0, release/4.10.0_cvs, release/4.10.0, release/5.2.1_cvs, release/5.2.1, release/5.2.0_cvs, release/5.2.0, release/4.9.0_cvs, release/4.9.0, release/5.1.0_cvs, release/5.1.0, release/4.8.0_cvs, release/4.8.0 |
|
#
7f03a257 |
| 09-Mar-2003 |
David E. O'Brien <obrien@FreeBSD.org> |
style.Makefile(5) police (I've tried to keep to the spirit of the original formatting)
Reviewed by: des
|
Revision tags: release/5.0.0_cvs, release/5.0.0, release/4.7.0_cvs, release/4.6.2_cvs, release/4.6.2, release/4.6.1, release/4.6.0_cvs |
|
#
f1d05925 |
| 08-May-2002 |
Dag-Erling Smørgrav <des@FreeBSD.org> |
Use libutil and libypclnt for all passwd manipulation and NIS needs.
Sponsored by: DARPA, NAI Labs
|
#
ff1bc287 |
| 15-Apr-2002 |
Dag-Erling Smørgrav <des@FreeBSD.org> |
Dike out most of the NIS code and replace it with calls to libypclnt. Rework pam_sm_chauthtok() so it (mostly?) works. The standard pw stuff still needs to move into a library somewhere.
Sponsored b
Dike out most of the NIS code and replace it with calls to libypclnt. Rework pam_sm_chauthtok() so it (mostly?) works. The standard pw stuff still needs to move into a library somewhere.
Sponsored by: DARPA, NAI Labs
show more ...
|
#
90a9863e |
| 10-Apr-2002 |
Ruslan Ermilov <ru@FreeBSD.org> |
Moved SHLIB_NAME definition into one place.
Approved by: des
|
#
196f4c26 |
| 10-Apr-2002 |
Ruslan Ermilov <ru@FreeBSD.org> |
Fixed broken "make depend; make clean; make all" sequence.
I've looked for this example for a long time, to demonstrate some people why it's a really BAD idea to use ${.OBJDIR} instead of ".". I ho
Fixed broken "make depend; make clean; make all" sequence.
I've looked for this example for a long time, to demonstrate some people why it's a really BAD idea to use ${.OBJDIR} instead of ".". I hope these people are reading this. :-)
Approved by: des
show more ...
|
#
51906f45 |
| 18-Mar-2002 |
Crist J. Clark <cjc@FreeBSD.org> |
Fix world breakage introduced by my recent modifications to chpass(8). The relations between libc, libpam, chpass, passwd, and vipw are a mess and probably should be cleaned up.
Submitted by: Peter
Fix world breakage introduced by my recent modifications to chpass(8). The relations between libc, libpam, chpass, passwd, and vipw are a mess and probably should be cleaned up.
Submitted by: Peter Pentchev <roam@ringlet.net>
show more ...
|
#
f651c153 |
| 07-Mar-2002 |
Maxim Sobolev <sobomax@FreeBSD.org> |
Don't ignore system CFLAGS.
|