* configure.ac: Default to AC_ENABLE_SHARED and AC_DISABLE_STATIC.
[cacao.git] / src / vm / jit / i386 / patcher.c
index cca3162a4cbe4fc3a126240ebd55622bfb5eee71..386501ae77c9479548ea5937cc3493a7d1f9d888 100644 (file)
@@ -28,7 +28,7 @@
 
    Changes:
 
-   $Id: patcher.c 4357 2006-01-22 23:33:38Z twisti $
+   $Id: patcher.c 4530 2006-02-21 09:11:53Z twisti $
 
 */
 
@@ -1075,7 +1075,7 @@ bool patcher_athrow_areturn(u1 *sp)
 
 *******************************************************************************/
 
-#if !defined(ENABLE_STATICVM)
+#if !defined(WITH_STATIC_CLASSPATH)
 bool patcher_resolve_native(u1 *sp)
 {
        u1                *ra;
@@ -1124,7 +1124,7 @@ bool patcher_resolve_native(u1 *sp)
 
        return true;
 }
-#endif /* !defined(ENABLE_STATICVM) */
+#endif /* !defined(WITH_STATIC_CLASSPATH) */
 
 
 /*