You are viewing a plain text version of this content. The canonical link for it is here.
Posted to kato-commits@incubator.apache.org by sp...@apache.org on 2009/09/11 10:08:57 UTC

svn commit: r813755 - /incubator/kato/trunk/org.apache.kato/kato.native/kato.native.cjvmti/src/main/native/include/cjvmti.h

Author: spoole
Date: Fri Sep 11 10:08:57 2009
New Revision: 813755

URL: http://svn.apache.org/viewvc?rev=813755&view=rev
Log:
added check to abort cjvmti compile if on an unknown platform

Modified:
    incubator/kato/trunk/org.apache.kato/kato.native/kato.native.cjvmti/src/main/native/include/cjvmti.h

Modified: incubator/kato/trunk/org.apache.kato/kato.native/kato.native.cjvmti/src/main/native/include/cjvmti.h
URL: http://svn.apache.org/viewvc/incubator/kato/trunk/org.apache.kato/kato.native/kato.native.cjvmti/src/main/native/include/cjvmti.h?rev=813755&r1=813754&r2=813755&view=diff
==============================================================================
--- incubator/kato/trunk/org.apache.kato/kato.native/kato.native.cjvmti/src/main/native/include/cjvmti.h (original)
+++ incubator/kato/trunk/org.apache.kato/kato.native/kato.native.cjvmti/src/main/native/include/cjvmti.h Fri Sep 11 10:08:57 2009
@@ -53,7 +53,9 @@
 #define FSEEK(x,y,z) _fseeki64((x),(y),(z))
 #define FTELL(x) _ftelli64((x))
 #define FGETPOS(x,y) (*(y))=_ftelli64((x))
-#define FSETPOS(x,y) _fseeki64((x), (*(y)), SEEK_SET)
+#define FSETPOS(x,y) _fseeki64((x), (*(y)), SEEK_SET)
+#else
+#error "unable to compile on this platform"
 #endif
 
 #include "queue.h"