diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-18 19:34:50 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-18 19:34:50 +0000 |
commit | 19b7946a85962f9458325637ff3559bca1286c6b (patch) | |
tree | 7fb0850ed1341a1f2d3ba69fc631c89bb906a426 /tmux.h | |
parent | 83a9f272d8b1d2ec08bc3d5b8fa04d5b8feeb349 (diff) | |
download | rtmux-19b7946a85962f9458325637ff3559bca1286c6b.tar.gz rtmux-19b7946a85962f9458325637ff3559bca1286c6b.tar.bz2 rtmux-19b7946a85962f9458325637ff3559bca1286c6b.zip |
Start of Solaris port.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.145 2008-06-18 18:52:44 nicm Exp $ */ +/* $Id: tmux.h,v 1.146 2008-06-18 19:34:50 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -70,6 +70,11 @@ extern char *__progname; #define TTY_NAME_MAX 32 #endif +#ifdef NO_PATHS_H +#define _PATH_BSHELL "/bin/sh" +#define _PATH_TMP "/tmp/" +#endif + /* Default configuration file. */ #define DEFAULT_CFG ".tmux.conf" |