Hi All, I have not been able to reproduce this error, but wanted to report this in case it might be useful.
Commit -id: 0f39d5050dc0dce99258381f33f1832c437aff85 Configure options: --prefix=/mnt/storage/gurjeet/dev/builds//master/db --enable-debug --enable-cassert CFLAGS=-O0 --enable-depend --enable-thread-safety --with-openssl Used VPATH to build postgres. Attached files: terminal1.txt termonal2.txt config.log Starting from line 89 of terminal1.txt we see this snippet: postgres=# rollback; ROLLBACK postgres=# begin TRANSACTION ; BEGIN postgres=# set transaction snapshot '000002C8-1'; ERROR: SET TRANSACTION SNAPSHOT must be called before any query postgres=# rollback; ROLLBACK As you can see the SET TRANSACTION SNAPSHOT was the first statement in that transaction, and yet the ERROR message says that it is not. That snapshot id was generated in another session (terminal2.txt), and was generated outside any transaction; that's the only peculiar thing I can say about that snapshot-id. As is evident from the rest of the lines in terminal1.txt, I have not been able to reproduce this error again; I tried even with a clean build of the sources. I have taken a look at the code and everything tells me that the error should have been: ERROR: a snapshot-importing transaction must have isolation level SERIALIZABLE or REPEATABLE READ Maybe it was not a clean build the first time, and the code may have wrongly linked with previously compiled .o files. Regards, -- Gurjeet Singh EnterpriseDB Corporation The Enterprise PostgreSQL Company
psql (9.2devel) Type "help" for help. postgres=# begin transaction; BEGIN postgres=# set iso postgres=# set trans transaction transaction_deferrable transaction_isolation transaction_read_only transform_null_equals postgres=# set transaction isolation level read only; ERROR: syntax error at or near "only" LINE 1: set transaction isolation level read only; ^ postgres=# set transaction isolation level readonly; ERROR: syntax error at or near "readonly" LINE 1: set transaction isolation level readonly; ^ postgres=# set transaction ISOLATION LEVEL READ postgres=# set transaction ISOLATION LEVEL READ REPEATABLE SERIALIZABLE postgres=# set transaction ISOLATION LEVEL READ COMMITTED UNCOMMITTED postgres=# set transaction ISOLATION LEVEL READ committed; ERROR: current transaction is aborted, commands ignored until end of transaction block postgres=# rollback; ROLLBACK postgres=# begin transaction; BEGIN postgres=# set transaction ISOLATION LEVEL READ committed; SET postgres=# rollback; ROLLBACK postgres=# begin transaction; BEGIN postgres=# select 1; ?column? ---------- 1 (1 row) postgres=# set transaction ISOLATION LEVEL READ committed; SET postgres=# rollback; ROLLBACK postgres=# begin transaction; BEGIN postgres=# set transaction ISOLATION LEVEL serializable;; SET postgres=# rollback; ROLLBACK postgres=# begin transaction; BEGIN postgres=# select 1; ?column? ---------- 1 (1 row) postgres=# set transaction ISOLATION LEVEL serializable;; ERROR: SET TRANSACTION ISOLATION LEVEL must be called before any query postgres=# rollback; ROLLBACK (reverse-i-search)`be': select count(*) from clustermem^Crs ; postgres=# begin transaction; BEGIN postgres=# set transaction ISOLATION LEVEL repeatable read; SET postgres=# rollback; ROLLBACK postgres=# begin transaction; BEGIN postgres=# set transaction ISOLATION LEVEL repeatable read; SET postgres=# rollback; ROLLBACK postgres=# begin transaction; BEGIN postgres=# select 1; ?column? ---------- 1 (1 row) postgres=# set transaction ISOLATION LEVEL repeatable read; ERROR: SET TRANSACTION ISOLATION LEVEL must be called before any query postgres=# set transaction ISOLATION LEVEL ; READ REPEATABLE SERIALIZABLE postgres=# rollback; ROLLBACK postgres=# begin TRANSACTION ; BEGIN postgres=# set transaction snapshot '000002C8-1'; ERROR: SET TRANSACTION SNAPSHOT must be called before any query postgres=# rollback; ROLLBACK postgres=# begin TRANSACTION ; BEGIN postgres=# set transaction snapshot '000002C9-1'; ERROR: a snapshot-importing transaction must have isolation level SERIALIZABLE or REPEATABLE READ postgres=# rollback; ROLLBACK postgres=# begin TRANSACTION ; BEGIN postgres=# set transaction ISOLATION LEVEL repeatable read; SET postgres=# set transaction snapshot '000002C9-1'; SET postgres=# rollback; ROLLBACK postgres=# begin TRANSACTION ; BEGIN postgres=# set transaction snapshot '000002CA-1'; ERROR: a snapshot-importing transaction must have isolation level SERIALIZABLE or REPEATABLE READ postgres=# rollack; ERROR: syntax error at or near "rollack" LINE 1: rollack; ^ postgres=# rollback; ROLLBACK postgres=# begin TRANSACTION ; BEGIN postgres=# set transaction ISOLATION LEVEL repeatable read; SET postgres=# set transaction snapshot '000002CA-1'; ERROR: invalid snapshot identifier "000002CA-1" postgres=# \q
psql (9.2devel) Type "help" for help. postgres=# select pg_expo postgres=# select pg_export_snapshot(); pg_export_snapshot -------------------- 000002C8-1 (1 row) postgres=# begin transaction; BEGIN postgres=# select pg_export_snapshot(); pg_export_snapshot -------------------- 000002C9-1 (1 row) postgres=# end; COMMIT postgres=# select pg_export_snapshot(); pg_export_snapshot -------------------- 000002CA-1 (1 row) postgres=# \q
This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by PostgreSQL configure 9.2devel, which was generated by GNU Autoconf 2.63. Invocation command line was $ /mnt/storage/gurjeet/dev/POSTGRES/configure --prefix=/mnt/storage/gurjeet/dev/builds//master/db --enable-debug --enable-cassert CFLAGS=-O0 --enable-depend --enable-thread-safety --with-openssl ## --------- ## ## Platform. ## ## --------- ## hostname = gurjeet-mint uname -m = x86_64 uname -r = 2.6.35-22-generic uname -s = Linux uname -v = #33-Ubuntu SMP Sun Sep 19 20:32:27 UTC 2010 /usr/bin/uname -p = unknown /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /mnt/storage/gurjeet/dev/builds//master/db/lib PATH: /mnt/storage/gurjeet/dev/builds//master/db/bin PATH: /mingw/lib PATH: /mnt/storage/gurjeet/bin PATH: /usr/local/sbin PATH: /usr/local/bin PATH: /usr/sbin PATH: /usr/bin PATH: /sbin PATH: /bin PATH: /usr/games ## ----------- ## ## Core tests. ## ## ----------- ## configure:2072: checking build system type configure:2090: result: x86_64-unknown-linux-gnu configure:2112: checking host system type configure:2127: result: x86_64-unknown-linux-gnu configure:2151: checking which template to use configure:2251: result: linux configure:2358: checking whether to build with 64-bit integer date/time support configure:2393: result: yes configure:2400: checking whether NLS is wanted configure:2434: result: no configure:2442: checking for default port number configure:2471: result: 5432 configure:2890: checking for block size configure:2930: result: 8kB configure:2942: checking for segment size configure:2975: result: 1GB configure:2987: checking for WAL block size configure:3028: result: 8kB configure:3040: checking for WAL segment size configure:3081: result: 16MB configure:3183: checking for gcc configure:3199: found /usr/bin/gcc configure:3210: result: gcc configure:3244: checking for C compiler version configure:3252: gcc --version >&5 gcc (Ubuntu/Linaro 4.4.4-14ubuntu5) 4.4.5 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:3256: $? = 0 configure:3263: gcc -v >&5 Using built-in specs. Target: x86_64-linux-gnu Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.4.4-14ubuntu5' --with-bugurl=file:///usr/share/doc/gcc-4.4/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.4 --enable-shared --enable-multiarch --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.4 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu Thread model: posix gcc version 4.4.5 (Ubuntu/Linaro 4.4.4-14ubuntu5) configure:3267: $? = 0 configure:3274: gcc -V >&5 gcc: '-V' option must have argument configure:3278: $? = 1 configure:3301: checking for C compiler default output file name configure:3323: gcc -O0 conftest.c >&5 configure:3327: $? = 0 configure:3365: result: a.out configure:3384: checking whether the C compiler works configure:3394: ./a.out configure:3398: $? = 0 configure:3417: result: yes configure:3424: checking whether we are cross compiling configure:3426: result: no configure:3429: checking for suffix of executables configure:3436: gcc -o conftest -O0 conftest.c >&5 configure:3440: $? = 0 configure:3466: result: configure:3472: checking for suffix of object files configure:3498: gcc -c -O0 conftest.c >&5 configure:3502: $? = 0 configure:3527: result: o configure:3531: checking whether we are using the GNU C compiler configure:3560: gcc -c -O0 conftest.c >&5 configure:3567: $? = 0 configure:3584: result: yes configure:3593: checking whether gcc accepts -g configure:3623: gcc -c -g conftest.c >&5 configure:3630: $? = 0 configure:3731: result: yes configure:3748: checking for gcc option to accept ISO C89 configure:3822: gcc -c -O0 conftest.c >&5 configure:3829: $? = 0 configure:3852: result: none needed configure:3898: gcc -c -O0 conftest.c >&5 conftest.c: In function 'main': conftest.c:22: error: 'choke' undeclared (first use in this function) conftest.c:22: error: (Each undeclared identifier is reported only once conftest.c:22: error: for each function it appears in.) conftest.c:22: error: expected ';' before 'me' configure:3905: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.2devel" | #define PACKAGE_STRING "PostgreSQL 9.2devel" | #define PACKAGE_BUGREPORT "pgsql-b...@postgresql.org" | #define PG_VERSION "9.2devel" | #define PG_MAJORVERSION "9.2" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | /* end confdefs.h. */ | | int | main () | { | #ifndef __INTEL_COMPILER | choke me | #endif | ; | return 0; | } configure:3945: gcc -c -O0 conftest.c >&5 conftest.c: In function 'main': conftest.c:22: error: 'choke' undeclared (first use in this function) conftest.c:22: error: (Each undeclared identifier is reported only once conftest.c:22: error: for each function it appears in.) conftest.c:22: error: expected ';' before 'me' configure:3952: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.2devel" | #define PACKAGE_STRING "PostgreSQL 9.2devel" | #define PACKAGE_BUGREPORT "pgsql-b...@postgresql.org" | #define PG_VERSION "9.2devel" | #define PG_MAJORVERSION "9.2" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | /* end confdefs.h. */ | | int | main () | { | #ifndef __SUNPRO_C | choke me | #endif | ; | return 0; | } configure:4006: checking whether gcc supports -Wdeclaration-after-statement configure:4036: gcc -c -O0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -D_GNU_SOURCE conftest.c >&5 configure:4043: $? = 0 configure:4060: result: yes configure:4066: checking whether gcc supports -Wendif-labels configure:4096: gcc -c -O0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -D_GNU_SOURCE conftest.c >&5 configure:4103: $? = 0 configure:4120: result: yes configure:4126: checking whether gcc supports -Wmissing-format-attribute configure:4156: gcc -c -O0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -D_GNU_SOURCE conftest.c >&5 configure:4163: $? = 0 configure:4180: result: yes configure:4187: checking whether gcc supports -Wformat-security configure:4217: gcc -c -O0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -D_GNU_SOURCE conftest.c >&5 configure:4224: $? = 0 configure:4241: result: yes configure:4248: checking whether gcc supports -fno-strict-aliasing configure:4278: gcc -c -O0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -D_GNU_SOURCE conftest.c >&5 configure:4285: $? = 0 configure:4302: result: yes configure:4309: checking whether gcc supports -fwrapv configure:4339: gcc -c -O0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -D_GNU_SOURCE conftest.c >&5 configure:4346: $? = 0 configure:4363: result: yes configure:4658: checking whether the C compiler still works configure:4681: gcc -o conftest -O0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -g -D_GNU_SOURCE conftest.c >&5 configure:4688: $? = 0 configure:4696: result: yes configure:4738: gcc -c -O0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -g -D_GNU_SOURCE conftest.c >&5 configure:4745: $? = 0 configure:4768: checking how to run the C preprocessor configure:4808: gcc -E -D_GNU_SOURCE conftest.c configure:4815: $? = 0 configure:4846: gcc -E -D_GNU_SOURCE conftest.c conftest.c:17: fatal error: ac_nonexistent.h: No such file or directory compilation terminated. configure:4853: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.2devel" | #define PACKAGE_STRING "PostgreSQL 9.2devel" | #define PACKAGE_BUGREPORT "pgsql-b...@postgresql.org" | #define PG_VERSION "9.2devel" | #define PG_MAJORVERSION "9.2" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | /* end confdefs.h. */ | #include <ac_nonexistent.h> configure:4886: result: gcc -E configure:4915: gcc -E -D_GNU_SOURCE conftest.c configure:4922: $? = 0 configure:4953: gcc -E -D_GNU_SOURCE conftest.c conftest.c:17: fatal error: ac_nonexistent.h: No such file or directory compilation terminated. configure:4960: $? = 1 configure: failed program was: | /* confdefs.h. */ | #define PACKAGE_NAME "PostgreSQL" | #define PACKAGE_TARNAME "postgresql" | #define PACKAGE_VERSION "9.2devel" | #define PACKAGE_STRING "PostgreSQL 9.2devel" | #define PACKAGE_BUGREPORT "pgsql-b...@postgresql.org" | #define PG_VERSION "9.2devel" | #define PG_MAJORVERSION "9.2" | #define USE_INTEGER_DATETIMES 1 | #define DEF_PGPORT 5432 | #define DEF_PGPORT_STR "5432" | #define BLCKSZ 8192 | #define RELSEG_SIZE 131072 | #define XLOG_BLCKSZ 8192 | #define XLOG_SEG_SIZE (16 * 1024 * 1024) | /* end confdefs.h. */ | #include <ac_nonexistent.h> configure:5119: checking allow thread-safe client libraries configure:5153: result: yes configure:5160: checking whether to build with Tcl configure:5188: result: no configure:5224: checking whether to build Perl modules configure:5252: result: no configure:5259: checking whether to build Python modules configure:5287: result: no configure:5294: checking whether to build with GSSAPI support configure:5329: result: no configure:5336: checking whether to build with Kerberos 5 support configure:5371: result: no configure:5419: checking whether to build with PAM support configure:5451: result: no configure:5459: checking whether to build with LDAP support configure:5491: result: no configure:5499: checking whether to build with Bonjour support configure:5531: result: no configure:5539: checking whether to build with OpenSSL support configure:5571: result: yes configure:5578: checking whether to build with SELinux support configure:5607: result: no configure:5917: checking for grep that handles long lines and -e configure:5977: result: /bin/grep configure:5982: checking for egrep configure:6046: result: /bin/grep -E configure:6097: checking for ld used by GCC configure:6160: result: /usr/bin/ld configure:6169: checking if the linker (/usr/bin/ld) is GNU ld GNU ld (GNU Binutils for Ubuntu) 2.20.51-system.20100908 configure:6181: result: yes configure:6294: checking for ranlib configure:6310: found /usr/bin/ranlib configure:6321: result: ranlib configure:6387: checking for strip configure:6403: found /usr/bin/strip configure:6414: result: strip configure:6437: checking whether it is possible to strip libraries configure:6442: result: yes configure:6496: checking for ar configure:6512: found /usr/bin/ar configure:6523: result: ar configure:6826: checking for tar configure:6844: found /bin/tar configure:6856: result: /bin/tar configure:6864: checking whether ln -s works configure:6868: result: yes configure:6879: checking for gawk configure:6895: found /usr/bin/gawk configure:6906: result: gawk configure:6917: checking for a thread-safe mkdir -p configure:6956: result: /bin/mkdir -p configure:6972: checking for bison configure:6990: found /usr/bin/bison configure:7002: result: /usr/bin/bison configure:7017: using bison (GNU Bison) 2.4.1 configure:7048: checking for flex configure:7093: result: /usr/bin/flex configure:7113: using flex 2.5.35 configure:7125: checking for perl configure:7143: found /usr/bin/perl configure:7155: result: /usr/bin/perl configure:7167: using perl 5.10.1 configure:7430: checking for main in -lm configure:7459: gcc -o conftest -O0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -g -D_GNU_SOURCE conftest.c -lm >&5 ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_build=x86_64-unknown-linux-gnu ac_cv_c_compiler_gnu=yes ac_cv_env_CC_set= ac_cv_env_CC_value= ac_cv_env_CFLAGS_set=set ac_cv_env_CFLAGS_value=-O0 ac_cv_env_CPPFLAGS_set= ac_cv_env_CPPFLAGS_value= ac_cv_env_CPP_set= ac_cv_env_CPP_value= ac_cv_env_DOCBOOKSTYLE_set= ac_cv_env_DOCBOOKSTYLE_value= ac_cv_env_LDFLAGS_EX_set= ac_cv_env_LDFLAGS_EX_value= ac_cv_env_LDFLAGS_SL_set= ac_cv_env_LDFLAGS_SL_value= ac_cv_env_LDFLAGS_set= ac_cv_env_LDFLAGS_value= ac_cv_env_LIBS_set= ac_cv_env_LIBS_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_host=x86_64-unknown-linux-gnu ac_cv_objext=o ac_cv_path_BISON=/usr/bin/bison ac_cv_path_EGREP='/bin/grep -E' ac_cv_path_GREP=/bin/grep ac_cv_path_LD=/usr/bin/ld ac_cv_path_PERL=/usr/bin/perl ac_cv_path_TAR=/bin/tar ac_cv_path_mkdir=/bin/mkdir ac_cv_prog_AWK=gawk ac_cv_prog_CPP='gcc -E' ac_cv_prog_ac_ct_AR=ar ac_cv_prog_ac_ct_CC=gcc ac_cv_prog_ac_ct_RANLIB=ranlib ac_cv_prog_ac_ct_STRIP=strip ac_cv_prog_cc_c89= ac_cv_prog_cc_g=yes ac_cv_prog_gnu_ld=yes pgac_cv_path_flex=/usr/bin/flex pgac_cv_prog_cc_cflags__Wdeclaration_after_statement=yes pgac_cv_prog_cc_cflags__Wendif_labels=yes pgac_cv_prog_cc_cflags__Wformat_security=yes pgac_cv_prog_cc_cflags__Wmissing_format_attribute=yes pgac_cv_prog_cc_cflags__fno_strict_aliasing=yes pgac_cv_prog_cc_cflags__fwrapv=yes ## ----------------- ## ## Output variables. ## ## ----------------- ## AR='ar' AWK='gawk' BISON='/usr/bin/bison' BISONFLAGS='' CC='gcc' CFLAGS='-O0 -Wall -Wmissing-prototypes -Wpointer-arith -Wdeclaration-after-statement -Wendif-labels -Wmissing-format-attribute -Wformat-security -fno-strict-aliasing -fwrapv -g' COLLATEINDEX='' CPP='gcc -E' CPPFLAGS=' -D_GNU_SOURCE ' DEFS='' DLLTOOL='' DLLWRAP='' DOCBOOKSTYLE='' DTRACE='' DTRACEFLAGS='' ECHO_C='' ECHO_N='-n' ECHO_T='' EGREP='/bin/grep -E' ELF_SYS='true' EXEEXT='' FLEX='/usr/bin/flex' FLEXFLAGS='' GCC='yes' GCOV='' GENHTML='' GREP='/bin/grep' HAVE_IPV6='' HAVE_POSIX_SIGNALS='' INCLUDES='' JADE='' LCOV='' LD='/usr/bin/ld' LDAP_LIBS_BE='' LDAP_LIBS_FE='' LDFLAGS=' ' LDFLAGS_EX='' LDFLAGS_SL='' LIBOBJS='' LIBS='-lm ' LN_S='ln -s' LTLIBOBJS='' MKDIR_P='/bin/mkdir -p' MSGFMT='' MSGMERGE='' NSGMLS='' OBJEXT='o' OSSP_UUID_LIBS='' OSX='' PACKAGE_BUGREPORT='pgsql-b...@postgresql.org' PACKAGE_NAME='PostgreSQL' PACKAGE_STRING='PostgreSQL 9.2devel' PACKAGE_TARNAME='postgresql' PACKAGE_VERSION='9.2devel' PATH_SEPARATOR=':' PERL='/usr/bin/perl' PG_MAJORVERSION='9.2' PORTNAME='linux' PTHREAD_CC='' PTHREAD_CFLAGS='' PTHREAD_LIBS='' PYTHON='' RANLIB='ranlib' SHELL='/bin/bash' STRIP='strip' STRIP_SHARED_LIB='strip --strip-unneeded' STRIP_STATIC_LIB='strip -x' SUN_STUDIO_CC='no' TAR='/bin/tar' TAS='' TCLSH='' TCL_CONFIG_SH='' TCL_INCLUDE_SPEC='' TCL_LIBS='' TCL_LIB_FILE='' TCL_LIB_SPEC='' TCL_SHARED_BUILD='' TCL_SHLIB_LD_LIBS='' WANTED_LANGUAGES='' WINDRES='' XGETTEXT='' XML2_CONFIG='' XSLTPROC='' ZIC='' ac_ct_CC='gcc' acx_pthread_config='' autodepend='yes' bindir='${exec_prefix}/bin' build='x86_64-unknown-linux-gnu' build_alias='' build_cpu='x86_64' build_os='linux-gnu' build_vendor='unknown' configure_args=' '\''--prefix=/mnt/storage/gurjeet/dev/builds//master/db'\'' '\''--enable-debug'\'' '\''--enable-cassert'\'' '\''CFLAGS=-O0'\'' '\''--enable-depend'\'' '\''--enable-thread-safety'\'' '\''--with-openssl'\''' datadir='${datarootdir}' datarootdir='${prefix}/share' default_port='5432' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' dvidir='${docdir}' enable_coverage='no' enable_debug='yes' enable_dtrace='no' enable_nls='no' enable_profiling='no' enable_rpath='yes' enable_shared='yes' enable_thread_safety='yes' exec_prefix='NONE' have_docbook='' have_win32_dbghelp='' host='x86_64-unknown-linux-gnu' host_alias='' host_cpu='x86_64' host_os='linux-gnu' host_vendor='unknown' htmldir='${docdir}' includedir='${prefix}/include' infodir='${datarootdir}/info' krb_srvtab='' ld_R_works='' libdir='${exec_prefix}/lib' libexecdir='${exec_prefix}/libexec' localedir='${datarootdir}/locale' localstatedir='${prefix}/var' mandir='${datarootdir}/man' oldincludedir='/usr/include' pdfdir='${docdir}' perl_archlibexp='' perl_embed_ldflags='' perl_privlibexp='' perl_useshrplib='' prefix='/mnt/storage/gurjeet/dev/builds//master/db' program_transform_name='s,x,x,' psdir='${docdir}' python_additional_libs='' python_configdir='' python_includespec='' python_libdir='' python_libspec='' python_majorversion='' python_version='' sbindir='${exec_prefix}/sbin' sharedstatedir='${prefix}/com' sysconfdir='${prefix}/etc' target_alias='' vpath_build='' with_bonjour='no' with_gnu_ld='yes' with_gssapi='no' with_krb5='no' with_ldap='no' with_libxml='no' with_libxslt='no' with_openssl='yes' with_ossp_uuid='no' with_pam='no' with_perl='no' with_python='no' with_selinux='no' with_system_tzdata='' with_tcl='no' with_zlib='yes' ## ----------- ## ## confdefs.h. ## ## ----------- ## #define PACKAGE_NAME "PostgreSQL" #define PACKAGE_TARNAME "postgresql" #define PACKAGE_VERSION "9.2devel" #define PACKAGE_STRING "PostgreSQL 9.2devel" #define PACKAGE_BUGREPORT "pgsql-b...@postgresql.org" #define PG_VERSION "9.2devel" #define PG_MAJORVERSION "9.2" #define USE_INTEGER_DATETIMES 1 #define DEF_PGPORT 5432 #define DEF_PGPORT_STR "5432" #define BLCKSZ 8192 #define RELSEG_SIZE 131072 #define XLOG_BLCKSZ 8192 #define XLOG_SEG_SIZE (16 * 1024 * 1024) #define USE_ASSERT_CHECKING 1 #define ENABLE_THREAD_SAFETY 1 #define PG_KRB_SRVNAM "postgres" #define USE_SSL 1 configure: caught signal 2 configure: exit 1
-- Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers