Changeset a5634f95c58def01aa4cee4c881493c3ec6d6507

Show
Ignore:
Timestamp:
28/01/07 19:18:52 (2 years ago)
Author:
Cyril Deguet <asmax@videolan.org>
git-committer:
Cyril Deguet <asmax@videolan.org> 1170008332 +0000
git-parent:

[0aa5744310de34261dc39c192a0a93046d79a3df]

git-author:
Cyril Deguet <asmax@videolan.org> 1170008332 +0000
Message:

- thou shalt keep menuconfig up-to-date and not disable it

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • build-vlc

    r4c5ad8e ra5634f9  
    8888HTTPD httpd 
    8989JACK jack 
     90QT4 qt4 
    9091" 
    9192PATHS=" 
     
    137138 
    138139echo -n "./configure " > .cmd 
    139 source .config 
     140. ./.config 
    140141 
    141142check_features () { 
     
    143144do 
    144145   eval x="\$CONFIG_$1" 
    145    if [ "$x" == "y" ] 
     146   if [ "$x" = "y" ] 
    146147   then 
    147       if [ "$1" == "WITHFFMPEGMP3LAME" ] || [ "$1" == "WITHFFMPEGFAAC" ] 
     148      if [ "$1" = "WITHFFMPEGMP3LAME" ] || [ "$1" = "WITHFFMPEGFAAC" ] 
    148149      then 
    149150         echo -n "--with-$2 " >> .cmd 
     
    187188fi 
    188189 
    189 source .cmd 
     190. ./.cmd 
    190191make 
    191192rm -f .cmd 
  • config.in

    r4c5ad8e ra5634f9  
    1717  string 'wx-config name' CONFIG_WITHWXCONFIG "" 
    1818fi 
     19bool 'QT4 interface' CONFIG_QT4 
    1920bool 'Skins interface' CONFIG_SKINS 
    2021if [ "$CONFIG_SKINS" = "y" ]; then 
  • configure.ac

    r0e867ba ra5634f9  
    45434543dnl 
    45444544AC_ARG_ENABLE(skins2, 
    4545   [  --enable-skins2         Skins2 interface module (experimental)]) 
     4545  [  --enable-skins2         Skins2 interface module (default disabled)]) 
    45464546if test "${enable_skins2}" = "yes" || 
    45474547  (test "${SYS}" != "darwin" && test "${SYS}" != "beos" && 
  • menuconfig

    rec8172d ra5634f9  
    1 #! /bin/sh 
     1#! /bin/bash 
    22# 
    33# VLC media player configuration script, borrowed from linux menuconfig 
    44# Cyril Deguet <asmax@videolan.org> 
    5  
    6 # Currently out of date 
    7  
    8 echo "'./menuconfig' is currently not maintained and out-of-date. Use './configure' instead." 
    9  
    10 exit 1 
    11  
    125# 
    136#-----------------------------------------------------------------