summaryrefslogtreecommitdiffstats
path: root/configure.ac
AgeCommit message (Collapse)Author
2014-08-06Actually check version for bison.William Langford
Clean up oniguruma checks.
2014-07-22Added library system with -l, -L, and JQ_LIBRARY_PATHWilliam Langford
Created util.[ch] to hold common utilities.
2014-06-18Added regex support as per issue #164.William Langford
jq now depends on oniguruma for regex support. Modified configure.ac accordingly. Added valgrind suppression file for oniguruma to prevent one-time and bounded leaks from causing tests to fail. Signed-off-by: Nicolas Williams <nico@cryptonector.com>
2014-06-16No args default w/ tty stdout, not tty stdin #220Nicolas Williams
2014-06-11Detect endianness at configuration with Autoconf AC_C_BIGENDIAN featureKim De Mey
2014-06-08Also fix configure.ac to use git describe --tagsNicolas Williams
2014-04-17Make pthread tls configurable for Mingw buildNicolas Williams
For the Mingw build we don't want to pull in the pthread DLL just because we can autodetect pthread support. That would make the jq.exe binary not self-contained.
2014-04-16Add autoconf checks for pthreads; fix #340Nicolas Williams
2014-01-25work with newer versions of automakepolyester
when using a newer automake, the autoreconf step fails with warnings: "linking libtool libraries using a non-POSIX archiver requires 'AM_PROG_AR' in 'configure.ac' " This happens for instance on ubuntu 13.10. Doing just that, adding 'AM_PROG_AR' to configure.ac fixes the problem.
2014-01-01Fix #201; check that bison accepts --warningsNicolas Williams
2013-12-31Fix version for make dist on masterNicolas Williams
- Re-remove VERSION file and all traces of it - Pass a decent version indicator to AC_INIT (using git describe) When we tag 1.4 this will produce 1.4 as the version string when building on the HEAD of that tag.
2013-09-14Merge branch 'libjq'Stephen Dolan
Conflicts: Makefile.am configure.ac
2013-09-01Call AM_INIT_AUTOMAKE once onlyAnkur
Fixes build with automake-1.14
2013-06-23Use libtool's built-in symbol exporting rather than a mapfile.Stephen Dolan
2013-06-23Move libtool m4 junk to config/ and delete some autogenerated files.Stephen Dolan
2013-06-23Remove Autoconf-generated config.h.Stephen Dolan
2013-06-21Add libjq autoconf gooNicolas Williams
2013-06-05Speed up cached configure (./configure -C)Stephen Dolan
2013-05-19jq 1.3 releasejq-1.3Stephen Dolan
2013-05-09Add some build instructions for how to install doc dependencies.Stephen Dolan
jq can now build without Ruby, but you won't get a nice manpage.
2013-05-09Don't build the manpage unless there's a working Ruby setup.Stephen Dolan
2013-05-09Autotools hackery so that "make dist" builds lexer and parser.Stephen Dolan
2013-05-08Use the version number from configure.ac in the website.Stephen Dolan
2013-05-08Configure whether colour is displayed by default directly in sourceStephen Dolan
2013-05-08Check in a pile of Autotools junk, including the configure script.Stephen Dolan
2013-05-08Clean up autotools config.Stephen Dolan
Remove some of @stagrlee's hard work since jq's testsuite is less silly than when he wrote the autotools config.
2013-02-03rework build to not distribute tests unless --enable-devel is specificied to ↵Lee Thompson
autoconf
2013-02-03use AM_SILENT_RULESLee Thompson
2012-11-28revert back to make invoking flex, fix a few bugsLee Thompson
2012-11-27initial attempt at autoconf implementation, removed all generated code from gitLee Thompson