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

This commit is contained in:
Jenkins2
2017-06-12 16:33:58 -05:00
committed by Gerrit Code Review

View File

@@ -29,7 +29,7 @@
#include "asterisk.h"
#include <unistd.h>
#if defined(HAVE_CRYPT_R)
#if defined(HAVE_CRYPT_R) && !defined(__FreeBSD__)
#include <crypt.h>
#endif