- (dtucker) [readconf.c] Wrap paths.h inside an ifdef. Allows building on
Solaris.
This commit is contained in:
parent
9edcbff46f
commit
a3357661ee
|
@ -41,6 +41,8 @@
|
||||||
- (dtucker) [configure.ac] Also look in inttypes.h for uintXX_t types.
|
- (dtucker) [configure.ac] Also look in inttypes.h for uintXX_t types.
|
||||||
- (dtucker) [configure.ac] Have --without-hardening not turn off
|
- (dtucker) [configure.ac] Have --without-hardening not turn off
|
||||||
stack-protector since that has a separate flag that's been around a while.
|
stack-protector since that has a separate flag that's been around a while.
|
||||||
|
- (dtucker) [readconf.c] Wrap paths.h inside an ifdef. Allows building on
|
||||||
|
Solaris.
|
||||||
|
|
||||||
20140118
|
20140118
|
||||||
- (djm) OpenBSD CVS Sync
|
- (djm) OpenBSD CVS Sync
|
||||||
|
|
|
@ -27,7 +27,9 @@
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <netdb.h>
|
#include <netdb.h>
|
||||||
#include <paths.h>
|
#ifdef HAVE_PATHS_H
|
||||||
|
# include <paths.h>
|
||||||
|
#endif
|
||||||
#include <pwd.h>
|
#include <pwd.h>
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
|
Loading…
Reference in New Issue