summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-07-07 05:01:27 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2023-07-07 05:01:27 +0000
commit1a31bd6ef4ad2d2f4125c5e4346e5502b8e99000 (patch)
treedc6c42b0486a718499f44207bac0580ff6964c26
parent0bd880edce544582463dace3a458a298c46a4472 (diff)
parentc6cbacee7e128674e7e2ed0ed83589bf3ef5e1e9 (diff)
downloadscrypt-android14-mainline-extservices-release.tar.gz
Snap for 10453563 from c6cbacee7e128674e7e2ed0ed83589bf3ef5e1e9 to mainline-extservices-releaseaml_ext_341620040aml_ext_341518010aml_ext_341414010aml_ext_341317010aml_ext_341131030aml_ext_341027030android14-mainline-extservices-release
Change-Id: Ic7be502f8033c5d3d1c3727890967813a6ff7005
-rw-r--r--Android.bp5
-rw-r--r--config.h2
-rw-r--r--lib/crypto/crypto_scrypt-sse.c2
3 files changed, 9 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index 1d784fc..ae10e23 100644
--- a/Android.bp
+++ b/Android.bp
@@ -53,6 +53,11 @@ cc_library_static {
sdk_version: "17",
host_supported: true,
vendor_available: true,
+ target: {
+ windows: {
+ enabled: true,
+ },
+ },
}
cc_test {
diff --git a/config.h b/config.h
index 3514f39..c388856 100644
--- a/config.h
+++ b/config.h
@@ -21,7 +21,9 @@
#define HAVE_MEMORY_H 1
/* Define to 1 if you have the `posix_memalign' function. */
+#ifndef _WIN32
#define HAVE_POSIX_MEMALIGN 1
+#endif
/* Define to 1 if you have the <stdint.h> header file. */
#define HAVE_STDINT_H 1
diff --git a/lib/crypto/crypto_scrypt-sse.c b/lib/crypto/crypto_scrypt-sse.c
index dd18f29..c50204d 100644
--- a/lib/crypto/crypto_scrypt-sse.c
+++ b/lib/crypto/crypto_scrypt-sse.c
@@ -29,7 +29,9 @@
#include "scrypt_platform.h"
#include <sys/types.h>
+#ifndef _WIN32
#include <sys/mman.h>
+#endif
#include <emmintrin.h>
#include <errno.h>