diff dmd/inifile.c @ 571:cbd6c8073a32

Changed all '#if linux || __APPLE__' to '#if POSIX' so we can support other platforms too, thanx for the suggestion anders.
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Tue, 02 Sep 2008 23:10:12 +0200
parents f79bbd1d0b27
children aa953cc960b6
line wrap: on
line diff
--- a/dmd/inifile.c	Tue Sep 02 19:14:37 2008 +0200
+++ b/dmd/inifile.c	Tue Sep 02 23:10:12 2008 +0200
@@ -79,7 +79,7 @@
 		filename = FileName::replaceName(argv0, inifile);
 		if (!FileName::exists(filename))
 		{
-#if linux || __APPLE__
+#if POSIX
 
 #if 0
 #if __GLIBC__	    // This fix by Thomas Kuehne