Cedric BAIL
26c4aa0fc5
evil: improve install.
...
Patch from Vincent Torri.
SVN revision: 62492
12 years ago
Carsten Haitzler
29864666c9
that's it - remove autom4te.cache dirs again... - keep having to many
...
problems about it storing invalid config when the same build trees are
shared between multiple architectures and machines. :( better we
build right than build fast.
SVN revision: 61974
12 years ago
Vincent Torri
abcd670439
Evil: prepare the 1.0 release. Put (all, evil as well as 'standard' ones) the headers in $includedir/evil-vmaj
...
SVN revision: 61640
12 years ago
Vincent Torri
dc12586bdd
revert last commit of mkstemp (remove _O_TEMPORARY flag in open())
...
SVN revision: 61417
12 years ago
Vincent Torri
0b847b7dc5
Evil : don't define open anymore (useless, now)
...
SVN revision: 60466
12 years ago
Vincent Torri
38bb85fda3
formatting
...
SVN revision: 60465
12 years ago
Boris Faure
e6119fa4d9
remove .cvsignore files
...
SVN revision: 60246
12 years ago
Vincent Torri
43955a6d53
Evil:
...
* src/lib/dlfcn/dlfcn.c:
change '/' to '\' in paths
* src/lib/evil_inet.c:
* src/lib/evil_inet.h:
* src/lib/Evil.h:
* src/lib/Makefile.am:
* AUTHORS:
add inet_pton() function. Implementation from curl library.
See AUTHORS.
SVN revision: 59530
13 years ago
Vincent Torri
33eacca871
Evil: evil_stdlib.c
...
fix mkstemp() which didn't remove the file when the last
file descriptor was closed
SVN revision: 58274
13 years ago
Vincent Torri
bdad4772dc
rename libtool version names to fit libtool doc
...
SVN revision: 58125
13 years ago
Vincent Torri
e2ccfee75f
use lstrcmpi() to be case insensitive
...
SVN revision: 57914
13 years ago
Vincent Torri
faaadaec77
Evil: some headers could define WIN32_LEAN_AND_MEAN. Prevent multiple
...
define of that macro
SVN revision: 57505
13 years ago
Vincent Torri
c8a27bcc42
* configure.ac:
...
force libtool >= 2.4
SVN revision: 57354
13 years ago
Vincent Torri
04ccb0a4b4
* src/lib/evil_stdio.c:
...
make vasprintf() compile on Windows CE
* src/lib/evil_time.c:
* src/lib/evil_time.h:
add stub tzset() for Windows CE
SVN revision: 57273
13 years ago
Vincent Torri
56940cdb32
* src/lib/evil_stdio.c:
...
* src/lib/evil_stdio.h:
Add asprintf() function.
Add documentation for vasprintf().
Use _vcprintf() instead of vsnprintf() to get the length
of the string, as recommended by MSDN.
SVN revision: 56705
13 years ago
Vincent Torri
e4f300b28f
put visual studio files outside the libraries directory
...
SVN revision: 56685
13 years ago
Vincent Torri
b16da2d20f
* src/lib/evil_stdio.c:
...
* src/lib/evil_stdio.h:
better perror() declaration / definition
SVN revision: 55954
13 years ago
Vincent Torri
2a3012715d
add line
...
SVN revision: 55953
13 years ago
Vincent Torri
7fa0268487
add guards in config.h to avoid multiple inclusions
...
SVN revision: 55936
13 years ago
Vincent Torri
4bc3bb0962
* src/lib/evil_unistd.c:
...
* src/lib/evil_unistd.h:
declare and define getpid() for Windows CE.
SVN revision: 55854
13 years ago
Vincent Torri
84512c288a
dirent.h should be installed once only
...
SVN revision: 55851
13 years ago
Vincent Torri
d7ed7006ac
* src/lib/dlfcn/dlfcn.h:
...
define (temporary) PATH_MAX on Windows CE.
cegcc has a bug with limits.h.
* src/lib/evil_stdio.c:
* src/lib/evil_stdio.h:
undefine temporary the definition of perror() on Windows CE
SVN revision: 55845
13 years ago
Vincent Torri
88292a5266
update MAINTAINERCLEANFILES
...
SVN revision: 55844
13 years ago
Vincent Torri
741aaf1016
fix segmentation fault in basename() and dirname()
...
SVN revision: 55632
13 years ago
Vincent Torri
4e50c40cb0
use _tzset instead of tzset with vc++
...
SVN revision: 55631
13 years ago
Vincent Torri
98c6a73879
use the same m4 variables than the other EFL
...
SVN revision: 55596
13 years ago
Vincent Torri
0fe21742f6
add dirname() function
...
SVN revision: 55530
13 years ago
Vincent Torri
562d84c432
add usleep() for vc++
...
SVN revision: 55525
13 years ago
Vincent Torri
4fb7d6e26b
fix warning
...
SVN revision: 55472
13 years ago
Vincent Torri
2f44146d60
update vcproj files
...
SVN revision: 55469
13 years ago
Vincent Torri
66b9ed8926
* src/lib/Evil.h:
...
* src/lib/evil_string.h:
Fix doxygen documentation
SVN revision: 54220
13 years ago
Vincent Torri
d99d3cccd3
errno is managed by Windows
...
SVN revision: 54219
13 years ago
Vincent Torri
a2a90c6131
* src/lib/Evil.h:
...
define offsetof for Windows CE
SVN revision: 53982
13 years ago
Vincent Torri
38f3d012d6
[evil] use our own dirent structure and implementation instead of
...
mingw one.
SVN revision: 53773
13 years ago
Vincent Torri
4603fb6ecc
remove useless file (copied when autogen.sh is run)
...
SVN revision: 53377
13 years ago
Vincent Torri
70622ee748
* src/lib/Makefile.am:
...
* src/lib/Evil.h:
* src/lib/evil_time.c:
* src/lib/evil_time.h:
add locatime_r() for calendar in Elementary.
SVN revision: 52263
13 years ago
Vincent Torri
4bd1f6ad99
remove -pedantic, too much noise
...
SVN revision: 51565
13 years ago
Lucas De Marchi
5a8a8c9014
Convert (hopefully) all comparisons to NULL
...
Apply badzero.cocci, badnull.coci and badnull2.cocci
This should convert all cases where there's a comparison to NULL to simpler
forms. This patch applies the following transformations:
code before patch ||code after patch
===============================================================
return a == NULL; return !a;
return a != NULL; return !!a;
func(a == NULL); func(!a);
func(a != NULL); func(!!a);
b = a == NULL; b = !a;
b = a != NULL; b = !!a;
b = a == NULL ? c : d; b = !a ? c : d;
b = a != NULL ? c : d; b = a ? c : d;
other cases:
a == NULL !a
a != NULL a
SVN revision: 51487
13 years ago
Lucas De Marchi
0a4617ae38
FORMATTING
...
* Remove vim modelines:
find . -name '*.[chx]' -exec sed -i '/\/\*$/ {N;N;/ \* vim:ts/d}' \{\} \;
find . -name '*.[chx]' -exec sed -i '/\/[\*\/] *vim:/d' \{\} \;
* Remove leading blank lines:
find . -name '*.[cxh]' -exec sed -i '/./,$!d'
If you use vim, use this in your .vimrc:
set ts=8 sw=3 sts=8 expandtab cino=>5n-3f0^-2{2(0W1st0
SVN revision: 50816
13 years ago
Vincent Torri
59384ec82a
* doc/Doxyfile:
...
define _MSC_VER so that code guarded by it can
be processed by doxygen
* src/lib/evil_stdio.c:
* src/lib/evil_stdio.h:
vasprintf() is also not in mingw crt
* src/lib/evil_unistd.c:
* src/lib/evil_unistd.h:
getpid is declared and defined in mingw crt
SVN revision: 49287
14 years ago
Vincent Torri
c1f0bf9bbd
* src/lib/evil_stdio.c:
...
* src/lib/evil_stdio.h:
add vasprintf() function
SVN revision: 48001
14 years ago
Vincent Torri
5120168d52
* src/lib/Evil.h:
...
mkdir() does not accept 2 arguments.
Define hypot to remove huge amount of warnings in
Evas withvc++
SVN revision: 47739
14 years ago
Vincent Torri
d989abb2aa
* configure.ac:
...
move version management at the beginning
* src/bin/evil_suite.c:
* src/bin/evil_test_dlfcn.c:
* src/bin/evil_test_environment.c:
* src/bin/evil_test_gettimeofday.c:
* src/bin/evil_test_link.c:
* src/bin/evil_test_mkstemp.c:
* src/bin/evil_test_pipe.c:
* src/bin/evil_test_realpath.c:
* src/lib/Evil.h:
* src/lib/Makefile.am:
* src/lib/evil_errno.c:
* src/lib/evil_main.c:
* src/lib/evil_main.h:
* src/lib/evil_unistd.c:
* src/lib/evil_unistd.h:
* src/lib/evil_util.c:
fix warnings
SVN revision: 47669
14 years ago
Vincent Torri
361446fafe
* src/lib/evil_string.c:
...
* src/lib/evil_string.h:
add strcasecmp wrapper for vc++
SVN revision: 47485
14 years ago
Vincent Torri
9793cb0681
tzset is also defined with vc++...
...
SVN revision: 47152
14 years ago
Vincent Torri
9c6bbb6f58
update vcproj files wrt evil_time.c removal
...
SVN revision: 47151
14 years ago
Vincent Torri
a64d92ba6f
* src/lib/Makefile.am:
...
* src/lib/evil_time.c (deleted):
remove evil_time.c as tzset is defined with mingw
and as _tzset is defined with vc++
* src/lib/Evil.h:
* src/lib/dlfcn/dlfcn.c:
* src/lib/dlfcn/dlfcn.h:
remove __CEGCC__ occurences
SVN revision: 47150
14 years ago
Vincent Torri
e3badfbb2e
* win32/vs8/libdlfcn.vcproj:
...
* win32/vs9/libdlfcn.vcproj:
set supported Windows minimal version
SVN revision: 47138
14 years ago
Vincent Torri
3ef3435fed
* src/lib/Evil.h:
...
actually, ssize_t is defined with all mingw versions
but not with vc++. So move it in vc++ part of Evil.h
SVN revision: 47137
14 years ago
Vincent Torri
05b5fbca70
* configure.ac:
...
add comment
* win32/vs8/libevil.vcproj:
clean up Visual Studio output (less useless warnings)
add missing library
SVN revision: 47128
14 years ago