diff options
author | Davide Viti <zinosat@tiscali.it> | 2014-11-08 15:02:45 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-11-09 00:07:37 +0100 |
commit | b2f8c60e847f7b7a3c1274f757d3ac17797edf9c (patch) | |
tree | b7566e452f4440078829251b27d502b1e5163c42 /package/mongoose/mongoose-0001-largefile-conditional-define.patch | |
parent | c5278753c204477b465930c13868ff9da20eba75 (diff) | |
download | buildroot-b2f8c60e847f7b7a3c1274f757d3ac17797edf9c.tar.gz buildroot-b2f8c60e847f7b7a3c1274f757d3ac17797edf9c.zip |
mongoose: bump to version 5.5
- examples/server was renamed examples/web_server
- patch was submitted and included upstream so we can drop it
Signed-off-by: Davide Viti <zinosat@tiscali.it>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/mongoose/mongoose-0001-largefile-conditional-define.patch')
-rw-r--r-- | package/mongoose/mongoose-0001-largefile-conditional-define.patch | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/package/mongoose/mongoose-0001-largefile-conditional-define.patch b/package/mongoose/mongoose-0001-largefile-conditional-define.patch deleted file mode 100644 index b1d759afdb..0000000000 --- a/package/mongoose/mongoose-0001-largefile-conditional-define.patch +++ /dev/null @@ -1,22 +0,0 @@ -Avoid the following warning, due to duplicate definition of -"_LARGEFILE_SOURCE" - -mongoose.c:52:0: warning: "_LARGEFILE_SOURCE" redefined [enabled by default] - #define _LARGEFILE_SOURCE // Enable fseeko() and ftello() functions - ^ -<command-line>:0:0: note: this is the location of the previous definition - -Signed-off-by: Davide Viti <zinosat@tiscali.it> - ---- mongoose-5.4/mongoose.c~ 2014-07-28 13:19:00.000000000 +0200 -+++ mongoose-5.4/mongoose.c 2014-08-04 23:10:59.164092500 +0200 -@@ -49,7 +49,9 @@ - #define _XOPEN_SOURCE 600 // For flockfile() on Linux - #define __STDC_FORMAT_MACROS // <inttypes.h> wants this for C++ - #define __STDC_LIMIT_MACROS // C++ wants that for INT64_MAX -+#ifndef _LARGEFILE_SOURCE - #define _LARGEFILE_SOURCE // Enable fseeko() and ftello() functions -+#endif - #define _FILE_OFFSET_BITS 64 // Enable 64-bit file offsets - - #ifdef _MSC_VER |