Explorar el Código

make it possible to set SSL_LIB and CRYPTO_LIB during build

Sergey Lyubka hace 14 años
padre
commit
0db96c5ba5
Se han modificado 2 ficheros con 6 adiciones y 0 borrados
  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