Date: Thu, 12 Nov 2015 12:54:30 +0000 (UTC) From: Antoine Brodin <antoine@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r401341 - head/graphics/imlib2/files Message-ID: <201511121254.tACCsUre023931@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: antoine Date: Thu Nov 12 12:54:30 2015 New Revision: 401341 URL: https://svnweb.freebsd.org/changeset/ports/401341 Log: Allow building with giflib 5.1 PR: 204492 Modified: head/graphics/imlib2/files/patch-src_modules_loaders_loader__gif.c Modified: head/graphics/imlib2/files/patch-src_modules_loaders_loader__gif.c ============================================================================== --- head/graphics/imlib2/files/patch-src_modules_loaders_loader__gif.c Thu Nov 12 12:51:55 2015 (r401340) +++ head/graphics/imlib2/files/patch-src_modules_loaders_loader__gif.c Thu Nov 12 12:54:30 2015 (r401341) @@ -12,3 +12,73 @@ if (!gif) { close(fd); +@@ -60,13 +64,21 @@ load(ImlibImage * im, ImlibProgressFunct + h = gif->Image.Height; + if (!IMAGE_DIMENSIONS_OK(w, h)) + { ++#if GIFLIB_MAJOR == 5 && GIFLIB_MINOR >= 1 || GIFLIB_MAJOR > 5 ++ DGifCloseFile(gif, NULL); ++#else + DGifCloseFile(gif); ++#endif + return 0; + } + rows = malloc(h * sizeof(GifRowType *)); + if (!rows) + { ++#if GIFLIB_MAJOR == 5 && GIFLIB_MINOR >= 1 || GIFLIB_MAJOR > 5 ++ DGifCloseFile(gif, NULL); ++#else + DGifCloseFile(gif); ++#endif + return 0; + } + for (i = 0; i < h; i++) +@@ -78,7 +90,11 @@ load(ImlibImage * im, ImlibProgressFunct + rows[i] = malloc(w * sizeof(GifPixelType)); + if (!rows[i]) + { ++#if GIFLIB_MAJOR == 5 && GIFLIB_MINOR >= 1 || GIFLIB_MAJOR > 5 ++ DGifCloseFile(gif, NULL); ++#else + DGifCloseFile(gif); ++#endif + for (i = 0; i < h; i++) + { + if (rows[i]) +@@ -150,7 +166,11 @@ load(ImlibImage * im, ImlibProgressFunct + im->data = (DATA32 *) malloc(sizeof(DATA32) * w * h); + if (!im->data) + { ++#if GIFLIB_MAJOR == 5 && GIFLIB_MINOR >= 1 || GIFLIB_MAJOR > 5 ++ DGifCloseFile(gif, NULL); ++#else + DGifCloseFile(gif); ++#endif + free(rows); + return 0; + } +@@ -181,7 +201,11 @@ load(ImlibImage * im, ImlibProgressFunct + last_per = (int)per; + if (!(progress(im, (int)per, 0, last_y, w, i))) + { ++#if GIFLIB_MAJOR == 5 && GIFLIB_MINOR >= 1 || GIFLIB_MAJOR > 5 ++ DGifCloseFile(gif, NULL); ++#else + DGifCloseFile(gif); ++#endif + for (i = 0; i < h; i++) + { + free(rows[i]); +@@ -198,7 +222,11 @@ load(ImlibImage * im, ImlibProgressFunct + { + progress(im, 100, 0, last_y, w, h); + } ++#if GIFLIB_MAJOR == 5 && GIFLIB_MINOR >= 1 || GIFLIB_MAJOR > 5 ++ DGifCloseFile(gif, NULL); ++#else + DGifCloseFile(gif); ++#endif + for (i = 0; i < h; i++) + { + free(rows[i]);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201511121254.tACCsUre023931>