utt/auto/options
tom a6e708f37f ANULOWANIE POPRZEDNIEGO COMMITU
Revert "Replacing old implementation with working implementation"

This reverts commit 1e121f45e2.

 Please enter the commit message for your changes. Lines starting
 with '#' will be ignored, and an empty message aborts the commit.

 Committer: tom <tom@lim.(none)>

 On branch master
 Changes to be committed:
   (use "git reset HEAD <file>..." to unstage)

	modified:   _old/app/Makefile
	deleted:    _old/app/conf/Makefile
	deleted:    _old/app/conf/compiledic.conf
	deleted:    _old/app/conf/cor.conf
	deleted:    _old/app/conf/dgc.conf
	deleted:    _old/app/conf/dgp.conf
	deleted:    _old/app/conf/gph.conf
	deleted:    _old/app/conf/grp.conf
	deleted:    _old/app/conf/gue.conf
	deleted:    _old/app/conf/kor.conf
	deleted:    _old/app/conf/lem.conf
	deleted:    _old/app/conf/mar.conf
	deleted:    _old/app/conf/ser.conf
	deleted:    _old/app/conf/utt.conf
	modified:   _old/app/src/common/Makefile
	modified:   _old/app/src/compiledic/Makefile
	modified:   _old/app/src/compiledic/aut2fsa.cc
	modified:   _old/app/src/cor/Makefile
	modified:   _old/app/src/dgp/Makefile
	new file:   _old/app/src/dgp/canonize
	new file:   _old/app/src/dgp/dgc
	modified:   _old/app/src/dgp/grammar.hh
	modified:   _old/app/src/dgp/mgraph.hh
	modified:   _old/app/src/dgp/sgraph.hh
	modified:   _old/app/src/dgp/thesymbols.hh
	new file:   _old/app/src/dgp/tre
	modified:   _old/app/src/gue/Makefile
	modified:   _old/app/src/gue/guess.cc
	modified:   _old/app/src/kor/Makefile
	modified:   _old/app/src/kor/corlist.cc
	modified:   _old/app/src/kor/corr.cc
	new file:   _old/app/src/kor/corr.hh
	modified:   _old/app/src/kor/main.cc
	modified:   _old/app/src/lem/Makefile
	modified:   _old/app/src/lem/lem.cc
	modified:   _old/app/src/lib/Makefile
	modified:   _old/app/src/lib/auttools.cc
	modified:   _old/app/src/lib/symtab.cc
	modified:   _old/app/src/lib/tft.h
	modified:   _old/app/src/lib/tfti.h
	modified:   _old/app/src/lib/ttrans.h
	modified:   _old/app/src/lib/word.cc
	modified:   _old/app/src/lib/word.h
	modified:   _old/app/src/tok.c/Makefile
	modified:   _old/app/src/tok.c/cmdline_tok.ggo
	modified:   _old/app/src/tok.c/common_tok.cc
	modified:   _old/app/src/tok/Makefile
	modified:   _old/nawszelkiwypadek/tools/aut2fsa
	modified:   _old/nawszelkiwypadek/tools/cor_dic/makeLabels.pl
	modified:   _old/nawszelkiwypadek/tools/cor_dic/prep.pl
	modified:   _old/nawszelkiwypadek/tools/fsm2aut
	modified:   _old/nawszelkiwypadek/tools/gue_dic/canon.pl
	modified:   _old/nawszelkiwypadek/tools/gue_dic/compile_user_dict.pl
	modified:   _old/nawszelkiwypadek/tools/gue_dic/count_prefs.pl
	modified:   _old/nawszelkiwypadek/tools/gue_dic/cut_prefs.pl
	modified:   _old/nawszelkiwypadek/tools/gue_dic/makeLabels.pl
	modified:   _old/nawszelkiwypadek/tools/gue_dic/prep.pl
	modified:   _old/nawszelkiwypadek/tools/gue_dic/prep_user_dict.pl
	modified:   _old/nawszelkiwypadek/tools/gue_dic/rmDup.pl
	modified:   _old/nawszelkiwypadek/tools/gue_dic/stat.pl
	modified:   _old/nawszelkiwypadek/tools/gue_dic/stat_pre.pl
	modified:   _old/nawszelkiwypadek/tools/lem_dic/makeLabels.pl
	modified:   _old/nawszelkiwypadek/tools/lem_dic/prep.pl
	modified:   auto/defaults
	modified:   auto/options
	modified:   auto/output/Makefile
	modified:   auto/output/config_h
	modified:   auto/summary
	modified:   configure
