mailarchive of the ptxdist mailing list
 help / color / mirror / Atom feed
From: Lucas Stach <l.stach@pengutronix.de>
To: ptxdist@pengutronix.de
Subject: [ptxdist] [PATCH 2/4] waffle: version bump 1.5.2 -> 1.6.1
Date: Mon, 16 Nov 2020 13:06:25 +0100	[thread overview]
Message-ID: <20201116120627.17891-2-l.stach@pengutronix.de> (raw)
In-Reply-To: <20201116120627.17891-1-l.stach@pengutronix.de>

- version bump
- use ptx/onoff configuration helper

Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
---
 ...se-EGL-CFLAGS-reported-by-pkg-config.patch | 47 -------------------
 patches/waffle-1.5.2/series                   |  1 -
 rules/waffle.make                             | 18 ++++---
 3 files changed, 12 insertions(+), 54 deletions(-)
 delete mode 100644 patches/waffle-1.5.2/0001-egl-use-EGL-CFLAGS-reported-by-pkg-config.patch
 delete mode 100644 patches/waffle-1.5.2/series

diff --git a/patches/waffle-1.5.2/0001-egl-use-EGL-CFLAGS-reported-by-pkg-config.patch b/patches/waffle-1.5.2/0001-egl-use-EGL-CFLAGS-reported-by-pkg-config.patch
deleted file mode 100644
index 30759ce4e427..000000000000
--- a/patches/waffle-1.5.2/0001-egl-use-EGL-CFLAGS-reported-by-pkg-config.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-From 359902f8f043e7a7d782d1df3d5d74c3b2a3bd04 Mon Sep 17 00:00:00 2001
-From: Philipp Zabel <p.zabel@pengutronix.de>
-Date: Thu, 8 Jun 2017 13:52:02 +0200
-Subject: [PATCH] egl: use EGL CFLAGS reported by pkg-config
-
-Some platforms need -DMESA_EGL_NO_X11_HEADERS set, as indicated by the
-Cflags: field in egl.pc. pkg-config provides this information, pass it
-to the compiler.
-
-Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
----
- src/waffle/CMakeLists.txt | 5 +++++
- 1 file changed, 5 insertions(+)
-
-diff --git a/src/waffle/CMakeLists.txt b/src/waffle/CMakeLists.txt
-index d76e029..954774c 100644
---- a/src/waffle/CMakeLists.txt
-+++ b/src/waffle/CMakeLists.txt
-@@ -94,6 +94,9 @@ if(waffle_on_mac)
- endif()
- 
- if(waffle_has_egl)
-+    list(APPEND waffle_cflags
-+        ${egl_CFLAGS}
-+        )
-     list(APPEND waffle_sources
-         egl/wegl_config.c
-         egl/wegl_context.c
-@@ -227,6 +230,7 @@ target_link_libraries(${waffle_libname} ${waffle_libdeps})
- 
- set_target_properties(${waffle_libname}
-     PROPERTIES
-+    COMPILE_FLAGS ${waffle_cflags}
-     SOVERSION ${waffle_soversion}
-     VERSION ${waffle_soversion}.${waffle_minor_version}.${waffle_patch_version}
-     )
-@@ -266,6 +270,7 @@ target_link_libraries(waffle_static ${waffle_libdeps})
- 
- set_target_properties(waffle_static
-     PROPERTIES
-+    COMPILE_FLAGS ${waffle_cflags}
-     OUTPUT_NAME "waffle-static-${waffle_major_version}"
-     )
- 
--- 
-2.11.0
-
diff --git a/patches/waffle-1.5.2/series b/patches/waffle-1.5.2/series
deleted file mode 100644
index 6b680e422f5a..000000000000
--- a/patches/waffle-1.5.2/series
+++ /dev/null
@@ -1 +0,0 @@
-0001-egl-use-EGL-CFLAGS-reported-by-pkg-config.patch
diff --git a/rules/waffle.make b/rules/waffle.make
index f2c72420793f..7a384476ecc7 100644
--- a/rules/waffle.make
+++ b/rules/waffle.make
@@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_WAFFLE) += waffle
 #
 # Paths and names
 #
-WAFFLE_VERSION	:= 1.5.2
-WAFFLE_MD5	:= c669c91bf2f7e13a5d781c3dbb30fd8c
+WAFFLE_VERSION	:= 1.6.1
+WAFFLE_MD5	:= c91529e579483f44fb330052872b9c73
 WAFFLE		:= waffle-$(WAFFLE_VERSION)
 WAFFLE_SUFFIX	:= tar.xz
 WAFFLE_URL	:= http://www.waffle-gl.org/files/release/$(WAFFLE)/$(WAFFLE).$(WAFFLE_SUFFIX)
@@ -32,10 +32,16 @@ WAFFLE_LICENSE_FILES := \
 WAFFLE_CONF_TOOL	:= cmake
 WAFFLE_CONF_OPT	:= \
 	$(CROSS_CMAKE_USR) \
-	-Dwaffle_has_glx=$(call ptx/ifdef,PTXCONF_WAFFLE_GLX,1,0) \
-	-Dwaffle_has_wayland=$(call ptx/ifdef,PTXCONF_WAFFLE_WAYLAND,1,0) \
-	-Dwaffle_has_x11_egl=$(call ptx/ifdef,PTXCONF_WAFFLE_X11_EGL,1,0) \
-	-Dwaffle_has_gbm=$(call ptx/ifdef,PTXCONF_WAFFLE_GBM,1,0)
+	-Dwaffle_build_examples=OFF \
+	-Dwaffle_build_htmldocs=OFF \
+	-Dwaffle_build_manpages=OFF \
+	-Dwaffle_build_tests=OFF \
+	-Dwaffle_has_gbm=$(call ptx/onoff,PTXCONF_WAFFLE_GBM) \
+	-Dwaffle_has_glx=$(call ptx/onoff,PTXCONF_WAFFLE_GLX) \
+	-Dwaffle_has_nacl=OFF \
+	-Dwaffle_has_surfaceless_egl=OFF \
+	-Dwaffle_has_wayland=$(call ptx/onoff,PTXCONF_WAFFLE_WAYLAND) \
+	-Dwaffle_has_x11_egl=$(call ptx/onoff,PTXCONF_WAFFLE_X11_EGL) \
 
 
 # ----------------------------------------------------------------------------
-- 
2.20.1


_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de

  reply	other threads:[~2020-11-16 12:06 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-16 12:06 [ptxdist] [PATCH 1/4] xcb-proto: version bump 1.13 -> 1.14.1 Lucas Stach
2020-11-16 12:06 ` Lucas Stach [this message]
2020-11-27  8:39   ` [ptxdist] [APPLIED] waffle: version bump 1.5.2 -> 1.6.1 Michael Olbrich
2020-11-16 12:06 ` [ptxdist] [PATCH 3/4] piglit: drop freeglut dependency Lucas Stach
2020-11-27  8:39   ` [ptxdist] [APPLIED] " Michael Olbrich
2020-11-16 12:06 ` [ptxdist] [PATCH 4/4] piglit: switch to ninja build Lucas Stach
2020-11-27  8:39   ` [ptxdist] [APPLIED] " Michael Olbrich
2020-11-27  8:39 ` [ptxdist] [APPLIED] xcb-proto: version bump 1.13 -> 1.14.1 Michael Olbrich

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20201116120627.17891-2-l.stach@pengutronix.de \
    --to=l.stach@pengutronix.de \
    --cc=ptxdist@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox