diff options
author | Gary <admin@garyshood.com> | 2013-07-23 00:07:23 -0500 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2013-07-25 22:33:24 -0500 |
commit | 9ebd5a6aff73d70717f1d9a2f57767eae3eeb0c8 (patch) | |
tree | 0732c859b154ef706762cc205170cd2808230dfa /src/rc/rc-plugin.h | |
parent | bee59c68c5ff5be426e68ecb603d4cc26542f4af (diff) |
Add support for DragonFly BSD
Diffstat (limited to 'src/rc/rc-plugin.h')
-rw-r--r-- | src/rc/rc-plugin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rc/rc-plugin.h b/src/rc/rc-plugin.h index f763c3e9..b4e40ab4 100644 --- a/src/rc/rc-plugin.h +++ b/src/rc/rc-plugin.h @@ -41,7 +41,7 @@ void rc_plugin_unload(void); void rc_plugin_run(RC_HOOK, const char *value); /* dlfunc defines needed to avoid ISO errors. FreeBSD has this right :) */ -#ifndef __FreeBSD__ +#if !defined(__FreeBSD__) && !defined(__DragonFly__) struct __dlfunc_arg { int __dlfunc_dummy; }; |