7 Star 8 Fork 4

Gitee 极速下载/suricata

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/OISF/suricata
克隆/下载
autogen.sh 575 Bytes
一键复制 编辑 原始数据 按行查看 历史
Victor Julien 提交于 2018-01-30 19:20 +08:00 . autogen/rust: remove Cargo.lock
#!/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
if which cargo > /dev/null; then
if [ -f rust/Cargo.lock ] ; then
rm -f rust/Cargo.lock
fi
fi;
echo "You can now run \"./configure\" and then \"make\"."
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors/suricata.git
git@gitee.com:mirrors/suricata.git
mirrors
suricata
suricata
master

搜索帮助