Ticket #5176: kenburns-configure.patch
| File kenburns-configure.patch, 1.8 KB (added by , 18 years ago) |
|---|
-
configure
34 34 aac="no" # compile fails w/libfaad v2.0 35 35 exif="yes" 36 36 newexif="yes" 37 fdlib="no" 37 38 festival="no" # no config detection/setup routine 38 39 createdvd="yes" 39 40 createarchive="yes" … … 81 82 --enable-mythgallery build the mythgallery plugin [$gallery] 82 83 --enable-exif enable reading of EXIF headers [$exif] 83 84 --enable-new-exif use libexif > version 0.6.9 [$newexif] 84 85 85 86 MythGame related options: 86 87 --enable-mythgame build the mythgame plugin [$game] 87 88 … … 244 245 ;; 245 246 --disable-exif) exif="no" 246 247 ;; 248 --enable-fdlib) fdlib="yes" 249 ;; 250 --disable-fdlib) fdlib="no" 251 ;; 247 252 --enable-festival) festival="yes" 248 253 ;; 249 254 --disable-festival) festival="no" … … 427 432 fi 428 433 fi 429 434 435 if test "$fdlib" != "no" ; then 436 fdlib="no" 437 if has_library libfd ; then 438 if has_header fdlib.h ; then 439 fdlib="yes" 440 fi 441 fi 442 fi 443 430 444 if test "$music" != "no" ; then 431 445 mad="no" 432 446 if has_library libmad && has_header mad.h ; then … … 795 809 if test "$exif" = "no" ; then 796 810 echo " EXIF support will not be included in MythGallery" 797 811 fi 812 813 if test "$fdlib" = "yes" ; then 814 echo " fdlib support will be included in MythGallery" 815 echo "#define FDLIB_SUPPORT 1" >> ./mythgallery/mythgallery/config.h 816 echo "LIBS += -lfd" >> ./mythgallery/mythgallery/config.pro 817 fi 818 819 if test "$fdlib" = "no" ; then 820 echo " fdlib support will not be included in MythGallery" 821 fi 798 822 fi 799 823 800 824 ###########################################################
