我将按照本教程在我的机器上设置第二步的janus
install_libnice.sh
#!/bin/bash
# install_libnice.sh
git clone https://gitlab.freedesktop.org/libnice/libnice.git
cd libnice
./autogen.sh
./configure --prefix=/usr
make && sudo make install并执行此命令
bash install_libnice.sh给予
Cloning into 'libnice'...
warning: redirecting to https://gitlab.freedesktop.org/libnice/libnice.git/
remote: Enumerating objects: 15336, done.
remote: Counting objects: 100% (15336/15336), done.
remote: Compressing objects: 100% (4011/4011), done.
remote: Total 15336 (delta 11795), reused 14714 (delta 11278), pack-reused 0
Receiving objects: 100% (15336/15336), 2.77 MiB | 429.00 KiB/s, done.
Resolving deltas: 100% (11795/11795), done.
install_libnice.sh: line 6: ./autogen.sh: No such file or directory
install_libnice.sh: line 7: ./configure: No such file or directory
make: *** No targets specified and no makefile found. Stop.如何在ubuntu中解决这个问题?
发布于 2021-01-27 19:31:55
查看:https://gitlab.freedesktop.org/libnice/libnice
libnice use now meson builder
https://stackoverflow.com/questions/63153091
复制相似问题