シェルスクリプト言語xyzshのソースコード。
修订版 | e0f46b975783911f55ecb492936f124eddc75bf2 (tree) |
---|---|
时间 | 2013-01-17 21:07:37 |
作者 | ab25q <ab25cq@gmai...> |
Commiter | ab25q |
1.3.1
@@ -1,162 +0,0 @@ | ||
1 | -####################################################### | |
2 | -# installed directories | |
3 | -####################################################### | |
4 | -prefix=/usr/local | |
5 | -exec_prefix=${prefix} | |
6 | -bindir=${exec_prefix}/bin | |
7 | -datadir=${datarootdir} | |
8 | -mandir=${datarootdir}/man | |
9 | -libdir=${exec_prefix}/lib | |
10 | -sharedstatedir=${prefix}/com | |
11 | -sysconfdir=${prefix}/etc/xyzsh | |
12 | -includedir=${prefix}/include/xyzsh | |
13 | -datarootdir=${prefix}/share | |
14 | -docdir=${datarootdir}/doc/xyzsh | |
15 | - | |
16 | -########################################################## | |
17 | -# environmnet variables | |
18 | -########################################################## | |
19 | -CC=gcc | |
20 | -INSTALL=/usr/bin/install -c | |
21 | -CFLAGS=-DSYSCONFDIR="\"${prefix}/etc/xyzsh/\"" -DDATAROOTDIR="\"${prefix}/share/doc/xyzsh/\"" -DSYSTEM_MIGEMODIR="\"/usr/local/share/migemo\"" -I./src -Isrc/ -I. -L. -I/usr/local/include -L/usr/local/lib -fPIC -I/usr/local/include -L/usr/local/lib -I/opt/local/include -L/opt/local/lib -O3 | |
22 | -LIBS= -lreadline -lncursesw -lm -liconv -lonig | |
23 | -OBJ=src/gc.o src/stack.o src/string.o src/list.o src/kanji.o src/debug.o src/hash.o src/vector.o src/block.o src/fun.o src/class.o src/completion.o src/xyzsh.o src/parser.o src/run.o src/readline.o src/curses.o src/cmd_base.o src/cmd_obj.o src/cmd_file.o src/cmd_str.o src/cmd_ary.o src/cmd_condition.o src/interface.o src/object.o src/uobject.o src/cmd_num.o src/cmd_curses.o src/fd.o src/nfun.o src/extprog.o | |
24 | -LIBXYZSHSO=libxyzsh.dylib | |
25 | -LIBXYZSHSO1=libxyzsh.1.5.8.dylib | |
26 | -LIBXYZSHA= | |
27 | -LIBXYZSHASTRIP=-s | |
28 | -DESTDIR= | |
29 | -SYSTEM_MIGEMODIR=/usr/local/share/migemo | |
30 | -SO_VERSION=1.5.8 | |
31 | - | |
32 | -########################################################## | |
33 | -all: lib xyzsh | |
34 | - rm -f install | |
35 | - | |
36 | -lib: $(LIBXYZSHSO1) $(LIBXYZSHA) | |
37 | - rm -f install | |
38 | - | |
39 | -lib-install: | |
40 | - if [ -z "$(DESTDIR)" ]; then make lib-normal-install; else make lib-dest-install; fi | |
41 | - | |
42 | -lib-normal-install: | |
43 | - mkdir -p "$(libdir)" | |
44 | - if [ $(LIBXYZSHA) = libxyzsh.a ]; then $(INSTALL) -m 644 $(LIBXYZSHASTRIP) libxyzsh.a "$(libdir)"; fi | |
45 | - if [ $(LIBXYZSHSO) = libxyzsh.so ]; then if echo $(CFLAGS) | grep -q MDEBUG; then $(INSTALL) -m 755 libxyzsh.so.$(SO_VERSION) "$(libdir)"; else $(INSTALL) -s -m 755 libxyzsh.so.$(SO_VERSION) "$(libdir)"; fi; elif [ $(LIBXYZSHSO) = libxyzsh.dylib ]; then $(INSTALL) -m 755 libxyzsh.$(SO_VERSION).dylib "$(libdir)"; fi | |
46 | - if [ $(LIBXYZSHSO) = libxyzsh.so ]; then ln -s -f libxyzsh.so.$(SO_VERSION) "$(libdir)"/libxyzsh.so.1; elif [ $(LIBXYZSHSO) = libxyzsh.dylib ]; then ln -s -f libxyzsh.$(SO_VERSION).dylib "$(libdir)"/libxyzsh.1.dylib; fi | |
47 | - if [ $(LIBXYZSHSO) = libxyzsh.so ]; then ln -s -f libxyzsh.so.$(SO_VERSION) "$(libdir)"/libxyzsh.so; elif [ $(LIBXYZSHSO) = libxyzsh.dylib ]; then ln -s -f libxyzsh.$(SO_VERSION).dylib "$(libdir)"/libxyzsh.dylib; fi | |
48 | - | |
49 | -lib-dest-install: | |
50 | - mkdir -p "$(DESTDIR)/$(libdir)" | |
51 | - if [ "$(LIBXYZSHA)" = libxyzsh.a ]; then $(INSTALL) -m 644 $(LIBXYZSHASTRIP) libxyzsh.a "$(DESTDIR)/$(libdir)"; fi | |
52 | - if [ "$(LIBXYZSHSO)" = libxyzsh.so ]; then if echo $(CFLAGS) | grep -q MDEBUG; then $(INSTALL) -m 755 libxyzsh.so.$(SO_VERSION) "$(DESTDIR)/$(libdir)"; else $(INSTALL) -s -m 755 libxyzsh.so.$(SO_VERSION) "$(DESTDIR)/$(libdir)"; fi; elif [ "$(LIBXYZSHSO)" = libxyzsh.dylib ]; then $(INSTALL) -m 755 libxyzsh.$(SO_VERSION).dylib "$(DESTDIR)/$(libdir)"; fi | |
53 | - if [ "$(LIBXYZSHSO)" = libxyzsh.so ]; then ln -s -f libxyzsh.so.$(SO_VERSION) "$(DESTDIR)/$(libdir)"/libxyzsh.so.1; elif [ "$(LIBXYZSHSO)" = libxyzsh.dylib ]; then ln -s -f libxyzsh.$(SO_VERSION).dylib "$(DESTDIR)/$(libdir)"/libxyzsh.1.dylib; fi | |
54 | - if [ "$(LIBXYZSHSO)" = libxyzsh.so ]; then ln -s -f libxyzsh.so.$(SO_VERSION) "$(DESTDIR)/$(libdir)"/libxyzsh.so; elif [ "$(LIBXYZSHSO)" = libxyzsh.dylib ]; then ln -s -f libxyzsh.$(SO_VERSION).dylib "$(DESTDIR)/$(libdir)"/libxyzsh.dylib; fi | |
55 | - | |
56 | -clean: | |
57 | - rm -fR xyzsh xyzsh.dSYM src/*.o libxyzsh* xyzsh.exe* config.log config.status *.stackdump autom4te.cache | |
58 | - | |
59 | -distclean: | |
60 | - rm -fR xyzsh xyzsh.dSYM src/*.o libxyzsh* config.h Makefile xyzsh.exe* config.log config.status *.stackdump autom4te.cache | |
61 | - | |
62 | -xyzsh: config.h src/main.c $(LIBXYZSHSO) $(LIBXYZSHA) | |
63 | - $(CC) -o xyzsh src/main.c $(CFLAGS:-static=) -lxyzsh $(LIBS) | |
64 | - | |
65 | -######################################################## | |
66 | -# xyzsh libraries | |
67 | -######################################################## | |
68 | -libxyzsh.so.$(SO_VERSION): $(OBJ) | |
69 | - gcc -shared -o libxyzsh.so.$(SO_VERSION) $(OBJ) -lc $(LIBS) $(CFLAGS) | |
70 | - | |
71 | -libxyzsh.so: libxyzsh.so.$(SO_VERSION) | |
72 | - ln -s libxyzsh.so.$(SO_VERSION) libxyzsh.so.1 | |
73 | - ln -s libxyzsh.so.$(SO_VERSION) libxyzsh.so | |
74 | - | |
75 | -libxyzsh.a: $(OBJ) | |
76 | - ar rc libxyzsh.a $(OBJ) | |
77 | - ranlib libxyzsh.a | |
78 | -# strip libxyzsh.a | |
79 | - | |
80 | -######################################################## | |
81 | -# xyzsh libraries on Darwin | |
82 | -######################################################## | |
83 | -libxyzsh.$(SO_VERSION).dylib: $(OBJ) | |
84 | - gcc -dynamiclib -o libxyzsh.$(SO_VERSION).dylib $(OBJ) -lc $(LIBS) $(CFLAGS) | |
85 | - | |
86 | -libxyzsh.dylib: libxyzsh.$(SO_VERSION).dylib | |
87 | - cp libxyzsh.$(SO_VERSION).dylib libxyzsh.1.dylib | |
88 | - cp libxyzsh.$(SO_VERSION).dylib libxyzsh.dylib | |
89 | - | |
90 | -permission: | |
91 | - chmod 644 * | |
92 | - chmod 755 .git man src configure | |
93 | - chmod 644 src/*.c | |
94 | - chmod 644 src/xyzsh/*.h | |
95 | - | |
96 | -######################################################### | |
97 | -# install | |
98 | -######################################################### | |
99 | -$(OBJ): src/xyzsh/xyzsh.h src/xyzsh/block.h src/xyzsh/curses.h src/xyzsh/debug.h src/xyzsh/hash.h src/xyzsh/kanji.h src/xyzsh/list.h src/xyzsh/string.h src/xyzsh/vector.h Makefile configure | |
100 | - | |
101 | -######################################################### | |
102 | -# install | |
103 | -######################################################### | |
104 | -install: lib-install | |
105 | - if [ -z "$(DESTDIR)" ]; then make normal-install; else make dest-install; fi | |
106 | - | |
107 | -normal-install: | |
108 | - mkdir -p "$(bindir)" | |
109 | - mkdir -p "$(sysconfdir)" | |
110 | - mkdir -p "$(libdir)" | |
111 | - mkdir -p "$(includedir)" | |
112 | - mkdir -p "$(docdir)" | |
113 | - mkdir -p "$(mandir)/man1" | |
114 | - $(INSTALL) -m 644 src/xyzsh/block.h "$(includedir)" | |
115 | - $(INSTALL) -m 644 src/xyzsh/curses.h "$(includedir)" | |
116 | - $(INSTALL) -m 644 src/xyzsh/debug.h "$(includedir)" | |
117 | - $(INSTALL) -m 644 src/xyzsh/hash.h "$(includedir)" | |
118 | - $(INSTALL) -m 644 src/xyzsh/kanji.h "$(includedir)" | |
119 | - $(INSTALL) -m 644 src/xyzsh/list.h "$(includedir)" | |
120 | - $(INSTALL) -m 644 src/xyzsh/string.h "$(includedir)" | |
121 | - $(INSTALL) -m 644 src/xyzsh/vector.h "$(includedir)" | |
122 | - $(INSTALL) -m 644 src/xyzsh/xyzsh.h "$(includedir)" | |
123 | - $(INSTALL) -m 644 USAGE "$(docdir)" | |
124 | - $(INSTALL) -m 644 USAGE.ja "$(docdir)" | |
125 | - $(INSTALL) -m 644 README "$(docdir)" | |
126 | - $(INSTALL) -m 644 CHANGELOG "$(docdir)" | |
127 | - rm -f $(bindir)/xyzsh | |
128 | - if echo $(CFLAGS) | grep -q MDEBUG; then $(INSTALL) -m 755 xyzsh "$(bindir)"; else $(INSTALL) -s -m 755 xyzsh "$(bindir)"; fi; | |
129 | - $(INSTALL) -m 644 man/man1/xyzsh.1 "$(mandir)/man1" | |
130 | - $(INSTALL) -m 644 xyzsh.xyzsh "$(sysconfdir)" | |
131 | - $(INSTALL) -m 644 completion.xyzsh "$(sysconfdir)" | |
132 | - $(INSTALL) -m 644 help.xyzsh "$(sysconfdir)" | |
133 | - $(INSTALL) -m 644 read_history.xyzsh "$(sysconfdir)" | |
134 | - | |
135 | -dest-install: | |
136 | - mkdir -p "$(DESTDIR)/$(bindir)"; | |
137 | - mkdir -p "$(DESTDIR)/$(sysconfdir)"; | |
138 | - mkdir -p "$(DESTDIR)/$(libdir)" | |
139 | - mkdir -p "$(DESTDIR)/$(includedir)" | |
140 | - mkdir -p "$(DESTDIR)/$(docdir)" | |
141 | - mkdir -p "$(DESTDIR)/$(mandir)/man1" | |
142 | - $(INSTALL) -m 644 src/xyzsh/block.h "$(DESTDIR)/$(includedir)" | |
143 | - $(INSTALL) -m 644 src/xyzsh/curses.h "$(DESTDIR)/$(includedir)" | |
144 | - $(INSTALL) -m 644 src/xyzsh/debug.h "$(DESTDIR)/$(includedir)" | |
145 | - $(INSTALL) -m 644 src/xyzsh/hash.h "$(DESTDIR)/$(includedir)" | |
146 | - $(INSTALL) -m 644 src/xyzsh/kanji.h "$(DESTDIR)/$(includedir)" | |
147 | - $(INSTALL) -m 644 src/xyzsh/list.h "$(DESTDIR)/$(includedir)" | |
148 | - $(INSTALL) -m 644 src/xyzsh/string.h "$(DESTDIR)/$(includedir)" | |
149 | - $(INSTALL) -m 644 src/xyzsh/vector.h "$(DESTDIR)/$(includedir)" | |
150 | - $(INSTALL) -m 644 src/xyzsh/xyzsh.h "$(DESTDIR)/$(includedir)" | |
151 | - $(INSTALL) -m 644 USAGE "$(DESTDIR)/$(docdir)" | |
152 | - $(INSTALL) -m 644 USAGE.ja "$(DESTDIR)/$(docdir)" | |
153 | - $(INSTALL) -m 644 README "$(DESTDIR)/$(docdir)" | |
154 | - $(INSTALL) -m 644 CHANGELOG "$(DESTDIR)/$(docdir)" | |
155 | - rm -f "$(DESTDIR)/$(bindir)/xyzsh" | |
156 | - if echo $(CFLAGS) | grep -q MDEBUG; then $(INSTALL) -m 755 xyzsh "$(DESTDIR)/$(bindir)"; else $(INSTALL) -s -m 755 xyzsh "$(DESTDIR)/$(bindir)"; fi; | |
157 | - $(INSTALL) -m 644 man/man1/xyzsh.1 "$(DESTDIR)/$(mandir)/man1" | |
158 | - $(INSTALL) -m 644 xyzsh.xyzsh "$(DESTDIR)/$(sysconfdir)" | |
159 | - $(INSTALL) -m 644 completion.xyzsh "$(DESTDIR)/$(sysconfdir)" | |
160 | - $(INSTALL) -m 644 help.xyzsh "$(DESTDIR)/$(sysconfdir)" | |
161 | - $(INSTALL) -m 644 read_history.xyzsh "$(DESTDIR)/$(sysconfdir)" | |
162 | - |
@@ -1,14 +0,0 @@ | ||
1 | -/* config.h. Generated from config.h.in by configure. */ | |
2 | -#define HAVE_NCURSES_H 1 | |
3 | -/* #undef HAVE_NCURSES_NCURSES_H */ | |
4 | -/* #undef HAVE_MIGEMO_H */ | |
5 | -#define HAVE_ICONV_H 1 | |
6 | -#define HAVE_READLINE_H 1 | |
7 | -#define HAVE_ONIGURUMA_H 1 | |
8 | -/* #undef HAVE_PCRE_H */ | |
9 | -/* #undef HAVE_ONIGUCHAR */ | |
10 | -/* #undef __CYGWIN__ */ | |
11 | -/* #undef __SUNOS__ */ | |
12 | -#define __DARWIN__ 1 | |
13 | -/* #undef __LINUX__ */ | |
14 | -/* #undef __FREEBSD__ */ |
@@ -1,612 +0,0 @@ | ||
1 | -This file contains any messages produced by compilers while | |
2 | -running configure, to aid debugging if configure makes a mistake. | |
3 | - | |
4 | -It was created by configure, which was | |
5 | -generated by GNU Autoconf 2.68. Invocation command line was | |
6 | - | |
7 | - $ ./configure --with-optimize | |
8 | - | |
9 | -## --------- ## | |
10 | -## Platform. ## | |
11 | -## --------- ## | |
12 | - | |
13 | -hostname = macbook.local | |
14 | -uname -m = x86_64 | |
15 | -uname -r = 12.2.0 | |
16 | -uname -s = Darwin | |
17 | -uname -v = Darwin Kernel Version 12.2.0: Sat Aug 25 00:48:52 PDT 2012; root:xnu-2050.18.24~1/RELEASE_X86_64 | |
18 | - | |
19 | -/usr/bin/uname -p = i386 | |
20 | -/bin/uname -X = unknown | |
21 | - | |
22 | -/bin/arch = unknown | |
23 | -/usr/bin/arch -k = unknown | |
24 | -/usr/convex/getsysinfo = unknown | |
25 | -/usr/bin/hostinfo = Mach kernel version: | |
26 | - Darwin Kernel Version 12.2.0: Sat Aug 25 00:48:52 PDT 2012; root:xnu-2050.18.24~1/RELEASE_X86_64 | |
27 | -Kernel configured for up to 2 processors. | |
28 | -2 processors are physically available. | |
29 | -2 processors are logically available. | |
30 | -Processor type: i486 (Intel 80486) | |
31 | -Processors active: 0 1 | |
32 | -Primary memory available: 8.00 gigabytes | |
33 | -Default processor set: 103 tasks, 482 threads, 2 processors | |
34 | -Load average: 1.91, Mach factor: 0.91 | |
35 | -/bin/machine = unknown | |
36 | -/usr/bin/oslevel = unknown | |
37 | -/bin/universe = unknown | |
38 | - | |
39 | -PATH: /opt/local/bin | |
40 | -PATH: /opt/local/sbin | |
41 | -PATH: /opt/local/bin | |
42 | -PATH: /opt/local/sbin | |
43 | -PATH: /opt/local/bin | |
44 | -PATH: /opt/local/sbin | |
45 | -PATH: /opt/local/bin | |
46 | -PATH: /opt/local/sbin | |
47 | -PATH: /opt/local/bin | |
48 | -PATH: /opt/local/sbin | |
49 | -PATH: /usr/bin | |
50 | -PATH: /bin | |
51 | -PATH: /usr/sbin | |
52 | -PATH: /sbin | |
53 | -PATH: /usr/local/bin | |
54 | - | |
55 | - | |
56 | -## ----------- ## | |
57 | -## Core tests. ## | |
58 | -## ----------- ## | |
59 | - | |
60 | -configure:2076: checking for gcc | |
61 | -configure:2092: found /usr/bin/gcc | |
62 | -configure:2103: result: gcc | |
63 | -configure:2332: checking for C compiler version | |
64 | -configure:2341: gcc --version >&5 | |
65 | -i686-apple-darwin11-llvm-gcc-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00) | |
66 | -Copyright (C) 2007 Free Software Foundation, Inc. | |
67 | -This is free software; see the source for copying conditions. There is NO | |
68 | -warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |
69 | - | |
70 | -configure:2352: $? = 0 | |
71 | -configure:2341: gcc -v >&5 | |
72 | -Using built-in specs. | |
73 | -Target: i686-apple-darwin11 | |
74 | -Configured with: /private/var/tmp/llvmgcc42/llvmgcc42-2336.11~67/src/configure --disable-checking --enable-werror --prefix=/Applications/Xcode.app/Contents/Developer/usr/llvm-gcc-4.2 --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-prefix=llvm- --program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib --build=i686-apple-darwin11 --enable-llvm=/private/var/tmp/llvmgcc42/llvmgcc42-2336.11~67/dst-llvmCore/Developer/usr/local --program-prefix=i686-apple-darwin11- --host=x86_64-apple-darwin11 --target=i686-apple-darwin11 --with-gxx-include-dir=/usr/include/c++/4.2.1 | |
75 | -Thread model: posix | |
76 | -gcc version 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00) | |
77 | -configure:2352: $? = 0 | |
78 | -configure:2341: gcc -V >&5 | |
79 | -llvm-gcc-4.2: argument to `-V' is missing | |
80 | -configure:2352: $? = 1 | |
81 | -configure:2341: gcc -qversion >&5 | |
82 | -i686-apple-darwin11-llvm-gcc-4.2: no input files | |
83 | -configure:2352: $? = 1 | |
84 | -configure:2372: checking whether the C compiler works | |
85 | -configure:2394: gcc conftest.c >&5 | |
86 | -configure:2398: $? = 0 | |
87 | -configure:2446: result: yes | |
88 | -configure:2449: checking for C compiler default output file name | |
89 | -configure:2451: result: a.out | |
90 | -configure:2457: checking for suffix of executables | |
91 | -configure:2464: gcc -o conftest conftest.c >&5 | |
92 | -configure:2468: $? = 0 | |
93 | -configure:2490: result: | |
94 | -configure:2512: checking whether we are cross compiling | |
95 | -configure:2520: gcc -o conftest conftest.c >&5 | |
96 | -configure:2524: $? = 0 | |
97 | -configure:2531: ./conftest | |
98 | -configure:2535: $? = 0 | |
99 | -configure:2550: result: no | |
100 | -configure:2555: checking for suffix of object files | |
101 | -configure:2577: gcc -c conftest.c >&5 | |
102 | -configure:2581: $? = 0 | |
103 | -configure:2602: result: o | |
104 | -configure:2606: checking whether we are using the GNU C compiler | |
105 | -configure:2625: gcc -c conftest.c >&5 | |
106 | -configure:2625: $? = 0 | |
107 | -configure:2634: result: yes | |
108 | -configure:2643: checking whether gcc accepts -g | |
109 | -configure:2663: gcc -c -g conftest.c >&5 | |
110 | -configure:2663: $? = 0 | |
111 | -configure:2704: result: yes | |
112 | -configure:2721: checking for gcc option to accept ISO C89 | |
113 | -configure:2785: gcc -c -g -O2 conftest.c >&5 | |
114 | -configure:2785: $? = 0 | |
115 | -configure:2798: result: none needed | |
116 | -configure:2861: checking for a BSD-compatible install | |
117 | -configure:2929: result: /usr/bin/install -c | |
118 | -configure:3029: checking Operating System | |
119 | -configure:3209: checking how to run the C preprocessor | |
120 | -configure:3240: gcc -E conftest.c | |
121 | -configure:3240: $? = 0 | |
122 | -configure:3254: gcc -E conftest.c | |
123 | -conftest.c:10:28: error: ac_nonexistent.h: No such file or directory | |
124 | -configure:3254: $? = 1 | |
125 | -configure: failed program was: | |
126 | -| /* confdefs.h */ | |
127 | -| #define PACKAGE_NAME "" | |
128 | -| #define PACKAGE_TARNAME "" | |
129 | -| #define PACKAGE_VERSION "" | |
130 | -| #define PACKAGE_STRING "" | |
131 | -| #define PACKAGE_BUGREPORT "" | |
132 | -| #define PACKAGE_URL "" | |
133 | -| #define __DARWIN__ 1 | |
134 | -| /* end confdefs.h. */ | |
135 | -| #include <ac_nonexistent.h> | |
136 | -configure:3279: result: gcc -E | |
137 | -configure:3299: gcc -E conftest.c | |
138 | -configure:3299: $? = 0 | |
139 | -configure:3313: gcc -E conftest.c | |
140 | -conftest.c:10:28: error: ac_nonexistent.h: No such file or directory | |
141 | -configure:3313: $? = 1 | |
142 | -configure: failed program was: | |
143 | -| /* confdefs.h */ | |
144 | -| #define PACKAGE_NAME "" | |
145 | -| #define PACKAGE_TARNAME "" | |
146 | -| #define PACKAGE_VERSION "" | |
147 | -| #define PACKAGE_STRING "" | |
148 | -| #define PACKAGE_BUGREPORT "" | |
149 | -| #define PACKAGE_URL "" | |
150 | -| #define __DARWIN__ 1 | |
151 | -| /* end confdefs.h. */ | |
152 | -| #include <ac_nonexistent.h> | |
153 | -configure:3342: checking for grep that handles long lines and -e | |
154 | -configure:3400: result: /usr/bin/grep | |
155 | -configure:3405: checking for egrep | |
156 | -configure:3467: result: /usr/bin/grep -E | |
157 | -configure:3472: checking for ANSI C header files | |
158 | -configure:3492: gcc -c -DSYSCONFDIR="\"${prefix}/etc/xyzsh/\"" -DDATAROOTDIR="\"${prefix}/share/doc/xyzsh/\"" -DSYSTEM_MIGEMODIR="\"/usr/local/share/migemo\"" -I./src -Isrc/ -I. -L. -I/usr/local/include -L/usr/local/lib -fPIC -I/usr/local/include -L/usr/local/lib -I/opt/local/include -L/opt/local/lib -O3 conftest.c >&5 | |
159 | -configure:3492: $? = 0 | |
160 | -configure:3565: gcc -o conftest -DSYSCONFDIR="\"${prefix}/etc/xyzsh/\"" -DDATAROOTDIR="\"${prefix}/share/doc/xyzsh/\"" -DSYSTEM_MIGEMODIR="\"/usr/local/share/migemo\"" -I./src -Isrc/ -I. -L. -I/usr/local/include -L/usr/local/lib -fPIC -I/usr/local/include -L/usr/local/lib -I/opt/local/include -L/opt/local/lib -O3 conftest.c >&5 | |
161 | -configure:3565: $? = 0 | |
162 | -configure:3565: ./conftest | |
163 | -configure:3565: $? = 0 | |
164 | -configure:3576: result: yes | |
165 | -configure:3589: checking for sys/types.h | |
166 | -configure:3589: gcc -c -DSYSCONFDIR="\"${prefix}/etc/xyzsh/\"" -DDATAROOTDIR="\"${prefix}/share/doc/xyzsh/\"" -DSYSTEM_MIGEMODIR="\"/usr/local/share/migemo\"" -I./src -Isrc/ -I. -L. -I/usr/local/include -L/usr/local/lib -fPIC -I/usr/local/include -L/usr/local/lib -I/opt/local/include -L/opt/local/lib -O3 conftest.c >&5 | |
167 | -configure:3589: $? = 0 | |
168 | -configure:3589: result: yes | |
169 | -configure:3589: checking for sys/stat.h | |
170 | -configure:3589: gcc -c -DSYSCONFDIR="\"${prefix}/etc/xyzsh/\"" -DDATAROOTDIR="\"${prefix}/share/doc/xyzsh/\"" -DSYSTEM_MIGEMODIR="\"/usr/local/share/migemo\"" -I./src -Isrc/ -I. -L. -I/usr/local/include -L/usr/local/lib -fPIC -I/usr/local/include -L/usr/local/lib -I/opt/local/include -L/opt/local/lib -O3 conftest.c >&5 | |
171 | -configure:3589: $? = 0 | |
172 | -configure:3589: result: yes | |
173 | -configure:3589: checking for stdlib.h | |
174 | -configure:3589: gcc -c -DSYSCONFDIR="\"${prefix}/etc/xyzsh/\"" -DDATAROOTDIR="\"${prefix}/share/doc/xyzsh/\"" -DSYSTEM_MIGEMODIR="\"/usr/local/share/migemo\"" -I./src -Isrc/ -I. -L. -I/usr/local/include -L/usr/local/lib -fPIC -I/usr/local/include -L/usr/local/lib -I/opt/local/include -L/opt/local/lib -O3 conftest.c >&5 | |
175 | -configure:3589: $? = 0 | |
176 | -configure:3589: result: yes | |
177 | -configure:3589: checking for string.h | |
178 | -configure:3589: gcc -c -DSYSCONFDIR="\"${prefix}/etc/xyzsh/\"" -DDATAROOTDIR="\"${prefix}/share/doc/xyzsh/\"" -DSYSTEM_MIGEMODIR="\"/usr/local/share/migemo\"" -I./src -Isrc/ -I. -L. -I/usr/local/include -L/usr/local/lib -fPIC -I/usr/local/include -L/usr/local/lib -I/opt/local/include -L/opt/local/lib -O3 conftest.c >&5 | |
179 | -configure:3589: $? = 0 | |
180 | -configure:3589: result: yes | |
181 | -configure:3589: checking for memory.h | |
182 | -configure:3589: gcc -c -DSYSCONFDIR="\"${prefix}/etc/xyzsh/\"" -DDATAROOTDIR="\"${prefix}/share/doc/xyzsh/\"" -DSYSTEM_MIGEMODIR="\"/usr/local/share/migemo\"" -I./src -Isrc/ -I. -L. -I/usr/local/include -L/usr/local/lib -fPIC -I/usr/local/include -L/usr/local/lib -I/opt/local/include -L/opt/local/lib -O3 conftest.c >&5 | |
183 | -configure:3589: $? = 0 | |
184 | -configure:3589: result: yes | |
185 | -configure:3589: checking for strings.h | |
186 | -configure:3589: gcc -c -DSYSCONFDIR="\"${prefix}/etc/xyzsh/\"" -DDATAROOTDIR="\"${prefix}/share/doc/xyzsh/\"" -DSYSTEM_MIGEMODIR="\"/usr/local/share/migemo\"" -I./src -Isrc/ -I. -L. -I/usr/local/include -L/usr/local/lib -fPIC -I/usr/local/include -L/usr/local/lib -I/opt/local/include -L/opt/local/lib -O3 conftest.c >&5 | |
187 | -configure:3589: $? = 0 | |
188 | -configure:3589: result: yes | |
189 | -configure:3589: checking for inttypes.h | |
190 | -configure:3589: gcc -c -DSYSCONFDIR="\"${prefix}/etc/xyzsh/\"" -DDATAROOTDIR="\"${prefix}/share/doc/xyzsh/\"" -DSYSTEM_MIGEMODIR="\"/usr/local/share/migemo\"" -I./src -Isrc/ -I. -L. -I/usr/local/include -L/usr/local/lib -fPIC -I/usr/local/include -L/usr/local/lib -I/opt/local/include -L/opt/local/lib -O3 conftest.c >&5 | |
191 | -configure:3589: $? = 0 | |
192 | -configure:3589: result: yes | |
193 | -configure:3589: checking for stdint.h | |
194 | -configure:3589: gcc -c -DSYSCONFDIR="\"${prefix}/etc/xyzsh/\"" -DDATAROOTDIR="\"${prefix}/share/doc/xyzsh/\"" -DSYSTEM_MIGEMODIR="\"/usr/local/share/migemo\"" -I./src -Isrc/ -I. -L. -I/usr/local/include -L/usr/local/lib -fPIC -I/usr/local/include -L/usr/local/lib -I/opt/local/include -L/opt/local/lib -O3 conftest.c >&5 | |
195 | -configure:3589: $? = 0 | |
196 | -configure:3589: result: yes | |
197 | -configure:3589: checking for unistd.h | |
198 | -configure:3589: gcc -c -DSYSCONFDIR="\"${prefix}/etc/xyzsh/\"" -DDATAROOTDIR="\"${prefix}/share/doc/xyzsh/\"" -DSYSTEM_MIGEMODIR="\"/usr/local/share/migemo\"" -I./src -Isrc/ -I. -L. -I/usr/local/include -L/usr/local/lib -fPIC -I/usr/local/include -L/usr/local/lib -I/opt/local/include -L/opt/local/lib -O3 conftest.c >&5 | |
199 | -configure:3589: $? = 0 | |
200 | -configure:3589: result: yes | |
201 | -configure:3601: checking readline/readline.h usability | |
202 | -configure:3601: gcc -c -DSYSCONFDIR="\"${prefix}/etc/xyzsh/\"" -DDATAROOTDIR="\"${prefix}/share/doc/xyzsh/\"" -DSYSTEM_MIGEMODIR="\"/usr/local/share/migemo\"" -I./src -Isrc/ -I. -L. -I/usr/local/include -L/usr/local/lib -fPIC -I/usr/local/include -L/usr/local/lib -I/opt/local/include -L/opt/local/lib -O3 conftest.c >&5 | |
203 | -configure:3601: $? = 0 | |
204 | -configure:3601: result: yes | |
205 | -configure:3601: checking readline/readline.h presence | |
206 | -configure:3601: gcc -E conftest.c | |
207 | -configure:3601: $? = 0 | |
208 | -configure:3601: result: yes | |
209 | -configure:3601: checking for readline/readline.h | |
210 | -configure:3601: result: yes | |
211 | -configure:3610: checking readline/history.h usability | |
212 | -configure:3610: gcc -c -DSYSCONFDIR="\"${prefix}/etc/xyzsh/\"" -DDATAROOTDIR="\"${prefix}/share/doc/xyzsh/\"" -DSYSTEM_MIGEMODIR="\"/usr/local/share/migemo\"" -I./src -Isrc/ -I. -L. -I/usr/local/include -L/usr/local/lib -fPIC -I/usr/local/include -L/usr/local/lib -I/opt/local/include -L/opt/local/lib -O3 conftest.c >&5 | |
213 | -configure:3610: $? = 0 | |
214 | -configure:3610: result: yes | |
215 | -configure:3610: checking readline/history.h presence | |
216 | -configure:3610: gcc -E conftest.c | |
217 | -configure:3610: $? = 0 | |
218 | -configure:3610: result: yes | |
219 | -configure:3610: checking for readline/history.h | |
220 | -configure:3610: result: yes | |
221 | -configure:3619: checking for main in -lreadline | |
222 | -configure:3638: gcc -o conftest -DSYSCONFDIR="\"${prefix}/etc/xyzsh/\"" -DDATAROOTDIR="\"${prefix}/share/doc/xyzsh/\"" -DSYSTEM_MIGEMODIR="\"/usr/local/share/migemo\"" -I./src -Isrc/ -I. -L. -I/usr/local/include -L/usr/local/lib -fPIC -I/usr/local/include -L/usr/local/lib -I/opt/local/include -L/opt/local/lib -O3 conftest.c -lreadline >&5 | |
223 | -configure:3638: $? = 0 | |
224 | -configure:3647: result: yes | |
225 | -configure:3660: checking ncurses.h usability | |
226 | -configure:3660: gcc -c -DSYSCONFDIR="\"${prefix}/etc/xyzsh/\"" -DDATAROOTDIR="\"${prefix}/share/doc/xyzsh/\"" -DSYSTEM_MIGEMODIR="\"/usr/local/share/migemo\"" -I./src -Isrc/ -I. -L. -I/usr/local/include -L/usr/local/lib -fPIC -I/usr/local/include -L/usr/local/lib -I/opt/local/include -L/opt/local/lib -O3 conftest.c >&5 | |
227 | -configure:3660: $? = 0 | |
228 | -configure:3660: result: yes | |
229 | -configure:3660: checking ncurses.h presence | |
230 | -configure:3660: gcc -E conftest.c | |
231 | -configure:3660: $? = 0 | |
232 | -configure:3660: result: yes | |
233 | -configure:3660: checking for ncurses.h | |
234 | -configure:3660: result: yes | |
235 | -configure:3667: checking ncurses/ncurses.h usability | |
236 | -configure:3667: gcc -c -DSYSCONFDIR="\"${prefix}/etc/xyzsh/\"" -DDATAROOTDIR="\"${prefix}/share/doc/xyzsh/\"" -DSYSTEM_MIGEMODIR="\"/usr/local/share/migemo\"" -I./src -Isrc/ -I. -L. -I/usr/local/include -L/usr/local/lib -fPIC -I/usr/local/include -L/usr/local/lib -I/opt/local/include -L/opt/local/lib -O3 conftest.c >&5 | |
237 | -conftest.c:56:29: error: ncurses/ncurses.h: No such file or directory | |
238 | -configure:3667: $? = 1 | |
239 | -configure: failed program was: | |
240 | -| /* confdefs.h */ | |
241 | -| #define PACKAGE_NAME "" | |
242 | -| #define PACKAGE_TARNAME "" | |
243 | -| #define PACKAGE_VERSION "" | |
244 | -| #define PACKAGE_STRING "" | |
245 | -| #define PACKAGE_BUGREPORT "" | |
246 | -| #define PACKAGE_URL "" | |
247 | -| #define __DARWIN__ 1 | |
248 | -| #define STDC_HEADERS 1 | |
249 | -| #define HAVE_SYS_TYPES_H 1 | |
250 | -| #define HAVE_SYS_STAT_H 1 | |
251 | -| #define HAVE_STDLIB_H 1 | |
252 | -| #define HAVE_STRING_H 1 | |
253 | -| #define HAVE_MEMORY_H 1 | |
254 | -| #define HAVE_STRINGS_H 1 | |
255 | -| #define HAVE_INTTYPES_H 1 | |
256 | -| #define HAVE_STDINT_H 1 | |
257 | -| #define HAVE_UNISTD_H 1 | |
258 | -| #define HAVE_READLINE_H 1 | |
259 | -| #define HAVE_READLINE_HISTORY_H 1 | |
260 | -| #define HAVE_NCURSES_H 1 | |
261 | -| /* end confdefs.h. */ | |
262 | -| #include <stdio.h> | |
263 | -| #ifdef HAVE_SYS_TYPES_H | |
264 | -| # include <sys/types.h> | |
265 | -| #endif | |
266 | -| #ifdef HAVE_SYS_STAT_H | |
267 | -| # include <sys/stat.h> | |
268 | -| #endif | |
269 | -| #ifdef STDC_HEADERS | |
270 | -| # include <stdlib.h> | |
271 | -| # include <stddef.h> | |
272 | -| #else | |
273 | -| # ifdef HAVE_STDLIB_H | |
274 | -| # include <stdlib.h> | |
275 | -| # endif | |
276 | -| #endif | |
277 | -| #ifdef HAVE_STRING_H | |
278 | -| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | |
279 | -| # include <memory.h> | |
280 | -| # endif | |
281 | -| # include <string.h> | |
282 | -| #endif | |
283 | -| #ifdef HAVE_STRINGS_H | |
284 | -| # include <strings.h> | |
285 | -| #endif | |
286 | -| #ifdef HAVE_INTTYPES_H | |
287 | -| # include <inttypes.h> | |
288 | -| #endif | |
289 | -| #ifdef HAVE_STDINT_H | |
290 | -| # include <stdint.h> | |
291 | -| #endif | |
292 | -| #ifdef HAVE_UNISTD_H | |
293 | -| # include <unistd.h> | |
294 | -| #endif | |
295 | -| #include <ncurses/ncurses.h> | |
296 | -configure:3667: result: no | |
297 | -configure:3667: checking ncurses/ncurses.h presence | |
298 | -configure:3667: gcc -E conftest.c | |
299 | -conftest.c:23:29: error: ncurses/ncurses.h: No such file or directory | |
300 | -configure:3667: $? = 1 | |
301 | -configure: failed program was: | |
302 | -| /* confdefs.h */ | |
303 | -| #define PACKAGE_NAME "" | |
304 | -| #define PACKAGE_TARNAME "" | |
305 | -| #define PACKAGE_VERSION "" | |
306 | -| #define PACKAGE_STRING "" | |
307 | -| #define PACKAGE_BUGREPORT "" | |
308 | -| #define PACKAGE_URL "" | |
309 | -| #define __DARWIN__ 1 | |
310 | -| #define STDC_HEADERS 1 | |
311 | -| #define HAVE_SYS_TYPES_H 1 | |
312 | -| #define HAVE_SYS_STAT_H 1 | |
313 | -| #define HAVE_STDLIB_H 1 | |
314 | -| #define HAVE_STRING_H 1 | |
315 | -| #define HAVE_MEMORY_H 1 | |
316 | -| #define HAVE_STRINGS_H 1 | |
317 | -| #define HAVE_INTTYPES_H 1 | |
318 | -| #define HAVE_STDINT_H 1 | |
319 | -| #define HAVE_UNISTD_H 1 | |
320 | -| #define HAVE_READLINE_H 1 | |
321 | -| #define HAVE_READLINE_HISTORY_H 1 | |
322 | -| #define HAVE_NCURSES_H 1 | |
323 | -| /* end confdefs.h. */ | |
324 | -| #include <ncurses/ncurses.h> | |
325 | -configure:3667: result: no | |
326 | -configure:3667: checking for ncurses/ncurses.h | |
327 | -configure:3667: result: no | |
328 | -configure:3674: checking for main in -lcursesw | |
329 | -configure:3693: gcc -o conftest -DSYSCONFDIR="\"${prefix}/etc/xyzsh/\"" -DDATAROOTDIR="\"${prefix}/share/doc/xyzsh/\"" -DSYSTEM_MIGEMODIR="\"/usr/local/share/migemo\"" -I./src -Isrc/ -I. -L. -I/usr/local/include -L/usr/local/lib -fPIC -I/usr/local/include -L/usr/local/lib -I/opt/local/include -L/opt/local/lib -O3 conftest.c -lcursesw -lreadline >&5 | |
330 | -ld: library not found for -lcursesw | |
331 | -collect2: ld returned 1 exit status | |
332 | -configure:3693: $? = 1 | |
333 | -configure: failed program was: | |
334 | -| /* confdefs.h */ | |
335 | -| #define PACKAGE_NAME "" | |
336 | -| #define PACKAGE_TARNAME "" | |
337 | -| #define PACKAGE_VERSION "" | |
338 | -| #define PACKAGE_STRING "" | |
339 | -| #define PACKAGE_BUGREPORT "" | |
340 | -| #define PACKAGE_URL "" | |
341 | -| #define __DARWIN__ 1 | |
342 | -| #define STDC_HEADERS 1 | |
343 | -| #define HAVE_SYS_TYPES_H 1 | |
344 | -| #define HAVE_SYS_STAT_H 1 | |
345 | -| #define HAVE_STDLIB_H 1 | |
346 | -| #define HAVE_STRING_H 1 | |
347 | -| #define HAVE_MEMORY_H 1 | |
348 | -| #define HAVE_STRINGS_H 1 | |
349 | -| #define HAVE_INTTYPES_H 1 | |
350 | -| #define HAVE_STDINT_H 1 | |
351 | -| #define HAVE_UNISTD_H 1 | |
352 | -| #define HAVE_READLINE_H 1 | |
353 | -| #define HAVE_READLINE_HISTORY_H 1 | |
354 | -| #define HAVE_NCURSES_H 1 | |
355 | -| /* end confdefs.h. */ | |
356 | -| | |
357 | -| | |
358 | -| int | |
359 | -| main () | |
360 | -| { | |
361 | -| return main (); | |
362 | -| ; | |
363 | -| return 0; | |
364 | -| } | |
365 | -configure:3702: result: no | |
366 | -configure:3709: checking for main in -lncursesw | |
367 | -configure:3728: gcc -o conftest -DSYSCONFDIR="\"${prefix}/etc/xyzsh/\"" -DDATAROOTDIR="\"${prefix}/share/doc/xyzsh/\"" -DSYSTEM_MIGEMODIR="\"/usr/local/share/migemo\"" -I./src -Isrc/ -I. -L. -I/usr/local/include -L/usr/local/lib -fPIC -I/usr/local/include -L/usr/local/lib -I/opt/local/include -L/opt/local/lib -O3 conftest.c -lncursesw -lreadline >&5 | |
368 | -configure:3728: $? = 0 | |
369 | -configure:3737: result: yes | |
370 | -configure:3832: checking math.h usability | |
371 | -configure:3832: gcc -c -DSYSCONFDIR="\"${prefix}/etc/xyzsh/\"" -DDATAROOTDIR="\"${prefix}/share/doc/xyzsh/\"" -DSYSTEM_MIGEMODIR="\"/usr/local/share/migemo\"" -I./src -Isrc/ -I. -L. -I/usr/local/include -L/usr/local/lib -fPIC -I/usr/local/include -L/usr/local/lib -I/opt/local/include -L/opt/local/lib -O3 conftest.c >&5 | |
372 | -configure:3832: $? = 0 | |
373 | -configure:3832: result: yes | |
374 | -configure:3832: checking math.h presence | |
375 | -configure:3832: gcc -E conftest.c | |
376 | -configure:3832: $? = 0 | |
377 | -configure:3832: result: yes | |
378 | -configure:3832: checking for math.h | |
379 | -configure:3832: result: yes | |
380 | -configure:3841: checking for main in -lm | |
381 | -configure:3860: gcc -o conftest -DSYSCONFDIR="\"${prefix}/etc/xyzsh/\"" -DDATAROOTDIR="\"${prefix}/share/doc/xyzsh/\"" -DSYSTEM_MIGEMODIR="\"/usr/local/share/migemo\"" -I./src -Isrc/ -I. -L. -I/usr/local/include -L/usr/local/lib -fPIC -I/usr/local/include -L/usr/local/lib -I/opt/local/include -L/opt/local/lib -O3 conftest.c -lm -lreadline -lncursesw >&5 | |
382 | -configure:3860: $? = 0 | |
383 | -configure:3869: result: yes | |
384 | -configure:3882: checking iconv.h usability | |
385 | -configure:3882: gcc -c -DSYSCONFDIR="\"${prefix}/etc/xyzsh/\"" -DDATAROOTDIR="\"${prefix}/share/doc/xyzsh/\"" -DSYSTEM_MIGEMODIR="\"/usr/local/share/migemo\"" -I./src -Isrc/ -I. -L. -I/usr/local/include -L/usr/local/lib -fPIC -I/usr/local/include -L/usr/local/lib -I/opt/local/include -L/opt/local/lib -O3 conftest.c >&5 | |
386 | -configure:3882: $? = 0 | |
387 | -configure:3882: result: yes | |
388 | -configure:3882: checking iconv.h presence | |
389 | -configure:3882: gcc -E conftest.c | |
390 | -configure:3882: $? = 0 | |
391 | -configure:3882: result: yes | |
392 | -configure:3882: checking for iconv.h | |
393 | -configure:3882: result: yes | |
394 | -configure:3900: checking oniguruma.h usability | |
395 | -configure:3900: gcc -c -DSYSCONFDIR="\"${prefix}/etc/xyzsh/\"" -DDATAROOTDIR="\"${prefix}/share/doc/xyzsh/\"" -DSYSTEM_MIGEMODIR="\"/usr/local/share/migemo\"" -I./src -Isrc/ -I. -L. -I/usr/local/include -L/usr/local/lib -fPIC -I/usr/local/include -L/usr/local/lib -I/opt/local/include -L/opt/local/lib -O3 conftest.c >&5 | |
396 | -configure:3900: $? = 0 | |
397 | -configure:3900: result: yes | |
398 | -configure:3900: checking oniguruma.h presence | |
399 | -configure:3900: gcc -E conftest.c | |
400 | -conftest.c:25:23: error: oniguruma.h: No such file or directory | |
401 | -configure:3900: $? = 1 | |
402 | -configure: failed program was: | |
403 | -| /* confdefs.h */ | |
404 | -| #define PACKAGE_NAME "" | |
405 | -| #define PACKAGE_TARNAME "" | |
406 | -| #define PACKAGE_VERSION "" | |
407 | -| #define PACKAGE_STRING "" | |
408 | -| #define PACKAGE_BUGREPORT "" | |
409 | -| #define PACKAGE_URL "" | |
410 | -| #define __DARWIN__ 1 | |
411 | -| #define STDC_HEADERS 1 | |
412 | -| #define HAVE_SYS_TYPES_H 1 | |
413 | -| #define HAVE_SYS_STAT_H 1 | |
414 | -| #define HAVE_STDLIB_H 1 | |
415 | -| #define HAVE_STRING_H 1 | |
416 | -| #define HAVE_MEMORY_H 1 | |
417 | -| #define HAVE_STRINGS_H 1 | |
418 | -| #define HAVE_INTTYPES_H 1 | |
419 | -| #define HAVE_STDINT_H 1 | |
420 | -| #define HAVE_UNISTD_H 1 | |
421 | -| #define HAVE_READLINE_H 1 | |
422 | -| #define HAVE_READLINE_HISTORY_H 1 | |
423 | -| #define HAVE_NCURSES_H 1 | |
424 | -| #define HAVE_MATH_H 1 | |
425 | -| #define HAVE_ICONV_H 1 | |
426 | -| /* end confdefs.h. */ | |
427 | -| #include <oniguruma.h> | |
428 | -configure:3900: result: no | |
429 | -configure:3900: WARNING: oniguruma.h: accepted by the compiler, rejected by the preprocessor! | |
430 | -configure:3900: WARNING: oniguruma.h: proceeding with the compiler's result | |
431 | -configure:3900: checking for oniguruma.h | |
432 | -configure:3900: result: yes | |
433 | -configure:3909: checking for main in -lonig | |
434 | -configure:3928: gcc -o conftest -DSYSCONFDIR="\"${prefix}/etc/xyzsh/\"" -DDATAROOTDIR="\"${prefix}/share/doc/xyzsh/\"" -DSYSTEM_MIGEMODIR="\"/usr/local/share/migemo\"" -I./src -Isrc/ -I. -L. -I/usr/local/include -L/usr/local/lib -fPIC -I/usr/local/include -L/usr/local/lib -I/opt/local/include -L/opt/local/lib -O3 conftest.c -lonig -lreadline -lncursesw -lm -liconv >&5 | |
435 | -configure:3928: $? = 0 | |
436 | -configure:3937: result: yes | |
437 | -conftest.c:26:23: error: oniguruma.h: No such file or directory | |
438 | -configure:4097: creating ./config.status | |
439 | - | |
440 | -## ---------------------- ## | |
441 | -## Running config.status. ## | |
442 | -## ---------------------- ## | |
443 | - | |
444 | -This file was extended by config.status, which was | |
445 | -generated by GNU Autoconf 2.68. Invocation command line was | |
446 | - | |
447 | - CONFIG_FILES = | |
448 | - CONFIG_HEADERS = | |
449 | - CONFIG_LINKS = | |
450 | - CONFIG_COMMANDS = | |
451 | - $ ./config.status | |
452 | - | |
453 | -on macbook.local | |
454 | - | |
455 | -config.status:830: creating Makefile | |
456 | -config.status:830: creating config.h | |
457 | -config.status:1005: config.h is unchanged | |
458 | - | |
459 | -## ---------------- ## | |
460 | -## Cache variables. ## | |
461 | -## ---------------- ## | |
462 | - | |
463 | -ac_cv_c_compiler_gnu=yes | |
464 | -ac_cv_env_CC_set= | |
465 | -ac_cv_env_CC_value= | |
466 | -ac_cv_env_CFLAGS_set= | |
467 | -ac_cv_env_CFLAGS_value= | |
468 | -ac_cv_env_CPPFLAGS_set= | |
469 | -ac_cv_env_CPPFLAGS_value= | |
470 | -ac_cv_env_CPP_set= | |
471 | -ac_cv_env_CPP_value= | |
472 | -ac_cv_env_LDFLAGS_set= | |
473 | -ac_cv_env_LDFLAGS_value= | |
474 | -ac_cv_env_LIBS_set= | |
475 | -ac_cv_env_LIBS_value= | |
476 | -ac_cv_env_build_alias_set= | |
477 | -ac_cv_env_build_alias_value= | |
478 | -ac_cv_env_host_alias_set= | |
479 | -ac_cv_env_host_alias_value= | |
480 | -ac_cv_env_target_alias_set= | |
481 | -ac_cv_env_target_alias_value= | |
482 | -ac_cv_header_iconv_h=yes | |
483 | -ac_cv_header_inttypes_h=yes | |
484 | -ac_cv_header_math_h=yes | |
485 | -ac_cv_header_memory_h=yes | |
486 | -ac_cv_header_ncurses_h=yes | |
487 | -ac_cv_header_ncurses_ncurses_h=no | |
488 | -ac_cv_header_oniguruma_h=yes | |
489 | -ac_cv_header_readline_history_h=yes | |
490 | -ac_cv_header_readline_readline_h=yes | |
491 | -ac_cv_header_stdc=yes | |
492 | -ac_cv_header_stdint_h=yes | |
493 | -ac_cv_header_stdlib_h=yes | |
494 | -ac_cv_header_string_h=yes | |
495 | -ac_cv_header_strings_h=yes | |
496 | -ac_cv_header_sys_stat_h=yes | |
497 | -ac_cv_header_sys_types_h=yes | |
498 | -ac_cv_header_unistd_h=yes | |
499 | -ac_cv_lib_cursesw=ac_cv_lib_cursesw_main | |
500 | -ac_cv_lib_cursesw_main=no | |
501 | -ac_cv_lib_m=ac_cv_lib_m_main | |
502 | -ac_cv_lib_m_main=yes | |
503 | -ac_cv_lib_ncursesw=ac_cv_lib_ncursesw_main | |
504 | -ac_cv_lib_ncursesw_main=yes | |
505 | -ac_cv_lib_onig=ac_cv_lib_onig_main | |
506 | -ac_cv_lib_onig_main=yes | |
507 | -ac_cv_lib_readline=ac_cv_lib_readline_main | |
508 | -ac_cv_lib_readline_main=yes | |
509 | -ac_cv_objext=o | |
510 | -ac_cv_path_EGREP='/usr/bin/grep -E' | |
511 | -ac_cv_path_GREP=/usr/bin/grep | |
512 | -ac_cv_path_install='/usr/bin/install -c' | |
513 | -ac_cv_prog_CPP='gcc -E' | |
514 | -ac_cv_prog_ac_ct_CC=gcc | |
515 | -ac_cv_prog_cc_c89= | |
516 | -ac_cv_prog_cc_g=yes | |
517 | - | |
518 | -## ----------------- ## | |
519 | -## Output variables. ## | |
520 | -## ----------------- ## | |
521 | - | |
522 | -CC='gcc' | |
523 | -CFLAGS='-DSYSCONFDIR="\"${prefix}/etc/xyzsh/\"" -DDATAROOTDIR="\"${prefix}/share/doc/xyzsh/\"" -DSYSTEM_MIGEMODIR="\"/usr/local/share/migemo\"" -I./src -Isrc/ -I. -L. -I/usr/local/include -L/usr/local/lib -fPIC -I/usr/local/include -L/usr/local/lib -I/opt/local/include -L/opt/local/lib -O3' | |
524 | -CPP='gcc -E' | |
525 | -CPPFLAGS='' | |
526 | -DEFS='-DHAVE_CONFIG_H' | |
527 | -ECHO_C='\c' | |
528 | -ECHO_N='' | |
529 | -ECHO_T='' | |
530 | -EGREP='/usr/bin/grep -E' | |
531 | -EXEEXT='' | |
532 | -GREP='/usr/bin/grep' | |
533 | -INSTALL_DATA='${INSTALL} -m 644' | |
534 | -INSTALL_PROGRAM='${INSTALL}' | |
535 | -INSTALL_SCRIPT='${INSTALL}' | |
536 | -LDFLAGS='' | |
537 | -LIBOBJS='' | |
538 | -LIBS=' -lreadline -lncursesw -lm -liconv -lonig' | |
539 | -LIBXYZSHA='' | |
540 | -LIBXYZSHASTRIP='-s' | |
541 | -LIBXYZSHSO1='libxyzsh.1.5.8.dylib' | |
542 | -LIBXYZSHSO='libxyzsh.dylib' | |
543 | -LTLIBOBJS='' | |
544 | -OBJ='src/gc.o src/stack.o src/string.o src/list.o src/kanji.o src/debug.o src/hash.o src/vector.o src/block.o src/fun.o src/class.o src/completion.o src/xyzsh.o src/parser.o src/run.o src/readline.o src/curses.o src/cmd_base.o src/cmd_obj.o src/cmd_file.o src/cmd_str.o src/cmd_ary.o src/cmd_condition.o src/interface.o src/object.o src/uobject.o src/cmd_num.o src/cmd_curses.o src/fd.o src/nfun.o src/extprog.o' | |
545 | -OBJEXT='o' | |
546 | -PACKAGE_BUGREPORT='' | |
547 | -PACKAGE_NAME='' | |
548 | -PACKAGE_STRING='' | |
549 | -PACKAGE_TARNAME='' | |
550 | -PACKAGE_URL='' | |
551 | -PACKAGE_VERSION='' | |
552 | -PATH_SEPARATOR=':' | |
553 | -SHELL='/bin/sh' | |
554 | -SO_VERSION='1.5.8' | |
555 | -SYSTEM_MIGEMODIR='/usr/local/share/migemo' | |
556 | -ac_ct_CC='gcc' | |
557 | -bindir='${exec_prefix}/bin' | |
558 | -build_alias='' | |
559 | -datadir='${datarootdir}' | |
560 | -datarootdir='${prefix}/share' | |
561 | -docdir='${datarootdir}/doc/${PACKAGE}' | |
562 | -dvidir='${docdir}' | |
563 | -exec_prefix='${prefix}' | |
564 | -host_alias='' | |
565 | -htmldir='${docdir}' | |
566 | -includedir='${prefix}/include' | |
567 | -infodir='${datarootdir}/info' | |
568 | -libdir='${exec_prefix}/lib' | |
569 | -libexecdir='${exec_prefix}/libexec' | |
570 | -localedir='${datarootdir}/locale' | |
571 | -localstatedir='${prefix}/var' | |
572 | -mandir='${datarootdir}/man' | |
573 | -oldincludedir='/usr/include' | |
574 | -pdfdir='${docdir}' | |
575 | -prefix='/usr/local' | |
576 | -program_transform_name='s,x,x,' | |
577 | -psdir='${docdir}' | |
578 | -sbindir='${exec_prefix}/sbin' | |
579 | -sharedstatedir='${prefix}/com' | |
580 | -sysconfdir='${prefix}/etc' | |
581 | -target_alias='' | |
582 | - | |
583 | -## ----------- ## | |
584 | -## confdefs.h. ## | |
585 | -## ----------- ## | |
586 | - | |
587 | -/* confdefs.h */ | |
588 | -#define PACKAGE_NAME "" | |
589 | -#define PACKAGE_TARNAME "" | |
590 | -#define PACKAGE_VERSION "" | |
591 | -#define PACKAGE_STRING "" | |
592 | -#define PACKAGE_BUGREPORT "" | |
593 | -#define PACKAGE_URL "" | |
594 | -#define __DARWIN__ 1 | |
595 | -#define STDC_HEADERS 1 | |
596 | -#define HAVE_SYS_TYPES_H 1 | |
597 | -#define HAVE_SYS_STAT_H 1 | |
598 | -#define HAVE_STDLIB_H 1 | |
599 | -#define HAVE_STRING_H 1 | |
600 | -#define HAVE_MEMORY_H 1 | |
601 | -#define HAVE_STRINGS_H 1 | |
602 | -#define HAVE_INTTYPES_H 1 | |
603 | -#define HAVE_STDINT_H 1 | |
604 | -#define HAVE_UNISTD_H 1 | |
605 | -#define HAVE_READLINE_H 1 | |
606 | -#define HAVE_READLINE_HISTORY_H 1 | |
607 | -#define HAVE_NCURSES_H 1 | |
608 | -#define HAVE_MATH_H 1 | |
609 | -#define HAVE_ICONV_H 1 | |
610 | -#define HAVE_ONIGURUMA_H 1 | |
611 | - | |
612 | -configure: exit 0 |
@@ -1,1025 +0,0 @@ | ||
1 | -#! /bin/sh | |
2 | -# Generated by configure. | |
3 | -# Run this file to recreate the current configuration. | |
4 | -# Compiler output produced by configure, useful for debugging | |
5 | -# configure, is in config.log if it exists. | |
6 | - | |
7 | -debug=false | |
8 | -ac_cs_recheck=false | |
9 | -ac_cs_silent=false | |
10 | - | |
11 | -SHELL=${CONFIG_SHELL-/bin/sh} | |
12 | -export SHELL | |
13 | -## -------------------- ## | |
14 | -## M4sh Initialization. ## | |
15 | -## -------------------- ## | |
16 | - | |
17 | -# Be more Bourne compatible | |
18 | -DUALCASE=1; export DUALCASE # for MKS sh | |
19 | -if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : | |
20 | - emulate sh | |
21 | - NULLCMD=: | |
22 | - # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which | |
23 | - # is contrary to our usage. Disable this feature. | |
24 | - alias -g '${1+"$@"}'='"$@"' | |
25 | - setopt NO_GLOB_SUBST | |
26 | -else | |
27 | - case `(set -o) 2>/dev/null` in #( | |
28 | - *posix*) : | |
29 | - set -o posix ;; #( | |
30 | - *) : | |
31 | - ;; | |
32 | -esac | |
33 | -fi | |
34 | - | |
35 | - | |
36 | -as_nl=' | |
37 | -' | |
38 | -export as_nl | |
39 | -# Printing a long string crashes Solaris 7 /usr/bin/printf. | |
40 | -as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' | |
41 | -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo | |
42 | -as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo | |
43 | -# Prefer a ksh shell builtin over an external printf program on Solaris, | |
44 | -# but without wasting forks for bash or zsh. | |
45 | -if test -z "$BASH_VERSION$ZSH_VERSION" \ | |
46 | - && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then | |
47 | - as_echo='print -r --' | |
48 | - as_echo_n='print -rn --' | |
49 | -elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then | |
50 | - as_echo='printf %s\n' | |
51 | - as_echo_n='printf %s' | |
52 | -else | |
53 | - if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then | |
54 | - as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' | |
55 | - as_echo_n='/usr/ucb/echo -n' | |
56 | - else | |
57 | - as_echo_body='eval expr "X$1" : "X\\(.*\\)"' | |
58 | - as_echo_n_body='eval | |
59 | - arg=$1; | |
60 | - case $arg in #( | |
61 | - *"$as_nl"*) | |
62 | - expr "X$arg" : "X\\(.*\\)$as_nl"; | |
63 | - arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; | |
64 | - esac; | |
65 | - expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" | |
66 | - ' | |
67 | - export as_echo_n_body | |
68 | - as_echo_n='sh -c $as_echo_n_body as_echo' | |
69 | - fi | |
70 | - export as_echo_body | |
71 | - as_echo='sh -c $as_echo_body as_echo' | |
72 | -fi | |
73 | - | |
74 | -# The user is always right. | |
75 | -if test "${PATH_SEPARATOR+set}" != set; then | |
76 | - PATH_SEPARATOR=: | |
77 | - (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { | |
78 | - (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || | |
79 | - PATH_SEPARATOR=';' | |
80 | - } | |
81 | -fi | |
82 | - | |
83 | - | |
84 | -# IFS | |
85 | -# We need space, tab and new line, in precisely that order. Quoting is | |
86 | -# there to prevent editors from complaining about space-tab. | |
87 | -# (If _AS_PATH_WALK were called with IFS unset, it would disable word | |
88 | -# splitting by setting IFS to empty value.) | |
89 | -IFS=" "" $as_nl" | |
90 | - | |
91 | -# Find who we are. Look in the path if we contain no directory separator. | |
92 | -as_myself= | |
93 | -case $0 in #(( | |
94 | - *[\\/]* ) as_myself=$0 ;; | |
95 | - *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | |
96 | -for as_dir in $PATH | |
97 | -do | |
98 | - IFS=$as_save_IFS | |
99 | - test -z "$as_dir" && as_dir=. | |
100 | - test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break | |
101 | - done | |
102 | -IFS=$as_save_IFS | |
103 | - | |
104 | - ;; | |
105 | -esac | |
106 | -# We did not find ourselves, most probably we were run as `sh COMMAND' | |
107 | -# in which case we are not to be found in the path. | |
108 | -if test "x$as_myself" = x; then | |
109 | - as_myself=$0 | |
110 | -fi | |
111 | -if test ! -f "$as_myself"; then | |
112 | - $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 | |
113 | - exit 1 | |
114 | -fi | |
115 | - | |
116 | -# Unset variables that we do not need and which cause bugs (e.g. in | |
117 | -# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" | |
118 | -# suppresses any "Segmentation fault" message there. '((' could | |
119 | -# trigger a bug in pdksh 5.2.14. | |
120 | -for as_var in BASH_ENV ENV MAIL MAILPATH | |
121 | -do eval test x\${$as_var+set} = xset \ | |
122 | - && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : | |
123 | -done | |
124 | -PS1='$ ' | |
125 | -PS2='> ' | |
126 | -PS4='+ ' | |
127 | - | |
128 | -# NLS nuisances. | |
129 | -LC_ALL=C | |
130 | -export LC_ALL | |
131 | -LANGUAGE=C | |
132 | -export LANGUAGE | |
133 | - | |
134 | -# CDPATH. | |
135 | -(unset CDPATH) >/dev/null 2>&1 && unset CDPATH | |
136 | - | |
137 | - | |
138 | -# as_fn_error STATUS ERROR [LINENO LOG_FD] | |
139 | -# ---------------------------------------- | |
140 | -# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are | |
141 | -# provided, also output the error to LOG_FD, referencing LINENO. Then exit the | |
142 | -# script with STATUS, using 1 if that was 0. | |
143 | -as_fn_error () | |
144 | -{ | |
145 | - as_status=$1; test $as_status -eq 0 && as_status=1 | |
146 | - if test "$4"; then | |
147 | - as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack | |
148 | - $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 | |
149 | - fi | |
150 | - $as_echo "$as_me: error: $2" >&2 | |
151 | - as_fn_exit $as_status | |
152 | -} # as_fn_error | |
153 | - | |
154 | - | |
155 | -# as_fn_set_status STATUS | |
156 | -# ----------------------- | |
157 | -# Set $? to STATUS, without forking. | |
158 | -as_fn_set_status () | |
159 | -{ | |
160 | - return $1 | |
161 | -} # as_fn_set_status | |
162 | - | |
163 | -# as_fn_exit STATUS | |
164 | -# ----------------- | |
165 | -# Exit the shell with STATUS, even in a "trap 0" or "set -e" context. | |
166 | -as_fn_exit () | |
167 | -{ | |
168 | - set +e | |
169 | - as_fn_set_status $1 | |
170 | - exit $1 | |
171 | -} # as_fn_exit | |
172 | - | |
173 | -# as_fn_unset VAR | |
174 | -# --------------- | |
175 | -# Portably unset VAR. | |
176 | -as_fn_unset () | |
177 | -{ | |
178 | - { eval $1=; unset $1;} | |
179 | -} | |
180 | -as_unset=as_fn_unset | |
181 | -# as_fn_append VAR VALUE | |
182 | -# ---------------------- | |
183 | -# Append the text in VALUE to the end of the definition contained in VAR. Take | |
184 | -# advantage of any shell optimizations that allow amortized linear growth over | |
185 | -# repeated appends, instead of the typical quadratic growth present in naive | |
186 | -# implementations. | |
187 | -if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : | |
188 | - eval 'as_fn_append () | |
189 | - { | |
190 | - eval $1+=\$2 | |
191 | - }' | |
192 | -else | |
193 | - as_fn_append () | |
194 | - { | |
195 | - eval $1=\$$1\$2 | |
196 | - } | |
197 | -fi # as_fn_append | |
198 | - | |
199 | -# as_fn_arith ARG... | |
200 | -# ------------------ | |
201 | -# Perform arithmetic evaluation on the ARGs, and store the result in the | |
202 | -# global $as_val. Take advantage of shells that can avoid forks. The arguments | |
203 | -# must be portable across $(()) and expr. | |
204 | -if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : | |
205 | - eval 'as_fn_arith () | |
206 | - { | |
207 | - as_val=$(( $* )) | |
208 | - }' | |
209 | -else | |
210 | - as_fn_arith () | |
211 | - { | |
212 | - as_val=`expr "$@" || test $? -eq 1` | |
213 | - } | |
214 | -fi # as_fn_arith | |
215 | - | |
216 | - | |
217 | -if expr a : '\(a\)' >/dev/null 2>&1 && | |
218 | - test "X`expr 00001 : '.*\(...\)'`" = X001; then | |
219 | - as_expr=expr | |
220 | -else | |
221 | - as_expr=false | |
222 | -fi | |
223 | - | |
224 | -if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then | |
225 | - as_basename=basename | |
226 | -else | |
227 | - as_basename=false | |
228 | -fi | |
229 | - | |
230 | -if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then | |
231 | - as_dirname=dirname | |
232 | -else | |
233 | - as_dirname=false | |
234 | -fi | |
235 | - | |
236 | -as_me=`$as_basename -- "$0" || | |
237 | -$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ | |
238 | - X"$0" : 'X\(//\)$' \| \ | |
239 | - X"$0" : 'X\(/\)' \| . 2>/dev/null || | |
240 | -$as_echo X/"$0" | | |
241 | - sed '/^.*\/\([^/][^/]*\)\/*$/{ | |
242 | - s//\1/ | |
243 | - q | |
244 | - } | |
245 | - /^X\/\(\/\/\)$/{ | |
246 | - s//\1/ | |
247 | - q | |
248 | - } | |
249 | - /^X\/\(\/\).*/{ | |
250 | - s//\1/ | |
251 | - q | |
252 | - } | |
253 | - s/.*/./; q'` | |
254 | - | |
255 | -# Avoid depending upon Character Ranges. | |
256 | -as_cr_letters='abcdefghijklmnopqrstuvwxyz' | |
257 | -as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' | |
258 | -as_cr_Letters=$as_cr_letters$as_cr_LETTERS | |
259 | -as_cr_digits='0123456789' | |
260 | -as_cr_alnum=$as_cr_Letters$as_cr_digits | |
261 | - | |
262 | -ECHO_C= ECHO_N= ECHO_T= | |
263 | -case `echo -n x` in #((((( | |
264 | --n*) | |
265 | - case `echo 'xy\c'` in | |
266 | - *c*) ECHO_T=' ';; # ECHO_T is single tab character. | |
267 | - xy) ECHO_C='\c';; | |
268 | - *) echo `echo ksh88 bug on AIX 6.1` > /dev/null | |
269 | - ECHO_T=' ';; | |
270 | - esac;; | |
271 | -*) | |
272 | - ECHO_N='-n';; | |
273 | -esac | |
274 | - | |
275 | -rm -f conf$$ conf$$.exe conf$$.file | |
276 | -if test -d conf$$.dir; then | |
277 | - rm -f conf$$.dir/conf$$.file | |
278 | -else | |
279 | - rm -f conf$$.dir | |
280 | - mkdir conf$$.dir 2>/dev/null | |
281 | -fi | |
282 | -if (echo >conf$$.file) 2>/dev/null; then | |
283 | - if ln -s conf$$.file conf$$ 2>/dev/null; then | |
284 | - as_ln_s='ln -s' | |
285 | - # ... but there are two gotchas: | |
286 | - # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. | |
287 | - # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. | |
288 | - # In both cases, we have to default to `cp -p'. | |
289 | - ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || | |
290 | - as_ln_s='cp -p' | |
291 | - elif ln conf$$.file conf$$ 2>/dev/null; then | |
292 | - as_ln_s=ln | |
293 | - else | |
294 | - as_ln_s='cp -p' | |
295 | - fi | |
296 | -else | |
297 | - as_ln_s='cp -p' | |
298 | -fi | |
299 | -rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file | |
300 | -rmdir conf$$.dir 2>/dev/null | |
301 | - | |
302 | - | |
303 | -# as_fn_mkdir_p | |
304 | -# ------------- | |
305 | -# Create "$as_dir" as a directory, including parents if necessary. | |
306 | -as_fn_mkdir_p () | |
307 | -{ | |
308 | - | |
309 | - case $as_dir in #( | |
310 | - -*) as_dir=./$as_dir;; | |
311 | - esac | |
312 | - test -d "$as_dir" || eval $as_mkdir_p || { | |
313 | - as_dirs= | |
314 | - while :; do | |
315 | - case $as_dir in #( | |
316 | - *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( | |
317 | - *) as_qdir=$as_dir;; | |
318 | - esac | |
319 | - as_dirs="'$as_qdir' $as_dirs" | |
320 | - as_dir=`$as_dirname -- "$as_dir" || | |
321 | -$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ | |
322 | - X"$as_dir" : 'X\(//\)[^/]' \| \ | |
323 | - X"$as_dir" : 'X\(//\)$' \| \ | |
324 | - X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || | |
325 | -$as_echo X"$as_dir" | | |
326 | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ | |
327 | - s//\1/ | |
328 | - q | |
329 | - } | |
330 | - /^X\(\/\/\)[^/].*/{ | |
331 | - s//\1/ | |
332 | - q | |
333 | - } | |
334 | - /^X\(\/\/\)$/{ | |
335 | - s//\1/ | |
336 | - q | |
337 | - } | |
338 | - /^X\(\/\).*/{ | |
339 | - s//\1/ | |
340 | - q | |
341 | - } | |
342 | - s/.*/./; q'` | |
343 | - test -d "$as_dir" && break | |
344 | - done | |
345 | - test -z "$as_dirs" || eval "mkdir $as_dirs" | |
346 | - } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" | |
347 | - | |
348 | - | |
349 | -} # as_fn_mkdir_p | |
350 | -if mkdir -p . 2>/dev/null; then | |
351 | - as_mkdir_p='mkdir -p "$as_dir"' | |
352 | -else | |
353 | - test -d ./-p && rmdir ./-p | |
354 | - as_mkdir_p=false | |
355 | -fi | |
356 | - | |
357 | -if test -x / >/dev/null 2>&1; then | |
358 | - as_test_x='test -x' | |
359 | -else | |
360 | - if ls -dL / >/dev/null 2>&1; then | |
361 | - as_ls_L_option=L | |
362 | - else | |
363 | - as_ls_L_option= | |
364 | - fi | |
365 | - as_test_x=' | |
366 | - eval sh -c '\'' | |
367 | - if test -d "$1"; then | |
368 | - test -d "$1/."; | |
369 | - else | |
370 | - case $1 in #( | |
371 | - -*)set "./$1";; | |
372 | - esac; | |
373 | - case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( | |
374 | - ???[sx]*):;;*)false;;esac;fi | |
375 | - '\'' sh | |
376 | - ' | |
377 | -fi | |
378 | -as_executable_p=$as_test_x | |
379 | - | |
380 | -# Sed expression to map a string onto a valid CPP name. | |
381 | -as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" | |
382 | - | |
383 | -# Sed expression to map a string onto a valid variable name. | |
384 | -as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" | |
385 | - | |
386 | - | |
387 | -exec 6>&1 | |
388 | -## ----------------------------------- ## | |
389 | -## Main body of $CONFIG_STATUS script. ## | |
390 | -## ----------------------------------- ## | |
391 | -# Save the log message, to keep $0 and so on meaningful, and to | |
392 | -# report actual input values of CONFIG_FILES etc. instead of their | |
393 | -# values after options handling. | |
394 | -ac_log=" | |
395 | -This file was extended by $as_me, which was | |
396 | -generated by GNU Autoconf 2.68. Invocation command line was | |
397 | - | |
398 | - CONFIG_FILES = $CONFIG_FILES | |
399 | - CONFIG_HEADERS = $CONFIG_HEADERS | |
400 | - CONFIG_LINKS = $CONFIG_LINKS | |
401 | - CONFIG_COMMANDS = $CONFIG_COMMANDS | |
402 | - $ $0 $@ | |
403 | - | |
404 | -on `(hostname || uname -n) 2>/dev/null | sed 1q` | |
405 | -" | |
406 | - | |
407 | -# Files that config.status was made for. | |
408 | -config_files=" Makefile" | |
409 | -config_headers=" config.h" | |
410 | - | |
411 | -ac_cs_usage="\ | |
412 | -\`$as_me' instantiates files and other configuration actions | |
413 | -from templates according to the current configuration. Unless the files | |
414 | -and actions are specified as TAGs, all are instantiated by default. | |
415 | - | |
416 | -Usage: $0 [OPTION]... [TAG]... | |
417 | - | |
418 | - -h, --help print this help, then exit | |
419 | - -V, --version print version number and configuration settings, then exit | |
420 | - --config print configuration, then exit | |
421 | - -q, --quiet, --silent | |
422 | - do not print progress messages | |
423 | - -d, --debug don't remove temporary files | |
424 | - --recheck update $as_me by reconfiguring in the same conditions | |
425 | - --file=FILE[:TEMPLATE] | |
426 | - instantiate the configuration file FILE | |
427 | - --header=FILE[:TEMPLATE] | |
428 | - instantiate the configuration header FILE | |
429 | - | |
430 | -Configuration files: | |
431 | -$config_files | |
432 | - | |
433 | -Configuration headers: | |
434 | -$config_headers | |
435 | - | |
436 | -Report bugs to the package provider." | |
437 | - | |
438 | -ac_cs_config="'--with-optimize'" | |
439 | -ac_cs_version="\ | |
440 | -config.status | |
441 | -configured by ./configure, generated by GNU Autoconf 2.68, | |
442 | - with options \"$ac_cs_config\" | |
443 | - | |
444 | -Copyright (C) 2010 Free Software Foundation, Inc. | |
445 | -This config.status script is free software; the Free Software Foundation | |
446 | -gives unlimited permission to copy, distribute and modify it." | |
447 | - | |
448 | -ac_pwd='/Users/ab25cq/Dropbox/repo/xyzsh' | |
449 | -srcdir='.' | |
450 | -INSTALL='/usr/bin/install -c' | |
451 | -test -n "$AWK" || AWK=awk | |
452 | -# The default lists apply if the user does not specify any file. | |
453 | -ac_need_defaults=: | |
454 | -while test $# != 0 | |
455 | -do | |
456 | - case $1 in | |
457 | - --*=?*) | |
458 | - ac_option=`expr "X$1" : 'X\([^=]*\)='` | |
459 | - ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` | |
460 | - ac_shift=: | |
461 | - ;; | |
462 | - --*=) | |
463 | - ac_option=`expr "X$1" : 'X\([^=]*\)='` | |
464 | - ac_optarg= | |
465 | - ac_shift=: | |
466 | - ;; | |
467 | - *) | |
468 | - ac_option=$1 | |
469 | - ac_optarg=$2 | |
470 | - ac_shift=shift | |
471 | - ;; | |
472 | - esac | |
473 | - | |
474 | - case $ac_option in | |
475 | - # Handling of the options. | |
476 | - -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) | |
477 | - ac_cs_recheck=: ;; | |
478 | - --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) | |
479 | - $as_echo "$ac_cs_version"; exit ;; | |
480 | - --config | --confi | --conf | --con | --co | --c ) | |
481 | - $as_echo "$ac_cs_config"; exit ;; | |
482 | - --debug | --debu | --deb | --de | --d | -d ) | |
483 | - debug=: ;; | |
484 | - --file | --fil | --fi | --f ) | |
485 | - $ac_shift | |
486 | - case $ac_optarg in | |
487 | - *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; | |
488 | - '') as_fn_error $? "missing file argument" ;; | |
489 | - esac | |
490 | - as_fn_append CONFIG_FILES " '$ac_optarg'" | |
491 | - ac_need_defaults=false;; | |
492 | - --header | --heade | --head | --hea ) | |
493 | - $ac_shift | |
494 | - case $ac_optarg in | |
495 | - *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; | |
496 | - esac | |
497 | - as_fn_append CONFIG_HEADERS " '$ac_optarg'" | |
498 | - ac_need_defaults=false;; | |
499 | - --he | --h) | |
500 | - # Conflict between --help and --header | |
501 | - as_fn_error $? "ambiguous option: \`$1' | |
502 | -Try \`$0 --help' for more information.";; | |
503 | - --help | --hel | -h ) | |
504 | - $as_echo "$ac_cs_usage"; exit ;; | |
505 | - -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | |
506 | - | -silent | --silent | --silen | --sile | --sil | --si | --s) | |
507 | - ac_cs_silent=: ;; | |
508 | - | |
509 | - # This is an error. | |
510 | - -*) as_fn_error $? "unrecognized option: \`$1' | |
511 | -Try \`$0 --help' for more information." ;; | |
512 | - | |
513 | - *) as_fn_append ac_config_targets " $1" | |
514 | - ac_need_defaults=false ;; | |
515 | - | |
516 | - esac | |
517 | - shift | |
518 | -done | |
519 | - | |
520 | -ac_configure_extra_args= | |
521 | - | |
522 | -if $ac_cs_silent; then | |
523 | - exec 6>/dev/null | |
524 | - ac_configure_extra_args="$ac_configure_extra_args --silent" | |
525 | -fi | |
526 | - | |
527 | -if $ac_cs_recheck; then | |
528 | - set X '/bin/sh' './configure' '--with-optimize' $ac_configure_extra_args --no-create --no-recursion | |
529 | - shift | |
530 | - $as_echo "running CONFIG_SHELL=/bin/sh $*" >&6 | |
531 | - CONFIG_SHELL='/bin/sh' | |
532 | - export CONFIG_SHELL | |
533 | - exec "$@" | |
534 | -fi | |
535 | - | |
536 | -exec 5>>config.log | |
537 | -{ | |
538 | - echo | |
539 | - sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX | |
540 | -## Running $as_me. ## | |
541 | -_ASBOX | |
542 | - $as_echo "$ac_log" | |
543 | -} >&5 | |
544 | - | |
545 | - | |
546 | -# Handling of arguments. | |
547 | -for ac_config_target in $ac_config_targets | |
548 | -do | |
549 | - case $ac_config_target in | |
550 | - "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; | |
551 | - "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; | |
552 | - | |
553 | - *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5 ;; | |
554 | - esac | |
555 | -done | |
556 | - | |
557 | - | |
558 | -# If the user did not use the arguments to specify the items to instantiate, | |
559 | -# then the envvar interface is used. Set only those that are not. | |
560 | -# We use the long form for the default assignment because of an extremely | |
561 | -# bizarre bug on SunOS 4.1.3. | |
562 | -if $ac_need_defaults; then | |
563 | - test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files | |
564 | - test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers | |
565 | -fi | |
566 | - | |
567 | -# Have a temporary directory for convenience. Make it in the build tree | |
568 | -# simply because there is no reason against having it here, and in addition, | |
569 | -# creating and moving files from /tmp can sometimes cause problems. | |
570 | -# Hook for its removal unless debugging. | |
571 | -# Note that there is a small window in which the directory will not be cleaned: | |
572 | -# after its creation but before its name has been assigned to `$tmp'. | |
573 | -$debug || | |
574 | -{ | |
575 | - tmp= ac_tmp= | |
576 | - trap 'exit_status=$? | |
577 | - : "${ac_tmp:=$tmp}" | |
578 | - { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status | |
579 | -' 0 | |
580 | - trap 'as_fn_exit 1' 1 2 13 15 | |
581 | -} | |
582 | -# Create a (secure) tmp directory for tmp files. | |
583 | - | |
584 | -{ | |
585 | - tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && | |
586 | - test -d "$tmp" | |
587 | -} || | |
588 | -{ | |
589 | - tmp=./conf$$-$RANDOM | |
590 | - (umask 077 && mkdir "$tmp") | |
591 | -} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 | |
592 | -ac_tmp=$tmp | |
593 | - | |
594 | -# Set up the scripts for CONFIG_FILES section. | |
595 | -# No need to generate them if there are no CONFIG_FILES. | |
596 | -# This happens for instance with `./config.status config.h'. | |
597 | -if test -n "$CONFIG_FILES"; then | |
598 | - | |
599 | - | |
600 | -ac_cr=`echo X | tr X '\015'` | |
601 | -# On cygwin, bash can eat \r inside `` if the user requested igncr. | |
602 | -# But we know of no other shell where ac_cr would be empty at this | |
603 | -# point, so we can use a bashism as a fallback. | |
604 | -if test "x$ac_cr" = x; then | |
605 | - eval ac_cr=\$\'\\r\' | |
606 | -fi | |
607 | -ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null` | |
608 | -if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then | |
609 | - ac_cs_awk_cr='\\r' | |
610 | -else | |
611 | - ac_cs_awk_cr=$ac_cr | |
612 | -fi | |
613 | - | |
614 | -echo 'BEGIN {' >"$ac_tmp/subs1.awk" && | |
615 | -cat >>"$ac_tmp/subs1.awk" <<\_ACAWK && | |
616 | -S["LTLIBOBJS"]="" | |
617 | -S["LIBOBJS"]="" | |
618 | -S["EGREP"]="/usr/bin/grep -E" | |
619 | -S["GREP"]="/usr/bin/grep" | |
620 | -S["CPP"]="gcc -E" | |
621 | -S["LIBXYZSHSO"]="libxyzsh.dylib" | |
622 | -S["LIBXYZSHSO1"]="libxyzsh.1.5.8.dylib" | |
623 | -S["LIBXYZSHA"]="" | |
624 | -S["LIBXYZSHASTRIP"]="-s" | |
625 | -S["OBJ"]="src/gc.o src/stack.o src/string.o src/list.o src/kanji.o src/debug.o src/hash.o src/vector.o src/block.o src/fun.o src/class.o src/completion.o src/"\ | |
626 | -"xyzsh.o src/parser.o src/run.o src/readline.o src/curses.o src/cmd_base.o src/cmd_obj.o src/cmd_file.o src/cmd_str.o src/cmd_ary.o src/cmd_condition"\ | |
627 | -".o src/interface.o src/object.o src/uobject.o src/cmd_num.o src/cmd_curses.o src/fd.o src/nfun.o src/extprog.o" | |
628 | -S["SO_VERSION"]="1.5.8" | |
629 | -S["SYSTEM_MIGEMODIR"]="/usr/local/share/migemo" | |
630 | -S["INSTALL_DATA"]="${INSTALL} -m 644" | |
631 | -S["INSTALL_SCRIPT"]="${INSTALL}" | |
632 | -S["INSTALL_PROGRAM"]="${INSTALL}" | |
633 | -S["OBJEXT"]="o" | |
634 | -S["EXEEXT"]="" | |
635 | -S["ac_ct_CC"]="gcc" | |
636 | -S["CPPFLAGS"]="" | |
637 | -S["LDFLAGS"]="" | |
638 | -S["CFLAGS"]="-DSYSCONFDIR=\"\\\"${prefix}/etc/xyzsh/\\\"\" -DDATAROOTDIR=\"\\\"${prefix}/share/doc/xyzsh/\\\"\" -DSYSTEM_MIGEMODIR=\"\\\"/usr/local/share/migemo\\\"\" -I./src -Isr"\ | |
639 | -"c/ -I. -L. -I/usr/local/include -L/usr/local/lib -fPIC -I/usr/local/include -L/usr/local/lib -I/opt/local/include -L/opt/local/lib -O3" | |
640 | -S["CC"]="gcc" | |
641 | -S["target_alias"]="" | |
642 | -S["host_alias"]="" | |
643 | -S["build_alias"]="" | |
644 | -S["LIBS"]=" -lreadline -lncursesw -lm -liconv -lonig" | |
645 | -S["ECHO_T"]="" | |
646 | -S["ECHO_N"]="" | |
647 | -S["ECHO_C"]="\\c" | |
648 | -S["DEFS"]="-DHAVE_CONFIG_H" | |
649 | -S["mandir"]="${datarootdir}/man" | |
650 | -S["localedir"]="${datarootdir}/locale" | |
651 | -S["libdir"]="${exec_prefix}/lib" | |
652 | -S["psdir"]="${docdir}" | |
653 | -S["pdfdir"]="${docdir}" | |
654 | -S["dvidir"]="${docdir}" | |
655 | -S["htmldir"]="${docdir}" | |
656 | -S["infodir"]="${datarootdir}/info" | |
657 | -S["docdir"]="${datarootdir}/doc/${PACKAGE}" | |
658 | -S["oldincludedir"]="/usr/include" | |
659 | -S["includedir"]="${prefix}/include" | |
660 | -S["localstatedir"]="${prefix}/var" | |
661 | -S["sharedstatedir"]="${prefix}/com" | |
662 | -S["sysconfdir"]="${prefix}/etc" | |
663 | -S["datadir"]="${datarootdir}" | |
664 | -S["datarootdir"]="${prefix}/share" | |
665 | -S["libexecdir"]="${exec_prefix}/libexec" | |
666 | -S["sbindir"]="${exec_prefix}/sbin" | |
667 | -S["bindir"]="${exec_prefix}/bin" | |
668 | -S["program_transform_name"]="s,x,x," | |
669 | -S["prefix"]="/usr/local" | |
670 | -S["exec_prefix"]="${prefix}" | |
671 | -S["PACKAGE_URL"]="" | |
672 | -S["PACKAGE_BUGREPORT"]="" | |
673 | -S["PACKAGE_STRING"]="" | |
674 | -S["PACKAGE_VERSION"]="" | |
675 | -S["PACKAGE_TARNAME"]="" | |
676 | -S["PACKAGE_NAME"]="" | |
677 | -S["PATH_SEPARATOR"]=":" | |
678 | -S["SHELL"]="/bin/sh" | |
679 | -_ACAWK | |
680 | -cat >>"$ac_tmp/subs1.awk" <<_ACAWK && | |
681 | - for (key in S) S_is_set[key] = 1 | |
682 | - FS = "" | |
683 | - | |
684 | -} | |
685 | -{ | |
686 | - line = $ 0 | |
687 | - nfields = split(line, field, "@") | |
688 | - substed = 0 | |
689 | - len = length(field[1]) | |
690 | - for (i = 2; i < nfields; i++) { | |
691 | - key = field[i] | |
692 | - keylen = length(key) | |
693 | - if (S_is_set[key]) { | |
694 | - value = S[key] | |
695 | - line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) | |
696 | - len += length(value) + length(field[++i]) | |
697 | - substed = 1 | |
698 | - } else | |
699 | - len += 1 + keylen | |
700 | - } | |
701 | - | |
702 | - print line | |
703 | -} | |
704 | - | |
705 | -_ACAWK | |
706 | -if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then | |
707 | - sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" | |
708 | -else | |
709 | - cat | |
710 | -fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ | |
711 | - || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 | |
712 | -fi # test -n "$CONFIG_FILES" | |
713 | - | |
714 | -# Set up the scripts for CONFIG_HEADERS section. | |
715 | -# No need to generate them if there are no CONFIG_HEADERS. | |
716 | -# This happens for instance with `./config.status Makefile'. | |
717 | -if test -n "$CONFIG_HEADERS"; then | |
718 | -cat >"$ac_tmp/defines.awk" <<\_ACAWK || | |
719 | -BEGIN { | |
720 | -D["PACKAGE_NAME"]=" \"\"" | |
721 | -D["PACKAGE_TARNAME"]=" \"\"" | |
722 | -D["PACKAGE_VERSION"]=" \"\"" | |
723 | -D["PACKAGE_STRING"]=" \"\"" | |
724 | -D["PACKAGE_BUGREPORT"]=" \"\"" | |
725 | -D["PACKAGE_URL"]=" \"\"" | |
726 | -D["__DARWIN__"]=" 1" | |
727 | -D["STDC_HEADERS"]=" 1" | |
728 | -D["HAVE_SYS_TYPES_H"]=" 1" | |
729 | -D["HAVE_SYS_STAT_H"]=" 1" | |
730 | -D["HAVE_STDLIB_H"]=" 1" | |
731 | -D["HAVE_STRING_H"]=" 1" | |
732 | -D["HAVE_MEMORY_H"]=" 1" | |
733 | -D["HAVE_STRINGS_H"]=" 1" | |
734 | -D["HAVE_INTTYPES_H"]=" 1" | |
735 | -D["HAVE_STDINT_H"]=" 1" | |
736 | -D["HAVE_UNISTD_H"]=" 1" | |
737 | -D["HAVE_READLINE_H"]=" 1" | |
738 | -D["HAVE_READLINE_HISTORY_H"]=" 1" | |
739 | -D["HAVE_NCURSES_H"]=" 1" | |
740 | -D["HAVE_MATH_H"]=" 1" | |
741 | -D["HAVE_ICONV_H"]=" 1" | |
742 | -D["HAVE_ONIGURUMA_H"]=" 1" | |
743 | - for (key in D) D_is_set[key] = 1 | |
744 | - FS = "" | |
745 | -} | |
746 | -/^[\t ]*#[\t ]*(define|undef)[\t ]+[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*([\t (]|$)/ { | |
747 | - line = $ 0 | |
748 | - split(line, arg, " ") | |
749 | - if (arg[1] == "#") { | |
750 | - defundef = arg[2] | |
751 | - mac1 = arg[3] | |
752 | - } else { | |
753 | - defundef = substr(arg[1], 2) | |
754 | - mac1 = arg[2] | |
755 | - } | |
756 | - split(mac1, mac2, "(") #) | |
757 | - macro = mac2[1] | |
758 | - prefix = substr(line, 1, index(line, defundef) - 1) | |
759 | - if (D_is_set[macro]) { | |
760 | - # Preserve the white space surrounding the "#". | |
761 | - print prefix "define", macro P[macro] D[macro] | |
762 | - next | |
763 | - } else { | |
764 | - # Replace #undef with comments. This is necessary, for example, | |
765 | - # in the case of _POSIX_SOURCE, which is predefined and required | |
766 | - # on some systems where configure will not decide to define it. | |
767 | - if (defundef == "undef") { | |
768 | - print "/*", prefix defundef, macro, "*/" | |
769 | - next | |
770 | - } | |
771 | - } | |
772 | -} | |
773 | -{ print } | |
774 | -_ACAWK | |
775 | - as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 | |
776 | -fi # test -n "$CONFIG_HEADERS" | |
777 | - | |
778 | - | |
779 | -eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS " | |
780 | -shift | |
781 | -for ac_tag | |
782 | -do | |
783 | - case $ac_tag in | |
784 | - :[FHLC]) ac_mode=$ac_tag; continue;; | |
785 | - esac | |
786 | - case $ac_mode$ac_tag in | |
787 | - :[FHL]*:*);; | |
788 | - :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5 ;; | |
789 | - :[FH]-) ac_tag=-:-;; | |
790 | - :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; | |
791 | - esac | |
792 | - ac_save_IFS=$IFS | |
793 | - IFS=: | |
794 | - set x $ac_tag | |
795 | - IFS=$ac_save_IFS | |
796 | - shift | |
797 | - ac_file=$1 | |
798 | - shift | |
799 | - | |
800 | - case $ac_mode in | |
801 | - :L) ac_source=$1;; | |
802 | - :[FH]) | |
803 | - ac_file_inputs= | |
804 | - for ac_f | |
805 | - do | |
806 | - case $ac_f in | |
807 | - -) ac_f="$ac_tmp/stdin";; | |
808 | - *) # Look for the file first in the build tree, then in the source tree | |
809 | - # (if the path is not absolute). The absolute path cannot be DOS-style, | |
810 | - # because $ac_f cannot contain `:'. | |
811 | - test -f "$ac_f" || | |
812 | - case $ac_f in | |
813 | - [\\/$]*) false;; | |
814 | - *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; | |
815 | - esac || | |
816 | - as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5 ;; | |
817 | - esac | |
818 | - case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac | |
819 | - as_fn_append ac_file_inputs " '$ac_f'" | |
820 | - done | |
821 | - | |
822 | - # Let's still pretend it is `configure' which instantiates (i.e., don't | |
823 | - # use $as_me), people would be surprised to read: | |
824 | - # /* config.h. Generated by config.status. */ | |
825 | - configure_input='Generated from '` | |
826 | - $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' | |
827 | - `' by configure.' | |
828 | - if test x"$ac_file" != x-; then | |
829 | - configure_input="$ac_file. $configure_input" | |
830 | - { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 | |
831 | -$as_echo "$as_me: creating $ac_file" >&6;} | |
832 | - fi | |
833 | - # Neutralize special characters interpreted by sed in replacement strings. | |
834 | - case $configure_input in #( | |
835 | - *\&* | *\|* | *\\* ) | |
836 | - ac_sed_conf_input=`$as_echo "$configure_input" | | |
837 | - sed 's/[\\\\&|]/\\\\&/g'`;; #( | |
838 | - *) ac_sed_conf_input=$configure_input;; | |
839 | - esac | |
840 | - | |
841 | - case $ac_tag in | |
842 | - *:-:* | *:-) cat >"$ac_tmp/stdin" \ | |
843 | - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; | |
844 | - esac | |
845 | - ;; | |
846 | - esac | |
847 | - | |
848 | - ac_dir=`$as_dirname -- "$ac_file" || | |
849 | -$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ | |
850 | - X"$ac_file" : 'X\(//\)[^/]' \| \ | |
851 | - X"$ac_file" : 'X\(//\)$' \| \ | |
852 | - X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || | |
853 | -$as_echo X"$ac_file" | | |
854 | - sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ | |
855 | - s//\1/ | |
856 | - q | |
857 | - } | |
858 | - /^X\(\/\/\)[^/].*/{ | |
859 | - s//\1/ | |
860 | - q | |
861 | - } | |
862 | - /^X\(\/\/\)$/{ | |
863 | - s//\1/ | |
864 | - q | |
865 | - } | |
866 | - /^X\(\/\).*/{ | |
867 | - s//\1/ | |
868 | - q | |
869 | - } | |
870 | - s/.*/./; q'` | |
871 | - as_dir="$ac_dir"; as_fn_mkdir_p | |
872 | - ac_builddir=. | |
873 | - | |
874 | -case "$ac_dir" in | |
875 | -.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; | |
876 | -*) | |
877 | - ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` | |
878 | - # A ".." for each directory in $ac_dir_suffix. | |
879 | - ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` | |
880 | - case $ac_top_builddir_sub in | |
881 | - "") ac_top_builddir_sub=. ac_top_build_prefix= ;; | |
882 | - *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; | |
883 | - esac ;; | |
884 | -esac | |
885 | -ac_abs_top_builddir=$ac_pwd | |
886 | -ac_abs_builddir=$ac_pwd$ac_dir_suffix | |
887 | -# for backward compatibility: | |
888 | -ac_top_builddir=$ac_top_build_prefix | |
889 | - | |
890 | -case $srcdir in | |
891 | - .) # We are building in place. | |
892 | - ac_srcdir=. | |
893 | - ac_top_srcdir=$ac_top_builddir_sub | |
894 | - ac_abs_top_srcdir=$ac_pwd ;; | |
895 | - [\\/]* | ?:[\\/]* ) # Absolute name. | |
896 | - ac_srcdir=$srcdir$ac_dir_suffix; | |
897 | - ac_top_srcdir=$srcdir | |
898 | - ac_abs_top_srcdir=$srcdir ;; | |
899 | - *) # Relative name. | |
900 | - ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix | |
901 | - ac_top_srcdir=$ac_top_build_prefix$srcdir | |
902 | - ac_abs_top_srcdir=$ac_pwd/$srcdir ;; | |
903 | -esac | |
904 | -ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix | |
905 | - | |
906 | - | |
907 | - case $ac_mode in | |
908 | - :F) | |
909 | - # | |
910 | - # CONFIG_FILE | |
911 | - # | |
912 | - | |
913 | - case $INSTALL in | |
914 | - [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; | |
915 | - *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; | |
916 | - esac | |
917 | -# If the template does not know about datarootdir, expand it. | |
918 | -# FIXME: This hack should be removed a few years after 2.60. | |
919 | -ac_datarootdir_hack=; ac_datarootdir_seen= | |
920 | -ac_sed_dataroot=' | |
921 | -/datarootdir/ { | |
922 | - p | |
923 | - q | |
924 | -} | |
925 | -/@datadir@/p | |
926 | -/@docdir@/p | |
927 | -/@infodir@/p | |
928 | -/@localedir@/p | |
929 | -/@mandir@/p' | |
930 | -case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in | |
931 | -*datarootdir*) ac_datarootdir_seen=yes;; | |
932 | -*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) | |
933 | - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 | |
934 | -$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} | |
935 | - ac_datarootdir_hack=' | |
936 | - s&@datadir@&${datarootdir}&g | |
937 | - s&@docdir@&${datarootdir}/doc/${PACKAGE}&g | |
938 | - s&@infodir@&${datarootdir}/info&g | |
939 | - s&@localedir@&${datarootdir}/locale&g | |
940 | - s&@mandir@&${datarootdir}/man&g | |
941 | - s&\${datarootdir}&${prefix}/share&g' ;; | |
942 | -esac | |
943 | -ac_sed_extra="/^[ ]*VPATH[ ]*=[ ]*/{ | |
944 | -h | |
945 | -s/// | |
946 | -s/^/:/ | |
947 | -s/[ ]*$/:/ | |
948 | -s/:\$(srcdir):/:/g | |
949 | -s/:\${srcdir}:/:/g | |
950 | -s/:@srcdir@:/:/g | |
951 | -s/^:*// | |
952 | -s/:*$// | |
953 | -x | |
954 | -s/\(=[ ]*\).*/\1/ | |
955 | -G | |
956 | -s/\n// | |
957 | -s/^[^=]*=[ ]*$// | |
958 | -} | |
959 | - | |
960 | -:t | |
961 | -/@[a-zA-Z_][a-zA-Z_0-9]*@/!b | |
962 | -s|@configure_input@|$ac_sed_conf_input|;t t | |
963 | -s&@top_builddir@&$ac_top_builddir_sub&;t t | |
964 | -s&@top_build_prefix@&$ac_top_build_prefix&;t t | |
965 | -s&@srcdir@&$ac_srcdir&;t t | |
966 | -s&@abs_srcdir@&$ac_abs_srcdir&;t t | |
967 | -s&@top_srcdir@&$ac_top_srcdir&;t t | |
968 | -s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t | |
969 | -s&@builddir@&$ac_builddir&;t t | |
970 | -s&@abs_builddir@&$ac_abs_builddir&;t t | |
971 | -s&@abs_top_builddir@&$ac_abs_top_builddir&;t t | |
972 | -s&@INSTALL@&$ac_INSTALL&;t t | |
973 | -$ac_datarootdir_hack | |
974 | -" | |
975 | -eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ | |
976 | - >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 | |
977 | - | |
978 | -test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && | |
979 | - { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && | |
980 | - { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ | |
981 | - "$ac_tmp/out"`; test -z "$ac_out"; } && | |
982 | - { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' | |
983 | -which seems to be undefined. Please make sure it is defined" >&5 | |
984 | -$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' | |
985 | -which seems to be undefined. Please make sure it is defined" >&2;} | |
986 | - | |
987 | - rm -f "$ac_tmp/stdin" | |
988 | - case $ac_file in | |
989 | - -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; | |
990 | - *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; | |
991 | - esac \ | |
992 | - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 | |
993 | - ;; | |
994 | - :H) | |
995 | - # | |
996 | - # CONFIG_HEADER | |
997 | - # | |
998 | - if test x"$ac_file" != x-; then | |
999 | - { | |
1000 | - $as_echo "/* $configure_input */" \ | |
1001 | - && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" | |
1002 | - } >"$ac_tmp/config.h" \ | |
1003 | - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 | |
1004 | - if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then | |
1005 | - { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 | |
1006 | -$as_echo "$as_me: $ac_file is unchanged" >&6;} | |
1007 | - else | |
1008 | - rm -f "$ac_file" | |
1009 | - mv "$ac_tmp/config.h" "$ac_file" \ | |
1010 | - || as_fn_error $? "could not create $ac_file" "$LINENO" 5 | |
1011 | - fi | |
1012 | - else | |
1013 | - $as_echo "/* $configure_input */" \ | |
1014 | - && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ | |
1015 | - || as_fn_error $? "could not create -" "$LINENO" 5 | |
1016 | - fi | |
1017 | - ;; | |
1018 | - | |
1019 | - | |
1020 | - esac | |
1021 | - | |
1022 | -done # for ac_tag | |
1023 | - | |
1024 | - | |
1025 | -as_fn_exit 0 |