いくつかのMacPortsパッケージによってインストールされたすべてのファイルをリストする方法は?
たとえば、Funtoo(またはGentoo)では、次のコマンドで同じことを実現できます。
equery b [package name]
いくつかのMacPortsパッケージによってインストールされたすべてのファイルをリストする方法は?
たとえば、Funtoo(またはGentoo)では、次のコマンドで同じことを実現できます。
equery b [package name]
回答:
私の場合、CFLAGS LDFLAGSが必要でした。
# ensure libyaml is installed
port install libyaml +universal
# if you like you can check the location of the installied files (especially the .h file)
# port contents libyaml
# now configure with these options
CFLAGS="-I/opt/local/include/ " LDFLAGS="-L/opt/local/lib/" ./configure
make
sudo make install
port provides filename