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; d class='sub right'>
aboutsummaryrefslogtreecommitdiff
path: root/gnu/tests/pam.scm
AgeCommit message (Expand)Author
2023-05-06tests: Add missing module imports for marionette-evaluated code....This missing imports became apparent with commit a09c7da8f8d8e732f969cf0a09aaa78f87032ab1, which runs the marionette service in a fresh Guile process with fewer imports. * gnu/tests/databases.scm (run-postgresql-test, run-timescaledb-test) (run-mysql-test): Add missing module imports for code passed to 'marionette-eval'. * gnu/tests/docker.scm (run-docker-test, run-docker-system-test): Likewise. * gnu/tests/mail.scm (run-dovecot-test, run-getmail-test): Likewise. * gnu/tests/monitoring.scm (run-zabbix-server-test): Likewise. * gnu/tests/pam.scm (run-test-pam-limits): Likewise. * gnu/tests/reconfigure.scm (run-switch-to-system-test) (run-install-bootloader-test): Likewise. * gnu/tests/security-token.scm (run-pcscd-test): Likewise. * gnu/tests/install.scm (gui-test-program): Likewise. * gnu/tests/telephony.scm (run-jami-test): Add modules to the #:imported-modules argument of 'marionette-operating-system'. [test]: Remove them from 'with-imported-modules'; remove 'with-extensions'. Add "d-bus tooling loaded" test to set up %load-path and %load-compiled-path so the marionette process can find guile-ac-d-bus and guile-packrat. Ludovic Courtès
2023-03-30services: pam-limits-service-type: Deprecate file-like object support in favo......* doc/guix.texi (Base Services): Document it. * gnu/local.mk: Register test. * gnu/services/base.scm (pam-limits-service-type): Accept both lists and file-like objects. Deprecate file-like object support. * gnu/tests/pam.scm: New file. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Bruno Victal