Changeset 9dadc4294 in mythtv


Ignore:
Timestamp:
Sep 20, 2013, 6:21:56 PM (11 years ago)
Author:
Stuart Morgan <smorgan@…>
Branches:
devel/2020-player, devel/ffmpeg-resync, fixes/0.28, fixes/29, fixes/30, fixes/31, github-templates, master
Children:
330f4190a
Parents:
58dd8f31a
Message:

Disable the old mythgallery plugin by default. It will be removed once the new gallery is mature and stable enough.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • mythplugins/configure

    r58dd8f31a r9dadc4294  
    273273archive
    274274browser
    275 flix
    276275gallery
    277276game
     
    283282"
    284283
     284DEPRECATED_PLUGIN_LIST="
     285flix
     286gallery
     287"
     288
    285289CONFIG_LIST="
    286290opengl
     
    299303
    300304enable $PLUGIN_LIST $CONFIG_LIST $DEPEND_LIST
     305disable $DEPRECATED_PLUGIN_LIST
    301306
    302307prefix="/usr/local"
     
    328333  --help                   print this message
    329334  --enable-all             Enable all options
    330   --enable-opengl          enable OpenGL (Music and Gallery) [$opengl]
     335  --enable-opengl          enable OpenGL (MythGallery) [$opengl]
    331336  --previous               use previous configure parameters if possible
    332337
     
    417422  if is_in $option $PLUGIN_LIST; then
    418423      $action $option
     424  elif is_in $option $DEPRECATED_PLUGIN_LIST; then
     425      $action $option
    419426  else
    420427      die_unknown $opt
     
    432439  ;;
    433440  --enable-all)
    434       enable $PLUGIN_LIST $CONFIG_LIST
     441      enable $DEPRECATED_PLUGIN_LIST $PLUGIN_LIST $CONFIG_LIST
    435442  ;;
    436443  --disable-all)
    437       disable $PLUGIN_LIST $CONFIG_LIST
     444      disable $DEPRECATED_PLUGIN_LIST $PLUGIN_LIST $CONFIG_LIST
    438445  ;;
    439446  --enable-?*|--disable-?*)
Note: See TracChangeset for help on using the changeset viewer.