Added check whether sendfile is in glibc (debian patch #490638).

(The code in trunk already has this fix.)
This commit is contained in:
Mark de Wever 2008-07-13 09:55:43 +00:00
parent 2fc693d1a3
commit c1297f99aa
2 changed files with 2 additions and 1 deletions

View file

@ -9,6 +9,7 @@ Version 1.4.3+svn:
* Fixed timer end warning not to play in opponents turn (bug: #11517)
* fix bug #11630 (preventing redo and rename during opponent's turn)
* Added recursion preventarion to [kill] fire_event=yes [/kill]
* Added check whether sendfile is in glibc (debian patch #490638)
Version 1.4.3:
* campaigns:

View file

@ -17,7 +17,7 @@
// Check if sendfile function is implemented by glibc
// It is linux only extension
#ifdef __GNUC_PREREQ
#if defined(__linux__) && defined(__GNUC_PREREQ)
#if __GNUC_PREREQ(2,1)
#define USE_SENDFILE
#endif