Age | Commit message (Collapse) | Author |
|
Add --enable-runtime-debugging option to ./configure.
Add example logmsg() to tacc.c so it can be built with debugging.
Fix logmsg() prototype (it's supposed to match the prototype of
syslog() which returns void).
Export build-time value of --enable-runtime-debugging into libtac.pc.
|
|
Turn on stricter compiler warnings
|
|
Specifically, tacc calls RAND_pseudo_bytes() which is part of openssl,
and without that we can't build it.
|
|
Avoid any confusion which might arise from having the libraries
be built against <openssl/md5.h> but shipping "lib/md5.h" anyway.
|
|
|
|
And fix subsequent warnings caused by:
- shadowed variables (i.e. variables existing in nested scopes);
- signed vs. unsigned comparisons
- string pointers and buffers being unsigned which don't need to be;
- unnecessary casts;
- unused variables (or only used when debugging is enabled);
|
|
|
|
|
|
Add --disable-doc to not install docs
|
|
Instruct libtool not to build static libs at all rather than
removing the static lib at install
|
|
Fix building in a separate build dir.
|
|
Allow to configure an individual timeout per TACACS+ server.
Bumped SO-version due to API change.
|
|
a more conservative method instead
|
|
This allows to specify from which source address/interface the TACACS+
client connection gets initiated.
Bump SO-versioning due to API change.
|
|
|
|
Additional install public headers for libtac shared library.
SO-Versioning is initially set to 0:0:0.
|
|
|
|
|
|
|