📄 rebuild
字号:
#!/bin/sh# rebuild# (c) 2002 Karel 'Clock' Kulhavy, Mikulas Patocka, Petr 'Brain' Kulhavy# This file is a part of the Links program, released under GPL.make=makeif which gmake 2>/dev/null >/dev/null && gmake --version | grep -i "GNU Make" >/dev/nullthenecho Found GNU Make under gmake. Going to use gmake instead of make.make=gmakefiif which autoheader-2.13 2>/dev/null >/dev/nullthenautoheader="autoheader-2.13"elseautoheader="autoheader"fiif [ "$1" = reconf ]; then if ! which pkg-config 2>/dev/null >/dev/null then echo Warning: You don\'t have pkg-config. The PKG_CHECK_MODULES macro will probably fail. >&2 fi if ! which autoconf 2>/dev/null >/dev/null then echo You don\'t have autoconf. Wiping out. >&2 exit 1 fi if ! autoconf --version | grep -i "GNU Autoconf" >/dev/null then echo This looks like autoconf installed on OpenBSD. >&2 if ! AUTOCONF_VERSION=2.13 autoconf --version 2>/dev/null >/dev/null then echo Autoconf 2.13 is not found. This script needs at most autoconf 2.13. \ Trying with some other \(random\) autoconf. >&2 path=`echo "$PATH" | tr -s ':' '\n'` alt=`find $path -name 'autoconf*' -and ! -name autoconf | head -n 1` if [ -z "$alt" ] then echo Cannot find the real autoconf >&2 exit 1 fi export AUTOCONF_VERSION=`echo $alt | sed -e 's/^.*autoconf-//g'` echo Found $alt. Setting AUTOCONF_VERSION to $AUTOCONF_VERSION.>&2 else echo Found Autoconf 2.13. It should work. >&2 export AUTOCONF_VERSION=2.13 fi fi if ! automake --version | grep -i "GNU automake" >/dev/null then echo This looks like automake installed on OpenBSD. >&2 export AUTOMAKE_VERSION=1.4 if ! automake --version 2>/dev/null >/dev/null then echo Automake 1.4 is needed. Wiping out. >&2 exit 1 fi echo Found Automake 1.4. It should work. >&2 fifirm -f config.h Makefile config.cache &&if [ "$1" = reconf ]; then echo NEPOUZIVAT pokud nebylo zmeneno configure.in nebo Makefile.am !!! && echo DO NOT use unless configure.in or Makefile.am has been changed !!! && echo rebuild reconf se NESMI prerusit protoze pak by pri nasledujicim commitu byly commitnuty spatne dependence a pri kompilaci by tise vznikaly zahadne neodladitelne chyby!!! && echo rebuild reconf MUST NOT be interrupted because after the following commit bad dependencies would be commited and during compilation, mysterious and undebuggable bugs would originate!!! && echo Timto mistoprisezne prohlasuji ze toto skutecne nastalo a ze proces neprerusim. && echo I hereby affirm that this really has happened and I won\'t break the process. && read kecy && if [ "$kecy" = "ano" -o "$kecy" = "Ano" -o "$kecy" = "yes" -o "$kecy" = "Yes" ]; then echo Zodpovednost prijata. && echo Responsibility accepted. && rm -rf .deps missing depcomp aclocal.m4 && $autoheader && rm -f autoh* && aclocal && automake --add-missing && sed 's%sed '\''s/\\\.am\$/\.in/'\''%sed '\''s/\\\.[aA][mM]\$/\.in/'\''%' <missing >missing.tmp && mv -f missing.tmp missing && chmod a+x missing && autoconf else exit fifi &&if [ "$1" = reconf_aby_to_brain_nepouzival ]; then echo "Mikulasi, vyser si voko!" && exitfi &&#cd Unicode;./gen; cd ..#cd intl; ./synclang; cd ..export CFLAGS="$CFLAGS -Wall -g -O2 -pipe -ansi -U__STRICT_ANSI__ -fno-common" &&#export CFLAGS="-Wall -g -O2 -pipe"export CXXFLAGS="$CXXFLAGS -Wall -g -O2 -pipe" &&./configure --enable-graphics &&$make clean &&$make &&if [ "$1" = reconf ]; then $autoheader && automake --add-missing --include-deps --build-dir=. --srcdir-name=. --output-dir=. && sed 's%sed '\''s/\\\.am\$/\.in/'\''%sed '\''s/\\\.[aA][mM]\$/\.in/'\''%' <missing >missing.tmp && mv -f missing.tmp missing && chmod a+x missing && sed -n '{h;s/X11R6/X11R7/p;x;p;}' <configure >configure.tmp && mv -f configure.tmp configure && chmod a+x configure && ./configure --enable-graphics if [ $? != 0 ]; then echo CONFIGURE FAILED; exit 1; fifi
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -