Skip to content
项目
群组
代码片段
帮助
正在加载...
登录
切换导航
F
freeswitch
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
张华
freeswitch
Commits
24a8f3da
提交
24a8f3da
authored
6月 17, 2014
作者:
Brian West
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
tweaks
上级
b077217d
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
65 行增加
和
62 行删除
+65
-62
Makefile.centos5
build/Makefile.centos5
+31
-29
Makefile.solaris11
build/Makefile.solaris11
+34
-33
没有找到文件。
build/Makefile.centos5
浏览文件 @
24a8f3da
...
@@ -13,7 +13,7 @@ JPEG=v8d
...
@@ -13,7 +13,7 @@ JPEG=v8d
OPENSSL
=
1.0.1g
OPENSSL
=
1.0.1g
SQLITE
=
autoconf-3080403
SQLITE
=
autoconf-3080403
PCRE
=
8.35
PCRE
=
8.35
CURL
=
7.3
6
.0
CURL
=
7.3
5
.0
SPEEX
=
1.2rc1
SPEEX
=
1.2rc1
LIBEDIT
=
20140213-3.1
LIBEDIT
=
20140213-3.1
LDNS
=
1.6.17
LDNS
=
1.6.17
...
@@ -33,64 +33,66 @@ freeswitch.git/bootstrap.sh: has-git
...
@@ -33,64 +33,66 @@ freeswitch.git/bootstrap.sh: has-git
install
:
freeswitch
install
:
freeswitch
cd
freeswitch.git
&&
make
install
cd
freeswitch.git
&&
make
install
install-git
:
install-git
:
.done
rpm
-i
http://apt.sw.be/redhat/el5/en/x86_64/rpmforge/RPMS/rpmforge-release-0.3.6-1.el5.rf.x86_64.rpm
.done
:
rpm
-i
http://apt.sw.be/redhat/el5/en/x86_64/rpmforge/RPMS/rpmforge-release-0.3.6-1.el5.rf.x86_64.rpm
||
true
yum update
-y
yum update
-y
yum
install
-y
git gcc-c++ wget ncurses-devel zlib-devel e2fsprogs-devel libtool automake autoconf
yum
install
-y
git gcc-c++ wget ncurses-devel zlib-devel e2fsprogs-devel libtool automake autoconf
touch
.done
has-git
:
has-git
:
@
git
--version
||
(
echo
"please install git by running 'make install-git'"
&&
false
)
@
git
--version
||
(
echo
"please install git by running 'make install-git'"
&&
false
)
clean
:
clean
:
@
rm
-rf
openssl
*
ldns
*
jpeg
*
pcre
*
perl
*
pkg-config
*
speex
*
sqlite
*
libedit
*
curl
*
*
~
@
rm
-rf
openssl
*
ldns
*
jpeg
*
pcre
*
perl
*
pkg-config
*
speex
*
sqlite
*
libedit
*
curl
*
*
~
(
cd
freeswitch.git
&&
git clean
-fdx
&&
git reset
--hard
HEAD
&&
git pull
)
(
cd
freeswitch.git
&&
git clean
-fdx
&&
git reset
--hard
HEAD
&&
git pull
)
libjpeg
:
jpeg-8d/
Makefil
e
libjpeg
:
jpeg-8d/
.don
e
jpeg-8d/
Makefil
e
:
jpeg-8d/
.don
e
:
(
test
-d
jpeg-8d
)
||
(
wget
-4
-O
jpegsrc.
$(JPEG)
.tar.gz http://www.ijg.org/files/jpegsrc.
$(JPEG)
.tar.gz
&&
tar
zxfv jpegsrc.
$(JPEG)
.tar.gz
)
(
test
-d
jpeg-8d
)
||
(
wget
-4
-O
jpegsrc.
$(JPEG)
.tar.gz http://www.ijg.org/files/jpegsrc.
$(JPEG)
.tar.gz
&&
tar
zxfv jpegsrc.
$(JPEG)
.tar.gz
)
(
cd
jpeg-8d
&&
./configure
--prefix
=
$(PREFIX)
&&
make
&&
sudo
make
install
)
(
cd
jpeg-8d
&&
./configure
--prefix
=
$(PREFIX)
&&
make
&&
sudo
make
install
&&
touch
.done
)
openssl
:
openssl-$(OPENSSL)/
Makefil
e
openssl
:
openssl-$(OPENSSL)/
.don
e
openssl-$(OPENSSL)/
Makefil
e
:
openssl-$(OPENSSL)
openssl-$(OPENSSL)/
.don
e
:
openssl-$(OPENSSL)
openssl-$(OPENSSL)
:
openssl-$(OPENSSL)
:
(
test
-d
$@
)
||
(
wget
-4
-O
$@
.tar.gz http://www.openssl.org/source/
$@
.tar.gz
&&
tar
zxfv
$@
.tar.gz
)
(
test
-d
$@
)
||
(
wget
-4
-O
$@
.tar.gz http://www.openssl.org/source/
$@
.tar.gz
&&
tar
zxfv
$@
.tar.gz
)
(
cd
$@
&&
./Configure
--prefix
=
$(PREFIX)
linux-x86_64 shared
&&
make
&&
sudo
make
install
)
(
cd
$@
&&
./Configure
--prefix
=
$(PREFIX)
linux-x86_64 shared
&&
make
&&
sudo
make
install
&&
touch
.done
)
sqlite
:
sqlite-$(SQLITE)/
Makefil
e
sqlite
:
sqlite-$(SQLITE)/
.don
e
sqlite-$(SQLITE)/
Makefil
e
:
sqlite-$(SQLITE)
sqlite-$(SQLITE)/
.don
e
:
sqlite-$(SQLITE)
sqlite-$(SQLITE)
:
sqlite-$(SQLITE)
:
(
test
-d
$@
)
||
(
wget
-4
-O
$@
.tar.gz http://www.sqlite.org/2014/
$@
.tar.gz
&&
tar
zxfv
$@
.tar.gz
)
(
test
-d
$@
)
||
(
wget
-4
-O
$@
.tar.gz http://www.sqlite.org/2014/
$@
.tar.gz
&&
tar
zxfv
$@
.tar.gz
)
(
cd
$@
&&
./configure
--prefix
=
$(PREFIX)
&&
make
&&
sudo
make
install
)
(
cd
$@
&&
./configure
--prefix
=
$(PREFIX)
&&
make
&&
sudo
make
install
&&
touch
.done_sqlite
&&
touch
.done
)
pcre
:
pcre-$(PCRE)/
Makefil
e
pcre
:
pcre-$(PCRE)/
.don
e
pcre-$(PCRE)/
Makefil
e
:
pcre-$(PCRE)
pcre-$(PCRE)/
.don
e
:
pcre-$(PCRE)
pcre-$(PCRE)
:
pcre-$(PCRE)
:
(
test
-d
$@
)
||
(
wget
-4
-O
$@
.tar.gz http://downloads.sourceforge.net/project/pcre/pcre/
$(PCRE)
/
$@
.tar.gz
&&
tar
zxfv
$@
.tar.gz
)
(
test
-d
$@
)
||
(
wget
-4
-O
$@
.tar.gz http://downloads.sourceforge.net/project/pcre/pcre/
$(PCRE)
/
$@
.tar.gz
&&
tar
zxfv
$@
.tar.gz
)
(
cd
$@
&&
./configure
--prefix
=
$(PREFIX)
&&
make
&&
sudo
make
install
)
(
cd
$@
&&
./configure
--prefix
=
$(PREFIX)
&&
make
&&
sudo
make
install
&&
touch
.done
)
curl
:
curl-$(CURL)/
Makefil
e
curl
:
curl-$(CURL)/
.don
e
curl-$(CURL)/
Makefil
e
:
curl-$(CURL)
curl-$(CURL)/
.don
e
:
curl-$(CURL)
curl-$(CURL)
:
curl-$(CURL)
:
(
test
-d
$@
)
||
(
wget
-4
-O
$@
.tar.gz http://
www.execve.net/curl
/
$@
.tar.gz
&&
tar
zxfv
$@
.tar.gz
)
(
test
-d
$@
)
||
(
wget
-4
-O
$@
.tar.gz http://
files.freeswitch.org/downloads/libs
/
$@
.tar.gz
&&
tar
zxfv
$@
.tar.gz
)
(
cd
$@
&&
./configure
--prefix
=
$(PREFIX)
&&
make
&&
sudo
make
install
)
(
cd
$@
&&
./configure
--prefix
=
$(PREFIX)
&&
make
&&
sudo
make
install
&&
touch
.done
)
speex
:
speex-$(SPEEX)/
Makefil
e
speex
:
speex-$(SPEEX)/
.don
e
speex-$(SPEEX)/
Makefil
e
:
speex-$(SPEEX)
speex-$(SPEEX)/
.don
e
:
speex-$(SPEEX)
speex-$(SPEEX)
:
speex-$(SPEEX)
:
(
test
-d
$@
)
||
(
wget
-4
-O
$@
.tar.gz http://downloads.xiph.org/releases/speex/
$@
.tar.gz
&&
tar
zxfv
$@
.tar.gz
)
(
test
-d
$@
)
||
(
wget
-4
-O
$@
.tar.gz http://downloads.xiph.org/releases/speex/
$@
.tar.gz
&&
tar
zxfv
$@
.tar.gz
)
(
cd
$@
&&
./configure
--prefix
=
$(PREFIX)
&&
make
&&
sudo
make
install
)
(
cd
$@
&&
./configure
--prefix
=
$(PREFIX)
&&
make
&&
sudo
make
install
&&
touch
.done
)
libedit
:
libedit-$(LIBEDIT)/
Makefil
e
libedit
:
libedit-$(LIBEDIT)/
.don
e
libedit-$(LIBEDIT)/
Makefil
e
:
libedit-$(LIBEDIT)
libedit-$(LIBEDIT)/
.don
e
:
libedit-$(LIBEDIT)
libedit-$(LIBEDIT)
:
libedit-$(LIBEDIT)
:
(
test
-d
$@
)
||
(
wget
-4
-O
$@
.tar.gz http://thrysoee.dk/editline/
$@
.tar.gz
&&
tar
zxfv
$@
.tar.gz
)
(
test
-d
$@
)
||
(
wget
-4
-O
$@
.tar.gz http://thrysoee.dk/editline/
$@
.tar.gz
&&
tar
zxfv
$@
.tar.gz
)
(
cd
$@
&&
./configure
--prefix
=
$(PREFIX)
&&
make
&&
sudo
make
install
)
(
cd
$@
&&
./configure
--prefix
=
$(PREFIX)
&&
make
&&
sudo
make
install
&&
touch
.done
)
ldns
:
ldns-$(LDNS)/
Makefil
e
ldns
:
ldns-$(LDNS)/
.don
e
ldns-$(LDNS)/
Makefile
:
openssl
ldns-$(LDNS)
ldns-$(LDNS)/
.done
:
ldns-$(LDNS)
ldns-$(LDNS)
:
ldns-$(LDNS)
:
(
test
-d
$@
)
||
(
wget
-4
-O
$@
.tar.gz http://www.nlnetlabs.nl/downloads/ldns/
$@
.tar.gz
&&
tar
zxfv
$@
.tar.gz
)
(
test
-d
$@
)
||
(
wget
-4
-O
$@
.tar.gz http://www.nlnetlabs.nl/downloads/ldns/
$@
.tar.gz
&&
tar
zxfv
$@
.tar.gz
)
(
cd
$@
&&
./configure
--with-ssl
=
$(PREFIX)
--prefix
=
$(PREFIX)
&&
make
&&
sudo
make
install
)
(
cd
$@
&&
./configure
--with-ssl
=
$(PREFIX)
--prefix
=
$(PREFIX)
&&
make
&&
sudo
make
install
&&
touch
.done
)
deps
:
libjpeg openssl sqlite pcre curl speex libedit ldns
deps
:
libjpeg openssl sqlite pcre curl speex libedit ldns
build/Makefile.solaris11
浏览文件 @
24a8f3da
...
@@ -12,7 +12,7 @@ JP=v8d
...
@@ -12,7 +12,7 @@ JP=v8d
SSL
=
1.0.1h
SSL
=
1.0.1h
SQLITE
=
autoconf-3080403
SQLITE
=
autoconf-3080403
PCRE
=
8.35
PCRE
=
8.35
CURL
=
7.3
6
.0
CURL
=
7.3
5
.0
SPEEX
=
1.2rc1
SPEEX
=
1.2rc1
LIBEDIT
=
20140213-3.1
LIBEDIT
=
20140213-3.1
LDNS
=
1.6.17
LDNS
=
1.6.17
...
@@ -45,64 +45,65 @@ clean:
...
@@ -45,64 +45,65 @@ clean:
@
rm
-rf
openssl
*
ldns
*
jpeg
*
pcre
*
perl
*
pkg-config
*
speex
*
sqlite
*
libedit
*
curl
*
*
~
@
rm
-rf
openssl
*
ldns
*
jpeg
*
pcre
*
perl
*
pkg-config
*
speex
*
sqlite
*
libedit
*
curl
*
*
~
(
cd
freeswitch.git
&&
git clean
-fdx
&&
git reset
--hard
HEAD
&&
git pull
)
(
cd
freeswitch.git
&&
git clean
-fdx
&&
git reset
--hard
HEAD
&&
git pull
)
libjpeg
:
jpeg-8d/
Makefil
e
libjpeg
:
jpeg-8d/
.don
e
jpeg-8d/
Makefil
e
:
jpeg-8d/
.don
e
:
(
test
-d
jpeg-8d
)
||
(
wget
-4
-O
jpegsrc.
$(JP)
.tar.gz http://www.ijg.org/files/jpegsrc.
$(JP)
.tar.gz
&&
tar
zxfv jpegsrc.
$(JP)
.tar.gz
)
(
test
-d
jpeg-8d
)
||
(
wget
-4
-O
jpegsrc.
$(JP)
.tar.gz http://www.ijg.org/files/jpegsrc.
$(JP)
.tar.gz
&&
tar
zxfv jpegsrc.
$(JP)
.tar.gz
)
(
cd
jpeg-8d
&&
CFLAGS
=
-m64
LDFLAGS
=
-m64
./configure
--prefix
=
$(PREFIX)
&&
gmake
&&
sudo
gmake
install
)
(
cd
jpeg-8d
&&
CFLAGS
=
-m64
LDFLAGS
=
-m64
./configure
--prefix
=
$(PREFIX)
&&
gmake
&&
sudo
gmake
install
&&
touch
.done
)
openssl
:
openssl-$(SSL)/
Makefil
e
openssl
:
openssl-$(SSL)/
.don
e
openssl-$(SSL)/
Makefil
e
:
openssl-$(SSL)
openssl-$(SSL)/
.don
e
:
openssl-$(SSL)
openssl-$(SSL)
:
openssl-$(SSL)
:
(
test
-d
$@
)
||
(
wget
-4
-O
$@
.tar.gz http://www.openssl.org/source/
$@
.tar.gz
&&
tar
zxfv
$@
.tar.gz
)
(
test
-d
$@
)
||
(
wget
-4
-O
$@
.tar.gz http://www.openssl.org/source/
$@
.tar.gz
&&
tar
zxfv
$@
.tar.gz
)
(
cd
$@
&&
CFLAGS
=
-m64
LDFLAGS
=
-m64
./Configure
--prefix
=
$(PREFIX)
solaris64-x86_64-gcc shared
&&
gmake
&&
sudo
gmake
install
)
(
cd
$@
&&
CFLAGS
=
-m64
LDFLAGS
=
-m64
./Configure
--prefix
=
$(PREFIX)
solaris64-x86_64-gcc shared
&&
gmake
&&
sudo
gmake
install
&&
touch
.done
)
sqlite
:
sqlite-$(SQLITE)/
Makefil
e
sqlite
:
sqlite-$(SQLITE)/
.don
e
sqlite-$(SQLITE)/
Makefil
e
:
sqlite-$(SQLITE)
sqlite-$(SQLITE)/
.don
e
:
sqlite-$(SQLITE)
sqlite-$(SQLITE)
:
sqlite-$(SQLITE)
:
(
test
-d
$@
)
||
(
wget
-4
-O
$@
.tar.gz http://www.sqlite.org/2014/
$@
.tar.gz
&&
tar
zxfv
$@
.tar.gz
)
(
test
-d
$@
)
||
(
wget
-4
-O
$@
.tar.gz http://www.sqlite.org/2014/
$@
.tar.gz
&&
tar
zxfv
$@
.tar.gz
)
(
cd
$@
&&
CFLAGS
=
-m64
LDFLAGS
=
-m64
./configure
--prefix
=
$(PREFIX)
&&
gmake
&&
sudo
gmake
install
)
(
cd
$@
&&
CFLAGS
=
-m64
LDFLAGS
=
-m64
./configure
--prefix
=
$(PREFIX)
&&
gmake
&&
sudo
gmake
install
&&
touch
.done
)
pcre
:
pcre-$(PCRE)/
Makefil
e
pcre
:
pcre-$(PCRE)/
.don
e
pcre-$(PCRE)/
Makefil
e
:
pcre-$(PCRE)
pcre-$(PCRE)/
.don
e
:
pcre-$(PCRE)
pcre-$(PCRE)
:
pcre-$(PCRE)
:
(
test
-d
$@
)
||
(
wget
-4
-O
$@
.tar.gz http://downloads.sourceforge.net/project/pcre/pcre/
$(PCRE)
/
$@
.tar.gz
&&
tar
zxfv
$@
.tar.gz
)
(
test
-d
$@
)
||
(
wget
-4
-O
$@
.tar.gz http://downloads.sourceforge.net/project/pcre/pcre/
$(PCRE)
/
$@
.tar.gz
&&
tar
zxfv
$@
.tar.gz
)
(
cd
$@
&&
CXXFLAGS
=
-m64
CFLAGS
=
-m64
LDFLAGS
=
-m64
./configure
--prefix
=
$(PREFIX)
&&
gmake
&&
sudo
gmake
install
)
(
cd
$@
&&
CXXFLAGS
=
-m64
CFLAGS
=
-m64
LDFLAGS
=
-m64
./configure
--prefix
=
$(PREFIX)
&&
gmake
&&
sudo
gmake
install
&&
touch
.done
)
curl
:
curl-$(CURL)/
Makefil
e
curl
:
curl-$(CURL)/
.don
e
curl-$(CURL)/
Makefil
e
:
curl-$(CURL)
curl-$(CURL)/
.don
e
:
curl-$(CURL)
curl-$(CURL)
:
curl-$(CURL)
:
(
test
-d
$@
)
||
(
wget
-4
-O
$@
.tar.gz http://
www.execve.net/curl
/
$@
.tar.gz
&&
tar
zxfv
$@
.tar.gz
)
(
test
-d
$@
)
||
(
wget
-4
-O
$@
.tar.gz http://
files.freeswitch.org/downloads/libs
/
$@
.tar.gz
&&
tar
zxfv
$@
.tar.gz
)
(
cd
$@
&&
CFLAGS
=
-m64
LDFLAGS
=
-m64
./configure
--prefix
=
$(PREFIX)
&&
gmake
&&
sudo
gmake
install
)
(
cd
$@
&&
CFLAGS
=
-m64
LDFLAGS
=
-m64
./configure
--prefix
=
$(PREFIX)
&&
gmake
&&
sudo
gmake
install
&&
touch
.done
)
speex
:
speex-$(SPEEX)/
Makefil
e
speex
:
speex-$(SPEEX)/
.don
e
speex-$(SPEEX)/
Makefil
e
:
speex-$(SPEEX)
speex-$(SPEEX)/
.don
e
:
speex-$(SPEEX)
speex-$(SPEEX)
:
speex-$(SPEEX)
:
(
test
-d
$@
)
||
(
wget
-4
-O
$@
.tar.gz http://downloads.xiph.org/releases/speex/
$@
.tar.gz
&&
tar
zxfv
$@
.tar.gz
)
(
test
-d
$@
)
||
(
wget
-4
-O
$@
.tar.gz http://downloads.xiph.org/releases/speex/
$@
.tar.gz
&&
tar
zxfv
$@
.tar.gz
)
(
cd
$@
&&
CFLAGS
=
-m64
LDFLAGS
=
-m64
./configure
--prefix
=
$(PREFIX)
&&
gmake
&&
sudo
gmake
install
)
(
cd
$@
&&
CFLAGS
=
-m64
LDFLAGS
=
-m64
./configure
--prefix
=
$(PREFIX)
&&
gmake
&&
sudo
gmake
install
&&
touch
.done
)
libedit
:
libedit-$(LIBEDIT)/
Makefil
e
libedit
:
libedit-$(LIBEDIT)/
.don
e
libedit-$(LIBEDIT)/
Makefil
e
:
libedit-$(LIBEDIT)
libedit-$(LIBEDIT)/
.don
e
:
libedit-$(LIBEDIT)
libedit-$(LIBEDIT)
:
libedit-$(LIBEDIT)
:
(
test
-d
$@
)
||
(
wget
-4
-O
$@
.tar.gz http://thrysoee.dk/editline/
$@
.tar.gz
&&
tar
zxfv
$@
.tar.gz
)
(
test
-d
$@
)
||
(
wget
-4
-O
$@
.tar.gz http://thrysoee.dk/editline/
$@
.tar.gz
&&
tar
zxfv
$@
.tar.gz
)
(
cd
$@
&&
CFLAGS
=
-m64
LDFLAGS
=
-m64
./configure
--prefix
=
$(PREFIX)
&&
gmake
&&
sudo
gmake
install
)
(
cd
$@
&&
CFLAGS
=
-m64
LDFLAGS
=
-m64
./configure
--prefix
=
$(PREFIX)
&&
gmake
&&
sudo
gmake
install
&&
touch
.done
)
ldns
:
openssl ldns-$(LDNS)/
Makefil
e
ldns
:
openssl ldns-$(LDNS)/
.don
e
ldns-$(LDNS)/
Makefil
e
:
ldns-$(LDNS)
ldns-$(LDNS)/
.don
e
:
ldns-$(LDNS)
ldns-$(LDNS)
:
ldns-$(LDNS)
:
(
test
-d
$@
)
||
(
wget
-4
-O
$@
.tar.gz http://www.nlnetlabs.nl/downloads/ldns/
$@
.tar.gz
&&
tar
zxfv
$@
.tar.gz
)
(
test
-d
$@
)
||
(
wget
-4
-O
$@
.tar.gz http://www.nlnetlabs.nl/downloads/ldns/
$@
.tar.gz
&&
tar
zxfv
$@
.tar.gz
)
(
cd
$@
&&
CFLAGS
=
-m64
LDFLAGS
=
-m64
./configure
--with-ssl
=
$(PREFIX)
--prefix
=
$(PREFIX)
&&
gmake
&&
sudo
gmake
install
)
(
cd
$@
&&
CFLAGS
=
-m64
LDFLAGS
=
-m64
./configure
--with-ssl
=
$(PREFIX)
--prefix
=
$(PREFIX)
&&
gmake
&&
sudo
gmake
install
&&
touch
.done
)
pkg-config
:
openssl pkg-config-$(PKGCFG)/
Makefil
e
pkg-config
:
openssl pkg-config-$(PKGCFG)/
.don
e
pkg-config-$(PKGCFG)/
Makefil
e
:
pkg-config-$(PKGCFG)
pkg-config-$(PKGCFG)/
.don
e
:
pkg-config-$(PKGCFG)
pkg-config-$(PKGCFG)
:
pkg-config-$(PKGCFG)
:
(
test
-d
$@
)
||
(
wget
-4
-O
$@
.tar.gz http://pkgconfig.freedesktop.org/releases/
$@
.tar.gz
&&
tar
zxfv
$@
.tar.gz
)
(
test
-d
$@
)
||
(
wget
-4
-O
$@
.tar.gz http://pkgconfig.freedesktop.org/releases/
$@
.tar.gz
&&
tar
zxfv
$@
.tar.gz
)
(
cd
$@
&&
CFLAGS
=
-m64
LDFLAGS
=
-m64
./configure
--with-internal-glib
--prefix
=
$(PREFIX)
&&
sudo
gmake uninstall
&&
gmake
&&
sudo
gmake
install
)
(
cd
$@
&&
CFLAGS
=
-m64
LDFLAGS
=
-m64
./configure
--with-internal-glib
--prefix
=
$(PREFIX)
&&
sudo
gmake uninstall
&&
gmake
&&
sudo
gmake
install
&&
\
touch
.done
)
perl
:
openssl perl-$(PERL)/
Makefil
e
perl
:
openssl perl-$(PERL)/
.don
e
perl-$(PERL)/
Makefil
e
:
perl-$(PERL)
perl-$(PERL)/
.don
e
:
perl-$(PERL)
perl-$(PERL)
:
perl-$(PERL)
:
(
test
-d
$@
)
||
(
wget
-4
-O
$@
.tar.gz http://www.cpan.org/src/5.0/
$@
.tar.gz
&&
tar
zxfv
$@
.tar.gz
)
(
test
-d
$@
)
||
(
wget
-4
-O
$@
.tar.gz http://www.cpan.org/src/5.0/
$@
.tar.gz
&&
tar
zxfv
$@
.tar.gz
)
(
cd
$@
&&
CFLAGS
=
-m64
LDFLAGS
=
-m64
./configure.gnu
-Dcc
=
gcc
--prefix
=
$(PREFIX)
&&
gmake
&&
sudo
gmake
install
)
(
cd
$@
&&
CFLAGS
=
-m64
LDFLAGS
=
-m64
./configure.gnu
-Dcc
=
gcc
--prefix
=
$(PREFIX)
&&
gmake
&&
sudo
gmake
install
&&
touch
.done
)
deps
:
libjpeg openssl sqlite pcre curl speex libedit ldns pkg-config perl
deps
:
has-git
libjpeg openssl sqlite pcre curl speex libedit ldns pkg-config perl
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论