1. 05 Jun, 2015 1 commit
  2. 03 Jun, 2015 1 commit
  3. 01 Jun, 2015 1 commit
  4. 31 May, 2015 4 commits
  5. 28 Aug, 2013 1 commit
  6. 24 Sep, 2012 1 commit
  7. 12 May, 2011 1 commit
    • Diego Biurrun's avatar
      configure: Do not unconditionally add -D_POSIX_C_SOURCE to CPPFLAGS. · 046f081b
      Diego Biurrun authored
      Adding _POSIX_C_SOURCE to CPPFLAGS globally produces all sorts of problems
      since it causes certain system functions to be hidden on some (BSD) systems.
      The solution is to only add the flag on systems that really require it, i.e.
      glibc-based ones.
      
      This change makes BSD systems compile out-of-the-box without the need for
      adding specific flags manually.  It also allows dropping a number of flags
      set manually on a file-per-file basis, but were only present to work around
      breakage introduced by the presence of _POSIX_C_SOURCE.
      
      Also add _XOPEN_SOURCE to CPPFLAGS for glibc systems.  We use XSI extensions
      in several places already, so it is preferable to define it globally instead
      of littering source files with individual #defines only needed for glibc.
      046f081b
  8. 10 Apr, 2011 1 commit
  9. 19 Mar, 2011 1 commit
  10. 09 Sep, 2010 1 commit
  11. 08 Sep, 2010 2 commits
  12. 30 Jun, 2010 1 commit
  13. 20 Apr, 2010 1 commit
  14. 08 Mar, 2010 1 commit
  15. 06 Mar, 2010 1 commit
  16. 09 May, 2009 1 commit
  17. 08 Apr, 2009 1 commit
  18. 01 Feb, 2009 1 commit
  19. 30 Jan, 2009 1 commit
  20. 16 Oct, 2008 1 commit
    • Diego Pettenò's avatar
      Convert asm keyword into __asm__. · be449fca
      Diego Pettenò authored
      Neither the asm() nor the __asm__() keyword is part of the C99
      standard, but while GCC accepts the former in C89 syntax, it is not
      accepted in C99 unless GNU extensions are turned on (with -fasm). The
      latter form is accepted in any syntax as an extension (without
      requiring further command-line options).
      
      Sun Studio C99 compiler also does not accept asm() while accepting
      __asm__(), albeit reporting warnings that it's not valid C99 syntax.
      
      Originally committed as revision 15627 to svn://svn.ffmpeg.org/ffmpeg/trunk
      be449fca
  21. 22 Sep, 2008 2 commits
  22. 13 Sep, 2008 1 commit
  23. 06 May, 2008 1 commit
  24. 19 Jan, 2008 1 commit
  25. 02 Oct, 2007 2 commits