diff --git a/x11/qt6/qtbase/Makefile b/x11/qt6/qtbase/Makefile index f36802fe69d..03af164b74f 100644 --- a/x11/qt6/qtbase/Makefile +++ b/x11/qt6/qtbase/Makefile @@ -10,7 +10,7 @@ PKGSPEC-main = qt6-qtbase-${QT6_PKGSPEC} PKGNAME-mysql = qt6-mysql-${VERSION} PKGNAME-global = qt6-global-${VERSION} PKGNAME-psql = qt6-postgresql-${VERSION} -REVISION-main = 2 +REVISION-main = 3 REVISION-global = 1 REVISION-mysql = 1 REVISION-psql = 1 diff --git a/x11/qt6/qtbase/patches/patch-src_3rdparty_forkfd_forkfd_c b/x11/qt6/qtbase/patches/patch-src_3rdparty_forkfd_forkfd_c deleted file mode 100644 index e9b203b8989..00000000000 --- a/x11/qt6/qtbase/patches/patch-src_3rdparty_forkfd_forkfd_c +++ /dev/null @@ -1,16 +0,0 @@ -Index: src/3rdparty/forkfd/forkfd.c ---- src/3rdparty/forkfd/forkfd.c.orig -+++ src/3rdparty/forkfd/forkfd.c -@@ -245,9 +245,9 @@ __attribute__((unused)) - #endif - static int convertForkfdWaitFlagsToWaitFlags(int ffdoptions) - { -- int woptions = WEXITED; -- if (ffdoptions & FFDW_NOWAIT) -- woptions |= WNOWAIT; -+ int woptions = WNOHANG; -+ //if (ffdoptions & FFDW_NOWAIT) -+ // woptions |= WNOWAIT; - if (ffdoptions & FFDW_NOHANG) - woptions |= WNOHANG; - return woptions;