diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-11-27 18:55:47 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-11-27 18:55:47 +0000 |
commit | 8f163b8caacff052eab5b1f44794ae92962c5072 (patch) | |
tree | ff4b98085eb713f5719f866fd8e14902ce999b62 /tmux.c | |
parent | 8bef3adc8348b979f54e6c25ddc0c2f15e1821d1 (diff) | |
download | rtmux-8f163b8caacff052eab5b1f44794ae92962c5072.tar.gz rtmux-8f163b8caacff052eab5b1f44794ae92962c5072.tar.bz2 rtmux-8f163b8caacff052eab5b1f44794ae92962c5072.zip |
Support dfly, from joshe.
Diffstat (limited to 'tmux.c')
-rw-r--r-- | tmux.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.c,v 1.80 2008-11-16 13:28:59 nicm Exp $ */ +/* $Id: tmux.c,v 1.81 2008-11-27 18:55:47 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -34,7 +34,8 @@ #include "tmux.h" #ifdef DEBUG -#ifdef __OpenBSD__ +/* DragonFly uses an OpenBSD-like malloc() since 1.6 */ +#if defined(__OpenBSD__) || defined(__DragonFly__) const char *malloc_options = "AFGJPX"; #endif #ifdef __FreeBSD__ |