README.blender 857 B

12345678910111213141516171819202122232425
  1. Project: Google Flags
  2. URL: https://github.com/gflags/gflags
  3. License: New BSD
  4. Upstream version: 2.2.0 (9db82895)
  5. Local modifications:
  6. - Flattened the tree and only included files needed for libmv.
  7. - config.h was originally generated on linux machine with some
  8. further tweaks:
  9. * OS_WINDOWS need to be conditinally defined from inside #ifdef WIN32
  10. * Same applies yo HAVE_SHLWAPI_H
  11. * Disabeld HAVE_FNMATCH_H
  12. - Removed attribute(unused) from FlagSaver.
  13. - Applied some modifications from fork https://github.com/Nazg-Gul/gflags.git
  14. (see https://github.com/gflags/gflags/pull/129)
  15. - Avoid attempt of acquiring mutex lock in FlagRegistry::GlobalRegistry when
  16. doing static flags initialization. See d81dd2d in Blender repository.
  17. - Made `google::{anonymous}::FlagValue::ValueSize() const` inlined, so it does
  18. not trigger strict compiler warning.