summaryrefslogtreecommitdiff
path: root/m4
Commit message (Collapse)AuthorAgeFilesLines
* dirfd check fix.Carsten Haitzler2013-01-051-3/+0
| | | | SVN revision: 82250
* Eina: pthread detection fixesVincent Torri2012-11-291-7/+2
| | | | | | | | | | * Do not use -pthread anymore, but instead pass _REENTRANT to the preprocessor and -lpthread to the linker. * On Solaris OS, -mt is passed by default and same flags than linux must be passed. SVN revision: 79852
* Eina: fix CFLAGS value when --enable-assert is usedVincent Torri2012-07-011-5/+5
| | | | SVN revision: 73112
* Eina: remove --enable-coverage option.Vincent Torri2012-07-012-65/+25
| | | | | | | | | | Now, coverage is detected with just --enable-tests. Buildbot maintainers : please remove --enable-coverage option to eina (more EFL will be supported later) SVN revision: 73107
* typoVincent Torri2012-07-011-2/+2
| | | | SVN revision: 73092
* Eina: check if fnmatch() is also in libcVincent Torri2012-06-281-1/+6
| | | | SVN revision: 73018
* damn space !Vincent Torri2012-06-281-1/+1
| | | | SVN revision: 72979
* remove useless m4 filesVincent Torri2012-06-283-237/+0
| | | | SVN revision: 72973
* Eina: add nice m4 macro to check function. Will be usable easily in the ↵Vincent Torri2012-06-281-0/+431
| | | | | | | | | merge, per EFL lib Please, test. config.h is the same (except useless macro HAVE_ICONV_H) and compilation is correct on linux and mingw here SVN revision: 72972
* Eina: move spin lock checks in the generic m4 threads macroVincent Torri2012-05-301-46/+41
| | | | SVN revision: 71562
* Eina: remove threads options from configureVincent Torri2012-05-291-95/+30
| | | | | | | | | | remove --disable-posix-threads and --disable-win32-threads from configure options, and detect automatically the threading support. SVN revision: 71517
* Eina: Fix cases where dlopen is wrongly checked because of autoconf cache valuesVincent Torri2012-04-031-0/+136
| | | | SVN revision: 69909
* update dateVincent Torri2012-04-031-1/+1
| | | | SVN revision: 69890
* better m4 macroVincent Torri2012-03-251-4/+5
| | | | SVN revision: 69613
* Eina: fix shm_open() check (can be in libc or librt) + various autotools ↵Vincent Torri2012-03-251-0/+69
| | | | | | | | | | | cleaning This works in linux and windows, and should fix shm_detection on BSD (including Mac) BSD, Mac and solaris users : please check that it compiles and shm_open is detected SVN revision: 69608
* Eina: put m4 files in their own subdirVincent Torri2012-01-2114-0/+0
| | | | | | | | Warning: you must relaunch autogen.sh for these changes to be taken into account SVN revision: 67420
* Eina: big mistake in efl_attribute.m4. My badVincent Torri2011-10-091-1/+3
| | | | SVN revision: 63934
* use another m4 macro for __atribute__Vincent Torri2011-09-292-47/+54
| | | | SVN revision: 63651
* eina: add autotools rules to building and installing examples.Rafael Antognolli2011-06-091-0/+63
| | | | SVN revision: 60150
* eina: add back threads on/off support.Cedric BAIL2011-05-022-1/+14
| | | | | | | NOTE: only use it if you know what you are doing ! SVN revision: 59123
* * eina: also update ldflags instead of cflags.Cedric BAIL2010-12-141-4/+4
| | | | SVN revision: 55555
* * eina: define PATH_MAX when needed.Cedric BAIL2010-12-031-0/+36
| | | | SVN revision: 55232
* * eina: fix pthread library and flags typos.Cedric BAIL2010-11-201-6/+6
| | | | | | | Patch by Fabien Romano <fabien@openbsd.org>. SVN revision: 54753
* * eina: add assert to ease tracking down efl misuse with threads.Cedric BAIL2010-10-131-1/+11
| | | | SVN revision: 53360
* * eina: remove configure option for rwlock as it is not used anymore.Cedric BAIL2010-08-161-42/+0
| | | | SVN revision: 51220
* split out spinlock detection to separate macro for readability, add rwlock ↵Mike Blumenkrantz2010-08-081-14/+63
| | | | | | | | | detection macro ***no functional changes*** SVN revision: 50910
* when all files combine and the enable flag is set, form VOLTRON, DEFENDER OF ↵Mike Blumenkrantz2010-07-271-0/+93
| | | | | | THE UNIVERSE! SVN revision: 50550
* use Win32 native mutex on Windows. To use it, pass the following optionVincent Torri2010-07-132-130/+189
| | | | | | | | | | | to configure: --enable-win32-threads By default, pthreads are used SVN revision: 50220
* fix pthread support with mingwVincent Torri2010-05-281-6/+6
| | | | SVN revision: 49250
* * link pthread and spinlock code instead of just compilingVincent Torri2010-05-021-16/+33
| | | | | | | | * POSIX pthread spinlock may be unimplemented, so don't exit with an error if they are not available SVN revision: 48537
* Some libc have a pthread that declares spinlock functions,Vincent Torri2010-05-011-1/+1
| | | | | | | | but does not define them. So the check now links the test code. SVN revision: 48524
* amd64 - apparently fbsd is still living back in that past where 64bit was amdCarsten Haitzler2010-04-241-3/+3
| | | | | | | | only... :) SVN revision: 48272
* typoVincent Torri2010-03-071-1/+1
| | | | SVN revision: 46945
* when pthread is found, don't abort if spin lock is not found but not reqestedVincent Torri2010-03-071-1/+1
| | | | | | | Patch by Albin Tonnerre SVN revision: 46940
* abort when pthread is requested but not foundVincent Torri2010-02-281-8/+16
| | | | | | | | patch by Albin Tonnerre SVN revision: 46654
* use C (and not C++) pthread library on WindowsVincent Torri2010-02-241-1/+1
| | | | SVN revision: 46431
* * -fno-strict-aliasing is checked at linked time (to make sureVincent Torri2010-02-131-2/+35
| | | | | | | | | that it is disabled for suncc) * add old evas data types in tests. Tell me if you encounter problems with them SVN revision: 46136
* formattingVincent Torri2010-02-121-1/+2
| | | | SVN revision: 46109
* Only test built mempoolsSebastian Dransfeld2010-02-111-0/+3
| | | | SVN revision: 46096
* update efl_fnmatch m4 macroVincent Torri2010-02-031-0/+9
| | | | SVN revision: 45851
* use efl_fnmatch macroVincent Torri2010-02-031-0/+22
| | | | SVN revision: 45847
* fix mingw flagsVincent Torri2010-01-281-2/+2
| | | | SVN revision: 45668
* * make chained mempool static by defaultVincent Torri2010-01-261-23/+7
| | | | | | | | | | * disable other by default if you experience an problem, please report in that thread SVN revision: 45593
* add mempool namespace in configure helpVincent Torri2010-01-261-2/+2
| | | | SVN revision: 45582
* * more portable shell testsVincent Torri2010-01-242-9/+5
| | | | | | | * better m4 code SVN revision: 45540
* use m4 macro ti check compiler flagVincent Torri2010-01-241-0/+24
| | | | | | | | patch by Lutin (who also wrote the m4 macro, i forgot that in the previous commit) SVN revision: 45518
* * better m4 codingVincent Torri2009-12-256-55/+51
| | | | | | | * improve pthread detection and add spinlock detection SVN revision: 44717
* stupid AC_CHECK_PROGVincent Torri2009-11-191-2/+2
| | | | SVN revision: 43800
* minor fixVincent Torri2009-11-191-2/+4
| | | | SVN revision: 43797
* add pthread support on WindowsVincent Torri2009-11-031-1/+5
| | | | SVN revision: 43435