Change include path of sasl.h for Mac OS X

This commit is contained in:
Wentao Han 2015-11-05 16:23:25 +08:00
parent b58b779e91
commit 9a0a4bebdc
1 changed files with 4 additions and 0 deletions

View File

@ -15,8 +15,12 @@
#include "options.h"
#ifdef HAVE_SASL
#ifdef __APPLE__
#include <sasl/sasl.h>
#else
#include <sasl.h>
#endif
#endif
static void free_attrs(char***);