2011-12-14 16:08:41 +01:00

261 lines
14 KiB
Bash
Executable File

#!/bin/sh
help=no
quiet=no
if [ -z "$PROJECT_NAME" ]; then PROJECT_NAME=$DEFAULT_PROJECT_NAME; fi
if [ -z "$PROJECT_FULLNAME" ]; then PROJECT_FULLNAME=$DEFAULT_PROJECT_FULLNAME; fi
if [ -z "$PROJECT_COPYRIGHT" ]; then PROJECT_COPYRIGHT=$DEFAULT_PROJECT_COPYRIGHT; fi
if [ -z "$PROJECT_VERSION" ]; then PROJECT_VERSION=$DEFAULT_PROJECT_VERSION; fi
if [ -z "$PROJECT_PAGE" ]; then PROJECT_PAGE=$DEFAULT_PROJECT_PAGE; fi
if [ -z "$PROJECT_MAIL" ]; then PROJECT_MAIL=$DEFAULT_PROJECT_MAIL; fi
if [ -z "$INSTALL" ]; then INSTALL=$DEFAULT_INSTALL; fi
if [ -z "$SHELL" ]; then SHELL=$DEFAULT_SHELL; fi
if [ -z "$CC" ]; then CC=$DEFAULT_CC; fi
if [ -z "$BISON" ]; then BISON=$DEFAULT_BISON; fi
if [ -z "$FLEX" ]; then FLEX=$DEFAULT_FLEX; fi
if [ -z "$RM" ]; then RM=$DEFAULT_RM; fi
if [ -z "$RMDIR" ]; then RMDIR=$DEFAULT_RMDIR; fi
if [ -z "$TEST" ]; then TEST=$DEFAULT_TEST; fi
if [ -z "$MAKE" ]; then MAKE=$DEFAULT_MAKE; fi
if [ -z "$GREP" ]; then GREP=$DEFAULT_GREP; fi
if [ -z "$CUT" ]; then CUT=$DEFAULT_CUT; fi
if [ -z "$SORT" ]; then SORT=$DEFAULT_SORT; fi
if [ -z "$PR" ]; then PR=$DEFAULT_PR; fi
if [ -z "$CP" ]; then CP=$DEFAULT_CP; fi
if [ -z "$CHMOD" ]; then CHMOD=$DEFAULT_CHMOD; fi
if [ -z "$MAKEINFO" ]; then MAKEINFO=$DEFAULT_MAKEINFO; fi
if [ -z "$TEXI2DVI" ]; then TEXI2DVI=$DEFAULT_TEXI2DVI; fi
if [ -z "$TEXI2PDF" ]; then TEXI2PDF=$DEFAULT_TEXI2PDF; fi
if [ -z "$DVIPS" ]; then DVIPS=$DEFAULT_DVIPS; fi
if [ -z "$CFLAGS" ]; then CFLAGS=$DEFAULT_CFLAGS; fi
if [ -z "$LDFLAGS" ]; then LDFLAGS=$DEFAULT_LDFLAGS; fi
if [ -z "$LDLIBS" ]; then LDLIBS=$DEFAULT_LDLIBS; fi
if [ -z "$BFLAGS" ]; then BFLAGS=$DEFAULT_BFLAGS; fi
if [ -z "$FFLAGS" ]; then FFLAGS=$DEFAULT_FFLAGS; fi
if [ -z "$DESTDIR" ]; then DESTDIR=$DEFAULT_DESTDIR; fi
if [ -z "$prefix" ]; then prefix=$DEFAULT_prefix; fi
if [ -z "$exec_prefix" ]; then exec_prefix=$DEFAULT_exec_prefix; fi
if [ -z "$bindir" ]; then bindir=$DEFAULT_bindir; fi
if [ -z "$sbindir" ]; then sbindir=$DEFAULT_sbindir; fi
if [ -z "$libexecdir" ]; then libexecdir=$DEFAULT_libexecdir; fi
if [ -z "$datarootdir" ]; then datarootdir=$DEFAULT_datarootdir; fi
if [ -z "$datadir" ]; then datadir=$DEFAULT_datadir; fi
if [ -z "$sysconfdir" ]; then sysconfdir=$DEFAULT_sysconfdir; fi
if [ -z "$sharedstatedir" ]; then sharedstatedir=$DEFAULT_sharedstatedir; fi
if [ -z "$localstatedir" ]; then localstatedir=$DEFAULT_localstatedir; fi
if [ -z "$docdir" ]; then docdir=$DEFAULT_docdir; fi
if [ -z "$infodir" ]; then infodir=$DEFAULT_infodir; fi
if [ -z "$htmldir" ]; then htmldir=$DEFAULT_htmldir; fi
if [ -z "$dvidir" ]; then dvidir=$DEFAULT_dvidir; fi
if [ -z "$pdfdir" ]; then pdfdir=$DEFAULT_pdfdir; fi
if [ -z "$psdir" ]; then psdir=$DEFAULT_psdir; fi
if [ -z "$libdir" ]; then libdir=$DEFAULT_libdir; fi
if [ -z "$localedir" ]; then localedir=$DEFAULT_localedir; fi
if [ -z "$mandir" ]; then mandir=$DEFAULT_mandir; fi
if [ -z "$man1dir" ]; then man1dir=$DEFAULT_man1dir; fi
if [ -z "$man2dir" ]; then man2dir=$DEFAULT_man2dir; fi
if [ -z "$man3dir" ]; then man3dir=$DEFAULT_man3dir; fi
if [ -z "$man4dir" ]; then man4dir=$DEFAULT_man4dir; fi
if [ -z "$man5dir" ]; then man5dir=$DEFAULT_man5dir; fi
if [ -z "$man6dir" ]; then man6dir=$DEFAULT_man6dir; fi
if [ -z "$man7dir" ]; then man7dir=$DEFAULT_man7dir; fi
if [ -z "$man8dir" ]; then man8dir=$DEFAULT_man8dir; fi
if [ -z "$man9dir" ]; then man9dir=$DEFAULT_man9dir; fi
if [ -z "$manext" ]; then manext=$DEFAULT_manext; fi
if [ -z "$man1ext" ]; then man1ext=$DEFAULT_man1ext; fi
if [ -z "$man2ext" ]; then man2ext=$DEFAULT_man2ext; fi
if [ -z "$man3ext" ]; then man3ext=$DEFAULT_man3ext; fi
if [ -z "$man4ext" ]; then man4ext=$DEFAULT_man4ext; fi
if [ -z "$man5ext" ]; then man5ext=$DEFAULT_man5ext; fi
if [ -z "$man6ext" ]; then man6ext=$DEFAULT_man6ext; fi
if [ -z "$man7ext" ]; then man7ext=$DEFAULT_man7ext; fi
if [ -z "$man8ext" ]; then man8ext=$DEFAULT_man8ext; fi
if [ -z "$man9ext" ]; then man9ext=$DEFAULT_man9ext; fi
for option
do
case "$option" in
-*=*) value=$(echo "$option" | sed -e 's/[-_a-zA-Z0-9]*=//') ;;
*=*) value=$(echo "$option" | sed -e 's/[_A-Z0-9]*=//') ;;
*) value="" ;;
esac
case "$option" in
--help) help=yes ;;
--quiet) quiet=yes ;;
DESTDIR=*) DESTDIR="$value" ;;
--prefix=*) prefix="$value" ;;
--exec-prefix=*) exec_prefix="$value" ;;
--bindir=*) bindir="$value" ;;
--sbindir=*) sbindir="$value" ;;
--libexecdir=*) libexecdir="$value" ;;
--datarootdir=*) datarootdir="$value" ;;
--datadir=*) datadir="$value" ;;
--sysconfdir=*) sysconfdir="$value" ;;
--sharedstatedir=*) sharedstatedir="$value" ;;
--localstatedir=*) localstatedir="$value" ;;
--docdir=*) docdir="$value" ;;
--infodir=*) infodir="$value" ;;
--htmldir=*) htmldir="$value" ;;
--dvidir=*) dvidir="$value" ;;
--pdfdir=*) pdfdir="$value" ;;
--psdir=*) psdir="$value" ;;
--libdir=*) libdir="$value" ;;
--localedir=*) localedir="$value" ;;
--mandir=*) mandir="$value" ;;
--man1dir=*) man1dir="$value" ;;
--man2dir=*) man2dir="$value" ;;
--man3dir=*) man3dir="$value" ;;
--man4dir=*) man4dir="$value" ;;
--man5dir=*) man5dir="$value" ;;
--man6dir=*) man6dir="$value" ;;
--man7dir=*) man7dir="$value" ;;
--man8dir=*) man8dir="$value" ;;
--man9dir=*) man9dir="$value" ;;
--manext=*) manext="$value" ;;
--man1ext=*) man1ext="$value" ;;
--man2ext=*) man2ext="$value" ;;
--man3ext=*) man3ext="$value" ;;
--man4ext=*) man4ext="$value" ;;
--man5ext=*) man5ext="$value" ;;
--man6ext=*) man6ext="$value" ;;
--man7ext=*) man7ext="$value" ;;
--man8ext=*) man8ext="$value" ;;
--man9ext=*) man9ext="$value" ;;
INSTALL=*) INSTALL="$value" ;;
SHELL=*) SHELL="$value" ;;
CC=*) CC="$value" ;;
BISON=*) BISON="$value" ;;
FLEX=*) FLEX="$value" ;;
RM=*) RM="$value" ;;
RMDIR=*) RMDIR="$value" ;;
TEST=*) TEST="$value" ;;
MAKE=*) MAKE="$value" ;;
GREP=*) GREP="$value" ;;
CUT=*) CUT="$value" ;;
SORT=*) SORT="$value" ;;
PR=*) PR="$value" ;;
CP=*) CP="$value" ;;
CHMOD=*) CHMOD="$value" ;;
MAKEINFO=*) MAKEINFO="$value" ;;
TEXI2DVI=*) TEXI2DVI="$value" ;;
TEXI2PDF=*) TEXI2PDF="$value" ;;
DVIPS=*) DVIPS="$value" ;;
CFLAGS=*) CFLAGS="$value" ;;
LDFLAGS=*) LDFLAGS="$value" ;;
LDLIBS=*) LDLIBS="$value" ;;
BFLAGS=*) BFLAGS="$value" ;;
FFLAGS=*) FFLAGS="$value" ;;
esac
done
if [ "$help" = "yes" ]; then
cat << HELP_END
Configure script for $PROJECT_NAME $PROJECT_VERSION to adapt to many kinds of systems.
Usage:
./configure [OPTION]... [VAR=VALUE]...
To assign environment variables (e.g., CC, CFLAGS...), specify them as
VAR=VALUE. See below for descriptions of some of the useful variables.
Options:
--help display this help and exit
Installation directories:
--prefix=PATH install architecture-independent files in PATH
--exec-prefix=PATH install architecture-dependent files in PATH
Fine tuning of the installation directories:
--bindir=PATH user executables
--sbindir=PATH system admin executables
--libexecdir=PATH program executables
--datarootdir=PATH read-only arch.-independent data root
--datadir=PATH read-only architecture-independent data
--sysconfdir=PATH read-only single-machine data
--sharedstatedir=PATH modifiable architecture-independent data
--localstatedir=PATH modifiable single-machine data
--docdir=DIR documentation root
--infodir=DIR info documentation
--htmldir=DIR html documentation
--dvidir=DIR dvi documentation
--pdfdir=DIR pdf documentation
--psdir=DIR ps documentation
--libdir=DIR object code libraries
--localedir=DIR locale-dependent data
--mandir=DIR man documentation
--man1dir=DIR section 1 man documentation
--man2dir=DIR section 2 man documentation
--man3dir=DIR section 3 man documentation
--man4dir=DIR section 4 man documentation
--man5dir=DIR section 5 man documentation
--man6dir=DIR section 6 man documentation
--man7dir=DIR section 7 man documentation
--man8dir=DIR section 8 man documentation
--man9dir=DIR section 9 man documentation
--manext=EXT man extension
--man1ext=EXT section 1 man extension
--man2ext=EXT section 2 man extension
--man3ext=EXT section 3 man extension
--man4ext=EXT section 4 man extension
--man5ext=EXT section 5 man extension
--man6ext=EXT section 6 man extension
--man7ext=EXT section 7 man extension
--man8ext=EXT section 8 man extension
--man9ext=EXT section 9 man extension
Some influential environment variables:
INSTALL install command
SHELL shell command
CC C compiler command
BISON Bison compiler command
RM rm command
RMDIR rmdir command
TEST test command
MAKE make command
GREP grep command
CUT cut command
SORT sort command
PR pr command
CP cp command
CHMOD chmod command
MAKEINFO makeinfo command
TEXI2DVI texi2dvi command
TEXI2PDF texi2pdf command
DVIPS dvips command
CFLAGS C compiler flags
LDFLAGS linker flags, e.g. -L<lib dir> if you have
libraries in a nonstandard directory <lib dir>
LDLIBS libraries to pass to the linker, e.g. -l<library>
BFLAGS Bison compiler flags
FFLAGS Flex compiler flags
Use these variables to override default values.
Report bugs to <$PROJECT_MAIL>.
More details at $PROJECT_PAGE.
HELP_END
exit 1
fi