Small fix for MacOSX compat

Issue originally pointed out by Igor Zubkov.
This commit is contained in:
Lennart Poettering 2009-03-27 14:37:58 +01:00
parent db714bfea6
commit 87d63b19a3

View file

@ -2617,7 +2617,7 @@ char *pa_realpath(const char *path) {
return NULL; return NULL;
} }
#ifndef __GLIBC__ #if !defined(__GLIBC__) && !defined(__APPLE__)
#error "It's not clear whether this system supports realpath(..., NULL) like GNU libc does. If it doesn't we need a private version of realpath() here." #error "It's not clear whether this system supports realpath(..., NULL) like GNU libc does. If it doesn't we need a private version of realpath() here."
#endif #endif