Skip to content
Snippets Groups Projects
  1. Sep 17, 2012
  2. Sep 16, 2012
  3. Sep 13, 2012
  4. Sep 12, 2012
  5. Sep 11, 2012
  6. Sep 10, 2012
  7. Sep 08, 2012
  8. Sep 06, 2012
  9. Sep 01, 2012
  10. Aug 30, 2012
  11. Aug 29, 2012
  12. Aug 27, 2012
  13. Aug 24, 2012
  14. Aug 23, 2012
  15. Aug 21, 2012
  16. Aug 19, 2012
  17. Aug 17, 2012
    • Ralph Giles's avatar
      Fix an MSVC warning. · 3a9b3545
      Ralph Giles authored
      Microsoft Visual Studio 2010 warns about 'C4146: unary minus
      operator applied to unsigned type, result still unsigned'
      because of the '&-sizeof(void*)' in align().
      
      This commit works around the warning by casting the size_t
      to int before negation.
      
      Patch by Hauke, who reported the issue on the opus mailing
      list. Reviewed by derf.
      3a9b3545
  18. Aug 16, 2012
    • Chris Moeller's avatar
      genversion now adds the header comment to version.mk · 2b14ac23
      Chris Moeller authored and Gregory Maxwell's avatar Gregory Maxwell committed
      2b14ac23
    • Ralph Giles's avatar
      Add 'compile' to the git ignore list. · 91b2f6d6
      Ralph Giles authored
      This is another script generated by the autotools build.
      91b2f6d6
    • Ralph Giles's avatar
      Use the string from version.mk in Makefile.draft. · 88ee8a19
      Ralph Giles authored
      This reduces the number of places the version string
      needs to be updated at release.
      88ee8a19
    • Ralph Giles's avatar
      Move the release version string to version.mk. · 59c5a82e
      Ralph Giles authored
      Previously we defined the release version string in configure.ac,
      and overrode that with 'git describe --tags' if possible. This
      made it difficult for non-autoconf builds to set their version
      string correctly.
      
      Instead we create, and check into version control, a file called
      version.mk which defines OPUS_VERSION. The configure script reads
      that file and uses it as a fallback if the git revision isn't available.
      
      The expectation is that version.mk will be manually updated for
      releases, just as the previous configure.ac version was. However,
      since this is a simpler format, it is easier for alternate build
      systems to use, reducing the number of places which must be updated.
      
      Also removes the OPUS_MINOR_VERSION, etc. defines from config.h.
      59c5a82e
Loading