argh
authordarco <darco@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Wed, 9 Nov 2005 08:33:36 +0000 (08:33 +0000)
committerdarco <darco@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Wed, 9 Nov 2005 08:33:36 +0000 (08:33 +0000)
git-svn-id: http://svn.voria.com/code@46 1f10aa63-cdf2-0310-b900-c93c546f37ac

synfig-studio/trunk/config/configure.ac
synfig-studio/trunk/src/gtkmm/ipc.cpp
synfig-studio/trunk/src/synfigapp/cvs.cpp

index 1193af3..3747217 100755 (executable)
@@ -102,7 +102,7 @@ if test $with_libfmod = "yes" ; then {
 # -- H E A D E R S --------------------------------------------
 
 AC_CHECK_HEADERS([unistd.h signal.h fcntl.h])
-AC_CHECK_HEADERS([sys/types.h sys/wait.h sys/stat.h sys/time.h sys/resource.h])
+AC_CHECK_HEADERS([sys/types.h sys/wait.h sys/stat.h sys/time.h sys/resource.h sys/errno.h])
 
 # -- T Y P E S & S T R U C T S --------------------------------
 
index 3de0d6a..d6e14aa 100644 (file)
 #include <sys/stat.h>
 #endif
 
+#ifdef HAVE_SYS_ERRNO_H
+#include <sys/errno.h>
+#endif
+
 #include <synfig/main.h>
 #include "app.h"
 
@@ -179,7 +183,7 @@ IPC::IPC()
 
                if(fd<0)
                {
-                       synfig::error("IPC(): Failed to open fifo \"%s\". (errno=%d)",fifo_path().c_str(),errno);
+                       synfig::error("IPC(): Failed to open fifo \"%s\". (errno=%d)",fifo_path().c_str(),::errno);
                }
                else
                {
index 0ebb525..a864c50 100644 (file)
@@ -238,7 +238,10 @@ CVSInfo::get_current_timestamp()const
                synfig::error("Unable to get file stats");
                return false;
        }
-       return st.st_mtime+timezone+(daylight-1)*3600;
+       time_t ret((daylight-1)*3600);
+       //ret+=timezone;
+       ret+=st.st_mtime;
+       return ret;
 }
 
 synfig::String