https://sources.debian.org/data/main/w/wmfire/1.2.4-7/debian/patches/08_removed-inline-from-function-with-extern-linkage.patch Description: remove inline from function with extern linkage Fixes FTBFS with gcc 9. Author: Jeremy Sowden Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=925858 Last-Update: 2019-06-22 Forwarded: not-needed --- src/wmfire.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/src/wmfire.c +++ b/src/wmfire.c @@ -111,7 +111,7 @@ void change_flame(int); GdkCursor *setup_cursor(); void burn_spot(int, int, int); -inline void draw_fire(unsigned int); +void draw_fire(unsigned int); static void make_wmfire_dockapp(); void read_config(int, char **); void do_help(void); @@ -504,7 +504,7 @@ /* Draw fire */ /******************************************/ -inline void +void draw_fire(unsigned int load) { int x, y, i, j; /td>
aboutsummaryrefslogtreecommitdiff
path: root/etc/system-tests.scm
AgeCommit message (Expand)Author
2022-08-09build-system: Add 'channel-build-system'....* gnu/ci.scm (channel-build-system, channel-source->package): Remove. * gnu/packages/package-management.scm (channel-source->package): New procedure, moved from (gnu ci). * guix/build-system/channel.scm: New file, with code moved from (gnu ci). * doc/guix.texi (Build Systems): Document it. Ludovic Courtès
2022-07-10monads: Add 'mparameterize'....* etc/system-tests.scm (mparameterize): Move to... * guix/monads.scm (mparameterize): ... here. * tests/monads.scm ("mparameterize"): New test. * .dir-locals.el (c-mode): Add it. Ludovic Courtès
2022-04-11tests: System tests really parameterize 'current-guix-package'....Until now, 'current-guix-package' was parameterized in the wrong context. Thus, 'current-guix' would end up building a variant of the 'guix' package instead of the package returned by 'channel-source->package', which is much less expensive to build. * etc/system-tests.scm (mparameterize): New macro. (tests-for-current-guix): Change the 'value' field of each <system-test> record to parameterize 'current-guix-package' for good. Ludovic Courtès