Merge "BuildSystem: Fix build on FreeBSD due to missing crypt.h" into 13

This commit is contained in:
Joshua Colp
2017-06-12 15:57:32 -05:00
committed by Gerrit Code Review

View File

@@ -31,7 +31,7 @@
ASTERISK_FILE_VERSION(__FILE__, "$Revision$") ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#include <unistd.h> #include <unistd.h>
#if defined(HAVE_CRYPT_R) #if defined(HAVE_CRYPT_R) && !defined(__FreeBSD__)
#include <crypt.h> #include <crypt.h>
#endif #endif