Commit Graph

49 Commits

Author SHA1 Message Date
Carsten Haitzler 4d0e3c37aa readme - adapt for removal of xine/vlc support 2020-03-08 12:38:58 +00:00
Carsten Haitzler 2101e3c3d3 webp - promote to default on
i just noticed a pattern... we recommend in our sample confs ... to
not disable webp. why keep doing that and why not just make it a dep
on by default you need to explicitly disable? make lives easier and
less complex. it was a good exercise to write these as it points this
out... :)
2020-01-28 08:34:34 +00:00
Carsten Haitzler 8ec6e28b7c evas - loaders - jp2k - re-enable in the build after it was lost
it seems to have been forgotten. bring it back to building again

@fix
2020-01-25 20:16:47 +00:00
Carsten Haitzler ea95c49479 README - update the removal of bullet and libxp and mention harfbuzz 2020-01-25 13:53:58 +00:00
Stefan Schmidt b8dc80c144 emotion & evas: remove gstreamer 0.10 support
We have Gstreamer 1.x support for a long time already. We used to keep
this around as fallback. By now Linux distributions start to actually no
longer ship the Gstreamer 0.10.x packages and upstream has not seen a
release in in 5 years. Time to remove it on our side as well.

Signed-off-by: Stefan Schmidt <s.schmidt@samsung.com>
Reviewed-by: Cedric BAIL <cedric.bail@free.fr>
Differential Revision: https://phab.enlightenment.org/D10779
2019-12-04 12:21:25 -08:00
Stefan Schmidt f3d9b8ee70 esacpe: remove library from tree
This has not been used for a while and is not even buildable after our
switch to meson. It was a niche to start with given that it needed the
PS3 OS to run on. I asked for any remaining users at EDD and on the list
but heard nothing. Time to remove.

Signed-off-by: Stefan Schmidt <s.schmidt@samsung.com>
Reviewed-by: Cedric BAIL <cedric.bail@free.fr>
Differential Revision: https://phab.enlightenment.org/D10778
2019-12-04 12:21:24 -08:00
Carsten Haitzler 39ba1b79d4 spaces-- 2019-10-24 13:13:29 +01:00
Bruno da Silva Belo c2a9cc4de4 Updating README for clang requirements.
OpenMP needs to be installed in system to sucessfully compile with
clang, needs libomp, while gcc use his version, libgomp.

Reviewed-by: Stefan Schmidt <stefan@datenfreihafen.org>
Differential Revision: https://phab.enlightenment.org/D10213
2019-09-30 10:46:34 +02:00
Carsten Haitzler 88888a00a6 osx - require full opengl for gl support on osx
the default still is gl-es as documented. you need to explicitly turn
on full opengl to get gl support on osx because thats all the engine
does. document this exception for osx (having gl magically being full
on osx and gle-es elsewhere is another option but then we need
different os specific defaults for this which is kind of bad in other
ways).
2019-09-23 21:22:22 +01:00
Carsten Haitzler e65ebc61fa build - update README and meson options to match echother in defaults
update some defaults like move to gl-es by default, tslib off by
default as this really makes efl simpler to confgure ... by default
with less things to change to get stuff working.
2019-09-23 19:03:54 +01:00
Xavi Artigas d1e5c59d92 README Whitespace 2019-07-19 16:31:14 +02:00
Ali Alzyod e57d819b2a README: update COMPILING AND INSTALLING section
Reviewers: segfaultxavi

Reviewed By: segfaultxavi

Subscribers: raster, vtorri, segfaultxavi, cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D9302
2019-07-19 16:29:54 +02:00
junsu choi f89fe318a7 README, doc : Fix typo
Reviewers: Hermet, kimcinoo, segfaultxavi

Reviewed By: segfaultxavi

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D8710
2019-04-25 11:02:49 +02:00
Cedric BAIL d179a5c2a9 efl: remove PS3 backend.
This backend has received no patch and maintenance from anyone who could
actually test it over the last few years. After talking with KaKaRoTo it
is best to remove it. If anyone want to take over its maintenance, you
are welcome to revert this patch.
2017-08-25 10:48:42 -07:00
Carsten Haitzler 9ba57061ba readme - fix docs url. 2017-06-16 18:41:08 +09:00
Carsten Haitzler 1b523a985a efl readme - add libunwind to highly recommended for err bt 2017-04-28 19:01:26 +09:00
Carsten Haitzler adc75aef45 efl readme - remove liblz4 from recommendations
it's probably not a good idea as it adds some dirty pages for a tiny
lib that we already supply in our source. if your distro demands you
do this - fine. but i wouldnt recommend this highly.
2017-04-28 18:59:44 +09:00
Carsten Haitzler 0bf3da41e4 efl readme - vlc really shouldn't be recommended list if gst is def
recommending vlc and having gts default is probably not good. choose
one or the other ... but not both. so remove from the recommended list
just ebcause it's causing excess deps by packagers apparently
2017-04-28 18:56:17 +09:00
Carsten Haitzler 25a24e3348 readme - systemd is default on now... --disable if you dont want it 2017-02-19 21:11:57 +09:00
Stefan Schmidt cb5ff3c60b README: catch up with configure flags for Wayland support
We need elput for input handling and drm here as well. Already fixed in the
release notes but better catchup here as well.
2016-08-10 11:09:36 +02:00
Stefan Schmidt 0a243671c7 README: clarify poppler dependency
We actually need poppler-cpp which is packaged in various ways in different
distros so better give both names here.
2016-08-05 15:26:02 +02:00
Stefan Schmidt 5db441a6df README: update build dependencies and build instructions
Remove part where we recommend the now merged loaders and players and update
build dependencies as well as recommended options.
2016-08-05 14:35:02 +02:00
Carsten Haitzler aeeda1f77d efl - threads and signals - make efl work on "insane" os's with signals
so. on linux signals are delivered to the main process thread/loop.
thats' where signal handlers are set up and always run. this is sane.
it's predicatble. but of course this is not the same in bsd land.
there "just send the signal to any old thread and call the signal
handler there" seems to tbe the order of the day. this explains why
wer are losing sigchld signals in edje_cc - it's heavily threaded and
bsd is just randombly picking a thread to call it on.

