Changeset 3533
- Timestamp:
- Apr 13, 2011 7:13:56 PM (14 years ago)
- Location:
- pjproject/branches/projects/2.0-dev
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/branches/projects/2.0-dev/aconfigure
r3517 r3533 730 730 enable_sdl 731 731 enable_ffmpeg 732 with_ffmpeg 732 733 enable_v4l2 733 734 enable_ipp … … 1410 1411 (hint: use CFLAGS and LDFLAGS env var to set the 1411 1412 include/lib paths) 1413 --with-ffmpeg=DIR Specify alternate FFMPEG prefix 1412 1414 --with-ipp=DIR Specify the Intel IPP location 1413 1415 --with-ipp-samples=DIR Specify the Intel IPP samples location … … 5922 5924 5923 5925 5926 FFMPEG_PREFIX="" 5927 if test "x$with_ffmpeg" != "xno" -a "x$with_ffmpeg" != "x"; then 5928 FFMPEG_PREFIX=$with_ffmpeg 5929 { $as_echo "$as_me:${as_lineno-$LINENO}: result: Using ffmpeg prefix... $FFMPEG_PREFIX" >&5 5930 $as_echo "Using ffmpeg prefix... $FFMPEG_PREFIX" >&6; } 5931 LIBS="-L$FFMPEG_PREFIX/lib $LIBS" 5932 CFLAGS="-I$FFMPEG_PREFIX/include $CFLAGS" 5933 fi 5934 5924 5935 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for avdevice_version in -lavdevice" >&5 5925 5936 $as_echo_n "checking for avdevice_version in -lavdevice... " >&6; } … … 6184 6195 6185 6196 fi 6197 6198 6199 6200 # Check whether --with-ffmpeg was given. 6201 if test "${with_ffmpeg+set}" = set; then : 6202 withval=$with_ffmpeg; 6203 else 6204 with_ffmpeg=no 6205 6206 fi 6207 6186 6208 6187 6209 -
pjproject/branches/projects/2.0-dev/aconfigure.ac
r3517 r3533 785 785 AC_SUBST(ac_ffmpeg_ldflags) 786 786 787 FFMPEG_PREFIX="" 788 if test "x$with_ffmpeg" != "xno" -a "x$with_ffmpeg" != "x"; then 789 FFMPEG_PREFIX=$with_ffmpeg 790 AC_MSG_RESULT([Using ffmpeg prefix... $FFMPEG_PREFIX]) 791 LIBS="-L$FFMPEG_PREFIX/lib $LIBS" 792 LDFLAGS="-L$FFMPEG_PREFIX/lib $LDFLAGS" 793 CFLAGS="-I$FFMPEG_PREFIX/include $CFLAGS" 794 fi 795 787 796 AC_CHECK_LIB(avdevice, 788 797 avdevice_version, … … 825 834 ) 826 835 836 AC_ARG_WITH(ffmpeg, 837 AC_HELP_STRING([--with-ffmpeg=DIR], 838 [Specify alternate FFMPEG prefix]), 839 [], 840 [with_ffmpeg=no] 841 ) 842 843 827 844 dnl # Video for Linux 2 828 845 AC_ARG_ENABLE(v4l2,
Note: See TracChangeset
for help on using the changeset viewer.