~ubuntu-branches/ubuntu/trusty/speex/trusty

« back to all changes in this revision

Viewing changes to config.h.in

  • Committer: Package Import Robot
  • Author(s): Steve Langasek
  • Date: 2014-01-26 09:30:49 UTC
  • mfrom: (5.1.9 sid)
  • Revision ID: package-import@ubuntu.com-20140126093049-gmmhj4tsenomuod2
Tags: 1.2~rc1.1-1ubuntu1
* Merge from Debian unstable, remaining changes:
  - Build with float on armhf.
  - Use dh-autoreconf for current libtool.
  - Add build-dependency on pkg-config for the above.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* config.h.in.  Generated from configure.ac by autoheader.  */
2
2
 
 
3
/* Define if building universal (internal helper macro) */
 
4
#undef AC_APPLE_UNIVERSAL_BUILD
 
5
 
3
6
/* Make use of ARM4 assembly optimizations */
4
7
#undef ARM4_ASM
5
8
 
81
84
/* Define to 1 if you have the <unistd.h> header file. */
82
85
#undef HAVE_UNISTD_H
83
86
 
 
87
/* Define to the sub-directory in which libtool stores uninstalled libraries.
 
88
   */
 
89
#undef LT_OBJDIR
 
90
 
84
91
/* Define to the address where bug reports for this package should be sent. */
85
92
#undef PACKAGE_BUGREPORT
86
93
 
93
100
/* Define to the one symbol short name of this package. */
94
101
#undef PACKAGE_TARNAME
95
102
 
 
103
/* Define to the home page for this package. */
 
104
#undef PACKAGE_URL
 
105
 
96
106
/* Define to the version of this package. */
97
107
#undef PACKAGE_VERSION
98
108
 
144
154
/* Use C99 variable-size arrays */
145
155
#undef VAR_ARRAYS
146
156
 
147
 
/* Define to 1 if your processor stores words with the most significant byte
148
 
   first (like Motorola and SPARC, unlike Intel and VAX). */
149
 
#undef WORDS_BIGENDIAN
 
157
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
 
158
   significant byte first (like Motorola and SPARC, unlike Intel). */
 
159
#if defined AC_APPLE_UNIVERSAL_BUILD
 
160
# if defined __BIG_ENDIAN__
 
161
#  define WORDS_BIGENDIAN 1
 
162
# endif
 
163
#else
 
164
# ifndef WORDS_BIGENDIAN
 
165
#  undef WORDS_BIGENDIAN
 
166
# endif
 
167
#endif
150
168
 
151
169
/* Enable SSE support */
152
170
#undef _USE_SSE
160
178
#undef inline
161
179
#endif
162
180
 
163
 
/* Define to equivalent of C99 restrict keyword, or to nothing if this is not
164
 
   supported. Do not define if restrict is supported directly. */
 
181
/* Define to the equivalent of the C99 'restrict' keyword, or to
 
182
   nothing if this is not supported.  Do not define if restrict is
 
183
   supported directly.  */
165
184
#undef restrict
 
185
/* Work around a bug in Sun C++: it does not support _Restrict or
 
186
   __restrict__, even though the corresponding Sun C compiler ends up with
 
187
   "#define restrict _Restrict" or "#define restrict __restrict__" in the
 
188
   previous line.  Perhaps some future version of Sun C++ will work with
 
189
   restrict; if so, hopefully it defines __RESTRICT like Sun C does.  */
 
190
#if defined __SUNPRO_CC && !defined __RESTRICT
 
191
# define _Restrict
 
192
# define __restrict__
 
193
#endif