* Deleted code/unix/vm_x86.c - wtf was that about anyway?

* Removed HAVE_VM_NATIVE
* Removed DLL_ONLY
* Replace HAVE_VM_COMPILED with NO_VM_COMPILED -- this means the JIT compiler
  should be enabled on the OS X and VC builds now
* Remove the remainder of the freetype building stuff
This commit is contained in:
Tim Angus 2005-10-29 00:23:10 +00:00
parent 090f4d7266
commit ffdc69f138
5 changed files with 13 additions and 97 deletions

View file

@ -1106,7 +1106,6 @@ VM_CallCompiled
This function is called directly by the generated code
==============
*/
#ifndef DLL_ONLY // bk010215 - for DLL_ONLY dedicated servers/builds w/o VM
int VM_CallCompiled( vm_t *vm, int *args ) {
int stack[1024];
int programCounter;
@ -1206,6 +1205,3 @@ int VM_CallCompiled( vm_t *vm, int *args ) {
return *(int *)opStack;
}
#endif // !DLL_ONLY