home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / lzo100.zip / lzo-1.00 / acconfig.h next >
C/C++ Source or Header  |  1997-06-10  |  4KB  |  132 lines

  1. /* acconfig.h -- autoheader configuration file
  2.  
  3.    This file is part of the LZO real-time data compression library.
  4.  
  5.    Copyright (C) 1997 Markus Franz Xaver Johannes Oberhumer
  6.    Copyright (C) 1996 Markus Franz Xaver Johannes Oberhumer
  7.  
  8.    The LZO library is free software; you can redistribute it and/or
  9.    modify it under the terms of the GNU General Public License as
  10.    published by the Free Software Foundation; either version 2 of
  11.    the License, or (at your option) any later version.
  12.  
  13.    The LZO library is distributed in the hope that it will be useful,
  14.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.    GNU General Public License for more details.
  17.  
  18.    You should have received a copy of the GNU General Public License
  19.    along with the LZO library; see the file COPYING.
  20.    If not, write to the Free Software Foundation, Inc.,
  21.    59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  22.  
  23.    Markus F.X.J. Oberhumer
  24.    markus.oberhumer@jk.uni-linz.ac.at
  25.  */
  26.  
  27.  
  28. #ifndef __LZO_CONFIG_H
  29. #define __LZO_CONFIG_H
  30.  
  31. /* $TOP$ */
  32. @TOP@
  33.  
  34. /* acconfig.h
  35.  
  36.    Descriptive text for the C preprocessor macros that
  37.    the distributed Autoconf macros can define.
  38.    No software package will use all of them; autoheader copies the ones
  39.    your configure.in uses into your configuration header file templates.
  40.  
  41.    The entries are in sort -df order: alphabetical, case insensitive,
  42.    ignoring punctuation (such as underscores).  Although this order
  43.    can split up related entries, it makes it easier to check whether
  44.    a given entry is in the file.
  45.  
  46.    Leave the following blank line there!!  Autoheader needs it.  */
  47.  
  48.  
  49. /* Define if your machine is MUCH faster when copying words than bytes.  */
  50. #undef LZO_ALIGNED_OK_4
  51.  
  52. /* Define for machines that can access unaligned short words.  */
  53. #undef LZO_UNALIGNED_OK_2
  54.  
  55. /* Define for machines that can access unaligned words.  */
  56. #undef LZO_UNALIGNED_OK_4
  57.  
  58. /* Define to your architecture name.  */
  59. #undef MFX_ARCH
  60.  
  61. /* Define for machines where ".align 4" means align to a 4 byte boundary.  */
  62. #undef MFX_ASM_ALIGN_BYTES
  63.  
  64. /* Define for machines where ".align 4" means align to a 2**4 boundary.  */
  65. #undef MFX_ASM_ALIGN_PTWO
  66.  
  67. /* Define if your compiler is broken.  */
  68. #undef MFX_PROG_CC_BUG_SIGNED_TO_UNSIGNED_CASTING
  69.  
  70. /* See src/lzo_conf.h.  */
  71. #undef MFX_BYTE_ORDER
  72.  
  73. /* Define to your CPU name.  */
  74. #undef MFX_CPU
  75.  
  76. /* Define if your memcmp is broken.  */
  77. #undef MFX_MEMCMP_BROKEN
  78.  
  79. /* Define to the name of the distribution.  */
  80. #undef PACKAGE
  81.  
  82. /* Define to `long' if <stddef.h> doesn't define.  */
  83. #undef ptrdiff_t
  84.  
  85. /* The number of bytes in a ptrdiff_t.  */
  86. #undef SIZEOF_PTRDIFF_T
  87.  
  88. /* The number of bytes in a size_t.  */
  89. #undef SIZEOF_SIZE_T
  90.  
  91. /* Define to the version of the distribution.  */
  92. #undef VERSION
  93.  
  94.  
  95.  
  96. /* Leave that blank line there!!  Autoheader needs it.
  97.    If you're adding to this file, keep in mind:
  98.    The entries are in sort -df order: alphabetical, case insensitive,
  99.    ignoring punctuation (such as underscores).  */
  100.  
  101.  
  102.  
  103. @BOTTOM@
  104.  
  105. /* $BOTTOM$ */
  106.  
  107. #if defined(HAVE_SYS_RESOURCE_H) && !defined(TIME_WITH_SYS_TIME)
  108. #  undef /**/ HAVE_SYS_RESOURCE_H
  109. #endif
  110.  
  111. #if defined(HAVE_SYS_TIMES_H) && !defined(TIME_WITH_SYS_TIME)
  112. #  undef /**/ HAVE_SYS_TIMES_H
  113. #endif
  114.  
  115. #if defined(HAVE_ZLIB_H) && !defined(HAVE_LIBZ)
  116. #  undef /**/ HAVE_ZLIB_H
  117. #endif
  118.  
  119. #if (SIZEOF_PTRDIFF_T <= 0)
  120. #  undef /**/ SIZEOF_PTRDIFF_T
  121. #endif
  122.  
  123. #if (SIZEOF_SIZE_T <= 0)
  124. #  undef /**/ SIZEOF_SIZE_T
  125. #endif
  126.  
  127. #endif /* already included */
  128.  
  129. /*
  130. vi:ts=4
  131. */
  132.