diff options
author | Gleb Popov <arrowd@FreeBSD.org> | 2021-06-04 16:39:30 +0000 |
---|---|---|
committer | Gleb Popov <arrowd@FreeBSD.org> | 2021-06-04 16:43:20 +0000 |
commit | 393b0d030716b82e62737556abd22ab71f6aef93 (patch) | |
tree | 877e42a1225dd7373c0007e4568cb41eb23ab468 | |
parent | 31cdc83b59b974da16c20c1ffc4e993e087aa721 (diff) | |
download | ports-393b0d030716b82e62737556abd22ab71f6aef93.tar.gz ports-393b0d030716b82e62737556abd22ab71f6aef93.zip |
devel/efl: Add a workaround for efreetd crash.
PR: 256408
Tested by: Euan Thoms <euan@potensol.com>
-rw-r--r-- | devel/efl/Makefile | 2 | ||||
-rw-r--r-- | devel/efl/files/patch-src_lib_ecore_ecore__main.c | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/devel/efl/Makefile b/devel/efl/Makefile index 0944c57e29f9..b0261208ec93 100644 --- a/devel/efl/Makefile +++ b/devel/efl/Makefile @@ -2,7 +2,7 @@ PORTNAME= efl DISTVERSION= 1.25.1 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= devel enlightenment MASTER_SITES= http://download.enlightenment.org/rel/libs/${PORTNAME}/ DIST_SUBDIR= enlightenment diff --git a/devel/efl/files/patch-src_lib_ecore_ecore__main.c b/devel/efl/files/patch-src_lib_ecore_ecore__main.c new file mode 100644 index 000000000000..301bef323e48 --- /dev/null +++ b/devel/efl/files/patch-src_lib_ecore_ecore__main.c @@ -0,0 +1,11 @@ +--- src/lib/ecore/ecore_main.c.orig 2020-10-08 08:41:34 UTC ++++ src/lib/ecore/ecore_main.c +@@ -4,6 +4,8 @@ + + #define EINA_SLSTR_INTERNAL + ++#define FD_SETSIZE 8192 ++ + #ifdef _WIN32 + # ifndef USER_TIMER_MINIMUM + # define USER_TIMER_MINIMUM 0x0a |