acconfig.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /* acconfig.h
  2. This file is in the public domain.
  3. Descriptive text for the C preprocessor macros that
  4. the distributed Autoconf macros can define.
  5. No software package will use all of them; autoheader copies the ones
  6. your configure.in uses into your configuration header file templates.
  7. The entries are in sort -df order: alphabetical, case insensitive,
  8. ignoring punctuation (such as underscores). Although this order
  9. can split up related entries, it makes it easier to check whether
  10. a given entry is in the file.
  11. Leave the following blank line there!! Autoheader needs it. */
  12. /* Define if the C++ compiler uses namespaces. */
  13. #undef HAVE_NAMESPACE
  14. /* Define if the C++ iostream library supports ios::binary. */
  15. #undef HAVE_IOS_BINARY
  16. /* The current version number. */
  17. #define VERSION 0.0
  18. /* Define if we have Python installed. */
  19. #undef HAVE_PYTHON
  20. /* Define if we have NSPR installed. */
  21. #undef HAVE_NSPR
  22. /* Define if we have zlib installed. */
  23. #undef HAVE_ZLIB
  24. /* Define if we have OpenGL installed and want to build for GL. */
  25. #undef HAVE_GL
  26. /* Define if we have GLU installed. */
  27. #undef HAVE_GLU
  28. /* Define if we have GLX installed and want to build for GLX. */
  29. #undef HAVE_GLX
  30. /* Define if we have Glut installed and want to build for Glut. */
  31. #undef HAVE_GLUT
  32. /* Define if we have DirectX installed and want to build for DirectX. */
  33. #undef HAVE_DX
  34. /* Define if we want to build the Renderman interface. */
  35. #undef HAVE_RIB
  36. /* Define if we want to use mikmod for audio. */
  37. #undef HAVE_MIKMOD
  38. /* Define if we have a gettimeofday() function. */
  39. #undef HAVE_GETTIMEOFDAY
  40. /* Define if gettimeofday() takes only one parameter. */
  41. #undef GETTIMEOFDAY_ONE_PARAM
  42. /* Leave that blank line there!! Autoheader needs it.
  43. If you're adding to this file, keep in mind:
  44. The entries are in sort -df order: alphabetical, case insensitive,
  45. ignoring punctuation (such as underscores). */