1 Star 2 Fork 1

codergeek/suricata-master-3.2.x-simple

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
autogen.sh 464 Bytes
一键复制 编辑 原始数据 按行查看 历史
#!/bin/sh
# Run this to generate all the initial makefiles, etc.
if which libtoolize > /dev/null; then
echo "Found libtoolize"
libtoolize -c
elif which glibtoolize > /dev/null; then
echo "Found glibtoolize"
glibtoolize -c
else
echo "Failed to find libtoolize or glibtoolize, please ensure it is installed and accessible via your PATH env variable"
exit 1
fi;
autoreconf -fv --install || exit 1
echo "You can now run \"./configure\" and then \"make\"."
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/codergeek/suricata-master-3.2.x-simple.git
[email protected]:codergeek/suricata-master-3.2.x-simple.git
codergeek
suricata-master-3.2.x-simple
suricata-master-3.2.x-simple
master-3.2.x

搜索帮助