summaryrefslogtreecommitdiff
path: root/app-text/llpp/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-text/llpp/files
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-text/llpp/files')
-rw-r--r--app-text/llpp/files/llpp-26b-WM_CLASS.patch41
1 files changed, 0 insertions, 41 deletions
diff --git a/app-text/llpp/files/llpp-26b-WM_CLASS.patch b/app-text/llpp/files/llpp-26b-WM_CLASS.patch
deleted file mode 100644
index e99d9a4e4e5a..000000000000
--- a/app-text/llpp/files/llpp-26b-WM_CLASS.patch
+++ /dev/null
@@ -1,41 +0,0 @@
---- llpp-26b/link.c
-+++ llpp-26b/link.c
-@@ -4392,6 +4392,31 @@
- return caml_copy_string (FZ_VERSION);
- }
-
-+#if !defined (_WIN32) && !defined (__APPLE__)
-+#undef pixel
-+#include <X11/X.h>
-+#include <X11/Xlib.h>
-+#include <X11/Xutil.h>
-+#include <GL/glx.h>
-+
-+static void set_wm_class (void)
-+{
-+ Display *dpy;
-+ Window win;
-+ XClassHint hint;
-+
-+ dpy = XOpenDisplay (getenv ("DISPLAY"));
-+ DefaultScreen (dpy);
-+ hint.res_name = "llpp";
-+ hint.res_class = "llpp";
-+ win = glXGetCurrentDrawable ();
-+ XSetClassHint (dpy, win, &hint);
-+ XCloseDisplay (dpy);
-+}
-+#else
-+#define set_wm_class()
-+#endif
-+
- CAMLprim void ml_init (value csock_v, value params_v)
- {
- CAMLparam2 (csock_v, params_v);
-@@ -4460,5 +4485,6 @@
- errx (1, "pthread_create: %s", strerror (ret));
- }
-
-+ set_wm_class ();
- CAMLreturn0;
- }