Index: sdlpango-0.1.2/src/SDL_Pango.c =================================================================== --- sdlpango-0.1.2.orig/src/SDL_Pango.c 2007-10-08 19:44:15.000000000 +0000 +++ sdlpango-0.1.2/src/SDL_Pango.c 2007-10-08 19:45:27.000000000 +0000 @@ -725,16 +725,23 @@ int x = rect->x; int y = rect->y; + if(x < 0) { + width += x; x = 0; + } if(x + width > surface->w) { width = surface->w - x; - if(width <= 0) - return; + } + if(width <= 0) + return; + + if(y < 0) { + height += y; y = 0; } if(y + height > surface->h) { height = surface->h - y; - if(height <= 0) - return; } + if(height <= 0) + return; if(SDL_LockSurface(surface)) { SDL_SetError("surface lock failed"); n> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/php.scm
AgeCommit message (Expand)Author
2023-07-01gnu: php: Enable sysvsem module....Nextcloud 26 strongly recommends installing this module. * gnu/packages/php.scm: (php)[arguments]: Add "--enable-sysvsem" configure flag. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Timo Wilken
2023-03-04gnu: Remove and deprecate tidy for tidy-html...* gnu/packages/web.scm (tidy): Change to deprecated alias for tidy-html * gnu/packages/pumpio.scm (pumpa): Use tidy-html instead of tidy and correct header name. * gnu/packages/markup.scm (hoedown): * gnu/packages/photo.scm (enblend-enfuse): * gnu/packages/php.scm (php): * gnu/packages/python-xyz.scm (python-pytidylib): Use tidy-html instead of tidy. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Morgan Smith
2023-02-19gnu: php: Drop a failed test for riscv64....* gnu/packages/php (php): Drop a failed test for riscv64. [source, arguments, description]: Fix formatting. Aleksandr Vityazev
2023-02-11gnu: php: Update to 8.2.2....* gnu/packages/php.scm (php): Update to 8.2.2. * gnu/packages/patches/php-curl-compat.patch: Remove file. * gnu/packages/patches/php-bug-74093-test.patch: Remove file. * gnu/packages/patches/php-fix-streams-copy-length.patch: New file. * gnu/local.mk (dist_patch_DATA): Remove them. Add it. Julien Lepiller
2022-09-18gnu: Explicitly use OpenSSL 1.1 in packages that don't support 3.0....* gnu/packages/php.scm (php)[inputs]: Change from OPENSSL to OPENSSL-1.1. * gnu/packages/ntp.scm (ntp)[inputs]: Likewise. Marius Bakke