Ignore:
Timestamp:
Aug 31, 2010, 8:25:36 PM (14 years ago)
Author:
gah
Message:

re-merge with latest trunk changes

Location:
branches/blt4/lang/tcl/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/blt4/lang/tcl/src/Makefile.in

    r1643 r1897  
    2525CFLAGS_DEFAULT  = @CFLAGS_DEFAULT@
    2626LIB_SEARCH_DIRS = @LIB_SEARCH_DIRS@
    27 CFLAGS          = @CFLAGS@
    28 TCL_VERSION     = @TCL_VERSION@
     27CFLAGS          = @CFLAGS@ -fPIC
     28TCL_VERSION     = @TCL_VERSION@
    2929TCL_LIB_SPEC    = @TCL_LIB_SPEC@
    3030
     
    3535  -I../../../src/core \
    3636  -I$(srcdir)/../../../src/core \
     37  -I$(srcdir)/../../../src/objects \
    3738  -I$(includedir)
    3839version         = @PACKAGE_VERSION@
     
    6869endif
    6970
     71FFMPEG          = @HAVE_FFMPEG_LIBS@
     72ifeq ($(FFMPEG),yes)
     73    OBJS += RpMediaPlayerTclInterface.o
     74    LIBS += -L../../../src/objects -lRpObjects
     75endif
     76
     77
    7078# Not using     RpLibraryTclInterface.o \
    7179
  • branches/blt4/lang/tcl/src/Rappture_Init.c

    r1578 r1897  
    1515
    1616#include <tcl.h>
     17#include "config.h"
    1718
    1819#ifdef BUILD_rappture
     
    3536extern Tcl_AppInitProc RpEncoding_Init;
    3637extern Tcl_AppInitProc RpUtils_Init;
     38
     39#ifdef BUILD_with_ffmpeg
     40extern Tcl_AppInitProc RpMediaPlayer_Init;
     41#endif
    3742
    3843#ifdef BUILD_Rappture
     
    6570        return TCL_ERROR;
    6671    }
     72#ifdef BUILD_with_ffmpeg
     73    if (RpMediaPlayer_Init(interp) != TCL_OK) {
     74        return TCL_ERROR;
     75    }
     76#endif
    6777    if (RpRlimit_Init(interp) != TCL_OK) {
    6878        return TCL_ERROR;
Note: See TracChangeset for help on using the changeset viewer.