aboutsummaryrefslogtreecommitdiff
path: root/include
Commit message (Collapse)AuthorAgeFilesLines
* Added prototypesJoseph Hunkeler2012-05-251-0/+6
|
* PATH_MAX is not defined in limits.h (randomly?) so if it is undefined at ↵Joseph Hunkeler2012-05-251-3/+8
| | | | compile time, it will no longer fail to build.
* Instead of detecting the host type, you may use --enable-compat instead.Joseph Hunkeler2012-05-251-3/+0
| | | | | Enabling compat will build and link against a static library containing string functions not found in older version of glibc.
* Remove strcasestr() and strchrnul() checks from configure, using ↵Alan Brault2012-05-256-13/+14
| | | | | | | | | | | | | libdusercompat.a instead Fix Makefile.am bad entry Clean up compat, bring in strcasestr from OpenBSD and strchrnul from uclibc and separate the headers. Remove config.h from strchrnul.c; not needed Fix numerous shadow declaration bugs that could cause problems for Solaris libc Fix bad prototype using in unlink()
* Initial commitJoseph Hunkeler2012-05-254-0/+228
Partial autotools conversion to help out Joe More autotools migration More autotools migration Add platform detection for Linux vs Solaris Move CFG_PATH out of duser.h and put into configure via --with-config-path Forgot to define ifdef for HAVE_CONFIG_H sigh Add configure checks for strchrnul() and strcasestr() and config.h entries Add __NLINUX__ and __NSOLARIS__ platform checks to configure and config.h entries Forgot compat.c for Solaris platforms sigh Fix spelling mistake: comat.c -> compat.c Fixed typo Make strcasestr() and strchrnul() into separate compat files Force everyone to use compat functions not just Solaris Remove libsysfs from buildconf Add libtool support (needed for libdusercompat.a)