Instalando o LibNFC no ubuntu

3

Eu tenho alguns chips NFC que eu quero ser capaz de ler com a minha instalação do Ubuntu, eu tenho uma placa Breakout PN532, e eu quero instalar o LibNFC para que eu possa modificá-los e lê-los. Eu tenho seguido um tutorial e as etapas são assim:

apt-get install autoconf libtool libusb-dev libpcsclite-dev build-essential
wget https://github.com/nfc-tools/libnfc/releases/download/libnfc-1.7.1/libnfc-1.7.1.tar.bz2
tar -jxvf libnfc-1.7.1.tar.bz2
cd libnfc-1.7.1
autoreconf -vis
./configure --with-drivers=all --sysconfdir=/etc --prefix=/usr
make
sudo make install
sudo mkdir /etc/nfc
sudo mkdir /etc/nfc/devices.d

No entanto, fico preso em

make

Eu recebo um erro de incompatibilidade de versão, mas não sei como resolvê-lo, qualquer pesquisa foi inútil, aqui está o fragmento do código de erro.

(CDPATH="${ZSH_VERSION+.}:" && cd . && autoheader) rm -f stamp-h1 touch config.h.in cd . && /bin/bash ./config.status config.h config.status: creating config.h make all-recursive make[1]: Entering directory '/home/ubuntu/libnfc-1.7.1'
Making all in libnfc
make[2]: Entering directory '/home/ubuntu/libnfc-1.7.1/libnfc' Making all in chips
make[3]: Entering directory '/home/ubuntu/libnfc-1.7.1/libnfc/chips' CC libnfcchips_la-pn53x.lo
libtool: Version mismatch error. This is libtool 2.4.6 Debian-2.4.6-0.1, but the
libtool: definition of this LT_INIT comes from libtool 2.4.2.
libtool: You should recreate aclocal.m4 with macros from libtool 2.4.6 Debian-2.4.6-0.1
libtool: and run autoconf again.
Makefile:397: recipe for target 'libnfcchips_la-pn53x.lo' failed
make[3]: *** [libnfcchips_la-pn53x.lo] Error 63
make[3]: Leaving directory '/home/ubuntu/libnfc-1.7.1/libnfc/chips'
Makefile:613: recipe for target 'all-recursive' failed
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory '/home/ubuntu/libnfc-1.7.1/libnfc'
Makefile:478: recipe for target 'all-recursive' failed
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory '/home/ubuntu/libnfc-1.7.1'
Makefile:385: recipe for target 'all' failed
make: *** [all] Error 2

Atualização : em vez disso, fiz o download de este site (está na página da wiki ) e seguiu o arquivo INSTALL (com um ajuste necessário)

  1. ./configure --prefix=/usr

  2. make

  3. sudo make install

Isso fará isso

    
por Jacob 01.06.2017 / 01:02

1 resposta

0

Tente instalar o pacote libtool-bin

    
por 06.12.2017 / 17:59

Tags