root/juggler/branches/1.0/acconfig.h

Revision 14093, 4.6 kB (checked in by patrickh, 5 years ago)

Removed unneeded #undef lines.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 /*************** <auto-copyright.pl BEGIN do not edit this line> **************
2  *
3  * VR Juggler is (C) Copyright 1998, 1999, 2000, 2001, 2002
4  *   by Iowa State University
5  *
6  * Original Authors:
7  *   Allen Bierbaum, Christopher Just,
8  *   Patrick Hartling, Kevin Meinert,
9  *   Carolina Cruz-Neira, Albert Baker
10  *
11  * This library is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU Library General Public
13  * License as published by the Free Software Foundation; either
14  * version 2 of the License, or (at your option) any later version.
15  *
16  * This library is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  * Library General Public License for more details.
20  *
21  * You should have received a copy of the GNU Library General Public
22  * License along with this library; if not, write to the
23  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24  * Boston, MA 02111-1307, USA.
25  *
26  * -----------------------------------------------------------------
27  * File:          $RCSfile$
28  * Date modified: $Date$
29  * Version:       $Revision$
30  * -----------------------------------------------------------------
31  *
32  *************** <auto-copyright.pl END do not edit this line> ***************/
33
34 #ifndef _VJ_DEFINES_H_
35 #define _VJ_DEFINES_H_
36
37 /*
38  * --------------------------------------------------------------------------
39  * Library-wide configuration file.
40  * Generated from acconfig.h.
41  * --------------------------------------------------------------------------
42  */
43
44 @TOP@
45
46 /* Define all of the following to use POSIX threads. */
47 #undef VJ_USE_PTHREADS
48 #undef VJ_THREAD_SCOPE
49 #undef VJ_POSIX_C_SOURCE
50 #undef _THREAD_SAFE
51 #undef RWSTD_MULTI_THREAD
52 #undef RW_MULTI_THREAD
53 #undef _REENTRANT
54 #undef _GNU_SOURCE
55
56 /* Define if using POSIX threads Draft 4. */
57 #undef _PTHREADS_DRAFT_4
58
59 /* Define if using POSIX threads Draft 10 (the "final" draft). */
60 #undef _PTHREADS_DRAFT_10
61
62 /* Define to use POSIX semaphores. */
63 #undef VJ_POSIX_SEMAPHORES
64
65 /* Define to use the IRIX sproc(2) threading model instead of POSIX threads. */
66 #undef VJ_IRIX_SPROC
67
68 /* Define to use the OpenGL API. */
69 #undef VJ_API_OPENGL
70
71 /* Define to use the Performer API. */
72 #undef VJ_API_PERFORMER
73
74 /* Define all of the following if building on IRIX. */
75 #undef VJ_OS_IRIX
76 #undef _BSD_TYPES
77
78 /* Define to be either IRIX5 or IRIX6 depending on your system. */
79 #undef IRIXREL
80
81 /* Define all of the following if building on HP-UX. */
82 #undef VJ_OS_HPUX
83
84 /* Define if building on Digital UNIX. */
85 #undef VJ_OS_DUX
86
87 /* Define if building on FreeBSD. */
88 #undef VJ_OS_FreeBSD
89
90 /* Define if building on Linux. */
91 #undef VJ_OS_Linux
92
93 /* Define if building on Solaris. */
94 #undef VJ_OS_Solaris
95
96 /* Define if building on AIX. */
97 #undef VJ_OS_AIX
98
99 /* Define if building on a Win32 platform. */
100 #undef VJ_OS_Win32
101 #undef WIN32
102 #undef _MBCS
103
104 /* Define if building on a platform not specified above. */
105 #undef VJ_OS_GENERIC
106
107 /* Define to match the output of running 'uname -r. */
108 #undef VJ_OS_RELEASE
109
110 /*
111  * Define to match the numeric version number of the target operating system.
112  * For example, on HP-UX 10.20:
113  *     #define VJ_OS_RELEASE_MAJOR 10
114  *     #define VJ_OS_RELEASE_MINOR 20
115  */
116 #undef VJ_OS_RELEASE_MAJOR
117 #undef VJ_OS_RELEASE_MINOR
118
119 /* Define to unique values used for defining VJ_PERFORMANCE. */
120 #undef VJ_PERF_NONE
121 #undef VJ_PERF_SGI
122 #undef VJ_PERF_POSIX
123
124 /* Define to one of the above values to enable performance testing. */
125 #undef VJ_PERFORMANCE
126
127 /* Define to `int' if the socklen_t type is not available.  */
128 #undef socklen_t
129
130 /*
131  * Define to `unsigned int' if the u_int type is not available.  On Windows
132  * when using Visual C++, define to UINT.
133  */
134 #undef u_int
135
136 /*
137  * Define to the sizeof a memory address if the type caddr_t is not available.
138  * char* is most likely going to be a safe substitute.
139  */
140 #undef caddr_t
141
142 /* Define if you have the pthread_attr_setstack function.  */
143 #undef HAVE_PTHREAD_ATTR_SETSTACK
144
145 /* Define if you have the sched_yield function.  */
146 #undef HAVE_SCHED_YIELD
147
148 /* Define if you have the sinf function.  */
149 #undef HAVE_SINF
150
151 /* Define if you have the cosf function.  */
152 #undef HAVE_COSF
153
154 /* Define if you have the sqrtf function.  */
155 #undef HAVE_SQRTF
156
157 /* Define if you have the asinf function.  */
158 #undef HAVE_ASINF
159
160 /* Define if you have the acosf function.  */
161 #undef HAVE_ACOSF
162
163 /* Define if you have the atan2f function.  */
164 #undef HAVE_ATAN2F
165
166 /* Define if you have the atan2f function.  */
167 #undef HAVE_FABSF
168
169 /* Define if you have the trunc function.  */
170 #undef HAVE_TRUNC
171
172 @BOTTOM@
173
174 #endif  /* _VJ_DEFINES_H_ */
Note: See TracBrowser for help on using the browser.