|
Lines 619-624
Link Here
|
| 619 |
AC_TRY_RUN([ |
619 |
AC_TRY_RUN([ |
| 620 |
#include <stdio.h> |
620 |
#include <stdio.h> |
| 621 |
#include <ffmpeg/avcodec.h> |
621 |
#include <ffmpeg/avcodec.h> |
|
|
622 |
|
| 623 |
#ifndef STRINGIFY |
| 624 |
# define STRINGIFY(x) STRINGIFY1(x) |
| 625 |
# define STRINGIFY1(x) #x |
| 626 |
#endif |
| 627 |
|
| 622 |
int |
628 |
int |
| 623 |
main() |
629 |
main() |
| 624 |
{ |
630 |
{ |
|
Lines 628-634
Link Here
|
| 628 |
printf("install ffmpeg 0.4.9-pre1 or newer, or a cvs version after 20040703"); |
634 |
printf("install ffmpeg 0.4.9-pre1 or newer, or a cvs version after 20040703"); |
| 629 |
return(1); |
635 |
return(1); |
| 630 |
} |
636 |
} |
| 631 |
printf("VER=%s\n", FFMPEG_VERSION); |
637 |
printf("VER=%s\n", STRINGIFY(LIBAVCODEC_VERSION)); |
| 632 |
printf("BUILD=%d\n", LIBAVCODEC_BUILD); |
638 |
printf("BUILD=%d\n", LIBAVCODEC_BUILD); |
| 633 |
return(0); |
639 |
return(0); |
| 634 |
} |
640 |
} |