Changeset 4117 for branches


Ignore:
Timestamp:
Jan 14, 2014 3:00:10 PM (10 years ago)
Author:
dkearney
Message:

updating the rappture 1.3 branch to allow users to build just the Rappture
C/C++/Fortran bindings, including the new configure flag --enable-lang flag.
This command also brings in a fix for what looks like a typo in the configure
script when dealing with the --with-ffmpeg=yes flag. this fix was made in the
trunk, along with the inclusion of libavutil/mathematics.h header which was
left out of the commit for now. I'm not sure if this new header is relevant to
the 1.3 branch.

Location:
branches/1.3
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/1.3/Makefile.in

    r3745 r4117  
    3333ENABLE_GUI      = @ENABLE_GUI@
    3434HAVE_FFMPEG     = @HAVE_FFMPEG_LIBS@
    35 TARGETS         = src lang lib
     35TARGETS         = src lib
    3636
     37ifneq ($(ENABLE_LANG),)
     38  TARGETS += lang
     39endif
    3740ifneq ($(ENABLE_GUI),)
    3841  TARGETS += gui builder tester examples
  • branches/1.3/configure

    r3739 r4117  
    685685HAVE_FFMPEG_LIBS
    686686ENABLE_GUI
     687ENABLE_LANG
    687688FFMPEG
    688689LDFLAGS_DEFAULT
     
    94939494#--------------------------------------------------------------------
    94949495if test "${with_ffmpeg}" != "no" ; then
    9495   if test "${with_tclsh}" = "yes" ; then
     9496  if test "${with_ffmpeg}" = "yes" ; then
    94969497    # Extract the first word of "ffmpeg", so it can be a program name with args.
    94979498set dummy ffmpeg; ac_word=$2
     
    1006610067  fi
    1006710068fi
     10069
    1006810070
    1006910071
  • branches/1.3/configure.in

    r3739 r4117  
    261261#--------------------------------------------------------------------
    262262if test "${with_ffmpeg}" != "no" ; then
    263   if test "${with_tclsh}" = "yes" ; then
     263  if test "${with_ffmpeg}" = "yes" ; then
    264264    AC_PATH_PROG(FFMPEG, ffmpeg, [], $PATH)
    265265  else
     
    341341AC_SUBST(CFLAGS_DEBUG)
    342342AC_SUBST(CFLAGS_OPTIMIZE)
     343AC_SUBST(ENABLE_LANG)
    343344AC_SUBST(ENABLE_GUI)
    344345AC_SUBST(FFMPEG)
Note: See TracChangeset for help on using the changeset viewer.