summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* travis-ci: Replace GP_CHECK_LIBRARY for libexifissue-467-wip5Hans Ulrich Niedermann2020-02-171-44/+52
|
* travis-ci: Now that builds work on OSX, remove libexif installHans Ulrich Niedermann2020-02-171-1/+1
| | | | Maybe the build will still complete. Or maybe not.
* travis-ci: Add --enable-vusb to travis-script invocationsHans Ulrich Niedermann2020-02-171-2/+2
|
* travis-ci: Run tests/print-libgphoto2-version if presentHans Ulrich Niedermann2020-02-161-1/+10
|
* travis-ci: fix build script prefix locationHans Ulrich Niedermann2020-02-161-1/+1
|
* travis-ci: install libexif on OSX, adapt PKG_CONFIG_PATHHans Ulrich Niedermann2020-02-161-1/+1
|
* travis-ci: nicer way to specify --prefixHans Ulrich Niedermann2020-02-161-1/+1
|
* travis-ci: Add build script, and start using itHans Ulrich Niedermann2020-02-162-2/+52
|
* travis-ci: if configure fails, cat config.logHans Ulrich Niedermann2020-02-162-4/+2
| | | | | Remove "set -x", though. That is too verbose, and appears to confuse configure.
* travis-ci: set -x for finding libexif failure on OSXHans Ulrich Niedermann2020-02-161-0/+3
|
* travis-ci: more libexif lib check checkpointsHans Ulrich Niedermann2020-02-162-0/+68
|
* travis-ci: more libexif checkpoints, in gp_portHans Ulrich Niedermann2020-02-161-2/+16
|
* travis-ci: continue builds if first _b build failsHans Ulrich Niedermann2020-02-161-1/+1
|
* Add more checkpointsHans Ulrich Niedermann2020-02-161-1/+16
|
* travis-ci: Add some checkpoint messages for debuggingHans Ulrich Niedermann2020-02-161-0/+12
| | | | | | | | Sometimes, the last message from configure is checking for libexif >= 0.6.13... no and I want to find out what is actually going on here.
* travis-ci: Try non-sudo outside-of-tree buildHans Ulrich Niedermann2020-02-161-0/+2
|
* New set based camlib definition and --with-camlibs handlingHans Ulrich Niedermann2020-02-167-205/+1424
| | | | | | | | | | | | | | This uses proper set operations both for GP_CAMLIB and for handling the --with-camlibs value. This allows all GP_CAMLIB definitions to be present at autoreconf time (as m4 code) time while some camlib definitions being conditional at the time of the configure run (in the sh code). The ./configure output is still a bit verbose, but we can reduce that verbosity later when we have found out that this works well on people's different systems. Fixes: https://github.com/gphoto/libgphoto2/issues/467
* Add print-libgphoto2-version programHans Ulrich Niedermann2020-02-152-0/+161
| | | | | | | | | The new print-libgphoto2-version program prints the complete libgphoto2 version message in both short and verbose. This functionality had not been available before, and we want it for checking later changes to the camlib list part of the version messages.
* travis-ci: If make check fails, cat the test-suite.log filesHans Ulrich Niedermann2020-02-151-2/+2
| | | | | This should help with finding the actual causes of test suite failures during travis-ci checks.
* travis-ci: print system date and ls -l configure to help with debuggingHans Ulrich Niedermann2020-02-141-0/+2
| | | | | Print the system date and "ls -l configure" to help with debugging the sane build system check failure.
* error checking during file retrieval (AFL)Marcus Meissner2020-02-141-2/+7
|
* initialize memory to NULL, check if read (AFL)Marcus Meissner2020-02-142-2/+3
|
* Avoid "echo" in configure.ac in some placesHans Ulrich Niedermann2020-02-141-13/+15
| | | | | | | This should avoid some possible incompatibities in the case of the multi line string argument to "echo", and cleans up the code by replacing a number of "echo" commands with a single AC_MSG_WARN.
* check buffersize before decoding to avoid overread (AFL)Marcus Meissner2020-02-131-6/+11
|
* check for filesize to avoid overread (AFL)Marcus Meissner2020-02-131-0/+5
|
* avoid going below arrax index 0 (AFL)Marcus Meissner2020-02-111-1/+1
|
* log invaliddram and return error to avoid endless loop (AFL)Marcus Meissner2020-02-101-1/+2
|
* do not sleep during fuzzing (AFL)Marcus Meissner2020-02-102-0/+9
|
* fixed integer overflow check to avoid overflow (AFL)Marcus Meissner2020-02-081-1/+1
|
* Added nikon coolpix 4100 (sierra) (It also works in PTP mode though)Marcus Meissner2020-02-031-0/+3
|
* added fix for GoPro files not appearing caused by another hack for another ↵Marcus Meissner2020-02-022-3/+8
| | | | device
* faster fuzzingMarcus Meissner2020-02-011-0/+4
|
* handle partial read files, avoid crashes (AFL)Marcus Meissner2020-02-012-1/+5
|
* added gopro hero 7 silverMarcus Meissner2020-02-011-0/+2
|
* avoid usleep during fuzzing (AFL)Marcus Meissner2020-02-011-0/+5
|
* handle size 0 to avoid buffer underread (AFL)Marcus Meissner2020-02-011-0/+2
|
* init revision in case of errors to avoid uninit usage (AFL)Marcus Meissner2020-01-311-0/+1
|
* added Z50Marcus Meissner2020-01-281-1/+1
|
* added nikon z50Marcus Meissner2020-01-281-0/+4
|
* Merge pull request #459 from tail-feather/support-fuji-isoMarcus Meissner2020-01-281-0/+49
|\ | | | | Support for Fujifilm ISO extension
| * Merge remote-tracking branch 'origin/master' into support-fuji-isoTSUNODA Koji2019-11-251-5/+0
| |\
| * | Add Fuji exception for ExposureIndex (DataType:INT32)TSUNODA Koji2019-11-211-0/+49
| | |
* | | Merge pull request #470 from knro/masterMarcus Meissner2020-01-281-4/+3
|\ \ \ | | | | | | | | Add Nikon D7500 Image Quality
| * \ \ Merge branch 'master' into masterJasem Mutlaq2020-01-2814-42/+144
| |\ \ \ | |/ / / |/| | |
* | | | added more sanity checks to avoid NULL ptr deref (AFL)Marcus Meissner2020-01-261-2/+5
| | | |
* | | | updatedMarcus Meissner2020-01-261-4/+6
| | | |
* | | | clarify notesMarcus Meissner2020-01-261-1/+3
| | | |
* | | | remove allocation, done by called function nowMarcus Meissner2020-01-261-3/+1
| | | |
* | | | allow filenames shorter than 11 characters (AFL)Marcus Meissner2020-01-261-1/+1
| | | |
* | | | round up the download size (AFL)Marcus Meissner2020-01-261-1/+1
| | | |