* make_b32.mak
* make_gcc.mak
* make_vc.mak
* make_vcce.mak
* include/hbdefs.h
* source/vm/mainwin.c
* source/vm/hvm.c
* source/hbpcre/_hbconf.h
* source/hbzlib/ChangeLog
* source/hbzlib/zconf.h
* utils/hbmake/hbmake.prg
* __EXPORT__ -> HB_DYNLIB
26 lines
322 B
C
26 lines
322 B
C
/*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifndef HB_CONFIG_H
|
|
#define HB_CONFIG_H
|
|
|
|
#if !defined(HB_DYNLIB)
|
|
#define PCRE_STATIC
|
|
#endif
|
|
|
|
#if defined( _MSC_VER )
|
|
#pragma warning( push, 1 )
|
|
#endif
|
|
|
|
#if defined( __BORLANDC__ )
|
|
#pragma warn -use
|
|
#pragma warn -csu
|
|
#pragma warn -aus
|
|
#pragma warn -sig
|
|
#endif
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|