emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#54132: closed ([PATCH] gnu: imgui: Add missing build files.)


From: GNU bug Tracking System
Subject: bug#54132: closed ([PATCH] gnu: imgui: Add missing build files.)
Date: Thu, 24 Feb 2022 03:10:03 +0000

Your message dated Wed, 23 Feb 2022 22:09:41 -0500
with message-id <87y221klje.fsf@gmail.com>
and subject line Re: bug#54132: [PATCH] gnu: imgui: Add missing build files.
has caused the debbugs.gnu.org bug report #54132,
regarding [PATCH] gnu: imgui: Add missing build files.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
54132: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=54132
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: imgui: Add missing build files. Date: Wed, 23 Feb 2022 19:55:42 +0000
Imgui was being built without two of its files, removing table and widget 
support from the built library. This simple patch adds them back to the build 
phase.

Tested it builds and those features work in a package (mangohud) that uses them.

Attachment: 0001-gnu-imgui-Add-missing-build-files.patch
Description: Text Data


--- End Message ---
--- Begin Message --- Subject: Re: bug#54132: [PATCH] gnu: imgui: Add missing build files. Date: Wed, 23 Feb 2022 22:09:41 -0500 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux)
Hello!

John Kehayias <john.kehayias@protonmail.com> writes:

> Imgui was being built without two of its files, removing table and
> widget support from the built library. This simple patch adds them
> back to the build phase.
>
> Tested it builds and those features work in a package (mangohud) that uses 
> them.
>
> From 11c8aa71d3e226b469e4ed3c65fd85851eb63f76 Mon Sep 17 00:00:00 2001
> From: John Kehayias <john.kehayias@protonmail.com>
> Date: Wed, 23 Feb 2022 14:51:32 -0500
> Subject: [PATCH] gnu: imgui: Add missing build files.
>
> * gnu/packages/toolkits.scm (imgui)[phases]: Add imgui_tables.cpp and
> imgui_widgets.cpp to the build phase.
> ---
>  gnu/packages/toolkits.scm | 3 +++
>  1 file changed, 3 insertions(+)
>
> diff --git a/gnu/packages/toolkits.scm b/gnu/packages/toolkits.scm
> index ee0cffa2f9..ba860014a4 100644
> --- a/gnu/packages/toolkits.scm
> +++ b/gnu/packages/toolkits.scm
> @@ -1,6 +1,7 @@
>  ;;; GNU Guix --- Functional package management for GNU
>  ;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
>  ;;; Copyright © 2020 Tobias Geerinckx-Rice <me@tobias.gr>
> +;;; Copyright © 2022 John Kehayias <john.kehayias@protonmail.com>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;

I've heard for contributions of less than about 10 new lines, the
changes are not substantial enough to be protected by copyright.
Something to keep in mind for your future patches :-).

> @@ -69,6 +70,8 @@ (define-public imgui
>                       "-o" "libimgui.so"
>                       "imgui.cpp"
>                       "imgui_draw.cpp"
> +                     "imgui_tables.cpp"
> +                     "imgui_widgets.cpp"
>                       ;; Include the supported backends.
>                       "backends/imgui_impl_glfw.cpp"
>                       "backends/imgui_impl_sdl.cpp"

Applied as 74f9c8e47f08826eff12b793e668d7e8c5898b0e.

Thanks for the investigation and fix!

Maxim


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]