Changeset 4880


Ignore:
Timestamp:
Jun 13, 2014, 7:41:12 AM (9 years ago)
Author:
Sam Hocevar
Message:

build: update build system.

Location:
libpipi/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • libpipi/trunk/ThePimp/Makefile.am

    r3561 r4880  
    11# $Id: $
    22
    3 pkglibdir = $(libdir)/ThePimp
     3mypkglibdir = $(libdir)/ThePimp
    44
    55pimp_sources = \
     
    3333
    3434if USE_CSHARP
    35 pkglib_DATA = ThePimp.exe
     35mypkglib_DATA = ThePimp.exe
    3636bin_SCRIPTS = pimp
    3737endif
  • libpipi/trunk/bootstrap

    r3644 r4880  
    3838# Check for automake
    3939amvers="no"
    40 for v in 11 10 9 8 7 6 5; do
     40for v in 15 14 13 12 11 10 9 8 7 6 5; do
    4141  if automake-1.${v} --version >/dev/null 2>&1; then
    4242    amvers="-1.${v}"
  • libpipi/trunk/configure.ac

    r4692 r4880  
    55AC_CONFIG_AUX_DIR(.auto)
    66AC_CANONICAL_SYSTEM
    7 AM_INIT_AUTOMAKE([no-define tar-ustar])
     7AM_INIT_AUTOMAKE([subdir-objects no-define tar-ustar silent-rules])
    88dnl AM_MAINTAINER_MODE
    99
     
    233233  PKG_CHECK_MODULES([LIBSWSCALE], [libswscale], [:], [ac_cv_my_have_ffmpeg=no])
    234234fi
     235# Disable for now
     236ac_cv_my_have_ffmpeg="no"
    235237if test "${ac_cv_my_have_ffmpeg}" != "no"; then
    236238  AC_DEFINE(USE_FFMPEG, 1, Define to 1 to use FFmpeg)
  • libpipi/trunk/examples/dumpmovie.c

    r4704 r4880  
    101101        }
    102102
    103         avcodec_decode_video(ctx, frame, &finished, packet.data, packet.size);
     103        avcodec_decode_video2(ctx, frame, &finished, packet.data, packet.size);
    104104        if(!finished)
    105105        {
  • libpipi/trunk/examples/storyboard.c

    r4736 r4880  
    115115        }
    116116
    117         avcodec_decode_video(ctx, frame, &finished, packet.data, packet.size);
     117        avcodec_decode_video2(ctx, frame, &finished, packet.data, packet.size);
    118118        if(!finished)
    119119        {
Note: See TracChangeset for help on using the changeset viewer.