openssl.mpb

来自「ACE源码」· MPB 代码 · 共 21 行

MPB
21
字号
// -*- MPC -*-
// openssl.mpb,v 1.5 2004/02/16 19:40:58 elliott_c Exp

// 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) {
  specific(borland, bmake, nmake, em3, vc6, vc7, vc71) {
    lit_libs += libeay32 ssleay32
    includes += $(SSL_ROOT)/inc32
    libpaths += $(SSL_ROOT)/out32dll $(SSL_ROOT)/out32
  }

  specific(gnuace, make) {
    lit_libs += ssl crypto
    includes += $(SSL_ROOT)/include
    libpaths += $(SSL_ROOT)/lib
  }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?