solaris sed (and probably others) fix for faad detection by Michael Gernoth <simigern@stud.uni-erlangen.de>

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10820 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
alex 2003-09-05 23:49:18 +00:00
parent 4b1720734e
commit c821c41c8b
1 changed files with 2 additions and 2 deletions

4
configure vendored
View File

@ -4315,9 +4315,9 @@ cat > $TMPC <<EOF
#endif
int main(void) {
#ifdef FAAD2_VERSION
printf("%s",FAAD2_VERSION);
printf("%s\n",FAAD2_VERSION);
#else
printf("1.0");
printf("1.0\n");
#endif
return 0;
}