Ticket #484: configure_libexif.patch
File configure_libexif.patch, 1.3 KB (added by , 20 years ago) |
---|
-
configure
66 66 MythGallery related options: 67 67 --enable-mythgallery build the mythgallery plugin [$gallery] 68 68 --enable-exif enable reading of EXIF headers [$exif] 69 --use-new-libexif use libexif > version 0.6.9 [$newexif] 69 70 70 71 MythGame related options: 71 72 --enable-mythgame build the mythgame plugin [$game] … … 162 163 ;; 163 164 --enable-exif) exif="yes" 164 165 ;; 166 --use-new-libexif) newexif="yes" 167 ;; 165 168 --disable-exif) exif="no" 166 169 ;; 167 170 --enable-festival) festival="yes" … … 654 657 ./mythgallery/mythgallery/config.h 655 658 fi 656 659 else 660 if test "$newexif" = "yes" ; then 661 echo "#define NEW_LIB_EXIF 1" >> \ 662 ./mythgallery/mythgallery/config.h 663 else 657 664 echo 658 665 echo "Could not determine libexif version, if it is greater than" 659 echo "or equal to 0.6.9 you may need to add this line: " 660 echo "#define NEW_LIB_EXIF 1" 661 echo "to mythgallery/mythgallery/config.h" 666 echo "or equal to 0.6.9 you need to add --use-new-libexif to the" 667 echo "configure flags" 662 668 echo 669 fi 663 670 fi 664 671 fi 665 672