Commit Graph

854 Commits (f2869508544a355f715a77b21cad9ffc31a5ad48)
 

Author SHA1 Message Date
Suresh Sundriyal ab257af0c7 Merge pull request #154 from sureshsundriyal/wip
More refactoring and autogen run.
9 years ago
Suresh Sundriyal 2554f19b23 [build] macro refactor 9 years ago
Suresh Sundriyal 229db9b446 [build] autogen 9 years ago
Suresh Sundriyal 9f1da30515 [build] Add the '-pthread' to the list of extra libraries.
Instead of setting it manually.
9 years ago
Suresh Sundriyal b8d7841342 Merge pull request #152 from sureshsundriyal/wip
Fix some brokenness.
9 years ago
Timothy Stack a15f08cfd3 [build] autogen 9 years ago
Suresh Sundriyal a903873f1b [build] Add '-pthread' to sqlite macro.
On some systems, sqlite3 requires pthread libraries to be linked in. Add
the flag so that autoconf can successfully compile and look for
'sqlite3_open'.
9 years ago
Suresh Sundriyal a3bdb2355d [build] Fix the check for editline in readline macro. 9 years ago
Suresh Sundriyal 45238cc451 Merge pull request #151 from sureshsundriyal/wip
Remove quotes from LNAV_ADDTO arguments.
9 years ago
Suresh Sundriyal fcdc67eda9 Remove quotes from LNAV_ADDTO arguments. 9 years ago
Timothy Stack 282e70445e [pretty] reformat all displayed lines instead of just the top one
Fixes #150
9 years ago
Tim Stack d7d9a16179 Merge pull request #146 from sureshsundriyal/wip
update NEWS
9 years ago
Suresh Sundriyal d7f432fcc9 Merge pull request #147 from sureshsundriyal/wip2
[build] Add custom silent rules.
9 years ago
Suresh Sundriyal ed0baf7c1c [build] Add custom silent rules.
Add custom silent rules for ptime/bin2c/sqlite3/rm commands.
9 years ago
Suresh Sundriyal 9badd2e5ba update NEWS 9 years ago
Timothy Stack 8fb15e455a [cmd] add a relative-goto command 9 years ago
Suresh Sundriyal 82f28a9f61 Merge pull request #145 from sureshsundriyal/wip
Let BSD definitions take precedence.
9 years ago
Suresh Sundriyal 1025015bc8 [build] autogen.sh run 9 years ago
Suresh Sundriyal 0ec996e4aa [build] Reinstate _BSD_SOURCE
Comment and case '*' and everything.
9 years ago
Suresh Sundriyal 63bd013645 Merge pull request #144 from sureshsundriyal/wip
[build] Warn if libgpm is missing and other minor changes.
9 years ago
Suresh Sundriyal 40250d41d9 [build] autogen.sh run 9 years ago
Suresh Sundriyal 3445ee5dc6 [build] Warn if libgpm is missing and other minor changes.
* On some misconfigured systems, libgpm is required along with ncurses.
  I haven't been able to figure out the correct way to figure out these
  dependencies without resorting to using external tools like 'nm'. So
  for the moment, if libgpm is not found, at least warn the user that
  the build might fail later.

* Ncurses on OS X does not require libgpm, so there is no need to test
  for it.

* There seems to be an 'AC_DEFINE' _BSD_SOURCE which does not seem to be
   used anywhere. Removing this for now.

* Remove some artifacts left behind by Emacs.
9 years ago
Suresh Sundriyal b111dca671 Merge pull request #142 from sureshsundriyal/wip
[build] Make readline macro depend on curses.
9 years ago
Suresh Sundriyal 9aaf5d12c3 [build] Make readline macro depend on curses. 9 years ago
Timothy Stack 4ea800a8f8 [build] messed up sigset init 9 years ago
Timothy Stack 219a4baad1 [ui] lower the index rebuild frequency when the command line is active 9 years ago
Suresh Sundriyal ef36548b82 Merge pull request #141 from sureshsundriyal/wip
Some more build related additions/fixes.
9 years ago
Suresh Sundriyal bc5a6cd154 [minor] Fix the tinfo disable message. 9 years ago
Suresh Sundriyal 498efe4bbb [build] autogen.sh run 9 years ago
Suresh Sundriyal 2c7f70d56c [build] Provide an option to disable tinfo linking.
In some cases, tinfo is not required to build but the library still gets
linked in because it's present on the system. There should be an
explicit way to disable linking with tinfo.
9 years ago
Suresh Sundriyal de7024e820 [yajl macro] Remove unnecessary addition to libs. 9 years ago
Suresh Sundriyal 182279db6c Merge pull request #140 from sureshsundriyal/wip
Fix the filename in pcre macro
9 years ago
Suresh Sundriyal c83371c74e Fix the filename in pcre macro 9 years ago
Suresh Sundriyal 57140c7b02 Merge pull request #139 from sureshsundriyal/wip
Build related stuff.
9 years ago
Suresh Sundriyal 23e2d86421 [build] autogen run 9 years ago
Suresh Sundriyal 649f486d13 [File headers] Add some headers to m4 files.
Add the license and copyright headers to m4 files.
9 years ago
Suresh Sundriyal 13c6b82f8c [build] Fix SQLite3 realted m4 macros.
The current macro does not seem to honor the CFLAGS and LDFLAGS
variables if '--with-sqlite3=yes' is used. Fix this and some of
the other cruft in the macro.
9 years ago
Timothy Stack 42521ef337 [hist] the wrong view could be used when switching from hist to log 9 years ago
Timothy Stack cf462cecde [hist] need to rebuild the histogram if files are closed 9 years ago
Timothy Stack 0cbaa394cb [build] autogen 9 years ago
Suresh Sundriyal 06ed04cea9 Merge pull request #137 from sureshsundriyal/wip
[Coverity] Eliminate null pointer dereferencing.
9 years ago
Suresh Sundriyal 6567b53266 [Coverity] Eliminate null pointer dereferencing.
There is a possibility that 'name' might be NULL and {get/set}env might
dereference it.
9 years ago
Tim Stack 28956fc63f Merge pull request #136 from sureshsundriyal/wip
Minor changes.
9 years ago
Suresh Sundriyal e3f2939904 [Coverity] Uninitialized variable.
Zero out 'msg' during declaration.
9 years ago
Suresh Sundriyal 803642a849 [Coverity] Fixes an 'Uninitialized variables' error.
Initialize retval to SQLITE_ERROR during declaration at the beggining of
the method. I could technically go with SQLITE_OK but if this is going
to be unintentially returned without being initialized, I would much
rather it return an error than success.
9 years ago
Tim Stack 1457aba137 Merge pull request #135 from sureshsundriyal/wip
Remove unused 'strncasestr_i'.
9 years ago
Suresh Sundriyal 74de13e2c9 Remove unused 'strncasestr_i'.
The function is not really used anywhere and does not really do what the
name suggests it should. It leads to compiler warnings about 'unused'
function. Removing this for now.
9 years ago
Tim Stack 0850d75173 Merge pull request #133 from sureshsundriyal/wip
Code changes to get rid of warnings & errors.
9 years ago
Suresh Sundriyal d1c267b0b1 [Warning] conversion from string literal to 'char *'
Fix the deprecation warning about conversion from string literal to
'char *' by implicitly casting the literal.
9 years ago
Suresh Sundriyal 1c0d3a4f5a [Warnings] varargs with reference parameters.
'va_start' has undefined behvaior with reference types, so use a pointer instead.
9 years ago