~ubuntu-branches/ubuntu/precise/mesa/precise-updates

« back to all changes in this revision

Viewing changes to src/gallium/include/pipe/p_config.h

  • Committer: Package Import Robot
  • Author(s): Robert Hooker
  • Date: 2012-02-02 12:05:48 UTC
  • mfrom: (1.7.1) (3.3.27 sid)
  • Revision ID: package-import@ubuntu.com-20120202120548-nvkma85jq0h4coix
Tags: 8.0~rc2-0ubuntu4
Drop drisearchdir handling, it is no longer needed with multiarch
and dri-alternates being removed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
129
129
# define PIPE_ARCH_BIG_ENDIAN
130
130
#endif
131
131
 
 
132
#elif defined(__sun)
 
133
#include <sys/isa_defs.h>
 
134
 
 
135
#if defined(_LITTLE_ENDIAN)
 
136
# define PIPE_ARCH_LITTLE_ENDIAN
 
137
#elif defined(_BIG_ENDIAN)
 
138
# define PIPE_ARCH_BIG_ENDIAN
 
139
#endif
 
140
 
132
141
#else
133
142
 
134
143
#if defined(PIPE_ARCH_X86) || defined(PIPE_ARCH_X86_64)
154
163
#define PIPE_OS_UNIX
155
164
#endif
156
165
 
 
166
/*
 
167
 * Android defines __linux__ so PIPE_OS_LINUX and PIPE_OS_UNIX will also be
 
168
 * defined.
 
169
 */
 
170
#if defined(ANDROID)
 
171
#define PIPE_OS_ANDROID
 
172
#endif
 
173
 
157
174
#if defined(__FreeBSD__)
158
175
#define PIPE_OS_FREEBSD
159
176
#define PIPE_OS_BSD
212
229
#endif /* PIPE_OS_LINUX || PIPE_OS_BSD || PIPE_OS_SOLARIS */
213
230
 
214
231
#if defined(PIPE_OS_WINDOWS)
215
 
#if defined(PIPE_SUBSYSTEM_WINDOWS_DISPLAY)
216
 
/* Windows 2000/XP Display Driver */ 
217
 
#elif defined(PIPE_SUBSYSTEM_WINDOWS_MINIPORT)
218
 
/* Windows 2000/XP Miniport Driver */ 
219
 
#elif defined(PIPE_SUBSYSTEM_WINDOWS_USER)
 
232
#if defined(PIPE_SUBSYSTEM_WINDOWS_USER)
220
233
/* Windows User-space Library */
221
 
#elif defined(PIPE_SUBSYSTEM_WINDOWS_CE)
222
 
/* Windows CE 5.0/6.0 */
223
234
#else
224
 
#ifdef _WIN32_WCE
225
 
#define PIPE_SUBSYSTEM_WINDOWS_CE
226
 
#else /* !_WIN32_WCE */
227
 
#error No PIPE_SUBSYSTEM_WINDOWS_xxx subsystem defined. 
228
 
#endif /* !_WIN32_WCE */
 
235
#define PIPE_SUBSYSTEM_WINDOWS_USER
229
236
#endif
230
237
#endif /* PIPE_OS_WINDOWS */
231
238