1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
*** configure.orig Sat Sep 20 05:09:58 2003
--- configure Sat Sep 20 05:10:12 2003
***************
*** 2701,2716 ****
}
else
{
! printf("\n*** 'smpeg-config --version' returned %d.%d.%d, but the
! minimum version\n", $smpeg_major_version, $smpeg_minor_version,
! $smpeg_micro_version);
! printf("*** of SMPEG required is %d.%d.%d. If smpeg-config is
! correct, then it is\n", major, minor, micro);
printf("*** best to upgrade to the required version.\n");
! printf("*** If smpeg-config was wrong, set the environment variable
! SMPEG_CONFIG\n");
! printf("*** to point to the correct copy of smpeg-config, and remove
! the file\n");
printf("*** config.cache before re-running configure\n");
return 1;
}
--- 2701,2711 ----
}
else
{
! printf("\n*** 'smpeg-config --version' returned %d.%d.%d, but the minimum version\n", $smpeg_major_version, $smpeg_minor_version, $smpeg_micro_version);
! printf("*** of SMPEG required is %d.%d.%d. If smpeg-config is correct, then it is\n", major, minor, micro);
printf("*** best to upgrade to the required version.\n");
! printf("*** If smpeg-config was wrong, set the environment variable SMPEG_CONFIG\n");
! printf("*** to point to the correct copy of smpeg-config, and remove the file\n");
printf("*** config.cache before re-running configure\n");
return 1;
}
|