ossp-pkg/pth/pth_p.h.in 1.26 -> 1.27
--- pth_p.h.in 2000/07/01 12:40:51 1.26
+++ pth_p.h.in 2000/10/03 09:26:47 1.27
@@ -40,6 +40,7 @@
#include <sys/types.h>
#include <sys/time.h>
#include <sys/wait.h>
+#include <sys/stat.h>
#include <sys/socket.h>
/* library version */
@@ -69,6 +70,16 @@
#include <dmalloc.h>
#endif
+/* paths */
+#ifdef HAVE_PATHS_H
+#include <paths.h>
+#endif
+#ifdef _PATH_BSHELL
+#define PTH_PATH_BINSH _PATH_BSHELL
+#else
+#define PTH_PATH_BINSH "/bin/sh"
+#endif
+
/* non-blocking flags */
#ifdef O_NONBLOCK
#define O_NONBLOCKING O_NONBLOCK
|
|