* source/pp/ppcore.c
* "hb_inLine" -> "hb_inline"
* source/hbpcre/_hbconf.h
+ Added #pragma warn -sig (-w-sig-)
* source/common/hbverdsp.c
* source/compiler/hbusage.c
* Minor adjustments to compatible product names.
24 lines
288 B
C
24 lines
288 B
C
/*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifndef HB_CONFIG_H
|
|
#define HB_CONFIG_H
|
|
|
|
#define PCRE_STATIC
|
|
|
|
#if defined( _MSC_VER )
|
|
#pragma warning( push, 0 )
|
|
#endif
|
|
|
|
#if defined( __BORLANDC__ )
|
|
#pragma warn -use
|
|
#pragma warn -csu
|
|
#pragma warn -aus
|
|
#pragma warn -sig
|
|
#endif
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|