Changeset 34f237461596f6e3b79b81a982b11113978b78a4

Show
Ignore:
Timestamp:
07/07/03 18:59:00 (5 years ago)
Author:
Sam Hocevar <sam@videolan.org>
git-committer:
Sam Hocevar <sam@videolan.org> 1057597140 +0000
git-parent:

[76bbfbacd9a03ee59875db49c5a31c0f854227d5]

git-author:
Sam Hocevar <sam@videolan.org> 1057597140 +0000
Message:
  • modules/control/corba/: Olivier Aubert's CORBA plugin. Almost verbatim,
    compiles cleanly (to build the medicacontrol.so library you need to cd to
    that directory and "make medicacontrol.so") but untested.
  • src/playlist/playlist.c: Mostly harmless fix to playlist.c suggested by
    Olivier.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • configure.ac

    r0afe461 r34f2374  
    11dnl Autoconf settings for vlc 
    2 dnl $Id: configure.ac,v 1.26 2003/07/07 14:56:22 massiot Exp $ 
     2dnl $Id: configure.ac,v 1.27 2003/07/07 16:59:00 sam Exp $ 
    33 
    44AC_INIT(vlc,0.6.0) 
     
    29282928    AX_ADD_PLUGINS([lirc]) 
    29292929    AX_ADD_LDFLAGS([lirc],[-llirc_client]) 
     2930  fi 
     2931fi 
     2932 
     2933dnl 
     2934dnl corba (ORBit) plugin 
     2935dnl 
     2936AC_ARG_ENABLE(corba, 
     2937  [  --enable-corba          corba interface support (default disabled)]) 
     2938if test "${enable_corba}" = "yes"; then 
     2939  ORBIT_PATH="${PATH}" 
     2940  AC_ARG_WITH(orbit-config-path, 
     2941  [    --with-orbit-config-path=PATH orbit-config path (default search in \$PATH)]) 
     2942  if test "${with_orbit_config_path}" != "no"; then 
     2943    ORBIT_PATH="${with_orbit_config_path}:${PATH}" 
     2944  fi 
     2945  # look for orbit2-config 
     2946  AC_PATH_PROG(ORBIT_CONFIG, orbit2-config, no, ${ORBIT_PATH}) 
     2947  if test "${ORBIT_CONFIG}" != "no"; then 
     2948    AX_ADD_CFLAGS(corba,[`${ORBIT_CONFIG} --cflags server`]) 
     2949    AX_ADD_LDFLAGS(corba,[`${ORBIT_CONFIG} --libs server | sed 's,-rdynamic,,'`]) 
     2950    # now look for the orbit.h header 
     2951    CPPFLAGS="${CPPFLAGS_save} ${CFLAGS_corba}" 
     2952    ac_cv_corba_headers=yes 
     2953    AC_CHECK_HEADERS(orbit/orbit.h, , [ 
     2954      ac_cv_corba_headers=no 
     2955      AC_MSG_ERROR([Could not find corba development headers]) 
     2956    ]) 
     2957    if test "${ac_cv_corba_headers}" = "yes"; then 
     2958      AX_ADD_PLUGINS(corba) 
     2959    fi 
     2960    CPPFLAGS="${CPPFLAGS_save}" 
    29302961  fi 
    29312962fi 
     
    32383269  modules/codec/spudec/Makefile 
    32393270  modules/control/Makefile 
     3271  modules/control/corba/Makefile 
    32403272  modules/control/lirc/Makefile 
    32413273  modules/control/rc/Makefile 
  • src/playlist/playlist.c

    re3c317c r34f2374  
    33 ***************************************************************************** 
    44 * Copyright (C) 1999-2001 VideoLAN 
    5  * $Id: playlist.c,v 1.40 2003/06/27 13:38:54 sam Exp $ 
     5 * $Id: playlist.c,v 1.41 2003/07/07 16:59:00 sam Exp $ 
    66 * 
    77 * Authors: Samuel Hocevar <sam@zoy.org> 
     
    413413        if( p_playlist->p_input ) 
    414414        { 
     415            PlayItem( p_playlist ); 
    415416            input_SetStatus( p_playlist->p_input, INPUT_STATUS_PLAY ); 
    416417        }