From 8f163b8caacff052eab5b1f44794ae92962c5072 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Thu, 27 Nov 2008 18:55:47 +0000 Subject: Support dfly, from joshe. --- tmux.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tmux.c') diff --git a/tmux.c b/tmux.c index a481826d..e18ade15 100644 --- a/tmux.c +++ b/tmux.c @@ -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 @@ -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__ -- cgit