Support for boost filesystem version 3
authorLuke Dashjr <luke-jr+git@utopios.org>
Fri, 19 Aug 2011 16:45:27 +0000 (12:45 -0400)
committerLuke Dashjr <luke-jr+git@utopios.org>
Sat, 3 Sep 2011 15:24:45 +0000 (11:24 -0400)
src/ui.cpp

index 198a272..6b7ecdb 100644 (file)
@@ -1805,7 +1805,11 @@ void SetStartOnSystemStartup(bool fAutoStart)
 {
     if (!fAutoStart)
     {
+#if defined(BOOST_FILESYSTEM_VERSION) && BOOST_FILESYSTEM_VERSION >= 3
+        unlink(GetAutostartFilePath().string().c_str());
+#else
         unlink(GetAutostartFilePath().native_file_string().c_str());
+#endif
     }
     else
     {