Toggle navigation
Toggle navigation
此项目
正在载入...
Sign in
胡斌
/
srs
转到一个项目
Toggle navigation
项目
群组
代码片段
帮助
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
winlin
2013-12-10 11:37:59 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
ae18c388c1526ada28d295303b57a04c1556500b
ae18c388
1 parent
55a81fd0
fix bug of build script on centos
显示空白字符变更
内嵌
并排对比
正在显示
1 个修改的文件
包含
22 行增加
和
1 行删除
trunk/auto/depends.sh
trunk/auto/depends.sh
查看文件 @
ae18c38
...
...
@@ -134,11 +134,32 @@ function Centos_prepare()
echo
"install libtool success"
fi
if
[[
! -f /usr/include/pcre.h
]]
;
then
echo
"install pcre-devel"
require_sudoer
"sudo yum install -y pcre-devel"
sudo yum install -y pcre-devel
echo
"install pcre-devel success"
fi
if
[[
! -f /usr/include/zlib.h
]]
;
then
echo
"install zlib-devel"
require_sudoer
"sudo yum install -y zlib-devel"
sudo yum install -y zlib-devel
echo
"install zlib-devel success"
fi
if
[[
! -d /usr/include/freetype2
]]
;
then
echo
"install freetype-devel"
require_sudoer
"sudo yum install -y freetype-devel"
sudo yum install -y freetype-devel
echo
"install freetype-devel success"
fi
if
[[
! -d /usr/include/openssl
]]
;
then
echo
"install openssl-devel"
require_sudoer
"sudo yum install -y openssl-devel"
sudo yum install -y openssl-devel
echo
"install openssl-devel
s
success"
echo
"install openssl-devel success"
fi
echo
"Centos install tools success"
...
...
请
注册
或
登录
后发表评论