Changed internal/config.h -> roscfg.h in a number of files.

Use a proper prefix for executing programs in tools/Makefile.

svn path=/trunk/; revision=2205
This commit is contained in:
David Welch 2001-08-30 20:38:20 +00:00
parent 888fe38dca
commit dffb0e9a7a
27 changed files with 42 additions and 41 deletions

View file

@ -1,5 +1,5 @@
#include <ntos/kdbgsyms.h>
#include "../ntoskrnl/include/internal/config.h"
#include <roscfg.h>
typedef NTSTATUS STDCALL (*PEPFUNC)(PPEB);

View file

@ -1,4 +1,4 @@
/* $Id: import.c,v 1.1 2001/08/29 05:06:31 rex Exp $
/* $Id: import.c,v 1.2 2001/08/30 20:38:18 dwelch Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -10,7 +10,7 @@
#include <ctype.h>
#include <ddk/ntddk.h>
#include <internal/config.h>
#include <roscfg.h>
#include <internal/ob.h>
#include <limits.h>
#include <string.h>

View file

@ -7,7 +7,7 @@
*/
#include <ddk/ntddk.h>
#include <internal/config.h>
#include <roscfg.h>
#include <internal/ob.h>
#include <limits.h>
#include <string.h>

View file

@ -7,7 +7,7 @@
*/
#include <ddk/ntddk.h>
#include <internal/config.h>
#include <roscfg.h>
#include <internal/ob.h>
#include <limits.h>
#include <string.h>

View file

@ -1,4 +1,4 @@
/* $Id: registry.c,v 1.63 2001/08/29 05:06:31 rex Exp $
/* $Id: registry.c,v 1.64 2001/08/30 20:38:18 dwelch Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -12,7 +12,7 @@
*/
#include <ddk/ntddk.h>
#include <internal/config.h>
#include <roscfg.h>
#include <internal/ob.h>
#include <limits.h>
#include <string.h>

View file

@ -7,7 +7,7 @@
*/
#include <ddk/ntddk.h>
#include <internal/config.h>
#include <roscfg.h>
#include <internal/ob.h>
#include <limits.h>
#include <string.h>

View file

@ -7,7 +7,7 @@
*/
#include <ddk/ntddk.h>
#include <internal/config.h>
#include <roscfg.h>
#include <internal/ob.h>
#include <limits.h>
#include <string.h>

View file

@ -26,7 +26,7 @@
/* INCLUDES *****************************************************************/
#include <ddk/ntddk.h>
#include <internal/config.h>
#include <roscfg.h>
#include <internal/ldr.h>
#define NDEBUG

View file

@ -12,7 +12,7 @@
/* INCLUDES *****************************************************************/
#include <ddk/ntddk.h>
#include <internal/config.h>
#include <roscfg.h>
#include <internal/ps.h>
#include <internal/io.h>
#include <internal/mm.h>

View file

@ -1,4 +1,4 @@
/* $Id: enum.c,v 1.1 2001/05/01 23:08:18 chorns Exp $
/* $Id: enum.c,v 1.2 2001/08/30 20:38:18 dwelch Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -12,7 +12,7 @@
/* INCLUDES *****************************************************************/
#include <ddk/ntddk.h>
#include <internal/config.h>
#include <roscfg.h>
#define NDEBUG
#include <internal/debug.h>

View file

@ -1,4 +1,4 @@
/* $Id: halinit.c,v 1.22 2001/05/01 23:08:18 chorns Exp $
/* $Id: halinit.c,v 1.23 2001/08/30 20:38:18 dwelch Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -12,7 +12,7 @@
/* INCLUDES *****************************************************************/
#include <ddk/ntddk.h>
#include <internal/config.h>
#include <roscfg.h>
#include <internal/hal/hal.h>
#include <internal/ntoskrnl.h>

View file

@ -1,4 +1,4 @@
/* $Id: mp.c,v 1.15 2001/04/26 14:26:22 phreak Exp $
/* $Id: mp.c,v 1.16 2001/08/30 20:38:19 dwelch Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -15,7 +15,7 @@
/* INCLUDES *****************************************************************/
#include <ddk/ntddk.h>
#include <internal/config.h>
#include <roscfg.h>
#define NDEBUG
#include <internal/debug.h>

View file

@ -19,7 +19,7 @@
#define __INTERNAL_DEBUG
#include <internal/ntoskrnl.h>
#include <internal/config.h>
#include <roscfg.h>
#include <internal/dbg.h>
#define UNIMPLEMENTED do {DbgPrint("%s at %s:%d is unimplemented, have a nice day\n",__FUNCTION__,__FILE__,__LINE__); for(;;); } while(0);

View file

@ -3,7 +3,7 @@
#define __MODULE_H
#include <ddk/ntddk.h>
#include <internal/config.h>
#include <roscfg.h>
#include <pe.h>
#include <ntos/kdbgsyms.h>

View file

