Displaying 3 results from an estimated 3 matches for "_path_userpath".
2002 Jul 08
1
PATH problem in Irix.
I recently compiled openssh 3.4p1 for SGI Irix, and found the same problem
I'd had with 2.5.
Viz. that Irix /usr/include/paths.h defines _PATH_USERPATH, not USER_PATH,
so that defines.h doesn't find it and we get the default, which is missing
/usr/bsd (which on Irix has things like head, more, lpr) and /usr/bin/X11.
This annoys the users, who want X11 to work.
I added a test to defines.h, as follows:
--- openssh-3.4p1/defines.h Mon Jun...
2002 Nov 22
1
proposed change to configure
configure currently checks the paths.h file for the definition of
_PATH_STDPATH
On IRIX the define is named _PATH_USERPATH
The following patch to configure allows the correct value to be obtained
--- configure.orig Wed Jun 26 07:08:18 2002
+++ configure Fri Nov 22 10:38:57 2002
@@ -15705,8 +15713,12 @@
#ifdef HAVE_PATHS_H
# include <paths.h>
#endif
+#ifdef _PATH_USERPATH
+# define _PATH_STDPATH _PATH_...
2001 Mar 15
0
problems compiling on Irix
I think I have resolved my problem, but having typed most of this
I might as well send it.
I have OpenSSH_2.5.1p2 which I am trying to build on Irix 5
In Irix /usr/include/paths.h _PATH_ROOTPATH and
_PATH_USERPATH are defined.
defines.h looks for USER_PATH and _PATH_STDPATH and misses this, so
that sshd does not include the path for X11 when users login. I copied a
chunk of ifdef viz.
#ifdef _PATH_USERPATH
# ifdef _PATH_STDPATH
# undef _PATH_STDPATH
# endif
# define _PATH_STDPATH _PATH_USERPATH
#endif
H...