Debian でアスタリスクをコンパイル: `ptlib-config` が見つかりません。

Debian でアスタリスクをコンパイル: `ptlib-config` が見つかりません。

私のスターが./configure戻ってきました:

checking /root/pwlib/include/ptlib.h usability... no
checking /root/pwlib/include/ptlib.h presence... no
checking for /root/pwlib/include/ptlib.h... no
checking /usr/local/include/ptlib.h usability... no
checking /usr/local/include/ptlib.h presence... no
checking for /usr/local/include/ptlib.h... no
checking /usr/include/ptlib.h usability... yes
checking /usr/include/ptlib.h presence... yes
checking for /usr/include/ptlib.h... yes
checking for ptlib-config... no
./configure: line 27253: --ldflags: command not found
Cannot find ptlib-config - please install and try again

しかし、明らかに以下をインストールptlib-devしました。

# dpkg --list libpt*
ii  libpt-dbg                            2.10.4~dfsg-1
ii  libpt-dev                            2.10.4~dfsg-1
ii  libpt-doc                            2.10.4~dfsg-1
ii  libpt2.10.4                          2.10.4~dfsg-1
ii  libpth20                             2.0.7-16
ii  libpthread-stubs0:amd64              0.3-3
ii  libpthread-stubs0-dev:amd64          0.3-3

答え1

install libpt-dev

export PTLIB_CONFIG=/usr/share/ptlib/make/ptlib-config

./configure

make

答え2

apt-fileツールを使用して、特定のファイル名を含むパッケージを確認できます。

$ sudo apt-get install apt-file
...
$ sudo apt-file update
...
$ apt-file search ptlib-config
libpt-dev: /usr/share/ptlib/make/ptlib-config

また、次のコマンドを実行して、特定のパッケージのすべてのビルド時間依存関係を検索できるようにする必要があります。

$ sudo apt-get build-dep $PACKAGE # where PACKAGE=asterisk in this case

答え3

これは実行前に設定することで私にとって効果的でした./configure

export PTLIB_CONFIG=/usr/lib/pkgconfig

それからアンプ:

./configure

答え4

install libpt-dev

export PTLIB_CONFIG=/usr/share/ptlib/make/ptlib-config

./configure

関連情報