diff options
author | Steve Slaven <bpk@hoopajoo.net> | 2005-03-21 18:16:03 (GMT) |
---|---|---|
committer | Steve Slaven <bpk@hoopajoo.net> | 2005-03-21 18:16:03 (GMT) |
commit | 22e2e8b44054a4e95dd473079f0e7800284b0d20 (patch) | |
tree | 86072f1e870cdc8cece3c291eaf768ded81d9bea | |
parent | 7ed05d1b4a4665580489e2534a13fb9b00cf8cef (diff) | |
download | powwow-22e2e8b44054a4e95dd473079f0e7800284b0d20.zip powwow-22e2e8b44054a4e95dd473079f0e7800284b0d20.tar.gz powwow-22e2e8b44054a4e95dd473079f0e7800284b0d20.tar.bz2 |
Don't include dlfcn.h if no libdl
-rw-r--r-- | cmd.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -25,7 +25,10 @@ #include <fcntl.h> #include <unistd.h> #include <errno.h> + +#ifdef HAVE_LIBDL #include <dlfcn.h> +#endif #include "defines.h" #include "main.h" |