search for: _path_xxx

Displaying 4 results from an estimated 4 matches for "_path_xxx".

1999 Dec 21
0
Problem with UTMP recording
...ine if you have the z library (-lz). */ #define HAVE_LIBZ 1 /* ******************* Shouldn't need to edit below this line ************** */ #include <sys/types.h> /* For u_intXX_t */ #include <sys/socket.h> /* For SHUT_XXXX */ #ifdef HAVE_PATHS_H # include <paths.h> /* For _PATH_XXX */ #endif #ifdef HAVE_UTMP_H # include <utmp.h> /* For _PATH_XXX */ #endif #ifdef HAVE_UTMPX_H # include <utmpx.h> /* For _PATH_XXX */ #endif #ifdef HAVE_SYS_TIME_H # include <sys/time.h> /* For timersub */ #endif #ifdef HAVE_MAILLOCK_H #include <maillock.h> #endif #...
1999 Nov 19
1
[solaris 7 patch] resubmit and extended ...
Okay, everything as the first large one I sent today, with a few extra mods. _PATH_MAILDIR is only used in sshd.c, that I can see, so moved the #ifdef from config.h.in to there. several files had __progname defined in the middle of the code, as well as at the top of the code, so cleaned those out. all the fixes for u_int32_t -> uint32_t and u_int16_t -> uint16_t, plus added appropriate
1999 Nov 23
2
Fixes for Solaris
...it below this line ************** */ -# include <sys/types.h> /* For u_intXX_t */ -# include <sys/socket.h> /* For SHUT_XXXX */ +#include <sys/types.h> /* For u_intXX_t */ +#include <sys/socket.h> /* For SHUT_XXXX */ #ifdef HAVE_PATHS_H # include <paths.h> /* For _PATH_XXX */ #endif +#ifdef HAVE_UTMP_H +# include <utmp.h> /* For _PATH_XXX */ +#endif + #ifdef HAVE_SYS_TIME_H # include <sys/time.h> /* For timersub */ #endif +#ifdef HAVE_MAILLOCK_H +#include <maillock.h> +#endif + #ifndef SHUT_RDWR enum { @@ -174,6 +182,10 @@ #ifndef _P...
2003 Mar 24
0
[Bug 518] _PATH_STDPATH can get redefined in includes.h if paths.h exists
...Priority: P2 Component: Build system AssignedTo: openssh-unix-dev at mindrot.org ReportedBy: rvz at lucent.com In versions of openssh 3.2.3p1 and later, the defines.h file was modified and the following was added: #ifdef HAVE_PATHS_H # include <paths.h> /* For _PATH_XXX */ #endif Unfortunately the above comes after the inclusion of defines.h (through config.h) which sets _PATH_STDPATH to USER_PATH if it has been defined in the configure file. The result of which resets _PATH_STDPATH back to the system default and not what was computed during the configure run....