1 Star 4 Fork 2

Gitee 极速下载 / geographiclib

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/geographiclib/geographiclib
克隆/下载
autogen.sh 592 Bytes
一键复制 编辑 原始数据 按行查看 历史
Charles Karney 提交于 2022-07-25 11:05 . Get ready for version 2.1.1
#!/bin/sh
#
# A simple script to add/reset autotools support
# This requires that autoconf and autoconf-archive are installed
run ()
{
echo "Running: $*"
eval $*
if test $? != 0 ; then
echo "Error: while running '$*'"
exit 1
fi
}
mv m4/pkg.m4 ./
rm -rf autom4te.cache m4
mkdir m4
mv pkg.m4 m4/
run aclocal
run autoheader
LIBTOOLIZE=libtoolize
type $LIBTOOLIZE > /dev/null 2>&1 || LIBTOOLIZE=g$LIBTOOLIZE
run $LIBTOOLIZE --force --copy
run automake --add-missing --copy --force-missing --foreign
run autoconf
run autoreconf
rm -rf autom4te.cache configure~
C/C++
1
https://gitee.com/mirrors/geographiclib.git
git@gitee.com:mirrors/geographiclib.git
mirrors
geographiclib
geographiclib
main

搜索帮助