Ticket #1939: mythplugins_archiveadd.patch
File mythplugins_archiveadd.patch, 1.7 KB (added by , 19 years ago) |
---|
-
configure
14 14 video="yes" 15 15 dvd="yes" 16 16 weather="yes" 17 archive="yes" 17 18 gallery="yes" 18 19 game="yes" 19 20 news="yes" … … 95 96 96 97 MythWeather related options: 97 98 --enable-mythweather build the mythweather plugin [$weather] 99 100 MythArchive related options: 101 --enable-mytharchive build the mytharchive plugin [$archive] 98 102 EOF 99 103 exit 1 100 104 fi … … 145 149 ;; 146 150 --disable-mythweather) weather="no" 147 151 ;; 152 --enable-mytharchive) archive="yes" 153 ;; 154 --disable-mytharchive) archive="no" 155 ;; 148 156 --enable-mythgallery) gallery="yes" 149 157 ;; 150 158 --disable-mythgallery) gallery="no" … … 206 214 video="yes"; 207 215 dvd="yes"; 208 216 weather="yes"; 217 archive="yes"; 209 218 gallery="yes"; 210 219 game="yes"; 211 220 news="yes"; … … 224 233 video="no"; 225 234 dvd="no"; 226 235 weather="no"; 236 archive="no"; 227 237 gallery="no"; 228 238 game="no"; 229 239 news="no"; … … 570 580 echo " MythWeather plugin will not be built" 571 581 fi 572 582 583 if test "$archive" = "yes" ; then 584 echo " MythArchive plugin will be built" 585 echo "SUBDIRS += mytharchive" >> ./config.pro 586 else 587 echo " MythArchive plugin will not be built" 588 fi 589 573 590 ########################################################### 574 591 # # 575 592 # MythGallery related configuration options #