From a812a76e8db091737a3823c57e65dcf4108de79f Mon Sep 17 00:00:00 2001 From: Justin Swanhart Date: Fri, 27 May 2016 09:47:39 -0400 Subject: [PATCH] [MCOL-69] - improve build process Add .gitignore file to omit autoconf artificats Modify bootstrap to: No longer copy binaries into export Create export/mysql directory properly Check for errors when generating version header Run configure Check for errors when running configure Modify genVersion.h to: Place versionnumber.h into dbcon/mysql, the only place it appears to be used It was being generated in the install prefix, thus when using a non-user path like /usr/local/PREFIX it would fail to generate the version number header, because the user compiling the software does not have write permission. This necessitated building as root, this will resolve that. Remove config.log, an autotools artifact Add autoconf templates for mcsadmin --- .gitignore | 90 + build/bootstrap | 84 +- build/genVersion.sh | 8 +- config.log | 5068 ---------------------------------- dbcon/mysql/Makefile.in | 2 +- oamapps/mcsadmin/Makefile.am | 39 + oamapps/mcsadmin/Makefile.in | 529 ++++ 7 files changed, 719 insertions(+), 5101 deletions(-) create mode 100644 .gitignore delete mode 100644 config.log create mode 100644 oamapps/mcsadmin/Makefile.am create mode 100644 oamapps/mcsadmin/Makefile.in diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..d96c241fd --- /dev/null +++ b/.gitignore @@ -0,0 +1,90 @@ +.deps/ +*.d.* +config.log +versionnumber.h +# dbcon/ddlpackage/.deps/ +# dbcon/ddlpackageproc/.deps/ +# dbcon/dmlpackage/.deps/ +# dbcon/dmlpackageproc/.deps/ +# dbcon/execplan/.deps/ +# dbcon/joblist/.deps/ +# dbcon/mysql/.deps/ +# ddlproc/.deps/ +# ddlproc/ddlproc.d.32581 +# ddlproc/ddlprocessor.d.32574 +# decomsvr/.deps/ +# dmlproc/.deps/ +# dmlproc/batchinsertprocessor.d.32601 +# dmlproc/dmlproc.d.32622 +# dmlproc/dmlprocessor.d.32615 +# dmlproc/dmlresultbuffer.d.32608 +# doit +# exemgr/.deps/ +# export/ +# oam/oamcpp/.deps/ +# oamapps/calpontDB/.deps/ +# oamapps/calpontSupport/.deps/ +# oamapps/mcsadmin/.deps/ +# oamapps/mcsadmin/Makefile.am +# oamapps/mcsadmin/Makefile.in +# oamapps/postConfigure/.deps/ +# oamapps/sendtrap/.deps/ +# oamapps/serverMonitor/.deps/ +# oamapps/sessionWalker/.deps/ +# oamapps/traphandler/.deps/ +# primitives/blockcache/.deps/ +# primitives/linux-port/.deps/ +# primitives/primproc/.deps/ +# procmgr/.deps/ +# procmon/.deps/ +# procmon/main.d.469 +# procmon/processmonitor.d.462 +# reset.sh +# snmpd/snmpmanager/.deps/ +# sorted.txt +# tools/clearShm/.deps/ +# tools/cleartablelock/.deps/ +# tools/configMgt/.deps/ +# tools/cplogger/.deps/ +# tools/dbbuilder/.deps/ +# tools/dbloadxml/.deps/ +# tools/ddlcleanup/.deps/ +# tools/editem/.deps/ +# tools/getConfig/.deps/ +# tools/idbmeminfo/.deps/ +# tools/setConfig/.deps/ +# tools/viewtablelock/.deps/ +# utils/batchloader/.deps/ +# utils/boost_idb/.deps/ +# utils/cacheutils/.deps/ +# utils/common/.deps/ +# utils/compress/.deps/ +# utils/configcpp/.deps/ +# utils/dataconvert/.deps/ +# utils/ddlcleanup/.deps/ +# utils/funcexp/.deps/ +# utils/idbdatafile/.deps/ +# utils/idbhdfs/hdfs-12/.deps/ +# utils/idbhdfs/hdfs-20/.deps/ +# utils/joiner/.deps/ +# utils/loggingcpp/.deps/ +# utils/messageqcpp/.deps/ +# utils/mysqlcl_idb/.deps/ +# utils/querystats/.deps/ +# utils/querytele/.deps/ +# utils/rowgroup/.deps/ +# utils/rwlock/.deps/ +# utils/startup/.deps/ +# utils/threadpool/.deps/ +# utils/thrift/.deps/ +# utils/udfsdk/.deps/ +# utils/windowfunction/.deps/ +# versioning/BRM/.deps/ +# writeengine/bulk/.deps/ +# writeengine/client/.deps/ +# writeengine/redistribute/.deps/ +# writeengine/server/.deps/ +# writeengine/splitter/.deps/ +# writeengine/wrapper/.deps/ +# writeengine/xml/.deps/ +nothing added to commit but untracked files present (use "git add" to track) diff --git a/build/bootstrap b/build/bootstrap index 52e736dba..2ff620a61 100755 --- a/build/bootstrap +++ b/build/bootstrap @@ -6,19 +6,31 @@ # following a git checkout. It copies static files and shared include # files to the export tree prior to building the software. -mkdir -p export/{include,lib,etc,share,bin,sbin,post} +mkdir -p export/{include,lib,etc,share,bin,sbin,post,mysql} if [ ! $$ ]; then exit 1 fi -cp build/gdb export/bin -cp build/libgcc_s.so.1 export/lib -cp build/libstdc++.so.6.0.14 export/lib +#TODO: these prebuilt binaries may need to be fetched +#and built as dependencies -cp build/files.lst $HOME/mariadb-columnstore-server/export/mysql/. -cp dbcon/mysql/install_calpont_mysql.sh $HOME/mariadb-columnstore-server/export/mysql/. -cp dbcon/mysql/my.cnf $HOME/mariadb-columnstore-server/export/mysql/. -cp dbcon/mysql/mysql-Columnstore $HOME/mariadb-columnstore-server/export/mysql/. +#cp build/gdb export/bin +#cp build/libgcc_s.so.1 export/lib +#cp build/libstdc++.so.6.0.14 export/lib + +#FIXME rename this +cp dbcon/mysql/install_calpont_mysql.sh export/mysql/ + +#TODO: see if this my.cnf is necessary +cp dbcon/mysql/my.cnf export/mysql/. + +#TODO: the init.d service file should not be mixed case +#TODO: the init.d service file should not contain calpont +cp dbcon/mysql/mysql-Columnstore export/mysql/ && \ +cp build/files.lst export/mysql/ && \ +cp dbcon/mysql/install_calpont_mysql.sh export/mysql/ && \ +cp dbcon/mysql/my.cnf export/mysql/ && \ +cp dbcon/mysql/mysql-Columnstore export/mysql/ if [ ! $$ ]; then exit 1 @@ -26,29 +38,45 @@ fi cp -p -r utils/net-snmp export/include -if [ `uname -m` == "x86_64" ]; then - cp -p utils/net-snmp-built-libs/lib64/* export/lib - cp -p utils/net-snmp-built-libs/bin64/* export/sbin -else - egrep -qs Constantine /etc/redhat-release - if [ $? -eq 0 ]; then - cp -p utils/net-snmp-built-libs/fc12lib/libnetsnmp*.so.* export/lib - cp -p utils/net-snmp-built-libs/fc12bin/* export/sbin - else - cp -p utils/net-snmp-built-libs/fc6lib/libnetsnmp*.so.* export/lib - cp -p utils/net-snmp-built-libs/fc6bin/* export/sbin - fi -fi +#FIXME: +# This has to be terribly broken, especially for 32 bit +# platforms. There should be no PRE-BUILT tools in someting +# that is being built. If we need a custom compilation of +# net-snmp for some reason then we will have to BUILD IT +# as part of the bootstrap process. +# I am commenting this out to see exactly what breaks in the build +# process. +## if [ `uname -m` == "x86_64" ]; then +## cp -p utils/net-snmp-built-libs/lib64/* export/lib +## cp -p utils/net-snmp-built-libs/bin64/* export/sbin +## else +## egrep -qs Constantine /etc/redhat-release +## if [ $? -eq 0 ]; then +## cp -p utils/net-snmp-built-libs/fc12lib/libnetsnmp*.so.* export/lib +## cp -p utils/net-snmp-built-libs/fc12bin/* export/sbin +## else +## cp -p utils/net-snmp-built-libs/fc6lib/libnetsnmp*.so.* export/lib +## cp -p utils/net-snmp-built-libs/fc6bin/* export/sbin +## fi +## fi -pushd export/lib >/dev/null -for lib in libnetsnmpagent.so libnetsnmphelpers.so libnetsnmpmibs.so libnetsnmp.so libnetsnmptrapd.so; do - rm -f ${lib} ${lib}.5 - ln -s ${lib}.5.2.1 ${lib}.5 - ln -s ${lib}.5.2.1 ${lib} -done -popd >/dev/null +## pushd export/lib >/dev/null +## for lib in libnetsnmpagent.so libnetsnmphelpers.so libnetsnmpmibs.so libnetsnmp.so libnetsnmptrapd.so; do +## rm -f ${lib} ${lib}.5 +## ln -s ${lib}.5.2.1 ${lib}.5 +## ln -s ${lib}.5.2.1 ${lib} +## done +## popd >/dev/null ./build/genVersion.sh +if [ ! $$ ]; then + exit 1 +fi + +./configure +if [ ! $$ ]; then + exit 1 +fi for x in \ $(find . -name '[mM]akefile' \ diff --git a/build/genVersion.sh b/build/genVersion.sh index 6a2cc73a8..fafd5593f 100755 --- a/build/genVersion.sh +++ b/build/genVersion.sh @@ -38,12 +38,12 @@ echo " const std::string idb_version(\"$version\"); const std::string idb_release(\"$release\"); #endif -" > ${prefix}/include/versionnumber.h.tmp +" > dbcon/mysql/versionnumber.h.tmp -diff -bBq ${prefix}/include/versionnumber.h.tmp ${prefix}/include/versionnumber.h >/dev/null 2>&1 +diff -bBq dbcon/mysql/versionnumber.h.tmp dbcon/mysql/versionnumber.h >/dev/null 2>&1 if [ $? -ne 0 ]; then - cp ${prefix}/include/versionnumber.h.tmp ${prefix}/include/versionnumber.h + cp dbcon/mysql/versionnumber.h.tmp dbcon/mysql/versionnumber.h fi -rm -f ${prefix}/include/versionnumber.h.tmp +rm -f dbcon/mysql/versionnumber.h.tmp diff --git a/config.log b/config.log deleted file mode 100644 index ea81f8654..000000000 --- a/config.log +++ /dev/null @@ -1,5068 +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 infinidb configure 4.6.1, which was -generated by GNU Autoconf 2.59. Invocation command line was - - $ ./configure - -## --------- ## -## Platform. ## -## --------- ## - -hostname = srvhall03 -uname -m = x86_64 -uname -r = 2.6.32-431.29.2.el6.x86_64 -uname -s = Linux -uname -v = #1 SMP Tue Sep 9 21:36:05 UTC 2014 - -/usr/bin/uname -p = unknown -/bin/uname -X = unknown - -/bin/arch = x86_64 -/usr/bin/arch -k = unknown -/usr/convex/getsysinfo = unknown -hostinfo = unknown -/bin/machine = unknown -/usr/bin/oslevel = unknown -/bin/universe = unknown - -PATH: /usr/local/MariaDB/Columnstore/bin -PATH: /home/calpont/bin -PATH: /usr/local/MariaDB/Columnstore/bin -PATH: /home/calpont/bin -PATH: /usr/lib64/qt-3.3/bin -PATH: /usr/local/bin -PATH: /usr/bin -PATH: /bin -PATH: /usr/local/sbin -PATH: /usr/sbin -PATH: /sbin -PATH: /home/calpont/bin - - -## ----------- ## -## Core tests. ## -## ----------- ## - -configure:1567: checking for a BSD-compatible install -configure:1623: result: /usr/bin/install -p -configure:1634: checking whether build environment is sane -configure:1677: result: yes -configure:1742: checking for gawk -configure:1758: found /usr/bin/gawk -configure:1768: result: gawk -configure:1778: checking whether make sets $(MAKE) -configure:1798: result: yes -configure:2025: checking for gcc -configure:2041: found /usr/bin/gcc -configure:2051: result: gcc -configure:2295: checking for C compiler version -configure:2298: gcc --version &5 -gcc (GCC) 4.4.7 20120313 (Red Hat 4.4.7-11) -Copyright (C) 2010 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:2301: $? = 0 -configure:2303: gcc -v &5 -Using built-in specs. -Target: x86_64-redhat-linux -Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre --enable-libgcj-multifile --enable-java-maintainer-mode --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --disable-libjava-multilib --with-ppl --with-cloog --with-tune=generic --with-arch_32=i686 --build=x86_64-redhat-linux -Thread model: posix -gcc version 4.4.7 20120313 (Red Hat 4.4.7-11) (GCC) -configure:2306: $? = 0 -configure:2308: gcc -V &5 -gcc: '-V' option must have argument -configure:2311: $? = 1 -configure:2334: checking for C compiler default output file name -configure:2337: gcc conftest.c >&5 -configure:2340: $? = 0 -configure:2386: result: a.out -configure:2391: checking whether the C compiler works -configure:2397: ./a.out -configure:2400: $? = 0 -configure:2417: result: yes -configure:2424: checking whether we are cross compiling -configure:2426: result: no -configure:2429: checking for suffix of executables -configure:2431: gcc -o conftest conftest.c >&5 -configure:2434: $? = 0 -configure:2459: result: -configure:2465: checking for suffix of object files -configure:2486: gcc -c conftest.c >&5 -configure:2489: $? = 0 -configure:2511: result: o -configure:2515: checking whether we are using the GNU C compiler -configure:2539: gcc -c conftest.c >&5 -configure:2545: $? = 0 -configure:2549: test -z - || test ! -s conftest.err -configure:2552: $? = 0 -configure:2555: test -s conftest.o -configure:2558: $? = 0 -configure:2571: result: yes -configure:2577: checking whether gcc accepts -g -configure:2598: gcc -c -g conftest.c >&5 -configure:2604: $? = 0 -configure:2608: test -z - || test ! -s conftest.err -configure:2611: $? = 0 -configure:2614: test -s conftest.o -configure:2617: $? = 0 -configure:2628: result: yes -configure:2645: checking for gcc option to accept ANSI C -configure:2715: gcc -c conftest.c >&5 -configure:2721: $? = 0 -configure:2725: test -z - || test ! -s conftest.err -configure:2728: $? = 0 -configure:2731: test -s conftest.o -configure:2734: $? = 0 -configure:2752: result: none needed -configure:2770: gcc -c conftest.c >&5 -conftest.c:2: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'me' -configure:2776: $? = 1 -configure: failed program was: -| #ifndef __cplusplus -| choke me -| #endif -configure:2920: checking for style of include used by make -configure:2948: result: GNU -configure:2976: checking dependency style of gcc -configure:3066: result: gcc3 -configure:3140: checking for g++ -configure:3156: found /usr/bin/g++ -configure:3166: result: g++ -configure:3182: checking for C++ compiler version -configure:3185: g++ --version &5 -g++ (GCC) 4.4.7 20120313 (Red Hat 4.4.7-11) -Copyright (C) 2010 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:3188: $? = 0 -configure:3190: g++ -v &5 -Using built-in specs. -Target: x86_64-redhat-linux -Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre --enable-libgcj-multifile --enable-java-maintainer-mode --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --disable-libjava-multilib --with-ppl --with-cloog --with-tune=generic --with-arch_32=i686 --build=x86_64-redhat-linux -Thread model: posix -gcc version 4.4.7 20120313 (Red Hat 4.4.7-11) (GCC) -configure:3193: $? = 0 -configure:3195: g++ -V &5 -g++: '-V' option must have argument -configure:3198: $? = 1 -configure:3201: checking whether we are using the GNU C++ compiler -configure:3225: g++ -c conftest.cc >&5 -configure:3231: $? = 0 -configure:3235: test -z - || test ! -s conftest.err -configure:3238: $? = 0 -configure:3241: test -s conftest.o -configure:3244: $? = 0 -configure:3257: result: yes -configure:3263: checking whether g++ accepts -g -configure:3284: g++ -c -g conftest.cc >&5 -configure:3290: $? = 0 -configure:3294: test -z - || test ! -s conftest.err -configure:3297: $? = 0 -configure:3300: test -s conftest.o -configure:3303: $? = 0 -configure:3314: result: yes -configure:3356: g++ -c conftest.cc >&5 -configure:3362: $? = 0 -configure:3366: test -z - || test ! -s conftest.err -configure:3369: $? = 0 -configure:3372: test -s conftest.o -configure:3375: $? = 0 -configure:3401: g++ -c conftest.cc >&5 -conftest.cc: In function 'int main()': -conftest.cc:15: error: 'exit' was not declared in this scope -configure:3407: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "infinidb" -| #define PACKAGE_TARNAME "infinidb" -| #define PACKAGE_VERSION "4.6.1" -| #define PACKAGE_STRING "infinidb 4.6.1" -| #define PACKAGE_BUGREPORT "support@infinidb.co" -| #define PACKAGE "infinidb" -| #define VERSION "4.6.1" -| /* end confdefs.h. */ -| -| int -| main () -| { -| exit (42); -| ; -| return 0; -| } -configure:3356: g++ -c conftest.cc >&5 -conftest.cc:11: error: 'void std::exit(int)' should have been declared inside 'std' -configure:3362: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "infinidb" -| #define PACKAGE_TARNAME "infinidb" -| #define PACKAGE_VERSION "4.6.1" -| #define PACKAGE_STRING "infinidb 4.6.1" -| #define PACKAGE_BUGREPORT "support@infinidb.co" -| #define PACKAGE "infinidb" -| #define VERSION "4.6.1" -| /* end confdefs.h. */ -| extern "C" void std::exit (int) throw (); using std::exit; -| #include -| int -| main () -| { -| exit (42); -| ; -| return 0; -| } -configure:3356: g++ -c conftest.cc >&5 -conftest.cc:11: error: 'void std::exit(int)' should have been declared inside 'std' -In file included from conftest.cc:12: -/usr/include/stdlib.h:544: error: declaration of 'void std::exit(int) throw ()' throws different exceptions -conftest.cc:11: error: from previous declaration 'void std::exit(int)' -configure:3362: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "infinidb" -| #define PACKAGE_TARNAME "infinidb" -| #define PACKAGE_VERSION "4.6.1" -| #define PACKAGE_STRING "infinidb 4.6.1" -| #define PACKAGE_BUGREPORT "support@infinidb.co" -| #define PACKAGE "infinidb" -| #define VERSION "4.6.1" -| /* end confdefs.h. */ -| extern "C" void std::exit (int); using std::exit; -| #include -| int -| main () -| { -| exit (42); -| ; -| return 0; -| } -configure:3356: g++ -c conftest.cc >&5 -configure:3362: $? = 0 -configure:3366: test -z - || test ! -s conftest.err -configure:3369: $? = 0 -configure:3372: test -s conftest.o -configure:3375: $? = 0 -configure:3401: g++ -c conftest.cc >&5 -configure:3407: $? = 0 -configure:3411: test -z - || test ! -s conftest.err -configure:3414: $? = 0 -configure:3417: test -s conftest.o -configure:3420: $? = 0 -configure:3445: checking dependency style of g++ -configure:3535: result: gcc3 -configure:3635: checking build system type -configure:3653: result: x86_64-unknown-linux-gnu -configure:3661: checking host system type -configure:3675: result: x86_64-unknown-linux-gnu -configure:3683: checking for a sed that does not truncate output -configure:3739: result: /bin/sed -configure:3742: checking for egrep -configure:3752: result: grep -E -configure:3768: checking for ld used by gcc -configure:3835: result: /usr/bin/ld -configure:3844: checking if the linker (/usr/bin/ld) is GNU ld -configure:3859: result: yes -configure:3864: checking for /usr/bin/ld option to reload object files -configure:3871: result: -r -configure:3889: checking for BSD-compatible nm -configure:3938: result: /usr/bin/nm -B -configure:3942: checking whether ln -s works -configure:3946: result: yes -configure:3953: checking how to recognise dependent libraries -configure:4129: result: pass_all -configure:4217: g++ -c conftest.cc >&5 -configure:4220: $? = 0 -configure:4366: checking how to run the C preprocessor -configure:4401: gcc -E conftest.c -configure:4407: $? = 0 -configure:4439: gcc -E conftest.c -conftest.c:14:28: error: ac_nonexistent.h: No such file or directory -configure:4445: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "infinidb" -| #define PACKAGE_TARNAME "infinidb" -| #define PACKAGE_VERSION "4.6.1" -| #define PACKAGE_STRING "infinidb 4.6.1" -| #define PACKAGE_BUGREPORT "support@infinidb.co" -| #define PACKAGE "infinidb" -| #define VERSION "4.6.1" -| #ifdef __cplusplus -| extern "C" void exit (int) throw (); -| #endif -| /* end confdefs.h. */ -| #include -configure:4484: result: gcc -E -configure:4508: gcc -E conftest.c -configure:4514: $? = 0 -configure:4546: gcc -E conftest.c -conftest.c:14:28: error: ac_nonexistent.h: No such file or directory -configure:4552: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "infinidb" -| #define PACKAGE_TARNAME "infinidb" -| #define PACKAGE_VERSION "4.6.1" -| #define PACKAGE_STRING "infinidb 4.6.1" -| #define PACKAGE_BUGREPORT "support@infinidb.co" -| #define PACKAGE "infinidb" -| #define VERSION "4.6.1" -| #ifdef __cplusplus -| extern "C" void exit (int) throw (); -| #endif -| /* end confdefs.h. */ -| #include -configure:4596: checking for ANSI C header files -configure:4621: gcc -c conftest.c >&5 -configure:4627: $? = 0 -configure:4631: test -z - || test ! -s conftest.err -configure:4634: $? = 0 -configure:4637: test -s conftest.o -configure:4640: $? = 0 -configure:4729: gcc -o conftest conftest.c >&5 -conftest.c: In function 'main': -conftest.c:31: warning: incompatible implicit declaration of built-in function 'exit' -configure:4732: $? = 0 -configure:4734: ./conftest -configure:4737: $? = 0 -configure:4752: result: yes -configure:4776: checking for sys/types.h -configure:4792: gcc -c conftest.c >&5 -configure:4798: $? = 0 -configure:4802: test -z - || test ! -s conftest.err -configure:4805: $? = 0 -configure:4808: test -s conftest.o -configure:4811: $? = 0 -configure:4822: result: yes -configure:4776: checking for sys/stat.h -configure:4792: gcc -c conftest.c >&5 -configure:4798: $? = 0 -configure:4802: test -z - || test ! -s conftest.err -configure:4805: $? = 0 -configure:4808: test -s conftest.o -configure:4811: $? = 0 -configure:4822: result: yes -configure:4776: checking for stdlib.h -configure:4792: gcc -c conftest.c >&5 -configure:4798: $? = 0 -configure:4802: test -z - || test ! -s conftest.err -configure:4805: $? = 0 -configure:4808: test -s conftest.o -configure:4811: $? = 0 -configure:4822: result: yes -configure:4776: checking for string.h -configure:4792: gcc -c conftest.c >&5 -configure:4798: $? = 0 -configure:4802: test -z - || test ! -s conftest.err -configure:4805: $? = 0 -configure:4808: test -s conftest.o -configure:4811: $? = 0 -configure:4822: result: yes -configure:4776: checking for memory.h -configure:4792: gcc -c conftest.c >&5 -configure:4798: $? = 0 -configure:4802: test -z - || test ! -s conftest.err -configure:4805: $? = 0 -configure:4808: test -s conftest.o -configure:4811: $? = 0 -configure:4822: result: yes -configure:4776: checking for strings.h -configure:4792: gcc -c conftest.c >&5 -configure:4798: $? = 0 -configure:4802: test -z - || test ! -s conftest.err -configure:4805: $? = 0 -configure:4808: test -s conftest.o -configure:4811: $? = 0 -configure:4822: result: yes -configure:4776: checking for inttypes.h -configure:4792: gcc -c conftest.c >&5 -configure:4798: $? = 0 -configure:4802: test -z - || test ! -s conftest.err -configure:4805: $? = 0 -configure:4808: test -s conftest.o -configure:4811: $? = 0 -configure:4822: result: yes -configure:4776: checking for stdint.h -configure:4792: gcc -c conftest.c >&5 -configure:4798: $? = 0 -configure:4802: test -z - || test ! -s conftest.err -configure:4805: $? = 0 -configure:4808: test -s conftest.o -configure:4811: $? = 0 -configure:4822: result: yes -configure:4776: checking for unistd.h -configure:4792: gcc -c conftest.c >&5 -configure:4798: $? = 0 -configure:4802: test -z - || test ! -s conftest.err -configure:4805: $? = 0 -configure:4808: test -s conftest.o -configure:4811: $? = 0 -configure:4822: result: yes -configure:4848: checking dlfcn.h usability -configure:4860: gcc -c conftest.c >&5 -configure:4866: $? = 0 -configure:4870: test -z - || test ! -s conftest.err -configure:4873: $? = 0 -configure:4876: test -s conftest.o -configure:4879: $? = 0 -configure:4889: result: yes -configure:4893: checking dlfcn.h presence -configure:4903: gcc -E conftest.c -configure:4909: $? = 0 -configure:4929: result: yes -configure:4964: checking for dlfcn.h -configure:4971: result: yes -configure:4994: checking how to run the C++ preprocessor -configure:5025: g++ -E conftest.cc -configure:5031: $? = 0 -configure:5063: g++ -E conftest.cc -conftest.cc:25:28: error: ac_nonexistent.h: No such file or directory -configure:5069: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "infinidb" -| #define PACKAGE_TARNAME "infinidb" -| #define PACKAGE_VERSION "4.6.1" -| #define PACKAGE_STRING "infinidb 4.6.1" -| #define PACKAGE_BUGREPORT "support@infinidb.co" -| #define PACKAGE "infinidb" -| #define VERSION "4.6.1" -| #ifdef __cplusplus -| extern "C" void exit (int) throw (); -| #endif -| #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 -| /* end confdefs.h. */ -| #include -configure:5108: result: g++ -E -configure:5132: g++ -E conftest.cc -configure:5138: $? = 0 -configure:5170: g++ -E conftest.cc -conftest.cc:25:28: error: ac_nonexistent.h: No such file or directory -configure:5176: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "infinidb" -| #define PACKAGE_TARNAME "infinidb" -| #define PACKAGE_VERSION "4.6.1" -| #define PACKAGE_STRING "infinidb 4.6.1" -| #define PACKAGE_BUGREPORT "support@infinidb.co" -| #define PACKAGE "infinidb" -| #define VERSION "4.6.1" -| #ifdef __cplusplus -| extern "C" void exit (int) throw (); -| #endif -| #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 -| /* end confdefs.h. */ -| #include -configure:5273: checking for g77 -configure:5302: result: no -configure:5273: checking for f77 -configure:5302: result: no -configure:5273: checking for xlf -configure:5302: result: no -configure:5273: checking for frt -configure:5302: result: no -configure:5273: checking for pgf77 -configure:5302: result: no -configure:5273: checking for fort77 -configure:5302: result: no -configure:5273: checking for fl32 -configure:5302: result: no -configure:5273: checking for af77 -configure:5302: result: no -configure:5273: checking for f90 -configure:5302: result: no -configure:5273: checking for xlf90 -configure:5302: result: no -configure:5273: checking for pgf90 -configure:5302: result: no -configure:5273: checking for epcf90 -configure:5302: result: no -configure:5273: checking for f95 -configure:5302: result: no -configure:5273: checking for fort -configure:5302: result: no -configure:5273: checking for xlf95 -configure:5302: result: no -configure:5273: checking for ifc -configure:5302: result: no -configure:5273: checking for efc -configure:5302: result: no -configure:5273: checking for pgf95 -configure:5302: result: no -configure:5273: checking for lf95 -configure:5302: result: no -configure:5273: checking for gfortran -configure:5302: result: no -configure:5314: checking for Fortran 77 compiler version -configure:5317: --version &5 -./configure: line 5318: --version: command not found -configure:5320: $? = 127 -configure:5322: -v &5 -./configure: line 5323: -v: command not found -configure:5325: $? = 127 -configure:5327: -V &5 -./configure: line 5328: -V: command not found -configure:5330: $? = 127 -configure:5338: checking whether we are using the GNU Fortran 77 compiler -configure:5352: -c conftest.F >&5 -./configure: line 5353: -c: command not found -configure:5358: $? = 127 -configure: failed program was: -| program main -| #ifndef __GNUC__ -| choke me -| #endif -| -| end -configure:5384: result: no -configure:5390: checking whether accepts -g -configure:5402: -c -g conftest.f >&5 -./configure: line 5403: -c: command not found -configure:5408: $? = 127 -configure: failed program was: -| program main -| -| end -configure:5433: result: no -configure:5463: checking the maximum length of command line arguments -configure:5572: result: 32768 -configure:5583: checking command to parse /usr/bin/nm -B output from gcc object -configure:5688: g++ -c conftest.cc >&5 -configure:5691: $? = 0 -configure:5695: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm -configure:5698: $? = 0 -configure:5750: g++ -o conftest conftest.cc conftstm.o >&5 -configure:5753: $? = 0 -configure:5791: result: ok -configure:5795: checking for objdir -configure:5810: result: .libs -configure:5900: checking for ar -configure:5916: found /usr/bin/ar -configure:5927: result: ar -configure:5980: checking for ranlib -configure:5996: found /usr/bin/ranlib -configure:6007: result: ranlib -configure:6060: checking for strip -configure:6076: found /usr/bin/strip -configure:6087: result: strip -configure:6359: checking if gcc supports -fno-rtti -fno-exceptions -configure:6377: gcc -c -fno-rtti -fno-exceptions conftest.c >&5 -cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ but not for C -configure:6381: $? = 0 -configure:6394: result: no -configure:6409: checking for gcc option to produce PIC -configure:6619: result: -fPIC -configure:6627: checking if gcc PIC flag -fPIC works -configure:6645: gcc -c -fPIC -DPIC conftest.c >&5 -configure:6649: $? = 0 -configure:6662: result: yes -configure:6690: checking if gcc static flag -static works -configure:6718: result: no -configure:6728: checking if gcc supports -c -o file.o -configure:6749: gcc -c -o out/conftest2.o conftest.c >&5 -configure:6753: $? = 0 -configure:6775: result: yes -configure:6801: checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries -configure:7759: result: yes -configure:7780: checking whether -lc should be explicitly linked in -configure:7785: gcc -c conftest.c >&5 -configure:7788: $? = 0 -configure:7803: gcc -shared conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| grep -lc \>/dev/null 2\>\&1 -configure:7806: $? = 0 -configure:7818: result: no -configure:7826: checking dynamic linker characteristics -configure:8219: gcc -c conftest.c >&5 -configure:8222: $? = 0 -configure:8435: result: GNU/Linux ld.so -configure:8444: checking how to hardcode library paths into programs -configure:8469: result: immediate -configure:8483: checking whether stripping libraries is possible -configure:8488: result: yes -configure:9322: checking if libtool supports shared libraries -configure:9324: result: yes -configure:9327: checking whether to build shared libraries -configure:9348: result: yes -configure:9351: checking whether to build static libraries -configure:9355: result: no -configure:9447: creating libtool -configure:10038: checking for ld used by g++ -configure:10105: result: /usr/bin/ld -m elf_x86_64 -configure:10114: checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld -configure:10129: result: yes -configure:10180: checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries -configure:11118: result: yes -configure:11136: g++ -c conftest.cpp >&5 -configure:11139: $? = 0 -configure:11258: checking for g++ option to produce PIC -configure:11532: result: -fPIC -configure:11540: checking if g++ PIC flag -fPIC works -configure:11558: g++ -c -fPIC -DPIC conftest.cpp >&5 -configure:11562: $? = 0 -configure:11575: result: yes -configure:11603: checking if g++ static flag -static works -configure:11631: result: no -configure:11641: checking if g++ supports -c -o file.o -configure:11662: g++ -c -o out/conftest2.o conftest.cpp >&5 -configure:11666: $? = 0 -configure:11688: result: yes -configure:11714: checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries -configure:11739: result: yes -configure:11806: checking dynamic linker characteristics -configure:12199: g++ -c conftest.cpp >&5 -configure:12202: $? = 0 -configure:12415: result: GNU/Linux ld.so -configure:12424: checking how to hardcode library paths into programs -configure:12449: result: immediate -configure:18666: checking for a BSD-compatible install -configure:18722: result: /usr/bin/install -p -configure:18737: checking for flex -configure:18753: found /usr/bin/flex -configure:18763: result: flex -configure:18776: checking for yywrap in -lfl -configure:18806: g++ -o conftest conftest.cc -lfl >&5 -configure:18812: $? = 0 -configure:18816: test -z - || test ! -s conftest.err -configure:18819: $? = 0 -configure:18822: test -s conftest -configure:18825: $? = 0 -configure:18838: result: yes -configure:18916: checking lex output file root -configure:18927: flex conftest.l -configure:18930: $? = 0 -configure:18942: result: lex.yy -configure:18947: checking whether yytext is a pointer -configure:18963: g++ -o conftest conftest.cc -lfl >&5 -/usr/lib/gcc/x86_64-redhat-linux/4.4.7/../../../../lib64/libfl.a(libmain.o): In function `main': -(.text+0xb): undefined reference to `yylex' -collect2: ld returned 1 exit status -configure:18969: $? = 1 -configure: failed program was: -| -| #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 5 -| #define YY_FLEX_SUBMINOR_VERSION 35 -| #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 -| #include -| #include -| #include -| -| /* end standard C headers. */ -| -| /* flex integer type definitions */ -| -| #ifndef FLEXINT_H -| #define FLEXINT_H -| -| /* C99 systems have . 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 -| 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; -| #endif /* ! C99 */ -| -| /* 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 -| -| #endif /* ! FLEXINT_H */ -| -| #ifdef __cplusplus -| -| /* The "const" storage-class-modifier is valid. */ -| #define YY_USE_CONST -| -| #else /* ! __cplusplus */ -| -| /* C99 requires __STDC__ to be defined as 1. */ -| #if defined (__STDC__) -| -| #define YY_USE_CONST -| -| #endif /* defined (__STDC__) */ -| #endif /* ! __cplusplus */ -| -| #ifdef YY_USE_CONST -| #define yyconst const -| #else -| #define yyconst -| #endif -| -| /* Returned upon end-of-file. */ -| #define YY_NULL 0 -| -| /* Promotes a possibly negative, possibly signed char to an unsigned -| * integer for use as an array index. If the signed char is negative, -| * we want to instead treat it as an 8-bit unsigned char, hence the -| * double cast. -| */ -| #define YY_SC_TO_UI(c) ((unsigned int) (unsigned 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 -| #define YY_BUF_SIZE 16384 -| #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 -| -| 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) -| -| /* 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_TYPEDEF_YY_SIZE_T -| #define YY_TYPEDEF_YY_SIZE_T -| typedef size_t yy_size_t; -| #endif -| -| #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. -| */ -| yy_size_t 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 = 0; /**< 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 = (char *) 0; -| 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 (yyconst char *yy_str ); -| YY_BUFFER_STATE yy_scan_bytes (yyconst 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 unsigned char YY_CHAR; -| -| FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; -| -| typedef int yy_state_type; -| -| extern int yylineno; -| -| int yylineno = 1; -| -| extern char *yytext; -| #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 yy_fatal_error (yyconst 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; \ -| yyleng = (size_t) (yy_cp - yy_bp); \ -| (yy_hold_char) = *yy_cp; \ -| *yy_cp = '\0'; \ -| (yy_c_buf_p) = yy_cp; -| -| #define YY_NUM_RULES 1 -| #define YY_END_OF_BUFFER 2 -| /* 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 yyconst flex_int16_t yy_accept[6] = -| { 0, -| 0, 0, 2, 1, 0 -| } ; -| -| static yyconst flex_int32_t yy_ec[256] = -| { 0, -| 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, 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 yyconst flex_int32_t yy_meta[2] = -| { 0, -| 1 -| } ; -| -| static yyconst flex_int16_t yy_base[7] = -| { 0, -| 0, 0, 2, 3, 3, 0 -| } ; -| -| static yyconst flex_int16_t yy_def[7] = -| { 0, -| 6, 6, 5, 5, 0, 5 -| } ; -| -| static yyconst flex_int16_t yy_nxt[5] = -| { 0, -| 4, 5, 3, 5 -| } ; -| -| static yyconst flex_int16_t yy_chk[5] = -| { 0, -| 6, 3, 5, 5 -| } ; -| -| static yy_state_type yy_last_accepting_state; -| static char *yy_last_accepting_cpos; -| -| extern int yy_flex_debug; -| int yy_flex_debug = 0; -| -| /* The intent behind this definition is that it'll catch -| * any uses of REJECT which flex missed. -| */ -| #define REJECT reject_used_but_not_detected -| #define yymore() yymore_used_but_not_detected -| #define YY_MORE_ADJ 0 -| #define YY_RESTORE_YY_MORE_OFFSET -| char *yytext; -| #line 1 "conftest.l" -| #line 449 "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 -| #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 -| -| static void yyunput (int c,char *buf_ptr ); -| -| #ifndef yytext_ptr -| static void yy_flex_strncpy (char *,yyconst char *,int ); -| #endif -| -| #ifdef YY_NEED_STRLEN -| static int yy_flex_strlen (yyconst 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 -| #define YY_READ_BUF_SIZE 8192 -| #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, 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 = '*'; \ -| unsigned 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 = fread(buf, 1, 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 break; -| #endif -| -| #define YY_RULE_SETUP \ -| YY_USER_ACTION -| -| /** The main scanner function which does all the work. -| */ -| YY_DECL -| { -| register yy_state_type yy_current_state; -| register char *yy_cp, *yy_bp; -| register int yy_act; -| -| #line 1 "conftest.l" -| -| #line 633 "lex.yy.c" -| -| if ( !(yy_init) ) -| { -| (yy_init) = 1; -| -| #ifdef YY_USER_INIT -| YY_USER_INIT; -| #endif -| -| 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( ); -| } -| -| while ( 1 ) /* loops until end-of-file is reached */ -| { -| 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_match: -| do -| { -| register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)]; -| if ( yy_accept[yy_current_state] ) -| { -| (yy_last_accepting_state) = yy_current_state; -| (yy_last_accepting_cpos) = 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 >= 6 ) -| yy_c = yy_meta[(unsigned int) yy_c]; -| } -| yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; -| ++yy_cp; -| } -| while ( yy_base[yy_current_state] != 3 ); -| -| yy_find_action: -| yy_act = yy_accept[yy_current_state]; -| if ( yy_act == 0 ) -| { /* have to back up */ -| yy_cp = (yy_last_accepting_cpos); -| yy_current_state = (yy_last_accepting_state); -| yy_act = 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 0: /* must back up */ -| /* undo the effects of YY_DO_BEFORE_ACTION */ -| *yy_cp = (yy_hold_char); -| yy_cp = (yy_last_accepting_cpos); -| yy_current_state = (yy_last_accepting_state); -| goto yy_find_action; -| -| case 1: -| YY_RULE_SETUP -| #line 2 "conftest.l" -| ECHO; -| YY_BREAK -| #line 721 "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 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) -| { -| register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; -| register char *source = (yytext_ptr); -| register 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. */ -| -| /* just a shorter name for the current buffer */ -| YY_BUFFER_STATE b = YY_CURRENT_BUFFER; -| -| int yy_c_buf_p_offset = -| (int) ((yy_c_buf_p) - b->yy_ch_buf); -| -| if ( b->yy_is_our_buffer ) -| { -| int new_size = b->yy_buf_size * 2; -| -| if ( new_size <= 0 ) -| b->yy_buf_size += b->yy_buf_size / 8; -| else -| b->yy_buf_size *= 2; -| -| b->yy_ch_buf = (char *) -| /* Include room in for 2 EOB chars. */ -| yyrealloc((void *) b->yy_ch_buf,b->yy_buf_size + 2 ); -| } -| else -| /* Can't grow it, we don't own it. */ -| b->yy_ch_buf = 0; -| -| if ( ! b->yy_ch_buf ) -| YY_FATAL_ERROR( -| "fatal error - scanner input buffer overflow" ); -| -| (yy_c_buf_p) = &b->yy_ch_buf[yy_c_buf_p_offset]; -| -| num_to_read = YY_CURRENT_BUFFER_LVALUE->yy_buf_size - -| number_to_move - 1; -| -| } -| -| 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), (size_t) 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_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { -| /* Extend the array by 50%, plus the number we really need. */ -| yy_size_t 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,new_size ); -| if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) -| YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); -| } -| -| (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) -| { -| register yy_state_type yy_current_state; -| register char *yy_cp; -| -| yy_current_state = (yy_start); -| -| for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp ) -| { -| register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); -| if ( yy_accept[yy_current_state] ) -| { -| (yy_last_accepting_state) = yy_current_state; -| (yy_last_accepting_cpos) = 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 >= 6 ) -| yy_c = yy_meta[(unsigned int) yy_c]; -| } -| yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; -| } -| -| 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 ) -| { -| register int yy_is_jam; -| register char *yy_cp = (yy_c_buf_p); -| -| register YY_CHAR yy_c = 1; -| if ( yy_accept[yy_current_state] ) -| { -| (yy_last_accepting_state) = yy_current_state; -| (yy_last_accepting_cpos) = 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 >= 6 ) -| yy_c = yy_meta[(unsigned int) yy_c]; -| } -| yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; -| yy_is_jam = (yy_current_state == 5); -| -| return yy_is_jam ? 0 : yy_current_state; -| } -| -| static void yyunput (int c, register char * yy_bp ) -| { -| register 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. */ -| register int number_to_move = (yy_n_chars) + 2; -| register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[ -| YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2]; -| register 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) = 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; -| } -| -| #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 = (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 EOF; -| -| 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(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 ); -| } -| -| #ifndef __cplusplus -| extern int isatty (int ); -| #endif /* __cplusplus */ -| -| /* 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) -| { -| int 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; -| (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. */ -| int 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 0; -| -| 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 = 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 = 0; -| 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 (yyconst char * yystr ) -| { -| -| return yy_scan_bytes(yystr,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 bytes the byte buffer to scan -| * @param 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 (yyconst 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 = _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 yy_fatal_error (yyconst char* msg ) -| { -| (void) 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 -| * -| */ -| 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) = 0; -| (yy_buffer_stack_top) = 0; -| (yy_buffer_stack_max) = 0; -| (yy_c_buf_p) = (char *) 0; -| (yy_init) = 0; -| (yy_start) = 0; -| -| /* Defined in main.c */ -| #ifdef YY_STDINIT -| yyin = stdin; -| yyout = stdout; -| #else -| yyin = (FILE *) 0; -| yyout = (FILE *) 0; -| #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; -| -| /* 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, yyconst char * s2, int n ) -| { -| register int i; -| for ( i = 0; i < n; ++i ) -| s1[i] = s2[i]; -| } -| #endif -| -| #ifdef YY_NEED_STRLEN -| static int yy_flex_strlen (yyconst char * s ) -| { -| register int n; -| for ( n = 0; s[n]; ++n ) -| ; -| -| return n; -| } -| #endif -| -| void *yyalloc (yy_size_t size ) -| { -| return (void *) 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 (void *) realloc( (char *) ptr, size ); -| } -| -| void yyfree (void * ptr ) -| { -| free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ -| } -| -| #define YYTABLES_NAME "yytables" -| -| #line 2 "conftest.l" -| -| -| -| extern char *yytext; -configure:18996: result: no -configure:19016: checking for bison -configure:19032: found /usr/bin/bison -configure:19042: result: bison -y -configure:19063: checking for gawk -configure:19089: result: gawk -configure:19104: checking how to run the C preprocessor -configure:19222: result: gcc -E -configure:19246: gcc -E conftest.c -configure:19252: $? = 0 -configure:19284: gcc -E conftest.c -conftest.c:25:28: error: ac_nonexistent.h: No such file or directory -configure:19290: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "infinidb" -| #define PACKAGE_TARNAME "infinidb" -| #define PACKAGE_VERSION "4.6.1" -| #define PACKAGE_STRING "infinidb 4.6.1" -| #define PACKAGE_BUGREPORT "support@infinidb.co" -| #define PACKAGE "infinidb" -| #define VERSION "4.6.1" -| #ifdef __cplusplus -| extern "C" void exit (int) throw (); -| #endif -| #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 -| /* end confdefs.h. */ -| #include -configure:19333: checking whether ln -s works -configure:19337: result: yes -configure:19344: checking whether make sets $(MAKE) -configure:19364: result: yes -configure:19378: checking for working alloca.h -configure:19399: g++ -o conftest conftest.cc >&5 -configure:19405: $? = 0 -configure:19409: test -z - || test ! -s conftest.err -configure:19412: $? = 0 -configure:19415: test -s conftest -configure:19418: $? = 0 -configure:19430: result: yes -configure:19440: checking for alloca -configure:19481: g++ -o conftest conftest.cc >&5 -configure:19487: $? = 0 -configure:19491: test -z - || test ! -s conftest.err -configure:19494: $? = 0 -configure:19497: test -s conftest -configure:19500: $? = 0 -configure:19512: result: yes -configure:19735: checking for ANSI C header files -configure:19891: result: yes -configure:19901: checking for sys/wait.h that is POSIX.1 compatible -configure:19932: g++ -c conftest.cc >&5 -configure:19938: $? = 0 -configure:19942: test -z - || test ! -s conftest.err -configure:19945: $? = 0 -configure:19948: test -s conftest.o -configure:19951: $? = 0 -configure:19962: result: yes -configure:20007: checking arpa/inet.h usability -configure:20019: g++ -c conftest.cc >&5 -configure:20025: $? = 0 -configure:20029: test -z - || test ! -s conftest.err -configure:20032: $? = 0 -configure:20035: test -s conftest.o -configure:20038: $? = 0 -configure:20048: result: yes -configure:20052: checking arpa/inet.h presence -configure:20062: g++ -E conftest.cc -configure:20068: $? = 0 -configure:20088: result: yes -configure:20123: checking for arpa/inet.h -configure:20130: result: yes -configure:20007: checking fcntl.h usability -configure:20019: g++ -c conftest.cc >&5 -configure:20025: $? = 0 -configure:20029: test -z - || test ! -s conftest.err -configure:20032: $? = 0 -configure:20035: test -s conftest.o -configure:20038: $? = 0 -configure:20048: result: yes -configure:20052: checking fcntl.h presence -configure:20062: g++ -E conftest.cc -configure:20068: $? = 0 -configure:20088: result: yes -configure:20123: checking for fcntl.h -configure:20130: result: yes -configure:19998: checking for inttypes.h -configure:20003: result: yes -configure:20007: checking limits.h usability -configure:20019: g++ -c conftest.cc >&5 -configure:20025: $? = 0 -configure:20029: test -z - || test ! -s conftest.err -configure:20032: $? = 0 -configure:20035: test -s conftest.o -configure:20038: $? = 0 -configure:20048: result: yes -configure:20052: checking limits.h presence -configure:20062: g++ -E conftest.cc -configure:20068: $? = 0 -configure:20088: result: yes -configure:20123: checking for limits.h -configure:20130: result: yes -configure:20007: checking malloc.h usability -configure:20019: g++ -c conftest.cc >&5 -configure:20025: $? = 0 -configure:20029: test -z - || test ! -s conftest.err -configure:20032: $? = 0 -configure:20035: test -s conftest.o -configure:20038: $? = 0 -configure:20048: result: yes -configure:20052: checking malloc.h presence -configure:20062: g++ -E conftest.cc -configure:20068: $? = 0 -configure:20088: result: yes -configure:20123: checking for malloc.h -configure:20130: result: yes -configure:20007: checking netdb.h usability -configure:20019: g++ -c conftest.cc >&5 -configure:20025: $? = 0 -configure:20029: test -z - || test ! -s conftest.err -configure:20032: $? = 0 -configure:20035: test -s conftest.o -configure:20038: $? = 0 -configure:20048: result: yes -configure:20052: checking netdb.h presence -configure:20062: g++ -E conftest.cc -configure:20068: $? = 0 -configure:20088: result: yes -configure:20123: checking for netdb.h -configure:20130: result: yes -configure:20007: checking netinet/in.h usability -configure:20019: g++ -c conftest.cc >&5 -configure:20025: $? = 0 -configure:20029: test -z - || test ! -s conftest.err -configure:20032: $? = 0 -configure:20035: test -s conftest.o -configure:20038: $? = 0 -configure:20048: result: yes -configure:20052: checking netinet/in.h presence -configure:20062: g++ -E conftest.cc -configure:20068: $? = 0 -configure:20088: result: yes -configure:20123: checking for netinet/in.h -configure:20130: result: yes -configure:20007: checking stddef.h usability -configure:20019: g++ -c conftest.cc >&5 -configure:20025: $? = 0 -configure:20029: test -z - || test ! -s conftest.err -configure:20032: $? = 0 -configure:20035: test -s conftest.o -configure:20038: $? = 0 -configure:20048: result: yes -configure:20052: checking stddef.h presence -configure:20062: g++ -E conftest.cc -configure:20068: $? = 0 -configure:20088: result: yes -configure:20123: checking for stddef.h -configure:20130: result: yes -configure:19998: checking for stdint.h -configure:20003: result: yes -configure:19998: checking for stdlib.h -configure:20003: result: yes -configure:19998: checking for string.h -configure:20003: result: yes -configure:19998: checking for strings.h -configure:20003: result: yes -configure:20007: checking sys/file.h usability -configure:20019: g++ -c conftest.cc >&5 -configure:20025: $? = 0 -configure:20029: test -z - || test ! -s conftest.err -configure:20032: $? = 0 -configure:20035: test -s conftest.o -configure:20038: $? = 0 -configure:20048: result: yes -configure:20052: checking sys/file.h presence -configure:20062: g++ -E conftest.cc -configure:20068: $? = 0 -configure:20088: result: yes -configure:20123: checking for sys/file.h -configure:20130: result: yes -configure:20007: checking sys/mount.h usability -configure:20019: g++ -c conftest.cc >&5 -configure:20025: $? = 0 -configure:20029: test -z - || test ! -s conftest.err -configure:20032: $? = 0 -configure:20035: test -s conftest.o -configure:20038: $? = 0 -configure:20048: result: yes -configure:20052: checking sys/mount.h presence -configure:20062: g++ -E conftest.cc -configure:20068: $? = 0 -configure:20088: result: yes -configure:20123: checking for sys/mount.h -configure:20130: result: yes -configure:20007: checking sys/socket.h usability -configure:20019: g++ -c conftest.cc >&5 -configure:20025: $? = 0 -configure:20029: test -z - || test ! -s conftest.err -configure:20032: $? = 0 -configure:20035: test -s conftest.o -configure:20038: $? = 0 -configure:20048: result: yes -configure:20052: checking sys/socket.h presence -configure:20062: g++ -E conftest.cc -configure:20068: $? = 0 -configure:20088: result: yes -configure:20123: checking for sys/socket.h -configure:20130: result: yes -configure:20007: checking sys/statfs.h usability -configure:20019: g++ -c conftest.cc >&5 -configure:20025: $? = 0 -configure:20029: test -z - || test ! -s conftest.err -configure:20032: $? = 0 -configure:20035: test -s conftest.o -configure:20038: $? = 0 -configure:20048: result: yes -configure:20052: checking sys/statfs.h presence -configure:20062: g++ -E conftest.cc -configure:20068: $? = 0 -configure:20088: result: yes -configure:20123: checking for sys/statfs.h -configure:20130: result: yes -configure:20007: checking sys/time.h usability -configure:20019: g++ -c conftest.cc >&5 -configure:20025: $? = 0 -configure:20029: test -z - || test ! -s conftest.err -configure:20032: $? = 0 -configure:20035: test -s conftest.o -configure:20038: $? = 0 -configure:20048: result: yes -configure:20052: checking sys/time.h presence -configure:20062: g++ -E conftest.cc -configure:20068: $? = 0 -configure:20088: result: yes -configure:20123: checking for sys/time.h -configure:20130: result: yes -configure:20007: checking sys/timeb.h usability -configure:20019: g++ -c conftest.cc >&5 -configure:20025: $? = 0 -configure:20029: test -z - || test ! -s conftest.err -configure:20032: $? = 0 -configure:20035: test -s conftest.o -configure:20038: $? = 0 -configure:20048: result: yes -configure:20052: checking sys/timeb.h presence -configure:20062: g++ -E conftest.cc -configure:20068: $? = 0 -configure:20088: result: yes -configure:20123: checking for sys/timeb.h -configure:20130: result: yes -configure:20007: checking syslog.h usability -configure:20019: g++ -c conftest.cc >&5 -configure:20025: $? = 0 -configure:20029: test -z - || test ! -s conftest.err -configure:20032: $? = 0 -configure:20035: test -s conftest.o -configure:20038: $? = 0 -configure:20048: result: yes -configure:20052: checking syslog.h presence -configure:20062: g++ -E conftest.cc -configure:20068: $? = 0 -configure:20088: result: yes -configure:20123: checking for syslog.h -configure:20130: result: yes -configure:19998: checking for unistd.h -configure:20003: result: yes -configure:20007: checking utime.h usability -configure:20019: g++ -c conftest.cc >&5 -configure:20025: $? = 0 -configure:20029: test -z - || test ! -s conftest.err -configure:20032: $? = 0 -configure:20035: test -s conftest.o -configure:20038: $? = 0 -configure:20048: result: yes -configure:20052: checking utime.h presence -configure:20062: g++ -E conftest.cc -configure:20068: $? = 0 -configure:20088: result: yes -configure:20123: checking for utime.h -configure:20130: result: yes -configure:20007: checking values.h usability -configure:20019: g++ -c conftest.cc >&5 -configure:20025: $? = 0 -configure:20029: test -z - || test ! -s conftest.err -configure:20032: $? = 0 -configure:20035: test -s conftest.o -configure:20038: $? = 0 -configure:20048: result: yes -configure:20052: checking values.h presence -configure:20062: g++ -E conftest.cc -configure:20068: $? = 0 -configure:20088: result: yes -configure:20123: checking for values.h -configure:20130: result: yes -configure:20145: checking whether stat file-mode macros are broken -configure:20193: result: no -configure:20203: checking for stdbool.h that conforms to C99 -configure:20256: g++ -c conftest.cc >&5 -configure:20262: $? = 0 -configure:20266: test -z - || test ! -s conftest.err -configure:20269: $? = 0 -configure:20272: test -s conftest.o -configure:20275: $? = 0 -configure:20286: result: yes -configure:20288: checking for _Bool -configure:20312: g++ -c conftest.cc >&5 -conftest.cc: In function 'int main()': -conftest.cc:88: error: '_Bool' was not declared in this scope -conftest.cc:88: error: expected primary-expression before ')' token -conftest.cc:88: error: expected ')' before numeric constant -conftest.cc:90: error: '_Bool' was not declared in this scope -configure:20318: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "infinidb" -| #define PACKAGE_TARNAME "infinidb" -| #define PACKAGE_VERSION "4.6.1" -| #define PACKAGE_STRING "infinidb 4.6.1" -| #define PACKAGE_BUGREPORT "support@infinidb.co" -| #define PACKAGE "infinidb" -| #define VERSION "4.6.1" -| #ifdef __cplusplus -| extern "C" void exit (int) throw (); -| #endif -| #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 HAVE_ALLOCA_H 1 -| #define HAVE_ALLOCA 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_WAIT_H 1 -| #define HAVE_ARPA_INET_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_MALLOC_H 1 -| #define HAVE_NETDB_H 1 -| #define HAVE_NETINET_IN_H 1 -| #define HAVE_STDDEF_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_SYS_FILE_H 1 -| #define HAVE_SYS_MOUNT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define HAVE_SYS_STATFS_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_SYS_TIMEB_H 1 -| #define HAVE_SYSLOG_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_UTIME_H 1 -| #define HAVE_VALUES_H 1 -| /* end confdefs.h. */ -| #include -| #if HAVE_SYS_TYPES_H -| # include -| #endif -| #if HAVE_SYS_STAT_H -| # include -| #endif -| #if STDC_HEADERS -| # include -| # include -| #else -| # if HAVE_STDLIB_H -| # include -| # endif -| #endif -| #if HAVE_STRING_H -| # if !STDC_HEADERS && HAVE_MEMORY_H -| # include -| # endif -| # include -| #endif -| #if HAVE_STRINGS_H -| # include -| #endif -| #if HAVE_INTTYPES_H -| # include -| #else -| # if HAVE_STDINT_H -| # include -| # endif -| #endif -| #if HAVE_UNISTD_H -| # include -| #endif -| int -| main () -| { -| if ((_Bool *) 0) -| return 0; -| if (sizeof (_Bool)) -| return 0; -| ; -| return 0; -| } -configure:20342: result: no -configure:20361: checking for an ANSI C-conforming const -configure:20428: g++ -c conftest.cc >&5 -configure:20434: $? = 0 -configure:20438: test -z - || test ! -s conftest.err -configure:20441: $? = 0 -configure:20444: test -s conftest.o -configure:20447: $? = 0 -configure:20458: result: yes -configure:20468: checking for inline -configure:20489: g++ -c conftest.cc >&5 -configure:20495: $? = 0 -configure:20499: test -z - || test ! -s conftest.err -configure:20502: $? = 0 -configure:20505: test -s conftest.o -configure:20508: $? = 0 -configure:20520: result: inline -configure:20539: checking for mode_t -configure:20563: g++ -c conftest.cc >&5 -configure:20569: $? = 0 -configure:20573: test -z - || test ! -s conftest.err -configure:20576: $? = 0 -configure:20579: test -s conftest.o -configure:20582: $? = 0 -configure:20593: result: yes -configure:20605: checking for off_t -configure:20629: g++ -c conftest.cc >&5 -configure:20635: $? = 0 -configure:20639: test -z - || test ! -s conftest.err -configure:20642: $? = 0 -configure:20645: test -s conftest.o -configure:20648: $? = 0 -configure:20659: result: yes -configure:20671: checking for pid_t -configure:20695: g++ -c conftest.cc >&5 -configure:20701: $? = 0 -configure:20705: test -z - || test ! -s conftest.err -configure:20708: $? = 0 -configure:20711: test -s conftest.o -configure:20714: $? = 0 -configure:20725: result: yes -configure:20737: checking for C/C++ restrict keyword -configure:20755: g++ -c conftest.cc >&5 -conftest.cc:52: error: expected initializer before 'x' -configure:20761: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "infinidb" -| #define PACKAGE_TARNAME "infinidb" -| #define PACKAGE_VERSION "4.6.1" -| #define PACKAGE_STRING "infinidb 4.6.1" -| #define PACKAGE_BUGREPORT "support@infinidb.co" -| #define PACKAGE "infinidb" -| #define VERSION "4.6.1" -| #ifdef __cplusplus -| extern "C" void exit (int) throw (); -| #endif -| #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 HAVE_ALLOCA_H 1 -| #define HAVE_ALLOCA 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_WAIT_H 1 -| #define HAVE_ARPA_INET_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_MALLOC_H 1 -| #define HAVE_NETDB_H 1 -| #define HAVE_NETINET_IN_H 1 -| #define HAVE_STDDEF_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_SYS_FILE_H 1 -| #define HAVE_SYS_MOUNT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define HAVE_SYS_STATFS_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_SYS_TIMEB_H 1 -| #define HAVE_SYSLOG_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_UTIME_H 1 -| #define HAVE_VALUES_H 1 -| #define HAVE_STDBOOL_H 1 -| /* end confdefs.h. */ -| float * restrict x; -configure:20755: g++ -c conftest.cc >&5 -configure:20761: $? = 0 -configure:20765: test -z - || test ! -s conftest.err -configure:20768: $? = 0 -configure:20771: test -s conftest.o -configure:20774: $? = 0 -configure:20786: result: __restrict -configure:20801: checking for size_t -configure:20825: g++ -c conftest.cc >&5 -configure:20831: $? = 0 -configure:20835: test -z - || test ! -s conftest.err -configure:20838: $? = 0 -configure:20841: test -s conftest.o -configure:20844: $? = 0 -configure:20855: result: yes -configure:20867: checking whether time.h and sys/time.h may both be included -configure:20892: g++ -c conftest.cc >&5 -configure:20898: $? = 0 -configure:20902: test -z - || test ! -s conftest.err -configure:20905: $? = 0 -configure:20908: test -s conftest.o -configure:20911: $? = 0 -configure:20922: result: yes -configure:20932: checking whether struct tm is in sys/time.h or time.h -configure:20955: g++ -c conftest.cc >&5 -configure:20961: $? = 0 -configure:20965: test -z - || test ! -s conftest.err -configure:20968: $? = 0 -configure:20971: test -s conftest.o -configure:20974: $? = 0 -configure:20985: result: time.h -configure:20995: checking for working volatile -configure:21018: g++ -c conftest.cc >&5 -configure:21024: $? = 0 -configure:21028: test -z - || test ! -s conftest.err -configure:21031: $? = 0 -configure:21034: test -s conftest.o -configure:21037: $? = 0 -configure:21048: result: yes -configure:21058: checking for ptrdiff_t -configure:21082: g++ -c conftest.cc >&5 -configure:21088: $? = 0 -configure:21092: test -z - || test ! -s conftest.err -configure:21095: $? = 0 -configure:21098: test -s conftest.o -configure:21101: $? = 0 -configure:21112: result: yes -configure:21125: checking for error_at_line -configure:21146: g++ -o conftest conftest.cc >&5 -conftest.cc: In function 'int main()': -conftest.cc:92: error: 'error_at_line' was not declared in this scope -configure:21152: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "infinidb" -| #define PACKAGE_TARNAME "infinidb" -| #define PACKAGE_VERSION "4.6.1" -| #define PACKAGE_STRING "infinidb 4.6.1" -| #define PACKAGE_BUGREPORT "support@infinidb.co" -| #define PACKAGE "infinidb" -| #define VERSION "4.6.1" -| #ifdef __cplusplus -| extern "C" void exit (int) throw (); -| #endif -| #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 HAVE_ALLOCA_H 1 -| #define HAVE_ALLOCA 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_WAIT_H 1 -| #define HAVE_ARPA_INET_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_MALLOC_H 1 -| #define HAVE_NETDB_H 1 -| #define HAVE_NETINET_IN_H 1 -| #define HAVE_STDDEF_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_SYS_FILE_H 1 -| #define HAVE_SYS_MOUNT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define HAVE_SYS_STATFS_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_SYS_TIMEB_H 1 -| #define HAVE_SYSLOG_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_UTIME_H 1 -| #define HAVE_VALUES_H 1 -| #define HAVE_STDBOOL_H 1 -| #define restrict __restrict -| #define TIME_WITH_SYS_TIME 1 -| #define HAVE_PTRDIFF_T 1 -| /* end confdefs.h. */ -| #include -| #if HAVE_SYS_TYPES_H -| # include -| #endif -| #if HAVE_SYS_STAT_H -| # include -| #endif -| #if STDC_HEADERS -| # include -| # include -| #else -| # if HAVE_STDLIB_H -| # include -| # endif -| #endif -| #if HAVE_STRING_H -| # if !STDC_HEADERS && HAVE_MEMORY_H -| # include -| # endif -| # include -| #endif -| #if HAVE_STRINGS_H -| # include -| #endif -| #if HAVE_INTTYPES_H -| # include -| #else -| # if HAVE_STDINT_H -| # include -| # endif -| #endif -| #if HAVE_UNISTD_H -| # include -| #endif -| int -| main () -| { -| error_at_line (0, 0, "", 0, ""); -| ; -| return 0; -| } -configure:21177: result: no -configure:21190: checking for mbstate_t -configure:21212: g++ -c conftest.cc >&5 -configure:21218: $? = 0 -configure:21222: test -z - || test ! -s conftest.err -configure:21225: $? = 0 -configure:21228: test -s conftest.o -configure:21231: $? = 0 -configure:21242: result: yes -configure:21257: checking for working POSIX fnmatch -configure:21295: g++ -o conftest conftest.cc >&5 -configure:21298: $? = 0 -configure:21300: ./conftest -configure:21303: $? = 0 -configure:21317: result: yes -configure:21676: checking for unistd.h -configure:21681: result: yes -configure:21685: checking vfork.h usability -configure:21697: g++ -c conftest.cc >&5 -conftest.cc:91:19: error: vfork.h: No such file or directory -configure:21703: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "infinidb" -| #define PACKAGE_TARNAME "infinidb" -| #define PACKAGE_VERSION "4.6.1" -| #define PACKAGE_STRING "infinidb 4.6.1" -| #define PACKAGE_BUGREPORT "support@infinidb.co" -| #define PACKAGE "infinidb" -| #define VERSION "4.6.1" -| #ifdef __cplusplus -| extern "C" void exit (int) throw (); -| #endif -| #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 HAVE_ALLOCA_H 1 -| #define HAVE_ALLOCA 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_WAIT_H 1 -| #define HAVE_ARPA_INET_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_MALLOC_H 1 -| #define HAVE_NETDB_H 1 -| #define HAVE_NETINET_IN_H 1 -| #define HAVE_STDDEF_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_SYS_FILE_H 1 -| #define HAVE_SYS_MOUNT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define HAVE_SYS_STATFS_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_SYS_TIMEB_H 1 -| #define HAVE_SYSLOG_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_UTIME_H 1 -| #define HAVE_VALUES_H 1 -| #define HAVE_STDBOOL_H 1 -| #define restrict __restrict -| #define TIME_WITH_SYS_TIME 1 -| #define HAVE_PTRDIFF_T 1 -| #define HAVE_MBSTATE_T 1 -| #define HAVE_UNISTD_H 1 -| /* end confdefs.h. */ -| #include -| #if HAVE_SYS_TYPES_H -| # include -| #endif -| #if HAVE_SYS_STAT_H -| # include -| #endif -| #if STDC_HEADERS -| # include -| # include -| #else -| # if HAVE_STDLIB_H -| # include -| # endif -| #endif -| #if HAVE_STRING_H -| # if !STDC_HEADERS && HAVE_MEMORY_H -| # include -| # endif -| # include -| #endif -| #if HAVE_STRINGS_H -| # include -| #endif -| #if HAVE_INTTYPES_H -| # include -| #else -| # if HAVE_STDINT_H -| # include -| # endif -| #endif -| #if HAVE_UNISTD_H -| # include -| #endif -| #include -configure:21726: result: no -configure:21730: checking vfork.h presence -configure:21740: g++ -E conftest.cc -conftest.cc:57:19: error: vfork.h: No such file or directory -configure:21746: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "infinidb" -| #define PACKAGE_TARNAME "infinidb" -| #define PACKAGE_VERSION "4.6.1" -| #define PACKAGE_STRING "infinidb 4.6.1" -| #define PACKAGE_BUGREPORT "support@infinidb.co" -| #define PACKAGE "infinidb" -| #define VERSION "4.6.1" -| #ifdef __cplusplus -| extern "C" void exit (int) throw (); -| #endif -| #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 HAVE_ALLOCA_H 1 -| #define HAVE_ALLOCA 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_WAIT_H 1 -| #define HAVE_ARPA_INET_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_MALLOC_H 1 -| #define HAVE_NETDB_H 1 -| #define HAVE_NETINET_IN_H 1 -| #define HAVE_STDDEF_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_SYS_FILE_H 1 -| #define HAVE_SYS_MOUNT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define HAVE_SYS_STATFS_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_SYS_TIMEB_H 1 -| #define HAVE_SYSLOG_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_UTIME_H 1 -| #define HAVE_VALUES_H 1 -| #define HAVE_STDBOOL_H 1 -| #define restrict __restrict -| #define TIME_WITH_SYS_TIME 1 -| #define HAVE_PTRDIFF_T 1 -| #define HAVE_MBSTATE_T 1 -| #define HAVE_UNISTD_H 1 -| /* end confdefs.h. */ -| #include -configure:21766: result: no -configure:21801: checking for vfork.h -configure:21808: result: no -configure:21826: checking for fork -configure:21883: g++ -o conftest conftest.cc >&5 -configure:21889: $? = 0 -configure:21893: test -z - || test ! -s conftest.err -configure:21896: $? = 0 -configure:21899: test -s conftest -configure:21902: $? = 0 -configure:21914: result: yes -configure:21826: checking for vfork -configure:21883: g++ -o conftest conftest.cc >&5 -configure:21889: $? = 0 -configure:21893: test -z - || test ! -s conftest.err -configure:21896: $? = 0 -configure:21899: test -s conftest -configure:21902: $? = 0 -configure:21914: result: yes -configure:21925: checking for working fork -configure:21948: g++ -o conftest conftest.cc >&5 -conftest.cc: In function 'int main()': -conftest.cc:9: error: 'fork' was not declared in this scope -conftest.cc:10: error: 'exit' was not declared in this scope -conftest.cc:11: error: 'exit' was not declared in this scope -configure:21951: $? = 1 -configure: program exited with status 1 -configure: failed program was: -| /* By Ruediger Kuhlmann. */ -| #include -| #if HAVE_UNISTD_H -| # include -| #endif -| /* Some systems only have a dummy stub for fork() */ -| int main () -| { -| if (fork() < 0) -| exit (1); -| exit (0); -| } -configure:21970: result: no -configure:21991: checking for working vfork -configure:22124: result: yes -configure:22160: checking for stdlib.h -configure:22165: result: yes -configure:22305: checking for GNU libc compatible malloc -configure:22334: g++ -o conftest conftest.cc >&5 -configure:22337: $? = 0 -configure:22339: ./conftest -configure:22342: $? = 0 -configure:22356: result: yes -configure:22386: checking for working memcmp -configure:22434: g++ -o conftest conftest.cc >&5 -configure:22437: $? = 0 -configure:22439: ./conftest -configure:22442: $? = 0 -configure:22456: result: yes -configure:22474: checking for stdlib.h -configure:22479: result: yes -configure:22474: checking for sys/time.h -configure:22479: result: yes -configure:22474: checking for unistd.h -configure:22479: result: yes -configure:22623: checking for alarm -configure:22680: g++ -o conftest conftest.cc >&5 -configure:22686: $? = 0 -configure:22690: test -z - || test ! -s conftest.err -configure:22693: $? = 0 -configure:22696: test -s conftest -configure:22699: $? = 0 -configure:22711: result: yes -configure:22721: checking for working mktime -configure:22897: g++ -o conftest conftest.cc >&5 -conftest.cc:100: warning: deprecated conversion from string constant to 'char*' -conftest.cc:100: warning: deprecated conversion from string constant to 'char*' -conftest.cc:100: warning: deprecated conversion from string constant to 'char*' -conftest.cc: In function 'void spring_forward_gap()': -conftest.cc:115: warning: deprecated conversion from string constant to 'char*' -conftest.cc: At global scope: -conftest.cc:129: error: variable or field 'mktime_test1' declared void -conftest.cc:129: error: 'now' was not declared in this scope -conftest.cc:131: error: expected unqualified-id before '{' token -conftest.cc:138: error: variable or field 'mktime_test' declared void -conftest.cc:138: error: 'now' was not declared in this scope -conftest.cc:140: error: expected unqualified-id before '{' token -conftest.cc:164: error: variable or field 'bigtime_test' declared void -conftest.cc:164: error: 'j' was not declared in this scope -conftest.cc:166: error: expected unqualified-id before '{' token -configure:22900: $? = 1 -configure: program exited with status 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "infinidb" -| #define PACKAGE_TARNAME "infinidb" -| #define PACKAGE_VERSION "4.6.1" -| #define PACKAGE_STRING "infinidb 4.6.1" -| #define PACKAGE_BUGREPORT "support@infinidb.co" -| #define PACKAGE "infinidb" -| #define VERSION "4.6.1" -| #ifdef __cplusplus -| extern "C" void exit (int) throw (); -| #endif -| #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 HAVE_ALLOCA_H 1 -| #define HAVE_ALLOCA 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_WAIT_H 1 -| #define HAVE_ARPA_INET_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_MALLOC_H 1 -| #define HAVE_NETDB_H 1 -| #define HAVE_NETINET_IN_H 1 -| #define HAVE_STDDEF_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_SYS_FILE_H 1 -| #define HAVE_SYS_MOUNT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define HAVE_SYS_STATFS_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_SYS_TIMEB_H 1 -| #define HAVE_SYSLOG_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_UTIME_H 1 -| #define HAVE_VALUES_H 1 -| #define HAVE_STDBOOL_H 1 -| #define restrict __restrict -| #define TIME_WITH_SYS_TIME 1 -| #define HAVE_PTRDIFF_T 1 -| #define HAVE_MBSTATE_T 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FORK 1 -| #define HAVE_VFORK 1 -| #define HAVE_WORKING_VFORK 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_MALLOC 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_ALARM 1 -| /* end confdefs.h. */ -| /* Test program from Paul Eggert and Tony Leneis. */ -| #if TIME_WITH_SYS_TIME -| # include -| # include -| #else -| # if HAVE_SYS_TIME_H -| # include -| # else -| # include -| # endif -| #endif -| -| #if HAVE_STDLIB_H -| # include -| #endif -| -| #if HAVE_UNISTD_H -| # include -| #endif -| -| #if !HAVE_ALARM -| # define alarm(X) /* empty */ -| #endif -| -| /* Work around redefinition to rpl_putenv by other config tests. */ -| #undef putenv -| -| static time_t time_t_max; -| static time_t time_t_min; -| -| /* Values we'll use to set the TZ environment variable. */ -| static char *tz_strings[] = { -| (char *) 0, "TZ=GMT0", "TZ=JST-9", -| "TZ=EST+3EDT+2,M10.1.0/00:00:00,M2.3.0/00:00:00" -| }; -| #define N_STRINGS (sizeof (tz_strings) / sizeof (tz_strings[0])) -| -| /* Fail if mktime fails to convert a date in the spring-forward gap. -| Based on a problem report from Andreas Jaeger. */ -| static void -| spring_forward_gap () -| { -| /* glibc (up to about 1998-10-07) failed this test. */ -| struct tm tm; -| -| /* Use the portable POSIX.1 specification "TZ=PST8PDT,M4.1.0,M10.5.0" -| instead of "TZ=America/Vancouver" in order to detect the bug even -| on systems that don't support the Olson extension, or don't have the -| full zoneinfo tables installed. */ -| putenv ("TZ=PST8PDT,M4.1.0,M10.5.0"); -| -| tm.tm_year = 98; -| tm.tm_mon = 3; -| tm.tm_mday = 5; -| tm.tm_hour = 2; -| tm.tm_min = 0; -| tm.tm_sec = 0; -| tm.tm_isdst = -1; -| if (mktime (&tm) == (time_t)-1) -| exit (1); -| } -| -| static void -| mktime_test1 (now) -| time_t now; -| { -| struct tm *lt; -| if ((lt = localtime (&now)) && mktime (lt) != now) -| exit (1); -| } -| -| static void -| mktime_test (now) -| time_t now; -| { -| mktime_test1 (now); -| mktime_test1 ((time_t) (time_t_max - now)); -| mktime_test1 ((time_t) (time_t_min + now)); -| } -| -| static void -| irix_6_4_bug () -| { -| /* Based on code from Ariel Faigon. */ -| struct tm tm; -| tm.tm_year = 96; -| tm.tm_mon = 3; -| tm.tm_mday = 0; -| tm.tm_hour = 0; -| tm.tm_min = 0; -| tm.tm_sec = 0; -| tm.tm_isdst = -1; -| mktime (&tm); -| if (tm.tm_mon != 2 || tm.tm_mday != 31) -| exit (1); -| } -| -| static void -| bigtime_test (j) -| int j; -| { -| struct tm tm; -| time_t now; -| tm.tm_year = tm.tm_mon = tm.tm_mday = tm.tm_hour = tm.tm_min = tm.tm_sec = j; -| now = mktime (&tm); -| if (now != (time_t) -1) -| { -| struct tm *lt = localtime (&now); -| if (! (lt -| && lt->tm_year == tm.tm_year -| && lt->tm_mon == tm.tm_mon -| && lt->tm_mday == tm.tm_mday -| && lt->tm_hour == tm.tm_hour -| && lt->tm_min == tm.tm_min -| && lt->tm_sec == tm.tm_sec -| && lt->tm_yday == tm.tm_yday -| && lt->tm_wday == tm.tm_wday -| && ((lt->tm_isdst < 0 ? -1 : 0 < lt->tm_isdst) -| == (tm.tm_isdst < 0 ? -1 : 0 < tm.tm_isdst)))) -| exit (1); -| } -| } -| -| int -| main () -| { -| time_t t, delta; -| int i, j; -| -| /* This test makes some buggy mktime implementations loop. -| Give up after 60 seconds; a mktime slower than that -| isn't worth using anyway. */ -| alarm (60); -| -| for (time_t_max = 1; 0 < time_t_max; time_t_max *= 2) -| continue; -| time_t_max--; -| if ((time_t) -1 < 0) -| for (time_t_min = -1; (time_t) (time_t_min * 2) < 0; time_t_min *= 2) -| continue; -| delta = time_t_max / 997; /* a suitable prime number */ -| for (i = 0; i < N_STRINGS; i++) -| { -| if (tz_strings[i]) -| putenv (tz_strings[i]); -| -| for (t = 0; t <= time_t_max - delta; t += delta) -| mktime_test (t); -| mktime_test ((time_t) 1); -| mktime_test ((time_t) (60 * 60)); -| mktime_test ((time_t) (60 * 60 * 24)); -| -| for (j = 1; 0 < j; j *= 2) -| bigtime_test (j); -| bigtime_test (j - 1); -| } -| irix_6_4_bug (); -| spring_forward_gap (); -| exit (0); -| } -configure:22919: result: no -configure:22947: checking sys/select.h usability -configure:22959: g++ -c conftest.cc >&5 -configure:22965: $? = 0 -configure:22969: test -z - || test ! -s conftest.err -configure:22972: $? = 0 -configure:22975: test -s conftest.o -configure:22978: $? = 0 -configure:22988: result: yes -configure:22992: checking sys/select.h presence -configure:23002: g++ -E conftest.cc -configure:23008: $? = 0 -configure:23028: result: yes -configure:23063: checking for sys/select.h -configure:23070: result: yes -configure:22938: checking for sys/socket.h -configure:22943: result: yes -configure:23083: checking types of arguments for select -configure:23116: g++ -c conftest.cc >&5 -configure:23122: $? = 0 -configure:23126: test -z - || test ! -s conftest.err -configure:23129: $? = 0 -configure:23132: test -s conftest.o -configure:23135: $? = 0 -configure:23151: result: int,fd_set *,struct timeval * -configure:23174: checking for function prototypes -configure:23177: result: yes -configure:23194: checking whether setvbuf arguments are reversed -configure:23219: g++ -o conftest conftest.cc >&5 -/tmp/ccDqgcqp.o: In function `main': -conftest.cc:(.text+0x21): undefined reference to `setvbuf(_IO_FILE*, int, char*, unsigned long)' -collect2: ld returned 1 exit status -configure:23225: $? = 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "infinidb" -| #define PACKAGE_TARNAME "infinidb" -| #define PACKAGE_VERSION "4.6.1" -| #define PACKAGE_STRING "infinidb 4.6.1" -| #define PACKAGE_BUGREPORT "support@infinidb.co" -| #define PACKAGE "infinidb" -| #define VERSION "4.6.1" -| #ifdef __cplusplus -| extern "C" void exit (int) throw (); -| #endif -| #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 HAVE_ALLOCA_H 1 -| #define HAVE_ALLOCA 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_WAIT_H 1 -| #define HAVE_ARPA_INET_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_MALLOC_H 1 -| #define HAVE_NETDB_H 1 -| #define HAVE_NETINET_IN_H 1 -| #define HAVE_STDDEF_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_SYS_FILE_H 1 -| #define HAVE_SYS_MOUNT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define HAVE_SYS_STATFS_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_SYS_TIMEB_H 1 -| #define HAVE_SYSLOG_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_UTIME_H 1 -| #define HAVE_VALUES_H 1 -| #define HAVE_STDBOOL_H 1 -| #define restrict __restrict -| #define TIME_WITH_SYS_TIME 1 -| #define HAVE_PTRDIFF_T 1 -| #define HAVE_MBSTATE_T 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FORK 1 -| #define HAVE_VFORK 1 -| #define HAVE_WORKING_VFORK 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_MALLOC 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_ALARM 1 -| #define HAVE_SYS_SELECT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define SELECT_TYPE_ARG1 int -| #define SELECT_TYPE_ARG234 (fd_set *) -| #define SELECT_TYPE_ARG5 (struct timeval *) -| #define PROTOTYPES 1 -| #define __PROTOTYPES 1 -| /* end confdefs.h. */ -| #include -| # if PROTOTYPES -| int (setvbuf) (FILE *, int, char *, size_t); -| # endif -| int -| main () -| { -| char buf; return setvbuf (stdout, _IOLBF, &buf, 1); -| ; -| return 0; -| } -configure:23346: result: no -configure:23356: checking return type of signal handlers -configure:23387: g++ -c conftest.cc >&5 -configure:23393: $? = 0 -configure:23397: test -z - || test ! -s conftest.err -configure:23400: $? = 0 -configure:23403: test -s conftest.o -configure:23406: $? = 0 -configure:23417: result: void -configure:23425: checking whether lstat dereferences a symlink specified with a trailing slash -configure:23456: g++ -o conftest conftest.cc >&5 -configure:23459: $? = 0 -configure:23461: ./conftest -configure:23464: $? = 0 -configure:23485: result: yes -configure:23506: checking whether stat accepts an empty string -configure:23531: g++ -o conftest conftest.cc >&5 -configure:23534: $? = 0 -configure:23536: ./conftest -configure:23539: $? = 1 -configure: program exited with status 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "infinidb" -| #define PACKAGE_TARNAME "infinidb" -| #define PACKAGE_VERSION "4.6.1" -| #define PACKAGE_STRING "infinidb 4.6.1" -| #define PACKAGE_BUGREPORT "support@infinidb.co" -| #define PACKAGE "infinidb" -| #define VERSION "4.6.1" -| #ifdef __cplusplus -| extern "C" void exit (int) throw (); -| #endif -| #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 HAVE_ALLOCA_H 1 -| #define HAVE_ALLOCA 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_WAIT_H 1 -| #define HAVE_ARPA_INET_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_MALLOC_H 1 -| #define HAVE_NETDB_H 1 -| #define HAVE_NETINET_IN_H 1 -| #define HAVE_STDDEF_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_SYS_FILE_H 1 -| #define HAVE_SYS_MOUNT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define HAVE_SYS_STATFS_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_SYS_TIMEB_H 1 -| #define HAVE_SYSLOG_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_UTIME_H 1 -| #define HAVE_VALUES_H 1 -| #define HAVE_STDBOOL_H 1 -| #define restrict __restrict -| #define TIME_WITH_SYS_TIME 1 -| #define HAVE_PTRDIFF_T 1 -| #define HAVE_MBSTATE_T 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FORK 1 -| #define HAVE_VFORK 1 -| #define HAVE_WORKING_VFORK 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_MALLOC 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_ALARM 1 -| #define HAVE_SYS_SELECT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define SELECT_TYPE_ARG1 int -| #define SELECT_TYPE_ARG234 (fd_set *) -| #define SELECT_TYPE_ARG5 (struct timeval *) -| #define PROTOTYPES 1 -| #define __PROTOTYPES 1 -| #define RETSIGTYPE void -| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 -| /* end confdefs.h. */ -| #include -| #if HAVE_SYS_TYPES_H -| # include -| #endif -| #if HAVE_SYS_STAT_H -| # include -| #endif -| #if STDC_HEADERS -| # include -| # include -| #else -| # if HAVE_STDLIB_H -| # include -| # endif -| #endif -| #if HAVE_STRING_H -| # if !STDC_HEADERS && HAVE_MEMORY_H -| # include -| # endif -| # include -| #endif -| #if HAVE_STRINGS_H -| # include -| #endif -| #if HAVE_INTTYPES_H -| # include -| #else -| # if HAVE_STDINT_H -| # include -| # endif -| #endif -| #if HAVE_UNISTD_H -| # include -| #endif -| int -| main () -| { -| struct stat sbuf; -| exit (stat ("", &sbuf) ? 1 : 0); -| ; -| return 0; -| } -configure:23553: result: no -configure:23571: checking whether strerror_r is declared -configure:23595: g++ -c conftest.cc >&5 -configure:23601: $? = 0 -configure:23605: test -z - || test ! -s conftest.err -configure:23608: $? = 0 -configure:23611: test -s conftest.o -configure:23614: $? = 0 -configure:23625: result: yes -configure:23647: checking for strerror_r -configure:23704: g++ -o conftest conftest.cc >&5 -configure:23710: $? = 0 -configure:23714: test -z - || test ! -s conftest.err -configure:23717: $? = 0 -configure:23720: test -s conftest -configure:23723: $? = 0 -configure:23735: result: yes -configure:23745: checking whether strerror_r returns char * -configure:23773: g++ -c conftest.cc >&5 -configure:23779: $? = 0 -configure:23783: test -z - || test ! -s conftest.err -configure:23786: $? = 0 -configure:23789: test -s conftest.o -configure:23792: $? = 0 -configure:23852: result: yes -configure:23866: checking for strftime -configure:23923: g++ -o conftest conftest.cc >&5 -configure:23929: $? = 0 -configure:23933: test -z - || test ! -s conftest.err -configure:23936: $? = 0 -configure:23939: test -s conftest -configure:23942: $? = 0 -configure:23954: result: yes -configure:24038: checking for working strtod -configure:24090: g++ -o conftest conftest.cc >&5 -conftest.cc:84: warning: declaration of 'void exit(int)' with C language linkage -conftest.cc:11: warning: conflicts with previous declaration 'void exit(int)' -conftest.cc:84: warning: due to different exception specifications -configure:24093: $? = 0 -configure:24095: ./conftest -configure:24098: $? = 0 -configure:24112: result: yes -configure:24290: checking whether utime accepts a null argument -configure:24325: g++ -o conftest conftest.cc >&5 -configure:24328: $? = 0 -configure:24330: ./conftest -configure:24333: $? = 1 -configure: program exited with status 1 -configure: failed program was: -| /* confdefs.h. */ -| -| #define PACKAGE_NAME "infinidb" -| #define PACKAGE_TARNAME "infinidb" -| #define PACKAGE_VERSION "4.6.1" -| #define PACKAGE_STRING "infinidb 4.6.1" -| #define PACKAGE_BUGREPORT "support@infinidb.co" -| #define PACKAGE "infinidb" -| #define VERSION "4.6.1" -| #ifdef __cplusplus -| extern "C" void exit (int) throw (); -| #endif -| #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 HAVE_ALLOCA_H 1 -| #define HAVE_ALLOCA 1 -| #define STDC_HEADERS 1 -| #define HAVE_SYS_WAIT_H 1 -| #define HAVE_ARPA_INET_H 1 -| #define HAVE_FCNTL_H 1 -| #define HAVE_INTTYPES_H 1 -| #define HAVE_LIMITS_H 1 -| #define HAVE_MALLOC_H 1 -| #define HAVE_NETDB_H 1 -| #define HAVE_NETINET_IN_H 1 -| #define HAVE_STDDEF_H 1 -| #define HAVE_STDINT_H 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_STRING_H 1 -| #define HAVE_STRINGS_H 1 -| #define HAVE_SYS_FILE_H 1 -| #define HAVE_SYS_MOUNT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define HAVE_SYS_STATFS_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_SYS_TIMEB_H 1 -| #define HAVE_SYSLOG_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_UTIME_H 1 -| #define HAVE_VALUES_H 1 -| #define HAVE_STDBOOL_H 1 -| #define restrict __restrict -| #define TIME_WITH_SYS_TIME 1 -| #define HAVE_PTRDIFF_T 1 -| #define HAVE_MBSTATE_T 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_FORK 1 -| #define HAVE_VFORK 1 -| #define HAVE_WORKING_VFORK 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_MALLOC 1 -| #define HAVE_STDLIB_H 1 -| #define HAVE_SYS_TIME_H 1 -| #define HAVE_UNISTD_H 1 -| #define HAVE_ALARM 1 -| #define HAVE_SYS_SELECT_H 1 -| #define HAVE_SYS_SOCKET_H 1 -| #define SELECT_TYPE_ARG1 int -| #define SELECT_TYPE_ARG234 (fd_set *) -| #define SELECT_TYPE_ARG5 (struct timeval *) -| #define PROTOTYPES 1 -| #define __PROTOTYPES 1 -| #define RETSIGTYPE void -| #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 -| #define HAVE_DECL_STRERROR_R 1 -| #define HAVE_STRERROR_R 1 -| #define STRERROR_R_CHAR_P 1 -| #define HAVE_STRFTIME 1 -| /* end confdefs.h. */ -| -| #include -| #include -| #include -| #include -| int -| main() -| { -| struct stat s, t; -| exit (!(stat ("conftest.data", &s) == 0 -| && utime ("conftest.data", (const utimbuf *)0) == 0 -| && stat ("conftest.data", &t) == 0 -| && t.st_mtime >= s.st_mtime -| && t.st_mtime - s.st_mtime < 120)); -| } -| -| -configure:24347: result: no -configure:24394: checking for alarm -configure:24482: result: yes -configure:24394: checking for dup2 -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24394: checking for floor -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24394: checking for ftime -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24394: checking for ftruncate -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24394: checking for gethostbyname -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24394: checking for getpagesize -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24394: checking for gettimeofday -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24394: checking for inet_ntoa -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24394: checking for isascii -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24394: checking for localtime_r -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24394: checking for memchr -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24394: checking for memmove -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24394: checking for memset -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24394: checking for mkdir -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24394: checking for pow -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24394: checking for regcomp -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24394: checking for rmdir -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24394: checking for select -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24394: checking for setenv -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24394: checking for setlocale -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24394: checking for socket -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24394: checking for strcasecmp -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24394: checking for strchr -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24394: checking for strcspn -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24394: checking for strdup -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24394: checking for strerror -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24394: checking for strrchr -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24394: checking for strspn -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24394: checking for strstr -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24394: checking for strtol -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24394: checking for strtoul -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24394: checking for strtoull -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24394: checking for utime -configure:24451: g++ -o conftest conftest.cc >&5 -configure:24457: $? = 0 -configure:24461: test -z - || test ! -s conftest.err -configure:24464: $? = 0 -configure:24467: test -s conftest -configure:24470: $? = 0 -configure:24482: result: yes -configure:24533: checking for xml2-config -configure:24551: found /usr/bin/xml2-config -configure:24564: result: /usr/bin/xml2-config -configure:24572: checking for libxml - version >= 2.6.26 -configure:24679: g++ -o conftest -I/usr/include/libxml2 conftest.cc -lxml2 -lz -lm >&5 -configure:24682: $? = 0 -configure:24684: ./conftest -configure:24687: $? = 0 -configure:24706: result: yes (version 2.7.6) -configure:24817: checking zlib.h usability -configure:24829: g++ -c conftest.cc >&5 -configure:24835: $? = 0 -configure:24839: test -z - || test ! -s conftest.err -configure:24842: $? = 0 -configure:24845: test -s conftest.o -configure:24848: $? = 0 -configure:24858: result: yes -configure:24862: checking zlib.h presence -configure:24872: g++ -E conftest.cc -configure:24878: $? = 0 -configure:24898: result: yes -configure:24933: checking for zlib.h -configure:24940: result: yes -configure:24973: checking readline/readline.h usability -configure:24985: g++ -c conftest.cc >&5 -configure:24991: $? = 0 -configure:24995: test -z - || test ! -s conftest.err -configure:24998: $? = 0 -configure:25001: test -s conftest.o -configure:25004: $? = 0 -configure:25014: result: yes -configure:25018: checking readline/readline.h presence -configure:25028: g++ -E conftest.cc -configure:25034: $? = 0 -configure:25054: result: yes -configure:25089: checking for readline/readline.h -configure:25096: result: yes -configure:25129: checking ncurses.h usability -configure:25141: g++ -c conftest.cc >&5 -configure:25147: $? = 0 -configure:25151: test -z - || test ! -s conftest.err -configure:25154: $? = 0 -configure:25157: test -s conftest.o -configure:25160: $? = 0 -configure:25170: result: yes -configure:25174: checking ncurses.h presence -configure:25184: g++ -E conftest.cc -configure:25190: $? = 0 -configure:25210: result: yes -configure:25245: checking for ncurses.h -configure:25252: result: yes -configure:25271: checking if g++ supports -Wno-unused-local-typedefs -configure:25291: g++ -c -Werror -Wno-unused-local-typedefs conftest.cc >&5 -configure:25297: $? = 0 -configure:25301: test -z - || test ! -s conftest.err -configure:25304: $? = 0 -configure:25307: test -s conftest.o -configure:25310: $? = 0 -configure:25312: result: yes -configure:25326: checking if g++ supports -Wno-unused-result -configure:25346: g++ -c -Werror -Wno-unused-result conftest.cc >&5 -configure:25352: $? = 0 -configure:25356: test -z - || test ! -s conftest.err -configure:25359: $? = 0 -configure:25362: test -s conftest.o -configure:25365: $? = 0 -configure:25367: result: yes -configure:25381: checking if g++ supports -Wno-format -configure:25401: g++ -c -Werror -Wno-format conftest.cc >&5 -configure:25407: $? = 0 -configure:25411: test -z - || test ! -s conftest.err -configure:25414: $? = 0 -configure:25417: test -s conftest.o -configure:25420: $? = 0 -configure:25422: result: yes -configure:25437: checking whether to enable debugging -configure:25459: result: no -configure:25467: checking for CPU architecture -configure:25476: result: x86_64 -configure:25655: creating ./config.status - -## ---------------------- ## -## Running config.status. ## -## ---------------------- ## - -This file was extended by infinidb config.status 4.6.1, which was -generated by GNU Autoconf 2.59. Invocation command line was - - CONFIG_FILES = - CONFIG_HEADERS = - CONFIG_LINKS = - CONFIG_COMMANDS = - $ ./config.status - -on srvhall03 - -config.status:848: creating Makefile -config.status:848: creating utils/Makefile -config.status:848: creating utils/boost_idb/Makefile -config.status:848: creating utils/startup/Makefile -config.status:848: creating utils/common/Makefile -config.status:848: creating utils/configcpp/Makefile -config.status:848: creating utils/loggingcpp/Makefile -config.status:848: creating utils/messageqcpp/Makefile -config.status:848: creating utils/threadpool/Makefile -config.status:848: creating utils/rwlock/Makefile -config.status:848: creating utils/dataconvert/Makefile -config.status:848: creating utils/joiner/Makefile -config.status:848: creating utils/rowgroup/Makefile -config.status:848: creating utils/cacheutils/Makefile -config.status:848: creating utils/net-snmp/Makefile -config.status:848: creating utils/funcexp/Makefile -config.status:848: creating utils/udfsdk/Makefile -config.status:848: creating utils/compress/Makefile -config.status:848: creating utils/ddlcleanup/Makefile -config.status:848: creating utils/batchloader/Makefile -config.status:848: creating utils/mysqlcl_idb/Makefile -config.status:848: creating utils/querystats/Makefile -config.status:848: creating utils/jemalloc/Makefile -config.status:848: creating utils/windowfunction/Makefile -config.status:848: creating utils/idbdatafile/Makefile -config.status:848: creating utils/idbhdfs/Makefile -config.status:848: creating utils/idbhdfs/hdfs-12/Makefile -config.status:848: creating utils/idbhdfs/hdfs-20/Makefile -config.status:848: creating utils/winport/Makefile -config.status:848: creating utils/thrift/Makefile -config.status:848: creating utils/querytele/Makefile -config.status:848: creating exemgr/Makefile -config.status:848: creating ddlproc/Makefile -config.status:848: creating dbcon/Makefile -config.status:848: creating dbcon/ddlpackage/Makefile -config.status:848: creating dbcon/ddlpackageproc/Makefile -config.status:848: creating dbcon/dmlpackage/Makefile -config.status:848: creating dbcon/dmlpackageproc/Makefile -config.status:848: creating dbcon/execplan/Makefile -config.status:848: creating dbcon/joblist/Makefile -config.status:848: creating dbcon/mysql/Makefile -config.status:848: creating dmlproc/Makefile -config.status:848: creating oam/Makefile -config.status:848: creating oam/etc/Makefile -config.status:848: creating oam/install_scripts/Makefile -config.status:848: creating oam/oamcpp/Makefile -config.status:848: creating oam/post/Makefile -config.status:848: creating oam/cloud/Makefile -config.status:848: creating oamapps/Makefile -config.status:848: creating oamapps/calpontConsole/Makefile -config.status:848: creating oamapps/calpontDB/Makefile -config.status:848: creating oamapps/postConfigure/Makefile -config.status:848: creating oamapps/serverMonitor/Makefile -config.status:848: creating oamapps/sessionWalker/Makefile -config.status:848: creating oamapps/traphandler/Makefile -config.status:848: creating oamapps/sendtrap/Makefile -config.status:848: creating oamapps/calpontSupport/Makefile -config.status:848: creating primitives/Makefile -config.status:848: creating primitives/blockcache/Makefile -config.status:848: creating primitives/linux-port/Makefile -config.status:848: creating primitives/primproc/Makefile -config.status:848: creating decomsvr/Makefile -config.status:848: creating procmgr/Makefile -config.status:848: creating procmon/Makefile -config.status:848: creating snmpd/Makefile -config.status:848: creating snmpd/etc/Makefile -config.status:848: creating snmpd/snmpmanager/Makefile -config.status:848: creating tools/Makefile -config.status:848: creating tools/editem/Makefile -config.status:848: creating tools/cplogger/Makefile -config.status:848: creating tools/clearShm/Makefile -config.status:848: creating tools/setConfig/Makefile -config.status:848: creating tools/getConfig/Makefile -config.status:848: creating tools/dbbuilder/Makefile -config.status:848: creating tools/dbloadxml/Makefile -config.status:848: creating tools/configMgt/Makefile -config.status:848: creating tools/viewtablelock/Makefile -config.status:848: creating tools/cleartablelock/Makefile -config.status:848: creating tools/ddlcleanup/Makefile -config.status:848: creating tools/idbmeminfo/Makefile -config.status:848: creating versioning/Makefile -config.status:848: creating versioning/BRM/Makefile -config.status:848: creating writeengine/Makefile -config.status:848: creating writeengine/shared/Makefile -config.status:848: creating writeengine/index/Makefile -config.status:848: creating writeengine/dictionary/Makefile -config.status:848: creating writeengine/wrapper/Makefile -config.status:848: creating writeengine/xml/Makefile -config.status:848: creating writeengine/bulk/Makefile -config.status:848: creating writeengine/client/Makefile -config.status:848: creating writeengine/splitter/Makefile -config.status:848: creating writeengine/server/Makefile -config.status:848: creating writeengine/redistribute/Makefile -config.status:848: creating net-snmp/Makefile -config.status:952: creating config.h -config.status:1594: executing depfiles commands - -## ---------------- ## -## Cache variables. ## -## ---------------- ## - -ac_cv_build=x86_64-unknown-linux-gnu -ac_cv_build_alias=x86_64-unknown-linux-gnu -ac_cv_c_compiler_gnu=yes -ac_cv_c_const=yes -ac_cv_c_inline=inline -ac_cv_c_restrict=__restrict -ac_cv_c_volatile=yes -ac_cv_cxx_compiler_gnu=yes -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_F77_set= -ac_cv_env_F77_value= -ac_cv_env_FFLAGS_set= -ac_cv_env_FFLAGS_value= -ac_cv_env_LDFLAGS_set= -ac_cv_env_LDFLAGS_value= -ac_cv_env_build_alias_set= -ac_cv_env_build_alias_value= -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_exeext= -ac_cv_f77_compiler_gnu=no -ac_cv_func_alarm=yes -ac_cv_func_alloca_works=yes -ac_cv_func_dup2=yes -ac_cv_func_floor=yes -ac_cv_func_fnmatch_works=yes -ac_cv_func_fork=yes -ac_cv_func_fork_works=no -ac_cv_func_ftime=yes -ac_cv_func_ftruncate=yes -ac_cv_func_gethostbyname=yes -ac_cv_func_getpagesize=yes -ac_cv_func_gettimeofday=yes -ac_cv_func_inet_ntoa=yes -ac_cv_func_isascii=yes -ac_cv_func_localtime_r=yes -ac_cv_func_lstat_dereferences_slashed_symlink=yes -ac_cv_func_malloc_0_nonnull=yes -ac_cv_func_memchr=yes -ac_cv_func_memcmp_working=yes -ac_cv_func_memmove=yes -ac_cv_func_memset=yes -ac_cv_func_mkdir=yes -ac_cv_func_pow=yes -ac_cv_func_regcomp=yes -ac_cv_func_rmdir=yes -ac_cv_func_select=yes -ac_cv_func_select_args='int,fd_set *,struct timeval *' -ac_cv_func_setenv=yes -ac_cv_func_setlocale=yes -ac_cv_func_setvbuf_reversed=no -ac_cv_func_socket=yes -ac_cv_func_stat_empty_string_bug=no -ac_cv_func_strcasecmp=yes -ac_cv_func_strchr=yes -ac_cv_func_strcspn=yes -ac_cv_func_strdup=yes -ac_cv_func_strerror=yes -ac_cv_func_strerror_r=yes -ac_cv_func_strerror_r_char_p=yes -ac_cv_func_strftime=yes -ac_cv_func_strrchr=yes -ac_cv_func_strspn=yes -ac_cv_func_strstr=yes -ac_cv_func_strtod=yes -ac_cv_func_strtol=yes -ac_cv_func_strtoul=yes -ac_cv_func_strtoull=yes -ac_cv_func_utime=yes -ac_cv_func_utime_null=no -ac_cv_func_vfork=yes -ac_cv_func_vfork_works=yes -ac_cv_func_working_mktime=no -ac_cv_have_decl_strerror_r=yes -ac_cv_header_arpa_inet_h=yes -ac_cv_header_dlfcn_h=yes -ac_cv_header_fcntl_h=yes -ac_cv_header_inttypes_h=yes -ac_cv_header_limits_h=yes -ac_cv_header_malloc_h=yes -ac_cv_header_memory_h=yes -ac_cv_header_ncurses_h=yes -ac_cv_header_netdb_h=yes -ac_cv_header_netinet_in_h=yes -ac_cv_header_readline_readline_h=yes -ac_cv_header_stat_broken=no -ac_cv_header_stdbool_h=yes -ac_cv_header_stdc=yes -ac_cv_header_stddef_h=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_file_h=yes -ac_cv_header_sys_mount_h=yes -ac_cv_header_sys_select_h=yes -ac_cv_header_sys_socket_h=yes -ac_cv_header_sys_stat_h=yes -ac_cv_header_sys_statfs_h=yes -ac_cv_header_sys_time_h=yes -ac_cv_header_sys_timeb_h=yes -ac_cv_header_sys_types_h=yes -ac_cv_header_sys_wait_h=yes -ac_cv_header_syslog_h=yes -ac_cv_header_time=yes -ac_cv_header_unistd_h=yes -ac_cv_header_utime_h=yes -ac_cv_header_values_h=yes -ac_cv_header_vfork_h=no -ac_cv_header_zlib_h=yes -ac_cv_host=x86_64-unknown-linux-gnu -ac_cv_host_alias=x86_64-unknown-linux-gnu -ac_cv_lib_error_at_line=no -ac_cv_lib_fl_yywrap=yes -ac_cv_objext=o -ac_cv_path_XML2_CONFIG=/usr/bin/xml2-config -ac_cv_path_install='/usr/bin/install -p' -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_RANLIB=ranlib -ac_cv_prog_ac_ct_STRIP=strip -ac_cv_prog_cc_g=yes -ac_cv_prog_cc_stdc= -ac_cv_prog_cxx_g=yes -ac_cv_prog_egrep='grep -E' -ac_cv_prog_f77_g=no -ac_cv_prog_lex_root=lex.yy -ac_cv_prog_lex_yytext_pointer=no -ac_cv_prog_make_make_set=yes -ac_cv_struct_tm=time.h -ac_cv_type__Bool=no -ac_cv_type_mbstate_t=yes -ac_cv_type_mode_t=yes -ac_cv_type_off_t=yes -ac_cv_type_pid_t=yes -ac_cv_type_ptrdiff_t=yes -ac_cv_type_signal=void -ac_cv_type_size_t=yes -ac_cv_working_alloca_h=yes -am_cv_CC_dependencies_compiler_type=gcc3 -am_cv_CXX_dependencies_compiler_type=gcc3 -lt_cv_deplibs_check_method=pass_all -lt_cv_file_magic_cmd='$MAGIC_CMD' -lt_cv_file_magic_test_file= -lt_cv_ld_reload_flag=-r -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_SED=/bin/sed -lt_cv_prog_compiler_c_o=yes -lt_cv_prog_compiler_c_o_CXX=yes -lt_cv_prog_compiler_rtti_exceptions=no -lt_cv_prog_gnu_ld=yes -lt_cv_prog_gnu_ldcxx=yes -lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\''' -lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \([^ ]*\) \([^ ]*\)$/ {"\2", (lt_ptr) \&\2},/p'\''' -lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^. .* \(.*\)$/extern int \1;/p'\''' -lt_cv_sys_max_cmd_len=32768 -lt_lt_cv_prog_compiler_c_o='"yes"' -lt_lt_cv_prog_compiler_c_o_CXX='"yes"' -lt_lt_cv_sys_global_symbol_pipe='"sed -n -e '\''s/^.*[ ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[ ][ ]*\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2 \\2/p'\''"' -lt_lt_cv_sys_global_symbol_to_c_name_address='"sed -n -e '\''s/^: \\([^ ]*\\) \$/ {\\\"\\1\\\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \\([^ ]*\\) \\([^ ]*\\)\$/ {\"\\2\", (lt_ptr) \\&\\2},/p'\''"' -lt_lt_cv_sys_global_symbol_to_cdecl='"sed -n -e '\''s/^. .* \\(.*\\)\$/extern int \\1;/p'\''"' - -## ----------------- ## -## Output variables. ## -## ----------------- ## - -ACLOCAL='${SHELL} /home/calpont/genii/missing --run aclocal-1.9' -ALLOCA='' -AMDEPBACKSLASH='\' -AMDEP_FALSE='#' -AMDEP_TRUE='' -AMTAR='${SHELL} /home/calpont/genii/missing --run tar' -AR='ar' -AUTOCONF='${SHELL} /home/calpont/genii/missing --run autoconf' -AUTOHEADER='${SHELL} /home/calpont/genii/missing --run autoheader' -AUTOMAKE='${SHELL} /home/calpont/genii/missing --run automake-1.9' -AWK='gawk' -CC='gcc' -CCDEPMODE='depmode=gcc3' -CFLAGS='' -CPP='gcc -E' -CPPFLAGS='' -CXX='g++' -CXXCPP='g++ -E' -CXXDEPMODE='depmode=gcc3' -CXXFLAGS='' -CYGPATH_W='echo' -DEFS='-DHAVE_CONFIG_H' -DEPDIR='.deps' -ECHO='echo' -ECHO_C='' -ECHO_N='-n' -ECHO_T='' -EGREP='grep -E' -EXEEXT='' -F77='' -FFLAGS='' -INSTALL_DATA='${INSTALL} -m 644' -INSTALL_PROGRAM='${INSTALL}' -INSTALL_SCRIPT='${INSTALL}' -INSTALL_STRIP_PROGRAM='${SHELL} $(install_sh) -c -s' -LDFLAGS='' -LEX='flex' -LEXLIB='-lfl' -LEX_OUTPUT_ROOT='lex.yy' -LIBOBJS=' error$U.o mktime$U.o' -LIBS='' -LIBTOOL='$(SHELL) $(top_builddir)/libtool' -LN_S='ln -s' -LTLIBOBJS=' error$U.lo mktime$U.lo' -MAKEINFO='${SHELL} /home/calpont/genii/missing --run makeinfo' -OBJEXT='o' -PACKAGE='infinidb' -PACKAGE_BUGREPORT='support@infinidb.co' -PACKAGE_NAME='infinidb' -PACKAGE_STRING='infinidb 4.6.1' -PACKAGE_TARNAME='infinidb' -PACKAGE_VERSION='4.6.1' -PATH_SEPARATOR=':' -POW_LIB='' -RANLIB='ranlib' -SED='/bin/sed' -SET_MAKE='' -SHELL='/bin/sh' -STRIP='strip' -VERSION='4.6.1' -XML2_CONFIG='/usr/bin/xml2-config' -XML_CPPFLAGS='-I/usr/include/libxml2' -XML_LIBS='-lxml2 -lz -lm' -YACC='bison -y' -ac_ct_AR='ar' -ac_ct_CC='gcc' -ac_ct_CXX='g++' -ac_ct_F77='' -ac_ct_RANLIB='ranlib' -ac_ct_STRIP='strip' -am__fastdepCC_FALSE='#' -am__fastdepCC_TRUE='' -am__fastdepCXX_FALSE='#' -am__fastdepCXX_TRUE='' -am__include='include' -am__leading_dot='.' -am__quote='' -am__tar='${AMTAR} chof - "$$tardir"' -am__untar='${AMTAR} xf -' -bindir='${idbinstall}/bin' -build='x86_64-unknown-linux-gnu' -build_alias='' -build_cpu='x86_64' -build_os='linux-gnu' -build_vendor='unknown' -datadir='${prefix}/share' -etcdir='${idbinstall}/etc' -exec_prefix='${prefix}' -host='x86_64-unknown-linux-gnu' -host_alias='' -host_cpu='x86_64' -host_os='linux-gnu' -host_vendor='unknown' -idb_brm_libs='-lbrm -lidbdatafile -lcacheutils -lrwlock ${idb_oam_libs} ${idb_common_libs}' -idb_cflags='-g0 -O3 -fno-strict-aliasing -Wall' -idb_common_includes='-I${idbinstall}/include -I/usr/local/include -I/usr/local/include/libxml2 -I/usr/include/libxml2' -idb_common_ldflags='-L${idbinstall}/lib -L/usr/local/lib' -idb_common_libs='-lmessageqcpp -lloggingcpp -lconfigcpp -lidbboot -lboost_idb -lxml2 -lpthread -lrt' -idb_cppflags=' ' -idb_cxxflags='-g0 -O3 -fno-strict-aliasing -Wall -Wno-unused-local-typedefs -Wno-unused-result -Wno-format' -idb_exec_libs='-ljoblist -lexecplan -lwindowfunction -ljoiner -lrowgroup -lfuncexp -ludfsdk -ldataconvert -lcommon -lcompress -lmysqlcl_idb -lquerystats -lquerytele -lthrift -lthreadpool ${idb_brm_libs}' -idb_ldflags='-Wl,--rpath -Wl,${idbinstall}/lib -Wl,--no-as-needed -Wl,--add-needed' -idb_oam_libs='-loamcpp -lsnmpmanager ${netsnmp_libs}' -idb_write_libs='-lddlpackageproc -lddlpackage -ldmlpackageproc -ldmlpackage -lwriteengine -lwriteengineclient -lidbdatafile -lcacheutils ${idb_exec_libs}' -idbinstall='${prefix}' -includedir='${idbinstall}/include' -infodir='${prefix}/info' -install_sh='/home/calpont/genii/install-sh' -libdir='${idbinstall}/lib' -libexecdir='${exec_prefix}/libexec' -localdir='${idbinstall}/local' -localstatedir='${prefix}/var' -mandir='${idbinstall}/man' -march_flags=' ' -mibdir='${idbinstall}/share/snmp/mibs' -mkdir_p='mkdir -p --' -mysqldir='${idbinstall}/mysql' -netsnmp_libs='-lnetsnmpmibs -lnetsnmpagent -lnetsnmp -lnetsnmpmibs -lnetsnmphelpers' -netsnmpagntdir='${idbinstall}/include/net-snmp/agent' -netsnmpdir='${idbinstall}/include/net-snmp' -netsnmplibrdir='${idbinstall}/include/net-snmp/library' -netsnmpmachdir='${idbinstall}/include/net-snmp/machine' -netsnmpsysdir='${idbinstall}/include/net-snmp/system' -oldincludedir='/usr/include' -postdir='${idbinstall}/post' -prefix='/usr/local' -program_transform_name='s,x,x,' -sbindir='${idbinstall}/sbin' -sharedir='${idbinstall}/share' -sharedstatedir='${prefix}/com' -sysconfdir='${idbinstall}/etc' -target_alias='' -toolsdir='${idbinstall}/tools' - -## ----------- ## -## confdefs.h. ## -## ----------- ## - -#define HAVE_ALARM 1 -#define HAVE_ALARM 1 -#define HAVE_ALLOCA 1 -#define HAVE_ALLOCA_H 1 -#define HAVE_ARPA_INET_H 1 -#define HAVE_DECL_STRERROR_R 1 -#define HAVE_DLFCN_H 1 -#define HAVE_DUP2 1 -#define HAVE_FCNTL_H 1 -#define HAVE_FLOOR 1 -#define HAVE_FORK 1 -#define HAVE_FTIME 1 -#define HAVE_FTRUNCATE 1 -#define HAVE_GETHOSTBYNAME 1 -#define HAVE_GETPAGESIZE 1 -#define HAVE_GETTIMEOFDAY 1 -#define HAVE_INET_NTOA 1 -#define HAVE_INTTYPES_H 1 -#define HAVE_INTTYPES_H 1 -#define HAVE_ISASCII 1 -#define HAVE_LIMITS_H 1 -#define HAVE_LOCALTIME_R 1 -#define HAVE_MALLOC 1 -#define HAVE_MALLOC_H 1 -#define HAVE_MBSTATE_T 1 -#define HAVE_MEMCHR 1 -#define HAVE_MEMMOVE 1 -#define HAVE_MEMORY_H 1 -#define HAVE_MEMSET 1 -#define HAVE_MKDIR 1 -#define HAVE_NCURSES_H 1 -#define HAVE_NETDB_H 1 -#define HAVE_NETINET_IN_H 1 -#define HAVE_POW 1 -#define HAVE_PTRDIFF_T 1 -#define HAVE_READLINE_READLINE_H 1 -#define HAVE_REGCOMP 1 -#define HAVE_RMDIR 1 -#define HAVE_SELECT 1 -#define HAVE_SETENV 1 -#define HAVE_SETLOCALE 1 -#define HAVE_SOCKET 1 -#define HAVE_STDBOOL_H 1 -#define HAVE_STDDEF_H 1 -#define HAVE_STDINT_H 1 -#define HAVE_STDINT_H 1 -#define HAVE_STDLIB_H 1 -#define HAVE_STDLIB_H 1 -#define HAVE_STDLIB_H 1 -#define HAVE_STDLIB_H 1 -#define HAVE_STRCASECMP 1 -#define HAVE_STRCHR 1 -#define HAVE_STRCSPN 1 -#define HAVE_STRDUP 1 -#define HAVE_STRERROR 1 -#define HAVE_STRERROR_R 1 -#define HAVE_STRFTIME 1 -#define HAVE_STRINGS_H 1 -#define HAVE_STRINGS_H 1 -#define HAVE_STRING_H 1 -#define HAVE_STRING_H 1 -#define HAVE_STRRCHR 1 -#define HAVE_STRSPN 1 -#define HAVE_STRSTR 1 -#define HAVE_STRTOL 1 -#define HAVE_STRTOUL 1 -#define HAVE_STRTOULL 1 -#define HAVE_SYSLOG_H 1 -#define HAVE_SYS_FILE_H 1 -#define HAVE_SYS_MOUNT_H 1 -#define HAVE_SYS_SELECT_H 1 -#define HAVE_SYS_SOCKET_H 1 -#define HAVE_SYS_SOCKET_H 1 -#define HAVE_SYS_STATFS_H 1 -#define HAVE_SYS_STAT_H 1 -#define HAVE_SYS_TIMEB_H 1 -#define HAVE_SYS_TIME_H 1 -#define HAVE_SYS_TIME_H 1 -#define HAVE_SYS_TYPES_H 1 -#define HAVE_SYS_WAIT_H 1 -#define HAVE_UNISTD_H 1 -#define HAVE_UNISTD_H 1 -#define HAVE_UNISTD_H 1 -#define HAVE_UNISTD_H 1 -#define HAVE_UTIME 1 -#define HAVE_UTIME_H 1 -#define HAVE_VALUES_H 1 -#define HAVE_VFORK 1 -#define HAVE_WORKING_VFORK 1 -#define HAVE_ZLIB_H 1 -#define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 -#define PACKAGE "infinidb" -#define PACKAGE_BUGREPORT "support@infinidb.co" -#define PACKAGE_NAME "infinidb" -#define PACKAGE_STRING "infinidb 4.6.1" -#define PACKAGE_TARNAME "infinidb" -#define PACKAGE_VERSION "4.6.1" -#define PROTOTYPES 1 -#define RETSIGTYPE void -#define SELECT_TYPE_ARG1 int -#define SELECT_TYPE_ARG234 (fd_set *) -#define SELECT_TYPE_ARG5 (struct timeval *) -#define STDC_HEADERS 1 -#define STDC_HEADERS 1 -#define STRERROR_R_CHAR_P 1 -#define TIME_WITH_SYS_TIME 1 -#define VERSION "4.6.1" -#define __PROTOTYPES 1 -#define restrict __restrict -#endif -#ifdef __cplusplus -extern "C" void exit (int) throw (); - -configure: exit 0 - -## ---------------------- ## -## Running config.status. ## -## ---------------------- ## - -This file was extended by infinidb config.status 4.6.1, which was -generated by GNU Autoconf 2.59. Invocation command line was - - CONFIG_FILES = - CONFIG_HEADERS = - CONFIG_LINKS = - CONFIG_COMMANDS = - $ ./config.status - -on srvhall03 - -config.status:848: creating Makefile -config.status:848: creating utils/Makefile -config.status:848: creating utils/boost_idb/Makefile -config.status:848: creating utils/startup/Makefile -config.status:848: creating utils/common/Makefile -config.status:848: creating utils/configcpp/Makefile -config.status:848: creating utils/loggingcpp/Makefile -config.status:848: creating utils/messageqcpp/Makefile -config.status:848: creating utils/threadpool/Makefile -config.status:848: creating utils/rwlock/Makefile -config.status:848: creating utils/dataconvert/Makefile -config.status:848: creating utils/joiner/Makefile -config.status:848: creating utils/rowgroup/Makefile -config.status:848: creating utils/cacheutils/Makefile -config.status:848: creating utils/net-snmp/Makefile -config.status:848: creating utils/funcexp/Makefile -config.status:848: creating utils/udfsdk/Makefile -config.status:848: creating utils/compress/Makefile -config.status:848: creating utils/ddlcleanup/Makefile -config.status:848: creating utils/batchloader/Makefile -config.status:848: creating utils/mysqlcl_idb/Makefile -config.status:848: creating utils/querystats/Makefile -config.status:848: creating utils/jemalloc/Makefile -config.status:848: creating utils/windowfunction/Makefile -config.status:848: creating utils/idbdatafile/Makefile -config.status:848: creating utils/idbhdfs/Makefile -config.status:848: creating utils/idbhdfs/hdfs-12/Makefile -config.status:848: creating utils/idbhdfs/hdfs-20/Makefile -config.status:848: creating utils/winport/Makefile -config.status:848: creating utils/thrift/Makefile -config.status:848: creating utils/querytele/Makefile -config.status:848: creating exemgr/Makefile -config.status:848: creating ddlproc/Makefile -config.status:848: creating dbcon/Makefile -config.status:848: creating dbcon/ddlpackage/Makefile -config.status:848: creating dbcon/ddlpackageproc/Makefile -config.status:848: creating dbcon/dmlpackage/Makefile -config.status:848: creating dbcon/dmlpackageproc/Makefile -config.status:848: creating dbcon/execplan/Makefile -config.status:848: creating dbcon/joblist/Makefile -config.status:848: creating dbcon/mysql/Makefile -config.status:848: creating dmlproc/Makefile -config.status:848: creating oam/Makefile -config.status:848: creating oam/etc/Makefile -config.status:848: creating oam/install_scripts/Makefile -config.status:848: creating oam/oamcpp/Makefile -config.status:848: creating oam/post/Makefile -config.status:848: creating oam/cloud/Makefile -config.status:848: creating oamapps/Makefile -config.status:848: creating oamapps/calpontConsole/Makefile -config.status:848: creating oamapps/calpontDB/Makefile -config.status:848: creating oamapps/postConfigure/Makefile -config.status:848: creating oamapps/serverMonitor/Makefile -config.status:848: creating oamapps/sessionWalker/Makefile -config.status:848: creating oamapps/traphandler/Makefile -config.status:848: creating oamapps/sendtrap/Makefile -config.status:848: creating oamapps/calpontSupport/Makefile -config.status:848: creating primitives/Makefile -config.status:848: creating primitives/blockcache/Makefile -config.status:848: creating primitives/linux-port/Makefile -config.status:848: creating primitives/primproc/Makefile -config.status:848: creating decomsvr/Makefile -config.status:848: creating procmgr/Makefile -config.status:848: creating procmon/Makefile -config.status:848: creating snmpd/Makefile -config.status:848: creating snmpd/etc/Makefile -config.status:848: creating snmpd/snmpmanager/Makefile -config.status:848: creating tools/Makefile -config.status:848: creating tools/editem/Makefile -config.status:848: creating tools/cplogger/Makefile -config.status:848: creating tools/clearShm/Makefile -config.status:848: creating tools/setConfig/Makefile -config.status:848: creating tools/getConfig/Makefile -config.status:848: creating tools/dbbuilder/Makefile -config.status:848: creating tools/dbloadxml/Makefile -config.status:848: creating tools/configMgt/Makefile -config.status:848: creating tools/viewtablelock/Makefile -config.status:848: creating tools/cleartablelock/Makefile -config.status:848: creating tools/ddlcleanup/Makefile -config.status:848: creating tools/idbmeminfo/Makefile -config.status:848: creating versioning/Makefile -config.status:848: creating versioning/BRM/Makefile -config.status:848: creating writeengine/Makefile -config.status:848: creating writeengine/shared/Makefile -config.status:848: creating writeengine/index/Makefile -config.status:848: creating writeengine/dictionary/Makefile -config.status:848: creating writeengine/wrapper/Makefile -config.status:848: creating writeengine/xml/Makefile -config.status:848: creating writeengine/bulk/Makefile -config.status:848: creating writeengine/client/Makefile -config.status:848: creating writeengine/splitter/Makefile -config.status:848: creating writeengine/server/Makefile -config.status:848: creating writeengine/redistribute/Makefile -config.status:848: creating net-snmp/Makefile -config.status:952: creating config.h -config.status:1278: config.h is unchanged -config.status:1594: executing depfiles commands diff --git a/dbcon/mysql/Makefile.in b/dbcon/mysql/Makefile.in index f1ab264c3..e3ac1ae7f 100644 --- a/dbcon/mysql/Makefile.in +++ b/dbcon/mysql/Makefile.in @@ -253,7 +253,7 @@ lib_LTLIBRARIES = libcalmysql.la libcalmysql_la_SOURCES = ha_calpont.cpp ha_calpont_impl.cpp ha_calpont_dml.cpp ha_calpont_ddl.cpp ha_calpont_execplan.cpp ha_scalar_sub.cpp ha_in_sub.cpp ha_exists_sub.cpp ha_from_sub.cpp ha_select_sub.cpp ha_view.cpp sm.cpp ha_window_function.cpp ha_calpont_partition.cpp ha_pseudocolumn.cpp libcalmysql_la_LDFLAGS = -version-info 1:0:0 $(idb_common_ldflags) $(idb_common_libs) $(idb_write_libs) $(AM_LDFLAGS) libcalmysql_la_CPPFLAGS = -I/usr/include/libxml2 -I../../../mysql/include -I../../../mysql/sql -I../../../mysql/regex -DMYSQL_DYNAMIC_PLUGIN $(AM_CPPFLAGS) -include_HEADERS = idb_mysql.h +include_HEADERS = idb_mysql.h versionumber.h dist_mysql_DATA = syscatalog_mysql.sql dumpcat_mysql.sql calsetuserpriority.sql calremoveuserpriority.sql calshowprocesslist.sql my.cnf mysql-Columnstore = install_calpont_mysql.sh mysql-Calpont dumpcat.pl all: all-am diff --git a/oamapps/mcsadmin/Makefile.am b/oamapps/mcsadmin/Makefile.am new file mode 100644 index 000000000..6bee1913f --- /dev/null +++ b/oamapps/mcsadmin/Makefile.am @@ -0,0 +1,39 @@ +# Copyright (C) 2014 InfiniDB, Inc. +# +# This program 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; version 2 of +# the License. +# +# This program 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, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, +# MA 02110-1301, USA. + +# $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $ +## Process this file with automake to produce Makefile.in + +AM_CPPFLAGS = $(idb_cppflags) +AM_CFLAGS = $(idb_cflags) +AM_CXXFLAGS = $(idb_cxxflags) +AM_LDFLAGS = $(idb_ldflags) +bin_PROGRAMS = mcsadmin +mcsadmin_SOURCES = mcsadmin.cpp +mcsadmin_CPPFLAGS = $(idb_common_includes) $(AM_CPPFLAGS) +mcsadmin_LDFLAGS = $(idb_common_ldflags) $(idb_common_libs) $(idb_oam_libs) $(idb_exec_libs) -lreadline -lncurses $(AM_LDFLAGS) + +test: + +coverage: + +leakcheck: + +docs: + +bootstrap: install-data-am + diff --git a/oamapps/mcsadmin/Makefile.in b/oamapps/mcsadmin/Makefile.in new file mode 100644 index 000000000..c7be5ba4f --- /dev/null +++ b/oamapps/mcsadmin/Makefile.in @@ -0,0 +1,529 @@ +# Makefile.in generated by automake 1.9.6 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004, 2005 Free Software Foundation, Inc. +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + +# Copyright (C) 2014 InfiniDB, Inc. +# +# This program 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; version 2 of +# the License. +# +# This program 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, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, +# MA 02110-1301, USA. + +# $Id: Makefile.am 333 2009-04-03 20:35:04Z rdempsey $ + +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ +VPATH = @srcdir@ +pkgdatadir = $(datadir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +top_builddir = ../.. +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +INSTALL = @INSTALL@ +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +bin_PROGRAMS = mcsadmin$(EXEEXT) +subdir = oamapps/mcsadmin +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/m4/compilerflags.m4 \ + $(top_srcdir)/m4/functions.m4 $(top_srcdir)/m4/install.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = $(top_builddir)/config.h +CONFIG_CLEAN_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" +binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(bin_PROGRAMS) +am_mcsadmin_OBJECTS = mcsadmin.$(OBJEXT) +mcsadmin_OBJECTS = $(am_mcsadmin_OBJECTS) +mcsadmin_LDADD = $(LDADD) +DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +LTCXXCOMPILE = $(LIBTOOL) --tag=CXX --mode=compile $(CXX) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(LIBTOOL) --tag=CXX --mode=link $(CXXLD) $(AM_CXXFLAGS) \ + $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(mcsadmin_SOURCES) +DIST_SOURCES = $(mcsadmin_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +ACLOCAL = @ACLOCAL@ +ALLOCA = @ALLOCA@ +AMDEP_FALSE = @AMDEP_FALSE@ +AMDEP_TRUE = @AMDEP_TRUE@ +AMTAR = @AMTAR@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXDEPMODE = @CXXDEPMODE@ +CXXFLAGS = @CXXFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +ECHO = @ECHO@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +F77 = @F77@ +FFLAGS = @FFLAGS@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +LDFLAGS = @LDFLAGS@ +LEX = @LEX@ +LEXLIB = @LEXLIB@ +LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBTOOL = @LIBTOOL@ +LN_S = @LN_S@ +LTLIBOBJS = @LTLIBOBJS@ +MAKEINFO = @MAKEINFO@ +OBJEXT = @OBJEXT@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +POW_LIB = @POW_LIB@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +VERSION = @VERSION@ +XML2_CONFIG = @XML2_CONFIG@ +XML_CPPFLAGS = @XML_CPPFLAGS@ +XML_LIBS = @XML_LIBS@ +YACC = @YACC@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +ac_ct_F77 = @ac_ct_F77@ +ac_ct_RANLIB = @ac_ct_RANLIB@ +ac_ct_STRIP = @ac_ct_STRIP@ +am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@ +am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +datadir = @datadir@ +etcdir = @etcdir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +idb_brm_libs = @idb_brm_libs@ +idb_cflags = @idb_cflags@ +idb_common_includes = @idb_common_includes@ +idb_common_ldflags = @idb_common_ldflags@ +idb_common_libs = @idb_common_libs@ +idb_cppflags = @idb_cppflags@ +idb_cxxflags = @idb_cxxflags@ +idb_exec_libs = @idb_exec_libs@ +idb_ldflags = @idb_ldflags@ +idb_oam_libs = @idb_oam_libs@ +idb_write_libs = @idb_write_libs@ +idbinstall = @idbinstall@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localdir = @localdir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +march_flags = @march_flags@ +mibdir = @mibdir@ +mkdir_p = @mkdir_p@ +mysqldir = @mysqldir@ +netsnmp_libs = @netsnmp_libs@ +netsnmpagntdir = @netsnmpagntdir@ +netsnmpdir = @netsnmpdir@ +netsnmplibrdir = @netsnmplibrdir@ +netsnmpmachdir = @netsnmpmachdir@ +netsnmpsysdir = @netsnmpsysdir@ +oldincludedir = @oldincludedir@ +postdir = @postdir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +sbindir = @sbindir@ +sharedir = @sharedir@ +sharedstatedir = @sharedstatedir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +toolsdir = @toolsdir@ +AM_CPPFLAGS = $(idb_cppflags) +AM_CFLAGS = $(idb_cflags) +AM_CXXFLAGS = $(idb_cxxflags) +AM_LDFLAGS = $(idb_ldflags) +mcsadmin_SOURCES = mcsadmin.cpp +mcsadmin_CPPFLAGS = $(idb_common_includes) $(AM_CPPFLAGS) +mcsadmin_LDFLAGS = $(idb_common_ldflags) $(idb_common_libs) $(idb_oam_libs) $(idb_exec_libs) -lreadline -lncurses $(AM_LDFLAGS) +all: all-am + +.SUFFIXES: +.SUFFIXES: .cpp .lo .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu oamapps/mcsadmin/Makefile'; \ + cd $(top_srcdir) && \ + $(AUTOMAKE) --gnu oamapps/mcsadmin/Makefile +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +$(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) + test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)" + @list='$(bin_PROGRAMS)'; for p in $$list; do \ + p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ + if test -f $$p \ + || test -f $$p1 \ + ; then \ + f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ + echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \ + else :; fi; \ + done + +uninstall-binPROGRAMS: + @$(NORMAL_UNINSTALL) + @list='$(bin_PROGRAMS)'; for p in $$list; do \ + f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ + echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \ + rm -f "$(DESTDIR)$(bindir)/$$f"; \ + done + +clean-binPROGRAMS: + @list='$(bin_PROGRAMS)'; for p in $$list; do \ + f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ + echo " rm -f $$p $$f"; \ + rm -f $$p $$f ; \ + done +mcsadmin$(EXEEXT): $(mcsadmin_OBJECTS) $(mcsadmin_DEPENDENCIES) + @rm -f mcsadmin$(EXEEXT) + $(CXXLINK) $(mcsadmin_LDFLAGS) $(mcsadmin_OBJECTS) $(mcsadmin_LDADD) $(LIBS) + +mostlyclean-compile: + -rm -f *.$(OBJEXT) + +distclean-compile: + -rm -f *.tab.c + +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mcsadmin.Po@am__quote@ + +.cpp.o: +@am__fastdepCXX_TRUE@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< + +.cpp.obj: +@am__fastdepCXX_TRUE@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + +.cpp.lo: +@am__fastdepCXX_TRUE@ if $(LTCXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< + +mcsadmin.o: mcsadmin.cpp +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mcsadmin_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT mcsadmin.o -MD -MP -MF "$(DEPDIR)/mcsadmin.Tpo" -c -o mcsadmin.o `test -f 'mcsadmin.cpp' || echo '$(srcdir)/'`mcsadmin.cpp; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/mcsadmin.Tpo" "$(DEPDIR)/mcsadmin.Po"; else rm -f "$(DEPDIR)/mcsadmin.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='mcsadmin.cpp' object='mcsadmin.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mcsadmin_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o mcsadmin.o `test -f 'mcsadmin.cpp' || echo '$(srcdir)/'`mcsadmin.cpp + +mcsadmin.obj: mcsadmin.cpp +@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mcsadmin_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT mcsadmin.obj -MD -MP -MF "$(DEPDIR)/mcsadmin.Tpo" -c -o mcsadmin.obj `if test -f 'mcsadmin.cpp'; then $(CYGPATH_W) 'mcsadmin.cpp'; else $(CYGPATH_W) '$(srcdir)/mcsadmin.cpp'; fi`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/mcsadmin.Tpo" "$(DEPDIR)/mcsadmin.Po"; else rm -f "$(DEPDIR)/mcsadmin.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='mcsadmin.cpp' object='mcsadmin.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mcsadmin_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o mcsadmin.obj `if test -f 'mcsadmin.cpp'; then $(CYGPATH_W) 'mcsadmin.cpp'; else $(CYGPATH_W) '$(srcdir)/mcsadmin.cpp'; fi` + +mostlyclean-libtool: + -rm -f *.lo + +clean-libtool: + -rm -rf .libs _libs + +distclean-libtool: + -rm -f libtool +uninstall-info-am: + +ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ + mkid -fID $$unique +tags: TAGS + +TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ + test -z "$(CTAGS_ARGS)$$tags$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$tags $$unique + +GTAGS: + here=`$(am__cd) $(top_builddir) && pwd` \ + && cd $(top_srcdir) \ + && gtags -i $(GTAGS_ARGS) $$here + +distclean-tags: + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags + +distdir: $(DISTFILES) + @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ + topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ + list='$(DISTFILES)'; for file in $$list; do \ + case $$file in \ + $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ + $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ + esac; \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ + dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test "$$dir" != "$$file" && test "$$dir" != "."; then \ + dir="/$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ + else \ + dir=''; \ + fi; \ + if test -d $$d/$$file; then \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ + else \ + test -f $(distdir)/$$file \ + || cp -p $$d/$$file $(distdir)/$$file \ + || exit 1; \ + fi; \ + done +check-am: all-am +check: check-am +all-am: Makefile $(PROGRAMS) +installdirs: + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done +install: install-am +install-exec: install-exec-am +install-data: install-data-am +uninstall: uninstall-am + +install-am: all-am + @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am + +installcheck: installcheck-am +install-strip: + $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ + `test -z '$(STRIP)' || \ + echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install +mostlyclean-generic: + +clean-generic: + +distclean-generic: + -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) + +maintainer-clean-generic: + @echo "This command is intended for maintainers to use" + @echo "it deletes files that may require special tools to rebuild." +clean: clean-am + +clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am + +distclean: distclean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-libtool distclean-tags + +dvi: dvi-am + +dvi-am: + +html: html-am + +info: info-am + +info-am: + +install-data-am: + +install-exec-am: install-binPROGRAMS + +install-info: install-info-am + +install-man: + +installcheck-am: + +maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) + -rm -f Makefile +maintainer-clean-am: distclean-am maintainer-clean-generic + +mostlyclean: mostlyclean-am + +mostlyclean-am: mostlyclean-compile mostlyclean-generic \ + mostlyclean-libtool + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: + +uninstall-am: uninstall-binPROGRAMS uninstall-info-am + +.PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ + clean-generic clean-libtool ctags distclean distclean-compile \ + distclean-generic distclean-libtool distclean-tags distdir dvi \ + dvi-am html html-am info info-am install install-am \ + install-binPROGRAMS install-data install-data-am install-exec \ + install-exec-am install-info install-info-am install-man \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ + mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ + pdf pdf-am ps ps-am tags uninstall uninstall-am \ + uninstall-binPROGRAMS uninstall-info-am + + +test: + +coverage: + +leakcheck: + +docs: + +bootstrap: install-data-am +# Tell versions [3.59,3.63) of GNU make to not export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: