Changeset 2705 for branches/blt4/lang


Ignore:
Timestamp:
Nov 28, 2011, 1:21:34 PM (13 years ago)
Author:
gah
Message:
 
File:
1 edited

Legend:

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

    r2676 r2705  
    2828TCL_VERSION     = @TCL_VERSION@
    2929TCL_LIB_SPEC    = @TCL_LIB_SPEC@
     30HAVE_FFMPEG     = @HAVE_FFMPEG_LIBS@
     31HAVE_NCURSES    = @HAVE_LIBNCURSES@
    3032
    3133CC_SWITCHES     = $(CFLAGS) $(CFLAGS_DEBUG) $(INCLUDES) $(DEFINES)
     
    4951LIBS = \
    5052        -L../../../src/core -lrappture \
    51         $(TCL_LIB_SPEC) -lncurses -lexpat -lz -lm -lstdc++
     53        $(TCL_LIB_SPEC) -lexpat -lz -lm -lstdc++
    5254
    5355OBJS = \
    5456        Rappture_Init.o \
    55         RpCurses.o \
    5657        RpDaemon.o \
    5758        RpEncodeTclInterface.o \
     
    7071endif
    7172
    72 FFMPEG          = @HAVE_FFMPEG_LIBS@
    73 ifeq ($(FFMPEG),yes)
     73ifeq ($(HAVE_LIBCURSES),yes)
     74   OBJS += RpCurses.o
     75   LIBS += -lncurses
     76endif
     77
     78ifeq ($(HAVE_FFMPEG),yes)
    7479    OBJS += RpVideoTclInterface.o
    7580    LIBS += -L../../../src/objects -lRpObjects
Note: See TracChangeset for help on using the changeset viewer.