Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-10-14 | Initial rpm spec support. | Rui Seabra | |
SVN revision: 77966 | |||
2012-10-09 | eobj .gitignore: Added .gitignore. | Daniel Juyung Seo | |
SVN revision: 77646 | |||
2012-10-09 | Eo: Added -DNDEBUG by default. | Tom Hacohen | |
SVN revision: 77605 | |||
2012-09-26 | merge: add eo | Vincent Torri | |
SVN revision: 77072 | |||
2012-09-13 | Eo: Added another important EINA_LIKELY. | Tom Hacohen | |
SVN revision: 76611 | |||
2012-09-13 | Eo: Made debugging Eo a bit easier. | Tom Hacohen | |
SVN revision: 76610 | |||
2012-09-12 | Eo: examples rule | Vincent Torri | |
SVN revision: 76538 | |||
2012-09-12 | Eo: Added eo_destructed_is. | Tom Hacohen | |
SVN revision: 76518 | |||
2012-09-12 | Eo: make benchmark | Vincent Torri | |
SVN revision: 76504 | |||
2012-09-11 | merge: add infra for evil | Vincent Torri | |
SVN revision: 76463 | |||
2012-09-09 | Eo: add libcheck test | Vincent Torri | |
SVN revision: 76354 | |||
2012-09-09 | Eo: let's see if Tom likes this check rule | Vincent Torri | |
SVN revision: 76353 | |||
2012-09-09 | Eo: use the 'check' rule to build the tests | Vincent Torri | |
SVN revision: 76352 | |||
2012-09-09 | Eo: missing file | Vincent Torri | |
SVN revision: 76351 | |||
2012-09-09 | Eo: more dos2unix | Vincent Torri | |
SVN revision: 76350 | |||
2012-09-09 | EO: dos2unix the toplevel Makefile.am | Vincent Torri | |
SVN revision: 76348 | |||
2012-09-07 | Eo: add autotools tests. I have plenty of errors with the unit tests on Windows | Vincent Torri | |
SVN revision: 76323 | |||
2012-09-07 | eo: copy/paste error | Vincent Torri | |
SVN revision: 76319 | |||
2012-09-07 | Fix compilation on Windows | Vincent Torri | |
SVN revision: 76318 | |||
2012-09-05 | Eobj: don't install benchmark and examples, request from Tom | Vincent Torri | |
SVN revision: 76209 | |||
2012-09-04 | Eo: autogen.sh - dos->unix. | Tom Hacohen | |
SVN revision: 76125 | |||
2012-09-04 | Eo: Make autogen.sh executable. | Tom Hacohen | |
SVN revision: 76123 | |||
2012-09-04 | Eo: Added COPYING. | Tom Hacohen | |
SVN revision: 76111 | |||
2012-09-04 | Eo: autotools + minor fixes so that it compiles on Windows (mainly ↵ | Vincent Torri | |
reordering the header files inclusion SVN revision: 76109 | |||
2012-09-03 | Eo: Made benchmarking output a bit nicer. | Tom Hacohen | |
SVN revision: 75961 | |||
2012-09-03 | Eo: optimised eo_op_class_get a bit. Can still make it better. | Tom Hacohen | |
SVN revision: 75960 | |||
2012-08-26 | Eo: Added simple benchmark infra (not really testing anything atm). | Tom Hacohen | |
SVN revision: 75712 | |||
2012-08-23 | Eo: Moved a magic check from an internal function to the external function. | Tom Hacohen | |
SVN revision: 75626 | |||
2012-08-23 | Eo: Remove volatile from the GCC issue workaround. | Tom Hacohen | |
It seems that just setting to a temp var is enough to make GCC not optimise it out. It seems GCC's problem is with the void cast. Also, fixed another place that had the same issue. SVN revision: 75624 | |||
2012-08-23 | Eo: Fixed issue with eo_add ops. | Tom Hacohen | |
This "fix" is actually just making sure gcc doesn't optimise things wrong. If anyone has an idea how to do it better, please let me know. klass is usually a function and needs to be evaluated before the call to eo_add_internal. SVN revision: 75623 | |||
2012-08-23 | Eo: Added a non-default constructor test. | Tom Hacohen | |
SVN revision: 75616 | |||
2012-08-23 | Eo: Added some negative refcount tests (with manual_free). | Tom Hacohen | |
SVN revision: 75615 | |||
2012-08-23 | Eo: Added eo_add_custom and support for passing ops to eo_add. | Tom Hacohen | |
We can no do things like eo_add(CLASS, parent, age_set(7), score_set(100)), or pass different constructors to object creation by using eo_add_custom and passing the constructor. SVN revision: 75614 | |||
2012-08-22 | Eo: Use our own magic check macro instead of Eina's | Tom Hacohen | |
SVN revision: 75549 | |||
2012-08-21 | Eo: Add an error if we get to a negative refcount. | Tom Hacohen | |
SVN revision: 75505 | |||
2012-08-21 | Eo: WRN -> ERR. We do (in EFL) logging wrong. | Tom Hacohen | |
Warnings should be on by default and not abused. Now I had to change the WRN -> ERR because JackDanielZ is a crybaby, and the issue described above. SVN revision: 75504 | |||
2012-08-20 | Eo: Removed static class support. | Tom Hacohen | |
SVN revision: 75452 | |||
2012-07-31 | Eo: Also fix the case when the chain is not allocated. | Tom Hacohen | |
Continuation to previous commit. SVN revision: 74619 | |||
2012-07-31 | Eo: Fixed an issue with mixins and super calls. | Tom Hacohen | |
SVN revision: 74617 | |||
2012-07-26 | Eo: Changed ops prints to be DOMAIN:OP_NAME. Easier to follow. | Tom Hacohen | |
SVN revision: 74442 | |||
2012-07-26 | Eo: Make func override warning an error instead (prev commit). | Tom Hacohen | |
Make JackDanielZ happy... SVN revision: 74437 | |||
2012-07-26 | Eo: Add a warning when trying to override a function that was already set ↵ | Tom Hacohen | |
for a class. SVN revision: 74436 | |||
2012-07-23 | Eo: Fixed bug with calling multiple ops in some cases. | Tom Hacohen | |
SVN revision: 74313 | |||
2012-07-18 | Eo: Fixed super of different functions. | Tom Hacohen | |
I.e calling super a_get from an a_set implementation. This slows things down a bit. SVN revision: 74062 | |||
2012-07-15 | Eo: Minor fixes to copy_all and clean. | Tom Hacohen | |
SVN revision: 73876 | |||
2012-07-15 | Eo: Fixed test case. | Tom Hacohen | |
SVN revision: 73867 | |||
2012-07-12 | Eo: Oops, commit missing files. | Tom Hacohen | |
SVN revision: 73617 | |||
2012-07-12 | Eo: Allow interfaces to have class constructors/destructors. | Tom Hacohen | |
SVN revision: 73606 | |||
2012-07-10 | Eo: Properly handle tests and their deps in the build system. | Tom Hacohen | |
SVN revision: 73533 | |||
2012-07-10 | Eo: Avoid unneeded copies with kls-itr. | Tom Hacohen | |
SVN revision: 73532 |