diff options
author | Michael Lauer <mickey@vanille-media.de> | 2005-08-10 16:39:05 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-08-10 16:39:05 +0000 |
commit | 049c02152682c0bd92b31bab58561c407fdd4265 (patch) | |
tree | b0966d49d09afd8358d895bfc8c0bbc8a4c3309e /packages/efl/e | |
parent | f8c0794f1ab6872cfeebc72217984b4417991fb3 (diff) |
more EFL fixes + add the enlightenment library from the E window manager as dedicated library
Diffstat (limited to 'packages/efl/e')
-rw-r--r-- | packages/efl/e/.mtn2git_empty | 0 | ||||
-rw-r--r-- | packages/efl/e/fix-configure.patch | 48 |
2 files changed, 48 insertions, 0 deletions
diff --git a/packages/efl/e/.mtn2git_empty b/packages/efl/e/.mtn2git_empty new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/packages/efl/e/.mtn2git_empty diff --git a/packages/efl/e/fix-configure.patch b/packages/efl/e/fix-configure.patch new file mode 100644 index 0000000000..9b328de16c --- /dev/null +++ b/packages/efl/e/fix-configure.patch @@ -0,0 +1,48 @@ + +# +# Patch managed by http://www.holgerschurig.de/patcher.html +# + +--- e/configure.in~fix-configure.patch ++++ e/configure.in +@@ -114,9 +114,7 @@ + AC_PATH_XTRA + AC_CHECK_HEADER(X11/X.h, + [ +- x_dir=${x_dir:-/usr/X11R6} +- x_cflags=${x_cflags:--I${x_includes:-$x_dir/include}} +- x_libs="${x_libs:--L${x_libraries:-$x_dir/lib}} -lX11 -lXext" ++ x_libs="-lX11 -lXext"; + ],[ + AC_MSG_ERROR([Cannot find X headers and libraries.]) + ] +--- e/src/bin/Makefile.am~fix-configure.patch ++++ e/src/bin/Makefile.am +@@ -1,6 +1,5 @@ + MAINTAINERCLEANFILES = Makefile.in +-INCLUDES = -I$(includedir) \ +- -I$(top_srcdir) \ ++INCLUDES = -I$(top_srcdir) \ + -I$(top_srcdir)/src/bin \ + -I$(top_srcdir)/src/lib \ + @e_cflags@ \ +--- e/src/lib/Makefile.am~fix-configure.patch ++++ e/src/lib/Makefile.am +@@ -1,6 +1,5 @@ + MAINTAINERCLEANFILES = Makefile.in +-INCLUDES = -I$(includedir) \ +- -I$(top_srcdir)/src/bin \ ++INCLUDES = -I$(top_srcdir)/src/bin \ + @ecore_cflags@ \ + @evas_cflags@ + +--- e/src/preload/Makefile.am~fix-configure.patch ++++ e/src/preload/Makefile.am +@@ -2,7 +2,6 @@ + + INCLUDES = -I. \ + -I$(top_srcdir) \ +- -I$(includedir) \ + -I$(top_srcdir)src/preload \ + @x_cflags@ + pkgdir = $(libdir)/enlightenment/preload |