efl/legacy/ecore
Lars Munch bb74cf5f48 ecore-evas-fb: This patch fixes a bug in ecore_evas_fb.c introduced by the big eina
list conversion. The bug resulted in no input devices where added when
using framebuffer. This patch also cleans up some related NULL
checks that are not needed any more.

Signed-off-by: Lars Munch <lars@segv.dk>


SVN revision: 40224
2009-04-19 15:47:32 +00:00
..
debian Updated debian stuff(grew Standards-Version, updated python-ecore rules file) 2009-04-14 17:21:19 +00:00
doc Missing modification of the variable DOXYGEN to 2009-02-01 20:26:56 +00:00
m4 1. oops - types on tslib fixes 2009-03-15 03:13:17 +00:00
src ecore-evas-fb: This patch fixes a bug in ecore_evas_fb.c introduced by the big eina 2009-04-19 15:47:32 +00:00
.cvsignore split ecore.pc into multiple pc files, one for each sub module. 2007-03-21 15:30:23 +00:00
AUTHORS add patch to add a pipe handler for glueing threads to the core main loop via 2008-11-03 05:42:27 +00:00
COPYING damn you salizar! damn you! 2003-09-23 08:09:32 +00:00
COPYING-PLAIN autopackage ecore... 2005-03-10 15:19:43 +00:00
ChangeLog Wed Jun 8 16:56:30 2005 Michael Jennings (mej) 2005-06-08 20:51:06 +00:00
INSTALL autopackage ecore... 2005-03-10 15:19:43 +00:00
Makefile.am * move ecore-input.pc.in from MAINTAINERCLEANFILES to EXTRA_DIST 2009-03-19 07:39:49 +00:00
NEWS damn you salizar! damn you! 2003-09-23 08:09:32 +00:00
README.in deps lists/ debugging too... 2008-04-03 18:47:14 +00:00
autogen.sh add error checking to all autogen scripts 2005-08-03 01:00:21 +00:00
configure.ac lutin... release soname patch. verbose svn soname used right now 2009-04-17 10:01:45 +00:00
ecore-con.pc.in * update configure.ac so that default options are chosen according to the host 2009-03-13 16:35:16 +00:00
ecore-config.pc.in * update configure.ac so that default options are chosen according to the host 2009-03-13 16:35:16 +00:00
ecore-dbus.pc.in split ecore.pc into multiple pc files, one for each sub module. 2007-03-21 15:30:23 +00:00
ecore-directfb.pc.in * update configure.ac so that default options are chosen according to the host 2009-03-13 16:35:16 +00:00
ecore-evas.pc.in * update configure.ac so that default options are chosen according to the host 2009-03-13 16:35:16 +00:00
ecore-fb.pc.in * update configure.ac so that default options are chosen according to the host 2009-03-13 16:35:16 +00:00
ecore-file.pc.in * update configure.ac so that default options are chosen according to the host 2009-03-13 16:35:16 +00:00
ecore-imf-evas.pc.in * update configure.ac so that default options are chosen according to the host 2009-03-13 16:35:16 +00:00
ecore-imf.pc.in * update configure.ac so that default options are chosen according to the host 2009-03-13 16:35:16 +00:00
ecore-input.pc.in fix requirement 2009-03-19 17:41:38 +00:00
ecore-ipc.pc.in * update configure.ac so that default options are chosen according to the host 2009-03-13 16:35:16 +00:00
ecore-job.pc.in * update configure.ac so that default options are chosen according to the host 2009-03-13 16:35:16 +00:00
ecore-quartz.pc.in * update configure.ac so that default options are chosen according to the host 2009-03-13 16:35:16 +00:00
ecore-sdl.pc.in * update configure.ac so that default options are chosen according to the host 2009-03-13 16:35:16 +00:00
ecore-txt.pc.in split ecore.pc into multiple pc files, one for each sub module. 2007-03-21 15:30:23 +00:00
ecore-win32.pc.in * update configure.ac so that default options are chosen according to the host 2009-03-13 16:35:16 +00:00
ecore-wince.pc.in * update configure.ac so that default options are chosen according to the host 2009-03-13 16:35:16 +00:00
ecore-x.pc.in fixed dependencies for ecore-x 2007-05-06 15:49:00 +00:00
ecore.pc.in * update configure.ac so that default options are chosen according to the host 2009-03-13 16:35:16 +00:00
ecore.spec.in Wed Jul 23 00:10:13 2008 Michael Jennings (mej) 2008-07-23 07:11:56 +00:00
ecore.supp more suppressions 2004-10-19 16:40:25 +00:00

README.in

Ecore @VERSION@

Requirements:
-------------

Must:
  libc libm

Recommended:
  libX11 libXext libXcursor libXprint libXinerama libXrandr libXss libXrender
  libXcomposite libXfixes libXdamage libXdpms libXtest OpenSSL CURL

Optional:
  XCB SDL DirectFB

Ecore is the event/X abstraction layer that makes doing selections,
Xdnd, general X stuff, event loops, timeouts and idle handlers fast,
optimized, and convenient. It's a separate library so anyone can make
use of the work put into Ecore to make this job easy for applications.

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

  ./configure
  make
(as root unless youa re installing in your users directories):
  make install
      
------------------------------------------------------------------------------
BUILDING PACKAGES:

RPM: To build rpm packages:
  
  sudo rpm -ta @PACKAGE@-@VERSION@.tar.gz

You will find rpm packages in your system /usr/src/redhat/* dirs (note you may
not need to use sudo or root if you have your own ~/.rpmrc. see rpm documents
for more details)

DEB: To build deb packages:

  tar zvf @PACKAGE@-@VERSION@.tar.gz
  cd @PACKAGE@-@VERSION@
  dpkg-buildpackage -us -uc -rfakeroot
  cd ..
  rm -rf @PACKAGE@-@VERSION@

You will find all the debian source, binary etc. packages put in the directory
where you first untarred the source tarball.