summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorEduardo Chappa <chappa@washington.edu>2020-02-09 22:46:32 -0700
committerEduardo Chappa <chappa@washington.edu>2020-02-09 22:46:32 -0700
commit8781af1dfc9fdc1fbc08b281cc418bee8dde604d (patch)
treec252c33b49b9d1d9f2d4b783095e5b2adac863da /include
parent58e78a3c43f352b3ac1e2e133c0b41930e38cedb (diff)
downloadalpine-8781af1dfc9fdc1fbc08b281cc418bee8dde604d.tar.xz
* Creation of port wxp to build Alpine in Windows XP. At the time
of this writing, the port w32 is the same as the port wxp, but it is intended to target other 32 bit operating systems.
Diffstat (limited to 'include')
-rw-r--r--include/config.wnt.h15
1 files changed, 11 insertions, 4 deletions
diff --git a/include/config.wnt.h b/include/config.wnt.h
index a906b6f..f086793 100644
--- a/include/config.wnt.h
+++ b/include/config.wnt.h
@@ -559,12 +559,19 @@
#define DF_CA_CONTAINER "CAContainer"
#endif /* ENABLE_WINDOWS_LIBRESSL */
-#if !defined(ENABLE_WINDOWS_LIBRESSL) || !defined(W32BITSBUILD)
-#undef DF_ENCRYPTION_RANGE
-#else
+#if defined(ENABLE_WINDOWS_LIBRESSL) && (defined(W32BITSBUILD) || defined(WXPBUILD))
+#define WINDOWS_LIBRESSL_CERTS
+#if defined(W32BITSBUILD)
+#define DEFAULT_SSLCAPATH "certs"
+#define DEFAULT_SSLCAFILE "erts\\cert.pem"
+#endif /* W32BITSBUILD */
+#if defined(WXPBUILD)
#define DEFAULT_SSLCAPATH "C:\\libressl\\ssl\\certs"
#define DEFAULT_SSLCAFILE "C:\\libressl\\ssl\\certs\\cert.pem"
-#endif
+#endif /* WXPBUILD */
+#else
+#undef DF_ENCRYPTION_RANGE
+#endif /* defined(ENABLE_WINDOWS_LIBRESSL) && (defined(W32BITSBUILD) || defined(WXPBUILD)) */
/* Define to 1 if you can safely include both <sys/time.h> and <time.h>. */
/* #define TIME_WITH_SYS_TIME */