pcre_config.h
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:4k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: pcre_config.h,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 15:55:55  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef NCBI_CONFIG_REGEXP__H
  10. #define NCBI_CONFIG_REGEXP__H
  11. /*  $Id: pcre_config.h,v 1000.0 2003/10/29 15:55:55 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Author:  Vladimir Ivanov
  37.  *
  38.  * File Description:
  39.  *   Configuration wrapper for PCRE REGEXP library in NCBI C++ Toolkit
  40.  *
  41.  * Based on "config.h" generated the PCRE's autuconfigure.
  42.  *
  43.  * ===========================================================================
  44.  */
  45. /* Real configuration
  46.  */
  47. #include <ncbiconf.h>
  48. /* PCRE is written in Standard C, but there are a few non-standard things it
  49.    can cope with, allowing it to run on SunOS4 and other "close to standard" 
  50.    systems.
  51.    You should normally change the definitions of HAVE_STRERROR and 
  52.    HAVE_MEMMOVE to 1. If your system has bcopy() and not memmove(), change 
  53.    the definition of HAVE_BCOPY instead of HAVE_MEMMOVE. If your system 
  54.    has neither bcopy() nor memmove(), leave them both as 0; an emulation 
  55.    function will be used. */
  56. /* Define to empty if the keyword does not work. */
  57. /* #undef const */
  58. /* Define to `unsigned' if <stddef.h> doesn't define size_t. */
  59. /* #undef size_t */
  60. /* The following two definitions are mainly for the benefit of SunOS4, which
  61.    doesn't have the strerror() or memmove() functions that should be present in
  62.    all Standard C libraries. The macros HAVE_STRERROR and HAVE_MEMMOVE should
  63.    normally be defined with the value 1 for other systems, but unfortunately we
  64.    can't make this the default because "configure" files generated by autoconf
  65.    will only change 0 to 1; they won't change 1 to 0 if the functions are not
  66.    found. */
  67. #define HAVE_STRERROR 1
  68. #define HAVE_MEMMOVE 1
  69. /* There are some non-Unix systems that don't even have bcopy(). If this macro
  70.    is false, an emulation is used. If HAVE_MEMMOVE is set to 1, the value of
  71.    HAVE_BCOPY is not relevant. */
  72. #define HAVE_BCOPY 1
  73. /* The value of NEWLINE determines the newline character. The default is to
  74.    leave it up to the compiler, but some sites want to force a particular 
  75.    value. On Unix systems, "configure" can be used to override this default. */
  76. #ifndef NEWLINE
  77. #  define NEWLINE 'n'
  78. #endif
  79. /* Disable support UTF-8 by default */
  80. #define SUPPORT_UTF8 0
  81. /* End */
  82. #endif /* NCBI_CONFIG_REGEXP__H */