mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
2.0 KiB

  1. # --- ROCK-COPYRIGHT-NOTE-BEGIN ---
  2. #
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. # Please add additional copyright information _after_ the line containing
  5. # the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
  6. # the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
  7. #
  8. # ROCK Linux: rock-src/package/stf/avview/configure.patch
  9. # ROCK Linux is Copyright (C) 1998 - 2005 Clifford Wolf
  10. #
  11. # This patch file is dual-licensed. It is available under the license the
  12. # patched project is licensed under, as long as it is an OpenSource license
  13. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  14. # of the GNU General Public License as published by the Free Software
  15. # Foundation; either version 2 of the License, or (at your option) any later
  16. # version.
  17. #
  18. # --- ROCK-COPYRIGHT-NOTE-END ---
  19. --- ./configure.in.orig 2004-01-05 21:58:52.000000000 +0100
  20. +++ ./configure.in 2004-08-28 23:05:28.000000000 +0200
  21. @@ -152,7 +152,7 @@
  22. #error "FFMPEG libraries mismatch"
  23. #endif
  24. - #if LIBAVCODEC_VERSION_INT != 0x000408
  25. + #if LIBAVCODEC_VERSION_INT < 0x000408
  26. #error "AVview now requires ffmpeg 0.4.8"
  27. #endif
  28. @@ -203,7 +203,7 @@
  29. AC_MSG_ERROR([can not find X11])
  30. fi
  31. -if ! test "$TCL_VERSION $TK_VERSION" = "8.4 8.4" ; then
  32. +if ! test "${TCL_VERSION:0:3} ${TK_VERSION:0:3}" = "8.4 8.4" ; then
  33. AC_MSG_ERROR([AVview requires Tcl/Tk 8.4.x])
  34. fi
  35. --- ./configure 2004-08-28 23:30:05.000000000 +0200
  36. +++ ./configure.patch 2004-08-28 23:31:50.000000000 +0200
  37. @@ -7605,7 +7605,7 @@
  38. #error "FFMPEG libraries mismatch"
  39. #endif
  40. - #if LIBAVCODEC_VERSION_INT != 0x000408
  41. + #if LIBAVCODEC_VERSION_INT < 0x000408
  42. #error "AVview now requires ffmpeg 0.4.8"
  43. #endif
  44. @@ -9555,7 +9555,7 @@
  45. { (exit 1); exit 1; }; }
  46. fi
  47. -if ! test "$TCL_VERSION $TK_VERSION" = "8.4 8.4" ; then
  48. +if ! test "${TCL_VERSION:0:3} ${TK_VERSION:0:3}" = "8.4 8.4" ; then
  49. { { echo "$as_me:$LINENO: error: AVview requires Tcl/Tk 8.4.x" >&5
  50. echo "$as_me: error: AVview requires Tcl/Tk 8.4.x" >&2;}
  51. { (exit 1); exit 1; }; }