libarchive: Do not use pthread.h API without header

This commit is contained in:
Brad King 2015-10-26 09:04:44 -04:00
parent 43d577dcb9
commit 1e47381730

View File

@ -142,11 +142,10 @@ struct arc4_stream {
uint8_t s[256]; uint8_t s[256];
}; };
static pthread_mutex_t arc4random_mtx = PTHREAD_MUTEX_INITIALIZER;
#define RANDOMDEV "/dev/urandom" #define RANDOMDEV "/dev/urandom"
#define KEYSIZE 128 #define KEYSIZE 128
#ifdef HAVE_PTHREAD_H #ifdef HAVE_PTHREAD_H
static pthread_mutex_t arc4random_mtx = PTHREAD_MUTEX_INITIALIZER;
#define _ARC4_LOCK() pthread_mutex_lock(&arc4random_mtx); #define _ARC4_LOCK() pthread_mutex_lock(&arc4random_mtx);
#define _ARC4_UNLOCK() pthread_mutex_unlock(&arc4random_mtx); #define _ARC4_UNLOCK() pthread_mutex_unlock(&arc4random_mtx);
#else #else