Go to file
Cedric BAIL 6c7edfd38e efl/evas: roll in more cow, using a new macro per Eina_Cow.
SVN revision: 83325
2013-01-25 12:15:38 +00:00
data fix distcheck. 2013-01-16 18:28:43 +00:00
dbus-services merge ethumb. 2013-01-12 01:15:45 +00:00
doc efl/doc/images.mk: Lets not have all kind of images from .svn in here. 2013-01-24 14:41:33 +00:00
licenses add missing licenses references, fix copyright, add link result notice. 2013-01-16 21:48:14 +00:00
m4 Add wayland-client as a dependency for the evas wayland shm engine. 2013-01-24 09:13:48 +00:00
old merge ethumb. 2013-01-12 01:15:45 +00:00
pc whenever doing external modules and similar, use .pc module_arch. 2013-01-18 13:51:34 +00:00
po updating portuguese and esperanto translations 2013-01-07 11:39:56 +00:00
spec The OBS stuff is an utter catastrophe, so I'm trying to make this 2012-12-26 08:55:47 +00:00
src efl/evas: roll in more cow, using a new macro per Eina_Cow. 2013-01-25 12:15:38 +00:00
.gitignore efl: update gitignore 2013-01-16 21:17:52 +00:00
AUTHORS add missing authors. 2013-01-16 21:47:37 +00:00
COPYING add missing licenses references, fix copyright, add link result notice. 2013-01-16 21:48:14 +00:00
ChangeLog edje entry: move ecore_imf_context_cursor_position_set from mouse down event to mouse up event 2013-01-25 05:15:46 +00:00
Makefile.am try to fix --with-crypto=gnutls due libcrypt-config usage. 2013-01-17 16:47:36 +00:00
NEWS edje entry: move ecore_imf_context_cursor_position_set from mouse down event to mouse up event 2013-01-25 05:15:46 +00:00
README efl: add back valgrind check, with enable option and warning. 2013-01-07 22:24:53 +00:00
autogen.sh lets remove cache files on autogen. 2012-11-12 14:44:30 +00:00
configure.ac efl: Support AM_PROG_AR in build sys when available 2013-01-24 16:18:07 +00:00

README

EFL 1.7.99

******************************************************************************

 FOR ANY ISSUES PLEASE EMAIL:
 enlightenment-devel@lists.sourceforge.net

******************************************************************************

EFL is a collection of libraries for handling many common tasks a
developer man have such as data structures, communication, rendering,
widgets and more.

VALGRIND DEPENDENCY:
------------------------------------------------------------------------------
EFL uses the concept of memory pools (mempool) and this will confuse
valgrind memcheck tool. By using memory pool, the memory is still
owned by EFL, then valgrind won't alert on memory leaks or use of
unused memory. EFL will use memcheck.h from valgrind to declare its
memory pools to valgrind, producing better debugging results.

However valgrind is only available to limited platforms, making us
hard to declare it a mandatory requirement. Based on
--with-profile={dev,debug} valgrind will be used if available or will
be issued a warning. You can force valgrind with --enable-valgrind, or
disable it and the warning with --disable-valgrind.

EFL does NOT link to valgrind libraries. Then there is NO runtime
dependency on valgrind.


BULLET PHYSICS DEPENDENCY:
------------------------------------------------------------------------------
EFL comes with EPhysics(a physics wrapper library) enabled by default, to
build it the user must have BulletPhysics engine installed.

More informations about BulletPhysics can be obtained in the upstream project
web site at: http://bulletphysics.org.

We have received many reports about BulletPhysics installation and distros
packages in bad shape, some without even a package. If your distro doesn't
ship a BulletPhysics package or you want to build it from source code follow the
instructions below:

* Required Packages:
You should have cmake installed. Bullet comes with autotools and cmake build
systems, do not use the autotools alternative, it's unstable, bogus and hasn't
been maintained for quite some time.

* Download the tarball from:
http://code.google.com/p/bullet/downloads/list

NOTE: the current supported version is 2.80 or greater.

* Compiling and Installing:
Uncompress it to(say) ~/bullet and:

$ cd ~/bullet/build
$ cmake .. -DBUILD_CPU_DEMOS=OFF -DBUILD_DEMOS=OFF -DBUILD_SHARED_LIBS=ON
$ make
$ sudo make install

* Ubuntu Users:
Alternatively ubuntu users have the option to install the BulletPhysics from
our official EFL PPA:

https://launchpad.net/~efl/+archive/trunk

------------------------------------------------------------------------------
COMPILING AND INSTALLING:

  ./configure
  make
(do this as root unless you are installing in your users directories):
  make install

EFL build is based on "profiles". It will default to "dev" for
unreleased software and "release" for official tarballs. One can
change it with --with-profile=NAME, where NAME is one of:

  * dev: extra checks useful to test software.

  * debug: superset of dev, with debug features and assert().

  * release: optimizations and less checks so it runs faster.


CRYPTOGRAPHIC SYSTEM: EFL officially uses "openssl" library to do
signature, cipher and related. Alternatively one can use "gnutls"
(some distros are strict about licenses and want gnutls instead of
openssl) or disable it. One can change it with --with-crypto=NAME,
where NAME is one of: "openssl", "gnutls" and "none".