On 09/21/2015 04:13 AM, Daniel Juyung Seo wrote:
> I am planning to release 1.15.2 next Thursday afternoon in GMT. (Oct.
> 1) If you have any more backports that need to be pushed into the
> stable release, please merge them to 1.15 branch by Wednesday noon in
> GMT.

Are you interested in fixes required for strict linking (-Wl,-z,defs)?
If so, I need to cherry-pick 99c0c1cb from master and apply the two
patches pasted below.

Thanks,
Ross


--- a/src/lib/ecore_fb/ecore_fb_private.h
+++ b/src/lib/ecore_fb/ecore_fb_private.h
@@ -33,6 +33,20 @@

 #include <Ecore_Fb.h>

+#ifdef EAPI
+# undef EAPI
+#endif
+
+#ifdef __GNUC__
+# if __GNUC__ >= 4
+#  define EAPI __attribute__ ((visibility("default")))
+# else
+#  define EAPI
+# endif
+#else
+# define EAPI
+#endif
+
 /* ecore_fb_li.c */
 struct _Ecore_Fb_Input_Device
 {
@@ -92,4 +106,7 @@
 #define TS_GET_CAL 0x8014660a
 #endif

+#undef EAPI
+#define EAPI
+
 #endif



--- a/configure.ac
+++ b/configure.ac
@@ -1107,6 +1107,10 @@

 EFL_CHECK_LIBS([EMILE], [zlib])

+if test "x${want_liblz4}" = "xyes" ; then
+   EFL_DEPEND_PKG([EMILE], [LIBLZ4], [liblz4])
+fi
+
 EFL_INTERNAL_DEPEND_PKG([EMILE], [eina])

 EFL_EVAL_PKGS([EMILE])

------------------------------------------------------------------------------
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to