Files
harbour-core/harbour/source/hbpcre/_hbconf.h
Viktor Szakats af91810256 2008-05-30 22:06 UTC+0100 Viktor Szakats (harbour.01 syenar hu)
* 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.
2008-05-30 20:08:02 +00:00

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