Changes between Version 28 and Version 29 of EFLWebKit
- Timestamp:
- Jul 26, 2010, 7:52:01 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
EFLWebKit
v28 v29 36 36 * Elementary widget wrapping up ewk_view into a convenient widget, providing default implementation for delegates; 37 37 * Remove strict X11 dependency, allowing DirectFB and FB at least; 38 * Less dependency on GNOME technologies, maybe remove Cairo and !LibSoup .38 * Less dependency on GNOME technologies, maybe remove Cairo and !LibSoup (the last one is already optional). 39 39 40 40 … … 70 70 * eet (required by edje in evas, compile it before evas!) 71 71 * evas 72 * ecore (with ecore-x support)72 * ecore (with optional ecore-x support, and glib integration if you want to use glib/libsoup) 73 73 * edje 74 74 * embryo (required by edje) … … 99 99 }}} 100 100 101 == Building without !LibSoup or Glib == 102 103 * Just do the same as before, but on cmake command you should pass your network backend option: 104 {{{ 105 build$ cmake .. -DPORT=Efl -DNETWORK_BACKEND=curl 106 }}} 107 108 * For building without Glib, you should use: 109 {{{ 110 build$ cmake .. -DPORT=Efl -DNETWORK_BACKEND=curl -DENABLE_GLIB_SUPPORT=OFF 111 }}} 112 113 * Note that if you ask for disabling Glib, but still uses !LibSoup backend, it will force enabling Glib support (!LibSoup depends on Glib). 114 101 115 == Questions, feedback == 102 116