0
root@ip-**-**-**-**:/home/jeff/m3u8-segmenter# ./configure
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of gcc... gcc3
checking whether make sets $(MAKE)... (cached) yes
checking how to run the C preprocessor... gcc -E
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for sys/types.h... (cached) yes
checking signal.h usability... yes
checking signal.h presence... yes
checking for signal.h... yes
checking getopt.h usability... yes
checking getopt.h presence... yes
checking for getopt.h... yes
checking for stdlib.h... (cached) yes
checking for GNU libc compatible malloc... yes
checking for memmove... yes
checking for memset... yes
checking for strrchr... yes
checking for strtol... yes
./configure: line 4160: PKG_PROG: command not found
./configure: line 4161: syntax error near unexpected token `FFMPEG,'
./configure: line 4161: `PKG_CHECK_MODULES(FFMPEG, libavformat libavcodec libavutil)'

FFMPEG、PKG_PROG などを含むすべての依存関係が整っていますが、これらのエラーが発生し、途方に暮れています。何か案は?

4

1 に答える 1

5

このコードを Mac OSX 10.8 で正常にコンパイルしましたが、以前にそのエラーが発生しました。私がしたことは、それらの行番号に移動して、それらのチェックをコメントアウトすることでした. FFMPEG、avformatなどの検証を行っているだけだと思いますが、指示に従っていれば、すでに行われているはずです。次に、./configure と make を再実行しました。最終的なバイナリはうまく機能します。問題ない。それ以外は、手順を最初からやり直しますが、aclocal、automake などはスキップしてください。./configure を実行するだけです。それは私にとってもうまくいき、バイナリコードは正常に動作しています。私はセグメンターを問題なく動作させましたが、これも Mac OSX 10.8 です。幸運を。!

于 2012-11-15T18:06:06.747 に答える