Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ src/pam_radius_auth.o: src/pam_radius_auth.c src/pam_radius_auth.h
src/md5.o: src/md5.c src/md5.h
@$(MAKE) -C src $(notdir $@)

src/strlcat.o: src/strlcat.c
@$(MAKE) -C src $(notdir $@)

#
# This is what should work on Irix:
#pam_radius_auth.so: pam_radius_auth.o md5.o
Expand All @@ -78,7 +81,7 @@ src/md5.o: src/md5.c src/md5.h
#
# gcc -shared pam_radius_auth.o md5.o -lpam -lc -o pam_radius_auth.so
#
pam_radius_auth.so: src/pam_radius_auth.o src/md5.o
pam_radius_auth.so: src/pam_radius_auth.o src/md5.o src/strlcat.o
$(CC) $(LDFLAGS) $^ -lpam -o pam_radius_auth.so

######################################################################
Expand Down
3 changes: 3 additions & 0 deletions USAGE
Original file line number Diff line number Diff line change
Expand Up @@ -117,5 +117,8 @@ privilege_level - If set, the value of the Management-Privilege-Level RADIUS
attribute from the Access-Accept response will be put in to
the "Privilege" environment variable.

use_tcp - Use TCP instead of the default UDP to communicate with
the servers.

---------------------------------------------------------------------------

Loading