summaryrefslogtreecommitdiffstats
path: root/.gitignore
AgeCommit message (Collapse)Author
2023-08-21Add src/config_opts.inc to .gitignoreitchyny
2023-07-03Fix duplicate entry in .gitignoreitchyny
2023-07-03Create dist and upload on release also disable docs on build (#2648)itchyny
2023-06-06Add a GitHub Actions workflow to build and update website (#2603)itchyny
2019-10-22Save literal value of the parsed number to preserve it for the outputLeonid S. Usov
Extend jv_number to use decNumber for storing number literals. Any math operations on the numbers will truncate them to double precision. Comparisons when both numbers are literal numbers will compare them without truncation. Delay conversion of numbers to doubles until a math operation is performed, to preserve precision. A literal jv_number will only need conversion to double once, and will reuse the resultant double on subsequent conversions. Outputting literal jv_numbers preserves the original precision. Add strong pthread requirement to manage contexts/allocations for converting numbers between their decNumber, string, and double formats.
2019-03-29Add pkg-config file for libjqMattias Hansson
pkg-config is a common interface to resolve build details. It will become easier to incorporate libjq in other projects by providing this interface.
2015-10-22Move jq-coded builtins to non-C file (fix #424)David Tolnay
2015-08-23Move source files to src/David Tolnay
2015-08-22Add gcov output to gitignoreDavid Tolnay
2015-08-08Remove obsolete gitignore entryDavid Tolnay
2015-06-18separate jq, oniguruma, sh, and man testsDavid Tolnay
2015-02-15Add --disable-maintainer-mode; make bison optionalNicolas Williams
Also flex is now optional. The outputs of flex and bison are now committed. By default they get built, but users who want to build from git can now ./configure --disable-maintainer-mode to turn off the dependency on bison and flex. Maintainers must, of course, commit the bison and/or flex outputs when they make changes to parser.y and/or lexer.l, respectively.
2014-12-24Module search revamp for pkg managersNicolas Williams
The search path listed in an import directive can now be an array. The top-level search path is appended. Null and empty strings in the path terminate any search. The "." in "." and "./*" is replaced with the directory containing the file doing the import (for command-line programs this is the current directory, though that may be a bad idea). No version numbers or anything of the sort are gratuitously added to the search paths. All this makes external package managers possible by allowing dependencies to be installed local to dependents.
2014-07-09Add tests/all.trs to .gitignoreZhiming Wang
tests/all.trs is auto generated during make check. Signed-off-by: Nicolas Williams <nico@cryptonector.com>
2014-06-01Update .gitignore and config/.gitignoreNicolas Williams
2013-12-27Fix rpm build (`make rpm`)Joe Littlejohn
* Re-add VERSION as it's required for `./setup superclean` and `make rpm`. * Add *.rpm to git ignore, we never want them under version control.
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-21Update .gitignoreNicolas Williams
2013-06-21Add libjq autoconf gooNicolas Williams
2013-06-05Speed up cached configure (./configure -C)Stephen Dolan
2013-06-03Clean up Makefile.am (distcheck, rebuild version.h less often)Stephen Dolan
2013-05-29Load library from ~/.jqBrendan Macmillan
2013-05-24Make jq --version report an actual git revision.Stephen Dolan
Closes #129.
2013-05-11Delete some Autotools junk and update README.autotoolsStephen Dolan
Autotools autogenerated files that change frequently have been removed, those that don't are still checked in.
2013-05-11Rake task to build website including source dist and binaries.Stephen Dolan
2013-05-08Check in a pile of Autotools junk, including the configure script.Stephen Dolan
2013-02-02merging upstream stedolan changesLee Thompson
2012-12-31Ignore some more stuff.Stephen Dolan
2012-12-16Lots of build system and docs improvements, including a manpage.Stephen Dolan
- Build binaries for multiple platforms - Make a manpage out of the manual (see #19) - Extract more tests from the documentation - Fix a few documentation bugs uncovered by above.
2012-11-28revert back to make invoking flex, fix a few bugsLee Thompson
2012-09-19Add some release stuff to Makefile.Stephen Dolan
2012-09-18Move everything around - delete old Haskell code, clean up build.Stephen Dolan
2012-09-02Clean up build a little and add .gitignore.Stephen Dolan