@ -1,4 +1,4 @@
/* $Id: device.c,v 1.31 2001/08/26 17:27:00 ekohl Exp $
/* $Id: device.c,v 1.32 2001/08/30 20:38:19 dwelch Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -19,7 +19,7 @@
#include <internal/id.h>
#include <internal/ps.h>
#include <internal/pool.h>
#include <internal/config.h>
#include <roscfg.h>
#define NDEBUG
#include <internal/debug.h>

View file

@ -1,4 +1,4 @@
/* $Id: dlog.c,v 1.3 2001/05/01 23:08:19 chorns Exp $
/* $Id: dlog.c,v 1.4 2001/08/30 20:38:19 dwelch Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -13,7 +13,7 @@
#include <ddk/ntddk.h>
#include <internal/ntoskrnl.h>
#include <internal/config.h>
#include <roscfg.h>
#include <internal/kd.h>
#include <ntos/minmax.h>

View file

@ -1,4 +1,4 @@
/* $Id: kdebug.c,v 1.27 2001/06/21 04:12:19 rex Exp $
/* $Id: kdebug.c,v 1.28 2001/08/30 20:38:19 dwelch Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -13,7 +13,7 @@
#include <internal/ntoskrnl.h>
#include <internal/kd.h>
#include <internal/mm.h>
#include <internal/config.h>
#include <roscfg.h>
#include "../dbg/kdb.h"
/* serial debug connection */

View file

@ -28,7 +28,7 @@
/* INCLUDES *****************************************************************/
#include <ddk/ntddk.h>
#include <internal/config.h>
#include <roscfg.h>
#include <internal/ntoskrnl.h>
#include <internal/ke.h>
#include <internal/i386/segment.h>

View file

@ -1,4 +1,4 @@
/* $Id: irq.c,v 1.14 2001/04/26 14:26:22 phreak Exp $
/* $Id: irq.c,v 1.15 2001/08/30 20:38:19 dwelch Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -19,7 +19,7 @@
/* INCLUDES ****************************************************************/
#include <ddk/ntddk.h>
#include <internal/config.h>
#include <roscfg.h>
#include <internal/ke.h>
#include <internal/ps.h>
#include <internal/i386/segment.h>

View file

@ -1,4 +1,4 @@
#include <internal/config.h>
#include <roscfg.h>
#include <internal/ntoskrnl.h>
#include <internal/i386/segment.h>

View file

@ -1,4 +1,4 @@
/* $Id: spinlock.c,v 1.10 2001/04/26 14:26:22 phreak Exp $
/* $Id: spinlock.c,v 1.11 2001/08/30 20:38:19 dwelch Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -17,7 +17,7 @@
/* INCLUDES ****************************************************************/
#include <ddk/ntddk.h>
#include <internal/config.h>
#include <roscfg.h>
#include <internal/debug.h>

View file

@ -1,4 +1,4 @@
/* $Id: loader.c,v 1.87 2001/08/26 17:27:44 ekohl Exp $
/* $Id: loader.c,v 1.88 2001/08/30 20:38:20 dwelch Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -25,7 +25,7 @@
#include <limits.h>
#include <ddk/ntddk.h>
#include <internal/config.h>
#include <roscfg.h>
#include <internal/module.h>
#include <internal/ntoskrnl.h>
#include <internal/io.h>

View file

@ -1,4 +1,4 @@
/* $Id: mminit.c,v 1.24 2001/08/13 16:39:01 ekohl Exp $
/* $Id: mminit.c,v 1.25 2001/08/30 20:38:20 dwelch Exp $
*
* COPYRIGHT: See COPYING in the top directory
* PROJECT: ReactOS kernel
@ -12,7 +12,7 @@
/* INCLUDES *****************************************************************/
#include <ddk/ntddk.h>
#include <internal/config.h>
#include <roscfg.h>
#include <internal/i386/segment.h>
#include <internal/mm.h>
#include <internal/ntoskrnl.h>

View file

@ -1,4 +1,4 @@
/* $Id: object.c,v 1.39 2001/06/16 14:10:55 ekohl Exp $
/* $Id: object.c,v 1.40 2001/08/30 20:38:20 dwelch Exp $
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
@ -12,7 +12,7 @@
/* INCLUDES *****************************************************************/
#include <ddk/ntddk.h>
#include <internal/config.h>
#include <roscfg.h>
#include <internal/ob.h>
#include <internal/ps.h>
#include <internal/id.h>

View file

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/* $Id: power.c,v 1.3 2001/05/01 23:08:20 chorns Exp $
/* $Id: power.c,v 1.4 2001/08/30 20:38:20 dwelch Exp $
* PROJECT: ReactOS kernel
* FILE: ntoskrnl/po/power.c
* PURPOSE: Power Manager
@ -26,7 +26,7 @@
* 16/04/2001 CSH Stubs added
*/
#include <ddk/ntddk.h>
#include <internal/config.h>
#include <roscfg.h>
#include <internal/io.h>
#include <internal/po.h>

View file

@ -20,7 +20,8 @@ endif
#
ifeq ($(HOST),mingw32-linux)
NASM_FORMAT = win32
PREFIX = i586-mingw32-
#PREFIX = i586-mingw32-
PREFIX = /usr/mingw32-2.95.3-fc/bin/mingw32-pc-
EXE_POSTFIX :=
EXE_PREFIX := ./
DLLTOOL = $(PREFIX)dlltool --as=$(PREFIX)as

View file

@ -14,7 +14,7 @@ all: $(TOOLS)
buildno$(EXE_POSTFIX): buildno.c ../include/reactos/version.h
$(HOST_CC) $(CFLAGS) -o buildno$(EXE_POSTFIX) buildno.c
buildno$(EXE_POSTFIX)
$(EXE_PREFIX)buildno$(EXE_POSTFIX)
depends$(EXE_POSTFIX): depends.c
$(HOST_CC) $(CFLAGS) -o depends$(EXE_POSTFIX) depends.c