this fixes that. in theory. i hope. i can't test, but putting it in to
share

@fix
2016-07-04 23:47:25 +09:00
Carsten Haitzler 81cc984c04 readme - typo-- 2016-06-14 15:39:05 +09:00
Carsten Haitzler d8eae1a1aa efl readme - add platfomr support info there and openbsd not supported
add some info on platform support in readme and note than openbsd is
not supported.
2016-06-14 10:46:44 +09:00
Carsten Haitzler 806d4ada03 try readme commit to check git prune issue 2016-04-21 18:08:45 +09:00
Mike Frysinger 833d87d4ef minor spelling fixes 2016-04-02 16:19:52 -04:00
Stefan Schmidt 2f6f06d7a1 README: Remove outdated version number
We have the version in configure.ac and NEWS where it gets updated for
releases. This occurrence gets forgotten to often on the other hand. Its
not needed here so we remove it.
2014-12-11 14:07:15 +01:00
Stefan Schmidt cda135f112 README: Update version number to latest
Spotted by Lionel Orry. Thanks!
2014-11-27 08:56:57 +01:00
Stefan Schmidt d37b312141 README: Update statement about C++ usage.
Its no longer interfacing to bullet only but also our C++ bindings that
need the C++ compiler.
2014-08-14 11:36:11 +02:00
Carsten Haitzler 2b38608b3a update README to have right version for vest release! 2014-07-03 16:13:40 +09:00
Carsten Haitzler 069940d026 turn multisense on by default since ecore_audio is already 2014-04-10 18:04:09 +09:00
Cedric BAIL afaf0129ae autotools: let's be precise on how we do support ABI stability.
NOTE: We do use enum in structure. There size can be changed by changing
the parameter of the compiler, this obviously will break ABI. As long as
you use the same compiler (and normally any future version of that compiler)
with the same set of CFLAGS/CXXFLAGS, you will have ABI stability.
2014-04-01 22:00:15 +09:00
Carsten Haitzler 56f8f5bfa9 update REAMDE version 2014-02-12 16:01:31 +09:00
Carsten Haitzler df1de58adb update readme versions of deps 2014-02-12 10:27:04 +09:00
Carsten Haitzler ec261e9baa readme - make requirements list a bullet list 2013-12-01 14:53:53 +09:00
Carsten Haitzler 9beb948ae8 add some README dependency notes 2013-12-01 14:51:23 +09:00
Carsten Haitzler a985cee36d readme update - mention systemd / udev for eeze deps 2013-11-30 00:16:17 +09:00
Chris Michael d73d597330 Fix some typos/grammar issues in new README
Signed-off-by: Chris Michael <cp.michael@samsung.com>
2013-11-29 10:35:46 +00:00
Carsten Haitzler 1b593c58df readme - update readme for efl 1.8
lots of extra documentation and information now in the README
2013-11-29 19:09:17 +09:00
Carsten Haitzler ff71f7452a fix readme to be 1.8.0 2013-11-07 17:28:29 +09:00
Daniel Juyung Seo fe003af31a README: call ldconfig after installing bullet. 2013-03-30 02:04:41 +09:00
Gustavo Sverzut Barbieri 5286e5bfe0 efl: add back valgrind check, with enable option and warning.
SVN revision: 82368
2013-01-07 22:24:53 +00:00
Jihoon Kim 2f80183ede fix typo in efl/README
SVN revision: 82249
2013-01-05 01:53:40 +00:00
Leandro Dorileo 36ca515709 EPhysics: add BulletPhysics instructions
Add BulletPhysics build and install instructions and re-enable
ephysics.


SVN revision: 82221
2013-01-04 18:22:29 +00:00
Gustavo Sverzut Barbieri 3e99bccc77 efl: add --with-profile=debug, make dev faster.
seems the debug of threads and stringshare could cause major
slowdowns, then add another profile to produce debug. Changes:

 * dev: unlimited log.
 * debug: same as dev with debug malloc, threads and stringshare.



SVN revision: 78120
2012-10-17 13:50:11 +00:00
Gustavo Sverzut Barbieri 5c112dc6ca efl: document --with-profile and --with-crypto
SVN revision: 77899
2012-10-11 19:17:26 +00:00
Carsten Haitzler 05ddd5fe2d cleaning up the base of efl tree moving files to subdirs
SVN revision: 77106
2012-09-27 03:02:12 +00:00
Vincent Torri 59a9dfd118 merge: add infra for evil
SVN revision: 76463
2012-09-11 16:04:21 +00:00