Remove VVM option.

This commit is contained in:
steve 2002-08-11 23:39:33 +00:00
parent 4d41525a91
commit d24cd015b6
2 changed files with 8 additions and 10 deletions

View File

@ -19,7 +19,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/ */
#if !defined(WINNT) #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 #endif
#if defined(__cplusplus) #if defined(__cplusplus)
@ -44,10 +44,11 @@
# undef HAVE_LIBREADLINE # undef HAVE_LIBREADLINE
# undef HAVE_SYS_WAIT_H # undef HAVE_SYS_WAIT_H
# undef ENABLE_VVM
/* /*
* $Log: config.h.in,v $ * $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 * Revision 1.4 2002/02/16 03:18:53 steve
* Make vvm optional, normally off. * Make vvm optional, normally off.
* *

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/ */
#if !defined(WINNT) && !defined(macintosh) #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 #endif
# include "config.h" # include "config.h"
@ -27,21 +27,18 @@
extern const struct target tgt_dll; extern const struct target tgt_dll;
extern const struct target tgt_xnf; extern const struct target tgt_xnf;
#ifdef ENABLE_VVM
extern const struct target tgt_vvm;
#endif
const struct target *target_table[] = { const struct target *target_table[] = {
&tgt_dll, &tgt_dll,
#ifdef ENABLE_VVM
&tgt_vvm,
#endif
&tgt_xnf, &tgt_xnf,
0 0
}; };
/* /*
* $Log: targets.cc,v $ * $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 * Revision 1.9 2002/02/16 03:18:54 steve
* Make vvm optional, normally off. * Make vvm optional, normally off.
* *