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.

40 lines
1.2 KiB

  1. --- ./configure.in.orig 2004-01-05 21:58:52.000000000 +0100
  2. +++ ./configure.in 2004-08-28 23:05:28.000000000 +0200
  3. @@ -152,7 +152,7 @@
  4. #error "FFMPEG libraries mismatch"
  5. #endif
  6. - #if LIBAVCODEC_VERSION_INT != 0x000408
  7. + #if LIBAVCODEC_VERSION_INT < 0x000408
  8. #error "AVview now requires ffmpeg 0.4.8"
  9. #endif
  10. @@ -203,7 +203,7 @@
  11. AC_MSG_ERROR([can not find X11])
  12. fi
  13. -if ! test "$TCL_VERSION $TK_VERSION" = "8.4 8.4" ; then
  14. +if ! test "${TCL_VERSION:0:3} ${TK_VERSION:0:3}" = "8.4 8.4" ; then
  15. AC_MSG_ERROR([AVview requires Tcl/Tk 8.4.x])
  16. fi
  17. --- ./configure 2004-08-28 23:30:05.000000000 +0200
  18. +++ ./configure.patch 2004-08-28 23:31:50.000000000 +0200
  19. @@ -7605,7 +7605,7 @@
  20. #error "FFMPEG libraries mismatch"
  21. #endif
  22. - #if LIBAVCODEC_VERSION_INT != 0x000408
  23. + #if LIBAVCODEC_VERSION_INT < 0x000408
  24. #error "AVview now requires ffmpeg 0.4.8"
  25. #endif
  26. @@ -9555,7 +9555,7 @@
  27. { (exit 1); exit 1; }; }
  28. fi
  29. -if ! test "$TCL_VERSION $TK_VERSION" = "8.4 8.4" ; then
  30. +if ! test "${TCL_VERSION:0:3} ${TK_VERSION:0:3}" = "8.4 8.4" ; then
  31. { { echo "$as_me:$LINENO: error: AVview requires Tcl/Tk 8.4.x" >&5
  32. echo "$as_me: error: AVview requires Tcl/Tk 8.4.x" >&2;}
  33. { (exit 1); exit 1; }; }