浏览代码

make it possible to set SSL_LIB and CRYPTO_LIB during build

Sergey Lyubka 14 年之前
父节点
当前提交
0db96c5ba5
共有 2 个文件被更改,包括 6 次插入0 次删除
  1. 2 0
      Makefile
  2. 4 0
      mongoose.c

+ 2 - 0
Makefile

@@ -14,6 +14,8 @@ all:
 # -DNO_SSL		- disable SSL functionality (-2kb)
 # -DCONFIG_FILE=\"file\" - use `file' as the default config file
 # -DHAVE_STRTOUI64	- use system strtoui64() function for strtoull()
+# -DSSL_LIB=\"libssl.so.<version>\" - use system versioned SSL shared object
+# -DCRYPTO_LIB=\"libcrypto.so.<version>\" - use system versioned CRYPTO so
 
 
 ##########################################################################

+ 4 - 0
mongoose.c

@@ -181,9 +181,13 @@ typedef struct DIR {
 #define SSL_LIB   "libssl.dylib"
 #define CRYPTO_LIB  "libcrypto.dylib"
 #else
+#if !defined(SSL_LIB)
 #define SSL_LIB   "libssl.so"
+#endif
+#if !defined(CRYPTO_LIB)
 #define CRYPTO_LIB  "libcrypto.so"
 #endif
+#endif
 #define DIRSEP   '/'
 #define IS_DIRSEP_CHAR(c) ((c) == '/')
 #define O_BINARY  0