summaryrefslogtreecommitdiff
path: root/sim
diff options
context:
space:
mode:
authorXavier ASUS <xavi92psx@gmail.com>2019-10-24 23:17:51 +0200
committerXavier ASUS <xavi92psx@gmail.com>2019-10-24 23:18:52 +0200
commit9e93944f18de5d7e38c15651df0235156d9c6d4e (patch)
treefc4f9b788698849e547bb2c1ec82ec7d2742fd83 /sim
parentd5577a84aadd0195a95b5b4d83e49b40af49425b (diff)
Removed intermediate files
Diffstat (limited to 'sim')
-rw-r--r--sim/ucsim/Makefile192
-rw-r--r--sim/ucsim/config.log4160
-rwxr-xr-xsim/ucsim/config.status2118
3 files changed, 0 insertions, 6470 deletions
diff --git a/sim/ucsim/Makefile b/sim/ucsim/Makefile
deleted file mode 100644
index 2645374..0000000
--- a/sim/ucsim/Makefile
+++ /dev/null
@@ -1,192 +0,0 @@
-#
-# uCsim Makefile
-#
-# (c) Drotos Daniel, Talker Bt. 1997,99
-#
-
-STARTYEAR = 1997
-
-SHELL = /bin/sh
-
-include packages.mk
-#PKGS = cmd.src sim.src gui.src s51.src avr.src z80.src pdk.src doc
-
-
-srcdir = .
-
-top_builddir = .
-top_srcdir = .
-
-# Compiling entire program or any subproject
-# ------------------------------------------
-all: checkconf #libs apps
- $(MAKE) libs
- $(MAKE) apps
-
-libs: main_all cmd_src_all sim_src_all gui_src_all
-
-main_all:
- $(MAKE) -f main.mk all
-
-cmd_src_all:
- $(MAKE) -C cmd.src cmd.src
-
-sim_src_all:
- $(MAKE) -C sim.src sim.src
-
-gui_src_all:
- $(MAKE) -C gui.src gui.src
-
-
-apps: $(PKGS) main_app
-
-main_app:
- $(MAKE) -f main.mk main_app
-
-
-.PHONY: $(PKGS)
-
-$(PKGS):
- $(MAKE) -C $@ $@
-
-#main_libs: main.mk
-# $(MAKE) -f main.mk libs
-
-
-# Compiling and installing everything and runing test
-# ---------------------------------------------------
-.PHONY: install INSTALL Install
-install:
- $(MAKE) -f main.mk install
- @for pkg in $(PKGS); do\
- $(MAKE) -C $$pkg install ;\
- done
-
-
-# Deleting all the installed files
-# --------------------------------
-uninstall:
- $(MAKE) -f main.mk uninstall
- @for pkg in $(PKGS); do\
- $(MAKE) -C $$pkg uninstall ;\
- done
-
-
-# Deleting all files created by building the program
-# --------------------------------------------------
-clean:
- $(MAKE) -f $(srcdir)/clean.mk clean EXEEXT=$(EXEEXT)
- @for pkg in $(PKGS_ALL); do\
- $(MAKE) -C $$pkg -f ../$(srcdir)/$$pkg/clean.mk clean EXEEXT=$(EXEEXT) ;\
- done
-
-
-# Deleting all files created by configuring or building the program
-# -----------------------------------------------------------------
-distclean: clean
- $(MAKE) -f $(srcdir)/clean.mk distclean
- @for pkg in $(PKGS_ALL); do\
- $(MAKE) -C $$pkg -f ../$(srcdir)/$$pkg/clean.mk distclean ;\
- done
- rm -rf doc/*~ doc/*.bak Makefile packages.mk libtool
- $(MAKE) -C example clean
- $(MAKE) -C s51.src/test clean
- $(MAKE) -C stm8.src/test clean
- $(MAKE) -C tlcs.src/test clean
- $(MAKE) -C z80.src/test clean
-
-
-# Like clean but some files may still exist
-# -----------------------------------------
-mostlyclean: clean
- $(MAKE) -f clean.mk mostlyclean
- @for pkg in $(PKGS_ALL); do\
- $(MAKE) -C $$pkg -f ../$(srcdir)/$$pkg/clean.mk mostlyclean ;\
- done
-
-
-# Deleting everything that can reconstructed by this Makefile. It deletes
-# everything deleted by distclean plus files created by bison, stc.
-# -----------------------------------------------------------------------
-realclean: distclean
- $(MAKE) -f clean.mk realclean
- @for pkg in $(PKGS_ALL); do\
- $(MAKE) -C $$pkg -f ../$(srcdir)/$$pkg/clean.mk realclean ;\
- done
-
-
-# Performing self-test
-# --------------------
-check:
- $(MAKE) -f main.mk check
- @for pkg in $(PKGS); do\
- $(MAKE) -C $$pkg check ;\
- done
-
-test:
- $(MAKE) -f main.mk test
- @for pkg in $(PKGS); do\
- $(MAKE) -C $$pkg test ;\
- done
-
-
-# Performing installation test
-# ----------------------------
-installcheck:
-
-
-# Creating dependencies
-# ---------------------
-dep:
- $(MAKE) -f main.mk dep
- @for pkg in $(PKGS); do\
- $(MAKE) -C $$pkg dep ;\
- done
-
-
-# My rules
-# --------
-putcopyright:
- './put(c)' -s $(STARTYEAR) *.cc *.h *.y *.l
-
-
-# Remaking configuration
-# ----------------------
-configure: configure.ac
- @$(top_srcdir)/mkecho $(top_builddir) "RE-CREATING CONFIGURE"
- autoconf configure.ac >configure
- chmod 755 configure
-
-config.status: configure
- @$(top_srcdir)/mkecho $(top_builddir) "RE-CHECKING CONFIGURATION (re-creating config.status from configure)"
- @if [ -x ./config.status ]; then \
- ./config.status -recheck;\
- else\
- if [ -x ./conf ]; then\
- ./conf;\
- else\
- ./configure;\
- fi\
- fi
-
-makefiles: config.status
- @$(top_srcdir)/mkecho $(top_builddir) "RE-MAKING MAKEFILES"
- $(SHELL) ./config.status
-
-main.mk: $(srcdir)/main_in.mk config.status
- @$(top_srcdir)/mkecho $(top_builddir) "RE-MAKING MAIN.MK"
- $(SHELL) ./config.status
-
-freshconf: echo_freshconf configure main.mk ddconfig.h
-
-ddconfig.h: ddconfig_in.h config.status
- $(SHELL) ./config.status
-
-echo_freshconf:
- @$(top_srcdir)/mkecho $(top_builddir) "FRESHCONF"
-
-checkconf:
- @$(top_srcdir)/mkecho $(top_builddir) "CHECKCONF"
- @if [ -f devel ]; then $(MAKE) freshconf; fi
-
-# End of Makefile
diff --git a/sim/ucsim/config.log b/sim/ucsim/config.log
deleted file mode 100644
index 7285020..0000000
--- a/sim/ucsim/config.log
+++ /dev/null
@@ -1,4160 +0,0 @@
-This file contains any messages produced by compilers while
-running configure, to aid debugging if configure makes a mistake.
-
-It was created by configure, which was
-generated by GNU Autoconf 2.69. Invocation command line was
-
- $ ./configure --disable-option-checking --prefix=/usr/local docdir=${datarootdir}/doc/${PACKAGE} --cache-file=/dev/null --srcdir=.
-
-## --------- ##
-## Platform. ##
-## --------- ##
-
-hostname = xavier-asus
-uname -m = x86_64
-uname -r = 4.15.0-65-generic
-uname -s = Linux
-uname -v = #74-Ubuntu SMP Tue Sep 17 17:06:04 UTC 2019
-
-/usr/bin/uname -p = unknown
-/bin/uname -X = unknown
-
-/bin/arch = unknown
-/usr/bin/arch -k = unknown
-/usr/convex/getsysinfo = unknown
-/usr/bin/hostinfo = unknown
-/bin/machine = unknown
-/usr/bin/oslevel = unknown
-/bin/universe = unknown
-
-PATH: /home/xavier/.cargo/bin
-PATH: /home/xavier/.local/bin
-PATH: /usr/local/sbin
-PATH: /usr/local/bin
-PATH: /usr/sbin
-PATH: /usr/bin
-PATH: /sbin
-PATH: /bin
-PATH: /usr/games
-PATH: /usr/local/games
-PATH: /snap/bin
-PATH: /usr/local/xtensa-esp32-elf/bin
-
-
-## ----------- ##
-## Core tests. ##
-## ----------- ##
-
-configure:2694: checking for gawk
-configure:2710: found /usr/bin/gawk
-configure:2721: result: gawk
-configure:2733: checking version of the package
-configure:2737: result: 0.6-pre56
-configure:3051: checking for g++
-configure:3067: found /usr/bin/g++
-configure:3078: result: g++
-configure:3105: checking for C++ compiler version
-configure:3114: g++ --version >&5
-g++ (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0
-Copyright (C) 2017 Free Software Foundation, Inc.
-This is free software; see the source for copying conditions. There is NO
-warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-
-configure:3125: $? = 0
-configure:3114: g++ -v >&5
-Using built-in specs.
-COLLECT_GCC=g++
-COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper
-OFFLOAD_TARGET_NAMES=nvptx-none
-OFFLOAD_TARGET_DEFAULT=1
-Target: x86_64-linux-gnu
-Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.4.0-1ubuntu1~18.04.1' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
-Thread model: posix
-gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1)
-configure:3125: $? = 0
-configure:3114: g++ -V >&5
-g++: error: unrecognized command line option '-V'
-g++: fatal error: no input files
-compilation terminated.
-configure:3125: $? = 1
-configure:3114: g++ -qversion >&5
-g++: error: unrecognized command line option '-qversion'; did you mean '--version'?
-g++: fatal error: no input files
-compilation terminated.
-configure:3125: $? = 1
-configure:3145: checking whether the C++ compiler works
-configure:3167: g++ conftest.cpp >&5
-configure:3171: $? = 0
-configure:3219: result: yes
-configure:3222: checking for C++ compiler default output file name
-configure:3224: result: a.out
-configure:3230: checking for suffix of executables
-configure:3237: g++ -o conftest conftest.cpp >&5
-configure:3241: $? = 0
-configure:3263: result:
-configure:3285: checking whether we are cross compiling
-configure:3293: g++ -o conftest conftest.cpp >&5
-configure:3297: $? = 0
-configure:3304: ./conftest
-configure:3308: $? = 0
-configure:3323: result: no
-configure:3328: checking for suffix of object files
-configure:3350: g++ -c conftest.cpp >&5
-configure:3354: $? = 0
-configure:3375: result: o
-configure:3379: checking whether we are using the GNU C++ compiler
-configure:3398: g++ -c conftest.cpp >&5
-configure:3398: $? = 0
-configure:3407: result: yes
-configure:3416: checking whether g++ accepts -g
-configure:3436: g++ -c -g conftest.cpp >&5
-configure:3436: $? = 0
-configure:3477: result: yes
-configure:3505: checking how to run the C++ preprocessor
-configure:3532: g++ -E conftest.cpp
-configure:3532: $? = 0
-configure:3546: g++ -E conftest.cpp
-conftest.cpp:14:10: fatal error: ac_nonexistent.h: No such file or directory
- #include <ac_nonexistent.h>
- ^~~~~~~~~~~~~~~~~~
-compilation terminated.
-configure:3546: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define VERSIONSTR "0.6-pre56"
-| #define VERSIONHI 0
-| #define VERSIONLO 6-pre56
-| #define VERSIONP
-| #define STATISTIC no
-| /* end confdefs.h. */
-| #include <ac_nonexistent.h>
-configure:3571: result: g++ -E
-configure:3591: g++ -E conftest.cpp
-configure:3591: $? = 0
-configure:3605: g++ -E conftest.cpp
-conftest.cpp:14:10: fatal error: ac_nonexistent.h: No such file or directory
- #include <ac_nonexistent.h>
- ^~~~~~~~~~~~~~~~~~
-compilation terminated.
-configure:3605: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define VERSIONSTR "0.6-pre56"
-| #define VERSIONHI 0
-| #define VERSIONLO 6-pre56
-| #define VERSIONP
-| #define STATISTIC no
-| /* end confdefs.h. */
-| #include <ac_nonexistent.h>
-configure:3676: checking for a BSD-compatible install
-configure:3744: result: /usr/bin/install -c
-configure:3798: checking for ranlib
-configure:3814: found /usr/bin/ranlib
-configure:3825: result: ranlib
-configure:3891: checking for strip
-configure:3907: found /usr/bin/strip
-configure:3918: result: strip
-configure:3983: checking for ar
-configure:3999: found /usr/bin/ar
-configure:4010: result: ar
-configure:4075: checking for srec_cat
-configure:4105: result: no
-configure:4158: checking build system type
-configure:4172: result: x86_64-pc-linux-gnu
-configure:4192: checking host system type
-configure:4205: result: x86_64-pc-linux-gnu
-configure:4246: checking how to print strings
-configure:4273: result: printf
-configure:4342: checking for gcc
-configure:4358: found /usr/bin/gcc
-configure:4369: result: gcc
-configure:4598: checking for C compiler version
-configure:4607: gcc --version >&5
-gcc (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0
-Copyright (C) 2017 Free Software Foundation, Inc.
-This is free software; see the source for copying conditions. There is NO
-warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-
-configure:4618: $? = 0
-configure:4607: gcc -v >&5
-Using built-in specs.
-COLLECT_GCC=gcc
-COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper
-OFFLOAD_TARGET_NAMES=nvptx-none
-OFFLOAD_TARGET_DEFAULT=1
-Target: x86_64-linux-gnu
-Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.4.0-1ubuntu1~18.04.1' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
-Thread model: posix
-gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1)
-configure:4618: $? = 0
-configure:4607: gcc -V >&5
-gcc: error: unrecognized command line option '-V'
-gcc: fatal error: no input files
-compilation terminated.
-configure:4618: $? = 1
-configure:4607: gcc -qversion >&5
-gcc: error: unrecognized command line option '-qversion'; did you mean '--version'?
-gcc: fatal error: no input files
-compilation terminated.
-configure:4618: $? = 1
-configure:4622: checking whether we are using the GNU C compiler
-configure:4641: gcc -c conftest.c >&5
-configure:4641: $? = 0
-configure:4650: result: yes
-configure:4659: checking whether gcc accepts -g
-configure:4679: gcc -c -g conftest.c >&5
-configure:4679: $? = 0
-configure:4720: result: yes
-configure:4737: checking for gcc option to accept ISO C89
-configure:4800: gcc -c -g -O2 conftest.c >&5
-configure:4800: $? = 0
-configure:4813: result: none needed
-configure:4833: checking for a sed that does not truncate output
-configure:4897: result: /bin/sed
-configure:4915: checking for grep that handles long lines and -e
-configure:4973: result: /bin/grep
-configure:4978: checking for egrep
-configure:5040: result: /bin/grep -E
-configure:5045: checking for fgrep
-configure:5107: result: /bin/grep -F
-configure:5142: checking for ld used by gcc
-configure:5209: result: /usr/bin/ld
-configure:5216: checking if the linker (/usr/bin/ld) is GNU ld
-configure:5231: result: yes
-configure:5243: checking for BSD- or MS-compatible name lister (nm)
-configure:5297: result: /usr/bin/nm -B
-configure:5427: checking the name lister (/usr/bin/nm -B) interface
-configure:5434: gcc -c -g -O2 conftest.c >&5
-configure:5437: /usr/bin/nm -B "conftest.o"
-configure:5440: output
-0000000000000000 B some_variable
-configure:5447: result: BSD nm
-configure:5450: checking whether ln -s works
-configure:5454: result: yes
-configure:5462: checking the maximum length of command line arguments
-configure:5593: result: 1572864
-configure:5641: checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format
-configure:5681: result: func_convert_file_noop
-configure:5688: checking how to convert x86_64-pc-linux-gnu file names to toolchain format
-configure:5708: result: func_convert_file_noop
-configure:5715: checking for /usr/bin/ld option to reload object files
-configure:5722: result: -r
-configure:5796: checking for objdump
-configure:5812: found /usr/bin/objdump
-configure:5823: result: objdump
-configure:5855: checking how to recognize dependent libraries
-configure:6055: result: pass_all
-configure:6140: checking for dlltool
-configure:6170: result: no
-configure:6200: checking how to associate runtime and link libraries
-configure:6227: result: printf %s\n
-configure:6352: checking for archiver @FILE support
-configure:6369: gcc -c -g -O2 conftest.c >&5
-configure:6369: $? = 0
-configure:6372: ar cru libconftest.a @conftest.lst >&5
-ar: `u' modifier ignored since `D' is the default (see `U')
-configure:6375: $? = 0
-configure:6380: ar cru libconftest.a @conftest.lst >&5
-ar: `u' modifier ignored since `D' is the default (see `U')
-ar: conftest.o: No such file or directory
-configure:6383: $? = 1
-configure:6395: result: @
-configure:6453: checking for strip
-configure:6480: result: strip
-configure:6552: checking for ranlib
-configure:6579: result: ranlib
-configure:6681: checking command to parse /usr/bin/nm -B output from gcc object
-configure:6834: gcc -c -g -O2 conftest.c >&5
-configure:6837: $? = 0
-configure:6841: /usr/bin/nm -B conftest.o | sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' > conftest.nm
-configure:6907: gcc -o conftest -g -O2 conftest.c conftstm.o >&5
-configure:6910: $? = 0
-configure:6948: result: ok
-configure:6995: checking for sysroot
-configure:7025: result: no
-configure:7032: checking for a working dd
-configure:7070: result: /bin/dd
-configure:7074: checking how to truncate binary pipes
-configure:7089: result: /bin/dd bs=4096 count=1
-configure:7225: gcc -c -g -O2 conftest.c >&5
-configure:7228: $? = 0
-configure:7418: checking for mt
-configure:7434: found /bin/mt
-configure:7445: result: mt
-configure:7468: checking if mt is a manifest tool
-configure:7474: mt '-?'
-configure:7482: result: no
-configure:8159: checking how to run the C preprocessor
-configure:8190: gcc -E conftest.c
-configure:8190: $? = 0
-configure:8204: gcc -E conftest.c
-conftest.c:14:10: fatal error: ac_nonexistent.h: No such file or directory
- #include <ac_nonexistent.h>
- ^~~~~~~~~~~~~~~~~~
-compilation terminated.
-configure:8204: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define VERSIONSTR "0.6-pre56"
-| #define VERSIONHI 0
-| #define VERSIONLO 6-pre56
-| #define VERSIONP
-| #define STATISTIC no
-| /* end confdefs.h. */
-| #include <ac_nonexistent.h>
-configure:8229: result: gcc -E
-configure:8249: gcc -E conftest.c
-configure:8249: $? = 0
-configure:8263: gcc -E conftest.c
-conftest.c:14:10: fatal error: ac_nonexistent.h: No such file or directory
- #include <ac_nonexistent.h>
- ^~~~~~~~~~~~~~~~~~
-compilation terminated.
-configure:8263: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define VERSIONSTR "0.6-pre56"
-| #define VERSIONHI 0
-| #define VERSIONLO 6-pre56
-| #define VERSIONP
-| #define STATISTIC no
-| /* end confdefs.h. */
-| #include <ac_nonexistent.h>
-configure:8292: checking for ANSI C header files
-configure:8312: gcc -c -g -O2 conftest.c >&5
-configure:8312: $? = 0
-configure:8385: gcc -o conftest -g -O2 conftest.c >&5
-configure:8385: $? = 0
-configure:8385: ./conftest
-configure:8385: $? = 0
-configure:8396: result: yes
-configure:8409: checking for sys/types.h
-configure:8409: gcc -c -g -O2 conftest.c >&5
-configure:8409: $? = 0
-configure:8409: result: yes
-configure:8409: checking for sys/stat.h
-configure:8409: gcc -c -g -O2 conftest.c >&5
-configure:8409: $? = 0
-configure:8409: result: yes
-configure:8409: checking for stdlib.h
-configure:8409: gcc -c -g -O2 conftest.c >&5
-configure:8409: $? = 0
-configure:8409: result: yes
-configure:8409: checking for string.h
-configure:8409: gcc -c -g -O2 conftest.c >&5
-configure:8409: $? = 0
-configure:8409: result: yes
-configure:8409: checking for memory.h
-configure:8409: gcc -c -g -O2 conftest.c >&5
-configure:8409: $? = 0
-configure:8409: result: yes
-configure:8409: checking for strings.h
-configure:8409: gcc -c -g -O2 conftest.c >&5
-configure:8409: $? = 0
-configure:8409: result: yes
-configure:8409: checking for inttypes.h
-configure:8409: gcc -c -g -O2 conftest.c >&5
-configure:8409: $? = 0
-configure:8409: result: yes
-configure:8409: checking for stdint.h
-configure:8409: gcc -c -g -O2 conftest.c >&5
-configure:8409: $? = 0
-configure:8409: result: yes
-configure:8409: checking for unistd.h
-configure:8409: gcc -c -g -O2 conftest.c >&5
-configure:8409: $? = 0
-configure:8409: result: yes
-configure:8423: checking for dlfcn.h
-configure:8423: gcc -c -g -O2 conftest.c >&5
-configure:8423: $? = 0
-configure:8423: result: yes
-configure:8688: checking for objdir
-configure:8703: result: .libs
-configure:8963: checking if gcc supports -fno-rtti -fno-exceptions
-configure:8981: gcc -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5
-cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not for C
-configure:8985: $? = 0
-configure:8998: result: no
-configure:9356: checking for gcc option to produce PIC
-configure:9363: result: -fPIC -DPIC
-configure:9371: checking if gcc PIC flag -fPIC -DPIC works
-configure:9389: gcc -c -g -O2 -fPIC -DPIC -DPIC conftest.c >&5
-configure:9393: $? = 0
-configure:9406: result: yes
-configure:9435: checking if gcc static flag -static works
-configure:9463: result: yes
-configure:9478: checking if gcc supports -c -o file.o
-configure:9499: gcc -c -g -O2 -o out/conftest2.o conftest.c >&5
-configure:9503: $? = 0
-configure:9525: result: yes
-configure:9533: checking if gcc supports -c -o file.o
-configure:9580: result: yes
-configure:9613: checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
-configure:10876: result: yes
-configure:10913: checking whether -lc should be explicitly linked in
-configure:10921: gcc -c -g -O2 conftest.c >&5
-configure:10924: $? = 0
-configure:10939: gcc -shared -fPIC -DPIC conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep -lc \>/dev/null 2\>\&1
-configure:10942: $? = 0
-configure:10956: result: no
-configure:11116: checking dynamic linker characteristics
-configure:11697: gcc -o conftest -g -O2 -Wl,-rpath -Wl,/foo conftest.c >&5
-configure:11697: $? = 0
-configure:11946: result: GNU/Linux ld.so
-configure:12068: checking how to hardcode library paths into programs
-configure:12093: result: immediate
-configure:12195: checking for shl_load
-configure:12195: gcc -o conftest -g -O2 conftest.c >&5
-/tmp/ccgmhRVU.o: In function `main':
-/home/xavier/sdcc/sim/ucsim/conftest.c:60: undefined reference to `shl_load'
-collect2: error: ld returned 1 exit status
-configure:12195: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define VERSIONSTR "0.6-pre56"
-| #define VERSIONHI 0
-| #define VERSIONLO 6-pre56
-| #define VERSIONP
-| #define STATISTIC no
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| /* end confdefs.h. */
-| /* Define shl_load to an innocuous variant, in case <limits.h> declares shl_load.
-| For example, HP-UX 11i <limits.h> declares gettimeofday. */
-| #define shl_load innocuous_shl_load
-|
-| /* System header to define __stub macros and hopefully few prototypes,
-| which can conflict with char shl_load (); below.
-| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
-| <limits.h> exists even on freestanding compilers. */
-|
-| #ifdef __STDC__
-| # include <limits.h>
-| #else
-| # include <assert.h>
-| #endif
-|
-| #undef shl_load
-|
-| /* Override any GCC internal prototype to avoid an error.
-| Use char because int might match the return type of a GCC
-| builtin and then its argument prototype would still apply. */
-| #ifdef __cplusplus
-| extern "C"
-| #endif
-| char shl_load ();
-| /* The GNU C library defines this for functions which it implements
-| to always fail with ENOSYS. Some functions are actually named
-| something starting with __ and the normal name is an alias. */
-| #if defined __stub_shl_load || defined __stub___shl_load
-| choke me
-| #endif
-|
-| int
-| main ()
-| {
-| return shl_load ();
-| ;
-| return 0;
-| }
-configure:12195: result: no
-configure:12199: checking for shl_load in -ldld
-configure:12224: gcc -o conftest -g -O2 conftest.c -ldld >&5
-/usr/bin/ld: cannot find -ldld
-collect2: error: ld returned 1 exit status
-configure:12224: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define VERSIONSTR "0.6-pre56"
-| #define VERSIONHI 0
-| #define VERSIONLO 6-pre56
-| #define VERSIONP
-| #define STATISTIC no
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| /* end confdefs.h. */
-|
-| /* Override any GCC internal prototype to avoid an error.
-| Use char because int might match the return type of a GCC
-| builtin and then its argument prototype would still apply. */
-| #ifdef __cplusplus
-| extern "C"
-| #endif
-| char shl_load ();
-| int
-| main ()
-| {
-| return shl_load ();
-| ;
-| return 0;
-| }
-configure:12233: result: no
-configure:12238: checking for dlopen
-configure:12238: gcc -o conftest -g -O2 conftest.c >&5
-/tmp/cciKE37Y.o: In function `main':
-/home/xavier/sdcc/sim/ucsim/conftest.c:60: undefined reference to `dlopen'
-collect2: error: ld returned 1 exit status
-configure:12238: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define VERSIONSTR "0.6-pre56"
-| #define VERSIONHI 0
-| #define VERSIONLO 6-pre56
-| #define VERSIONP
-| #define STATISTIC no
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| /* end confdefs.h. */
-| /* Define dlopen to an innocuous variant, in case <limits.h> declares dlopen.
-| For example, HP-UX 11i <limits.h> declares gettimeofday. */
-| #define dlopen innocuous_dlopen
-|
-| /* System header to define __stub macros and hopefully few prototypes,
-| which can conflict with char dlopen (); below.
-| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
-| <limits.h> exists even on freestanding compilers. */
-|
-| #ifdef __STDC__
-| # include <limits.h>
-| #else
-| # include <assert.h>
-| #endif
-|
-| #undef dlopen
-|
-| /* Override any GCC internal prototype to avoid an error.
-| Use char because int might match the return type of a GCC
-| builtin and then its argument prototype would still apply. */
-| #ifdef __cplusplus
-| extern "C"
-| #endif
-| char dlopen ();
-| /* The GNU C library defines this for functions which it implements
-| to always fail with ENOSYS. Some functions are actually named
-| something starting with __ and the normal name is an alias. */
-| #if defined __stub_dlopen || defined __stub___dlopen
-| choke me
-| #endif
-|
-| int
-| main ()
-| {
-| return dlopen ();
-| ;
-| return 0;
-| }
-configure:12238: result: no
-configure:12242: checking for dlopen in -ldl
-configure:12267: gcc -o conftest -g -O2 conftest.c -ldl >&5
-configure:12267: $? = 0
-configure:12276: result: yes
-configure:12395: checking whether a program can dlopen itself
-configure:12475: gcc -o conftest -g -O2 -DHAVE_DLFCN_H -Wl,--export-dynamic conftest.c -ldl >&5
-configure:12478: $? = 0
-configure:12496: result: yes
-configure:12501: checking whether a statically linked program can dlopen itself
-configure:12581: gcc -o conftest -g -O2 -DHAVE_DLFCN_H -Wl,--export-dynamic -static conftest.c -ldl >&5
-/tmp/ccPcwB98.o: In function `main':
-/home/xavier/sdcc/sim/ucsim/configure:12560: warning: Using 'dlopen' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking
-configure:12584: $? = 0
-conftest: undefined symbol: _fnord
-configure:12602: result: no
-configure:12641: checking whether stripping libraries is possible
-configure:12646: result: yes
-configure:12681: checking if libtool supports shared libraries
-configure:12683: result: yes
-configure:12686: checking whether to build shared libraries
-configure:12711: result: yes
-configure:12714: checking whether to build static libraries
-configure:12718: result: yes
-configure:12741: checking how to run the C++ preprocessor
-configure:12807: result: g++ -E
-configure:12827: g++ -E conftest.cpp
-configure:12827: $? = 0
-configure:12841: g++ -E conftest.cpp
-conftest.cpp:26:10: fatal error: ac_nonexistent.h: No such file or directory
- #include <ac_nonexistent.h>
- ^~~~~~~~~~~~~~~~~~
-compilation terminated.
-configure:12841: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define VERSIONSTR "0.6-pre56"
-| #define VERSIONHI 0
-| #define VERSIONLO 6-pre56
-| #define VERSIONP
-| #define STATISTIC no
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| /* end confdefs.h. */
-| #include <ac_nonexistent.h>
-configure:13003: checking for ld used by g++
-configure:13070: result: /usr/bin/ld -m elf_x86_64
-configure:13077: checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld
-configure:13092: result: yes
-configure:13147: checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
-configure:14220: result: yes
-configure:14256: g++ -c -g -O2 conftest.cpp >&5
-configure:14259: $? = 0
-configure:14740: checking for g++ option to produce PIC
-configure:14747: result: -fPIC -DPIC
-configure:14755: checking if g++ PIC flag -fPIC -DPIC works
-configure:14773: g++ -c -g -O2 -fPIC -DPIC -DPIC conftest.cpp >&5
-configure:14777: $? = 0
-configure:14790: result: yes
-configure:14813: checking if g++ static flag -static works
-configure:14841: result: yes
-configure:14853: checking if g++ supports -c -o file.o
-configure:14874: g++ -c -g -O2 -o out/conftest2.o conftest.cpp >&5
-configure:14878: $? = 0
-configure:14900: result: yes
-configure:14905: checking if g++ supports -c -o file.o
-configure:14952: result: yes
-configure:14982: checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
-configure:15025: result: yes
-configure:15166: checking dynamic linker characteristics
-configure:15923: result: GNU/Linux ld.so
-configure:15988: checking how to hardcode library paths into programs
-configure:16013: result: immediate
-configure:16080: checking for flex
-configure:16096: found /usr/bin/flex
-configure:16107: result: flex
-configure:16145: flex conftest.l
-configure:16149: $? = 0
-configure:16151: checking lex output file root
-configure:16165: result: lex.yy
-configure:16170: checking lex library
-configure:16184: gcc -o conftest -g -O2 conftest.c >&5
-/tmp/ccIz3HCL.o: In function `input':
-/home/xavier/sdcc/sim/ucsim/lex.yy.c:1180: undefined reference to `yywrap'
-/tmp/ccIz3HCL.o: In function `yylex':
-/home/xavier/sdcc/sim/ucsim/lex.yy.c:871: undefined reference to `yywrap'
-/tmp/ccIz3HCL.o: In function `main':
-/home/xavier/sdcc/sim/ucsim/conftest.l:17: undefined reference to `yywrap'
-collect2: error: ld returned 1 exit status
-configure:16184: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define VERSIONSTR "0.6-pre56"
-| #define VERSIONHI 0
-| #define VERSIONLO 6-pre56
-| #define VERSIONP
-| #define STATISTIC no
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| /* end confdefs.h. */
-|
-| #line 3 "lex.yy.c"
-|
-| #define YY_INT_ALIGNED short int
-|
-| /* A lexical scanner generated by flex */
-|
-| #define FLEX_SCANNER
-| #define YY_FLEX_MAJOR_VERSION 2
-| #define YY_FLEX_MINOR_VERSION 6
-| #define YY_FLEX_SUBMINOR_VERSION 4
-| #if YY_FLEX_SUBMINOR_VERSION > 0
-| #define FLEX_BETA
-| #endif
-|
-| /* First, we deal with platform-specific or compiler-specific issues. */
-|
-| /* begin standard C headers. */
-| #include <stdio.h>
-| #include <string.h>
-| #include <errno.h>
-| #include <stdlib.h>
-|
-| /* end standard C headers. */
-|
-| /* flex integer type definitions */
-|
-| #ifndef FLEXINT_H
-| #define FLEXINT_H
-|
-| /* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
-|
-| #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L
-|
-| /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
-| * if you want the limit (max/min) macros for int types.
-| */
-| #ifndef __STDC_LIMIT_MACROS
-| #define __STDC_LIMIT_MACROS 1
-| #endif
-|
-| #include <inttypes.h>
-| typedef int8_t flex_int8_t;
-| typedef uint8_t flex_uint8_t;
-| typedef int16_t flex_int16_t;
-| typedef uint16_t flex_uint16_t;
-| typedef int32_t flex_int32_t;
-| typedef uint32_t flex_uint32_t;
-| #else
-| typedef signed char flex_int8_t;
-| typedef short int flex_int16_t;
-| typedef int flex_int32_t;
-| typedef unsigned char flex_uint8_t;
-| typedef unsigned short int flex_uint16_t;
-| typedef unsigned int flex_uint32_t;
-|
-| /* Limits of integral types. */
-| #ifndef INT8_MIN
-| #define INT8_MIN (-128)
-| #endif
-| #ifndef INT16_MIN
-| #define INT16_MIN (-32767-1)
-| #endif
-| #ifndef INT32_MIN
-| #define INT32_MIN (-2147483647-1)
-| #endif
-| #ifndef INT8_MAX
-| #define INT8_MAX (127)
-| #endif
-| #ifndef INT16_MAX
-| #define INT16_MAX (32767)
-| #endif
-| #ifndef INT32_MAX
-| #define INT32_MAX (2147483647)
-| #endif
-| #ifndef UINT8_MAX
-| #define UINT8_MAX (255U)
-| #endif
-| #ifndef UINT16_MAX
-| #define UINT16_MAX (65535U)
-| #endif
-| #ifndef UINT32_MAX
-| #define UINT32_MAX (4294967295U)
-| #endif
-|
-| #ifndef SIZE_MAX
-| #define SIZE_MAX (~(size_t)0)
-| #endif
-|
-| #endif /* ! C99 */
-|
-| #endif /* ! FLEXINT_H */
-|
-| /* begin standard C++ headers. */
-|
-| /* TODO: this is always defined, so inline it */
-| #define yyconst const
-|
-| #if defined(__GNUC__) && __GNUC__ >= 3
-| #define yynoreturn __attribute__((__noreturn__))
-| #else
-| #define yynoreturn
-| #endif
-|
-| /* Returned upon end-of-file. */
-| #define YY_NULL 0
-|
-| /* Promotes a possibly negative, possibly signed char to an
-| * integer in range [0..255] for use as an array index.
-| */
-| #define YY_SC_TO_UI(c) ((YY_CHAR) (c))
-|
-| /* Enter a start condition. This macro really ought to take a parameter,
-| * but we do it the disgusting crufty way forced on us by the ()-less
-| * definition of BEGIN.
-| */
-| #define BEGIN (yy_start) = 1 + 2 *
-| /* Translate the current start state into a value that can be later handed
-| * to BEGIN to return to the state. The YYSTATE alias is for lex
-| * compatibility.
-| */
-| #define YY_START (((yy_start) - 1) / 2)
-| #define YYSTATE YY_START
-| /* Action number for EOF rule of a given start state. */
-| #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
-| /* Special action meaning "start processing a new file". */
-| #define YY_NEW_FILE yyrestart( yyin )
-| #define YY_END_OF_BUFFER_CHAR 0
-|
-| /* Size of default input buffer. */
-| #ifndef YY_BUF_SIZE
-| #ifdef __ia64__
-| /* On IA-64, the buffer size is 16k, not 8k.
-| * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case.
-| * Ditto for the __ia64__ case accordingly.
-| */
-| #define YY_BUF_SIZE 32768
-| #else
-| #define YY_BUF_SIZE 16384
-| #endif /* __ia64__ */
-| #endif
-|
-| /* The state buf must be large enough to hold one state per character in the main buffer.
-| */
-| #define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type))
-|
-| #ifndef YY_TYPEDEF_YY_BUFFER_STATE
-| #define YY_TYPEDEF_YY_BUFFER_STATE
-| typedef struct yy_buffer_state *YY_BUFFER_STATE;
-| #endif
-|
-| #ifndef YY_TYPEDEF_YY_SIZE_T
-| #define YY_TYPEDEF_YY_SIZE_T
-| typedef size_t yy_size_t;
-| #endif
-|
-| extern int yyleng;
-|
-| extern FILE *yyin, *yyout;
-|
-| #define EOB_ACT_CONTINUE_SCAN 0
-| #define EOB_ACT_END_OF_FILE 1
-| #define EOB_ACT_LAST_MATCH 2
-|
-| #define YY_LESS_LINENO(n)
-| #define YY_LINENO_REWIND_TO(ptr)
-|
-| /* Return all but the first "n" matched characters back to the input stream. */
-| #define yyless(n) \
-| do \
-| { \
-| /* Undo effects of setting up yytext. */ \
-| int yyless_macro_arg = (n); \
-| YY_LESS_LINENO(yyless_macro_arg);\
-| *yy_cp = (yy_hold_char); \
-| YY_RESTORE_YY_MORE_OFFSET \
-| (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \
-| YY_DO_BEFORE_ACTION; /* set up yytext again */ \
-| } \
-| while ( 0 )
-| #define unput(c) yyunput( c, (yytext_ptr) )
-|
-| #ifndef YY_STRUCT_YY_BUFFER_STATE
-| #define YY_STRUCT_YY_BUFFER_STATE
-| struct yy_buffer_state
-| {
-| FILE *yy_input_file;
-|
-| char *yy_ch_buf; /* input buffer */
-| char *yy_buf_pos; /* current position in input buffer */
-|
-| /* Size of input buffer in bytes, not including room for EOB
-| * characters.
-| */
-| int yy_buf_size;
-|
-| /* Number of characters read into yy_ch_buf, not including EOB
-| * characters.
-| */
-| int yy_n_chars;
-|
-| /* Whether we "own" the buffer - i.e., we know we created it,
-| * and can realloc() it to grow it, and should free() it to
-| * delete it.
-| */
-| int yy_is_our_buffer;
-|
-| /* Whether this is an "interactive" input source; if so, and
-| * if we're using stdio for input, then we want to use getc()
-| * instead of fread(), to make sure we stop fetching input after
-| * each newline.
-| */
-| int yy_is_interactive;
-|
-| /* Whether we're considered to be at the beginning of a line.
-| * If so, '^' rules will be active on the next match, otherwise
-| * not.
-| */
-| int yy_at_bol;
-|
-| int yy_bs_lineno; /**< The line count. */
-| int yy_bs_column; /**< The column count. */
-|
-| /* Whether to try to fill the input buffer when we reach the
-| * end of it.
-| */
-| int yy_fill_buffer;
-|
-| int yy_buffer_status;
-|
-| #define YY_BUFFER_NEW 0
-| #define YY_BUFFER_NORMAL 1
-| /* When an EOF's been seen but there's still some text to process
-| * then we mark the buffer as YY_EOF_PENDING, to indicate that we
-| * shouldn't try reading from the input source any more. We might
-| * still have a bunch of tokens to match, though, because of
-| * possible backing-up.
-| *
-| * When we actually see the EOF, we change the status to "new"
-| * (via yyrestart()), so that the user can continue scanning by
-| * just pointing yyin at a new input file.
-| */
-| #define YY_BUFFER_EOF_PENDING 2
-|
-| };
-| #endif /* !YY_STRUCT_YY_BUFFER_STATE */
-|
-| /* Stack of input buffers. */
-| static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */
-| static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */
-| static YY_BUFFER_STATE * yy_buffer_stack = NULL; /**< Stack as an array. */
-|
-| /* We provide macros for accessing buffer states in case in the
-| * future we want to put the buffer states in a more general
-| * "scanner state".
-| *
-| * Returns the top of the stack, or NULL.
-| */
-| #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \
-| ? (yy_buffer_stack)[(yy_buffer_stack_top)] \
-| : NULL)
-| /* Same as previous macro, but useful when we know that the buffer stack is not
-| * NULL or when we need an lvalue. For internal use only.
-| */
-| #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)]
-|
-| /* yy_hold_char holds the character lost when yytext is formed. */
-| static char yy_hold_char;
-| static int yy_n_chars; /* number of characters read into yy_ch_buf */
-| int yyleng;
-|
-| /* Points to current character in buffer. */
-| static char *yy_c_buf_p = NULL;
-| static int yy_init = 0; /* whether we need to initialize */
-| static int yy_start = 0; /* start state number */
-|
-| /* Flag which is used to allow yywrap()'s to do buffer switches
-| * instead of setting up a fresh yyin. A bit of a hack ...
-| */
-| static int yy_did_buffer_switch_on_eof;
-|
-| void yyrestart ( FILE *input_file );
-| void yy_switch_to_buffer ( YY_BUFFER_STATE new_buffer );
-| YY_BUFFER_STATE yy_create_buffer ( FILE *file, int size );
-| void yy_delete_buffer ( YY_BUFFER_STATE b );
-| void yy_flush_buffer ( YY_BUFFER_STATE b );
-| void yypush_buffer_state ( YY_BUFFER_STATE new_buffer );
-| void yypop_buffer_state ( void );
-|
-| static void yyensure_buffer_stack ( void );
-| static void yy_load_buffer_state ( void );
-| static void yy_init_buffer ( YY_BUFFER_STATE b, FILE *file );
-| #define YY_FLUSH_BUFFER yy_flush_buffer( YY_CURRENT_BUFFER )
-|
-| YY_BUFFER_STATE yy_scan_buffer ( char *base, yy_size_t size );
-| YY_BUFFER_STATE yy_scan_string ( const char *yy_str );
-| YY_BUFFER_STATE yy_scan_bytes ( const char *bytes, int len );
-|
-| void *yyalloc ( yy_size_t );
-| void *yyrealloc ( void *, yy_size_t );
-| void yyfree ( void * );
-|
-| #define yy_new_buffer yy_create_buffer
-| #define yy_set_interactive(is_interactive) \
-| { \
-| if ( ! YY_CURRENT_BUFFER ){ \
-| yyensure_buffer_stack (); \
-| YY_CURRENT_BUFFER_LVALUE = \
-| yy_create_buffer( yyin, YY_BUF_SIZE ); \
-| } \
-| YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \
-| }
-| #define yy_set_bol(at_bol) \
-| { \
-| if ( ! YY_CURRENT_BUFFER ){\
-| yyensure_buffer_stack (); \
-| YY_CURRENT_BUFFER_LVALUE = \
-| yy_create_buffer( yyin, YY_BUF_SIZE ); \
-| } \
-| YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \
-| }
-| #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol)
-|
-| /* Begin user sect3 */
-| typedef flex_uint8_t YY_CHAR;
-|
-| FILE *yyin = NULL, *yyout = NULL;
-|
-| typedef int yy_state_type;
-|
-| extern int yylineno;
-| int yylineno = 1;
-|
-| extern char *yytext;
-| #ifdef yytext_ptr
-| #undef yytext_ptr
-| #endif
-| #define yytext_ptr yytext
-|
-| static yy_state_type yy_get_previous_state ( void );
-| static yy_state_type yy_try_NUL_trans ( yy_state_type current_state );
-| static int yy_get_next_buffer ( void );
-| static void yynoreturn yy_fatal_error ( const char* msg );
-|
-| /* Done after the current pattern has been matched and before the
-| * corresponding action - sets up yytext.
-| */
-| #define YY_DO_BEFORE_ACTION \
-| (yytext_ptr) = yy_bp; \
-| (yytext_ptr) -= (yy_more_len); \
-| yyleng = (int) (yy_cp - (yytext_ptr)); \
-| (yy_hold_char) = *yy_cp; \
-| *yy_cp = '\0'; \
-| (yy_c_buf_p) = yy_cp;
-| #define YY_NUM_RULES 8
-| #define YY_END_OF_BUFFER 9
-| /* This struct is not used in this scanner,
-| but its presence is necessary. */
-| struct yy_trans_info
-| {
-| flex_int32_t yy_verify;
-| flex_int32_t yy_nxt;
-| };
-| static const flex_int16_t yy_acclist[23] =
-| { 0,
-| 9, 7, 8, 8, 1, 7, 8, 2, 7, 8,
-| 3, 7, 8, 4, 7, 8, 5, 7, 8, 6,
-| 7, 8
-| } ;
-|
-| static const flex_int16_t yy_accept[14] =
-| { 0,
-| 1, 1, 1, 2, 4, 5, 8, 11, 14, 17,
-| 20, 23, 23
-| } ;
-|
-| static const YY_CHAR yy_ec[256] =
-| { 0,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 2,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 3, 4, 5, 6,
-|
-| 7, 8, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-|
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
-| 1, 1, 1, 1, 1
-| } ;
-|
-| static const YY_CHAR yy_meta[9] =
-| { 0,
-| 1, 1, 1, 1, 1, 1, 1, 1
-| } ;
-|
-| static const flex_int16_t yy_base[13] =
-| { 0,
-| 0, 0, 9, 10, 10, 10, 10, 10, 10, 10,
-| 10, 10
-| } ;
-|
-| static const flex_int16_t yy_def[13] =
-| { 0,
-| 12, 1, 12, 12, 12, 12, 12, 12, 12, 12,
-| 12, 0
-| } ;
-|
-| static const flex_int16_t yy_nxt[19] =
-| { 0,
-| 4, 5, 6, 7, 8, 9, 10, 11, 12, 3,
-| 12, 12, 12, 12, 12, 12, 12, 12
-| } ;
-|
-| static const flex_int16_t yy_chk[19] =
-| { 0,
-| 1, 1, 1, 1, 1, 1, 1, 1, 3, 12,
-| 12, 12, 12, 12, 12, 12, 12, 12
-| } ;
-|
-| extern int yy_flex_debug;
-| int yy_flex_debug = 0;
-|
-| static yy_state_type *yy_state_buf=0, *yy_state_ptr=0;
-| static char *yy_full_match;
-| static int yy_lp;
-| #define REJECT \
-| { \
-| *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ \
-| yy_cp = (yy_full_match); /* restore poss. backed-over text */ \
-| ++(yy_lp); \
-| goto find_rule; \
-| }
-|
-| static int yy_more_flag = 0;
-| static int yy_more_len = 0;
-| #define yymore() ((yy_more_flag) = 1)
-| #define YY_MORE_ADJ (yy_more_len)
-| #define YY_RESTORE_YY_MORE_OFFSET
-| char *yytext;
-| #line 1 "conftest.l"
-| #line 460 "lex.yy.c"
-|
-| #define INITIAL 0
-|
-| #ifndef YY_NO_UNISTD_H
-| /* Special case for "unistd.h", since it is non-ANSI. We include it way
-| * down here because we want the user's section 1 to have been scanned first.
-| * The user has a chance to override it with an option.
-| */
-| #include <unistd.h>
-| #endif
-|
-| #ifndef YY_EXTRA_TYPE
-| #define YY_EXTRA_TYPE void *
-| #endif
-|
-| static int yy_init_globals ( void );
-|
-| /* Accessor methods to globals.
-| These are made visible to non-reentrant scanners for convenience. */
-|
-| int yylex_destroy ( void );
-|
-| int yyget_debug ( void );
-|
-| void yyset_debug ( int debug_flag );
-|
-| YY_EXTRA_TYPE yyget_extra ( void );
-|
-| void yyset_extra ( YY_EXTRA_TYPE user_defined );
-|
-| FILE *yyget_in ( void );
-|
-| void yyset_in ( FILE * _in_str );
-|
-| FILE *yyget_out ( void );
-|
-| void yyset_out ( FILE * _out_str );
-|
-| int yyget_leng ( void );
-|
-| char *yyget_text ( void );
-|
-| int yyget_lineno ( void );
-|
-| void yyset_lineno ( int _line_number );
-|
-| /* Macros after this point can all be overridden by user definitions in
-| * section 1.
-| */
-|
-| #ifndef YY_SKIP_YYWRAP
-| #ifdef __cplusplus
-| extern "C" int yywrap ( void );
-| #else
-| extern int yywrap ( void );
-| #endif
-| #endif
-|
-| #ifndef YY_NO_UNPUT
-|
-| static void yyunput ( int c, char *buf_ptr );
-|
-| #endif
-|
-| #ifndef yytext_ptr
-| static void yy_flex_strncpy ( char *, const char *, int );
-| #endif
-|
-| #ifdef YY_NEED_STRLEN
-| static int yy_flex_strlen ( const char * );
-| #endif
-|
-| #ifndef YY_NO_INPUT
-| #ifdef __cplusplus
-| static int yyinput ( void );
-| #else
-| static int input ( void );
-| #endif
-|
-| #endif
-|
-| /* Amount of stuff to slurp up with each read. */
-| #ifndef YY_READ_BUF_SIZE
-| #ifdef __ia64__
-| /* On IA-64, the buffer size is 16k, not 8k */
-| #define YY_READ_BUF_SIZE 16384
-| #else
-| #define YY_READ_BUF_SIZE 8192
-| #endif /* __ia64__ */
-| #endif
-|
-| /* Copy whatever the last rule matched to the standard output. */
-| #ifndef ECHO
-| /* This used to be an fputs(), but since the string might contain NUL's,
-| * we now use fwrite().
-| */
-| #define ECHO do { if (fwrite( yytext, (size_t) yyleng, 1, yyout )) {} } while (0)
-| #endif
-|
-| /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL,
-| * is returned in "result".
-| */
-| #ifndef YY_INPUT
-| #define YY_INPUT(buf,result,max_size) \
-| if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \
-| { \
-| int c = '*'; \
-| int n; \
-| for ( n = 0; n < max_size && \
-| (c = getc( yyin )) != EOF && c != '\n'; ++n ) \
-| buf[n] = (char) c; \
-| if ( c == '\n' ) \
-| buf[n++] = (char) c; \
-| if ( c == EOF && ferror( yyin ) ) \
-| YY_FATAL_ERROR( "input in flex scanner failed" ); \
-| result = n; \
-| } \
-| else \
-| { \
-| errno=0; \
-| while ( (result = (int) fread(buf, 1, (yy_size_t) max_size, yyin)) == 0 && ferror(yyin)) \
-| { \
-| if( errno != EINTR) \
-| { \
-| YY_FATAL_ERROR( "input in flex scanner failed" ); \
-| break; \
-| } \
-| errno=0; \
-| clearerr(yyin); \
-| } \
-| }\
-| \
-|
-| #endif
-|
-| /* No semi-colon after return; correct usage is to write "yyterminate();" -
-| * we don't want an extra ';' after the "return" because that will cause
-| * some compilers to complain about unreachable statements.
-| */
-| #ifndef yyterminate
-| #define yyterminate() return YY_NULL
-| #endif
-|
-| /* Number of entries by which start-condition stack grows. */
-| #ifndef YY_START_STACK_INCR
-| #define YY_START_STACK_INCR 25
-| #endif
-|
-| /* Report a fatal error. */
-| #ifndef YY_FATAL_ERROR
-| #define YY_FATAL_ERROR(msg) yy_fatal_error( msg )
-| #endif
-|
-| /* end tables serialization structures and prototypes */
-|
-| /* Default declaration of generated scanner - a define so the user can
-| * easily add parameters.
-| */
-| #ifndef YY_DECL
-| #define YY_DECL_IS_OURS 1
-|
-| extern int yylex (void);
-|
-| #define YY_DECL int yylex (void)
-| #endif /* !YY_DECL */
-|
-| /* Code executed at the beginning of each rule, after yytext and yyleng
-| * have been set up.
-| */
-| #ifndef YY_USER_ACTION
-| #define YY_USER_ACTION
-| #endif
-|
-| /* Code executed at the end of each rule. */
-| #ifndef YY_BREAK
-| #define YY_BREAK /*LINTED*/break;
-| #endif
-|
-| #define YY_RULE_SETUP \
-| YY_USER_ACTION
-|
-| /** The main scanner function which does all the work.
-| */
-| YY_DECL
-| {
-| yy_state_type yy_current_state;
-| char *yy_cp, *yy_bp;
-| int yy_act;
-|
-| if ( !(yy_init) )
-| {
-| (yy_init) = 1;
-|
-| #ifdef YY_USER_INIT
-| YY_USER_INIT;
-| #endif
-|
-| /* Create the reject buffer large enough to save one state per allowed character. */
-| if ( ! (yy_state_buf) )
-| (yy_state_buf) = (yy_state_type *)yyalloc(YY_STATE_BUF_SIZE );
-| if ( ! (yy_state_buf) )
-| YY_FATAL_ERROR( "out of dynamic memory in yylex()" );
-|
-| if ( ! (yy_start) )
-| (yy_start) = 1; /* first start state */
-|
-| if ( ! yyin )
-| yyin = stdin;
-|
-| if ( ! yyout )
-| yyout = stdout;
-|
-| if ( ! YY_CURRENT_BUFFER ) {
-| yyensure_buffer_stack ();
-| YY_CURRENT_BUFFER_LVALUE =
-| yy_create_buffer( yyin, YY_BUF_SIZE );
-| }
-|
-| yy_load_buffer_state( );
-| }
-|
-| {
-| #line 1 "conftest.l"
-|
-| #line 685 "lex.yy.c"
-|
-| while ( /*CONSTCOND*/1 ) /* loops until end-of-file is reached */
-| {
-| (yy_more_len) = 0;
-| if ( (yy_more_flag) )
-| {
-| (yy_more_len) = (int) ((yy_c_buf_p) - (yytext_ptr));
-| (yy_more_flag) = 0;
-| }
-| yy_cp = (yy_c_buf_p);
-|
-| /* Support of yytext. */
-| *yy_cp = (yy_hold_char);
-|
-| /* yy_bp points to the position in yy_ch_buf of the start of
-| * the current run.
-| */
-| yy_bp = yy_cp;
-|
-| yy_current_state = (yy_start);
-|
-| (yy_state_ptr) = (yy_state_buf);
-| *(yy_state_ptr)++ = yy_current_state;
-|
-| yy_match:
-| do
-| {
-| YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)] ;
-| while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
-| {
-| yy_current_state = (int) yy_def[yy_current_state];
-| if ( yy_current_state >= 13 )
-| yy_c = yy_meta[yy_c];
-| }
-| yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
-| *(yy_state_ptr)++ = yy_current_state;
-| ++yy_cp;
-| }
-| while ( yy_base[yy_current_state] != 10 );
-|
-| yy_find_action:
-| yy_current_state = *--(yy_state_ptr);
-| (yy_lp) = yy_accept[yy_current_state];
-|
-| find_rule: /* we branch to this label when backing up */
-|
-| for ( ; ; ) /* until we find what rule we matched */
-| {
-| if ( (yy_lp) && (yy_lp) < yy_accept[yy_current_state + 1] )
-| {
-| yy_act = yy_acclist[(yy_lp)];
-| {
-| (yy_full_match) = yy_cp;
-| break;
-| }
-| }
-| --yy_cp;
-| yy_current_state = *--(yy_state_ptr);
-| (yy_lp) = yy_accept[yy_current_state];
-| }
-|
-| YY_DO_BEFORE_ACTION;
-|
-| do_action: /* This label is used only to access EOF actions. */
-|
-| switch ( yy_act )
-| { /* beginning of action switch */
-| case 1:
-| YY_RULE_SETUP
-| #line 2 "conftest.l"
-| { ECHO; }
-| YY_BREAK
-| case 2:
-| YY_RULE_SETUP
-| #line 3 "conftest.l"
-| { REJECT; }
-| YY_BREAK
-| case 3:
-| YY_RULE_SETUP
-| #line 4 "conftest.l"
-| { yymore (); }
-| YY_BREAK
-| case 4:
-| YY_RULE_SETUP
-| #line 5 "conftest.l"
-| { yyless (1); }
-| YY_BREAK
-| case 5:
-| YY_RULE_SETUP
-| #line 6 "conftest.l"
-| { /* IRIX 6.5 flex 2.5.4 underquotes its yyless argument. */
-| yyless ((input () != 0)); }
-| YY_BREAK
-| case 6:
-| YY_RULE_SETUP
-| #line 8 "conftest.l"
-| { unput (yytext[0]); }
-| YY_BREAK
-| case 7:
-| YY_RULE_SETUP
-| #line 9 "conftest.l"
-| { BEGIN INITIAL; }
-| YY_BREAK
-| case 8:
-| YY_RULE_SETUP
-| #line 10 "conftest.l"
-| ECHO;
-| YY_BREAK
-| #line 794 "lex.yy.c"
-| case YY_STATE_EOF(INITIAL):
-| yyterminate();
-|
-| case YY_END_OF_BUFFER:
-| {
-| /* Amount of text matched not including the EOB char. */
-| int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1;
-|
-| /* Undo the effects of YY_DO_BEFORE_ACTION. */
-| *yy_cp = (yy_hold_char);
-| YY_RESTORE_YY_MORE_OFFSET
-|
-| if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW )
-| {
-| /* We're scanning a new file or input source. It's
-| * possible that this happened because the user
-| * just pointed yyin at a new source and called
-| * yylex(). If so, then we have to assure
-| * consistency between YY_CURRENT_BUFFER and our
-| * globals. Here is the right place to do so, because
-| * this is the first action (other than possibly a
-| * back-up) that will match for the new input source.
-| */
-| (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
-| YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin;
-| YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL;
-| }
-|
-| /* Note that here we test for yy_c_buf_p "<=" to the position
-| * of the first EOB in the buffer, since yy_c_buf_p will
-| * already have been incremented past the NUL character
-| * (since all states make transitions on EOB to the
-| * end-of-buffer state). Contrast this with the test
-| * in input().
-| */
-| if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
-| { /* This was really a NUL. */
-| yy_state_type yy_next_state;
-|
-| (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text;
-|
-| yy_current_state = yy_get_previous_state( );
-|
-| /* Okay, we're now positioned to make the NUL
-| * transition. We couldn't have
-| * yy_get_previous_state() go ahead and do it
-| * for us because it doesn't know how to deal
-| * with the possibility of jamming (and we don't
-| * want to build jamming into it because then it
-| * will run more slowly).
-| */
-|
-| yy_next_state = yy_try_NUL_trans( yy_current_state );
-|
-| yy_bp = (yytext_ptr) + YY_MORE_ADJ;
-|
-| if ( yy_next_state )
-| {
-| /* Consume the NUL. */
-| yy_cp = ++(yy_c_buf_p);
-| yy_current_state = yy_next_state;
-| goto yy_match;
-| }
-|
-| else
-| {
-| yy_cp = (yy_c_buf_p);
-| goto yy_find_action;
-| }
-| }
-|
-| else switch ( yy_get_next_buffer( ) )
-| {
-| case EOB_ACT_END_OF_FILE:
-| {
-| (yy_did_buffer_switch_on_eof) = 0;
-|
-| if ( yywrap( ) )
-| {
-| /* Note: because we've taken care in
-| * yy_get_next_buffer() to have set up
-| * yytext, we can now set up
-| * yy_c_buf_p so that if some total
-| * hoser (like flex itself) wants to
-| * call the scanner after we return the
-| * YY_NULL, it'll still work - another
-| * YY_NULL will get returned.
-| */
-| (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ;
-|
-| yy_act = YY_STATE_EOF(YY_START);
-| goto do_action;
-| }
-|
-| else
-| {
-| if ( ! (yy_did_buffer_switch_on_eof) )
-| YY_NEW_FILE;
-| }
-| break;
-| }
-|
-| case EOB_ACT_CONTINUE_SCAN:
-| (yy_c_buf_p) =
-| (yytext_ptr) + yy_amount_of_matched_text;
-|
-| yy_current_state = yy_get_previous_state( );
-|
-| yy_cp = (yy_c_buf_p);
-| yy_bp = (yytext_ptr) + YY_MORE_ADJ;
-| goto yy_match;
-|
-| case EOB_ACT_LAST_MATCH:
-| (yy_c_buf_p) =
-| &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)];
-|
-| yy_current_state = yy_get_previous_state( );
-|
-| yy_cp = (yy_c_buf_p);
-| yy_bp = (yytext_ptr) + YY_MORE_ADJ;
-| goto yy_find_action;
-| }
-| break;
-| }
-|
-| default:
-| YY_FATAL_ERROR(
-| "fatal flex scanner internal error--no action found" );
-| } /* end of action switch */
-| } /* end of scanning one token */
-| } /* end of user's declarations */
-| } /* end of yylex */
-|
-| /* yy_get_next_buffer - try to read in a new buffer
-| *
-| * Returns a code representing an action:
-| * EOB_ACT_LAST_MATCH -
-| * EOB_ACT_CONTINUE_SCAN - continue scanning from current position
-| * EOB_ACT_END_OF_FILE - end of file
-| */
-| static int yy_get_next_buffer (void)
-| {
-| char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf;
-| char *source = (yytext_ptr);
-| int number_to_move, i;
-| int ret_val;
-|
-| if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] )
-| YY_FATAL_ERROR(
-| "fatal flex scanner internal error--end of buffer missed" );
-|
-| if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 )
-| { /* Don't try to fill the buffer, so this is an EOF. */
-| if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 )
-| {
-| /* We matched a single character, the EOB, so
-| * treat this as a final EOF.
-| */
-| return EOB_ACT_END_OF_FILE;
-| }
-|
-| else
-| {
-| /* We matched some text prior to the EOB, first
-| * process it.
-| */
-| return EOB_ACT_LAST_MATCH;
-| }
-| }
-|
-| /* Try to read more data. */
-|
-| /* First move last chars to start of buffer. */
-| number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr) - 1);
-|
-| for ( i = 0; i < number_to_move; ++i )
-| *(dest++) = *(source++);
-|
-| if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING )
-| /* don't do the read, it's not guaranteed to return an EOF,
-| * just force an EOF
-| */
-| YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0;
-|
-| else
-| {
-| int num_to_read =
-| YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1;
-|
-| while ( num_to_read <= 0 )
-| { /* Not enough room in the buffer - grow it. */
-|
-| YY_FATAL_ERROR(
-| "input buffer overflow, can't enlarge buffer because scanner uses REJECT" );
-|
-| }
-|
-| if ( num_to_read > YY_READ_BUF_SIZE )
-| num_to_read = YY_READ_BUF_SIZE;
-|
-| /* Read in more data. */
-| YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]),
-| (yy_n_chars), num_to_read );
-|
-| YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
-| }
-|
-| if ( (yy_n_chars) == 0 )
-| {
-| if ( number_to_move == YY_MORE_ADJ )
-| {
-| ret_val = EOB_ACT_END_OF_FILE;
-| yyrestart( yyin );
-| }
-|
-| else
-| {
-| ret_val = EOB_ACT_LAST_MATCH;
-| YY_CURRENT_BUFFER_LVALUE->yy_buffer_status =
-| YY_BUFFER_EOF_PENDING;
-| }
-| }
-|
-| else
-| ret_val = EOB_ACT_CONTINUE_SCAN;
-|
-| if (((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) {
-| /* Extend the array by 50%, plus the number we really need. */
-| int new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1);
-| YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc(
-| (void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf, (yy_size_t) new_size );
-| if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
-| YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" );
-| /* "- 2" to take care of EOB's */
-| YY_CURRENT_BUFFER_LVALUE->yy_buf_size = (int) (new_size - 2);
-| }
-|
-| (yy_n_chars) += number_to_move;
-| YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR;
-| YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR;
-|
-| (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0];
-|
-| return ret_val;
-| }
-|
-| /* yy_get_previous_state - get the state just before the EOB char was reached */
-|
-| static yy_state_type yy_get_previous_state (void)
-| {
-| yy_state_type yy_current_state;
-| char *yy_cp;
-|
-| yy_current_state = (yy_start);
-|
-| (yy_state_ptr) = (yy_state_buf);
-| *(yy_state_ptr)++ = yy_current_state;
-|
-| for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp )
-| {
-| YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1);
-| while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
-| {
-| yy_current_state = (int) yy_def[yy_current_state];
-| if ( yy_current_state >= 13 )
-| yy_c = yy_meta[yy_c];
-| }
-| yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
-| *(yy_state_ptr)++ = yy_current_state;
-| }
-|
-| return yy_current_state;
-| }
-|
-| /* yy_try_NUL_trans - try to make a transition on the NUL character
-| *
-| * synopsis
-| * next_state = yy_try_NUL_trans( current_state );
-| */
-| static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state )
-| {
-| int yy_is_jam;
-|
-| YY_CHAR yy_c = 1;
-| while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
-| {
-| yy_current_state = (int) yy_def[yy_current_state];
-| if ( yy_current_state >= 13 )
-| yy_c = yy_meta[yy_c];
-| }
-| yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
-| yy_is_jam = (yy_current_state == 12);
-| if ( ! yy_is_jam )
-| *(yy_state_ptr)++ = yy_current_state;
-|
-| return yy_is_jam ? 0 : yy_current_state;
-| }
-|
-| #ifndef YY_NO_UNPUT
-|
-| static void yyunput (int c, char * yy_bp )
-| {
-| char *yy_cp;
-|
-| yy_cp = (yy_c_buf_p);
-|
-| /* undo effects of setting up yytext */
-| *yy_cp = (yy_hold_char);
-|
-| if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
-| { /* need to shift things up to make room */
-| /* +2 for EOB chars. */
-| int number_to_move = (yy_n_chars) + 2;
-| char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[
-| YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2];
-| char *source =
-| &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move];
-|
-| while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf )
-| *--dest = *--source;
-|
-| yy_cp += (int) (dest - source);
-| yy_bp += (int) (dest - source);
-| YY_CURRENT_BUFFER_LVALUE->yy_n_chars =
-| (yy_n_chars) = (int) YY_CURRENT_BUFFER_LVALUE->yy_buf_size;
-|
-| if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 )
-| YY_FATAL_ERROR( "flex scanner push-back overflow" );
-| }
-|
-| *--yy_cp = (char) c;
-|
-| (yytext_ptr) = yy_bp;
-| (yy_hold_char) = *yy_cp;
-| (yy_c_buf_p) = yy_cp;
-| }
-|
-| #endif
-|
-| #ifndef YY_NO_INPUT
-| #ifdef __cplusplus
-| static int yyinput (void)
-| #else
-| static int input (void)
-| #endif
-|
-| {
-| int c;
-|
-| *(yy_c_buf_p) = (yy_hold_char);
-|
-| if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR )
-| {
-| /* yy_c_buf_p now points to the character we want to return.
-| * If this occurs *before* the EOB characters, then it's a
-| * valid NUL; if not, then we've hit the end of the buffer.
-| */
-| if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] )
-| /* This was really a NUL. */
-| *(yy_c_buf_p) = '\0';
-|
-| else
-| { /* need more input */
-| int offset = (int) ((yy_c_buf_p) - (yytext_ptr));
-| ++(yy_c_buf_p);
-|
-| switch ( yy_get_next_buffer( ) )
-| {
-| case EOB_ACT_LAST_MATCH:
-| /* This happens because yy_g_n_b()
-| * sees that we've accumulated a
-| * token and flags that we need to
-| * try matching the token before
-| * proceeding. But for input(),
-| * there's no matching to consider.
-| * So convert the EOB_ACT_LAST_MATCH
-| * to EOB_ACT_END_OF_FILE.
-| */
-|
-| /* Reset buffer status. */
-| yyrestart( yyin );
-|
-| /*FALLTHROUGH*/
-|
-| case EOB_ACT_END_OF_FILE:
-| {
-| if ( yywrap( ) )
-| return 0;
-|
-| if ( ! (yy_did_buffer_switch_on_eof) )
-| YY_NEW_FILE;
-| #ifdef __cplusplus
-| return yyinput();
-| #else
-| return input();
-| #endif
-| }
-|
-| case EOB_ACT_CONTINUE_SCAN:
-| (yy_c_buf_p) = (yytext_ptr) + offset;
-| break;
-| }
-| }
-| }
-|
-| c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */
-| *(yy_c_buf_p) = '\0'; /* preserve yytext */
-| (yy_hold_char) = *++(yy_c_buf_p);
-|
-| return c;
-| }
-| #endif /* ifndef YY_NO_INPUT */
-|
-| /** Immediately switch to a different input stream.
-| * @param input_file A readable stream.
-| *
-| * @note This function does not reset the start condition to @c INITIAL .
-| */
-| void yyrestart (FILE * input_file )
-| {
-|
-| if ( ! YY_CURRENT_BUFFER ){
-| yyensure_buffer_stack ();
-| YY_CURRENT_BUFFER_LVALUE =
-| yy_create_buffer( yyin, YY_BUF_SIZE );
-| }
-|
-| yy_init_buffer( YY_CURRENT_BUFFER, input_file );
-| yy_load_buffer_state( );
-| }
-|
-| /** Switch to a different input buffer.
-| * @param new_buffer The new input buffer.
-| *
-| */
-| void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer )
-| {
-|
-| /* TODO. We should be able to replace this entire function body
-| * with
-| * yypop_buffer_state();
-| * yypush_buffer_state(new_buffer);
-| */
-| yyensure_buffer_stack ();
-| if ( YY_CURRENT_BUFFER == new_buffer )
-| return;
-|
-| if ( YY_CURRENT_BUFFER )
-| {
-| /* Flush out information for old buffer. */
-| *(yy_c_buf_p) = (yy_hold_char);
-| YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
-| YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
-| }
-|
-| YY_CURRENT_BUFFER_LVALUE = new_buffer;
-| yy_load_buffer_state( );
-|
-| /* We don't actually know whether we did this switch during
-| * EOF (yywrap()) processing, but the only time this flag
-| * is looked at is after yywrap() is called, so it's safe
-| * to go ahead and always set it.
-| */
-| (yy_did_buffer_switch_on_eof) = 1;
-| }
-|
-| static void yy_load_buffer_state (void)
-| {
-| (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars;
-| (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos;
-| yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file;
-| (yy_hold_char) = *(yy_c_buf_p);
-| }
-|
-| /** Allocate and initialize an input buffer state.
-| * @param file A readable stream.
-| * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE.
-| *
-| * @return the allocated buffer state.
-| */
-| YY_BUFFER_STATE yy_create_buffer (FILE * file, int size )
-| {
-| YY_BUFFER_STATE b;
-|
-| b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) );
-| if ( ! b )
-| YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
-|
-| b->yy_buf_size = size;
-|
-| /* yy_ch_buf has to be 2 characters longer than the size given because
-| * we need to put in 2 end-of-buffer characters.
-| */
-| b->yy_ch_buf = (char *) yyalloc( (yy_size_t) (b->yy_buf_size + 2) );
-| if ( ! b->yy_ch_buf )
-| YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
-|
-| b->yy_is_our_buffer = 1;
-|
-| yy_init_buffer( b, file );
-|
-| return b;
-| }
-|
-| /** Destroy the buffer.
-| * @param b a buffer created with yy_create_buffer()
-| *
-| */
-| void yy_delete_buffer (YY_BUFFER_STATE b )
-| {
-|
-| if ( ! b )
-| return;
-|
-| if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */
-| YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0;
-|
-| if ( b->yy_is_our_buffer )
-| yyfree( (void *) b->yy_ch_buf );
-|
-| yyfree( (void *) b );
-| }
-|
-| /* Initializes or reinitializes a buffer.
-| * This function is sometimes called more than once on the same buffer,
-| * such as during a yyrestart() or at EOF.
-| */
-| static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file )
-|
-| {
-| int oerrno = errno;
-|
-| yy_flush_buffer( b );
-|
-| b->yy_input_file = file;
-| b->yy_fill_buffer = 1;
-|
-| /* If b is the current buffer, then yy_init_buffer was _probably_
-| * called from yyrestart() or through yy_get_next_buffer.
-| * In that case, we don't want to reset the lineno or column.
-| */
-| if (b != YY_CURRENT_BUFFER){
-| b->yy_bs_lineno = 1;
-| b->yy_bs_column = 0;
-| }
-|
-| b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0;
-|
-| errno = oerrno;
-| }
-|
-| /** Discard all buffered characters. On the next scan, YY_INPUT will be called.
-| * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER.
-| *
-| */
-| void yy_flush_buffer (YY_BUFFER_STATE b )
-| {
-| if ( ! b )
-| return;
-|
-| b->yy_n_chars = 0;
-|
-| /* We always need two end-of-buffer characters. The first causes
-| * a transition to the end-of-buffer state. The second causes
-| * a jam in that state.
-| */
-| b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR;
-| b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
-|
-| b->yy_buf_pos = &b->yy_ch_buf[0];
-|
-| b->yy_at_bol = 1;
-| b->yy_buffer_status = YY_BUFFER_NEW;
-|
-| if ( b == YY_CURRENT_BUFFER )
-| yy_load_buffer_state( );
-| }
-|
-| /** Pushes the new state onto the stack. The new state becomes
-| * the current state. This function will allocate the stack
-| * if necessary.
-| * @param new_buffer The new state.
-| *
-| */
-| void yypush_buffer_state (YY_BUFFER_STATE new_buffer )
-| {
-| if (new_buffer == NULL)
-| return;
-|
-| yyensure_buffer_stack();
-|
-| /* This block is copied from yy_switch_to_buffer. */
-| if ( YY_CURRENT_BUFFER )
-| {
-| /* Flush out information for old buffer. */
-| *(yy_c_buf_p) = (yy_hold_char);
-| YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p);
-| YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars);
-| }
-|
-| /* Only push if top exists. Otherwise, replace top. */
-| if (YY_CURRENT_BUFFER)
-| (yy_buffer_stack_top)++;
-| YY_CURRENT_BUFFER_LVALUE = new_buffer;
-|
-| /* copied from yy_switch_to_buffer. */
-| yy_load_buffer_state( );
-| (yy_did_buffer_switch_on_eof) = 1;
-| }
-|
-| /** Removes and deletes the top of the stack, if present.
-| * The next element becomes the new top.
-| *
-| */
-| void yypop_buffer_state (void)
-| {
-| if (!YY_CURRENT_BUFFER)
-| return;
-|
-| yy_delete_buffer(YY_CURRENT_BUFFER );
-| YY_CURRENT_BUFFER_LVALUE = NULL;
-| if ((yy_buffer_stack_top) > 0)
-| --(yy_buffer_stack_top);
-|
-| if (YY_CURRENT_BUFFER) {
-| yy_load_buffer_state( );
-| (yy_did_buffer_switch_on_eof) = 1;
-| }
-| }
-|
-| /* Allocates the stack if it does not exist.
-| * Guarantees space for at least one push.
-| */
-| static void yyensure_buffer_stack (void)
-| {
-| yy_size_t num_to_alloc;
-|
-| if (!(yy_buffer_stack)) {
-|
-| /* First allocation is just for 2 elements, since we don't know if this
-| * scanner will even need a stack. We use 2 instead of 1 to avoid an
-| * immediate realloc on the next call.
-| */
-| num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */
-| (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
-| (num_to_alloc * sizeof(struct yy_buffer_state*)
-| );
-| if ( ! (yy_buffer_stack) )
-| YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
-|
-| memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*));
-|
-| (yy_buffer_stack_max) = num_to_alloc;
-| (yy_buffer_stack_top) = 0;
-| return;
-| }
-|
-| if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){
-|
-| /* Increase the buffer to prepare for a possible push. */
-| yy_size_t grow_size = 8 /* arbitrary grow size */;
-|
-| num_to_alloc = (yy_buffer_stack_max) + grow_size;
-| (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc
-| ((yy_buffer_stack),
-| num_to_alloc * sizeof(struct yy_buffer_state*)
-| );
-| if ( ! (yy_buffer_stack) )
-| YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" );
-|
-| /* zero only the new slots.*/
-| memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*));
-| (yy_buffer_stack_max) = num_to_alloc;
-| }
-| }
-|
-| /** Setup the input buffer state to scan directly from a user-specified character buffer.
-| * @param base the character buffer
-| * @param size the size in bytes of the character buffer
-| *
-| * @return the newly allocated buffer state object.
-| */
-| YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size )
-| {
-| YY_BUFFER_STATE b;
-|
-| if ( size < 2 ||
-| base[size-2] != YY_END_OF_BUFFER_CHAR ||
-| base[size-1] != YY_END_OF_BUFFER_CHAR )
-| /* They forgot to leave room for the EOB's. */
-| return NULL;
-|
-| b = (YY_BUFFER_STATE) yyalloc( sizeof( struct yy_buffer_state ) );
-| if ( ! b )
-| YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" );
-|
-| b->yy_buf_size = (int) (size - 2); /* "- 2" to take care of EOB's */
-| b->yy_buf_pos = b->yy_ch_buf = base;
-| b->yy_is_our_buffer = 0;
-| b->yy_input_file = NULL;
-| b->yy_n_chars = b->yy_buf_size;
-| b->yy_is_interactive = 0;
-| b->yy_at_bol = 1;
-| b->yy_fill_buffer = 0;
-| b->yy_buffer_status = YY_BUFFER_NEW;
-|
-| yy_switch_to_buffer( b );
-|
-| return b;
-| }
-|
-| /** Setup the input buffer state to scan a string. The next call to yylex() will
-| * scan from a @e copy of @a str.
-| * @param yystr a NUL-terminated string to scan
-| *
-| * @return the newly allocated buffer state object.
-| * @note If you want to scan bytes that may contain NUL values, then use
-| * yy_scan_bytes() instead.
-| */
-| YY_BUFFER_STATE yy_scan_string (const char * yystr )
-| {
-|
-| return yy_scan_bytes( yystr, (int) strlen(yystr) );
-| }
-|
-| /** Setup the input buffer state to scan the given bytes. The next call to yylex() will
-| * scan from a @e copy of @a bytes.
-| * @param yybytes the byte buffer to scan
-| * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes.
-| *
-| * @return the newly allocated buffer state object.
-| */
-| YY_BUFFER_STATE yy_scan_bytes (const char * yybytes, int _yybytes_len )
-| {
-| YY_BUFFER_STATE b;
-| char *buf;
-| yy_size_t n;
-| int i;
-|
-| /* Get memory for full buffer, including space for trailing EOB's. */
-| n = (yy_size_t) (_yybytes_len + 2);
-| buf = (char *) yyalloc( n );
-| if ( ! buf )
-| YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" );
-|
-| for ( i = 0; i < _yybytes_len; ++i )
-| buf[i] = yybytes[i];
-|
-| buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR;
-|
-| b = yy_scan_buffer( buf, n );
-| if ( ! b )
-| YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" );
-|
-| /* It's okay to grow etc. this buffer, and we should throw it
-| * away when we're done.
-| */
-| b->yy_is_our_buffer = 1;
-|
-| return b;
-| }
-|
-| #ifndef YY_EXIT_FAILURE
-| #define YY_EXIT_FAILURE 2
-| #endif
-|
-| static void yynoreturn yy_fatal_error (const char* msg )
-| {
-| fprintf( stderr, "%s\n", msg );
-| exit( YY_EXIT_FAILURE );
-| }
-|
-| /* Redefine yyless() so it works in section 3 code. */
-|
-| #undef yyless
-| #define yyless(n) \
-| do \
-| { \
-| /* Undo effects of setting up yytext. */ \
-| int yyless_macro_arg = (n); \
-| YY_LESS_LINENO(yyless_macro_arg);\
-| yytext[yyleng] = (yy_hold_char); \
-| (yy_c_buf_p) = yytext + yyless_macro_arg; \
-| (yy_hold_char) = *(yy_c_buf_p); \
-| *(yy_c_buf_p) = '\0'; \
-| yyleng = yyless_macro_arg; \
-| } \
-| while ( 0 )
-|
-| /* Accessor methods (get/set functions) to struct members. */
-|
-| /** Get the current line number.
-| *
-| */
-| int yyget_lineno (void)
-| {
-|
-| return yylineno;
-| }
-|
-| /** Get the input stream.
-| *
-| */
-| FILE *yyget_in (void)
-| {
-| return yyin;
-| }
-|
-| /** Get the output stream.
-| *
-| */
-| FILE *yyget_out (void)
-| {
-| return yyout;
-| }
-|
-| /** Get the length of the current token.
-| *
-| */
-| int yyget_leng (void)
-| {
-| return yyleng;
-| }
-|
-| /** Get the current token.
-| *
-| */
-|
-| char *yyget_text (void)
-| {
-| return yytext;
-| }
-|
-| /** Set the current line number.
-| * @param _line_number line number
-| *
-| */
-| void yyset_lineno (int _line_number )
-| {
-|
-| yylineno = _line_number;
-| }
-|
-| /** Set the input stream. This does not discard the current
-| * input buffer.
-| * @param _in_str A readable stream.
-| *
-| * @see yy_switch_to_buffer
-| */
-| void yyset_in (FILE * _in_str )
-| {
-| yyin = _in_str ;
-| }
-|
-| void yyset_out (FILE * _out_str )
-| {
-| yyout = _out_str ;
-| }
-|
-| int yyget_debug (void)
-| {
-| return yy_flex_debug;
-| }
-|
-| void yyset_debug (int _bdebug )
-| {
-| yy_flex_debug = _bdebug ;
-| }
-|
-| static int yy_init_globals (void)
-| {
-| /* Initialization is the same as for the non-reentrant scanner.
-| * This function is called from yylex_destroy(), so don't allocate here.
-| */
-|
-| (yy_buffer_stack) = NULL;
-| (yy_buffer_stack_top) = 0;
-| (yy_buffer_stack_max) = 0;
-| (yy_c_buf_p) = NULL;
-| (yy_init) = 0;
-| (yy_start) = 0;
-|
-| (yy_state_buf) = 0;
-| (yy_state_ptr) = 0;
-| (yy_full_match) = 0;
-| (yy_lp) = 0;
-|
-| /* Defined in main.c */
-| #ifdef YY_STDINIT
-| yyin = stdin;
-| yyout = stdout;
-| #else
-| yyin = NULL;
-| yyout = NULL;
-| #endif
-|
-| /* For future reference: Set errno on error, since we are called by
-| * yylex_init()
-| */
-| return 0;
-| }
-|
-| /* yylex_destroy is for both reentrant and non-reentrant scanners. */
-| int yylex_destroy (void)
-| {
-|
-| /* Pop the buffer stack, destroying each element. */
-| while(YY_CURRENT_BUFFER){
-| yy_delete_buffer( YY_CURRENT_BUFFER );
-| YY_CURRENT_BUFFER_LVALUE = NULL;
-| yypop_buffer_state();
-| }
-|
-| /* Destroy the stack itself. */
-| yyfree((yy_buffer_stack) );
-| (yy_buffer_stack) = NULL;
-|
-| yyfree ( (yy_state_buf) );
-| (yy_state_buf) = NULL;
-|
-| /* Reset the globals. This is important in a non-reentrant scanner so the next time
-| * yylex() is called, initialization will occur. */
-| yy_init_globals( );
-|
-| return 0;
-| }
-|
-| /*
-| * Internal utility routines.
-| */
-|
-| #ifndef yytext_ptr
-| static void yy_flex_strncpy (char* s1, const char * s2, int n )
-| {
-|
-| int i;
-| for ( i = 0; i < n; ++i )
-| s1[i] = s2[i];
-| }
-| #endif
-|
-| #ifdef YY_NEED_STRLEN
-| static int yy_flex_strlen (const char * s )
-| {
-| int n;
-| for ( n = 0; s[n]; ++n )
-| ;
-|
-| return n;
-| }
-| #endif
-|
-| void *yyalloc (yy_size_t size )
-| {
-| return malloc(size);
-| }
-|
-| void *yyrealloc (void * ptr, yy_size_t size )
-| {
-|
-| /* The cast to (char *) in the following accommodates both
-| * implementations that use char* generic pointers, and those
-| * that use void* generic pointers. It works with the latter
-| * because both ANSI C and C++ allow castless assignment from
-| * any pointer type to void*, and deal with argument conversions
-| * as though doing an assignment.
-| */
-| return realloc(ptr, size);
-| }
-|
-| void yyfree (void * ptr )
-| {
-| free( (char *) ptr ); /* see yyrealloc() for (char *) cast */
-| }
-|
-| #define YYTABLES_NAME "yytables"
-|
-| #line 10 "conftest.l"
-|
-| #ifdef YYTEXT_POINTER
-| extern char *yytext;
-| #endif
-| int
-| main (void)
-| {
-| return ! yylex () + ! yywrap ();
-| }
-configure:16184: gcc -o conftest -g -O2 conftest.c -lfl >&5
-configure:16184: $? = 0
-configure:16194: result: -lfl
-configure:16200: checking whether yytext is a pointer
-configure:16217: gcc -o conftest -g -O2 conftest.c -lfl >&5
-configure:16217: $? = 0
-configure:16225: result: yes
-configure:16244: checking for bison
-configure:16260: found /usr/bin/bison
-configure:16271: result: bison -y
-configure:16300: checking for ANSI C header files
-configure:16404: result: yes
-configure:16415: checking endian.h usability
-configure:16415: g++ -c -g -O2 conftest.cpp >&5
-configure:16415: $? = 0
-configure:16415: result: yes
-configure:16415: checking endian.h presence
-configure:16415: g++ -E conftest.cpp
-configure:16415: $? = 0
-configure:16415: result: yes
-configure:16415: checking for endian.h
-configure:16415: result: yes
-configure:16415: checking sys/endian.h usability
-configure:16415: g++ -c -g -O2 conftest.cpp >&5
-conftest.cpp:63:10: fatal error: sys/endian.h: No such file or directory
- #include <sys/endian.h>
- ^~~~~~~~~~~~~~
-compilation terminated.
-configure:16415: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define VERSIONSTR "0.6-pre56"
-| #define VERSIONHI 0
-| #define VERSIONLO 6-pre56
-| #define VERSIONP
-| #define STATISTIC no
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| #define YYTEXT_POINTER 1
-| #define HAVE_FLEX 1
-| #define STDC_HEADERS 1
-| #define HAVE_ENDIAN_H 1
-| /* end confdefs.h. */
-| #include <stdio.h>
-| #ifdef HAVE_SYS_TYPES_H
-| # include <sys/types.h>
-| #endif
-| #ifdef HAVE_SYS_STAT_H
-| # include <sys/stat.h>
-| #endif
-| #ifdef STDC_HEADERS
-| # include <stdlib.h>
-| # include <stddef.h>
-| #else
-| # ifdef HAVE_STDLIB_H
-| # include <stdlib.h>
-| # endif
-| #endif
-| #ifdef HAVE_STRING_H
-| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
-| # include <memory.h>
-| # endif
-| # include <string.h>
-| #endif
-| #ifdef HAVE_STRINGS_H
-| # include <strings.h>
-| #endif
-| #ifdef HAVE_INTTYPES_H
-| # include <inttypes.h>
-| #endif
-| #ifdef HAVE_STDINT_H
-| # include <stdint.h>
-| #endif
-| #ifdef HAVE_UNISTD_H
-| # include <unistd.h>
-| #endif
-| #include <sys/endian.h>
-configure:16415: result: no
-configure:16415: checking sys/endian.h presence
-configure:16415: g++ -E conftest.cpp
-conftest.cpp:30:10: fatal error: sys/endian.h: No such file or directory
- #include <sys/endian.h>
- ^~~~~~~~~~~~~~
-compilation terminated.
-configure:16415: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define VERSIONSTR "0.6-pre56"
-| #define VERSIONHI 0
-| #define VERSIONLO 6-pre56
-| #define VERSIONP
-| #define STATISTIC no
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| #define YYTEXT_POINTER 1
-| #define HAVE_FLEX 1
-| #define STDC_HEADERS 1
-| #define HAVE_ENDIAN_H 1
-| /* end confdefs.h. */
-| #include <sys/endian.h>
-configure:16415: result: no
-configure:16415: checking for sys/endian.h
-configure:16415: result: no
-configure:16415: checking machine/endian.h usability
-configure:16415: g++ -c -g -O2 conftest.cpp >&5
-conftest.cpp:63:10: fatal error: machine/endian.h: No such file or directory
- #include <machine/endian.h>
- ^~~~~~~~~~~~~~~~~~
-compilation terminated.
-configure:16415: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define VERSIONSTR "0.6-pre56"
-| #define VERSIONHI 0
-| #define VERSIONLO 6-pre56
-| #define VERSIONP
-| #define STATISTIC no
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| #define YYTEXT_POINTER 1
-| #define HAVE_FLEX 1
-| #define STDC_HEADERS 1
-| #define HAVE_ENDIAN_H 1
-| /* end confdefs.h. */
-| #include <stdio.h>
-| #ifdef HAVE_SYS_TYPES_H
-| # include <sys/types.h>
-| #endif
-| #ifdef HAVE_SYS_STAT_H
-| # include <sys/stat.h>
-| #endif
-| #ifdef STDC_HEADERS
-| # include <stdlib.h>
-| # include <stddef.h>
-| #else
-| # ifdef HAVE_STDLIB_H
-| # include <stdlib.h>
-| # endif
-| #endif
-| #ifdef HAVE_STRING_H
-| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
-| # include <memory.h>
-| # endif
-| # include <string.h>
-| #endif
-| #ifdef HAVE_STRINGS_H
-| # include <strings.h>
-| #endif
-| #ifdef HAVE_INTTYPES_H
-| # include <inttypes.h>
-| #endif
-| #ifdef HAVE_STDINT_H
-| # include <stdint.h>
-| #endif
-| #ifdef HAVE_UNISTD_H
-| # include <unistd.h>
-| #endif
-| #include <machine/endian.h>
-configure:16415: result: no
-configure:16415: checking machine/endian.h presence
-configure:16415: g++ -E conftest.cpp
-conftest.cpp:30:10: fatal error: machine/endian.h: No such file or directory
- #include <machine/endian.h>
- ^~~~~~~~~~~~~~~~~~
-compilation terminated.
-configure:16415: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define VERSIONSTR "0.6-pre56"
-| #define VERSIONHI 0
-| #define VERSIONLO 6-pre56
-| #define VERSIONP
-| #define STATISTIC no
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| #define YYTEXT_POINTER 1
-| #define HAVE_FLEX 1
-| #define STDC_HEADERS 1
-| #define HAVE_ENDIAN_H 1
-| /* end confdefs.h. */
-| #include <machine/endian.h>
-configure:16415: result: no
-configure:16415: checking for machine/endian.h
-configure:16415: result: no
-configure:16415: checking sys/isa_defs.h usability
-configure:16415: g++ -c -g -O2 conftest.cpp >&5
-conftest.cpp:63:10: fatal error: sys/isa_defs.h: No such file or directory
- #include <sys/isa_defs.h>
- ^~~~~~~~~~~~~~~~
-compilation terminated.
-configure:16415: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define VERSIONSTR "0.6-pre56"
-| #define VERSIONHI 0
-| #define VERSIONLO 6-pre56
-| #define VERSIONP
-| #define STATISTIC no
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| #define YYTEXT_POINTER 1
-| #define HAVE_FLEX 1
-| #define STDC_HEADERS 1
-| #define HAVE_ENDIAN_H 1
-| /* end confdefs.h. */
-| #include <stdio.h>
-| #ifdef HAVE_SYS_TYPES_H
-| # include <sys/types.h>
-| #endif
-| #ifdef HAVE_SYS_STAT_H
-| # include <sys/stat.h>
-| #endif
-| #ifdef STDC_HEADERS
-| # include <stdlib.h>
-| # include <stddef.h>
-| #else
-| # ifdef HAVE_STDLIB_H
-| # include <stdlib.h>
-| # endif
-| #endif
-| #ifdef HAVE_STRING_H
-| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
-| # include <memory.h>
-| # endif
-| # include <string.h>
-| #endif
-| #ifdef HAVE_STRINGS_H
-| # include <strings.h>
-| #endif
-| #ifdef HAVE_INTTYPES_H
-| # include <inttypes.h>
-| #endif
-| #ifdef HAVE_STDINT_H
-| # include <stdint.h>
-| #endif
-| #ifdef HAVE_UNISTD_H
-| # include <unistd.h>
-| #endif
-| #include <sys/isa_defs.h>
-configure:16415: result: no
-configure:16415: checking sys/isa_defs.h presence
-configure:16415: g++ -E conftest.cpp
-conftest.cpp:30:10: fatal error: sys/isa_defs.h: No such file or directory
- #include <sys/isa_defs.h>
- ^~~~~~~~~~~~~~~~
-compilation terminated.
-configure:16415: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define VERSIONSTR "0.6-pre56"
-| #define VERSIONHI 0
-| #define VERSIONLO 6-pre56
-| #define VERSIONP
-| #define STATISTIC no
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| #define YYTEXT_POINTER 1
-| #define HAVE_FLEX 1
-| #define STDC_HEADERS 1
-| #define HAVE_ENDIAN_H 1
-| /* end confdefs.h. */
-| #include <sys/isa_defs.h>
-configure:16415: result: no
-configure:16415: checking for sys/isa_defs.h
-configure:16415: result: no
-configure:16427: checking getopt.h usability
-configure:16427: g++ -c -g -O2 conftest.cpp >&5
-configure:16427: $? = 0
-configure:16427: result: yes
-configure:16427: checking getopt.h presence
-configure:16427: g++ -E conftest.cpp
-configure:16427: $? = 0
-configure:16427: result: yes
-configure:16427: checking for getopt.h
-configure:16427: result: yes
-configure:16439: checking for unistd.h
-configure:16439: result: yes
-configure:16451: checking termios.h usability
-configure:16451: g++ -c -g -O2 conftest.cpp >&5
-configure:16451: $? = 0
-configure:16451: result: yes
-configure:16451: checking termios.h presence
-configure:16451: g++ -E conftest.cpp
-configure:16451: $? = 0
-configure:16451: result: yes
-configure:16451: checking for termios.h
-configure:16451: result: yes
-configure:16462: checking curses.h usability
-configure:16462: g++ -c -g -O2 conftest.cpp >&5
-configure:16462: $? = 0
-configure:16462: result: yes
-configure:16462: checking curses.h presence
-configure:16462: g++ -E conftest.cpp
-configure:16462: $? = 0
-configure:16462: result: yes
-configure:16462: checking for curses.h
-configure:16462: result: yes
-configure:16476: checking sys/socket.h usability
-configure:16476: g++ -c -g -O2 conftest.cpp >&5
-configure:16476: $? = 0
-configure:16476: result: yes
-configure:16476: checking sys/socket.h presence
-configure:16476: g++ -E conftest.cpp
-configure:16476: $? = 0
-configure:16476: result: yes
-configure:16476: checking for sys/socket.h
-configure:16476: result: yes
-conftest.cpp:37:25: warning: extra tokens at end of #include directive
- #include <<sys/socket.h>>
- ^
-conftest.cpp:37:10: fatal error: <sys/socket.h: No such file or directory
- #include <<sys/socket.h>>
- ^~~~~~~~~~~~~~~
-compilation terminated.
-configure:16548: checking for dlfcn.h
-configure:16548: result: yes
-configure:16557: checking for dirent.h that defines DIR
-configure:16576: g++ -c -g -O2 conftest.cpp >&5
-configure:16576: $? = 0
-configure:16584: result: yes
-configure:16597: checking for library containing opendir
-configure:16628: g++ -o conftest -g -O2 conftest.cpp >&5
-configure:16628: $? = 0
-configure:16645: result: none required
-configure:16715: checking which header file defines FD_ macros
-conftest.cpp:41:10: fatal error: winsock2.h: No such file or directory
- #include <winsock2.h>
- ^~~~~~~~~~~~
-compilation terminated.
-configure:16778: result: <sys/select.h>
-configure:16840: checking for socket in -lsocket
-configure:16865: g++ -o conftest -g -O2 conftest.cpp -lsocket >&5
-/usr/bin/ld: cannot find -lsocket
-collect2: error: ld returned 1 exit status
-configure:16865: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define VERSIONSTR "0.6-pre56"
-| #define VERSIONHI 0
-| #define VERSIONLO 6-pre56
-| #define VERSIONP
-| #define STATISTIC no
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| #define YYTEXT_POINTER 1
-| #define HAVE_FLEX 1
-| #define STDC_HEADERS 1
-| #define HAVE_ENDIAN_H 1
-| #define HAVE_GETOPT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_TERMIOS_H 1
-| #define HAVE_CURSES_H 1
-| #define HAVE_SYS_SOCKET_H 1
-| #define SOCKET_AVAIL 1
-| #define UCSOCKET_T int
-| #define SOCKLEN_T uint
-| #define HEADER_SOCKET <sys/socket.h>
-| #define HAVE_DIRENT_H 1
-| #define FD_NEED_TIME_H 0
-| #define FD_NEED_TYPES_H 0
-| #define FD_NEED_SELECT_H 1
-| #define FD_NEED_WINSOCK2_H 0
-| #define FD_HEADER_OK 1
-| #define HEADER_FD <sys/select.h>
-| /* end confdefs.h. */
-|
-| /* Override any GCC internal prototype to avoid an error.
-| Use char because int might match the return type of a GCC
-| builtin and then its argument prototype would still apply. */
-| #ifdef __cplusplus
-| extern "C"
-| #endif
-| char socket ();
-| int
-| main ()
-| {
-| return socket ();
-| ;
-| return 0;
-| }
-configure:16874: result: no
-configure:16885: checking for xdr_short in -lnsl
-configure:16910: g++ -o conftest -g -O2 conftest.cpp -lnsl >&5
-configure:16910: $? = 0
-configure:16919: result: yes
-configure:16930: checking for nanosleep in -lrt
-configure:16955: g++ -o conftest -g -O2 conftest.cpp -lrt -lnsl >&5
-configure:16955: $? = 0
-configure:16964: result: yes
-configure:16977: checking for dlopen in -ldl
-configure:17011: result: yes
-configure:17042: checking for panel_above in -lpanel
-configure:17067: g++ -o conftest -g -O2 conftest.cpp -lpanel -lrt -lnsl >&5
-configure:17067: $? = 0
-configure:17076: result: yes
-configure:17090: checking for nl in -lcurses
-configure:17115: g++ -o conftest -g -O2 conftest.cpp -lcurses -lrt -lnsl >&5
-configure:17115: $? = 0
-configure:17124: result: yes
-configure:17188: checking for vasprintf
-configure:17188: g++ -o conftest -g -O2 conftest.cpp -lrt -lnsl >&5
-configure:17188: $? = 0
-configure:17188: result: yes
-configure:17200: checking for strerror
-configure:17200: g++ -o conftest -g -O2 conftest.cpp -lrt -lnsl >&5
-configure:17200: $? = 0
-configure:17200: result: yes
-configure:17200: checking for strdup
-configure:17200: g++ -o conftest -g -O2 conftest.cpp -lrt -lnsl >&5
-conftest.cpp:73:6: warning: declaration of 'char strdup()' conflicts with built-in declaration 'char* strdup(const char*)' [-Wbuiltin-declaration-mismatch]
- char strdup ();
- ^~~~~~
-configure:17200: $? = 0
-configure:17200: result: yes
-configure:17211: checking for yylex
-configure:17211: g++ -o conftest -g -O2 conftest.cpp -lrt -lnsl >&5
-/tmp/ccu7HmMR.o: In function `main':
-/home/xavier/sdcc/sim/ucsim/conftest.cpp:85: undefined reference to `yylex'
-collect2: error: ld returned 1 exit status
-configure:17211: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define VERSIONSTR "0.6-pre56"
-| #define VERSIONHI 0
-| #define VERSIONLO 6-pre56
-| #define VERSIONP
-| #define STATISTIC no
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| #define YYTEXT_POINTER 1
-| #define HAVE_FLEX 1
-| #define STDC_HEADERS 1
-| #define HAVE_ENDIAN_H 1
-| #define HAVE_GETOPT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_TERMIOS_H 1
-| #define HAVE_CURSES_H 1
-| #define HAVE_SYS_SOCKET_H 1
-| #define SOCKET_AVAIL 1
-| #define UCSOCKET_T int
-| #define SOCKLEN_T uint
-| #define HEADER_SOCKET <sys/socket.h>
-| #define HAVE_DIRENT_H 1
-| #define FD_NEED_TIME_H 0
-| #define FD_NEED_TYPES_H 0
-| #define FD_NEED_SELECT_H 1
-| #define FD_NEED_WINSOCK2_H 0
-| #define FD_HEADER_OK 1
-| #define HEADER_FD <sys/select.h>
-| #define HAVE_LIBNSL 1
-| #define HAVE_LIBRT 1
-| #define HAVE_VASPRINTF 1
-| #define HAVE_STRERROR 1
-| #define HAVE_STRDUP 1
-| /* end confdefs.h. */
-| /* Define yylex to an innocuous variant, in case <limits.h> declares yylex.
-| For example, HP-UX 11i <limits.h> declares gettimeofday. */
-| #define yylex innocuous_yylex
-|
-| /* System header to define __stub macros and hopefully few prototypes,
-| which can conflict with char yylex (); below.
-| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
-| <limits.h> exists even on freestanding compilers. */
-|
-| #ifdef __STDC__
-| # include <limits.h>
-| #else
-| # include <assert.h>
-| #endif
-|
-| #undef yylex
-|
-| /* Override any GCC internal prototype to avoid an error.
-| Use char because int might match the return type of a GCC
-| builtin and then its argument prototype would still apply. */
-| #ifdef __cplusplus
-| extern "C"
-| #endif
-| char yylex ();
-| /* The GNU C library defines this for functions which it implements
-| to always fail with ENOSYS. Some functions are actually named
-| something starting with __ and the normal name is an alias. */
-| #if defined __stub_yylex || defined __stub___yylex
-| choke me
-| #endif
-|
-| int
-| main ()
-| {
-| return yylex ();
-| ;
-| return 0;
-| }
-configure:17211: result: no
-configure:17221: checking whether scanf knows %a
-configure:17250: g++ -o conftest -g -O2 conftest.cpp -lrt -lnsl >&5
-conftest.cpp:53:15: error: '::main' must return 'int'
- void main(void)
- ^
-conftest.cpp: In function 'int main()':
-conftest.cpp:59:5: error: 'exit' was not declared in this scope
- exit(1);
- ^~~~
-conftest.cpp:60:31: warning: format '%a' expects argument of type 'float*', but argument 3 has type 'char**' [-Wformat=]
- i= fscanf(f, " %a[a-z] ", &a);
- ~~^
-conftest.cpp:63:5: error: 'exit' was not declared in this scope
- exit(2);
- ^~~~
-conftest.cpp:65:5: error: 'exit' was not declared in this scope
- exit(0);
- ^~~~
-conftest.cpp:66:3: error: 'exit' was not declared in this scope
- exit(3);
- ^~~~
-configure:17250: $? = 1
-configure: program exited with status 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define VERSIONSTR "0.6-pre56"
-| #define VERSIONHI 0
-| #define VERSIONLO 6-pre56
-| #define VERSIONP
-| #define STATISTIC no
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| #define YYTEXT_POINTER 1
-| #define HAVE_FLEX 1
-| #define STDC_HEADERS 1
-| #define HAVE_ENDIAN_H 1
-| #define HAVE_GETOPT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_TERMIOS_H 1
-| #define HAVE_CURSES_H 1
-| #define HAVE_SYS_SOCKET_H 1
-| #define SOCKET_AVAIL 1
-| #define UCSOCKET_T int
-| #define SOCKLEN_T uint
-| #define HEADER_SOCKET <sys/socket.h>
-| #define HAVE_DIRENT_H 1
-| #define FD_NEED_TIME_H 0
-| #define FD_NEED_TYPES_H 0
-| #define FD_NEED_SELECT_H 1
-| #define FD_NEED_WINSOCK2_H 0
-| #define FD_HEADER_OK 1
-| #define HEADER_FD <sys/select.h>
-| #define HAVE_LIBNSL 1
-| #define HAVE_LIBRT 1
-| #define HAVE_VASPRINTF 1
-| #define HAVE_STRERROR 1
-| #define HAVE_STRDUP 1
-| /* end confdefs.h. */
-|
-| #include <stdio.h>
-| void main(void)
-| {
-| FILE *f;
-| char *a;
-| int i;
-| if ((f= fopen("conftest.data", "r")) == NULL)
-| exit(1);
-| i= fscanf(f, " %a[a-z] ", &a);
-| fclose(f);
-| if (i == 0)
-| exit(2);
-| if (i == 1)
-| exit(0);
-| exit(3);
-| }
-configure:17261: result: no
-configure:17269: checking whether getcwd is GNUish
-configure:17288: g++ -o conftest -g -O2 conftest.cpp -lrt -lnsl >&5
-conftest.cpp:53:15: error: '::main' must return 'int'
- void main(void)
- ^
-conftest.cpp: In function 'int main()':
-conftest.cpp:56:5: error: 'exit' was not declared in this scope
- exit(1);
- ^~~~
-conftest.cpp:56:5: note: suggested alternative: '_exit'
- exit(1);
- ^~~~
- _exit
-conftest.cpp:57:3: error: 'exit' was not declared in this scope
- exit(0);
- ^~~~
-conftest.cpp:57:3: note: suggested alternative: '_exit'
- exit(0);
- ^~~~
- _exit
-configure:17288: $? = 1
-configure: program exited with status 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define VERSIONSTR "0.6-pre56"
-| #define VERSIONHI 0
-| #define VERSIONLO 6-pre56
-| #define VERSIONP
-| #define STATISTIC no
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| #define YYTEXT_POINTER 1
-| #define HAVE_FLEX 1
-| #define STDC_HEADERS 1
-| #define HAVE_ENDIAN_H 1
-| #define HAVE_GETOPT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_TERMIOS_H 1
-| #define HAVE_CURSES_H 1
-| #define HAVE_SYS_SOCKET_H 1
-| #define SOCKET_AVAIL 1
-| #define UCSOCKET_T int
-| #define SOCKLEN_T uint
-| #define HEADER_SOCKET <sys/socket.h>
-| #define HAVE_DIRENT_H 1
-| #define FD_NEED_TIME_H 0
-| #define FD_NEED_TYPES_H 0
-| #define FD_NEED_SELECT_H 1
-| #define FD_NEED_WINSOCK2_H 0
-| #define FD_HEADER_OK 1
-| #define HEADER_FD <sys/select.h>
-| #define HAVE_LIBNSL 1
-| #define HAVE_LIBRT 1
-| #define HAVE_VASPRINTF 1
-| #define HAVE_STRERROR 1
-| #define HAVE_STRDUP 1
-| /* end confdefs.h. */
-|
-| #include <unistd.h>
-| void main(void)
-| {
-| if ((getcwd(NULL, 0)) == NULL)
-| exit(1);
-| exit(0);
-| }
-configure:17299: result: no
-configure:17310: checking for type of length pointer parameter of accept
-configure:17331: g++ -c -g -O2 -DACCEPT_SOCKLEN_T=int conftest.cpp >&5
-conftest.cpp: In function 'int main()':
-conftest.cpp:56:44: error: invalid conversion from 'int*' to 'socklen_t* {aka unsigned int*}' [-fpermissive]
- struct sockaddr a; int len; accept (0, &a, &len);
- ^~~~
-In file included from conftest.cpp:52:0:
-/usr/include/x86_64-linux-gnu/sys/socket.h:232:12: note: initializing argument 3 of 'int accept(int, sockaddr*, socklen_t*)'
- extern int accept (int __fd, __SOCKADDR_ARG __addr,
- ^~~~~~
-configure:17331: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define VERSIONSTR "0.6-pre56"
-| #define VERSIONHI 0
-| #define VERSIONLO 6-pre56
-| #define VERSIONP
-| #define STATISTIC no
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| #define YYTEXT_POINTER 1
-| #define HAVE_FLEX 1
-| #define STDC_HEADERS 1
-| #define HAVE_ENDIAN_H 1
-| #define HAVE_GETOPT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_TERMIOS_H 1
-| #define HAVE_CURSES_H 1
-| #define HAVE_SYS_SOCKET_H 1
-| #define SOCKET_AVAIL 1
-| #define UCSOCKET_T int
-| #define SOCKLEN_T uint
-| #define HEADER_SOCKET <sys/socket.h>
-| #define HAVE_DIRENT_H 1
-| #define FD_NEED_TIME_H 0
-| #define FD_NEED_TYPES_H 0
-| #define FD_NEED_SELECT_H 1
-| #define FD_NEED_WINSOCK2_H 0
-| #define FD_HEADER_OK 1
-| #define HEADER_FD <sys/select.h>
-| #define HAVE_LIBNSL 1
-| #define HAVE_LIBRT 1
-| #define HAVE_VASPRINTF 1
-| #define HAVE_STRERROR 1
-| #define HAVE_STRDUP 1
-| /* end confdefs.h. */
-| #include <sys/types.h>
-| #include <sys/socket.h>
-| int
-| main ()
-| {
-| struct sockaddr a; int len; accept (0, &a, &len);
-| ;
-| return 0;
-| }
-configure:17331: g++ -c -g -O2 -DACCEPT_SOCKLEN_T=size_t conftest.cpp >&5
-conftest.cpp: In function 'int main()':
-conftest.cpp:56:51: error: cannot convert 'size_t* {aka long unsigned int*}' to 'socklen_t* {aka unsigned int*}' for argument '3' to 'int accept(int, sockaddr*, socklen_t*)'
- struct sockaddr a; size_t len; accept (0, &a, &len);
- ^
-configure:17331: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define VERSIONSTR "0.6-pre56"
-| #define VERSIONHI 0
-| #define VERSIONLO 6-pre56
-| #define VERSIONP
-| #define STATISTIC no
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| #define YYTEXT_POINTER 1
-| #define HAVE_FLEX 1
-| #define STDC_HEADERS 1
-| #define HAVE_ENDIAN_H 1
-| #define HAVE_GETOPT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_TERMIOS_H 1
-| #define HAVE_CURSES_H 1
-| #define HAVE_SYS_SOCKET_H 1
-| #define SOCKET_AVAIL 1
-| #define UCSOCKET_T int
-| #define SOCKLEN_T uint
-| #define HEADER_SOCKET <sys/socket.h>
-| #define HAVE_DIRENT_H 1
-| #define FD_NEED_TIME_H 0
-| #define FD_NEED_TYPES_H 0
-| #define FD_NEED_SELECT_H 1
-| #define FD_NEED_WINSOCK2_H 0
-| #define FD_HEADER_OK 1
-| #define HEADER_FD <sys/select.h>
-| #define HAVE_LIBNSL 1
-| #define HAVE_LIBRT 1
-| #define HAVE_VASPRINTF 1
-| #define HAVE_STRERROR 1
-| #define HAVE_STRDUP 1
-| /* end confdefs.h. */
-| #include <sys/types.h>
-| #include <sys/socket.h>
-| int
-| main ()
-| {
-| struct sockaddr a; size_t len; accept (0, &a, &len);
-| ;
-| return 0;
-| }
-configure:17331: g++ -c -g -O2 -DACCEPT_SOCKLEN_T=socklen_t conftest.cpp >&5
-configure:17331: $? = 0
-configure:17338: result: socklen_t
-configure:17380: checking whether byte ordering is bigendian
-configure:17395: g++ -c -g -O2 conftest.cpp >&5
-conftest.cpp:53:9: error: expected unqualified-id before 'not' token
- not a universal capable compiler
- ^~~
-configure:17395: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define VERSIONSTR "0.6-pre56"
-| #define VERSIONHI 0
-| #define VERSIONLO 6-pre56
-| #define VERSIONP
-| #define STATISTIC no
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| #define YYTEXT_POINTER 1
-| #define HAVE_FLEX 1
-| #define STDC_HEADERS 1
-| #define HAVE_ENDIAN_H 1
-| #define HAVE_GETOPT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_TERMIOS_H 1
-| #define HAVE_CURSES_H 1
-| #define HAVE_SYS_SOCKET_H 1
-| #define SOCKET_AVAIL 1
-| #define UCSOCKET_T int
-| #define SOCKLEN_T uint
-| #define HEADER_SOCKET <sys/socket.h>
-| #define HAVE_DIRENT_H 1
-| #define FD_NEED_TIME_H 0
-| #define FD_NEED_TYPES_H 0
-| #define FD_NEED_SELECT_H 1
-| #define FD_NEED_WINSOCK2_H 0
-| #define FD_HEADER_OK 1
-| #define HEADER_FD <sys/select.h>
-| #define HAVE_LIBNSL 1
-| #define HAVE_LIBRT 1
-| #define HAVE_VASPRINTF 1
-| #define HAVE_STRERROR 1
-| #define HAVE_STRDUP 1
-| #define ACCEPT_SOCKLEN_T socklen_t
-| /* end confdefs.h. */
-| #ifndef __APPLE_CC__
-| not a universal capable compiler
-| #endif
-| typedef int dummy;
-|
-configure:17440: g++ -c -g -O2 conftest.cpp >&5
-configure:17440: $? = 0
-configure:17458: g++ -c -g -O2 conftest.cpp >&5
-conftest.cpp: In function 'int main()':
-conftest.cpp:59:8: error: 'big' was not declared in this scope
- not big endian
- ^~~
-configure:17458: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define VERSIONSTR "0.6-pre56"
-| #define VERSIONHI 0
-| #define VERSIONLO 6-pre56
-| #define VERSIONP
-| #define STATISTIC no
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| #define YYTEXT_POINTER 1
-| #define HAVE_FLEX 1
-| #define STDC_HEADERS 1
-| #define HAVE_ENDIAN_H 1
-| #define HAVE_GETOPT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_TERMIOS_H 1
-| #define HAVE_CURSES_H 1
-| #define HAVE_SYS_SOCKET_H 1
-| #define SOCKET_AVAIL 1
-| #define UCSOCKET_T int
-| #define SOCKLEN_T uint
-| #define HEADER_SOCKET <sys/socket.h>
-| #define HAVE_DIRENT_H 1
-| #define FD_NEED_TIME_H 0
-| #define FD_NEED_TYPES_H 0
-| #define FD_NEED_SELECT_H 1
-| #define FD_NEED_WINSOCK2_H 0
-| #define FD_HEADER_OK 1
-| #define HEADER_FD <sys/select.h>
-| #define HAVE_LIBNSL 1
-| #define HAVE_LIBRT 1
-| #define HAVE_VASPRINTF 1
-| #define HAVE_STRERROR 1
-| #define HAVE_STRDUP 1
-| #define ACCEPT_SOCKLEN_T socklen_t
-| /* end confdefs.h. */
-| #include <sys/types.h>
-| #include <sys/param.h>
-|
-| int
-| main ()
-| {
-| #if BYTE_ORDER != BIG_ENDIAN
-| not big endian
-| #endif
-|
-| ;
-| return 0;
-| }
-configure:17586: result: no
-configure:17609: checking whether preprocessor accepts -MM or -M
-Using built-in specs.
-COLLECT_GCC=g++
-OFFLOAD_TARGET_NAMES=nvptx-none
-OFFLOAD_TARGET_DEFAULT=1
-Target: x86_64-linux-gnu
-Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.4.0-1ubuntu1~18.04.1' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
-Thread model: posix
-gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1)
-COLLECT_GCC_OPTIONS='-E' '-v' '-MM' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
- /usr/lib/gcc/x86_64-linux-gnu/7/cc1plus -E -quiet -v -imultiarch x86_64-linux-gnu -MM -D_GNU_SOURCE _test_.c -mtune=generic -march=x86-64 -fstack-protector-strong -Wformat -Wformat-security
-ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/7"
-ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"
-ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/7/../../../../x86_64-linux-gnu/include"
-#include "..." search starts here:
-#include <...> search starts here:
- /usr/include/c++/7
- /usr/include/x86_64-linux-gnu/c++/7
- /usr/include/c++/7/backward
- /usr/lib/gcc/x86_64-linux-gnu/7/include
- /usr/local/include
- /usr/lib/gcc/x86_64-linux-gnu/7/include-fixed
- /usr/include/x86_64-linux-gnu
- /usr/include
-End of search list.
-_test_.o: _test_.c
-COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/
-LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/
-COLLECT_GCC_OPTIONS='-E' '-v' '-MM' '-shared-libgcc' '-mtune=generic' '-march=x86-64'
-configure:17624: result: -MM
-configure:17632: checking whether C++ accepts -ggdb
-configure:17652: g++ -c -ggdb conftest.cpp >&5
-configure:17652: $? = 0
-configure:17661: result: yes
-configure:17668: checking whether C++ accepts -gstabs
-configure:17688: g++ -c -gstabs conftest.cpp >&5
-configure:17688: $? = 0
-configure:17697: result: yes
-configure:17717: checking whether C++ accepts -pipe
-configure:17737: g++ -c -pipe conftest.cpp >&5
-configure:17737: $? = 0
-configure:17746: result: yes
-configure:17813: checking return type of signal handlers
-configure:17831: g++ -c -g -O2 -g conftest.cpp >&5
-conftest.cpp: In function 'int main()':
-conftest.cpp:58:25: error: void value not ignored as it ought to be
- return *(signal (0, 0)) (0) == 1;
- ~~~~~~~~~~~~~~~~^~~
-configure:17831: $? = 1
-configure: failed program was:
-| /* confdefs.h */
-| #define PACKAGE_NAME ""
-| #define PACKAGE_TARNAME ""
-| #define PACKAGE_VERSION ""
-| #define PACKAGE_STRING ""
-| #define PACKAGE_BUGREPORT ""
-| #define PACKAGE_URL ""
-| #define VERSIONSTR "0.6-pre56"
-| #define VERSIONHI 0
-| #define VERSIONLO 6-pre56
-| #define VERSIONP
-| #define STATISTIC no
-| #define STDC_HEADERS 1
-| #define HAVE_SYS_TYPES_H 1
-| #define HAVE_SYS_STAT_H 1
-| #define HAVE_STDLIB_H 1
-| #define HAVE_STRING_H 1
-| #define HAVE_MEMORY_H 1
-| #define HAVE_STRINGS_H 1
-| #define HAVE_INTTYPES_H 1
-| #define HAVE_STDINT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_DLFCN_H 1
-| #define LT_OBJDIR ".libs/"
-| #define YYTEXT_POINTER 1
-| #define HAVE_FLEX 1
-| #define STDC_HEADERS 1
-| #define HAVE_ENDIAN_H 1
-| #define HAVE_GETOPT_H 1
-| #define HAVE_UNISTD_H 1
-| #define HAVE_TERMIOS_H 1
-| #define HAVE_CURSES_H 1
-| #define HAVE_SYS_SOCKET_H 1
-| #define SOCKET_AVAIL 1
-| #define UCSOCKET_T int
-| #define SOCKLEN_T uint
-| #define HEADER_SOCKET <sys/socket.h>
-| #define HAVE_DIRENT_H 1
-| #define FD_NEED_TIME_H 0
-| #define FD_NEED_TYPES_H 0
-| #define FD_NEED_SELECT_H 1
-| #define FD_NEED_WINSOCK2_H 0
-| #define FD_HEADER_OK 1
-| #define HEADER_FD <sys/select.h>
-| #define HAVE_LIBNSL 1
-| #define HAVE_LIBRT 1
-| #define HAVE_VASPRINTF 1
-| #define HAVE_STRERROR 1
-| #define HAVE_STRDUP 1
-| #define ACCEPT_SOCKLEN_T socklen_t
-| /* end confdefs.h. */
-| #include <sys/types.h>
-| #include <signal.h>
-|
-| int
-| main ()
-| {
-| return *(signal (0, 0)) (0) == 1;
-| ;
-| return 0;
-| }
-configure:17838: result: void
-configure:17851: checking size of char
-configure:17856: g++ -o conftest -g -O2 -g conftest.cpp -lrt -lnsl >&5
-configure:17856: $? = 0
-configure:17856: ./conftest
-configure:17856: $? = 0
-configure:17870: result: 1
-configure:17884: checking size of short
-configure:17889: g++ -o conftest -g -O2 -g conftest.cpp -lrt -lnsl >&5
-configure:17889: $? = 0
-configure:17889: ./conftest
-configure:17889: $? = 0
-configure:17903: result: 2
-configure:17917: checking size of int
-configure:17922: g++ -o conftest -g -O2 -g conftest.cpp -lrt -lnsl >&5
-configure:17922: $? = 0
-configure:17922: ./conftest
-configure:17922: $? = 0
-configure:17936: result: 4
-configure:17950: checking size of long
-configure:17955: g++ -o conftest -g -O2 -g conftest.cpp -lrt -lnsl >&5
-configure:17955: $? = 0
-configure:17955: ./conftest
-configure:17955: $? = 0
-configure:17969: result: 8
-configure:17983: checking size of long long
-configure:17988: g++ -o conftest -g -O2 -g conftest.cpp -lrt -lnsl >&5
-configure:17988: $? = 0
-configure:17988: ./conftest
-configure:17988: $? = 0
-configure:18002: result: 8
-configure:18075: checking type name for byte
-configure:18078: result: char
-configure:18080: checking specifier for byte
-configure:18083: result: ""
-configure:18085: checking type name for word
-configure:18088: result: short
-configure:18090: checking specifier for word
-configure:18093: result: "h"
-configure:18095: checking type name for dword
-configure:18098: result: int
-configure:18100: checking specifier for dword
-configure:18103: result: ""
-configure:18105: checking type name for qword
-configure:18108: result: long
-configure:18110: checking specifier for qword
-configure:18113: result: "l"
-configure:18307: creating ./config.status
-
-## ---------------------- ##
-## Running config.status. ##
-## ---------------------- ##
-
-This file was extended by config.status, which was
-generated by GNU Autoconf 2.69. Invocation command line was
-
- CONFIG_FILES =
- CONFIG_HEADERS =
- CONFIG_LINKS =
- CONFIG_COMMANDS =
- $ ./config.status
-
-on xavier-asus
-
-config.status:1208: creating Makefile
-config.status:1208: creating main.mk
-config.status:1208: creating packages.mk
-config.status:1208: creating sim.src/Makefile
-config.status:1208: creating cmd.src/Makefile
-config.status:1208: creating s51.src/Makefile
-config.status:1208: creating avr.src/Makefile
-config.status:1208: creating z80.src/Makefile
-config.status:1208: creating tlcs.src/Makefile
-config.status:1208: creating hc08.src/Makefile
-config.status:1208: creating xa.src/Makefile
-config.status:1208: creating stm8.src/Makefile
-config.status:1208: creating pdk.src/Makefile
-config.status:1208: creating st7.src/Makefile
-config.status:1208: creating gui.src/Makefile
-config.status:1208: creating gui.src/serio.src/Makefile
-config.status:1208: creating doc/Makefile
-config.status:1208: creating ddconfig.h
-config.status:1383: ddconfig.h is unchanged
-config.status:1397: executing libtool commands
-
-## ---------------- ##
-## Cache variables. ##
-## ---------------- ##
-
-ac_cv_build=x86_64-pc-linux-gnu
-ac_cv_c_bigendian=no
-ac_cv_c_compiler_gnu=yes
-ac_cv_cxx_compiler_gnu=yes
-ac_cv_env_CCC_set=
-ac_cv_env_CCC_value=
-ac_cv_env_CC_set=
-ac_cv_env_CC_value=
-ac_cv_env_CFLAGS_set=
-ac_cv_env_CFLAGS_value=
-ac_cv_env_CPPFLAGS_set=
-ac_cv_env_CPPFLAGS_value=
-ac_cv_env_CPP_set=
-ac_cv_env_CPP_value=
-ac_cv_env_CXXCPP_set=
-ac_cv_env_CXXCPP_value=
-ac_cv_env_CXXFLAGS_set=
-ac_cv_env_CXXFLAGS_value=
-ac_cv_env_CXX_set=
-ac_cv_env_CXX_value=
-ac_cv_env_LDFLAGS_set=
-ac_cv_env_LDFLAGS_value=
-ac_cv_env_LIBS_set=
-ac_cv_env_LIBS_value=
-ac_cv_env_LT_SYS_LIBRARY_PATH_set=
-ac_cv_env_LT_SYS_LIBRARY_PATH_value=
-ac_cv_env_YACC_set=
-ac_cv_env_YACC_value=
-ac_cv_env_YFLAGS_set=
-ac_cv_env_YFLAGS_value=
-ac_cv_env_build_alias_set=
-ac_cv_env_build_alias_value=
-ac_cv_env_docdir_set=set
-ac_cv_env_docdir_value='${datarootdir}/doc/${PACKAGE}'
-ac_cv_env_host_alias_set=
-ac_cv_env_host_alias_value=
-ac_cv_env_target_alias_set=
-ac_cv_env_target_alias_value=
-ac_cv_func_dlopen=no
-ac_cv_func_shl_load=no
-ac_cv_func_strdup=yes
-ac_cv_func_strerror=yes
-ac_cv_func_vasprintf=yes
-ac_cv_func_yylex=no
-ac_cv_header_curses_h=yes
-ac_cv_header_dirent_dirent_h=yes
-ac_cv_header_dlfcn_h=yes
-ac_cv_header_endian_h=yes
-ac_cv_header_getopt_h=yes
-ac_cv_header_inttypes_h=yes
-ac_cv_header_machine_endian_h=no
-ac_cv_header_memory_h=yes
-ac_cv_header_stdc=yes
-ac_cv_header_stdint_h=yes
-ac_cv_header_stdlib_h=yes
-ac_cv_header_string_h=yes
-ac_cv_header_strings_h=yes
-ac_cv_header_sys_endian_h=no
-ac_cv_header_sys_isa_defs_h=no
-ac_cv_header_sys_socket_h=yes
-ac_cv_header_sys_stat_h=yes
-ac_cv_header_sys_types_h=yes
-ac_cv_header_termios_h=yes
-ac_cv_header_unistd_h=yes
-ac_cv_host=x86_64-pc-linux-gnu
-ac_cv_lib_curses_nl=yes
-ac_cv_lib_dl_dlopen=yes
-ac_cv_lib_dld_shl_load=no
-ac_cv_lib_lex=-lfl
-ac_cv_lib_nsl_xdr_short=yes
-ac_cv_lib_panel_panel_above=yes
-ac_cv_lib_rt_nanosleep=yes
-ac_cv_lib_socket_socket=no
-ac_cv_objext=o
-ac_cv_path_EGREP='/bin/grep -E'
-ac_cv_path_FGREP='/bin/grep -F'
-ac_cv_path_GREP=/bin/grep
-ac_cv_path_SED=/bin/sed
-ac_cv_path_install='/usr/bin/install -c'
-ac_cv_path_lt_DD=/bin/dd
-ac_cv_prog_AWK=gawk
-ac_cv_prog_CPP='gcc -E'
-ac_cv_prog_CXXCPP='g++ -E'
-ac_cv_prog_LEX=flex
-ac_cv_prog_YACC='bison -y'
-ac_cv_prog_ac_ct_AR=ar
-ac_cv_prog_ac_ct_CC=gcc
-ac_cv_prog_ac_ct_CXX=g++
-ac_cv_prog_ac_ct_MANIFEST_TOOL=mt
-ac_cv_prog_ac_ct_OBJDUMP=objdump
-ac_cv_prog_ac_ct_RANLIB=ranlib
-ac_cv_prog_ac_ct_STRIP=strip
-ac_cv_prog_cc_c89=
-ac_cv_prog_cc_g=yes
-ac_cv_prog_cxx_g=yes
-ac_cv_prog_lex_root=lex.yy
-ac_cv_prog_lex_yytext_pointer=yes
-ac_cv_search_opendir='none required'
-ac_cv_sizeof_char=1
-ac_cv_sizeof_int=4
-ac_cv_sizeof_long=8
-ac_cv_sizeof_long_long=8
-ac_cv_sizeof_short=2
-ac_cv_type_signal=void
-lt_cv_ar_at_file=@
-lt_cv_archive_cmds_need_lc=no
-lt_cv_deplibs_check_method=pass_all
-lt_cv_dlopen=dlopen
-lt_cv_dlopen_libs=-ldl
-lt_cv_dlopen_self=yes
-lt_cv_dlopen_self_static=no
-lt_cv_file_magic_cmd='$MAGIC_CMD'
-lt_cv_file_magic_test_file=
-lt_cv_ld_reload_flag=-r
-lt_cv_nm_interface='BSD nm'
-lt_cv_objdir=.libs
-lt_cv_path_LD=/usr/bin/ld
-lt_cv_path_LDCXX='/usr/bin/ld -m elf_x86_64'
-lt_cv_path_NM='/usr/bin/nm -B'
-lt_cv_path_mainfest_tool=no
-lt_cv_prog_compiler_c_o=yes
-lt_cv_prog_compiler_c_o_CXX=yes
-lt_cv_prog_compiler_pic='-fPIC -DPIC'
-lt_cv_prog_compiler_pic_CXX='-fPIC -DPIC'
-lt_cv_prog_compiler_pic_works=yes
-lt_cv_prog_compiler_pic_works_CXX=yes
-lt_cv_prog_compiler_rtti_exceptions=no
-lt_cv_prog_compiler_static_works=yes
-lt_cv_prog_compiler_static_works_CXX=yes
-lt_cv_prog_gnu_ld=yes
-lt_cv_prog_gnu_ldcxx=yes
-lt_cv_sharedlib_from_linklib_cmd='printf %s\n'
-lt_cv_shlibpath_overrides_runpath=yes
-lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\'''
-lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"\1", (void *) \&\1},/p'\'''
-lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/ {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"lib\1", (void *) \&\1},/p'\'''
-lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''
-lt_cv_sys_global_symbol_to_import=
-lt_cv_sys_max_cmd_len=1572864
-lt_cv_to_host_file_cmd=func_convert_file_noop
-lt_cv_to_tool_file_cmd=func_convert_file_noop
-lt_cv_truncate_bin='/bin/dd bs=4096 count=1'
-sdcc_cv_cxx_ggdb=yes
-sdcc_cv_cxx_gstabs=yes
-sdcc_cv_cxx_pipe=yes
-ucsim_cv_MM=-MM
-ucsim_cv_accept_length_type=socklen_t
-ucsim_cv_fd='<sys/select.h>'
-ucsim_cv_getcwd=no
-ucsim_cv_header_ok=1
-ucsim_cv_scanf_a=no
-ucsim_cv_socket='<sys/socket.h>'
-
-## ----------------- ##
-## Output variables. ##
-## ----------------- ##
-
-AR='ar'
-AWK='gawk'
-CC='gcc'
-CFLAGS='-g -O2'
-CPP='gcc -E'
-CPPFLAGS=''
-CURSES_LIBS='-lpanel -lcurses'
-CXX='g++'
-CXXCPP='g++ -E'
-CXXFLAGS='-g -O2 -g'
-DEFS='-DHAVE_CONFIG_H'
-DL='-ldl'
-DLLTOOL='false'
-DSYMUTIL=''
-DUMPBIN=''
-ECHO_C=''
-ECHO_N='-n'
-ECHO_T=''
-EGREP='/bin/grep -E'
-EXEEXT=''
-FGREP='/bin/grep -F'
-GREP='/bin/grep'
-INSTALL_DATA='${INSTALL} -m 644'
-INSTALL_PROGRAM='${INSTALL}'
-INSTALL_SCRIPT='${INSTALL}'
-LD='/usr/bin/ld -m elf_x86_64'
-LDFLAGS=''
-LEX='flex'
-LEXLIB='-lfl'
-LEX_OUTPUT_ROOT='lex.yy'
-LIBOBJS=''
-LIBS='-lrt -lnsl '
-LIBTOOL='$(SHELL) $(top_builddir)/libtool'
-LIBTOOL_DEPS='./ltmain.sh'
-LIPO=''
-LN_S='ln -s'
-LTLIBOBJS=''
-LT_SYS_LIBRARY_PATH=''
-MAKEDEP='g++ -MM'
-MANIFEST_TOOL=':'
-NM='/usr/bin/nm -B'
-NMEDIT=''
-OBJDUMP='objdump'
-OBJEXT='o'
-OTOOL64=''
-OTOOL=''
-PACKAGE_BUGREPORT=''
-PACKAGE_NAME=''
-PACKAGE_STRING=''
-PACKAGE_TARNAME=''
-PACKAGE_URL=''
-PACKAGE_VERSION=''
-PATH_SEPARATOR=':'
-PICOPT=' -fPIC -DPIC'
-RANLIB='ranlib'
-SED='/bin/sed'
-SHAREDLIB='yes'
-SHELL='/bin/bash'
-SREC_CAT=''
-STRIP='strip'
-VERSION='0.6-pre56'
-VERSIONHI='0'
-VERSIONLO='6-pre56'
-VERSIONP=''
-WALL_FLAG='-Wall'
-WINSOCK_AVAIL='0'
-YACC='bison -y'
-YFLAGS=''
-ac_ct_AR='ar'
-ac_ct_CC='gcc'
-ac_ct_CXX='g++'
-ac_ct_DUMPBIN=''
-bindir='${exec_prefix}/bin'
-build='x86_64-pc-linux-gnu'
-build_alias=''
-build_cpu='x86_64'
-build_os='linux-gnu'
-build_vendor='pc'
-curses_ok='yes'
-datadir='${datarootdir}'
-datarootdir='${prefix}/share'
-dl_ok='yes'
-dlso_ok='no'
-docdir='${datarootdir}/doc/${PACKAGE}'
-dvidir='${docdir}'
-enable_avr_port='no'
-enable_dlso='no'
-enable_ds390_port='yes'
-enable_gbz80_port='yes'
-enable_hc08_port='yes'
-enable_mcs51_port='yes'
-enable_pdk_port='yes'
-enable_r2k_port='yes'
-enable_r3ka_port='yes'
-enable_s08_port='yes'
-enable_serio='no'
-enable_st7_port='no'
-enable_stm8_port='yes'
-enable_tlcs_port='yes'
-enable_ucsim='no'
-enable_xa_port='no'
-enable_z180_port='yes'
-enable_z80_port='yes'
-exec_prefix='${prefix}'
-host='x86_64-pc-linux-gnu'
-host_alias=''
-host_cpu='x86_64'
-host_os='linux-gnu'
-host_vendor='pc'
-htmldir='${docdir}'
-includedir='${prefix}/include'
-infodir='${datarootdir}/info'
-libdir='${exec_prefix}/lib'
-libexecdir='${exec_prefix}/libexec'
-localedir='${datarootdir}/locale'
-localstatedir='${prefix}/var'
-mandir='${datarootdir}/man'
-oldincludedir='/usr/include'
-panel_ok='yes'
-pdfdir='${docdir}'
-prefix='/usr/local'
-program_transform_name='s,x,x,'
-psdir='${docdir}'
-runstatedir='${localstatedir}/run'
-sbindir='${exec_prefix}/sbin'
-sharedstatedir='${prefix}/com'
-sysconfdir='${prefix}/etc'
-target_alias=''
-
-## ----------- ##
-## confdefs.h. ##
-## ----------- ##
-
-/* confdefs.h */
-#define PACKAGE_NAME ""
-#define PACKAGE_TARNAME ""
-#define PACKAGE_VERSION ""
-#define PACKAGE_STRING ""
-#define PACKAGE_BUGREPORT ""
-#define PACKAGE_URL ""
-#define VERSIONSTR "0.6-pre56"
-#define VERSIONHI 0
-#define VERSIONLO 6-pre56
-#define VERSIONP
-#define STATISTIC no
-#define STDC_HEADERS 1
-#define HAVE_SYS_TYPES_H 1
-#define HAVE_SYS_STAT_H 1
-#define HAVE_STDLIB_H 1
-#define HAVE_STRING_H 1
-#define HAVE_MEMORY_H 1
-#define HAVE_STRINGS_H 1
-#define HAVE_INTTYPES_H 1
-#define HAVE_STDINT_H 1
-#define HAVE_UNISTD_H 1
-#define HAVE_DLFCN_H 1
-#define LT_OBJDIR ".libs/"
-#define YYTEXT_POINTER 1
-#define HAVE_FLEX 1
-#define STDC_HEADERS 1
-#define HAVE_ENDIAN_H 1
-#define HAVE_GETOPT_H 1
-#define HAVE_UNISTD_H 1
-#define HAVE_TERMIOS_H 1
-#define HAVE_CURSES_H 1
-#define HAVE_SYS_SOCKET_H 1
-#define SOCKET_AVAIL 1
-#define UCSOCKET_T int
-#define SOCKLEN_T uint
-#define HEADER_SOCKET <sys/socket.h>
-#define HAVE_DIRENT_H 1
-#define FD_NEED_TIME_H 0
-#define FD_NEED_TYPES_H 0
-#define FD_NEED_SELECT_H 1
-#define FD_NEED_WINSOCK2_H 0
-#define FD_HEADER_OK 1
-#define HEADER_FD <sys/select.h>
-#define HAVE_LIBNSL 1
-#define HAVE_LIBRT 1
-#define HAVE_VASPRINTF 1
-#define HAVE_STRERROR 1
-#define HAVE_STRDUP 1
-#define ACCEPT_SOCKLEN_T socklen_t
-#define RETSIGTYPE void
-#define SIZEOF_CHAR 1
-#define SIZEOF_SHORT 2
-#define SIZEOF_INT 4
-#define SIZEOF_LONG 8
-#define SIZEOF_LONG_LONG 8
-#define TYPE_BYTE char
-#define SPEC_BYTE ""
-#define TYPE_WORD short
-#define SPEC_WORD "h"
-#define TYPE_DWORD int
-#define SPEC_DWORD ""
-#define TYPE_QWORD long
-#define SPEC_QWORD "l"
-#define _A_ ""
-#define _M_ "h"
-
-configure: exit 0
diff --git a/sim/ucsim/config.status b/sim/ucsim/config.status
deleted file mode 100755
index d9c8ff1..0000000
--- a/sim/ucsim/config.status
+++ /dev/null
@@ -1,2118 +0,0 @@
-#! /bin/bash
-# Generated by configure.
-# Run this file to recreate the current configuration.
-# Compiler output produced by configure, useful for debugging
-# configure, is in config.log if it exists.
-
-debug=false
-ac_cs_recheck=false
-ac_cs_silent=false
-
-SHELL=${CONFIG_SHELL-/bin/bash}
-export SHELL
-## -------------------- ##
-## M4sh Initialization. ##
-## -------------------- ##
-
-# Be more Bourne compatible
-DUALCASE=1; export DUALCASE # for MKS sh
-if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
- emulate sh
- NULLCMD=:
- # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
- # is contrary to our usage. Disable this feature.
- alias -g '${1+"$@"}'='"$@"'
- setopt NO_GLOB_SUBST
-else
- case `(set -o) 2>/dev/null` in #(
- *posix*) :
- set -o posix ;; #(
- *) :
- ;;
-esac
-fi
-
-
-as_nl='
-'
-export as_nl
-# Printing a long string crashes Solaris 7 /usr/bin/printf.
-as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
-as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
-as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
-# Prefer a ksh shell builtin over an external printf program on Solaris,
-# but without wasting forks for bash or zsh.
-if test -z "$BASH_VERSION$ZSH_VERSION" \
- && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
- as_echo='print -r --'
- as_echo_n='print -rn --'
-elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
- as_echo='printf %s\n'
- as_echo_n='printf %s'
-else
- if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
- as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
- as_echo_n='/usr/ucb/echo -n'
- else
- as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
- as_echo_n_body='eval
- arg=$1;
- case $arg in #(
- *"$as_nl"*)
- expr "X$arg" : "X\\(.*\\)$as_nl";
- arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
- esac;
- expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
- '
- export as_echo_n_body
- as_echo_n='sh -c $as_echo_n_body as_echo'
- fi
- export as_echo_body
- as_echo='sh -c $as_echo_body as_echo'
-fi
-
-# The user is always right.
-if test "${PATH_SEPARATOR+set}" != set; then
- PATH_SEPARATOR=:
- (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
- (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
- PATH_SEPARATOR=';'
- }
-fi
-
-
-# IFS
-# We need space, tab and new line, in precisely that order. Quoting is
-# there to prevent editors from complaining about space-tab.
-# (If _AS_PATH_WALK were called with IFS unset, it would disable word
-# splitting by setting IFS to empty value.)
-IFS=" "" $as_nl"
-
-# Find who we are. Look in the path if we contain no directory separator.
-as_myself=
-case $0 in #((
- *[\\/]* ) as_myself=$0 ;;
- *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-for as_dir in $PATH
-do
- IFS=$as_save_IFS
- test -z "$as_dir" && as_dir=.
- test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break
- done
-IFS=$as_save_IFS
-
- ;;
-esac
-# We did not find ourselves, most probably we were run as `sh COMMAND'
-# in which case we are not to be found in the path.
-if test "x$as_myself" = x; then
- as_myself=$0
-fi
-if test ! -f "$as_myself"; then
- $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
- exit 1
-fi
-
-# Unset variables that we do not need and which cause bugs (e.g. in
-# pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1"
-# suppresses any "Segmentation fault" message there. '((' could
-# trigger a bug in pdksh 5.2.14.
-for as_var in BASH_ENV ENV MAIL MAILPATH
-do eval test x\${$as_var+set} = xset \
- && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || :
-done
-PS1='$ '
-PS2='> '
-PS4='+ '
-
-# NLS nuisances.
-LC_ALL=C
-export LC_ALL
-LANGUAGE=C
-export LANGUAGE
-
-# CDPATH.
-(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
-
-
-# as_fn_error STATUS ERROR [LINENO LOG_FD]
-# ----------------------------------------
-# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
-# script with STATUS, using 1 if that was 0.
-as_fn_error ()
-{
- as_status=$1; test $as_status -eq 0 && as_status=1
- if test "$4"; then
- as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
- $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4
- fi
- $as_echo "$as_me: error: $2" >&2
- as_fn_exit $as_status
-} # as_fn_error
-
-
-# as_fn_set_status STATUS
-# -----------------------
-# Set $? to STATUS, without forking.
-as_fn_set_status ()
-{
- return $1
-} # as_fn_set_status
-
-# as_fn_exit STATUS
-# -----------------
-# Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
-as_fn_exit ()
-{
- set +e
- as_fn_set_status $1
- exit $1
-} # as_fn_exit
-
-# as_fn_unset VAR
-# ---------------
-# Portably unset VAR.
-as_fn_unset ()
-{
- { eval $1=; unset $1;}
-}
-as_unset=as_fn_unset
-# as_fn_append VAR VALUE
-# ----------------------
-# Append the text in VALUE to the end of the definition contained in VAR. Take
-# advantage of any shell optimizations that allow amortized linear growth over
-# repeated appends, instead of the typical quadratic growth present in naive
-# implementations.
-if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then :
- eval 'as_fn_append ()
- {
- eval $1+=\$2
- }'
-else
- as_fn_append ()
- {
- eval $1=\$$1\$2
- }
-fi # as_fn_append
-
-# as_fn_arith ARG...
-# ------------------
-# Perform arithmetic evaluation on the ARGs, and store the result in the
-# global $as_val. Take advantage of shells that can avoid forks. The arguments
-# must be portable across $(()) and expr.
-if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then :
- eval 'as_fn_arith ()
- {
- as_val=$(( $* ))
- }'
-else
- as_fn_arith ()
- {
- as_val=`expr "$@" || test $? -eq 1`
- }
-fi # as_fn_arith
-
-
-if expr a : '\(a\)' >/dev/null 2>&1 &&
- test "X`expr 00001 : '.*\(...\)'`" = X001; then
- as_expr=expr
-else
- as_expr=false
-fi
-
-if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then
- as_basename=basename
-else
- as_basename=false
-fi
-
-if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then
- as_dirname=dirname
-else
- as_dirname=false
-fi
-
-as_me=`$as_basename -- "$0" ||
-$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
- X"$0" : 'X\(//\)$' \| \
- X"$0" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X/"$0" |
- sed '/^.*\/\([^/][^/]*\)\/*$/{
- s//\1/
- q
- }
- /^X\/\(\/\/\)$/{
- s//\1/
- q
- }
- /^X\/\(\/\).*/{
- s//\1/
- q
- }
- s/.*/./; q'`
-
-# Avoid depending upon Character Ranges.
-as_cr_letters='abcdefghijklmnopqrstuvwxyz'
-as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ'
-as_cr_Letters=$as_cr_letters$as_cr_LETTERS
-as_cr_digits='0123456789'
-as_cr_alnum=$as_cr_Letters$as_cr_digits
-
-ECHO_C= ECHO_N= ECHO_T=
-case `echo -n x` in #(((((
--n*)
- case `echo 'xy\c'` in
- *c*) ECHO_T=' ';; # ECHO_T is single tab character.
- xy) ECHO_C='\c';;
- *) echo `echo ksh88 bug on AIX 6.1` > /dev/null
- ECHO_T=' ';;
- esac;;
-*)
- ECHO_N='-n';;
-esac
-
-rm -f conf$$ conf$$.exe conf$$.file
-if test -d conf$$.dir; then
- rm -f conf$$.dir/conf$$.file
-else
- rm -f conf$$.dir
- mkdir conf$$.dir 2>/dev/null
-fi
-if (echo >conf$$.file) 2>/dev/null; then
- if ln -s conf$$.file conf$$ 2>/dev/null; then
- as_ln_s='ln -s'
- # ... but there are two gotchas:
- # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
- # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
- # In both cases, we have to default to `cp -pR'.
- ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
- as_ln_s='cp -pR'
- elif ln conf$$.file conf$$ 2>/dev/null; then
- as_ln_s=ln
- else
- as_ln_s='cp -pR'
- fi
-else
- as_ln_s='cp -pR'
-fi
-rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
-rmdir conf$$.dir 2>/dev/null
-
-
-# as_fn_mkdir_p
-# -------------
-# Create "$as_dir" as a directory, including parents if necessary.
-as_fn_mkdir_p ()
-{
-
- case $as_dir in #(
- -*) as_dir=./$as_dir;;
- esac
- test -d "$as_dir" || eval $as_mkdir_p || {
- as_dirs=
- while :; do
- case $as_dir in #(
- *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
- *) as_qdir=$as_dir;;
- esac
- as_dirs="'$as_qdir' $as_dirs"
- as_dir=`$as_dirname -- "$as_dir" ||
-$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$as_dir" : 'X\(//\)[^/]' \| \
- X"$as_dir" : 'X\(//\)$' \| \
- X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$as_dir" |
- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
- s//\1/
- q
- }
- /^X\(\/\/\)[^/].*/{
- s//\1/
- q
- }
- /^X\(\/\/\)$/{
- s//\1/
- q
- }
- /^X\(\/\).*/{
- s//\1/
- q
- }
- s/.*/./; q'`
- test -d "$as_dir" && break
- done
- test -z "$as_dirs" || eval "mkdir $as_dirs"
- } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir"
-
-
-} # as_fn_mkdir_p
-if mkdir -p . 2>/dev/null; then
- as_mkdir_p='mkdir -p "$as_dir"'
-else
- test -d ./-p && rmdir ./-p
- as_mkdir_p=false
-fi
-
-
-# as_fn_executable_p FILE
-# -----------------------
-# Test if FILE is an executable regular file.
-as_fn_executable_p ()
-{
- test -f "$1" && test -x "$1"
-} # as_fn_executable_p
-as_test_x='test -x'
-as_executable_p=as_fn_executable_p
-
-# Sed expression to map a string onto a valid CPP name.
-as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
-
-# Sed expression to map a string onto a valid variable name.
-as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'"
-
-
-exec 6>&1
-## ----------------------------------- ##
-## Main body of $CONFIG_STATUS script. ##
-## ----------------------------------- ##
-# Save the log message, to keep $0 and so on meaningful, and to
-# report actual input values of CONFIG_FILES etc. instead of their
-# values after options handling.
-ac_log="
-This file was extended by $as_me, which was
-generated by GNU Autoconf 2.69. Invocation command line was
-
- CONFIG_FILES = $CONFIG_FILES
- CONFIG_HEADERS = $CONFIG_HEADERS
- CONFIG_LINKS = $CONFIG_LINKS
- CONFIG_COMMANDS = $CONFIG_COMMANDS
- $ $0 $@
-
-on `(hostname || uname -n) 2>/dev/null | sed 1q`
-"
-
-# Files that config.status was made for.
-config_files=" Makefile main.mk:main_in.mk packages.mk:packages_in.mk sim.src/Makefile cmd.src/Makefile s51.src/Makefile avr.src/Makefile z80.src/Makefile tlcs.src/Makefile hc08.src/Makefile xa.src/Makefile stm8.src/Makefile pdk.src/Makefile st7.src/Makefile gui.src/Makefile gui.src/serio.src/Makefile doc/Makefile"
-config_headers=" ddconfig.h:ddconfig_in.h"
-config_commands=" libtool"
-
-ac_cs_usage="\
-\`$as_me' instantiates files and other configuration actions
-from templates according to the current configuration. Unless the files
-and actions are specified as TAGs, all are instantiated by default.
-
-Usage: $0 [OPTION]... [TAG]...
-
- -h, --help print this help, then exit
- -V, --version print version number and configuration settings, then exit
- --config print configuration, then exit
- -q, --quiet, --silent
- do not print progress messages
- -d, --debug don't remove temporary files
- --recheck update $as_me by reconfiguring in the same conditions
- --file=FILE[:TEMPLATE]
- instantiate the configuration file FILE
- --header=FILE[:TEMPLATE]
- instantiate the configuration header FILE
-
-Configuration files:
-$config_files
-
-Configuration headers:
-$config_headers
-
-Configuration commands:
-$config_commands
-
-Report bugs to the package provider."
-
-ac_cs_config="'--disable-option-checking' '--prefix=/usr/local' 'docdir=\${datarootdir}/doc/\${PACKAGE}' '--cache-file=/dev/null' '--srcdir=.'"
-ac_cs_version="\
-config.status
-configured by ./configure, generated by GNU Autoconf 2.69,
- with options \"$ac_cs_config\"
-
-Copyright (C) 2012 Free Software Foundation, Inc.
-This config.status script is free software; the Free Software Foundation
-gives unlimited permission to copy, distribute and modify it."
-
-ac_pwd='/home/xavier/sdcc/sim/ucsim'
-srcdir='.'
-INSTALL='/usr/bin/install -c'
-AWK='gawk'
-test -n "$AWK" || AWK=awk
-# The default lists apply if the user does not specify any file.
-ac_need_defaults=:
-while test $# != 0
-do
- case $1 in
- --*=?*)
- ac_option=`expr "X$1" : 'X\([^=]*\)='`
- ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
- ac_shift=:
- ;;
- --*=)
- ac_option=`expr "X$1" : 'X\([^=]*\)='`
- ac_optarg=
- ac_shift=:
- ;;
- *)
- ac_option=$1
- ac_optarg=$2
- ac_shift=shift
- ;;
- esac
-
- case $ac_option in
- # Handling of the options.
- -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
- ac_cs_recheck=: ;;
- --version | --versio | --versi | --vers | --ver | --ve | --v | -V )
- $as_echo "$ac_cs_version"; exit ;;
- --config | --confi | --conf | --con | --co | --c )
- $as_echo "$ac_cs_config"; exit ;;
- --debug | --debu | --deb | --de | --d | -d )
- debug=: ;;
- --file | --fil | --fi | --f )
- $ac_shift
- case $ac_optarg in
- *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
- '') as_fn_error $? "missing file argument" ;;
- esac
- as_fn_append CONFIG_FILES " '$ac_optarg'"
- ac_need_defaults=false;;
- --header | --heade | --head | --hea )
- $ac_shift
- case $ac_optarg in
- *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
- esac
- as_fn_append CONFIG_HEADERS " '$ac_optarg'"
- ac_need_defaults=false;;
- --he | --h)
- # Conflict between --help and --header
- as_fn_error $? "ambiguous option: \`$1'
-Try \`$0 --help' for more information.";;
- --help | --hel | -h )
- $as_echo "$ac_cs_usage"; exit ;;
- -q | -quiet | --quiet | --quie | --qui | --qu | --q \
- | -silent | --silent | --silen | --sile | --sil | --si | --s)
- ac_cs_silent=: ;;
-
- # This is an error.
- -*) as_fn_error $? "unrecognized option: \`$1'
-Try \`$0 --help' for more information." ;;
-
- *) as_fn_append ac_config_targets " $1"
- ac_need_defaults=false ;;
-
- esac
- shift
-done
-
-ac_configure_extra_args=
-
-if $ac_cs_silent; then
- exec 6>/dev/null
- ac_configure_extra_args="$ac_configure_extra_args --silent"
-fi
-
-if $ac_cs_recheck; then
- set X /bin/bash './configure' '--disable-option-checking' '--prefix=/usr/local' 'docdir=${datarootdir}/doc/${PACKAGE}' '--cache-file=/dev/null' '--srcdir=.' $ac_configure_extra_args --no-create --no-recursion
- shift
- $as_echo "running CONFIG_SHELL=/bin/bash $*" >&6
- CONFIG_SHELL='/bin/bash'
- export CONFIG_SHELL
- exec "$@"
-fi
-
-exec 5>>config.log
-{
- echo
- sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
-## Running $as_me. ##
-_ASBOX
- $as_echo "$ac_log"
-} >&5
-
-#
-# INIT-COMMANDS
-#
-
-
-# The HP-UX ksh and POSIX shell print the target directory to stdout
-# if CDPATH is set.
-(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
-
-sed_quote_subst='s/\(["`$\\]\)/\\\1/g'
-double_quote_subst='s/\(["`\\]\)/\\\1/g'
-delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g'
-macro_version='2.4.6'
-macro_revision='2.4.6'
-enable_shared='yes'
-enable_static='yes'
-pic_mode='default'
-enable_fast_install='needless'
-shared_archive_member_spec=''
-SHELL='/bin/bash'
-ECHO='printf %s\n'
-PATH_SEPARATOR=':'
-host_alias=''
-host='x86_64-pc-linux-gnu'
-host_os='linux-gnu'
-build_alias=''
-build='x86_64-pc-linux-gnu'
-build_os='linux-gnu'
-SED='/bin/sed'
-Xsed='/bin/sed -e 1s/^X//'
-GREP='/bin/grep'
-EGREP='/bin/grep -E'
-FGREP='/bin/grep -F'
-LD='/usr/bin/ld -m elf_x86_64'
-NM='/usr/bin/nm -B'
-LN_S='ln -s'
-max_cmd_len='1572864'
-ac_objext='o'
-exeext=''
-lt_unset='unset'
-lt_SP2NL='tr \040 \012'
-lt_NL2SP='tr \015\012 \040\040'
-lt_cv_to_host_file_cmd='func_convert_file_noop'
-lt_cv_to_tool_file_cmd='func_convert_file_noop'
-reload_flag=' -r'
-reload_cmds='$LD$reload_flag -o $output$reload_objs'
-OBJDUMP='objdump'
-deplibs_check_method='pass_all'
-file_magic_cmd='$MAGIC_CMD'
-file_magic_glob=''
-want_nocaseglob='no'
-DLLTOOL='false'
-sharedlib_from_linklib_cmd='printf %s\n'
-AR='ar'
-AR_FLAGS='cru'
-archiver_list_spec='@'
-STRIP='strip'
-RANLIB='ranlib'
-old_postinstall_cmds='chmod 644 $oldlib~$RANLIB $tool_oldlib'
-old_postuninstall_cmds=''
-old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $tool_oldlib'
-lock_old_archive_extraction='no'
-CC='gcc'
-CFLAGS='-g -O2'
-compiler='g++'
-GCC='yes'
-lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\'''
-lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''
-lt_cv_sys_global_symbol_to_import=''
-lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"\1", (void *) \&\1},/p'\'''
-lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/ {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"lib\1", (void *) \&\1},/p'\'''
-lt_cv_nm_interface='BSD nm'
-nm_file_list_spec='@'
-lt_sysroot=''
-lt_cv_truncate_bin='/bin/dd bs=4096 count=1'
-objdir='.libs'
-MAGIC_CMD='file'
-lt_prog_compiler_no_builtin_flag=' -fno-builtin'
-lt_prog_compiler_pic=' -fPIC -DPIC'
-lt_prog_compiler_wl='-Wl,'
-lt_prog_compiler_static='-static'
-lt_cv_prog_compiler_c_o='yes'
-need_locks='no'
-MANIFEST_TOOL=':'
-DSYMUTIL=''
-NMEDIT=''
-LIPO=''
-OTOOL=''
-OTOOL64=''
-libext='a'
-shrext_cmds='.so'
-extract_expsyms_cmds=''
-archive_cmds_need_lc='no'
-enable_shared_with_static_runtimes='no'
-export_dynamic_flag_spec='$wl--export-dynamic'
-whole_archive_flag_spec='$wl--whole-archive$convenience $wl--no-whole-archive'
-compiler_needs_object='no'
-old_archive_from_new_cmds=''
-old_archive_from_expsyms_cmds=''
-archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
-archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~
- cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
- echo "local: *; };" >> $output_objdir/$libname.ver~
- $CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib'
-module_cmds=''
-module_expsym_cmds=''
-with_gnu_ld='yes'
-allow_undefined_flag=''
-no_undefined_flag=''
-hardcode_libdir_flag_spec='$wl-rpath $wl$libdir'
-hardcode_libdir_separator=''
-hardcode_direct='no'
-hardcode_direct_absolute='no'
-hardcode_minus_L='no'
-hardcode_shlibpath_var='unsupported'
-hardcode_automatic='no'
-inherit_rpath='no'
-link_all_deplibs='no'
-always_export_symbols='no'
-export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
-exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'
-include_expsyms=''
-prelink_cmds=''
-postlink_cmds=''
-file_list_spec=''
-variables_saved_for_relink='PATH LD_LIBRARY_PATH LD_RUN_PATH GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH'
-need_lib_prefix='no'
-need_version='no'
-version_type='linux'
-runpath_var='LD_RUN_PATH'
-shlibpath_var='LD_LIBRARY_PATH'
-shlibpath_overrides_runpath='yes'
-libname_spec='lib$name'
-library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
-soname_spec='$libname$release$shared_ext$major'
-install_override_mode=''
-postinstall_cmds=''
-postuninstall_cmds=''
-finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
-finish_eval=''
-hardcode_into_libs='yes'
-sys_lib_search_path_spec='/usr/lib/gcc/x86_64-linux-gnu/7 /usr/lib/x86_64-linux-gnu /usr/lib /lib/x86_64-linux-gnu /lib '
-configure_time_dlsearch_path='/lib /usr/lib /usr/lib/x86_64-linux-gnu/libfakeroot /usr/local/lib/i386-linux-gnu /lib/i386-linux-gnu /usr/lib/i386-linux-gnu /usr/local/lib/i686-linux-gnu /lib/i686-linux-gnu /usr/lib/i686-linux-gnu /usr/local/lib /usr/local/lib/x86_64-linux-gnu /lib/x86_64-linux-gnu /usr/lib/x86_64-linux-gnu /lib32 /usr/lib32 '
-configure_time_lt_sys_library_path=''
-hardcode_action='immediate'
-enable_dlopen='yes'
-enable_dlopen_self='yes'
-enable_dlopen_self_static='no'
-old_striplib='strip --strip-debug'
-striplib='strip --strip-unneeded'
-compiler_lib_search_dirs=''
-predep_objects=''
-postdep_objects=''
-predeps=''
-postdeps=''
-compiler_lib_search_path=''
-LD_CXX='/usr/bin/ld -m elf_x86_64'
-reload_flag_CXX=' -r'
-reload_cmds_CXX='$LD$reload_flag -o $output$reload_objs'
-old_archive_cmds_CXX='$AR $AR_FLAGS $oldlib$oldobjs~$RANLIB $tool_oldlib'
-compiler_CXX='g++'
-GCC_CXX='yes'
-lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin'
-lt_prog_compiler_pic_CXX=' -fPIC -DPIC'
-lt_prog_compiler_wl_CXX='-Wl,'
-lt_prog_compiler_static_CXX='-static'
-lt_cv_prog_compiler_c_o_CXX='yes'
-archive_cmds_need_lc_CXX='no'
-enable_shared_with_static_runtimes_CXX='no'
-export_dynamic_flag_spec_CXX='$wl--export-dynamic'
-whole_archive_flag_spec_CXX='$wl--whole-archive$convenience $wl--no-whole-archive'
-compiler_needs_object_CXX='no'
-old_archive_from_new_cmds_CXX=''
-old_archive_from_expsyms_cmds_CXX=''
-archive_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib'
-archive_expsym_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'
-module_cmds_CXX=''
-module_expsym_cmds_CXX=''
-with_gnu_ld_CXX='yes'
-allow_undefined_flag_CXX=''
-no_undefined_flag_CXX=''
-hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir'
-hardcode_libdir_separator_CXX=''
-hardcode_direct_CXX='no'
-hardcode_direct_absolute_CXX='no'
-hardcode_minus_L_CXX='no'
-hardcode_shlibpath_var_CXX='unsupported'
-hardcode_automatic_CXX='no'
-inherit_rpath_CXX='no'
-link_all_deplibs_CXX='no'
-always_export_symbols_CXX='no'
-export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
-exclude_expsyms_CXX='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'
-include_expsyms_CXX=''
-prelink_cmds_CXX=''
-postlink_cmds_CXX=''
-file_list_spec_CXX=''
-hardcode_action_CXX='immediate'
-compiler_lib_search_dirs_CXX='/usr/lib/gcc/x86_64-linux-gnu/7 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu /usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib /lib/x86_64-linux-gnu /lib/../lib /usr/lib/x86_64-linux-gnu /usr/lib/../lib /usr/lib/gcc/x86_64-linux-gnu/7/../../..'
-predep_objects_CXX='/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o'
-postdep_objects_CXX='/usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o'
-predeps_CXX=''
-postdeps_CXX='-lstdc++ -lm -lgcc_s -lc -lgcc_s'
-compiler_lib_search_path_CXX='-L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../..'
-
-LTCC='gcc'
-LTCFLAGS='-g -O2'
-compiler='gcc'
-
-# A function that is used when there is no print builtin or printf.
-func_fallback_echo ()
-{
- eval 'cat <<_LTECHO_EOF
-$1
-_LTECHO_EOF'
-}
-
-# Quote evaled strings.
-for var in SHELL ECHO PATH_SEPARATOR SED GREP EGREP FGREP LD NM LN_S lt_SP2NL lt_NL2SP reload_flag OBJDUMP deplibs_check_method file_magic_cmd file_magic_glob want_nocaseglob DLLTOOL sharedlib_from_linklib_cmd AR AR_FLAGS archiver_list_spec STRIP RANLIB CC CFLAGS compiler lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl lt_cv_sys_global_symbol_to_import lt_cv_sys_global_symbol_to_c_name_address lt_cv_sys_global_symbol_to_c_name_address_lib_prefix lt_cv_nm_interface nm_file_list_spec lt_cv_truncate_bin lt_prog_compiler_no_builtin_flag lt_prog_compiler_pic lt_prog_compiler_wl lt_prog_compiler_static lt_cv_prog_compiler_c_o need_locks MANIFEST_TOOL DSYMUTIL NMEDIT LIPO OTOOL OTOOL64 shrext_cmds export_dynamic_flag_spec whole_archive_flag_spec compiler_needs_object with_gnu_ld allow_undefined_flag no_undefined_flag hardcode_libdir_flag_spec hardcode_libdir_separator exclude_expsyms include_expsyms file_list_spec variables_saved_for_relink libname_spec library_names_spec soname_spec install_override_mode finish_eval old_striplib striplib compiler_lib_search_dirs predep_objects postdep_objects predeps postdeps compiler_lib_search_path LD_CXX reload_flag_CXX compiler_CXX lt_prog_compiler_no_builtin_flag_CXX lt_prog_compiler_pic_CXX lt_prog_compiler_wl_CXX lt_prog_compiler_static_CXX lt_cv_prog_compiler_c_o_CXX export_dynamic_flag_spec_CXX whole_archive_flag_spec_CXX compiler_needs_object_CXX with_gnu_ld_CXX allow_undefined_flag_CXX no_undefined_flag_CXX hardcode_libdir_flag_spec_CXX hardcode_libdir_separator_CXX exclude_expsyms_CXX include_expsyms_CXX file_list_spec_CXX compiler_lib_search_dirs_CXX predep_objects_CXX postdep_objects_CXX predeps_CXX postdeps_CXX compiler_lib_search_path_CXX; do
- case `eval \\$ECHO \\""\\$$var"\\"` in
- *[\\\`\"\$]*)
- eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED \"\$sed_quote_subst\"\`\\\"" ## exclude from sc_prohibit_nested_quotes
- ;;
- *)
- eval "lt_$var=\\\"\$$var\\\""
- ;;
- esac
-done
-
-# Double-quote double-evaled strings.
-for var in reload_cmds old_postinstall_cmds old_postuninstall_cmds old_archive_cmds extract_expsyms_cmds old_archive_from_new_cmds old_archive_from_expsyms_cmds archive_cmds archive_expsym_cmds module_cmds module_expsym_cmds export_symbols_cmds prelink_cmds postlink_cmds postinstall_cmds postuninstall_cmds finish_cmds sys_lib_search_path_spec configure_time_dlsearch_path configure_time_lt_sys_library_path reload_cmds_CXX old_archive_cmds_CXX old_archive_from_new_cmds_CXX old_archive_from_expsyms_cmds_CXX archive_cmds_CXX archive_expsym_cmds_CXX module_cmds_CXX module_expsym_cmds_CXX export_symbols_cmds_CXX prelink_cmds_CXX postlink_cmds_CXX; do
- case `eval \\$ECHO \\""\\$$var"\\"` in
- *[\\\`\"\$]*)
- eval "lt_$var=\\\"\`\$ECHO \"\$$var\" | \$SED -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" ## exclude from sc_prohibit_nested_quotes
- ;;
- *)
- eval "lt_$var=\\\"\$$var\\\""
- ;;
- esac
-done
-
-ac_aux_dir='.'
-
-# See if we are running on zsh, and set the options that allow our
-# commands through without removal of \ escapes INIT.
-if test -n "${ZSH_VERSION+set}"; then
- setopt NO_GLOB_SUBST
-fi
-
-
- PACKAGE=''
- VERSION='0.6-pre56'
- RM='rm -f'
- ofile='libtool'
-
-
-
-
-
-
-
-# Handling of arguments.
-for ac_config_target in $ac_config_targets
-do
- case $ac_config_target in
- "ddconfig.h") CONFIG_HEADERS="$CONFIG_HEADERS ddconfig.h:ddconfig_in.h" ;;
- "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;;
- "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
- "main.mk") CONFIG_FILES="$CONFIG_FILES main.mk:main_in.mk" ;;
- "packages.mk") CONFIG_FILES="$CONFIG_FILES packages.mk:packages_in.mk" ;;
- "sim.src/Makefile") CONFIG_FILES="$CONFIG_FILES sim.src/Makefile" ;;
- "cmd.src/Makefile") CONFIG_FILES="$CONFIG_FILES cmd.src/Makefile" ;;
- "s51.src/Makefile") CONFIG_FILES="$CONFIG_FILES s51.src/Makefile" ;;
- "avr.src/Makefile") CONFIG_FILES="$CONFIG_FILES avr.src/Makefile" ;;
- "z80.src/Makefile") CONFIG_FILES="$CONFIG_FILES z80.src/Makefile" ;;
- "tlcs.src/Makefile") CONFIG_FILES="$CONFIG_FILES tlcs.src/Makefile" ;;
- "hc08.src/Makefile") CONFIG_FILES="$CONFIG_FILES hc08.src/Makefile" ;;
- "xa.src/Makefile") CONFIG_FILES="$CONFIG_FILES xa.src/Makefile" ;;
- "stm8.src/Makefile") CONFIG_FILES="$CONFIG_FILES stm8.src/Makefile" ;;
- "pdk.src/Makefile") CONFIG_FILES="$CONFIG_FILES pdk.src/Makefile" ;;
- "st7.src/Makefile") CONFIG_FILES="$CONFIG_FILES st7.src/Makefile" ;;
- "gui.src/Makefile") CONFIG_FILES="$CONFIG_FILES gui.src/Makefile" ;;
- "gui.src/serio.src/Makefile") CONFIG_FILES="$CONFIG_FILES gui.src/serio.src/Makefile" ;;
- "doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;;
-
- *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
- esac
-done
-
-
-# If the user did not use the arguments to specify the items to instantiate,
-# then the envvar interface is used. Set only those that are not.
-# We use the long form for the default assignment because of an extremely
-# bizarre bug on SunOS 4.1.3.
-if $ac_need_defaults; then
- test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
- test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
- test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
-fi
-
-# Have a temporary directory for convenience. Make it in the build tree
-# simply because there is no reason against having it here, and in addition,
-# creating and moving files from /tmp can sometimes cause problems.
-# Hook for its removal unless debugging.
-# Note that there is a small window in which the directory will not be cleaned:
-# after its creation but before its name has been assigned to `$tmp'.
-$debug ||
-{
- tmp= ac_tmp=
- trap 'exit_status=$?
- : "${ac_tmp:=$tmp}"
- { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status
-' 0
- trap 'as_fn_exit 1' 1 2 13 15
-}
-# Create a (secure) tmp directory for tmp files.
-
-{
- tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` &&
- test -d "$tmp"
-} ||
-{
- tmp=./conf$$-$RANDOM
- (umask 077 && mkdir "$tmp")
-} || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5
-ac_tmp=$tmp
-
-# Set up the scripts for CONFIG_FILES section.
-# No need to generate them if there are no CONFIG_FILES.
-# This happens for instance with `./config.status config.h'.
-if test -n "$CONFIG_FILES"; then
-
-
-ac_cr=`echo X | tr X '\015'`
-# On cygwin, bash can eat \r inside `` if the user requested igncr.
-# But we know of no other shell where ac_cr would be empty at this
-# point, so we can use a bashism as a fallback.
-if test "x$ac_cr" = x; then
- eval ac_cr=\$\'\\r\'
-fi
-ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
-if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
- ac_cs_awk_cr='\\r'
-else
- ac_cs_awk_cr=$ac_cr
-fi
-
-echo 'BEGIN {' >"$ac_tmp/subs1.awk" &&
-cat >>"$ac_tmp/subs1.awk" <<\_ACAWK &&
-S["LTLIBOBJS"]=""
-S["LIBOBJS"]=""
-S["dlso_ok"]="no"
-S["PICOPT"]=" -fPIC -DPIC"
-S["SHAREDLIB"]="yes"
-S["WALL_FLAG"]="-Wall"
-S["MAKEDEP"]="g++ -MM"
-S["CURSES_LIBS"]="-lpanel -lcurses"
-S["curses_ok"]="yes"
-S["panel_ok"]="yes"
-S["DL"]="-ldl"
-S["dl_ok"]="yes"
-S["WINSOCK_AVAIL"]="0"
-S["YFLAGS"]=""
-S["YACC"]="bison -y"
-S["LEXLIB"]="-lfl"
-S["LEX_OUTPUT_ROOT"]="lex.yy"
-S["LEX"]="flex"
-S["LIBTOOL_DEPS"]="./ltmain.sh"
-S["CPP"]="gcc -E"
-S["LT_SYS_LIBRARY_PATH"]=""
-S["OTOOL64"]=""
-S["OTOOL"]=""
-S["LIPO"]=""
-S["NMEDIT"]=""
-S["DSYMUTIL"]=""
-S["MANIFEST_TOOL"]=":"
-S["ac_ct_AR"]="ar"
-S["DLLTOOL"]="false"
-S["OBJDUMP"]="objdump"
-S["LN_S"]="ln -s"
-S["NM"]="/usr/bin/nm -B"
-S["ac_ct_DUMPBIN"]=""
-S["DUMPBIN"]=""
-S["LD"]="/usr/bin/ld -m elf_x86_64"
-S["FGREP"]="/bin/grep -F"
-S["EGREP"]="/bin/grep -E"
-S["GREP"]="/bin/grep"
-S["SED"]="/bin/sed"
-S["ac_ct_CC"]="gcc"
-S["CFLAGS"]="-g -O2"
-S["CC"]="gcc"
-S["host_os"]="linux-gnu"
-S["host_vendor"]="pc"
-S["host_cpu"]="x86_64"
-S["host"]="x86_64-pc-linux-gnu"
-S["build_os"]="linux-gnu"
-S["build_vendor"]="pc"
-S["build_cpu"]="x86_64"
-S["build"]="x86_64-pc-linux-gnu"
-S["LIBTOOL"]="$(SHELL) $(top_builddir)/libtool"
-S["SREC_CAT"]=""
-S["AR"]="ar"
-S["STRIP"]="strip"
-S["RANLIB"]="ranlib"
-S["INSTALL_DATA"]="${INSTALL} -m 644"
-S["INSTALL_SCRIPT"]="${INSTALL}"
-S["INSTALL_PROGRAM"]="${INSTALL}"
-S["CXXCPP"]="g++ -E"
-S["OBJEXT"]="o"
-S["EXEEXT"]=""
-S["ac_ct_CXX"]="g++"
-S["CPPFLAGS"]=""
-S["LDFLAGS"]=""
-S["CXXFLAGS"]="-g -O2 -g"
-S["CXX"]="g++"
-S["enable_serio"]="no"
-S["enable_pdk_port"]="yes"
-S["enable_st7_port"]="no"
-S["enable_stm8_port"]="yes"
-S["enable_xa_port"]="no"
-S["enable_s08_port"]="yes"
-S["enable_hc08_port"]="yes"
-S["enable_tlcs_port"]="yes"
-S["enable_r3ka_port"]="yes"
-S["enable_r2k_port"]="yes"
-S["enable_gbz80_port"]="yes"
-S["enable_z180_port"]="yes"
-S["enable_z80_port"]="yes"
-S["enable_avr_port"]="no"
-S["enable_ds390_port"]="yes"
-S["enable_mcs51_port"]="yes"
-S["enable_dlso"]="no"
-S["enable_ucsim"]="no"
-S["VERSIONP"]=""
-S["VERSIONLO"]="6-pre56"
-S["VERSIONHI"]="0"
-S["VERSION"]="0.6-pre56"
-S["AWK"]="gawk"
-S["target_alias"]=""
-S["host_alias"]=""
-S["build_alias"]=""
-S["LIBS"]="-lrt -lnsl "
-S["ECHO_T"]=""
-S["ECHO_N"]="-n"
-S["ECHO_C"]=""
-S["DEFS"]="-DHAVE_CONFIG_H"
-S["mandir"]="${datarootdir}/man"
-S["localedir"]="${datarootdir}/locale"
-S["libdir"]="${exec_prefix}/lib"
-S["psdir"]="${docdir}"
-S["pdfdir"]="${docdir}"
-S["dvidir"]="${docdir}"
-S["htmldir"]="${docdir}"
-S["infodir"]="${datarootdir}/info"
-S["docdir"]="${datarootdir}/doc/${PACKAGE}"
-S["oldincludedir"]="/usr/include"
-S["includedir"]="${prefix}/include"
-S["runstatedir"]="${localstatedir}/run"
-S["localstatedir"]="${prefix}/var"
-S["sharedstatedir"]="${prefix}/com"
-S["sysconfdir"]="${prefix}/etc"
-S["datadir"]="${datarootdir}"
-S["datarootdir"]="${prefix}/share"
-S["libexecdir"]="${exec_prefix}/libexec"
-S["sbindir"]="${exec_prefix}/sbin"
-S["bindir"]="${exec_prefix}/bin"
-S["program_transform_name"]="s,x,x,"
-S["prefix"]="/usr/local"
-S["exec_prefix"]="${prefix}"
-S["PACKAGE_URL"]=""
-S["PACKAGE_BUGREPORT"]=""
-S["PACKAGE_STRING"]=""
-S["PACKAGE_VERSION"]=""
-S["PACKAGE_TARNAME"]=""
-S["PACKAGE_NAME"]=""
-S["PATH_SEPARATOR"]=":"
-S["SHELL"]="/bin/bash"
-_ACAWK
-cat >>"$ac_tmp/subs1.awk" <<_ACAWK &&
- for (key in S) S_is_set[key] = 1
- FS = ""
-
-}
-{
- line = $ 0
- nfields = split(line, field, "@")
- substed = 0
- len = length(field[1])
- for (i = 2; i < nfields; i++) {
- key = field[i]
- keylen = length(key)
- if (S_is_set[key]) {
- value = S[key]
- line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
- len += length(value) + length(field[++i])
- substed = 1
- } else
- len += 1 + keylen
- }
-
- print line
-}
-
-_ACAWK
-if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
- sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
-else
- cat
-fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \
- || as_fn_error $? "could not setup config files machinery" "$LINENO" 5
-fi # test -n "$CONFIG_FILES"
-
-# Set up the scripts for CONFIG_HEADERS section.
-# No need to generate them if there are no CONFIG_HEADERS.
-# This happens for instance with `./config.status Makefile'.
-if test -n "$CONFIG_HEADERS"; then
-cat >"$ac_tmp/defines.awk" <<\_ACAWK ||
-BEGIN {
-D["PACKAGE_NAME"]=" \"\""
-D["PACKAGE_TARNAME"]=" \"\""
-D["PACKAGE_VERSION"]=" \"\""
-D["PACKAGE_STRING"]=" \"\""
-D["PACKAGE_BUGREPORT"]=" \"\""
-D["PACKAGE_URL"]=" \"\""
-D["VERSIONSTR"]=" \"0.6-pre56\""
-D["VERSIONHI"]=" 0"
-D["VERSIONLO"]=" 6-pre56"
-D["VERSIONP"]=" "
-D["STATISTIC"]=" no"
-D["STDC_HEADERS"]=" 1"
-D["HAVE_SYS_TYPES_H"]=" 1"
-D["HAVE_SYS_STAT_H"]=" 1"
-D["HAVE_STDLIB_H"]=" 1"
-D["HAVE_STRING_H"]=" 1"
-D["HAVE_MEMORY_H"]=" 1"
-D["HAVE_STRINGS_H"]=" 1"
-D["HAVE_INTTYPES_H"]=" 1"
-D["HAVE_STDINT_H"]=" 1"
-D["HAVE_UNISTD_H"]=" 1"
-D["HAVE_DLFCN_H"]=" 1"
-D["LT_OBJDIR"]=" \".libs/\""
-D["YYTEXT_POINTER"]=" 1"
-D["HAVE_FLEX"]=" 1"
-D["STDC_HEADERS"]=" 1"
-D["HAVE_ENDIAN_H"]=" 1"
-D["HAVE_GETOPT_H"]=" 1"
-D["HAVE_UNISTD_H"]=" 1"
-D["HAVE_TERMIOS_H"]=" 1"
-D["HAVE_CURSES_H"]=" 1"
-D["HAVE_SYS_SOCKET_H"]=" 1"
-D["SOCKET_AVAIL"]=" 1"
-D["UCSOCKET_T"]=" int"
-D["SOCKLEN_T"]=" uint"
-D["HEADER_SOCKET"]=" <sys/socket.h>"
-D["HAVE_DIRENT_H"]=" 1"
-D["FD_NEED_TIME_H"]=" 0"
-D["FD_NEED_TYPES_H"]=" 0"
-D["FD_NEED_SELECT_H"]=" 1"
-D["FD_NEED_WINSOCK2_H"]=" 0"
-D["FD_HEADER_OK"]=" 1"
-D["HEADER_FD"]=" <sys/select.h>"
-D["HAVE_LIBNSL"]=" 1"
-D["HAVE_LIBRT"]=" 1"
-D["HAVE_VASPRINTF"]=" 1"
-D["HAVE_STRERROR"]=" 1"
-D["HAVE_STRDUP"]=" 1"
-D["ACCEPT_SOCKLEN_T"]=" socklen_t"
-D["RETSIGTYPE"]=" void"
-D["SIZEOF_CHAR"]=" 1"
-D["SIZEOF_SHORT"]=" 2"
-D["SIZEOF_INT"]=" 4"
-D["SIZEOF_LONG"]=" 8"
-D["SIZEOF_LONG_LONG"]=" 8"
-D["TYPE_BYTE"]=" char"
-D["SPEC_BYTE"]=" \"\""
-D["TYPE_WORD"]=" short"
-D["SPEC_WORD"]=" \"h\""
-D["TYPE_DWORD"]=" int"
-D["SPEC_DWORD"]=" \"\""
-D["TYPE_QWORD"]=" long"
-D["SPEC_QWORD"]=" \"l\""
-D["_A_"]=" \"\""
-D["_M_"]=" \"h\""
- for (key in D) D_is_set[key] = 1
- FS = ""
-}
-/^[\t ]*#[\t ]*(define|undef)[\t ]+[_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ][_abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789]*([\t (]|$)/ {
- line = $ 0
- split(line, arg, " ")
- if (arg[1] == "#") {
- defundef = arg[2]
- mac1 = arg[3]
- } else {
- defundef = substr(arg[1], 2)
- mac1 = arg[2]
- }
- split(mac1, mac2, "(") #)
- macro = mac2[1]
- prefix = substr(line, 1, index(line, defundef) - 1)
- if (D_is_set[macro]) {
- # Preserve the white space surrounding the "#".
- print prefix "define", macro P[macro] D[macro]
- next
- } else {
- # Replace #undef with comments. This is necessary, for example,
- # in the case of _POSIX_SOURCE, which is predefined and required
- # on some systems where configure will not decide to define it.
- if (defundef == "undef") {
- print "/*", prefix defundef, macro, "*/"
- next
- }
- }
-}
-{ print }
-_ACAWK
- as_fn_error $? "could not setup config headers machinery" "$LINENO" 5
-fi # test -n "$CONFIG_HEADERS"
-
-
-eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS"
-shift
-for ac_tag
-do
- case $ac_tag in
- :[FHLC]) ac_mode=$ac_tag; continue;;
- esac
- case $ac_mode$ac_tag in
- :[FHL]*:*);;
- :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;;
- :[FH]-) ac_tag=-:-;;
- :[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
- esac
- ac_save_IFS=$IFS
- IFS=:
- set x $ac_tag
- IFS=$ac_save_IFS
- shift
- ac_file=$1
- shift
-
- case $ac_mode in
- :L) ac_source=$1;;
- :[FH])
- ac_file_inputs=
- for ac_f
- do
- case $ac_f in
- -) ac_f="$ac_tmp/stdin";;
- *) # Look for the file first in the build tree, then in the source tree
- # (if the path is not absolute). The absolute path cannot be DOS-style,
- # because $ac_f cannot contain `:'.
- test -f "$ac_f" ||
- case $ac_f in
- [\\/$]*) false;;
- *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
- esac ||
- as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;;
- esac
- case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
- as_fn_append ac_file_inputs " '$ac_f'"
- done
-
- # Let's still pretend it is `configure' which instantiates (i.e., don't
- # use $as_me), people would be surprised to read:
- # /* config.h. Generated by config.status. */
- configure_input='Generated from '`
- $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
- `' by configure.'
- if test x"$ac_file" != x-; then
- configure_input="$ac_file. $configure_input"
- { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5
-$as_echo "$as_me: creating $ac_file" >&6;}
- fi
- # Neutralize special characters interpreted by sed in replacement strings.
- case $configure_input in #(
- *\&* | *\|* | *\\* )
- ac_sed_conf_input=`$as_echo "$configure_input" |
- sed 's/[\\\\&|]/\\\\&/g'`;; #(
- *) ac_sed_conf_input=$configure_input;;
- esac
-
- case $ac_tag in
- *:-:* | *:-) cat >"$ac_tmp/stdin" \
- || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;;
- esac
- ;;
- esac
-
- ac_dir=`$as_dirname -- "$ac_file" ||
-$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$ac_file" : 'X\(//\)[^/]' \| \
- X"$ac_file" : 'X\(//\)$' \| \
- X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
-$as_echo X"$ac_file" |
- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
- s//\1/
- q
- }
- /^X\(\/\/\)[^/].*/{
- s//\1/
- q
- }
- /^X\(\/\/\)$/{
- s//\1/
- q
- }
- /^X\(\/\).*/{
- s//\1/
- q
- }
- s/.*/./; q'`
- as_dir="$ac_dir"; as_fn_mkdir_p
- ac_builddir=.
-
-case "$ac_dir" in
-.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
-*)
- ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
- # A ".." for each directory in $ac_dir_suffix.
- ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
- case $ac_top_builddir_sub in
- "") ac_top_builddir_sub=. ac_top_build_prefix= ;;
- *) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
- esac ;;
-esac
-ac_abs_top_builddir=$ac_pwd
-ac_abs_builddir=$ac_pwd$ac_dir_suffix
-# for backward compatibility:
-ac_top_builddir=$ac_top_build_prefix
-
-case $srcdir in
- .) # We are building in place.
- ac_srcdir=.
- ac_top_srcdir=$ac_top_builddir_sub
- ac_abs_top_srcdir=$ac_pwd ;;
- [\\/]* | ?:[\\/]* ) # Absolute name.
- ac_srcdir=$srcdir$ac_dir_suffix;
- ac_top_srcdir=$srcdir
- ac_abs_top_srcdir=$srcdir ;;
- *) # Relative name.
- ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix
- ac_top_srcdir=$ac_top_build_prefix$srcdir
- ac_abs_top_srcdir=$ac_pwd/$srcdir ;;
-esac
-ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
-
-
- case $ac_mode in
- :F)
- #
- # CONFIG_FILE
- #
-
- case $INSTALL in
- [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
- *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
- esac
-# If the template does not know about datarootdir, expand it.
-# FIXME: This hack should be removed a few years after 2.60.
-ac_datarootdir_hack=; ac_datarootdir_seen=
-ac_sed_dataroot='
-/datarootdir/ {
- p
- q
-}
-/@datadir@/p
-/@docdir@/p
-/@infodir@/p
-/@localedir@/p
-/@mandir@/p'
-case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
-*datarootdir*) ac_datarootdir_seen=yes;;
-*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
-$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
- ac_datarootdir_hack='
- s&@datadir@&${datarootdir}&g
- s&@docdir@&${datarootdir}/doc/${PACKAGE}&g
- s&@infodir@&${datarootdir}/info&g
- s&@localedir@&${datarootdir}/locale&g
- s&@mandir@&${datarootdir}/man&g
- s&\${datarootdir}&${prefix}/share&g' ;;
-esac
-ac_sed_extra="/^[ ]*VPATH[ ]*=[ ]*/{
-h
-s///
-s/^/:/
-s/[ ]*$/:/
-s/:\$(srcdir):/:/g
-s/:\${srcdir}:/:/g
-s/:@srcdir@:/:/g
-s/^:*//
-s/:*$//
-x
-s/\(=[ ]*\).*/\1/
-G
-s/\n//
-s/^[^=]*=[ ]*$//
-}
-
-:t
-/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
-s|@configure_input@|$ac_sed_conf_input|;t t
-s&@top_builddir@&$ac_top_builddir_sub&;t t
-s&@top_build_prefix@&$ac_top_build_prefix&;t t
-s&@srcdir@&$ac_srcdir&;t t
-s&@abs_srcdir@&$ac_abs_srcdir&;t t
-s&@top_srcdir@&$ac_top_srcdir&;t t
-s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t
-s&@builddir@&$ac_builddir&;t t
-s&@abs_builddir@&$ac_abs_builddir&;t t
-s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
-s&@INSTALL@&$ac_INSTALL&;t t
-$ac_datarootdir_hack
-"
-eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \
- >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5
-
-test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
- { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
- { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \
- "$ac_tmp/out"`; test -z "$ac_out"; } &&
- { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir'
-which seems to be undefined. Please make sure it is defined" >&5
-$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
-which seems to be undefined. Please make sure it is defined" >&2;}
-
- rm -f "$ac_tmp/stdin"
- case $ac_file in
- -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";;
- *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";;
- esac \
- || as_fn_error $? "could not create $ac_file" "$LINENO" 5
- ;;
- :H)
- #
- # CONFIG_HEADER
- #
- if test x"$ac_file" != x-; then
- {
- $as_echo "/* $configure_input */" \
- && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs"
- } >"$ac_tmp/config.h" \
- || as_fn_error $? "could not create $ac_file" "$LINENO" 5
- if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5
-$as_echo "$as_me: $ac_file is unchanged" >&6;}
- else
- rm -f "$ac_file"
- mv "$ac_tmp/config.h" "$ac_file" \
- || as_fn_error $? "could not create $ac_file" "$LINENO" 5
- fi
- else
- $as_echo "/* $configure_input */" \
- && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \
- || as_fn_error $? "could not create -" "$LINENO" 5
- fi
- ;;
-
- :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5
-$as_echo "$as_me: executing $ac_file commands" >&6;}
- ;;
- esac
-
-
- case $ac_file$ac_mode in
- "libtool":C)
-
- # See if we are running on zsh, and set the options that allow our
- # commands through without removal of \ escapes.
- if test -n "${ZSH_VERSION+set}"; then
- setopt NO_GLOB_SUBST
- fi
-
- cfgfile=${ofile}T
- trap "$RM \"$cfgfile\"; exit 1" 1 2 15
- $RM "$cfgfile"
-
- cat <<_LT_EOF >> "$cfgfile"
-#! $SHELL
-# Generated automatically by $as_me ($PACKAGE) $VERSION
-# NOTE: Changes made to this file will be lost: look at ltmain.sh.
-
-# Provide generalized library-building support services.
-# Written by Gordon Matzigkeit, 1996
-
-# Copyright (C) 2014 Free Software Foundation, Inc.
-# This is free software; see the source for copying conditions. There is NO
-# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-
-# GNU Libtool is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; either version 2 of of the License, or
-# (at your option) any later version.
-#
-# As a special exception to the GNU General Public License, if you
-# distribute this file as part of a program or library that is built
-# using GNU Libtool, you may include this file under the same
-# distribution terms that you use for the rest of that program.
-#
-# GNU Libtool is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-
-# The names of the tagged configurations supported by this script.
-available_tags='CXX '
-
-# Configured defaults for sys_lib_dlsearch_path munging.
-: \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"}
-
-# ### BEGIN LIBTOOL CONFIG
-
-# Which release of libtool.m4 was used?
-macro_version=$macro_version
-macro_revision=$macro_revision
-
-# Whether or not to build shared libraries.
-build_libtool_libs=$enable_shared
-
-# Whether or not to build static libraries.
-build_old_libs=$enable_static
-
-# What type of objects to build.
-pic_mode=$pic_mode
-
-# Whether or not to optimize for fast installation.
-fast_install=$enable_fast_install
-
-# Shared archive member basename,for filename based shared library versioning on AIX.
-shared_archive_member_spec=$shared_archive_member_spec
-
-# Shell to use when invoking shell scripts.
-SHELL=$lt_SHELL
-
-# An echo program that protects backslashes.
-ECHO=$lt_ECHO
-
-# The PATH separator for the build system.
-PATH_SEPARATOR=$lt_PATH_SEPARATOR
-
-# The host system.
-host_alias=$host_alias
-host=$host
-host_os=$host_os
-
-# The build system.
-build_alias=$build_alias
-build=$build
-build_os=$build_os
-
-# A sed program that does not truncate output.
-SED=$lt_SED
-
-# Sed that helps us avoid accidentally triggering echo(1) options like -n.
-Xsed="\$SED -e 1s/^X//"
-
-# A grep program that handles long lines.
-GREP=$lt_GREP
-
-# An ERE matcher.
-EGREP=$lt_EGREP
-
-# A literal string matcher.
-FGREP=$lt_FGREP
-
-# A BSD- or MS-compatible name lister.
-NM=$lt_NM
-
-# Whether we need soft or hard links.
-LN_S=$lt_LN_S
-
-# What is the maximum length of a command?
-max_cmd_len=$max_cmd_len
-
-# Object file suffix (normally "o").
-objext=$ac_objext
-
-# Executable file suffix (normally "").
-exeext=$exeext
-
-# whether the shell understands "unset".
-lt_unset=$lt_unset
-
-# turn spaces into newlines.
-SP2NL=$lt_lt_SP2NL
-
-# turn newlines into spaces.
-NL2SP=$lt_lt_NL2SP
-
-# convert \$build file names to \$host format.
-to_host_file_cmd=$lt_cv_to_host_file_cmd
-
-# convert \$build files to toolchain format.
-to_tool_file_cmd=$lt_cv_to_tool_file_cmd
-
-# An object symbol dumper.
-OBJDUMP=$lt_OBJDUMP
-
-# Method to check whether dependent libraries are shared objects.
-deplibs_check_method=$lt_deplibs_check_method
-
-# Command to use when deplibs_check_method = "file_magic".
-file_magic_cmd=$lt_file_magic_cmd
-
-# How to find potential files when deplibs_check_method = "file_magic".
-file_magic_glob=$lt_file_magic_glob
-
-# Find potential files using nocaseglob when deplibs_check_method = "file_magic".
-want_nocaseglob=$lt_want_nocaseglob
-
-# DLL creation program.
-DLLTOOL=$lt_DLLTOOL
-
-# Command to associate shared and link libraries.
-sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd
-
-# The archiver.
-AR=$lt_AR
-
-# Flags to create an archive.
-AR_FLAGS=$lt_AR_FLAGS
-
-# How to feed a file listing to the archiver.
-archiver_list_spec=$lt_archiver_list_spec
-
-# A symbol stripping program.
-STRIP=$lt_STRIP
-
-# Commands used to install an old-style archive.
-RANLIB=$lt_RANLIB
-old_postinstall_cmds=$lt_old_postinstall_cmds
-old_postuninstall_cmds=$lt_old_postuninstall_cmds
-
-# Whether to use a lock for old archive extraction.
-lock_old_archive_extraction=$lock_old_archive_extraction
-
-# A C compiler.
-LTCC=$lt_CC
-
-# LTCC compiler flags.
-LTCFLAGS=$lt_CFLAGS
-
-# Take the output of nm and produce a listing of raw symbols and C names.
-global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
-
-# Transform the output of nm in a proper C declaration.
-global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
-
-# Transform the output of nm into a list of symbols to manually relocate.
-global_symbol_to_import=$lt_lt_cv_sys_global_symbol_to_import
-
-# Transform the output of nm in a C name address pair.
-global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
-
-# Transform the output of nm in a C name address pair when lib prefix is needed.
-global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix
-
-# The name lister interface.
-nm_interface=$lt_lt_cv_nm_interface
-
-# Specify filename containing input files for \$NM.
-nm_file_list_spec=$lt_nm_file_list_spec
-
-# The root where to search for dependent libraries,and where our libraries should be installed.
-lt_sysroot=$lt_sysroot
-
-# Command to truncate a binary pipe.
-lt_truncate_bin=$lt_lt_cv_truncate_bin
-
-# The name of the directory that contains temporary libtool files.
-objdir=$objdir
-
-# Used to examine libraries when file_magic_cmd begins with "file".
-MAGIC_CMD=$MAGIC_CMD
-
-# Must we lock files when doing compilation?
-need_locks=$lt_need_locks
-
-# Manifest tool.
-MANIFEST_TOOL=$lt_MANIFEST_TOOL
-
-# Tool to manipulate archived DWARF debug symbol files on Mac OS X.
-DSYMUTIL=$lt_DSYMUTIL
-
-# Tool to change global to local symbols on Mac OS X.
-NMEDIT=$lt_NMEDIT
-
-# Tool to manipulate fat objects and archives on Mac OS X.
-LIPO=$lt_LIPO
-
-# ldd/readelf like tool for Mach-O binaries on Mac OS X.
-OTOOL=$lt_OTOOL
-
-# ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4.
-OTOOL64=$lt_OTOOL64
-
-# Old archive suffix (normally "a").
-libext=$libext
-
-# Shared library suffix (normally ".so").
-shrext_cmds=$lt_shrext_cmds
-
-# The commands to extract the exported symbol list from a shared archive.
-extract_expsyms_cmds=$lt_extract_expsyms_cmds
-
-# Variables whose values should be saved in libtool wrapper scripts and
-# restored at link time.
-variables_saved_for_relink=$lt_variables_saved_for_relink
-
-# Do we need the "lib" prefix for modules?
-need_lib_prefix=$need_lib_prefix
-
-# Do we need a version for libraries?
-need_version=$need_version
-
-# Library versioning type.
-version_type=$version_type
-
-# Shared library runtime path variable.
-runpath_var=$runpath_var
-
-# Shared library path variable.
-shlibpath_var=$shlibpath_var
-
-# Is shlibpath searched before the hard-coded library search path?
-shlibpath_overrides_runpath=$shlibpath_overrides_runpath
-
-# Format of library name prefix.
-libname_spec=$lt_libname_spec
-
-# List of archive names. First name is the real one, the rest are links.
-# The last name is the one that the linker finds with -lNAME
-library_names_spec=$lt_library_names_spec
-
-# The coded name of the library, if different from the real name.
-soname_spec=$lt_soname_spec
-
-# Permission mode override for installation of shared libraries.
-install_override_mode=$lt_install_override_mode
-
-# Command to use after installation of a shared archive.
-postinstall_cmds=$lt_postinstall_cmds
-
-# Command to use after uninstallation of a shared archive.
-postuninstall_cmds=$lt_postuninstall_cmds
-
-# Commands used to finish a libtool library installation in a directory.
-finish_cmds=$lt_finish_cmds
-
-# As "finish_cmds", except a single script fragment to be evaled but
-# not shown.
-finish_eval=$lt_finish_eval
-
-# Whether we should hardcode library paths into libraries.
-hardcode_into_libs=$hardcode_into_libs
-
-# Compile-time system search path for libraries.
-sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
-
-# Detected run-time system search path for libraries.
-sys_lib_dlsearch_path_spec=$lt_configure_time_dlsearch_path
-
-# Explicit LT_SYS_LIBRARY_PATH set during ./configure time.
-configure_time_lt_sys_library_path=$lt_configure_time_lt_sys_library_path
-
-# Whether dlopen is supported.
-dlopen_support=$enable_dlopen
-
-# Whether dlopen of programs is supported.
-dlopen_self=$enable_dlopen_self
-
-# Whether dlopen of statically linked programs is supported.
-dlopen_self_static=$enable_dlopen_self_static
-
-# Commands to strip libraries.
-old_striplib=$lt_old_striplib
-striplib=$lt_striplib
-
-
-# The linker used to build libraries.
-LD=$lt_LD
-
-# How to create reloadable object files.
-reload_flag=$lt_reload_flag
-reload_cmds=$lt_reload_cmds
-
-# Commands used to build an old-style archive.
-old_archive_cmds=$lt_old_archive_cmds
-
-# A language specific compiler.
-CC=$lt_compiler
-
-# Is the compiler the GNU compiler?
-with_gcc=$GCC
-
-# Compiler flag to turn off builtin functions.
-no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag
-
-# Additional compiler flags for building library objects.
-pic_flag=$lt_lt_prog_compiler_pic
-
-# How to pass a linker flag through the compiler.
-wl=$lt_lt_prog_compiler_wl
-
-# Compiler flag to prevent dynamic linking.
-link_static_flag=$lt_lt_prog_compiler_static
-
-# Does compiler simultaneously support -c and -o options?
-compiler_c_o=$lt_lt_cv_prog_compiler_c_o
-
-# Whether or not to add -lc for building shared libraries.
-build_libtool_need_lc=$archive_cmds_need_lc
-
-# Whether or not to disallow shared libs when runtime libs are static.
-allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes
-
-# Compiler flag to allow reflexive dlopens.
-export_dynamic_flag_spec=$lt_export_dynamic_flag_spec
-
-# Compiler flag to generate shared objects directly from archives.
-whole_archive_flag_spec=$lt_whole_archive_flag_spec
-
-# Whether the compiler copes with passing no objects directly.
-compiler_needs_object=$lt_compiler_needs_object
-
-# Create an old-style archive from a shared archive.
-old_archive_from_new_cmds=$lt_old_archive_from_new_cmds
-
-# Create a temporary old-style archive to link instead of a shared archive.
-old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds
-
-# Commands used to build a shared archive.
-archive_cmds=$lt_archive_cmds
-archive_expsym_cmds=$lt_archive_expsym_cmds
-
-# Commands used to build a loadable module if different from building
-# a shared archive.
-module_cmds=$lt_module_cmds
-module_expsym_cmds=$lt_module_expsym_cmds
-
-# Whether we are building with GNU ld or not.
-with_gnu_ld=$lt_with_gnu_ld
-
-# Flag that allows shared libraries with undefined symbols to be built.
-allow_undefined_flag=$lt_allow_undefined_flag
-
-# Flag that enforces no undefined symbols.
-no_undefined_flag=$lt_no_undefined_flag
-
-# Flag to hardcode \$libdir into a binary during linking.
-# This must work even if \$libdir does not exist
-hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec
-
-# Whether we need a single "-rpath" flag with a separated argument.
-hardcode_libdir_separator=$lt_hardcode_libdir_separator
-
-# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes
-# DIR into the resulting binary.
-hardcode_direct=$hardcode_direct
-
-# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes
-# DIR into the resulting binary and the resulting library dependency is
-# "absolute",i.e impossible to change by setting \$shlibpath_var if the
-# library is relocated.
-hardcode_direct_absolute=$hardcode_direct_absolute
-
-# Set to "yes" if using the -LDIR flag during linking hardcodes DIR
-# into the resulting binary.
-hardcode_minus_L=$hardcode_minus_L
-
-# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
-# into the resulting binary.
-hardcode_shlibpath_var=$hardcode_shlibpath_var
-
-# Set to "yes" if building a shared library automatically hardcodes DIR
-# into the library and all subsequent libraries and executables linked
-# against it.
-hardcode_automatic=$hardcode_automatic
-
-# Set to yes if linker adds runtime paths of dependent libraries
-# to runtime path list.
-inherit_rpath=$inherit_rpath
-
-# Whether libtool must link a program against all its dependency libraries.
-link_all_deplibs=$link_all_deplibs
-
-# Set to "yes" if exported symbols are required.
-always_export_symbols=$always_export_symbols
-
-# The commands to list exported symbols.
-export_symbols_cmds=$lt_export_symbols_cmds
-
-# Symbols that should not be listed in the preloaded symbols.
-exclude_expsyms=$lt_exclude_expsyms
-
-# Symbols that must always be exported.
-include_expsyms=$lt_include_expsyms
-
-# Commands necessary for linking programs (against libraries) with templates.
-prelink_cmds=$lt_prelink_cmds
-
-# Commands necessary for finishing linking programs.
-postlink_cmds=$lt_postlink_cmds
-
-# Specify filename containing input files.
-file_list_spec=$lt_file_list_spec
-
-# How to hardcode a shared library path into an executable.
-hardcode_action=$hardcode_action
-
-# The directories searched by this compiler when creating a shared library.
-compiler_lib_search_dirs=$lt_compiler_lib_search_dirs
-
-# Dependencies to place before and after the objects being linked to
-# create a shared library.
-predep_objects=$lt_predep_objects
-postdep_objects=$lt_postdep_objects
-predeps=$lt_predeps
-postdeps=$lt_postdeps
-
-# The library search path used internally by the compiler when linking
-# a shared library.
-compiler_lib_search_path=$lt_compiler_lib_search_path
-
-# ### END LIBTOOL CONFIG
-
-_LT_EOF
-
- cat <<'_LT_EOF' >> "$cfgfile"
-
-# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE
-
-# func_munge_path_list VARIABLE PATH
-# -----------------------------------
-# VARIABLE is name of variable containing _space_ separated list of
-# directories to be munged by the contents of PATH, which is string
-# having a format:
-# "DIR[:DIR]:"
-# string "DIR[ DIR]" will be prepended to VARIABLE
-# ":DIR[:DIR]"
-# string "DIR[ DIR]" will be appended to VARIABLE
-# "DIRP[:DIRP]::[DIRA:]DIRA"
-# string "DIRP[ DIRP]" will be prepended to VARIABLE and string
-# "DIRA[ DIRA]" will be appended to VARIABLE
-# "DIR[:DIR]"
-# VARIABLE will be replaced by "DIR[ DIR]"
-func_munge_path_list ()
-{
- case x$2 in
- x)
- ;;
- *:)
- eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\"
- ;;
- x:*)
- eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\"
- ;;
- *::*)
- eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\"
- eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\"
- ;;
- *)
- eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\"
- ;;
- esac
-}
-
-
-# Calculate cc_basename. Skip known compiler wrappers and cross-prefix.
-func_cc_basename ()
-{
- for cc_temp in $*""; do
- case $cc_temp in
- compile | *[\\/]compile | ccache | *[\\/]ccache ) ;;
- distcc | *[\\/]distcc | purify | *[\\/]purify ) ;;
- \-*) ;;
- *) break;;
- esac
- done
- func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"`
-}
-
-
-# ### END FUNCTIONS SHARED WITH CONFIGURE
-
-_LT_EOF
-
- case $host_os in
- aix3*)
- cat <<\_LT_EOF >> "$cfgfile"
-# AIX sometimes has problems with the GCC collect2 program. For some
-# reason, if we set the COLLECT_NAMES environment variable, the problems
-# vanish in a puff of smoke.
-if test set != "${COLLECT_NAMES+set}"; then
- COLLECT_NAMES=
- export COLLECT_NAMES
-fi
-_LT_EOF
- ;;
- esac
-
-
-ltmain=$ac_aux_dir/ltmain.sh
-
-
- # We use sed instead of cat because bash on DJGPP gets confused if
- # if finds mixed CR/LF and LF-only lines. Since sed operates in
- # text mode, it properly converts lines to CR/LF. This bash problem
- # is reportedly fixed, but why not run on old versions too?
- sed '$q' "$ltmain" >> "$cfgfile" \
- || (rm -f "$cfgfile"; exit 1)
-
- mv -f "$cfgfile" "$ofile" ||
- (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
- chmod +x "$ofile"
-
-
- cat <<_LT_EOF >> "$ofile"
-
-# ### BEGIN LIBTOOL TAG CONFIG: CXX
-
-# The linker used to build libraries.
-LD=$lt_LD_CXX
-
-# How to create reloadable object files.
-reload_flag=$lt_reload_flag_CXX
-reload_cmds=$lt_reload_cmds_CXX
-
-# Commands used to build an old-style archive.
-old_archive_cmds=$lt_old_archive_cmds_CXX
-
-# A language specific compiler.
-CC=$lt_compiler_CXX
-
-# Is the compiler the GNU compiler?
-with_gcc=$GCC_CXX
-
-# Compiler flag to turn off builtin functions.
-no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX
-
-# Additional compiler flags for building library objects.
-pic_flag=$lt_lt_prog_compiler_pic_CXX
-
-# How to pass a linker flag through the compiler.
-wl=$lt_lt_prog_compiler_wl_CXX
-
-# Compiler flag to prevent dynamic linking.
-link_static_flag=$lt_lt_prog_compiler_static_CXX
-
-# Does compiler simultaneously support -c and -o options?
-compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX
-
-# Whether or not to add -lc for building shared libraries.
-build_libtool_need_lc=$archive_cmds_need_lc_CXX
-
-# Whether or not to disallow shared libs when runtime libs are static.
-allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX
-
-# Compiler flag to allow reflexive dlopens.
-export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX
-
-# Compiler flag to generate shared objects directly from archives.
-whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX
-
-# Whether the compiler copes with passing no objects directly.
-compiler_needs_object=$lt_compiler_needs_object_CXX
-
-# Create an old-style archive from a shared archive.
-old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX
-
-# Create a temporary old-style archive to link instead of a shared archive.
-old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX
-
-# Commands used to build a shared archive.
-archive_cmds=$lt_archive_cmds_CXX
-archive_expsym_cmds=$lt_archive_expsym_cmds_CXX
-
-# Commands used to build a loadable module if different from building
-# a shared archive.
-module_cmds=$lt_module_cmds_CXX
-module_expsym_cmds=$lt_module_expsym_cmds_CXX
-
-# Whether we are building with GNU ld or not.
-with_gnu_ld=$lt_with_gnu_ld_CXX
-
-# Flag that allows shared libraries with undefined symbols to be built.
-allow_undefined_flag=$lt_allow_undefined_flag_CXX
-
-# Flag that enforces no undefined symbols.
-no_undefined_flag=$lt_no_undefined_flag_CXX
-
-# Flag to hardcode \$libdir into a binary during linking.
-# This must work even if \$libdir does not exist
-hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX
-
-# Whether we need a single "-rpath" flag with a separated argument.
-hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX
-
-# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes
-# DIR into the resulting binary.
-hardcode_direct=$hardcode_direct_CXX
-
-# Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes
-# DIR into the resulting binary and the resulting library dependency is
-# "absolute",i.e impossible to change by setting \$shlibpath_var if the
-# library is relocated.
-hardcode_direct_absolute=$hardcode_direct_absolute_CXX
-
-# Set to "yes" if using the -LDIR flag during linking hardcodes DIR
-# into the resulting binary.
-hardcode_minus_L=$hardcode_minus_L_CXX
-
-# Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
-# into the resulting binary.
-hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX
-
-# Set to "yes" if building a shared library automatically hardcodes DIR
-# into the library and all subsequent libraries and executables linked
-# against it.
-hardcode_automatic=$hardcode_automatic_CXX
-
-# Set to yes if linker adds runtime paths of dependent libraries
-# to runtime path list.
-inherit_rpath=$inherit_rpath_CXX
-
-# Whether libtool must link a program against all its dependency libraries.
-link_all_deplibs=$link_all_deplibs_CXX
-
-# Set to "yes" if exported symbols are required.
-always_export_symbols=$always_export_symbols_CXX
-
-# The commands to list exported symbols.
-export_symbols_cmds=$lt_export_symbols_cmds_CXX
-
-# Symbols that should not be listed in the preloaded symbols.
-exclude_expsyms=$lt_exclude_expsyms_CXX
-
-# Symbols that must always be exported.
-include_expsyms=$lt_include_expsyms_CXX
-
-# Commands necessary for linking programs (against libraries) with templates.
-prelink_cmds=$lt_prelink_cmds_CXX
-
-# Commands necessary for finishing linking programs.
-postlink_cmds=$lt_postlink_cmds_CXX
-
-# Specify filename containing input files.
-file_list_spec=$lt_file_list_spec_CXX
-
-# How to hardcode a shared library path into an executable.
-hardcode_action=$hardcode_action_CXX
-
-# The directories searched by this compiler when creating a shared library.
-compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX
-
-# Dependencies to place before and after the objects being linked to
-# create a shared library.
-predep_objects=$lt_predep_objects_CXX
-postdep_objects=$lt_postdep_objects_CXX
-predeps=$lt_predeps_CXX
-postdeps=$lt_postdeps_CXX
-
-# The library search path used internally by the compiler when linking
-# a shared library.
-compiler_lib_search_path=$lt_compiler_lib_search_path_CXX
-
-# ### END LIBTOOL TAG CONFIG: CXX
-_LT_EOF
-
- ;;
-
- esac
-done # for ac_tag
-
-
-as_fn_exit 0