link-libm.patch 457 B

1234567891011121314151617
  1. Description: Link libm for ceil
  2. Author: Sebastian Ramacher <sramacher@debian.org>
  3. Last-Update: 2014-11-09
  4. Bug-Debian: https://bugs.debian.org/768674
  5. --- ffmpeg2theora-0.29.0~git+20140316.orig/SConstruct
  6. +++ ffmpeg2theora-0.29.0~git+20140316/SConstruct
  7. @@ -221,6 +221,8 @@ if not env.GetOption('clean'):
  8. env.Append(LIBS=['m'])
  9. elif env['static']:
  10. env.Append(LIBS=['m', 'dl'])
  11. + else:
  12. + env.Append(LIBS=['m'])
  13. env = conf.Finish()