This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff -aur a/src/Makefile.am b/src/Makefile.am | |
| --- a/src/Makefile.am 2016-06-13 16:06:28.000000000 +0200 | |
| +++ b/src/Makefile.am 2016-06-13 16:06:41.000000000 +0200 | |
| @@ -7,7 +7,7 @@ | |
| EXTRA_DIST = $(pkgdata_SCRIPTS) $(bin_SCRIPTS) $(noinst_SCRIPTS) | |
| -lftp_SOURCES = lftp.cc complete.h complete.cc lftp_rl.c lftp_rl.h attach.cc attach.h | |
| +lftp_SOURCES = lftp.cc complete.h complete.cc lftp_rl.cc lftp_rl.h attach.cc attach.h | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff -aur a/src/Makefile.am b/src/Makefile.am | |
| --- a/src/Makefile.am 2016-06-13 16:06:28.000000000 +0200 | |
| +++ b/src/Makefile.am 2016-06-13 16:06:41.000000000 +0200 | |
| @@ -7,7 +7,7 @@ | |
| EXTRA_DIST = $(pkgdata_SCRIPTS) $(bin_SCRIPTS) $(noinst_SCRIPTS) | |
| -lftp_SOURCES = lftp.cc complete.h complete.cc lftp_rl.c lftp_rl.h attach.cc attach.h | |
| +lftp_SOURCES = lftp.cc complete.h complete.cc lftp_rl.cc lftp_rl.h attach.cc attach.h |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- a/src/libjasper/jpc/jpc_dec.c.orig 2015-12-27 21:58:46.000000000 +0100 | |
| +++ a/src/libjasper/jpc/jpc_dec.c 2015-12-27 22:01:41.000000000 +0100 | |
| @@ -1069,12 +1069,18 @@ | |
| /* Apply an inverse intercomponent transform if necessary. */ | |
| switch (tile->cp->mctid) { | |
| case JPC_MCT_RCT: | |
| - assert(dec->numcomps == 3); | |
| + if (dec->numcomps != 3 && dec->numcomps != 4) { | |
| + jas_eprintf("bad number of components (%d)\n", dec->numcomps); | |
| + return -1; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- a/src/libjasper/base/jas_icc.c.orig Fri Jan 19 13:43:05 2007 | |
| +++ a/src/libjasper/base/jas_icc.c Thu Oct 29 22:03:25 2015 | |
| @@ -373,7 +373,7 @@ int jas_iccprof_save(jas_iccprof_t *prof, jas_stream_t | |
| jas_icctagtab_t *tagtab; | |
| tagtab = &prof->tagtab; | |
| - if (!(tagtab->ents = jas_malloc(prof->attrtab->numattrs * | |
| + if (!(tagtab->ents = jas_alloc2(prof->attrtab->numattrs, | |
| sizeof(jas_icctagtabent_t)))) | |
| goto error; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- a/common/msg.c.orig 2015-12-27 20:53:11.000000000 +0100 | |
| +++ a/common/msg.c 2015-12-27 20:54:26.000000000 +0100 | |
| @@ -724,9 +724,18 @@ | |
| p = buf; | |
| } else | |
| p = file; | |
| + if (access(p, F_OK) != 0) { | |
| + if (first) { | |
| + first = 0; | |
| + return (1); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- a/librpc/idl/clusapi.idl.orig | |
| +++ a/librpc/idl/clusapi.idl | |
| @@ -28,15 +28,15 @@ | |
| typedef [context_handle] void *HNETINTERFACE_RPC; | |
| typedef [context_handle] void *HBATCH_PORT_RPC; | |
| #else | |
| - #define HCLUSTER_RPC policy_handle | |
| - #define HNODE_RPC policy_handle | |
| - #define HGROUP_RPC policy_handle | |
| - #define HRES_RPC policy_handle |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- a/_librsyncmodule.c.orig 2015-09-06 18:16:56.000000000 +0200 | |
| +++ b/_librsyncmodule.c 2015-09-06 18:19:13.000000000 +0200 | |
| @@ -58,9 +58,13 @@ | |
| sm = PyObject_New(_librsync_SigMakerObject, &_librsync_SigMakerType); | |
| if (sm == NULL) return NULL; | |
| sm->x_attr = NULL; | |
| - | |
| - sm->sig_job = rs_sig_begin((size_t)blocklen, | |
| - (size_t)RS_DEFAULT_STRONG_LEN); | |
| + #ifdef RS_DEFAULT_STRONG_LEN /* librsync < 1.0.0 */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| balrog:local n$ brew install agda | |
| /usr/local/Library/brew.rb (Formulary::FormulaLoader): loading /usr/local/Library/Formula/agda.rb | |
| /usr/local/Library/brew.rb (Formulary::FormulaLoader): loading /usr/local/Library/Formula/ghc.rb | |
| /usr/local/Library/brew.rb (Formulary::FormulaLoader): loading /usr/local/Library/Formula/xz.rb | |
| /usr/local/Library/brew.rb (Formulary::FormulaLoader): loading /usr/local/Library/Formula/cabal-install.rb | |
| /usr/local/Library/brew.rb (Formulary::FormulaLoader): loading /usr/local/Library/Formula/gmp.rb | |
| ==> Installing agda dependency: ghc | |
| ==> Downloading https://homebrew.bintray.com/bottles/ghc-7.10.1_1.yosemite.bottle.tar.gz | |
| Already downloaded: /Library/Caches/Homebrew/ghc-7.10.1_1.yosemite.bottle.tar.gz | |
| ==> Verifying ghc-7.10.1_1.yosemite.bottle.tar.gz checksum |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| bash-3.2$ make | |
| /usr/local/Cellar/cmake/3.2.3/bin/cmake -H/tmp/libcec20150709-57124-110w21t/libcec-libcec-3.0.1 -B/tmp/libcec20150709-57124-110w21t/libcec-libcec-3.0.1/build --check-build-system CMakeFiles/Makefile.cmake 0 | |
| /usr/local/Cellar/cmake/3.2.3/bin/cmake -E cmake_progress_start /tmp/libcec20150709-57124-110w21t/libcec-libcec-3.0.1/build/CMakeFiles /tmp/libcec20150709-57124-110w21t/libcec-libcec-3.0.1/build/CMakeFiles/progress.marks | |
| /Applications/Xcode.app/Contents/Developer/usr/bin/make -f CMakeFiles/Makefile2 all | |
| /Applications/Xcode.app/Contents/Developer/usr/bin/make -f src/libcec/CMakeFiles/cec.dir/build.make src/libcec/CMakeFiles/cec.dir/depend | |
| cd /tmp/libcec20150709-57124-110w21t/libcec-libcec-3.0.1/build && /usr/local/Cellar/cmake/3.2.3/bin/cmake -E cmake_depends "Unix Makefiles" /tmp/libcec20150709-57124-110w21t/libcec-libcec-3.0.1 /tmp/libcec20150709-57124-110w21t/libcec-libcec-3.0.1/src/libcec /tmp/libcec20150709-57124-110w21t/libcec-libcec-3.0.1/build /tmp/libcec20150709-57124-110w21t/libcec- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- a/src/libimage/gif.c | |
| +++ b/src/libimage/gif.c | |
| @@ -20,222 +20,566 @@ | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| +#include <string.h> | |
| #include <gif_lib.h> | |