mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-02 21:48:20 +03:00
[Thomas:
- make libpam-radius-auth depend on linux-pam (since it's a
linux-pam plugin, it needs some header files from linux-pam) by
adding a "if BR2_PACKAGE_LINUX_PAM...endif" block in
package/Config.in. This way, we will be grouping all the Linux PAM
plugins together.
- Fix the indententation in the Config.in file.
- Use a better Config.in help text, copy/pasted from the website.
- Use a tarball instead of github. This allows to remove
AUTORECONF=YES.
- Add linux-pam as a dependency.
- Use $(TARGET_CONFIGURE_OPTS) instead of passing just CC/LD, but
pass it in the environment rather than as options so that the
CFLAGS/LDFLAGS added by the package Makefile are still taken into
account.
- Use mkdir -p + cp -dpfr instead of $(INSTALL) -D since we are
copying multiple files.
- Add a hash file.]
Signed-off-by: Giovanni Zantedeschi <giovanni.zantedeschi@datacom.ind.br>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
10 lines
347 B
Plaintext
10 lines
347 B
Plaintext
config BR2_PACKAGE_LIBPAM_RADIUS_AUTH
|
|
bool "libpam-radius-auth"
|
|
help
|
|
This is the PAM to RADIUS authentication module. It allows
|
|
any PAM-capable machine to become a RADIUS client for
|
|
authentication and accounting requests. You will need a
|
|
RADIUS server to perform the actual authentication.
|
|
|
|
http://freeradius.org/pam_radius_auth/
|