Changeset 88d2208


Ignore:
Timestamp:
2008-08-24T16:45:40Z (16 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
934dddf3
Parents:
3b32017
Message:

Now really fixing #429 by including unistd.h (which defines F_OK).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • storage_xml.c

    r3b32017 r88d2208  
    3131#include <glib/gstdio.h>
    3232
    33 #if !GLIB_CHECK_VERSION(2,8,0)
     33#if GLIB_CHECK_VERSION(2,8,0)
     34#include <glib/gstdio.h>
     35#else
    3436/* GLib < 2.8.0 doesn't have g_access, so just use the system access(). */
     37#include <unistd.h>
    3538#define g_access access
    3639#endif
Note: See TracChangeset for help on using the changeset viewer.