📄 autogen.sh
字号:
#!/bin/shecho "checking basic compilation tools ..."for tool in pkg-config aclocal autoheader autoconf automake gettext msgfmt iconvdo echo -n "$tool... " if which $tool >/dev/null 2>&1 ; then echo "found." else echo "not found.*** You do not have $tool correctly installed. You cannot build aqualung without this tool." exit 1 fidoneechofor tool in aclocal autoheader autoconf automakedo echo -n "running $tool... " if $tool; then echo "done." else echo "faled.*** $tool returned an error." exit 1 fidoneecho "You can now run: ./configure make make installPlease take the time to subscribe to the project mailing list at:http://lists.sourceforge.net/lists/listinfo/aqualung-friends"
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -