diff options
author | Antoine Brodin <antoine@FreeBSD.org> | 2021-01-01 10:11:34 +0000 |
---|---|---|
committer | Antoine Brodin <antoine@FreeBSD.org> | 2021-01-01 10:11:34 +0000 |
commit | 26b4c8f71f91d22e081b27814782686edde0c90a (patch) | |
tree | 1c321c39372c25d8634e75b5c8e08edc676b296d /audio/ardour/files/patch-gtk2_ardour-connection_editor.h | |
parent | New port: math/py-optuna: A hyperparameter optimization framework (diff) |
Revert r559792 to unbreak INDEX and bulk -a
It seems a lot of reverse dependencies were missed
With hat: portmgr
Diffstat (limited to 'audio/ardour/files/patch-gtk2_ardour-connection_editor.h')
-rw-r--r-- | audio/ardour/files/patch-gtk2_ardour-connection_editor.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/audio/ardour/files/patch-gtk2_ardour-connection_editor.h b/audio/ardour/files/patch-gtk2_ardour-connection_editor.h new file mode 100644 index 000000000000..e27a2add3c35 --- /dev/null +++ b/audio/ardour/files/patch-gtk2_ardour-connection_editor.h @@ -0,0 +1,25 @@ +--- gtk2_ardour/connection_editor.h.orig ++++ gtk2_ardour/connection_editor.h +@@ -20,12 +20,7 @@ + #ifndef __ardour_gtk_connection_editor_h__ + #define __ardour_gtk_connection_editor_h__ + +-#if __GNUC__ >= 3 +-#include <ext/slist> +-using __gnu_cxx::slist; +-#else +-#include <slist.h> +-#endif ++#include <boost/container/slist.hpp> + + #include <gtkmm/box.h> + #include <gtkmm/window.h> +@@ -116,7 +111,7 @@ class ConnectionEditor : public ArdourDi + Gtk::Button add_port_button; + + Glib::Mutex port_display_lock; +- slist<Gtk::ScrolledWindow *> port_displays; ++ boost::container::slist<Gtk::ScrolledWindow *> port_displays; + + Gtk::Button ok_button; + Gtk::Button cancel_button; |