Files
libdwarf-code/tsearch/config.h
Carlos Alberto Enciso 88d7dc4b95 Changes required for the Windows version, after the upgrade to 2016.01.15
* Some C99-isms
* In the function 'esb_append', do nothing in the case of an empty string
* Include the C++ guard in esb.h, globals.h, naming.h
* The MSVC Compiler (2010) generates an error when the ';;' is found
  after some declarations
* The MSVC Compiler (2010) generates an error when adding a 'void *'
* The 'errno' has already an incompatible definition

* The Windows build, uses the tsearch algorithm as a library; the selected
  algorithm is controlled by a definition in the config.h. Also, instead
  of including a specific tsearchXX.c, it includes a generic tsearch.c

* Created a generic function 'dwarf_die_text()' to get the attribute
  value, when its value represents a string, such as DW_AT_name, etc
* For backwards compatibility, 'dwarf_diename()' calls 'dwarf_die_text()'
2016-01-19 16:00:23 +00:00

23 lines
658 B
C

/* Nothing here, really, a placeholder. */
/* Define to 1 if tsearch is based on the AVL algorithm. */
/* #define TSEARCH_USE_BAL 1 */
/* Define to 1 if tsearch is based on the binary algorithm. */
/* #define TSEARCH_USE_BIN 1 */
/* Define to 1 if tsearch is based on the chepp algorithm. */
/* #define TSEARCH_USE_EPP 1 */
/* Define to 1 if tsearch is based on the hash algorithm. */
/* #define TSEARCH_USE_HASH 1 */
#define TSEARCH_USE_HASH 1
/* Define to 1 if tsearch is based on the red-black algorithm. */
/* #define TSEARCH_USE_RED 1 */
/* Define 1 if we have the Windows specific header stdafx.h */
#undef HAVE_STDAFX_H
#define HAVE_STDAFX_H 1