diff --git a/config.h.in b/config.h.in index 279dd6e6f..27d577f0c 100644 --- a/config.h.in +++ b/config.h.in @@ -19,7 +19,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #if !defined(WINNT) -#ident "$Id: config.h.in,v 1.4 2002/02/16 03:18:53 steve Exp $" +#ident "$Id: config.h.in,v 1.5 2002/08/11 23:39:33 steve Exp $" #endif #if defined(__cplusplus) @@ -44,10 +44,11 @@ # undef HAVE_LIBREADLINE # undef HAVE_SYS_WAIT_H -# undef ENABLE_VVM - /* * $Log: config.h.in,v $ + * Revision 1.5 2002/08/11 23:39:33 steve + * Remove VVM option. + * * Revision 1.4 2002/02/16 03:18:53 steve * Make vvm optional, normally off. * diff --git a/targets.cc b/targets.cc index 483b9630d..016a73374 100644 --- a/targets.cc +++ b/targets.cc @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #if !defined(WINNT) && !defined(macintosh) -#ident "$Id: targets.cc,v 1.9 2002/02/16 03:18:54 steve Exp $" +#ident "$Id: targets.cc,v 1.10 2002/08/11 23:39:33 steve Exp $" #endif # include "config.h" @@ -27,21 +27,18 @@ extern const struct target tgt_dll; extern const struct target tgt_xnf; -#ifdef ENABLE_VVM -extern const struct target tgt_vvm; -#endif const struct target *target_table[] = { &tgt_dll, -#ifdef ENABLE_VVM - &tgt_vvm, -#endif &tgt_xnf, 0 }; /* * $Log: targets.cc,v $ + * Revision 1.10 2002/08/11 23:39:33 steve + * Remove VVM option. + * * Revision 1.9 2002/02/16 03:18:54 steve * Make vvm optional, normally off. *