gil_config.hpp 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. Copyright 2005-2007 Adobe Systems Incorporated
  3. Use, modification and distribution are subject to the Boost Software License,
  4. Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  5. http://www.boost.org/LICENSE_1_0.txt).
  6. See http://opensource.adobe.com/gil for most recent version including documentation.
  7. */
  8. /*************************************************************************************************/
  9. #ifndef GIL_CONFIG_HPP
  10. #define GIL_CONFIG_HPP
  11. ////////////////////////////////////////////////////////////////////////////////////////
  12. /// \file
  13. /// \brief GIL configuration file
  14. /// \author Lubomir Bourdev and Hailin Jin \n
  15. /// Adobe Systems Incorporated
  16. ///
  17. ////////////////////////////////////////////////////////////////////////////////////////
  18. #include <boost/config.hpp>
  19. #define GIL_VERSION "2.1.2"
  20. #ifdef _DEBUG
  21. # define GIL_FORCEINLINE inline
  22. #else
  23. #ifdef NDEBUG
  24. #if defined(_MSC_VER)
  25. # define GIL_FORCEINLINE __forceinline
  26. #elif defined(__GNUC__) && __GNUC__ > 3
  27. # define GIL_FORCEINLINE inline __attribute__ ((always_inline))
  28. #else
  29. # define GIL_FORCEINLINE inline
  30. #endif
  31. #else
  32. # define GIL_FORCEINLINE inline
  33. #endif
  34. #endif
  35. // Enable GIL_NONWORD_POINTER_ALIGNMENT_SUPPORTED if your platform supports dereferencing on non-word memory boundary.
  36. // Enabling the flag results in performance improvement
  37. #if !defined(__hpux) && !defined(sun) && !defined(__sun) && !defined(__osf__)
  38. #define GIL_NONWORD_POINTER_ALIGNMENT_SUPPORTED
  39. #endif
  40. #endif