diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-20 22:17:53 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-01-20 22:17:53 +0000 |
commit | 8c259f562be24570a19fd94b223034ae8c6e4277 (patch) | |
tree | 1b6506a2ce27e4ca9ce743f8f00f14c3114d523d /osdep-unknown.c | |
parent | caa93f0e02bfeedff48bb1fe19460732b08e39d1 (diff) | |
download | rtmux-8c259f562be24570a19fd94b223034ae8c6e4277.tar.gz rtmux-8c259f562be24570a19fd94b223034ae8c6e4277.tar.bz2 rtmux-8c259f562be24570a19fd94b223034ae8c6e4277.zip |
Darwin support for automatic-rename, from joshe.
Diffstat (limited to 'osdep-unknown.c')
-rw-r--r-- | osdep-unknown.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/osdep-unknown.c b/osdep-unknown.c index cbfac3a0..1b5f4516 100644 --- a/osdep-unknown.c +++ b/osdep-unknown.c @@ -1,4 +1,4 @@ -/* $Id: osdep-unknown.c,v 1.1 2009-01-20 19:35:03 nicm Exp $ */ +/* $Id: osdep-unknown.c,v 1.2 2009-01-20 22:17:53 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net> @@ -16,7 +16,8 @@ * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#if !defined(__OpenBSD__) && !defined(__FreeBSD__) && !defined(__linux__) +#if !defined(__OpenBSD__) && !defined(__FreeBSD__) && !defined(__linux__) && \ + !defined(__APPLE__) #include <sys/types.h> |