The potential of lnav is so vast, I could hardly believe my eyes when I stumbled upon it.
I'm pretty solid with regex, but perl's spin on it took some reading. I feel like I've got a handle on it now, but lnav isn't impressed with what I've done.
The log format I want to point at lnav is unusual. The timeestamp is the 2nd column, the levels have nearly no meaning, and the messages are wildly different in their formatting and structure. If that wasn't enough the average log file size is ~80,000 lines!
Fortunately, it seems that lnav is well-suited to the task. I suspect I just need to improve my understanding a bit further.
First the .json file I'm using:
{
"custom_log" : {
"title" : "custom log",
"description" : "Description goes here",
"file-pattern" : "phlog.csv",
"regex" : {
"std" : {
"pattern" : "^(?<controller>\\d{3,5}) (?<timestamp>\\d{1,2}/\\d{1,2}/\\d{4} \\d{1,2}:\\d{1,2}:\\d{1,2} [AP]M).(?<level>\\w+).(?<subsystem>\\w+) (?<instance>.{0,8}) (?<message>\\.*)$"
}
},
"value" : {
"controller" : {
"kind" : "integer",
"identifier" : true
},
"subsystem" : {
"kind" : "string",
"identifier" : true
}
},
"sample" : [
{
"line" : "8919,5/6/2014 9:01:35 PM,WARNING,SCSITarg, ,\"Error IORPTracekey[5403d0d004715] MZ[8919 8919 14568] Sub[Virtualization] LUN[52] [Write_10] Cdb[2a000000a88800000100000000000000]\""
}
]
}
}
Here is lnav's response when I try hitting a log with this loaded:
error:ph_log:invalid sample -- 8919,5/6/2014 9:01:35 PM,WARNING,SCSITarg, ,"Error IORPTracekey[5403d0d004715] MZ[8919 8919 14568] Sub[Virtualization] LUN[52] [Write_10] Cdb[2a000000a88800000100000000000000]"
error:ph_log:no partial match found
The syntax of the log file is illustrated in the sample line above:
controller,mm/dd/yyyy hh:mm:ss am|pm,level,subsystem,instance,message
The instance field isn't always present, but when it is, it's 8 characters long, so I thought using .{0,8} would allow any kind of character to allow its absence or presence.
Based on the accepted time formats Timothy listed in an earlier post, I suspect the time stamp format in the log file may not fit what is expected. Can anyone else see additional flaws in my approach so far?
Once I figure out how to get lnav to offer basic interpretation of the logfile, then I'll start teaching it to notice strings within the messages. I imagine I'll be back here when that starts lol
Thank you !
The potential of lnav is so vast, I could hardly believe my eyes when I stumbled upon it.
I'm pretty solid with regex, but perl's spin on it took some reading. I feel like I've got a handle on it now, but lnav isn't impressed with what I've done.
The log format I want to point at lnav is unusual. The timeestamp is the 2nd column, the levels have nearly no meaning, and the messages are wildly different in their formatting and structure. If that wasn't enough the average log file size is ~80,000 lines!
Fortunately, it seems that lnav is well-suited to the task. I suspect I just need to improve my understanding a bit further.
First the .json file I'm using:
{
"custom_log" : {
"title" : "custom log",
"description" : "Description goes here",
"file-pattern" : "phlog.csv",
"regex" : {
"std" : {
"pattern" : "^(?<controller>\\d{3,5}) (?<timestamp>\\d{1,2}/\\d{1,2}/\\d{4} \\d{1,2}:\\d{1,2}:\\d{1,2} [AP]M).(?<level>\\w+).(?<subsystem>\\w+) (?<instance>.{0,8}) (?<message>\\.*)$"
}
},
"value" : {
"controller" : {
"kind" : "integer",
"identifier" : true
},
"subsystem" : {
"kind" : "string",
"identifier" : true
}
},
"sample" : [
{
"line" : "8919,5/6/2014 9:01:35 PM,WARNING,SCSITarg, ,\"Error IORPTracekey[5403d0d004715] MZ[8919 8919 14568] Sub[Virtualization] LUN[52] [Write_10] Cdb[2a000000a88800000100000000000000]\""
}
]
}
}
Here is lnav's response when I try hitting a log with this loaded:
error:ph_log:invalid sample -- 8919,5/6/2014 9:01:35 PM,WARNING,SCSITarg, ,"Error IORPTracekey[5403d0d004715] MZ[8919 8919 14568] Sub[Virtualization] LUN[52] [Write_10] Cdb[2a000000a88800000100000000000000]"
error:ph_log:no partial match found
The syntax of the log file is illustrated in the sample line above:
controller,mm/dd/yyyy hh:mm:ss am|pm,level,subsystem,instance,message
The instance field isn't always present, but when it is, it's 8 characters long, so I thought using .{0,8} would allow any kind of character to allow its absence or presence.
Based on the accepted time formats Timothy listed in an earlier post, I suspect the time stamp format in the log file may not fit what is expected. Can anyone else see additional flaws in my approach so far?
Once I figure out how to get lnav to offer basic interpretation of the logfile, then I'll start teaching it to notice strings within the messages. I imagine I'll be back here when that starts lol
Thank you !
I tried to compile lnav, but after resolving ~ 15 issues, I seem to have run into a dead end with this after running make:
In file included from ansi_scrubber.cc:36:
pcrepp.hh:47:2: error: #error "pcre.h not found?"
(my pcre.h file is in /usr/include and the path is in $PATH... not sure what this beastie wants lol)
When will you be publishing your next compiled version?
Tim, thank you so much for your help!
I tried to compile lnav, but after resolving ~ 15 issues, I seem to have run into a dead end with this after running make:
In file included from ansi_scrubber.cc:36:
pcrepp.hh:47:2: error: #error "pcre.h not found?"
(my pcre.h file is in /usr/include and the path is in $PATH... not sure what this beastie wants lol)
When will you be publishing your next compiled version?
Thank you for your help, I appreciate it very much!!
I'm running Centos 6.5 (Linux version 2.6.32-279.el6.i686 (mockbuild<at>c6b9.bsys.dev.centos.org) (gcc version 4.4.6 20120305 (Red Hat 4.4.6-4) (GCC))
Here's what ./configure posts to the screen:
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether make supports nested variables... (cached) yes
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking for g++... g++
checking whether the C++ compiler works... yes
checking for C++ compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking for style of include used by make... GNU
checking dependency style of g++... gcc3
checking gprof(4) profiling support... no
checking for ranlib... ranlib
checking whether ln -s works... yes
checking whether make sets $(MAKE)... (cached) yes
checking for a Python interpreter with version >= 2.4... python
checking for python... /usr/bin/python
checking for python version... 2.6
checking for python platform... linux2
checking for python script directory... ${prefix}/lib/python2.6/site-packages
checking for python extension module directory... ${exec_prefix}/lib/python2.6/site-packages
checking for sqlite3... /usr/bin/sqlite3
checking for bzip2... /usr/bin/bzip2
checking for gcc... gcc
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking dependency style of gcc... gcc3
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking size of off_t... 4
checking size of size_t... 4
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... no
checking whether tzname is declared... yes
checking for tzname... yes
checking for library containing openpty... -lutil
checking for library containing gzseek... -lz
checking for library containing BZ2_bzopen... no
checking for library containing dlopen... -ldl
checking for library containing backtrace... none required
checking for library containing cur_term... -ltinfo
checking for library containing Gpm_Open... no
checking execinfo.h usability... yes
checking execinfo.h presence... yes
checking for execinfo.h... yes
checking pty.h usability... yes
checking pty.h presence... yes
checking for pty.h... yes
checking util.h usability... no
checking util.h presence... no
checking for util.h... no
checking zlib.h usability... yes
checking zlib.h presence... yes
checking for zlib.h... yes
checking bzlib.h usability... no
checking bzlib.h presence... no
checking for bzlib.h... no
checking libutil.h usability... no
checking libutil.h presence... no
checking for libutil.h... no
checking sys/ttydefaults.h usability... yes
checking sys/ttydefaults.h presence... yes
checking for sys/ttydefaults.h... yes
checking for NcursesW wide-character library... yes
checking for working ncursesw/curses.h... yes
checking for working ncursesw.h... no
checking for working ncurses.h... yes
checking lib pcre... (testing)
checking for pcre_study in -lpcre... yes
checking for _ZN7pcrecpp2RE4InitERKSsPKNS_10RE_OptionsE in -lpcrecpp... yes
checking pcre.h usability... yes
checking pcre.h presence... yes
checking for pcre.h... yes
checking pcre/pcre.h usability... no
checking pcre/pcre.h presence... no
checking for pcre/pcre.h... no
checking lib pcre... -lpcre -lpcrecpp
checking lib readline... checking for readline in -lreadline... yes
checking lib readline... -lreadline
checking for SQLite3 library >= 3.0.0... yes
checking for sqlite3_stmt_readonly... no
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating TESTS_ENVIRONMENT
config.status: creating src/Makefile
config.status: creating test/Makefile
config.status: creating src/config.h
config.status: src/config.h is unchanged
config.status: executing depfiles commands
Here's what make produces:
Making all in src
make[1]: Entering directory `/root/lnav_workspace/lnav/src'
make[2]: Entering directory `/root/lnav_workspace/lnav'
make[2]: Leaving directory `/root/lnav_workspace/lnav'
make all-am
make[2]: Entering directory `/root/lnav_workspace/lnav/src'
make[3]: Entering directory `/root/lnav_workspace/lnav'
make[3]: Leaving directory `/root/lnav_workspace/lnav'
CXX ansi_scrubber.o
In file included from ansi_scrubber.cc:36:
pcrepp.hh:47:2: error: #error "pcre.h not found?"
In file included from ansi_scrubber.hh:37,
from ansi_scrubber.cc:37:
view_curses.hh:54:4: error: #error "SysV or X/Open-compatible Curses header file required"
In file included from ansi_scrubber.cc:36:
pcrepp.hh:318: error: expected ')' before '*' token
pcrepp.hh:454: error: 'pcre_extra' has not been declared
pcrepp.hh:498: error: ISO C++ forbids declaration of 'pcre' with no type
pcrepp.hh:498: error: expected ';' before '*' token
pcrepp.hh:499: error: 'pcre_extra' was not declared in this scope
pcrepp.hh:499: error: template argument 1 is invalid
pcrepp.hh: In constructor 'pcrepp::pcrepp(const char*, int)':
pcrepp.hh:325: error: invalid conversion from 'void (*)(int*)' to 'int'
pcrepp.hh:330: error: 'class pcrepp' has no member named 'p_code'
pcrepp.hh:334: error: 'pcre_compile' was not declared in this scope
pcrepp.hh:338: error: 'class pcrepp' has no member named 'p_code'
pcrepp.hh:338: error: 'pcre_refcount' was not declared in this scope
pcrepp.hh: In copy constructor 'pcrepp::pcrepp(const pcrepp&)':
pcrepp.hh:344: error: 'class pcrepp' has no member named 'p_code'
pcrepp.hh:344: error: 'const class pcrepp' has no member named 'p_code'
pcrepp.hh:345: error: 'class pcrepp' has no member named 'p_code'
pcrepp.hh:345: error: 'pcre_refcount' was not declared in this scope
pcrepp.hh: In destructor 'virtual pcrepp::~pcrepp()':
pcrepp.hh:351: error: 'class pcrepp' has no member named 'p_code'
pcrepp.hh:351: error: 'pcre_refcount' was not declared in this scope
pcrepp.hh:352: error: 'class pcrepp' has no member named 'p_code'
pcrepp.hh:353: error: 'class pcrepp' has no member named 'p_code'
pcrepp.hh: In member function 'int pcrepp::name_index(const char*) const':
pcrepp.hh:375: error: 'const class pcrepp' has no member named 'p_code'
pcrepp.hh:375: error: 'pcre_get_stringnumber' was not declared in this scope
pcrepp.hh:377: error: 'PCRE_ERROR_NOSUBSTRING' was not declared in this scope
pcrepp.hh: In member function 'bool pcrepp::match(pcre_context&, pcre_input&, int) const':
pcrepp.hh:394: error: 'PCRE_ANCHORED' was not declared in this scope
pcrepp.hh:404: error: 'const class pcrepp' has no member named 'p_code'
pcrepp.hh:405: error: request for member 'in' in '((const pcrepp*)this)->pcrepp::p_code_extra', which is of non-class type 'const int'
pcrepp.hh:411: error: 'pcre_exec' was not declared in this scope
pcrepp.hh:415: error: 'PCRE_ERROR_NOMATCH' was not declared in this scope
pcrepp.hh:417: error: 'PCRE_ERROR_PARTIAL' was not declared in this scope
pcrepp.hh:433: error: 'PCRE_ANCHORED' was not declared in this scope
pcrepp.hh: In member function 'void pcrepp::study()':
pcrepp.hh:463: error: 'class pcrepp' has no member named 'p_code'
pcrepp.hh:469: error: 'pcre_study' was not declared in this scope
pcrepp.hh:473: warning: NULL used in arithmetic
pcrepp.hh:474: error: 'pcre_extra' was not declared in this scope
pcrepp.hh:474: error: 'extra' was not declared in this scope
pcrepp.hh:476: error: 'PCRE_EXTRA_MATCH_LIMIT' was not declared in this scope
pcrepp.hh:477: error: 'PCRE_EXTRA_MATCH_LIMIT_RECURSION' was not declared in this scope
pcrepp.hh:484: error: 'class pcrepp' has no member named 'p_code'
pcrepp.hh:486: error: 'PCRE_INFO_NAMECOUNT' was not declared in this scope
pcrepp.hh:487: error: 'pcre_fullinfo' was not declared in this scope
pcrepp.hh:488: error: 'class pcrepp' has no member named 'p_code'
pcrepp.hh:490: error: 'PCRE_INFO_NAMEENTRYSIZE' was not declared in this scope
pcrepp.hh:492: error: 'class pcrepp' has no member named 'p_code'
pcrepp.hh:494: error: 'PCRE_INFO_NAMETABLE' was not declared in this scope
In file included from ansi_scrubber.hh:37,
from ansi_scrubber.cc:37:
view_curses.hh: At global scope:
view_curses.hh:86: error: ISO C++ forbids declaration of 'WINDOW' with no type
view_curses.hh:86: error: expected ';' before '*' token
view_curses.hh:89: error: ISO C++ forbids declaration of 'WINDOW' with no type
view_curses.hh:89: error: expected ';' before '*' token
view_curses.hh: In constructor 'screen_curses::screen_curses()':
view_curses.hh:78: error: class 'screen_curses' does not have any field named 'sc_main_window'
view_curses.hh:78: error: 'initscr' was not declared in this scope
view_curses.hh: In destructor 'virtual screen_curses::~screen_curses()':
view_curses.hh:83: error: 'endwin' was not declared in this scope
view_curses.hh: In member function 'void alerter::chime()':
view_curses.hh:138: error: '::flash' has not been declared
view_curses.hh: In member function 'int view_colors::attrs_for_ident(const char*, size_t) const':
view_curses.hh:550: error: 'COLORS' was not declared in this scope
view_curses.hh: In static member function 'static int view_colors::ansi_color_pair(int, int)':
view_curses.hh:574: error: 'COLOR_PAIR' was not declared in this scope
view_curses.hh: At global scope:
view_curses.hh:642: error: 'WINDOW' has not been declared
ansi_scrubber.cc: In function 'void scrub_ansi_string(std::string&, string_attrs_t&)':
ansi_scrubber.cc:75: error: 'A_STANDOUT' was not declared in this scope
ansi_scrubber.cc:85: error: 'A_BOLD' was not declared in this scope
ansi_scrubber.cc:89: error: 'A_DIM' was not declared in this scope
ansi_scrubber.cc:93: error: 'A_UNDERLINE' was not declared in this scope
ansi_scrubber.cc:97: error: 'A_REVERSE' was not declared in this scope
make[2]: *** [ansi_scrubber.o] Error 1
make[2]: Leaving directory `/root/lnav_workspace/lnav/src'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/root/lnav_workspace/lnav/src'
make: *** [all-recursive] Error 1
Here's a `locate` on pcre.h:
/usr/include/pcre.h
/usr/share/doc/pcre-devel-7.8/html/pcre.html
Here's the output of ldconfig -v:
/usr/lib/ctapi:
libopenctapi.so -> libopenctapi.so
/usr/lib/mysql:
libmysqlclient_r.so.16 -> libmysqlclient_r.so.16.0.0
libmysqlclient.so.16 -> libmysqlclient.so.16.0.0
/usr/lib/qt-3.3/lib:
libqt-mt.so.3 -> libqt-mt.so.3.3.8
libqui.so.1 -> libqui.so.1.0.0
/usr/lib/vmware-tools/lib32/libvmGuestLib.so:
libvmGuestLib.so -> libvmGuestLib.so
/usr/lib/vmware-tools/lib64/libvmGuestLib.so:
libvmGuestLib.so -> libvmGuestLib.so
/usr/lib/vmware-tools/lib32/libvmGuestLibJava.so:
libvmGuestLibJava.so -> libvmGuestLibJava.so
/usr/lib/vmware-tools/lib64/libvmGuestLibJava.so:
libvmGuestLibJava.so -> libvmGuestLibJava.so
/usr/lib/vmware-tools/lib32/libDeployPkg.so:
libDeployPkg.so -> libDeployPkg.so
/usr/lib/vmware-tools/lib64/libDeployPkg.so:
libDeployPkg.so -> libDeployPkg.so
/usr/lib/xulrunner:
libxul.so -> libxul.so
libmozsqlite3.so -> libmozsqlite3.so
libxpcom.so -> libxpcom.so
libmozalloc.so -> libmozalloc.so
/lib:
liblvm2cmd.so.2.02 -> liblvm2cmd.so.2.02
libmpathpersist.so.0 -> libmpathpersist.so.0
libtinfo.so.5 -> libtinfo.so.5.7
libgssrpc.so.4 -> libgssrpc.so.4.1
libdl.so.2 -> libdl-2.12.so
ld-linux.so.2 -> ld-2.12.so
libsepol.so.1 -> libsepol.so.1
libss.so.2 -> libss.so.2.0
libnss_compat.so.2 -> libnss_compat-2.12.so
libaio.so.1 -> libaio.so.1.0.1
libpthread.so.0 -> libpthread-2.12.so
libdb-4.7.so -> libdb-4.7.so
libproc-3.2.8.so -> libproc.so
libnss_files.so.2 -> libnss_files-2.12.so
libcrypt.so.1 -> libcrypt-2.12.so
libc.so.6 -> libc-2.12.so
libz.so.1 -> libz.so.1.2.3
libldap_r-2.4.so.2 -> libldap_r-2.4.so.2.5.6
libext2fs.so.2 -> libext2fs.so.2.4
libbz2.so.1 -> libbz2.so.1.0.4
libpam.so.0 -> libpam.so.0.82.2
libselinux.so.1 -> libselinux.so.1
libnspr4.so -> libnspr4.so
libpam_misc.so.0 -> libpam_misc.so.0.82.0
libnl.so.1 -> libnl.so.1.1.4
librt.so.1 -> librt-2.12.so
libply-splash-core.so.2 -> libply-splash-core.so.2.0.0
libgio-2.0.so.0 -> libgio-2.0.so.0.2600.1
libsemanage.so.1 -> libsemanage.so.1
libgssglue.so.1 -> libgssglue.so.1.0.0
libBrokenLocale.so.1 -> libBrokenLocale-2.12.so
libparted-2.1.so.0 -> libparted-2.1.so.0.0.0
libplc4.so -> libplc4.so
libpopt.so.0 -> libpopt.so.0.0.0
libdevmapper.so.1.02 -> libdevmapper.so.1.02
libkrb5.so.3 -> libkrb5.so.3.3
libiw.so.29 -> libiw.so.29
libSegFault.so -> libSegFault.so
libpcre.so.0 -> libpcre.so.0.0.1
libmultipath.so -> libmultipath.so
libgpg-error.so.0 -> libgpg-error.so.0.5.0
libgobject-2.0.so.0 -> libgobject-2.0.so.0.2600.1
libpci.so.3 -> libpci.so.3.1.10
libblkid.so.1 -> libblkid.so.1.1.0
libasound.so.2 -> libasound.so.2.0.0
libidn.so.11 -> libidn.so.11.6.1
liblvm2app.so.2.2 -> liblvm2app.so.2.2
libply.so.2 -> libply.so.2.0.0
libwrap.so.0 -> libwrap.so.0.7.6
libncurses.so.5 -> libncurses.so.5.7
libutil.so.1 -> libutil-2.12.so
libncursesw.so.5 -> libncursesw.so.5.7
libaio.so.1.0.0 -> libaio.so.1.0.0
libnss_winbind.so.2 -> libnss_winbind.so.2
libplds4.so -> libplds4.so
libdmraid-events-isw.so.1 -> libdmraid-events-isw.so.1.0.0.rc16
libipq.so.0 -> libipq.so.0.0.0-1.4.7
libldif-2.4.so.2 -> libldif-2.4.so.2.5.6
libcap-ng.so.0 -> libcap-ng.so.0.0.0
libauparse.so.0 -> libauparse.so.0.0.0
libgmodule-2.0.so.0 -> libgmodule-2.0.so.0.2600.1
libacl.so.1 -> libacl.so.1.1.0
libfipscheck.so.1 -> libfipscheck.so.1.1.0
libe2p.so.2 -> libe2p.so.2.3
libcgroup.so.1 -> libcgroup.so.1.0.40
libgssapi_krb5.so.2 -> libgssapi_krb5.so.2.2
libdevmapper-event-lvm2.so.2.02 -> libdevmapper-event-lvm2.so.2.02
libm.so.6 -> libm-2.12.so
libnih.so.1 -> libnih.so.1.0.0
libnsl.so.1 -> libnsl-2.12.so
libuuid.so.1 -> libuuid.so.1.3.0
libglib-2.0.so.0 -> libglib-2.0.so.0.2600.1
libexpat.so.1 -> libexpat.so.1.5.2
libgthread-2.0.so.0 -> libgthread-2.0.so.0.2600.1
libgcc_s.so.1 -> libgcc_s-4.4.7-20120601.so.1
libmount.so.1 -> libmount.so.1.1.0
libdbus-1.so.3 -> libdbus-1.so.3.4.0
libnss_nisplus.so.2 -> libnss_nisplus-2.12.so
libnss_dns.so.2 -> libnss_dns-2.12.so
libreadline.so.6 -> libreadline.so.6.0
libkrb5support.so.0 -> libkrb5support.so.0.1
libnss_nis.so.2 -> libnss_nis-2.12.so
libanl.so.1 -> libanl-2.12.so
libip6tc.so.0 -> libip6tc.so.0.0.0-1.4.7
libcidn.so.1 -> libcidn-2.12.so
libk5crypto.so.3 -> libk5crypto.so.3.1
libudev.so.0 -> libudev.so.0.5.1
libthread_db.so.1 -> libthread_db-1.0.so
libgcrypt.so.11 -> libgcrypt.so.11.5.3
libaudit.so.1 -> libaudit.so.1.0.0
libnss_hesiod.so.2 -> libnss_hesiod-2.12.so
libdmraid.so.1 -> libdmraid.so.1.0.0.rc16
libxtables.so.4 -> libxtables.so.4.0.0-1.4.7
libtirpc.so.1 -> libtirpc.so.1.0.10
libnih-dbus.so.1 -> libnih-dbus.so.1.0.0
liblber-2.4.so.2 -> liblber-2.4.so.2.5.6
libip4tc.so.0 -> libip4tc.so.0.0.0-1.4.7
libcryptsetup.so.1 -> libcryptsetup.so.1.1.0
libfuse.so.2 -> libfuse.so.2.8.3
libcom_err.so.2 -> libcom_err.so.2.1
libdevmapper-event.so.1.02 -> libdevmapper-event.so.1.02
libkeyutils.so.1 -> libkeyutils.so.1.3
libpamc.so.0 -> libpamc.so.0.82.1
libattr.so.1 -> libattr.so.1.1.0
libresolv.so.2 -> libresolv-2.12.so
libulockmgr.so.1 -> libulockmgr.so.1.0.1
libiptc.so.0 -> libiptc.so.0.0.0-1.4.7
libnss_wins.so.2 -> libnss_wins.so.2
libfreebl3.so -> libfreebl3.so
libldap-2.4.so.2 -> libldap-2.4.so.2.5.6
libcap.so.2 -> libcap.so.2.16
/usr/lib:
libmemusage.so -> libmemusage.so
libnsssysinit.so -> libnsssysinit.so
libpkcs11-helper.so.1 -> libpkcs11-helper.so.1.0.0
libutempter.so.0 -> libutempter.so.1.1.5
libapr-1.so.0 -> libapr-1.so.0.3.9
libpyglib-2.0-python.so.0 -> libpyglib-2.0-python.so.0.0.0
libORBitCosNaming-2.so.0 -> libORBitCosNaming-2.so.0.1.0
libcamel-provider-1.2.so.19 -> libcamel-provider-1.2.so.19.0.0
libxcb-record.so.0 -> libxcb-record.so.0.0.0
libcups.so.2 -> libcups.so.2
libcanberra.so.0 -> libcanberra.so.0.2.1
libcurl.so.4 -> libcurl.so.4.1.1
libopenct.so.1 -> libopenct.so.1.0.0
libsmime3.so -> libsmime3.so
libpcrecpp.so.0 -> libpcrecpp.so.0.0.0
libxmlrpc_abyss.so.3 -> libxmlrpc_abyss.so.3.16
libavahi-common.so.3 -> libavahi-common.so.3.5.1
libgnome-keyring.so.0 -> libgnome-keyring.so.0.1.1
libgailutil.so.18 -> libgailutil.so.18.0.1
liblwres.so.80 -> liblwres.so.80.0.2
libssl3.so -> libssl3.so
libXpm.so.4 -> libXpm.so.4.11.0
libXdmcp.so.6 -> libXdmcp.so.6.0.0
libXvMC.so.1 -> libXvMC.so.1.0.0
libtk8.5.so -> libtk8.5.so
libsvn_repos-1.so.0 -> libsvn_repos-1.so.0.0.0
libsvn_swig_py-1.so.0 -> libsvn_swig_py-1.so.0.0.0
libogg.so.0 -> libogg.so.0.6.0
libgsttag-0.10.so.0 -> libgsttag-0.10.so.0.20.0
libQtTest.so.4 -> libQtTest.so.4.6.2
libspectre.so.1 -> libspectre.so.1.1.4
libxcb-screensaver.so.0 -> libxcb-screensaver.so.0.0.0
libSaEvt.so.3 -> libSaEvt.so.3.0.0
libwacom.so.2 -> libwacom.so.2.0.0
libtotem_pg.so.4 -> libtotem_pg.so.4.0.0
libfa.so.1 -> libfa.so.1.4.0
libestbase.so.1.2.96.1 -> libestbase.so.1.2.96.1
libtevent.so.0 -> libtevent.so.0.9.18
libxcb-shape.so.0 -> libxcb-shape.so.0.0.0
libsndfile.so.1 -> libsndfile.so.1.0.20
libunique-1.0.so.0 -> libunique-1.0.so.0.0.0
libpng12.so.0 -> libpng12.so.0.49.0
libbfd-2.20.51.0.2-5.36.el6.so -> libbfd-2.20.51.0.2-5.36.el6.so
libXRes.so.1 -> libXRes.so.1.0.0
libSaCkpt.so.3 -> libSaCkpt.so.3.0.0
libpoppler-glib.so.4 -> libpoppler-glib.so.4.0.0
libxcb-damage.so.0 -> libxcb-damage.so.0.0.0
libwbclient.so.0 -> libwbclient.so.0
libnetapi.so.0 -> libnetapi.so.0
libcacard.so.0 -> libcacard.so.0.0.0
libgnomevfs-2.so.0 -> libgnomevfs-2.so.0.2400.2
libgvfscommon.so.0 -> libgvfscommon.so.0.0.0
libmp.so.3 -> libmp.so.3.1.14
libv4lconvert.so.0 -> libv4lconvert.so.0
libvorbis.so.0 -> libvorbis.so.0.4.3
libnss_compat_ossl.so.0 -> libnss_compat_ossl.so.0.0.0
libHBAAPI.so.2 -> libHBAAPI.so.2.0.2
libxcb-xf86dri.so.0 -> libxcb-xf86dri.so.0.0.0
libgettextpo.so.0 -> libgettextpo.so.0.4.0
libvorbisenc.so.2 -> libvorbisenc.so.2.0.6
libnetsnmp.so.20 -> libnetsnmp.so.20.0.0
libtcl8.5.so -> libtcl8.5.so
libvirt.so.0 -> libvirt.so.0.10.2
libhal-storage.so.1 -> libhal-storage.so.1.0.0
libgstaudio-0.10.so.0 -> libgstaudio-0.10.so.0.20.0
libgphoto2_port.so.0 -> libgphoto2_port.so.0.8.0
libgnome-bluetooth.so.7 -> libgnome-bluetooth.so.7.0.2
libdlm.so.3 -> libdlm.so.3.0
libicalvcal.so.0 -> libicalvcal.so.0.43.0
libgettextlib-0.17.so -> libgettextlib.so
libgstriff-0.10.so.0 -> libgstriff-0.10.so.0.20.0
libvotequorum.so.4 -> libvotequorum.so.4.0.0
libgbm.so.1 -> libgbm.so.1.0.0
libisccc.so.80 -> libisccc.so.80.0.0
libpangoft2-1.0.so.0 -> libpangoft2-1.0.so.0.2800.1
libdmx.so.1 -> libdmx.so.1.0.0
libasm.so.1 -> libasm-0.152.so
libpanel-applet-2.so.0 -> libpanel-applet-2.so.0.2.68
libgnome-mag.so.2 -> libgnome-mag.so.2.3.9
libgnome-desktop-2.so.11 -> libgnome-desktop-2.so.11.4.2
libXcursor.so.1 -> libXcursor.so.1.0.2
libibverbs.so.1 -> libibverbs.so.1.0.0
libpanelw.so.5 -> libpanelw.so.5.7
libnewt.so.0.52 -> libnewt.so.0.52.11
libORBit-imodule-2.so.0 -> libORBit-imodule-2.so.0.0.0
libsqlite3.so.0 -> libsqlite3.so.0.8.6
libhistory.so.6 -> libhistory.so.6.0
libsvn_diff-1.so.0 -> libsvn_diff-1.so.0.0.0
libevs.so.4 -> libevs.so.4.0.0
libabrt_web.so.0 -> libabrt_web.so.0.0.1
libEGL.so.1 -> libEGL.so.1.0.0
libnetsnmptrapd.so.20 -> libnetsnmptrapd.so.20.0.0
libcroco-0.6.so.3 -> libcroco-0.6.so.3.0.1
libgij.so.10 -> libgij.so.10.0.0
libcrack.so.2 -> libcrack.so.2.8.1
libXrender.so.1 -> libXrender.so.1.3.0
libicalss.so.0 -> libicalss.so.0.43.0
libcrypto.so.10 -> libcrypto.so.1.0.1e
libspice-client-glib-2.0.so.8 -> libspice-client-glib-2.0.so.8.4.0
libXmuu.so.1 -> libXmuu.so.1.0.0
libxslt.so.1 -> libxslt.so.1.1.26
libsam.so.4 -> libsam.so.4.1.0
libxcb-glx.so.0 -> libxcb-glx.so.0.0.0
libpulsedsp.so -> libpulsedsp.so
liboil-0.3.so.0 -> liboil-0.3.so.0.3.0
libconfig.so.8 -> libconfig.so.8.0.0
libisccfg.so.82 -> libisccfg.so.82.0.1
libcdio_paranoia.so.0 -> libcdio_paranoia.so.0.0.3
libdrm_nouveau2.so.2 -> libdrm_nouveau2.so.2.0.0
libLLVM-3.3-mesa.so -> libLLVM-3.3-mesa.so
libecpg.so.6 -> libecpg.so.6.1
libnssutil3.so -> libnssutil3.so
libxcb-xvmc.so.0 -> libxcb-xvmc.so.0.0.0
libfontconfig.so.1 -> libfontconfig.so.1.4.4
libsgutils2.so.2 -> libsgutils2.so.2.0.0
libconfdb.so.4 -> libconfdb.so.4.1.0
libgtk-x11-2.0.so.0 -> libgtk-x11-2.0.so.0.2000.1
libdrm_radeon.so.1 -> libdrm_radeon.so.1.0.1
libnotify.so.1 -> libnotify.so.1.2.3
libmetacity-private.so.0 -> libmetacity-private.so.0.0.0
libFLAC.so.8 -> libFLAC.so.8.2.0
libgstnetbuffer-0.10.so.0 -> libgstnetbuffer-0.10.so.0.20.0
libsmbclient.so.0 -> libsmbclient.so.0
libvirt-qemu.so.0 -> libvirt-qemu.so.0.10.2
libdrm_intel.so.1 -> libdrm_intel.so.1.0.0
libxml2.so.2 -> libxml2.so.2.7.6
libiso9660++.so.0 -> libiso9660++.so.0.0.0
liblockdev.so.1 -> liblockdev.so.1.0.1
libglapi.so.0 -> libglapi.so.0.0.0
libpcap.so.1 -> libpcap.so.1.4.0
libcairo.so.2 -> libcairo.so.2.10800.8
libijs-0.35.so -> libijs-0.35.so
libQtXml.so.4 -> libQtXml.so.4.6.2
librpmbuild.so.1 -> librpmbuild.so.1.0.0
libsvn_delta-1.so.0 -> libsvn_delta-1.so.0.0.0
liblua-5.1.so -> liblua-5.1.so
libjpeg.so.62 -> libjpeg.so.62.0.0
libgnome-window-settings.so.1 -> libgnome-window-settings.so.1.0.0
libsoftokn3.so -> libsoftokn3.so
libfenced.so.3 -> libfenced.so.3.0
libply-boot-client.so.2 -> libply-boot-client.so.2.0.0
libnssdbm3.so -> libnssdbm3.so
libexempi.so.3 -> libexempi.so.3.2.0
libcdda_paranoia.so.0 -> libcdda_paranoia.so.0.10.2
libgdu-gtk.so.0 -> libgdu-gtk.so.0.0.0
libIDL-2.so.0 -> libIDL-2.so.0.0.0
libXinerama.so.1 -> libXinerama.so.1.0.0
libedataserverui-1.2.so.11 -> libedataserverui-1.2.so.11.0.0
libQtDesigner.so.4 -> libQtDesigner.so.4.6.2
libpackagekit-glib.so.12 -> libpackagekit-glib.so.12.0.6
libxmlrpc_server_cgi.so.3 -> libxmlrpc_server_cgi.so.3.16
libcelt051.so.0 -> libcelt051.so.0.0.0
libxmlrpc_server.so.3 -> libxmlrpc_server.so.3.16
libreport.so.0 -> libreport.so.0.0.1
libXft.so.2 -> libXft.so.2.3.1
libgnutlsxx.so.26 -> libgnutlsxx.so.26.14.12
librdmacm.so.1 -> librdmacm.so.1.0.0
libwmflite-0.2.so.7 -> libwmflite-0.2.so.7.0.1
libatk-1.0.so.0 -> libatk-1.0.so.0.3009.1
libfreexl.so.1 -> libfreexl.so.1.0.0
libavahi-core.so.6 -> libavahi-core.so.6.0.1
libevview.so.1 -> libevview.so.1.0.0
libXdamage.so.1 -> libXdamage.so.1.1.0
libtiffxx.so.3 -> libtiffxx.so.3.9.4
libxcb-aux.so.0 -> libxcb-aux.so.0.0.0
libavahi-client.so.3 -> libavahi-client.so.3.2.5
libgstcontroller-0.10.so.0 -> libgstcontroller-0.10.so.0.25.0
libQtSvg.so.4 -> libQtSvg.so.4.6.2
libxmlrpc_util.so.3 -> libxmlrpc_util.so.3.16
librpcsecgss.so.3 -> librpcsecgss.so.3.0.0
libXrandr.so.2 -> libXrandr.so.2.2.0
libxcb-xselinux.so.0 -> libxcb-xselinux.so.0.0.0
libpython2.6.so.1.0 -> libpython2.6.so.1.0
libcupsimage.so.2 -> libcupsimage.so.2
libdricore9.2.0-devel.so.1 -> libdricore9.2.0-devel.so.1.0.0
libSM.so.6 -> libSM.so.6.0.1
libgomp.so.1 -> libgomp.so.1.0.0
libbtparser.so.2 -> libbtparser.so.2.2.2
librom1394.so.0 -> librom1394.so.0.3.0
libusbredirhost.so.1 -> libusbredirhost.so.1.0.0
libxcb-render.so.0 -> libxcb-render.so.0.0.0
libxmlrpc.so.3 -> libxmlrpc.so.3.16
libmenu.so.5 -> libmenu.so.5.7
libdlm_lt.so.3 -> libdlm_lt.so.3.0
libdbus-glib-1.so.2 -> libdbus-glib-1.so.2.1.0
libGLU.so.1 -> libGLU.so.1.3.1
libsmbsharemodes.so.0 -> libsmbsharemodes.so.0
libntfs-3g.so.84 -> libntfs-3g.so.84.0.0
libhbalinux.so.2 -> libhbalinux.so.2.0.2
libxcb-xfixes.so.0 -> libxcb-xfixes.so.0.0.0
libgconf-2.so.4 -> libgconf-2.so.4.1.5
libusb-1.0.so.0 -> libusb-1.0.so.0.1.0
libgcj_bc.so.1 -> libgcj_bc.so.1.0.0
libiso9660.so.7 -> libiso9660.so.7.0.0
libdlmcontrol.so.3 -> libdlmcontrol.so.3.1
libQtCLucene.so.4 -> libQtCLucene.so.4.6.2
libaprutil-1.so.0 -> libaprutil-1.so.0.3.9
libical.so.0 -> libical.so.0.43.0
libungif.so.4 -> libungif.so.4.1.6
libsoup-2.4.so.1 -> libsoup-2.4.so.1.3.0
libebook-1.2.so.10 -> libebook-1.2.so.10.3.1
libpq.so.5 -> libpq.so.5.2
libpixman-1.so.0 -> libpixman-1.so.0.26.2
libdns.so.81 -> libdns.so.81.4.1
libcoroipcc.so.4 -> libcoroipcc.so.4.0.0
libgsf-1.so.114 -> libgsf-1.so.114.0.15
libustr-1.0.so.1 -> libustr-1.0.so.1.0.4
libsvn_ra_svn-1.so.0 -> libsvn_ra_svn-1.so.0.0.0
libneon.so.27 -> libneon.so.27.2.3
libpgtypes.so.3 -> libpgtypes.so.3.1
libHalf.so.6 -> libHalf.so.6.0.0
libORBit-2.so.0 -> libORBit-2.so.0.1.0
libnm-glib-vpn.so.1 -> libnm-glib-vpn.so.1.1.0
libgs.so.8 -> libgs.so.8.70
libform.so.5 -> libform.so.5.7
libXi.so.6 -> libXi.so.6.1.0
libxcb-render-util.so.0 -> libxcb-render-util.so.0.0.0
libXxf86vm.so.1 -> libXxf86vm.so.1.0.0
librpmio.so.1 -> librpmio.so.1.0.0
libgdata.so.7 -> libgdata.so.7.2.0
libppl.so.7 -> libppl.so.7.1.0
libgettextsrc-0.17.so -> libgettextsrc.so
libxmlrpc_client.so.3 -> libxmlrpc_client.so.3.16
libQt3Support.so.4 -> libQt3Support.so.4.6.2
libgstfft-0.10.so.0 -> libgstfft-0.10.so.0.20.0
libxklavier.so.15 -> libxklavier.so.15.0.0
libgstsdp-0.10.so.0 -> libgstsdp-0.10.so.0.20.0
libreport-gtk.so.0 -> libreport-gtk.so.0.0.1
libnetsnmpmibs.so.20 -> libnetsnmpmibs.so.20.0.0
libglade-2.0.so.0 -> libglade-2.0.so.0.0.7
libsvn_ra_neon-1.so.0 -> libsvn_ra_neon-1.so.0.0.0
libcoroipcs.so.4 -> libcoroipcs.so.4.0.0
libIlmThread.so.6 -> libIlmThread.so.6.0.0
librarian.so.0 -> librarian.so.0.0.0
libsvn_fs_util-1.so.0 -> libsvn_fs_util-1.so.0.0.0
liblzo2.so.2 -> liblzo2.so.2.0.0
libabrt_dbus.so.0 -> libabrt_dbus.so.0.0.1
libevent-1.4.so.2 -> libevent-1.4.so.2.1.3
libIlmImf.so.6 -> libIlmImf.so.6.0.0
libshout.so.3 -> libshout.so.3.2.0
libaugeas.so.0 -> libaugeas.so.0.16.0
libxcb-xv.so.0 -> libxcb-xv.so.0.0.0
libpoppler.so.5 -> libpoppler.so.5.0.0
libmenuw.so.5 -> libmenuw.so.5.7
libsvn_ra_local-1.so.0 -> libsvn_ra_local-1.so.0.0.0
libpolkit-gtk-1.so.0 -> libpolkit-gtk-1.so.0.0.0
libchromeXvMC.so.1 -> libchromeXvMC.so.1.0.0
libraw1394.so.11 -> libraw1394.so.11.0.1
libgnomecanvas-2.so.0 -> libgnomecanvas-2.so.0.2600.0
libcfg.so.4 -> libcfg.so.4.0.1
libgtop-2.0.so.7 -> libgtop-2.0.so.7.2.0
libpolkit-backend-1.so.0 -> libpolkit-backend-1.so.0.0.0
libiec61883.so.0 -> libiec61883.so.0.1.1
libcdio++.so.0 -> libcdio++.so.0.0.0
libbluetooth.so.3 -> libbluetooth.so.3.8.0
libcupsdriver.so.1 -> libcupsdriver.so.1
libstartup-notification-1.so.0 -> libstartup-notification-1.so.0.0.0
liblzma.so.0 -> liblzma.so.0.0.0
libxcb-property.so.1 -> libxcb-property.so.1.0.0
libQtHelp.so.4 -> libQtHelp.so.4.6.2
libgstrtp-0.10.so.0 -> libgstrtp-0.10.so.0.20.0
libfprint.so.0 -> libfprint.so.0.0.0
libgstcdda-0.10.so.0 -> libgstcdda-0.10.so.0.20.0
libxcb-xtest.so.0 -> libxcb-xtest.so.0.0.0
libcupscgi.so.1 -> libcupscgi.so.1
libhal.so.1 -> libhal.so.1.0.0
libarchive.so.2 -> libarchive.so.2.8.3
libX11.so.6 -> libX11.so.6.3.0
libgnomekbd.so.4 -> libgnomekbd.so.4.0.0
libply-splash-graphics.so.2 -> libply-splash-graphics.so.2.0.0
libdrm.so.2 -> libdrm.so.2.4.0
libppl_c.so.2 -> libppl_c.so.2.1.0
libgif.so.4 -> libgif.so.4.1.6
libsvn_fs_base-1.so.0 -> libsvn_fs_base-1.so.0.0.0
libv4l1.so.0 -> libv4l1.so.0
libsnmp.so.20 -> libsnmp.so.20.0.0
liblldp_clif.so.1 -> liblldp_clif.so.1.0.0
libdb-4.7.so -> libdb.so
libQtCore.so.4 -> libQtCore.so.4.6.2
libgnomekbdui.so.4 -> libgnomekbdui.so.4.0.0
libcupsmime.so.1 -> libcupsmime.so.1
libslang.so.2 -> libslang.so.2.2.1
libQtMultimedia.so.4 -> libQtMultimedia.so.4.6.2
libavahi-glib.so.1 -> libavahi-glib.so.1.0.1
libQtXmlPatterns.so.4 -> libQtXmlPatterns.so.4.6.2
libnss3.so -> libnss3.so
libSaAmf.so.3 -> libSaAmf.so.3.0.0
libXxf86dga.so.1 -> libXxf86dga.so.1.0.0
libXss.so.1 -> libXss.so.1.0.0
libXcomposite.so.1 -> libXcomposite.so.1.0.0
libgnutls.so.26 -> libgnutls.so.26.14.12
libfontenc.so.1 -> libfontenc.so.1.0.0
libxkbfile.so.1 -> libxkbfile.so.1.0.2
libopenrawgnome.so.1 -> libopenrawgnome.so.1.4.0
libMagickCore.so.2 -> libMagickCore.so.2.0.0
libgdk_pixbuf-2.0.so.0 -> libgdk_pixbuf-2.0.so.0.2000.1
libssh2.so.1 -> libssh2.so.1.0.1
libseaudit.so.4 -> libseaudit.so.4.4
libpangocairo-1.0.so.0 -> libpangocairo-1.0.so.0.2800.1
libvisual-0.4.so.0 -> libvisual-0.4.so.0.0.0
libmagic.so.1 -> libmagic.so.1.0.0
libgdu.so.0 -> libgdu.so.0.0.0
libsnappy.so.1 -> libsnappy.so.1.1.4
libgdmsimplegreeter.so.1 -> libgdmsimplegreeter.so.1.0.0
libdv.so.4 -> libdv.so.4.0.3
libv4l2.so.0 -> libv4l2.so.0
libformw.so.5 -> libformw.so.5.7
libmcpp.so.0 -> libmcpp.so.0.3.0
libasprintf.so.0 -> libasprintf.so.0.0.0
libpcreposix.so.0 -> libpcreposix.so.0.0.0
libgstbase-0.10.so.0 -> libgstbase-0.10.so.0.25.0
libgnutls-extra.so.26 -> libgnutls-extra.so.26.14.12
libnautilus-extension.so.1 -> libnautilus-extension.so.1.1.0
libcamel-1.2.so.19 -> libcamel-1.2.so.19.0.0
libfence.so.4 -> libfence.so.4.0
libSaClm.so.3 -> libSaClm.so.3.0.0
libart_lgpl_2.so.2 -> libart_lgpl_2.so.2.3.20
libopcodes-2.20.51.0.2-5.36.el6.so -> libopcodes-2.20.51.0.2-5.36.el6.so
libck-connector.so.0 -> libck-connector.so.0.0.0
libgpgme-pth.so.11 -> libgpgme-pth.so.11.6.6
libpth.so.20 -> libpth.so.20.0.27
libspeex.so.1 -> libspeex.so.1.5.0
libxcb-shm.so.0 -> libxcb-shm.so.0.0.0
libevdocument.so.1 -> libevdocument.so.1.0.0
libxcb-xinerama.so.0 -> libxcb-xinerama.so.0.0.0
libpoldiff.so.1 -> libpoldiff.so.1.3.2
liblogthread.so.3 -> liblogthread.so.3.0
libquorum.so.4 -> libquorum.so.4.0.0
libnm-util.so.1 -> libnm-util.so.1.9.0
libpcsclite.so.1 -> libpcsclite.so.1.0.0
libusbpp-0.1.so.4 -> libusbpp-0.1.so.4.4.4
libgdk_pixbuf_xlib-2.0.so.0 -> libgdk_pixbuf_xlib-2.0.so.0.2000.1
libkadm5srv_mit.so.8 -> libkadm5srv_mit.so.8.0
libgstapp-0.10.so.0 -> libgstapp-0.10.so.0.20.0
libkadm5clnt_mit.so.8 -> libkadm5clnt_mit.so.8.0
libverto-k5ev.so.0 -> libverto-k5ev.so.0.0
libverto.so.0 -> libverto.so.0.0
libnetcf.so.1 -> libnetcf.so.1.4.0
libIntelXvMC.so.1 -> libIntelXvMC.so.1.0.0
librpm.so.1 -> librpm.so.1.0.0
libspice-client-gtk-2.0.so.4 -> libspice-client-gtk-2.0.so.4.0.0
libQtAssistantClient.so.4 -> libQtAssistantClient.so.4.6.2
libcloog.so.0 -> libcloog.so.0.0.0
libtag.so.1 -> libtag.so.1.6.1
libpulsecommon-0.9.21.so -> libpulsecommon-0.9.21.so
libeggdbus-1.so.0 -> libeggdbus-1.so.0.0.0
libbonoboui-2.so.0 -> libbonoboui-2.so.0.0.0
libmpfr.so.1 -> libmpfr.so.1.2.0
libcpg.so.4 -> libcpg.so.4.1.0
libsefs.so.4 -> libsefs.so.4.0.3
libgstnet-0.10.so.0 -> libgstnet-0.10.so.0.25.0
libI810XvMC.so.1 -> libI810XvMC.so.1.0.0
libpakchois.so.0 -> libpakchois.so.0.1.0
libpulse-mainloop-glib.so.0 -> libpulse-mainloop-glib.so.0.0.4
libedata-book-1.2.so.8 -> libedata-book-1.2.so.8.0.0
libedataserver-1.2.so.14 -> libedataserver-1.2.so.14.0.0
libbonobo-2.so.0 -> libbonobo-2.so.0.0.0
libIex.so.6 -> libIex.so.6.0.0
libgpgme-pthread.so.11 -> libgpgme-pthread.so.11.6.6
libtheora.so.0 -> libtheora.so.0.3.9
libgtk-vnc-1.0.so.0 -> libgtk-vnc-1.0.so.0.0.1
libpst.so.4 -> libpst.so.4.0.1
libwavpack.so.1 -> libwavpack.so.1.1.3
libapol.so.4 -> libapol.so.4.3
libQtOpenGL.so.4 -> libQtOpenGL.so.4.6.2
libecal-1.2.so.8 -> libecal-1.2.so.8.2.2
libatasmart.so.4 -> libatasmart.so.4.0.3
libxcb-icccm.so.1 -> libxcb-icccm.so.1.0.0
liblftp-tasks.so.0 -> liblftp-tasks.so.0.0.0
liblog4cpp.so.4 -> liblog4cpp.so.4.0.6
libxcb-keysyms.so.1 -> libxcb-keysyms.so.1.0.0
libxcb-image.so.0 -> libxcb-image.so.0.0.0
libspi.so.0 -> libspi.so.0.10.11
libXtst.so.6 -> libXtst.so.6.1.0
libisc.so.83 -> libisc.so.83.0.3
libenchant.so.1 -> libenchant.so.1.5.0
libFLAC++.so.6 -> libFLAC++.so.6.2.0
libnm-glib.so.2 -> libnm-glib.so.2.7.0
libegroupwise-1.2.so.13 -> libegroupwise-1.2.so.13.0.1
libgmp.so.3 -> libgmp.so.3.5.0
libsvn_ra-1.so.0 -> libsvn_ra-1.so.0.0.0
libltdl.so.7 -> libltdl.so.7.2.1
libgamin-1.so.0 -> libgamin-1.so.0.1.10
libxcb-dpms.so.0 -> libxcb-dpms.so.0.0.0
libImath.so.6 -> libImath.so.6.0.0
libxcb-event.so.1 -> libxcb-event.so.1.0.0
libyajl.so.1 -> libyajl.so.1.0.7
libavahi-ui.so.0 -> libavahi-ui.so.0.1.1
libXvMCW.so.1 -> libXvMCW.so.1.0.0
libpolkit-gobject-1.so.0 -> libpolkit-gobject-1.so.0.0.0
libpango-1.0.so.0 -> libpango-1.0.so.0.2800.1
libevent_core-1.4.so.2 -> libevent_core-1.4.so.2.1.3
libpolkit-agent-1.so.0 -> libpolkit-agent-1.so.0.0.0
libsvn_client-1.so.0 -> libsvn_client-1.so.0.0.0
libgpm.so.2 -> libgpm.so.2.1.0
libQtScript.so.4 -> libQtScript.so.4.6.2
libtdb.so.1 -> libtdb.so.1.2.10
libpciaccess.so.0 -> libpciaccess.so.0.11.1
libpangox-1.0.so.0 -> libpangox-1.0.so.0.2800.1
libexif.so.12 -> libexif.so.12.3.3
libvte.so.9 -> libvte.so.9.2501.0
libavc1394.so.0 -> libavc1394.so.0.3.0
libdrm_nouveau.so.1 -> libdrm_nouveau.so.1.0.0
libchromeXvMCPro.so.1 -> libchromeXvMCPro.so.1.0.0
libnsspem.so -> libnsspem.so
libxcb-res.so.0 -> libxcb-res.so.0.0.0
libproxy.so.0 -> libproxy.so.0.0.0
libxcb.so.1 -> libxcb.so.1.1.0
libconfig++.so.8 -> libconfig++.so.8.0.0
libbind9.so.80 -> libbind9.so.80.0.4
libopenjpeg.so.2 -> libopenjpeg.so.2.1.3.0
libopenobex.so.1 -> libopenobex.so.1.4.0
libgstdataprotocol-0.10.so.0 -> libgstdataprotocol-0.10.so.0.25.0
libstdc++.so.6 -> libstdc++.so.6.0.13
libgfortran.so.3 -> libgfortran.so.3.0.0
libQtGui.so.4 -> libQtGui.so.4.6.2
libXmu.so.6 -> libXmu.so.6.2.0
libsoup-gnome-2.4.so.1 -> libsoup-gnome-2.4.so.1.3.0
libiscsi.so.0 -> libiscsi.so.0
libgp11.so.0 -> libgp11.so.0.0.0
libexslt.so.0 -> libexslt.so.0.8.15
libxcb-dri2.so.0 -> libxcb-dri2.so.0.0.0
libsensors.so.4 -> libsensors.so.4.2.0
libnuma.so.1 -> libnuma.so.1
libtheoraenc.so.1 -> libtheoraenc.so.1.1.2
libnetsnmphelpers.so.20 -> libnetsnmphelpers.so.20.0.0
libgstinterfaces-0.10.so.0 -> libgstinterfaces-0.10.so.0.20.0
libgtksourceview-2.0.so.0 -> libgtksourceview-2.0.so.0.0.0
libgnome-menu.so.2 -> libgnome-menu.so.2.4.1
libedata-cal-1.2.so.10 -> libedata-cal-1.2.so.10.0.0
liblcms.so.1 -> liblcms.so.1.0.19
libpulse-simple.so.0 -> libpulse-simple.so.0.0.3
libspeexdsp.so.1 -> libspeexdsp.so.1.5.0
libusb-0.1.so.4 -> libusb-0.1.so.4.4.4
libasyncns.so.0 -> libasyncns.so.0.3.1
libelf.so.1 -> libelf-0.152.so
libX11-xcb.so.1 -> libX11-xcb.so.1.0.0
libcspi.so.0 -> libcspi.so.0.10.11
libQtScriptTools.so.4 -> libQtScriptTools.so.4.6.2
libxcb-atom.so.1 -> libxcb-atom.so.1.0.0
libGL.so.1 -> libGL.so.1.2.0
liblogsys.so.4 -> liblogsys.so.4.0.0
libgucharmap.so.7 -> libgucharmap.so.7.0.0
libgdk-x11-2.0.so.0 -> libgdk-x11-2.0.so.0.2000.1
libgweather.so.1 -> libgweather.so.1.5.2
libhesiod.so.0 -> libhesiod.so.0.0.0
libpangoxft-1.0.so.0 -> libpangoxft-1.0.so.0.2800.1
libsvn_fs_fs-1.so.0 -> libsvn_fs_fs-1.so.0.0.0
libnetsnmpagent.so.20 -> libnetsnmpagent.so.20.0.0
libtalloc.so.2 -> libtalloc.so.2.0.7
libkdb5.so.6 -> libkdb5.so.6.0
libtasn1.so.3 -> libtasn1.so.3.1.6
libpanel.so.5 -> libpanel.so.5.7
libloginhelper.so.0 -> libloginhelper.so.0.0.0
libgd.so.2 -> libgd.so.2.0.0
liblftp-jobs.so.0 -> liblftp-jobs.so.0.0.0
libgphoto2.so.2 -> libgphoto2.so.2.4.0
libgnomeui-2.so.0 -> libgnomeui-2.so.0.2400.1
libmtdev.so.1 -> libmtdev.so.1.0.0
libtag_c.so.0 -> libtag_c.so.0.0.0
libgstrtsp-0.10.so.0 -> libgstrtsp-0.10.so.0.20.0
libp11-kit.so.0 -> libp11-kit.so.0.0.0
libcman.so.3 -> libcman.so.3.0
libdw.so.1 -> libdw-0.152.so
libFestival.so.1.96.0 -> libFestival.so.1.96.0
libnfsidmap.so.0 -> libnfsidmap.so.0.3.0
libsasl2.so.2 -> libsasl2.so.2.0.23
libQtDesignerComponents.so.4 -> libQtDesignerComponents.so.4.6.2
libecpg_compat.so.3 -> libecpg_compat.so.3.1
libffi.so.5 -> libffi.so.5.0.6
libssl.so.10 -> libssl.so.1.0.1e
libgnomespeech.so.7 -> libgnomespeech.so.7.0.1
libQtDBus.so.4 -> libQtDBus.so.4.6.2
libgcj.so.10 -> libgcj.so.10.0.0
libtiff.so.3 -> libtiff.so.3.9.4
libXv.so.1 -> libXv.so.1.0.0
libcdda_interface.so.0 -> libcdda_interface.so.0.10.2
libgudev-1.0.so.0 -> libgudev-1.0.so.0.0.1
libcdio.so.10 -> libcdio.so.10.0.0
libgmpxx.so.4 -> libgmpxx.so.4.1.0
libxcb-xevie.so.0 -> libxcb-xevie.so.0.0.0
libphonon.so.4 -> libphonon.so.4.3.1
libcanberra-gtk.so.0 -> libcanberra-gtk.so.0.1.5
libglamor.so.0 -> libglamor.so.0.0.0
libpcprofile.so -> libpcprofile.so
libpload.so.4 -> libpload.so.4.0.0
libjasper.so.1 -> libjasper.so.1.0.0
libXfont.so.1 -> libXfont.so.1.4.1
libgstpbutils-0.10.so.0 -> libgstpbutils-0.10.so.0.20.0
libopenraw.so.1 -> libopenraw.so.1.4.0
libgdbm.so.2 -> libgdbm.so.2.0.0
libgpgme.so.11 -> libgpgme.so.11.6.6
libtic.so.5 -> libtic.so.5.7
libgnome-media-profiles.so.0 -> libgnome-media-profiles.so.0.0.0
libxcb-composite.so.0 -> libxcb-composite.so.0.0.0
libMagickWand.so.2 -> libMagickWand.so.2.0.0
libgstreamer-0.10.so.0 -> libgstreamer-0.10.so.0.25.0
libmng.so.1 -> libmng.so.1.0.0
libdb_cxx-4.7.so -> libdb_cxx.so
libQtNetwork.so.4 -> libQtNetwork.so.4.6.2
libXau.so.6 -> libXau.so.6.0.0
libebackend-1.2.so.0 -> libebackend-1.2.so.0.0.1
libhunspell-1.2.so.0 -> libhunspell-1.2.so.0.0.0
libusbredirparser.so.1 -> libusbredirparser.so.1.0.0
libsvn_fs-1.so.0 -> libsvn_fs-1.so.0.0.0
libeststring.so.1.2 -> libeststring.so.1.2
librrd_th.so.4 -> librrd_th.so.4.0.7
libqpol.so.1 -> libqpol.so.1.6
libSaTmr.so.3 -> libSaTmr.so.3.0.0
libsamplerate.so.0 -> libsamplerate.so.0.1.7
libudf.so.0 -> libudf.so.0.0.0
libbonobo-activation.so.4 -> libbonobo-activation.so.4.0.0
libgstvideo-0.10.so.0 -> libgstvideo-0.10.so.0.20.0
libgcr.so.0 -> libgcr.so.0.0.0
libtar.so.1 -> libtar.so.1.2.11
libvorbisfile.so.3 -> libvorbisfile.so.3.3.2
libspice-controller.so.0 -> libspice-controller.so.0.0.0
libICE.so.6 -> libICE.so.6.3.0
libcupsppdc.so.1 -> libcupsppdc.so.1
libXext.so.6 -> libXext.so.6.4.0
libao.so.2 -> libao.so.2.1.3
libuser.so.1 -> libuser.so.1.2.2
libpulse.so.0 -> libpulse.so.0.12.2
libxcb-randr.so.0 -> libxcb-randr.so.0.1.0
librsvg-2.so.2 -> librsvg-2.so.2.26.0
libXt.so.6 -> libXt.so.6.0.0
libxcb-reply.so.1 -> libxcb-reply.so.1.0.0
libfreetype.so.6 -> libfreetype.so.6.3.22
libsvn_subr-1.so.0 -> libsvn_subr-1.so.0.0.0
libXxf86misc.so.1 -> libXxf86misc.so.1.1.0
libxcb-sync.so.0 -> libxcb-sync.so.0.0.0
libgvfscommon-dnssd.so.0 -> libgvfscommon-dnssd.so.0.0.0
libgnome-2.so.0 -> libgnome-2.so.0.2800.0
libSaMsg.so.3 -> libSaMsg.so.3.0.0
libgcj-tools.so.10 -> libgcj-tools.so.10.0.0
libSaLck.so.3 -> libSaLck.so.3.0.0
libfam.so.0 -> libfam.so.0.0.0
libpackagekit-glib2.so.12 -> libpackagekit-glib2.so.12.0.6
libQtSql.so.4 -> libQtSql.so.4.6.2
libpng.so.3 -> libpng.so.3.49.0
libedit.so.0 -> libedit.so.0.0.27
libpulsecore-0.9.21.so -> libpulsecore-0.9.21.so
libevent_extra-1.4.so.2 -> libevent_extra-1.4.so.2.1.3
libccs.so.3 -> libccs.so.3.0
libiptcdata.so.0 -> libiptcdata.so.0.3.3
libwnck-1.so.22 -> libwnck-1.so.22.3.23
libXfixes.so.3 -> libXfixes.so.3.1.0
libcdio_cdda.so.0 -> libcdio_cdda.so.0.0.5
libxmlrpc_server_abyss.so.3 -> libxmlrpc_server_abyss.so.3.16
libdevkit-power-gobject.so.1 -> libdevkit-power-gobject.so.1.0.1
libestools.so.1.2.96.1 -> libestools.so.1.2.96.1
libthai.so.0 -> libthai.so.0.1.4
libdaemon.so.0 -> libdaemon.so.0.5.0
librrd.so.4 -> librrd.so.4.0.7
libtheoradec.so.1 -> libtheoradec.so.1.1.3
libsvn_wc-1.so.0 -> libsvn_wc-1.so.0.0.0
/lib/tls: (hwcap: 0x8000000000000000)
/lib/i686: (hwcap: 0x0008000000000000)
/usr/lib/tls: (hwcap: 0x8000000000000000)
/usr/lib/sse2: (hwcap: 0x0000000004000000)
libmp.so.3 -> libmp.so.3.1.14
libgmp.so.3 -> libgmp.so.3.5.0
libgmpxx.so.4 -> libgmpxx.so.4.1.0
/lib/i686/nosegneg: (hwcap: 0x0028000000000000)
libpthread.so.0 -> libpthread-2.12.so
libc.so.6 -> libc-2.12.so
librt.so.1 -> librt-2.12.so
libm.so.6 -> libm-2.12.so
libthread_db.so.1 -> libthread_db-1.0.so
Hi Tim,
Thank you for your help, I appreciate it very much!!
I'm running Centos 6.5 (Linux version 2.6.32-279.el6.i686 (mockbuild<at>c6b9.bsys.dev.centos.org) (gcc version 4.4.6 20120305 (Red Hat 4.4.6-4) (GCC))
Here's what ./configure posts to the screen:
checking for NcursesW wide-character library... yes
checking for working ncursesw/curses.h... yes
checking for working ncursesw.h... no
checking for working ncurses.h... yes
checking lib pcre... (testing)
checking for pcre_study in -lpcre... yes
checking for _ZN7pcrecpp2RE4InitERKSsPKNS_10RE_OptionsE in -lpcrecpp... yes
checking pcre.h usability... yes
checking pcre.h presence... yes
checking for pcre.h... yes
checking pcre/pcre.h usability... no
checking pcre/pcre.h presence... no
checking for pcre/pcre.h... no
checking lib pcre... -lpcre -lpcrecpp
CXX ansi_scrubber.o
In file included from ansi_scrubber.cc:36:In file included from ansi_scrubber.hh:37,
pcrepp.hh:47:2: error: #error "pcre.h not found?"
from ansi_scrubber.cc:37:
view_curses.hh:54:4: error: #error "SysV or X/Open-compatible Curses header file required"
In file included from ansi_scrubber.cc:36:pcrepp.hh:318: error: expected ')' before '*' token
I re-cloned the source from git into a new directory for a fresh start, then ran autogen.sh, ./configure, and make. Now a different message appears after running make. Apparantly, SQLITE_* was missing some declarations..?
There are some interesting lines in config.log; many complaints about undefined references (openpty, gzseek, BZ2_bzopen, dlopen, cur_term, Gpm_Open, slite3_stmt_readonly). Grepping for 'error:' returns 34 messages of doom & gloom, including some about sqlite, which later hangs up in make.
There are a few broken symlinks in /usr/lib, but none of them are what is mentioned in the config.log (some java thing, firefox, an initd thing...). No broken links in ${prefix}/include (where $prefix=/usr), either.
The ./configure output still says that it didn't find quite a list of things, yet still exited 0. I tried to trace the test in the script but it's so well written that I can't seem to wrap my head around the testing process lol...
Here's all the things that returned with '... no':
checking whether we are cross compiling... no
checking gprof(4) profiling support... no
checking for struct tm.tm_zone... no
checking for library containing BZ2_bzopen... no
checking for library containing Gpm_Open... no
checking util.h usability... no
checking util.h presence... no
checking for util.h... no
checking bzlib.h usability... no
checking bzlib.h presence... no
checking for bzlib.h... no
checking libutil.h usability... no
checking libutil.h presence... no
checking for libutil.h... no
checking for working ncursesw.h... no
checking pcre/pcre.h usability... no
checking pcre/pcre.h presence... no
checking for pcre/pcre.h... no
checking for sqlite3_stmt_readonly... no
********************************************************************************
OUTPUT FROM CONFIG:
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking for g++... g++
checking for C++ compiler default output file name... a.out
checking whether the C++ compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking for style of include used by make... GNU
checking dependency style of g++... gcc3
checking gprof(4) profiling support... no
checking for a BSD-compatible install... /usr/bin/install -c
checking for ranlib... ranlib
checking whether ln -s works... yes
checking whether make sets $(MAKE)... (cached) yes
checking for a Python interpreter with version >= 2.4... python
checking for python... /usr/bin/python
checking for python version... 2.6
checking for python platform... linux2
checking for python script directory... ${prefix}/lib/python2.6/site-packages
checking for python extension module directory... ${exec_prefix}/lib/python2.6/site-packages
checking for sqlite3... /usr/bin/sqlite3
checking for bzip2... /usr/bin/bzip2
checking for gcc... gcc
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for NcursesW wide-character library... yes
checking for working ncursesw/curses.h... yes
checking for working ncursesw.h... no
checking for working ncurses.h... yes
checking lib pcre... (testing)
checking for pcre_study in -lpcre... yes
checking for _ZN7pcrecpp2RE4InitERKSsPKNS_10RE_OptionsE in -lpcrecpp... yes
checking pcre.h usability... yes
checking pcre.h presence... yes
checking for pcre.h... yes
checking pcre/pcre.h usability... no
checking pcre/pcre.h presence... no
checking for pcre/pcre.h... no
checking lib pcre... -lpcre -lpcrecpp
checking lib readline... checking for readline in -lreadline... yes
checking lib readline... -lreadline
checking for SQLite3 library >= 3.0.0... yes
checking for sqlite3_stmt_readonly... no
configure: creating ./config.status
config.status: creating Makefile
config.status: creating TESTS_ENVIRONMENT
config.status: creating src/Makefile
config.status: creating test/Makefile
config.status: creating src/config.h
config.status: executing depfiles commands
OUTPUT FROM CONFIG.LOG:
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by lnav configure 0.7.0, which was
generated by GNU Autoconf 2.63. Invocation command line was
$ ./configure
## --------- ##
## Platform. ##
## --------- ##
hostname = fileshare
uname -m = i686
uname -r = 2.6.32-279.el6.i686
uname -s = Linux
uname -v = #1 SMP Fri Jun 22 10:59:55 UTC 2012
/usr/bin/uname -p = unknown
/bin/uname -X = unknown
/bin/arch = i686
/usr/bin/arch -k = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo = unknown
/bin/machine = unknown
/usr/bin/oslevel = unknown
/bin/universe = unknown
PATH: /usr/lib/qt-3.3/bin
PATH: /usr/local/sbin
PATH: /usr/local/bin
PATH: /sbin
PATH: /bin
PATH: /usr/sbin
PATH: /usr/bin
PATH: /root/bin
## ----------- ##
## Core tests. ##
## ----------- ##
configure:1947: checking for a BSD-compatible install
configure:2015: result: /usr/bin/install -c
configure:2026: checking whether build environment is sane
configure:2086: result: yes
configure:2227: checking for a thread-safe mkdir -p
configure:2266: result: /bin/mkdir -p
configure:2279: checking for gawk
configure:2295: found /bin/gawk
configure:2306: result: gawk
configure:2317: checking whether make sets $(MAKE)
configure:2339: result: yes
configure:2442: checking build system type
configure:2460: result: i686-pc-linux-gnu
configure:2482: checking host system type
configure:2497: result: i686-pc-linux-gnu
configure:2605: checking for g++
configure:2621: found /usr/bin/g++
configure:2632: result: g++
configure:2659: checking for C++ compiler version
configure:2667: g++ --version >&5
g++ (GCC) 4.4.7 20120313 (Red Hat 4.4.7-4)
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:2671: $? = 0
configure:2678: g++ -v >&5
Using built-in specs.
Target: i686-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=i686 --build=i686-redhat-linux
Thread model: posix
gcc version 4.4.7 20120313 (Red Hat 4.4.7-4) (GCC)
configure:2682: $? = 0
configure:2689: g++ -V >&5
g++: '-V' option must have argument
configure:2693: $? = 1
configure:2716: checking for C++ compiler default output file name
configure:2738: g++ -I/usr/local/include -I/usr/include -L/usr/local/lib -L/usr/lib -L//lib conftest.cpp >&5
configure:2742: $? = 0
configure:2780: result: a.out
configure:2799: checking whether the C++ compiler works
configure:2809: ./a.out
configure:2813: $? = 0
configure:2832: result: yes
configure:2839: checking whether we are cross compiling
configure:2841: result: no
configure:2844: checking for suffix of executables
configure:2851: g++ -o conftest -I/usr/local/include -I/usr/include -L/usr/local/lib -L/usr/lib -L//lib conftest.cpp >&5
configure:2855: $? = 0
configure:2881: result:
configure:2887: checking for suffix of object files
configure:2913: g++ -c -I/usr/local/include -I/usr/include conftest.cpp >&5
configure:2917: $? = 0
configure:2942: result: o
configure:2946: checking whether we are using the GNU C++ compiler
configure:2975: g++ -c -I/usr/local/include -I/usr/include conftest.cpp >&5
configure:2982: $? = 0
configure:2999: result: yes
configure:3008: checking whether g++ accepts -g
configure:3038: g++ -c -g -I/usr/local/include -I/usr/include conftest.cpp >&5
configure:3045: $? = 0
configure:3146: result: yes
configure:3180: checking for style of include used by make
configure:3208: result: GNU
configure:3233: checking dependency style of g++
configure:3343: result: gcc3
configure:3370: checking gprof(4) profiling support
configure:3379: result: no
configure:3398: checking for a BSD-compatible install
configure:3466: result: /usr/bin/install -c
configure:3520: checking for ranlib
configure:3536: found /usr/bin/ranlib
configure:3547: result: ranlib
configure:3569: checking whether ln -s works
configure:3573: result: yes
configure:3580: checking whether make sets $(MAKE)
configure:3602: result: yes
configure:3646: checking for a Python interpreter with version >= 2.4
configure:3663: python -c import sys # split strings by '.' and convert to numeric. Append some zeros # because we need at least 4 digits for the hex conversion. # map returns an iterator in Python 3.0 and a list in 2.x minver = list(map(int, '2.4'.split('.'))) + [0, 0, 0] minverhex = 0 # xrange is not present in Python 3.0 and range returns an iterator for i in list(range(0, 4)): minverhex = (minverhex << 8) + minver[i] sys.exit(sys.hexversion < minverhex)
configure:3666: $? = 0
configure:3673: result: python
configure:3681: checking for python
configure:3699: found /usr/bin/python
configure:3711: result: /usr/bin/python
configure:3731: checking for python version
configure:3738: result: 2.6
configure:3750: checking for python platform
configure:3757: result: linux2
configure:3764: checking for python script directory
configure:3793: result: ${prefix}/lib/python2.6/site-packages
configure:3802: checking for python extension module directory
configure:3831: result: ${exec_prefix}/lib/python2.6/site-packages
configure:3847: checking for sqlite3
configure:3865: found /usr/bin/sqlite3
configure:3877: result: /usr/bin/sqlite3
configure:3894: checking for bzip2
configure:3912: found /usr/bin/bzip2
configure:3924: result: /usr/bin/bzip2
configure:3981: checking for gcc
configure:3997: found /usr/bin/gcc
configure:4008: result: gcc
configure:4240: checking for C compiler version
configure:4248: gcc --version >&5
gcc (GCC) 4.4.7 20120313 (Red Hat 4.4.7-4)
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:4252: $? = 0
configure:4259: gcc -v >&5
Using built-in specs.
Target: i686-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=i686 --build=i686-redhat-linux
Thread model: posix
gcc version 4.4.7 20120313 (Red Hat 4.4.7-4) (GCC)
configure:4263: $? = 0
configure:4270: gcc -V >&5
gcc: '-V' option must have argument
configure:4274: $? = 1
configure:4277: checking whether we are using the GNU C compiler
configure:4306: gcc -c -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c >&5
configure:4313: $? = 0
configure:4330: result: yes
configure:4339: checking whether gcc accepts -g
configure:4369: gcc -c -g -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c >&5
configure:4376: $? = 0
configure:4477: result: yes
configure:4494: checking for gcc option to accept ISO C89
configure:4568: gcc -c -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c >&5
configure:4575: $? = 0
configure:4598: result: none needed
configure:4618: checking dependency style of gcc
configure:4728: result: gcc3
configure:4749: checking how to run the C preprocessor
configure:4789: gcc -E -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c
configure:4796: $? = 0
configure:4827: gcc -E -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c
conftest.c:10:28: error: ac_nonexistent.h: No such file or directory
configure:4834: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "lnav"
| #define PACKAGE_TARNAME "lnav"
| #define PACKAGE_VERSION "0.7.0"
| #define PACKAGE_STRING "lnav 0.7.0"
| #define PACKAGE_BUGREPORT "ln...@googlegroups.com"
| #define PACKAGE "lnav"
| #define VERSION "0.7.0"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:4867: result: gcc -E
configure:4896: gcc -E -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c
configure:4903: $? = 0
configure:4934: gcc -E -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c
conftest.c:10:28: error: ac_nonexistent.h: No such file or directory
configure:4941: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "lnav"
| #define PACKAGE_TARNAME "lnav"
| #define PACKAGE_VERSION "0.7.0"
| #define PACKAGE_STRING "lnav 0.7.0"
| #define PACKAGE_BUGREPORT "ln...@googlegroups.com"
| #define PACKAGE "lnav"
| #define VERSION "0.7.0"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:4981: checking for grep that handles long lines and -e
configure:5041: result: /bin/grep
configure:5046: checking for egrep
configure:5110: result: /bin/grep -E
configure:5115: checking for ANSI C header files
configure:5145: gcc -c -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c >&5
configure:5152: $? = 0
configure:5251: gcc -o conftest -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS -L/usr/local/lib -L/usr/lib -L//lib conftest.c >&5
configure:5255: $? = 0
configure:5261: ./conftest
configure:5265: $? = 0
configure:5283: result: yes
configure:5307: checking for sys/types.h
configure:5328: gcc -c -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c >&5
configure:5335: $? = 0
configure:5352: result: yes
configure:5307: checking for sys/stat.h
configure:5328: gcc -c -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c >&5
configure:5335: $? = 0
configure:5352: result: yes
configure:5307: checking for stdlib.h
configure:5328: gcc -c -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c >&5
configure:5335: $? = 0
configure:5352: result: yes
configure:5307: checking for string.h
configure:5328: gcc -c -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c >&5
configure:5335: $? = 0
configure:5352: result: yes
configure:5307: checking for memory.h
configure:5328: gcc -c -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c >&5
configure:5335: $? = 0
configure:5352: result: yes
configure:5307: checking for strings.h
configure:5328: gcc -c -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c >&5
configure:5335: $? = 0
configure:5352: result: yes
configure:5307: checking for inttypes.h
configure:5328: gcc -c -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c >&5
configure:5335: $? = 0
configure:5352: result: yes
configure:5307: checking for stdint.h
configure:5328: gcc -c -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c >&5
configure:5335: $? = 0
configure:5352: result: yes
configure:5307: checking for unistd.h
configure:5328: gcc -c -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c >&5
configure:5335: $? = 0
configure:5352: result: yes
configure:5370: checking size of off_t
configure:5675: gcc -o conftest -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS -L/usr/local/lib -L/usr/lib -L//lib conftest.c >&5
configure:5679: $? = 0
configure:5685: ./conftest
configure:5689: $? = 0
configure:5715: result: 4
configure:5729: checking size of size_t
configure:6034: gcc -o conftest -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS -L/usr/local/lib -L/usr/lib -L//lib conftest.c >&5
configure:6038: $? = 0
configure:6044: ./conftest
configure:6048: $? = 0
configure:6074: result: 4
configure:6085: checking whether struct tm is in sys/time.h or time.h
configure:6115: gcc -c -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c >&5
configure:6122: $? = 0
configure:6137: result: time.h
configure:6147: checking for struct tm.tm_zone
configure:6178: gcc -c -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c >&5
conftest.c: In function 'main':
conftest.c:30: error: 'struct tm' has no member named 'tm_zone'
configure:6185: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "lnav"
| #define PACKAGE_TARNAME "lnav"
| #define PACKAGE_VERSION "0.7.0"
| #define PACKAGE_STRING "lnav 0.7.0"
| #define PACKAGE_BUGREPORT "ln...@googlegroups.com"
| #define PACKAGE "lnav"
| #define VERSION "0.7.0"
| #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 SIZEOF_OFF_T 4
| #define SIZEOF_SIZE_T 4
| /* end confdefs.h. */
| #include <sys/types.h>
| #include <time.h>
|
|
| int
| main ()
| {
| static struct tm ac_aggr;
| if (ac_aggr.tm_zone)
| return 0;
| ;
| return 0;
| }
configure:6221: gcc -c -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c >&5
conftest.c: In function 'main':
conftest.c:30: error: 'struct tm' has no member named 'tm_zone'
configure:6228: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "lnav"
| #define PACKAGE_TARNAME "lnav"
| #define PACKAGE_VERSION "0.7.0"
| #define PACKAGE_STRING "lnav 0.7.0"
| #define PACKAGE_BUGREPORT "ln...@googlegroups.com"
| #define PACKAGE "lnav"
| #define VERSION "0.7.0"
| #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 SIZEOF_OFF_T 4
| #define SIZEOF_SIZE_T 4
| /* end confdefs.h. */
| #include <sys/types.h>
| #include <time.h>
|
|
| int
| main ()
| {
| static struct tm ac_aggr;
| if (sizeof ac_aggr.tm_zone)
| return 0;
| ;
| return 0;
| }
configure:6246: result: no
configure:6264: checking whether tzname is declared
configure:6294: gcc -c -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c >&5
configure:6301: $? = 0
configure:6316: result: yes
configure:6334: checking for tzname
configure:6364: gcc -o conftest -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS -L/usr/local/lib -L/usr/lib -L//lib conftest.c >&5
configure:6371: $? = 0
configure:6391: result: yes
configure:6403: checking for library containing openpty
configure:6444: gcc -o conftest -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS -L/usr/local/lib -L/usr/lib -L//lib conftest.c >&5
/tmp/ccxDIi7d.o: In function `main':
/root/lnav_workspace/lnav/conftest.c:35: undefined reference to `openpty'
collect2: ld returned 1 exit status
configure:6451: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "lnav"
| #define PACKAGE_TARNAME "lnav"
| #define PACKAGE_VERSION "0.7.0"
| #define PACKAGE_STRING "lnav 0.7.0"
| #define PACKAGE_BUGREPORT "ln...@googlegroups.com"
| #define PACKAGE "lnav"
| #define VERSION "0.7.0"
| #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 SIZEOF_OFF_T 4
| #define SIZEOF_SIZE_T 4
| #define HAVE_DECL_TZNAME 1
| #define HAVE_TZNAME 1
| /* end confdefs.h. */
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char openpty ();
| int
| main ()
| {
| return openpty ();
| ;
| return 0;
| }
configure:6444: gcc -o conftest -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS -L/usr/local/lib -L/usr/lib -L//lib conftest.c -lutil >&5
configure:6451: $? = 0
configure:6482: result: -lutil
configure:6490: checking for library containing gzseek
configure:6531: gcc -o conftest -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS -L/usr/local/lib -L/usr/lib -L//lib conftest.c -lutil >&5
/tmp/ccHv8S3i.o: In function `main':
/root/lnav_workspace/lnav/conftest.c:35: undefined reference to `gzseek'
collect2: ld returned 1 exit status
configure:6538: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "lnav"
| #define PACKAGE_TARNAME "lnav"
| #define PACKAGE_VERSION "0.7.0"
| #define PACKAGE_STRING "lnav 0.7.0"
| #define PACKAGE_BUGREPORT "ln...@googlegroups.com"
| #define PACKAGE "lnav"
| #define VERSION "0.7.0"
| #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 SIZEOF_OFF_T 4
| #define SIZEOF_SIZE_T 4
| #define HAVE_DECL_TZNAME 1
| #define HAVE_TZNAME 1
| /* end confdefs.h. */
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char gzseek ();
| int
| main ()
| {
| return gzseek ();
| ;
| return 0;
| }
configure:6531: gcc -o conftest -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS -L/usr/local/lib -L/usr/lib -L//lib conftest.c -lz -lutil >&5
configure:6538: $? = 0
configure:6569: result: -lz
configure:6581: checking for library containing BZ2_bzopen
configure:6622: gcc -o conftest -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS -L/usr/local/lib -L/usr/lib -L//lib conftest.c -lz -lutil >&5
/tmp/ccM7GFzo.o: In function `main':
/root/lnav_workspace/lnav/conftest.c:35: undefined reference to `BZ2_bzopen'
collect2: ld returned 1 exit status
configure:6629: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "lnav"
| #define PACKAGE_TARNAME "lnav"
| #define PACKAGE_VERSION "0.7.0"
| #define PACKAGE_STRING "lnav 0.7.0"
| #define PACKAGE_BUGREPORT "ln...@googlegroups.com"
| #define PACKAGE "lnav"
| #define VERSION "0.7.0"
| #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 SIZEOF_OFF_T 4
| #define SIZEOF_SIZE_T 4
| #define HAVE_DECL_TZNAME 1
| #define HAVE_TZNAME 1
| /* end confdefs.h. */
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char BZ2_bzopen ();
| int
| main ()
| {
| return BZ2_bzopen ();
| ;
| return 0;
| }
configure:6622: gcc -o conftest -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS -L/usr/local/lib -L/usr/lib -L//lib conftest.c -lbz2 -lz -lutil >&5
/usr/bin/ld: cannot find -lbz2
collect2: ld returned 1 exit status
configure:6629: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "lnav"
| #define PACKAGE_TARNAME "lnav"
| #define PACKAGE_VERSION "0.7.0"
| #define PACKAGE_STRING "lnav 0.7.0"
| #define PACKAGE_BUGREPORT "ln...@googlegroups.com"
| #define PACKAGE "lnav"
| #define VERSION "0.7.0"
| #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 SIZEOF_OFF_T 4
| #define SIZEOF_SIZE_T 4
| #define HAVE_DECL_TZNAME 1
| #define HAVE_TZNAME 1
| /* end confdefs.h. */
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char BZ2_bzopen ();
| int
| main ()
| {
| return BZ2_bzopen ();
| ;
| return 0;
| }
configure:6660: result: no
configure:6668: checking for library containing dlopen
configure:6709: gcc -o conftest -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS -L/usr/local/lib -L/usr/lib -L//lib conftest.c -lz -lutil >&5
/tmp/ccZhvTWs.o: In function `main':
/root/lnav_workspace/lnav/conftest.c:35: undefined reference to `dlopen'
collect2: ld returned 1 exit status
configure:6716: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "lnav"
| #define PACKAGE_TARNAME "lnav"
| #define PACKAGE_VERSION "0.7.0"
| #define PACKAGE_STRING "lnav 0.7.0"
| #define PACKAGE_BUGREPORT "ln...@googlegroups.com"
| #define PACKAGE "lnav"
| #define VERSION "0.7.0"
| #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 SIZEOF_OFF_T 4
| #define SIZEOF_SIZE_T 4
| #define HAVE_DECL_TZNAME 1
| #define HAVE_TZNAME 1
| /* end confdefs.h. */
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char dlopen ();
| int
| main ()
| {
| return dlopen ();
| ;
| return 0;
| }
configure:6709: gcc -o conftest -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS -L/usr/local/lib -L/usr/lib -L//lib conftest.c -ldl -lz -lutil >&5
configure:6716: $? = 0
configure:6747: result: -ldl
configure:6755: checking for library containing backtrace
configure:6796: gcc -o conftest -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS -L/usr/local/lib -L/usr/lib -L//lib conftest.c -ldl -lz -lutil >&5
configure:6803: $? = 0
configure:6834: result: none required
configure:6844: checking for library containing cur_term
configure:6885: gcc -o conftest -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS -L/usr/local/lib -L/usr/lib -L//lib conftest.c -ldl -lz -lutil >&5
/tmp/ccDGLgNz.o: In function `main':
/root/lnav_workspace/lnav/conftest.c:35: undefined reference to `cur_term'
collect2: ld returned 1 exit status
configure:6892: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "lnav"
| #define PACKAGE_TARNAME "lnav"
| #define PACKAGE_VERSION "0.7.0"
| #define PACKAGE_STRING "lnav 0.7.0"
| #define PACKAGE_BUGREPORT "ln...@googlegroups.com"
| #define PACKAGE "lnav"
| #define VERSION "0.7.0"
| #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 SIZEOF_OFF_T 4
| #define SIZEOF_SIZE_T 4
| #define HAVE_DECL_TZNAME 1
| #define HAVE_TZNAME 1
| /* end confdefs.h. */
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char cur_term ();
| int
| main ()
| {
| return cur_term ();
| ;
| return 0;
| }
configure:6885: gcc -o conftest -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS -L/usr/local/lib -L/usr/lib -L//lib conftest.c -ltinfo -ldl -lz -lutil >&5
configure:6892: $? = 0
configure:6923: result: -ltinfo
configure:6931: checking for library containing Gpm_Open
configure:6972: gcc -o conftest -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS -L/usr/local/lib -L/usr/lib -L//lib conftest.c -ltinfo -ldl -lz -lutil >&5
/tmp/ccpIY7zF.o: In function `main':
/root/lnav_workspace/lnav/conftest.c:35: undefined reference to `Gpm_Open'
collect2: ld returned 1 exit status
configure:6979: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "lnav"
| #define PACKAGE_TARNAME "lnav"
| #define PACKAGE_VERSION "0.7.0"
| #define PACKAGE_STRING "lnav 0.7.0"
| #define PACKAGE_BUGREPORT "ln...@googlegroups.com"
| #define PACKAGE "lnav"
| #define VERSION "0.7.0"
| #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 SIZEOF_OFF_T 4
| #define SIZEOF_SIZE_T 4
| #define HAVE_DECL_TZNAME 1
| #define HAVE_TZNAME 1
| /* end confdefs.h. */
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char Gpm_Open ();
| int
| main ()
| {
| return Gpm_Open ();
| ;
| return 0;
| }
configure:6972: gcc -o conftest -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS -L/usr/local/lib -L/usr/lib -L//lib conftest.c -lgpm -ltinfo -ldl -lz -lutil >&5
/usr/bin/ld: cannot find -lgpm
collect2: ld returned 1 exit status
configure:6979: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "lnav"
| #define PACKAGE_TARNAME "lnav"
| #define PACKAGE_VERSION "0.7.0"
| #define PACKAGE_STRING "lnav 0.7.0"
| #define PACKAGE_BUGREPORT "ln...@googlegroups.com"
| #define PACKAGE "lnav"
| #define VERSION "0.7.0"
| #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 SIZEOF_OFF_T 4
| #define SIZEOF_SIZE_T 4
| #define HAVE_DECL_TZNAME 1
| #define HAVE_TZNAME 1
| /* end confdefs.h. */
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char Gpm_Open ();
| int
| main ()
| {
| return Gpm_Open ();
| ;
| return 0;
| }
configure:7010: result: no
configure:7041: checking execinfo.h usability
configure:7058: gcc -c -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c >&5
configure:7065: $? = 0
configure:7079: result: yes
configure:7083: checking execinfo.h presence
configure:7098: gcc -E -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c
configure:7105: $? = 0
configure:7119: result: yes
configure:7152: checking for execinfo.h
configure:7161: result: yes
configure:7041: checking pty.h usability
configure:7058: gcc -c -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c >&5
configure:7065: $? = 0
configure:7079: result: yes
configure:7083: checking pty.h presence
configure:7098: gcc -E -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c
configure:7105: $? = 0
configure:7119: result: yes
configure:7152: checking for pty.h
configure:7161: result: yes
configure:7041: checking util.h usability
configure:7058: gcc -c -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c >&5
conftest.c:59:18: error: util.h: No such file or directory
configure:7065: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "lnav"
| #define PACKAGE_TARNAME "lnav"
| #define PACKAGE_VERSION "0.7.0"
| #define PACKAGE_STRING "lnav 0.7.0"
| #define PACKAGE_BUGREPORT "ln...@googlegroups.com"
| #define PACKAGE "lnav"
| #define VERSION "0.7.0"
| #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 SIZEOF_OFF_T 4
| #define SIZEOF_SIZE_T 4
| #define HAVE_DECL_TZNAME 1
| #define HAVE_TZNAME 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_PTY_H 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| # include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| # include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <util.h>
configure:7079: result: no
configure:7083: checking util.h presence
configure:7098: gcc -E -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c
conftest.c:26:18: error: util.h: No such file or directory
configure:7105: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "lnav"
| #define PACKAGE_TARNAME "lnav"
| #define PACKAGE_VERSION "0.7.0"
| #define PACKAGE_STRING "lnav 0.7.0"
| #define PACKAGE_BUGREPORT "ln...@googlegroups.com"
| #define PACKAGE "lnav"
| #define VERSION "0.7.0"
| #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 SIZEOF_OFF_T 4
| #define SIZEOF_SIZE_T 4
| #define HAVE_DECL_TZNAME 1
| #define HAVE_TZNAME 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_PTY_H 1
| /* end confdefs.h. */
| #include <util.h>
configure:7119: result: no
configure:7152: checking for util.h
configure:7161: result: no
configure:7041: checking zlib.h usability
configure:7058: gcc -c -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c >&5
configure:7065: $? = 0
configure:7079: result: yes
configure:7083: checking zlib.h presence
configure:7098: gcc -E -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c
configure:7105: $? = 0
configure:7119: result: yes
configure:7152: checking for zlib.h
configure:7161: result: yes
configure:7041: checking bzlib.h usability
configure:7058: gcc -c -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c >&5
conftest.c:60:19: error: bzlib.h: No such file or directory
configure:7065: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "lnav"
| #define PACKAGE_TARNAME "lnav"
| #define PACKAGE_VERSION "0.7.0"
| #define PACKAGE_STRING "lnav 0.7.0"
| #define PACKAGE_BUGREPORT "ln...@googlegroups.com"
| #define PACKAGE "lnav"
| #define VERSION "0.7.0"
| #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 SIZEOF_OFF_T 4
| #define SIZEOF_SIZE_T 4
| #define HAVE_DECL_TZNAME 1
| #define HAVE_TZNAME 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_ZLIB_H 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| # include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| # include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <bzlib.h>
configure:7079: result: no
configure:7083: checking bzlib.h presence
configure:7098: gcc -E -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c
conftest.c:27:19: error: bzlib.h: No such file or directory
configure:7105: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "lnav"
| #define PACKAGE_TARNAME "lnav"
| #define PACKAGE_VERSION "0.7.0"
| #define PACKAGE_STRING "lnav 0.7.0"
| #define PACKAGE_BUGREPORT "ln...@googlegroups.com"
| #define PACKAGE "lnav"
| #define VERSION "0.7.0"
| #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 SIZEOF_OFF_T 4
| #define SIZEOF_SIZE_T 4
| #define HAVE_DECL_TZNAME 1
| #define HAVE_TZNAME 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_ZLIB_H 1
| /* end confdefs.h. */
| #include <bzlib.h>
configure:7119: result: no
configure:7152: checking for bzlib.h
configure:7161: result: no
configure:7041: checking libutil.h usability
configure:7058: gcc -c -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c >&5
conftest.c:60:21: error: libutil.h: No such file or directory
configure:7065: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "lnav"
| #define PACKAGE_TARNAME "lnav"
| #define PACKAGE_VERSION "0.7.0"
| #define PACKAGE_STRING "lnav 0.7.0"
| #define PACKAGE_BUGREPORT "ln...@googlegroups.com"
| #define PACKAGE "lnav"
| #define VERSION "0.7.0"
| #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 SIZEOF_OFF_T 4
| #define SIZEOF_SIZE_T 4
| #define HAVE_DECL_TZNAME 1
| #define HAVE_TZNAME 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_ZLIB_H 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| # include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| # include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <libutil.h>
configure:7079: result: no
configure:7083: checking libutil.h presence
configure:7098: gcc -E -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c
conftest.c:27:21: error: libutil.h: No such file or directory
configure:7105: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "lnav"
| #define PACKAGE_TARNAME "lnav"
| #define PACKAGE_VERSION "0.7.0"
| #define PACKAGE_STRING "lnav 0.7.0"
| #define PACKAGE_BUGREPORT "ln...@googlegroups.com"
| #define PACKAGE "lnav"
| #define VERSION "0.7.0"
| #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 SIZEOF_OFF_T 4
| #define SIZEOF_SIZE_T 4
| #define HAVE_DECL_TZNAME 1
| #define HAVE_TZNAME 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_ZLIB_H 1
| /* end confdefs.h. */
| #include <libutil.h>
configure:7119: result: no
configure:7152: checking for libutil.h
configure:7161: result: no
configure:7041: checking sys/ttydefaults.h usability
configure:7058: gcc -c -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c >&5
configure:7065: $? = 0
configure:7079: result: yes
configure:7083: checking sys/ttydefaults.h presence
configure:7098: gcc -E -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c
configure:7105: $? = 0
configure:7119: result: yes
configure:7152: checking for sys/ttydefaults.h
configure:7161: result: yes
configure:7212: checking for NcursesW wide-character library
configure:7246: gcc -o conftest -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS -L/usr/local/lib -L/usr/lib -L//lib conftest.c -ltinfo -ldl -lz -lutil -lncursesw >&5
configure:7253: $? = 0
configure:7274: result: yes
configure:7301: checking for working ncursesw/curses.h
configure:7344: gcc -o conftest -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS -L/usr/local/lib -L/usr/lib -L//lib conftest.c -ltinfo -ldl -lz -lutil -lncursesw >&5
configure:7351: $? = 0
configure:7372: result: yes
configure:7403: checking for working ncursesw.h
configure:7446: gcc -o conftest -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS -L/usr/local/lib -L/usr/lib -L//lib conftest.c -ltinfo -ldl -lz -lutil -lncursesw >&5
conftest.c:36:46: error: ncursesw.h: No such file or directory
conftest.c: In function 'main':
conftest.c:42: error: 'chtype' undeclared (first use in this function)
conftest.c:42: error: (Each undeclared identifier is reported only once
conftest.c:42: error: for each function it appears in.)
conftest.c:42: error: expected ';' before 'a'
conftest.c:43: error: 'KEY_LEFT' undeclared (first use in this function)
conftest.c:44: error: expected ';' before 'c'
conftest.c:45: error: 'attr_t' undeclared (first use in this function)
conftest.c:45: error: expected ';' before 'd'
conftest.c:46: error: 'cchar_t' undeclared (first use in this function)
conftest.c:46: error: expected ';' before 'e'
conftest.c:47: error: 'wint_t' undeclared (first use in this function)
conftest.c:47: error: expected ';' before 'f'
conftest.c:48: error: 'stdscr' undeclared (first use in this function)
conftest.c:51: error: 'COLOR_WHITE' undeclared (first use in this function)
conftest.c:51: error: 'COLOR_RED' undeclared (first use in this function)
conftest.c:52: error: 'd' undeclared (first use in this function)
conftest.c:52: error: 'NULL' undeclared (first use in this function)
conftest.c:53: error: 'f' undeclared (first use in this function)
configure:7453: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "lnav"
| #define PACKAGE_TARNAME "lnav"
| #define PACKAGE_VERSION "0.7.0"
| #define PACKAGE_STRING "lnav 0.7.0"
| #define PACKAGE_BUGREPORT "ln...@googlegroups.com"
| #define PACKAGE "lnav"
| #define VERSION "0.7.0"
| #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 SIZEOF_OFF_T 4
| #define SIZEOF_SIZE_T 4
| #define HAVE_DECL_TZNAME 1
| #define HAVE_TZNAME 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_ZLIB_H 1
| #define HAVE_SYS_TTYDEFAULTS_H 1
| #define HAVE_NCURSESW 1
| #define HAVE_CURSES 1
| #define HAVE_CURSES_ENHANCED 1
| #define HAVE_CURSES_COLOR 1
| #define HAVE_CURSES_OBSOLETE 1
| #define HAVE_NCURSESW_CURSES_H 1
| /* end confdefs.h. */
|
| #define _XOPEN_SOURCE_EXTENDED 1
| #include <ncursesw.h>
|
| int
| main ()
| {
|
| chtype a = A_BOLD;
| int b = KEY_LEFT;
| chtype c = COLOR_PAIR(1) & A_COLOR;
| attr_t d = WA_NORMAL;
| cchar_t e;
| wint_t f;
| int g = getattrs(stdscr);
| int h = getcurx(stdscr) + getmaxx(stdscr);
| initscr();
| init_pair(1, COLOR_WHITE, COLOR_RED);
| wattr_set(stdscr, d, 0, NULL);
| wget_wch(stdscr, &f);
|
| ;
| return 0;
| }
configure:7474: result: no
configure:7505: checking for working ncurses.h
configure:7548: gcc -o conftest -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS -L/usr/local/lib -L/usr/lib -L//lib conftest.c -ltinfo -ldl -lz -lutil -lncursesw >&5
configure:7555: $? = 0
configure:7576: result: yes
configure:8376: checking lib pcre
configure:8393: result: (testing)
configure:8396: checking for pcre_study in -lpcre
configure:8431: gcc -o conftest -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS -L/usr/local/lib -L/usr/lib -L//lib conftest.c -lpcre -ltinfo -ldl -lz -lutil >&5
configure:8438: $? = 0
configure:8459: result: yes
configure:8471: checking for _ZN7pcrecpp2RE4InitERKSsPKNS_10RE_OptionsE in -lpcrecpp
configure:8506: gcc -o conftest -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS -L/usr/local/lib -L/usr/lib -L//lib conftest.c -lpcrecpp -lpcre -ltinfo -ldl -lz -lutil >&5
configure:8513: $? = 0
configure:8534: result: yes
configure:8562: checking pcre.h usability
configure:8579: gcc -c -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c >&5
configure:8586: $? = 0
configure:8600: result: yes
configure:8604: checking pcre.h presence
configure:8619: gcc -E -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c
configure:8626: $? = 0
configure:8640: result: yes
configure:8673: checking for pcre.h
configure:8682: result: yes
configure:8562: checking pcre/pcre.h usability
configure:8579: gcc -c -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c >&5
conftest.c:74:23: error: pcre/pcre.h: No such file or directory
configure:8586: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "lnav"
| #define PACKAGE_TARNAME "lnav"
| #define PACKAGE_VERSION "0.7.0"
| #define PACKAGE_STRING "lnav 0.7.0"
| #define PACKAGE_BUGREPORT "ln...@googlegroups.com"
| #define PACKAGE "lnav"
| #define VERSION "0.7.0"
| #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 SIZEOF_OFF_T 4
| #define SIZEOF_SIZE_T 4
| #define HAVE_DECL_TZNAME 1
| #define HAVE_TZNAME 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_ZLIB_H 1
| #define HAVE_SYS_TTYDEFAULTS_H 1
| #define HAVE_NCURSESW 1
| #define HAVE_CURSES 1
| #define HAVE_CURSES_ENHANCED 1
| #define HAVE_CURSES_COLOR 1
| #define HAVE_CURSES_OBSOLETE 1
| #define HAVE_NCURSESW_CURSES_H 1
| #define HAVE_CURSES_ENHANCED 1
| #define HAVE_CURSES_COLOR 1
| #define HAVE_CURSES_OBSOLETE 1
| #define HAVE_NCURSES_H 1
| #define HAVE_LIBPCRE 1
| #define HAVE_LIBPCRECPP 1
| #define HAVE_PCRE_H 1
| /* end confdefs.h. */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| # include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| # include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <pcre/pcre.h>
configure:8600: result: no
configure:8604: checking pcre/pcre.h presence
configure:8619: gcc -E -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS conftest.c
conftest.c:41:23: error: pcre/pcre.h: No such file or directory
configure:8626: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "lnav"
| #define PACKAGE_TARNAME "lnav"
| #define PACKAGE_VERSION "0.7.0"
| #define PACKAGE_STRING "lnav 0.7.0"
| #define PACKAGE_BUGREPORT "ln...@googlegroups.com"
| #define PACKAGE "lnav"
| #define VERSION "0.7.0"
| #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 SIZEOF_OFF_T 4
| #define SIZEOF_SIZE_T 4
| #define HAVE_DECL_TZNAME 1
| #define HAVE_TZNAME 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_ZLIB_H 1
| #define HAVE_SYS_TTYDEFAULTS_H 1
| #define HAVE_NCURSESW 1
| #define HAVE_CURSES 1
| #define HAVE_CURSES_ENHANCED 1
| #define HAVE_CURSES_COLOR 1
| #define HAVE_CURSES_OBSOLETE 1
| #define HAVE_NCURSESW_CURSES_H 1
| #define HAVE_CURSES_ENHANCED 1
| #define HAVE_CURSES_COLOR 1
| #define HAVE_CURSES_OBSOLETE 1
| #define HAVE_NCURSES_H 1
| #define HAVE_LIBPCRE 1
| #define HAVE_LIBPCRECPP 1
| #define HAVE_PCRE_H 1
| /* end confdefs.h. */
| #include <pcre/pcre.h>
configure:8640: result: no
configure:8673: checking for pcre/pcre.h
configure:8682: result: no
configure:8699: checking lib pcre
configure:8701: result: -lpcre -lpcrecpp
configure:8809: checking lib readline
configure:8829: checking for readline in -lreadline
configure:8864: gcc -o conftest -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS -L/usr/local/lib -L/usr/lib -L//lib conftest.c -lreadline -lncursesw -lpcrecpp -lpcre -ltinfo -ldl -lz -lutil >&5
configure:8871: $? = 0
configure:8892: result: yes
configure:8906: checking lib readline
configure:8908: result: -lreadline
configure:9133: checking for SQLite3 library >= 3.0.0
configure:9193: g++ -c -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS -I/usr/include conftest.cpp >&5
configure:9200: $? = 0
configure:9206: result: yes
configure:9274: checking for sqlite3_stmt_readonly
configure:9330: gcc -o conftest -g -O2 -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS -L/usr/local/lib -L/usr/lib -L//lib conftest.c -lpcrecpp -lpcre -ltinfo -ldl -lz -lutil -lsqlite3 >&5
/tmp/ccy414Hx.o: In function `main':
/root/lnav_workspace/lnav/conftest.c:77: undefined reference to `sqlite3_stmt_readonly'
collect2: ld returned 1 exit status
configure:9337: $? = 1
configure: failed program was:
| /* confdefs.h. */
| #define PACKAGE_NAME "lnav"
| #define PACKAGE_TARNAME "lnav"
| #define PACKAGE_VERSION "0.7.0"
| #define PACKAGE_STRING "lnav 0.7.0"
| #define PACKAGE_BUGREPORT "ln...@googlegroups.com"
| #define PACKAGE "lnav"
| #define VERSION "0.7.0"
| #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 SIZEOF_OFF_T 4
| #define SIZEOF_SIZE_T 4
| #define HAVE_DECL_TZNAME 1
| #define HAVE_TZNAME 1
| #define HAVE_EXECINFO_H 1
| #define HAVE_PTY_H 1
| #define HAVE_ZLIB_H 1
| #define HAVE_SYS_TTYDEFAULTS_H 1
| #define HAVE_NCURSESW 1
| #define HAVE_CURSES 1
| #define HAVE_CURSES_ENHANCED 1
| #define HAVE_CURSES_COLOR 1
| #define HAVE_CURSES_OBSOLETE 1
| #define HAVE_NCURSESW_CURSES_H 1
| #define HAVE_CURSES_ENHANCED 1
| #define HAVE_CURSES_COLOR 1
| #define HAVE_CURSES_OBSOLETE 1
| #define HAVE_NCURSES_H 1
| #define HAVE_LIBPCRE 1
| #define HAVE_LIBPCRECPP 1
| #define HAVE_PCRE_H 1
| #define HAVE_LIBREADLINE 1
| #define HAVE_SQLITE3 /**/
| /* end confdefs.h. */
| /* Define sqlite3_stmt_readonly to an innocuous variant, in case <limits.h> declares sqlite3_stmt_readonly.
| For example, HP-UX 11i <limits.h> declares gettimeofday. */
| #define sqlite3_stmt_readonly innocuous_sqlite3_stmt_readonly
|
| /* System header to define __stub macros and hopefully few prototypes,
| which can conflict with char sqlite3_stmt_readonly (); below.
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| <limits.h> exists even on freestanding compilers. */
|
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
|
| #undef sqlite3_stmt_readonly
|
| /* Override any GCC internal prototype to avoid an error.
| Use char because int might match the return type of a GCC
| builtin and then its argument prototype would still apply. */
| #ifdef __cplusplus
| extern "C"
| #endif
| char sqlite3_stmt_readonly ();
| /* The GNU C library defines this for functions which it implements
| to always fail with ENOSYS. Some functions are actually named
| something starting with __ and the normal name is an alias. */
| #if defined __stub_sqlite3_stmt_readonly || defined __stub___sqlite3_stmt_readonly
| choke me
| #endif
|
| int
| main ()
| {
| return sqlite3_stmt_readonly ();
| ;
| return 0;
| }
configure:9357: result: no
configure:9565: creating ./config.status
## ---------------------- ##
## Running config.status. ##
## ---------------------- ##
This file was extended by lnav config.status 0.7.0, which was
generated by GNU Autoconf 2.63. Invocation command line was
CONFIG_FILES =
CONFIG_HEADERS =
CONFIG_LINKS =
CONFIG_COMMANDS =
$ ./config.status
on fileshare
config.status:839: creating Makefile
config.status:839: creating TESTS_ENVIRONMENT
config.status:839: creating src/Makefile
config.status:839: creating test/Makefile
config.status:839: creating src/config.h
config.status:1113: executing depfiles commands
## ---------------- ##
## Cache variables. ##
## ---------------- ##
ac_cv_build=i686-pc-linux-gnu
ac_cv_c_compiler_gnu=yes
ac_cv_cxx_compiler_gnu=yes
ac_cv_env_CCC_set=
ac_cv_env_CCC_value=
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_CURSES_LIB_set=
ac_cv_env_CURSES_LIB_value=
ac_cv_env_CXXFLAGS_set=
ac_cv_env_CXXFLAGS_value=
ac_cv_env_CXX_set=
ac_cv_env_CXX_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_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_func_sqlite3_stmt_readonly=no
ac_cv_have_decl_tzname=yes
ac_cv_header_bzlib_h=no
ac_cv_header_execinfo_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_libutil_h=no
ac_cv_header_memory_h=yes
ac_cv_header_pcre_h=yes
ac_cv_header_pcre_pcre_h=no
ac_cv_header_pty_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_ttydefaults_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_unistd_h=yes
ac_cv_header_util_h=no
ac_cv_header_zlib_h=yes
ac_cv_host=i686-pc-linux-gnu
ac_cv_lib_pcre_pcre_study=yes
ac_cv_lib_pcrecpp__ZN7pcrecpp2RE4InitERKSsPKNS_10RE_OptionsE=yes
ac_cv_lib_readline_readline=yes
ac_cv_member_struct_tm_tm_zone=no
ac_cv_objext=o
ac_cv_path_BZIP2_CMD=/usr/bin/bzip2
ac_cv_path_EGREP='/bin/grep -E'
ac_cv_path_GREP=/bin/grep
ac_cv_path_PYTHON=/usr/bin/python
ac_cv_path_SQLITE3_CMD=/usr/bin/sqlite3
ac_cv_path_install='/usr/bin/install -c'
ac_cv_path_mkdir=/bin/mkdir
ac_cv_prog_AWK=gawk
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_CXX=g++
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_cc_c89=
ac_cv_prog_cc_g=yes
ac_cv_prog_cxx_g=yes
ac_cv_prog_make_make_set=yes
ac_cv_search_BZ2_bzopen=no
ac_cv_search_Gpm_Open=no
ac_cv_search_backtrace='none required'
ac_cv_search_cur_term=-ltinfo
ac_cv_search_dlopen=-ldl
ac_cv_search_gzseek=-lz
ac_cv_search_openpty=-lutil
ac_cv_sizeof_off_t=4
ac_cv_sizeof_size_t=4
ac_cv_struct_tm=time.h
ac_cv_var_tzname=yes
am_cv_CC_dependencies_compiler_type=gcc3
am_cv_CXX_dependencies_compiler_type=gcc3
am_cv_pathless_PYTHON=python
am_cv_python_platform=linux2
am_cv_python_pyexecdir='${exec_prefix}/lib/python2.6/site-packages'
am_cv_python_pythondir='${prefix}/lib/python2.6/site-packages'
am_cv_python_version=2.6
ax_cv_curses=yes
ax_cv_curses_color=yes
ax_cv_curses_enhanced=yes
ax_cv_curses_obsolete=yes
ax_cv_curses_which=ncursesw
ax_cv_header_ncurses_h_with_ncursesw=yes
ax_cv_header_ncursesw_curses_h=yes
ax_cv_header_ncursesw_h=no
ax_cv_ncursesw=yes
## ----------------- ##
## Output variables. ##
## ----------------- ##
ACLOCAL='${SHELL} /root/lnav_workspace/lnav/missing --run aclocal-1.11'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='${SHELL} /root/lnav_workspace/lnav/missing --run tar'
AM_BACKSLASH='\'
AM_DEFAULT_VERBOSITY='0'
AUTOCONF='${SHELL} /root/lnav_workspace/lnav/missing --run autoconf'
AUTOHEADER='${SHELL} /root/lnav_workspace/lnav/missing --run autoheader'
AUTOMAKE='${SHELL} /root/lnav_workspace/lnav/missing --run automake-1.11'
AWK='gawk'
BZIP2_CMD='/usr/bin/bzip2'
CC='gcc'
CCDEPMODE='depmode=gcc3'
CFLAGS='-g -O2'
CFLAGS_PG=''
CPP='gcc -E'
CPPFLAGS=' -I/usr/local/include -I/usr/include -D_ISOC99_SOURCE -D__STDC_LIMIT_MACROS'
CURSES_LIB='-lncursesw'
CXX='g++'
CXXDEPMODE='depmode=gcc3'
CXXFLAGS='-g -O2'
CYGPATH_W='echo'
DEFS='-DHAVE_CONFIG_H'
DEPDIR='.deps'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/bin/grep -E'
EXEEXT=''
GREP='/bin/grep'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
LDFLAGS=' -L/usr/local/lib -L/usr/lib -L//lib'
LIBOBJS=''
LIBS='-lpcrecpp -lpcre -ltinfo -ldl -lz -lutil '
LN_S='ln -s'
LTLIBOBJS=''
MAKEINFO='${SHELL} /root/lnav_workspace/lnav/missing --run makeinfo'
MKDIR_P='/bin/mkdir -p'
OBJEXT='o'
PACKAGE='lnav'
PACKAGE_BUGREPORT='ln...@googlegroups.com'
PACKAGE_NAME='lnav'
PACKAGE_STRING='lnav 0.7.0'
PACKAGE_TARNAME='lnav'
PACKAGE_VERSION='0.7.0'
PATH_SEPARATOR=':'
PCRE_CFLAGS=''
PCRE_LIBS='-lpcre -lpcrecpp'
PYTHON='/usr/bin/python'
PYTHON_EXEC_PREFIX='${exec_prefix}'
PYTHON_PLATFORM='linux2'
PYTHON_PREFIX='${prefix}'
PYTHON_VERSION='2.6'
RANLIB='ranlib'
READLINE_CFLAGS=''
READLINE_LIBS='-lreadline'
SET_MAKE=''
SHELL='/bin/sh'
SQLITE3_CFLAGS='-I/usr/include'
SQLITE3_CMD='/usr/bin/sqlite3'
SQLITE3_LDFLAGS='-L/usr/lib'
SQLITE3_LIBS='-lsqlite3'
SQLITE3_VERSION='3.6.20'
STATIC_LDFLAGS=' -L/root/lnav_workspace/lnav/src/static-libs'
STRIP=''
VERSION='0.7.0'
abssrcdir='/root/lnav_workspace/lnav/.'
ac_ct_CC='gcc'
ac_ct_CXX='g++'
am__EXEEXT_FALSE=''
am__EXEEXT_TRUE='#'
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__fastdepCXX_FALSE='#'
am__fastdepCXX_TRUE=''
am__include='include'
am__isrc=''
am__leading_dot='.'
am__quote=''
am__tar='${AMTAR} chof - "$$tardir"'
am__untar='${AMTAR} xf -'
bindir='${exec_prefix}/bin'
build='i686-pc-linux-gnu'
build_alias=''
build_cpu='i686'
build_os='linux-gnu'
build_vendor='pc'
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
dvidir='${docdir}'
exec_prefix='${prefix}'
host='i686-pc-linux-gnu'
host_alias=''
host_cpu='i686'
host_os='linux-gnu'
host_vendor='pc'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
install_sh='${SHELL} /root/lnav_workspace/lnav/install-sh'
libdir='/usr/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
localstatedir='${prefix}/var'
mandir='${datarootdir}/man'
mkdir_p='/bin/mkdir -p'
oldincludedir='/usr/include'
pdfdir='${docdir}'
pkgpyexecdir='${pyexecdir}/lnav'
pkgpythondir='${pythondir}/lnav'
prefix='/usr'
program_transform_name='s,x,x,'
psdir='${docdir}'
pyexecdir='${exec_prefix}/lib/python2.6/site-packages'
pythondir='${prefix}/lib/python2.6/site-packages'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''
## ----------- ##
## confdefs.h. ##
## ----------- ##
#define PACKAGE_NAME "lnav"
#define PACKAGE_TARNAME "lnav"
#define PACKAGE_VERSION "0.7.0"
#define PACKAGE_STRING "lnav 0.7.0"
#define PACKAGE_BUGREPORT "ln...@googlegroups.com"
#define PACKAGE "lnav"
#define VERSION "0.7.0"
#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 SIZEOF_OFF_T 4
#define SIZEOF_SIZE_T 4
#define HAVE_DECL_TZNAME 1
#define HAVE_TZNAME 1
#define HAVE_EXECINFO_H 1
#define HAVE_PTY_H 1
#define HAVE_ZLIB_H 1
#define HAVE_SYS_TTYDEFAULTS_H 1
#define HAVE_NCURSESW 1
#define HAVE_CURSES 1
#define HAVE_CURSES_ENHANCED 1
#define HAVE_CURSES_COLOR 1
#define HAVE_CURSES_OBSOLETE 1
#define HAVE_NCURSESW_CURSES_H 1
#define HAVE_CURSES_ENHANCED 1
#define HAVE_CURSES_COLOR 1
#define HAVE_CURSES_OBSOLETE 1
#define HAVE_NCURSES_H 1
#define HAVE_LIBPCRE 1
#define HAVE_LIBPCRECPP 1
#define HAVE_PCRE_H 1
#define HAVE_LIBREADLINE 1
#define HAVE_SQLITE3 /**/
#define _BSD_SOURCE 1
configure: exit 0
OUTPUT FROM MAKE:
Making all in src
make[1]: Entering directory `/root/lnav_workspace/lnav/src'
make all-am
make[2]: Entering directory `/root/lnav_workspace/lnav/src'
CXX ansi_scrubber.o
CXX bookmarks.o
CXX collation-functions.o
CXX db_sub_source.o
In file included from db_sub_source.cc:32:
db_sub_source.hh: In member function 'void db_label_source::clear()':
db_sub_source.hh:146: warning: comparison between signed and unsigned integer expressions
db_sub_source.hh:147: warning: comparison between signed and unsigned integer expressions
CXX environ_vtab.o
environ_vtab.cc: In function 'int vt_update(sqlite3_vtab*, int, sqlite3_value**, sqlite_int64*)':
environ_vtab.cc:250: error: 'sqlite3_vtab_on_conflict' was not declared in this scope
environ_vtab.cc:253: error: 'SQLITE_FAIL' was not declared in this scope
environ_vtab.cc:261: error: 'SQLITE_REPLACE' was not declared in this scope
make[2]: *** [environ_vtab.o] Error 1
Tim,
I re-cloned the source from git into a new directory for a fresh start, then ran autogen.sh, ./configure, and make. Now a different message appears after running make. Apparantly, SQLITE_* was missing some declarations..?
--
You received this message because you are subscribed to the Google Groups "lnav" group.
To unsubscribe from this group and stop receiving emails from it, send an email to lnav+uns...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
I had to figure out how to `git pull`, so there is a chance I didn't do it correctly. Here are the steps I took:
1. I rm -rf'd the */lnav directory to start fresh.
2. I created it right back there again.
3. git init */lnav to initialize the directory as a repository.
4. cd lnav && git pull https://github.com/tstack/lnav.git master
From there, I did the usual:
1. ./autogen.sh
2. ./configure
3. make
**
OUTPUT FROM ./CONFIGURE:
OUTPUT FROM MAKE:
Making all in src
make[1]: Entering directory `/root/lnav_workspace/lnav/src'
make all-am
make[2]: Entering directory `/root/lnav_workspace/lnav/src'
CXX ansi_scrubber.o
CXX bookmarks.o
CXX collation-functions.o
CXX db_sub_source.o
In file included from db_sub_source.cc:32:
db_sub_source.hh: In member function 'void db_label_source::clear()':
db_sub_source.hh:146: warning: comparison between signed and unsigned integer expressions
db_sub_source.hh:147: warning: comparison between signed and unsigned integer expressions
CXX environ_vtab.o
environ_vtab.cc: In function 'int vt_update(sqlite3_vtab*, int, sqlite3_value**, sqlite_int64*)':
environ_vtab.cc:250: error: 'sqlite3_vtab_on_conflict' was not declared in this scope
make[2]: *** [environ_vtab.o] Error 1
make[2]: Leaving directory `/root/lnav_workspace/lnav/src'
make[1]: *** [all] Error 2
make: *** [all-recursive] Error 1
That seems to offer a similar failure, citing sqlite, but definitely different from previous.
Did you want a dump of all the noise make made during compilation? Lots of stuff with ' warning: comparison between signed and unsigned integer expressions' rolled by.
This is marvelous, thank you very much Tim! Now, on to making custom string interpreters...
W00t! The build worked and the .json works! Fantastic!
Did you want a dump of all the noise make made during compilation? Lots of stuff with ' warning: comparison between signed and unsigned integer expressions' rolled by.
This is marvelous, thank you very much Tim! Now, on to making custom string interpreters...
I didn't think I'd be back so soon lol...
One of the nastiest parts of this log format is that each line's body has its own sub-format. For the most part, none of the subsystems resemble each other. However, there things of interest in each of them that I'd like lnav to identify.
Is it possible to nest keys within a key?
For example:
(?<body>.*(?<scsidevice>//d+).*(?<[Dd]isk=//d+/s/d+).*)
An example of the line I'm trying to pull from is:
1234,6/2/2014 12:42:41 PM,WARNING, CSIIntr, ,"SCSIDevice=636413572 SN=3SL10VLG0000910ABB3XK Cnt=11 CheckCond Disk=11 8 Up State=Ready IORP=3095374780 Side_A Write_10 CDB=2a000d8a2b600001c000 Sense=f000010d8a2bf50a0000000003000880000b0000 x02/01/03/00 CheckC Recovere PeripheralDe"
I haven't tried nesting yet, but the .json I have is below. I would have expected lnav to find the scsidevice out of the line, but clearly I'm missing some of the major ideas in this format still....
{
"custom_log" : {
"title" : "custom log",
"description" : "Description goes here",
"regex" : {
"scsi_int" : {
"pattern" : "^(?<controller>\\d{3,5}),(?<timestamp>\\d{1,2}/\\d{1,2}/\\d{4} \\d{1,2}:\\d{2}:\\d{2} [AP]M),(?<level>\\w+),(?<subsystem>\\w+),(?<instance>.{0,8}),(?<scsidev>SCSIDevice=[0-9]+)"
},
"std" : {
"pattern" : "^(?<controller>\\d{3,5}),(?<timestamp>\\d{1,2}/\\d{1,2}/\\d{4} \\d{1,2}:\\d{2}:\\d{2} [AP]M),(?<level>\\w+),(?<subsystem>\\w+),(?<instance>.{0,8}),(?<body>.*)"
}
},
"level-field" : "level",
"level" : {
"error" : "ERROR",
"debug" : "DEBUG",
"info" : "CONFIG",
"warning" : "WARNING"
},
"value" : {
"controller" : {
"kind" : "integer",
"identifier" : true
},
"subsystem" : {
"kind" : "string",
"identifier" : true
},
"instance" : {
"kind" : "string",
"identifier" : true
},
"scsidev" : {
"kind" : "integer",
"identifier" : true
}
},
Tim,
I didn't think I'd be back so soon lol...
One of the nastiest parts of this log format is that each line's body has its own sub-format. For the most part, none of the subsystems resemble each other. However, there things of interest in each of them that I'd like lnav to identify.
Is it possible to nest keys within a key?
For example:
(?<body>.*(?<scsidevice>//d+).*(?<[Dd]isk=//d+/s/d+).*)
An example of the line I'm trying to pull from is:
1234,6/2/2014 12:42:41 PM,WARNING, CSIIntr, ,"SCSIDevice=636413572 SN=3SL10VLG0000910ABB3XK Cnt=11 CheckCond Disk=11 8 Up State=Ready IORP=3095374780 Side_A Write_10 CDB=2a000d8a2b600001c000 Sense=f000010d8a2bf50a0000000003000880000b0000 x02/01/03/00 CheckC Recovere PeripheralDe"
I haven't tried nesting yet, but the .json I have is below. I would have expected lnav to find the scsidevice out of the line, but clearly I'm missing some of the major ideas in this format still....
"regex" : {
{
"custom_log" : {
"title" : "custom log",
"description" : "Description goes here",
"scsi_int" : {
"pattern" : "^(?<controller>\\d{3,5}),(?<timestamp>\\d{1,2}/\\d{1,2}/\\d{4} \\d{1,2}:\\d{2}:\\d{2} [AP]M),(?<level>\\w+),(?<subsystem>\\w+),(?<instance>.{0,8}),(?<scsidev>SCSIDevice=[0-9]+)"
},
"std" : {
"pattern" : "^(?<controller>\\d{3,5}),(?<timestamp>\\d{1,2}/\\d{1,2}/\\d{4} \\d{1,2}:\\d{2}:\\d{2} [AP]M),(?<level>\\w+),(?<subsystem>\\w+),(?<instance>.{0,8}),(?<body>.*)"
}