configure.sh
来自「这是国外的resip协议栈」· Shell 代码 · 共 18 行
SH
18 行
#!/bin/shTLS=""IPV6=""DARWIN_VERSION=`uname -v | awk '{print $4}' | sed 's/\..*//'`if [ "x$DARWIN_VERSION" = "x5" ]; then IPV6="--disable-ipv6"fiif [ -r /usr/include/openssl/ssl.h ]; then TLS="--enable-tls --openssl-prefix=/usr"elif [ -r /sw/include/openssl/ssl.h ]; then TLS="--enable-tls --openssl-prefix=/sw"ficd ../..perl configure.pl --disable-shared --disable-streambuf $TLS $IPV6 $*
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?