Handle missing MAP_FAILED. (#308449, Georg Schwarz)

2005-06-20  Matthias Clasen  <mclasen@redhat.com>

	* xdgmimecache.c: Handle missing MAP_FAILED.  (#308449, Georg
	Schwarz)
This commit is contained in:
Matthias Clasen 2005-06-21 03:36:52 +00:00 committed by Matthias Clasen
parent 1dbcd037c8
commit a4768daec1
6 changed files with 28 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2005-06-20 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkiconcache.c: Handle MAP_FAILED. (#308449, Georg
Schwarz)
2005-06-20 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version number.

View File

@ -1,3 +1,8 @@
2005-06-20 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkiconcache.c: Handle MAP_FAILED. (#308449, Georg
Schwarz)
2005-06-20 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version number.

View File

@ -1,3 +1,8 @@
2005-06-20 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkiconcache.c: Handle MAP_FAILED. (#308449, Georg
Schwarz)
2005-06-20 Matthias Clasen <mclasen@redhat.com>
* configure.in: Bump version number.

View File

@ -42,6 +42,10 @@
#define _O_BINARY 0
#endif
#ifndef MAP_FAILED
#define MAP_FAILED ((void *) -1)
#endif
#define MAJOR_VERSION 1
#define MINOR_VERSION 0

View File

@ -1,3 +1,8 @@
2005-06-20 Matthias Clasen <mclasen@redhat.com>
* xdgmimecache.c: Handle missing MAP_FAILED. (#308449, Georg
Schwarz)
2005-06-20 Matthias Clasen <mclasen@redhat.com>
* === Released 2.7.0 ===

View File

@ -65,6 +65,10 @@
#define _O_BINARY 0
#endif
#ifndef MAP_FAILED
#define MAP_FAILED ((void *) -1)
#endif
#define MAJOR_VERSION 1
#define MINOR_VERSION 0