- to convince gcc -MM to ignore system headers, I had to change some

#include statements that used ""'s so that they used <>'s instead.
  (gcc -MM generates the dependency list in the Makefile.)
This commit is contained in:
Bryce Denney 2002-08-30 07:03:50 +00:00
parent 4c20c5cd81
commit 77f87fbbca
4 changed files with 19 additions and 19 deletions

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////
// $Id: wx.cc,v 1.8 2002-08-29 14:59:37 bdenney Exp $
// $Id: wx.cc,v 1.9 2002-08-30 07:03:49 bdenney Exp $
/////////////////////////////////////////////////////////////////
//
// wxWindows VGA display for Bochs. wx.cc implements a custom
@ -31,15 +31,15 @@
// includes
//////////////////////////////////////////////////////////////
// For compilers that support precompilation, includes "wx/wx.h".
#include "wx/wxprec.h"
// For compilers that support precompilation, includes <wx/wx.h>.
#include <wx/wxprec.h>
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#ifndef WX_PRECOMP
#include "wx/wx.h"
#include <wx/wx.h>
#endif
#include "wx/image.h"
#include <wx/image.h>
#include "bochs.h"
#include "gui/icon_bochs.h"
@ -1002,8 +1002,8 @@ each bx_param_* type, and I expect to need that again.
// For compilers that support precompilation, includes "wx/wx.h".
#include "wx/wxprec.h"
// For compilers that support precompilation, includes <wx/wx.h>.
#include <wx/wxprec.h>
#include <wx/scrolwin.h>
#ifdef __BORLANDC__
@ -1011,7 +1011,7 @@ each bx_param_* type, and I expect to need that again.
#endif
#ifndef WX_PRECOMP
#include "wx/wx.h"
#include <wx/wx.h>
#endif

View File

@ -1,20 +1,20 @@
/////////////////////////////////////////////////////////////////
// $Id: wxdialog.cc,v 1.11 2002-08-30 06:06:36 bdenney Exp $
// $Id: wxdialog.cc,v 1.12 2002-08-30 07:03:49 bdenney Exp $
/////////////////////////////////////////////////////////////////
//
// misc/wxdialog.cc
// This is a testbed for wxWindows dialog box experiments.
//
// For compilers that support precompilation, includes "wx/wx.h".
#include "wx/wxprec.h"
// For compilers that support precompilation, includes <wx/wx.h>.
#include <wx/wxprec.h>
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#ifndef WX_PRECOMP
#include "wx/wx.h"
#include <wx/wx.h>
#endif
#include "wx/spinctrl.h"
#include <wx/spinctrl.h>
#include "config.h" // definitions based on configure script
#include "osdep.h" // workarounds for missing stuff

View File

@ -1,10 +1,10 @@
////////////////////////////////////////////////////////////////////
// $Id: wxdialog.h,v 1.11 2002-08-30 06:49:19 bdenney Exp $
// $Id: wxdialog.h,v 1.12 2002-08-30 07:03:50 bdenney Exp $
////////////////////////////////////////////////////////////////////
//
// wxWindows dialogs for Bochs
#include "wx/spinctrl.h"
#include <wx/spinctrl.h>
////////////////////////////////////////////////////////////////////
// text messages used in several places

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////
// $Id: wxmain.cc,v 1.16 2002-08-30 06:46:38 bdenney Exp $
// $Id: wxmain.cc,v 1.17 2002-08-30 07:03:50 bdenney Exp $
/////////////////////////////////////////////////////////////////
//
// wxmain.cc implements the wxWindows frame, toolbar, menus, and dialogs.
@ -38,14 +38,14 @@
//////////////////////////////////////////////////////////////////////
// For compilers that support precompilation, includes "wx/wx.h".
#include "wx/wxprec.h"
#include <wx/wxprec.h>
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#ifndef WX_PRECOMP
#include "wx/wx.h"
#include <wx/wx.h>
#endif
#include "wx/image.h"
#include <wx/image.h>
#include "config.h" // definitions based on configure script
#include "osdep.h" // workarounds for missing stuff