summaryrefslogtreecommitdiff
path: root/configure.ac
Commit message (Collapse)AuthorAgeFilesLines
...
* Release 1.9.21.9.2Carlos Garnacho2016-09-141-1/+1
|
* Release 1.9.11.9.1Carlos Garnacho2016-08-231-1/+1
|
* tests: Include new libtracker-data tests in distCarlos Garnacho2016-08-231-0/+1
|
* configure: Do not hardcode dep on libpngCarlos Garnacho2016-08-101-6/+1
| | | | There is a --enable/disable-png check below.
* Bump GLib dependency to 2.44Sam Thursfield2016-07-141-1/+1
| | | | | | | So I can use G_DECLARE_DERIVABLE_TYPE() instead of writing out everything manually. https://bugzilla.gnome.org/show_bug.cgi?id=767472
* Release 1.9.01.9.0Carlos Garnacho2016-06-211-1/+1
|
* configure.ac: Remove some unused variablesSam Thursfield2016-06-131-5/+0
|
* tests: Add some BIND() testsCarlos Garnacho2016-05-301-0/+1
|
* manpages: Drop manpages of configuration settings/filesCarlos Garnacho2016-05-141-27/+0
| | | | | | Gsettings are self-documenting, plus translatable. There is no need to duplicate this documentation, and even less if it focuses on the deprecated keyfile format. It is time to hide that under the rug.
* configure: Update configure for sqlite3 support 3.7.15sahaltim92016-05-081-1/+2
| | | | | | sqlite3_errstr was added in that version. https://bugzilla.gnome.org/show_bug.cgi?id=743245
* configure: Set better bugzilla linkCarlos Garnacho2016-05-081-1/+1
| | | | We can point to the tracker product.
* configure: Check that sqlite3 has sqlite3_auto_extension() enabledCarlos Garnacho2016-03-271-0/+6
| | | | | | | | | | Only do this if we need to load the FTS5 module, sqlite3 might have been compiled with SQLITE_OMIT_LOAD_EXTENSION, which will make things go very wrong (poking NULL vfuncs in a 0'ed out sqlite3_api_routines) at runtime. This facility must be enabled if we need to load our FTS module, so bail out at configure time if it's not there.
* configure.ac: Add note about Automake subdir-objects optionSam Thursfield2016-03-271-0/+6
| | | | | It seems to break the build because of an Automake bug, see: <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=13928>
* Revert "configure: Use subdir-objects Automake option"Sam Thursfield2016-03-271-1/+1
| | | | | | | | | | This reverts commit 5ae20fb915659163e68f5f18bbd444e8de30d02b. Lesson learned (again): don't do something just because Automake tells you to. Notice the same thing happened back in commit e46bfc1c43 which was reverted again in b1e3997ce7b894.
* configure: Remove AC_PROG_RANLIB, it's not neededSam Thursfield2016-03-271-1/+0
| | | | | | Based on this warning from libtoolize: libtoolize: `AC_PROG_RANLIB' is rendered obsolete by `LT_INIT'
* configure: Use subdir-objects Automake optionSam Thursfield2016-03-271-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | This fixes the following warnings: src/libtracker-miner/Makefile-shared-sources.decl:5: warning: source file '$(top_srcdir)/src/libtracker-miner/tracker-monitor.c' is in a subdirectory, src/libtracker-miner/Makefile-shared-sources.decl:5: but option 'subdir-objects' is disabled src/libtracker-miner/Makefile.am:10: 'src/libtracker-miner/Makefile-shared-sources.decl' included from here automake: warning: possible forward-incompatibility. automake: At least a source file is in a subdirectory, but the 'subdir-objects' automake: automake option hasn't been enabled. For now, the corresponding output automake: object file(s) will be placed in the top-level directory. However, automake: this behaviour will change in future Automake versions: they will automake: unconditionally cause object files to be placed in the same subdirectory automake: of the corresponding sources. automake: You are advised to start using 'subdir-objects' option throughout your automake: project, to avoid future incompatibilities. src/tracker-preferences/Makefile.am:34: warning: source file '$(top_srcdir)/src/miners/fs/tracker-config.c' is in a subdirectory, src/tracker-preferences/Makefile.am:34: but option 'subdir-objects' is disabled src/libtracker-miner/Makefile-shared-sources.decl:17: warning: source file '$(top_srcdir)/src/libtracker-miner/tracker-crawler.c' is in a subdirectory, src/libtracker-miner/Makefile-shared-sources.decl:17: but option 'subdir-objects' is disabled tests/libtracker-miner/Makefile.am:11: 'src/libtracker-miner/Makefile-shared-sources.decl' included from here src/libtracker-miner/Makefile-shared-sources.decl:5: warning: source file '$(top_srcdir)/src/libtracker-miner/tracker-monitor.c' is in a subdirectory, src/libtracker-miner/Makefile-shared-sources.decl:5: but option 'subdir-objects' is disabled tests/libtracker-miner/Makefile.am:11: 'src/libtracker-miner/Makefile-shared-sources.decl' included from here autoreconf: automake failed with exit status: 1
* Release 1.8.01.8.0Carlos Garnacho2016-03-211-2/+2
|
* tracker-extract: adapt to libcue 2.0.0 APIfosero2016-03-211-3/+6
| | | | | | | Allow optional support for the libcue 2.0.0 API changes: new location of libcue.h and a renamed enum. https://bugzilla.gnome.org/show_bug.cgi?id=762512
* Release 1.7.51.7.5Carlos Garnacho2016-03-141-1/+1
|
* tests: distcheck fixCarlos Garnacho2016-03-141-0/+1
|
* Release 1.7.41.7.4Carlos Garnacho2016-03-011-1/+1
|
* Update to FTS5Carlos Garnacho2016-03-011-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Our old stale copy of the FTS3/4 module is now deleted, replaced by a shinier FTS5 embedded module. If at configure time we detect that SQLite doesn't offer the FTS5 module, we will load our own, just as we used to do with FTS4. FTS5 brings a few differences in the ways it's meant to be extended, the tokenizer has been updated to cope with the differences. Also, FTS5 offers no offsets() builtin function, nor matchinfo() which we used to implement ranking. It offers though ways to implement additional functions, and builtin rank support which can be tweaked to achieve the same functional results than we did. Other than that, the ways to interact with the FTS virtual table are roughly similar to those in FTS4, insertions and deletions have been updated to do things the FTS5 way. Since it's not worth to bump the database format (data is reproducted from the journal, so we drop some embedded data such as nie:plainTextContent), the nco:hobby property has been modified to no longer be fulltext indexed, AFAIK there's no users ever setting/ accessing that, and the FTS properties change will trigger the regeneration of the FTS view and virtual tables, resulting in a seamless update to FTS5. However, we don't leave completely unscathed from the fts3_tokenizer() change. Since the older FTS3/4 tokenizer is not registered, we can't just drop the older FTS table. So it is left dangling and never accessed again, in favor of the newer fts5 table. This is obviously not a problem when creating the database from scratch. In the way, a few bugs were found. per-property weights in ranking were being given in a scrambled way (although stable across database generations). And deletion of FTS properties (or entire rows) could result in the tokens not being fully removed from the FTS table, resulting in confused searches. These are now fixed. Impact to users of tracker should be none. All the FTS Sparql-to-SQL translation has been updated to just use FTS5 syntax and tables.
* Release 1.7.31.7.3Carlos Garnacho2016-02-161-1/+1
|
* Release 1.7.21.7.2Carlos Garnacho2016-01-171-1/+1
|
* Release 1.7.11.7.1Carlos Garnacho2015-12-171-1/+1
|
* Release 1.7.01.7.0Carlos Garnacho2015-11-251-1/+1
|
* build: Work-around vim highlighting bugBastien Nocera2015-09-251-45/+45
| | | | | | | | When "Couldn't" is used in an m4 macro, vim will highlight all the code until the next "'" to close it. Work around that by replacing "Couldn't" by "Could not". https://bugzilla.gnome.org/show_bug.cgi?id=755218
* Release 1.6.01.6.0Carlos Garnacho2015-09-221-2/+2
|
* Release 1.5.21.5.2Carlos Garnacho2015-08-201-1/+1
|
* build: Fix bash completion dir problem with make install, distcheckMartyn Russell2015-07-311-9/+21
| | | | | | | | | - Support JHBuild too - Allow disabling altogether - Fix DISTCHECK flags Conflicts: Makefile.am
* Release 1.5.11.5.1Carlos Garnacho2015-07-211-1/+1
|
* configure: bump required libgrss version to 0.7Igor Gnatenko2015-07-191-3/+3
| | | | | | and now grss has unversioned pc name Signed-off-by: Igor Gnatenko <ignatenko@src.gnome.org>
* bump libgrss to latest 0.6Igor Gnatenko2015-07-141-2/+2
| | | | | | | There are no API break since 0.5, but 0.5 doesn't work well and doesn't shipped in distros Reference: https://bugzilla.gnome.org/show_bug.cgi?id=752371 Signed-off-by: Igor Gnatenko <ignatenko@src.gnome.org>
* Release 1.5.01.5.0Carlos Garnacho2015-07-131-2/+2
|
* build: Fix AM_CONDITIONAL position HAVE_{GSTREAMER,LIBAV} definitionGilles Dartiguelongue2015-07-121-5/+5
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=750368
* configure: Save LDFLAGSMarcus Meissner2015-07-041-0/+12
| | | | | | | There's places where CFLAGS is modified/restored while LDFLAGS is left untouched, both should be saved/restored at the same time. https://bugzilla.gnome.org/show_bug.cgi?id=742186
* docs: Delete ontology graph toolCarlos Garnacho2015-06-301-12/+0
| | | | | This is now unused, so remove the tool, and the configure.ac check for fdp.
* configure: fix conditional AM_CONDITIONALRalph Boehme2015-06-201-0/+3
| | | | Signed-off-by: Ralph Boehme <slow@samba.org>
* Move bash-completion to new locationMichael Biebl2015-05-231-0/+13
| | | | | | Rename the bash completion script after the binary and move it to /usr/share/bash-completion/completions. This way the completions can be loaded on demand.
* Release 1.3.61.3.6Carlos Garnacho2015-03-171-1/+1
|
* Distcheck fixesCarlos Garnacho2015-03-171-2/+0
|
* configure: pack in .xzCarlos Garnacho2015-03-061-1/+1
|
* Release 1.3.51.3.5Carlos Garnacho2015-03-061-1/+1
|
* Release 1.3.41.3.4Carlos Garnacho2015-03-031-1/+1
|
* Release 1.3.31.3.3Martyn Russell2015-02-051-1/+1
|
* Mechanically adjust for libmediaart-2.0Yanko Kaneti2015-01-261-3/+3
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=743250
* Release 1.3.21.3.2Martyn Russell2014-12-111-1/+1
|
* tracker: Merged utils/tracker-sql/tracker-sql into 'tracker sql ...'Martyn Russell2014-12-101-1/+0
|
* tracker: Merge tracker-control into a 'tracker' commandMartyn Russell2014-12-101-13/+7
|
* Release 1.3.11.3.1Martyn Russell2014-12-031-1/+1
|