1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
// -*- MPC -*-
// $Id: openssl.mpb 1577 2009-05-07 15:44:53Z elliott_c $
// openssl is a completely different feature than ssl.
// Currently ssl uses openssl, and openssl is enabled by
// default. If we ever add a new ssl library, then you
// would likely enable only one ssl library feature.
feature(openssl) {
includes += $(SSL_ROOT)/include
libpaths += $(SSL_ROOT)/lib
specific(prop:windows) {
lit_libs += libeay32 ssleay32
includes += $(SSL_ROOT)/inc32
libpaths += $(SSL_ROOT)/out32dll $(SSL_ROOT)/out32
} else {
lit_libs += ssl crypto
// Some Linux OpenSSL installations compile in Kerberos support. Add
// the Kerberos include path to preprocessor include path.
includes += /usr/kerberos/include
}
// Some prepackaged installations of OpenSSL have libraries in different
// locations.
specific(prop:borland) {
libpaths += $(SSL_ROOT)/lib/Builder5
}
specific(prop:microsoft) {
libpaths += $(SSL_ROOT)/lib/VC
}
}
|