Changeset a64501fd25cd7d18913de63ecd500c5bec10669d

Show
Ignore:
Timestamp:
18/03/03 03:21:47 (6 years ago)
Author:
Olivier Teulière <ipkiss@videolan.org>
git-committer:
Olivier Teulière <ipkiss@videolan.org> 1047954107 +0000
git-parent:

[71dfd6a5fe4645469c7648e6bc570407ad5485a5]

git-author:
Olivier Teulière <ipkiss@videolan.org> 1047954107 +0000
Message:

Keep quiet, explanations will follow.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • configure.ac.in

    r453fe58 ra64501f  
    16701670AC_CHECK_HEADERS(zlib.h, [ 
    16711671  LDFLAGS_mp4="${LDFLAGS_mp4} -lz" 
     1672  LDFLAGS_skins="${LDFLAGS_skins} -lz" 
    16721673] ) 
     1674 
     1675 
     1676dnl 
     1677dnl skins module 
     1678dnl 
     1679AC_CHECK_HEADERS(libtar.h, [ 
     1680  LDFLAGS_skins="${LDFLAGS_skins} -ltar" 
     1681] ) 
     1682 
     1683 
    16731684 
    16741685dnl 
     
    22282239then 
    22292240    PLUGINS="${PLUGINS} beos" 
     2241fi 
     2242 
     2243dnl 
     2244dnl Skins module 
     2245dnl 
     2246AC_ARG_ENABLE(skins, 
     2247  [  --enable-skins         Win32 skins module (default enabled on Win32)]) 
     2248if test "x${enable_skins}" != "xno"; then 
     2249  if test "x${SYS}" = "xmingw32" -o "x${SYS}" = "xcygwin"; then 
     2250    PLUGINS="${PLUGINS} skins" 
     2251    CPPFLAGS_skins="${CPPFLAGS_skins} -Imodules/gui/skins -Imodules/gui/skins/src -Imodules/gui/skins/win32 -Imodules/gui/skins/controls" 
     2252    LDFLAGS_skins="${LDFLAGS_skins} -lgdi32 -lcomdlg32 -lole32 -luuid -lcomctl32 -lmsimg32" 
     2253  fi 
    22302254fi 
    22312255 
  • modules/Makefile.am

    rc842ca1 ra64501f  
    5151    gui/qnx/Modules.am \ 
    5252    gui/qt/Modules.am \ 
     53    gui/skins/Modules.am \ 
    5354    gui/win32/Modules.am \ 
    5455    gui/wxwindows/Modules.am \ 
  • toolbox

    rb6d8511 ra64501f  
    22 
    33##  toolbox for the VLC media player 
    4 ##  $Id: toolbox,v 1.17 2003/03/18 01:54:40 sam Exp $ 
     4##  $Id: toolbox,v 1.18 2003/03/18 02:21:47 ipkiss Exp $ 
    55## 
    66##  Authors: Samuel Hocevar <sam@zoy.org> 
     
    2727  --update-glade                generate and fix Glade code 
    2828  --update-glade2               generate and fix Glade 2 code 
     29  --update-flexml               generate and fix flexml and flex code 
    2930EOF 
    3031  exit 1 
     
    6263  --update-includes) 
    6364    action=includes 
     65    ;; 
     66  --update-flexml) 
     67    action=flexml 
    6468    ;; 
    6569  --update-glade|--fix-glade) 
     
    473477fi 
    474478 
     479## 
     480##  Fix flexml-generated files 
     481## 
     482if test "${action}" = "flexml" 
     483then 
     484  cd modules/gui/skins/parser 
     485  flexml -SH -a skin.act skin.dtd 
     486  # comment the dummy main function 
     487  file=skin.c 
     488  sed 's@int main@//int main@' < $file > $file.$$.bak 
     489  mv -f $file.$$.bak $file 
     490  flex -oflex.c -BLs skin.l 
     491fi 
     492