INSTALL 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. Installation of mfterm
  2. If you got the sources from git, run "./autogen.sh" to have the auto
  3. tools generate some files requried for the build. If you got the
  4. source from a source code distribution, then you do not have to
  5. perform this step.
  6. To build and install mfterm issue the commands:
  7. $ ./autogen.sh # If using the sources from the git repo
  8. $ ./configure # Possibly with some options, use --help
  9. $ make
  10. $ make install # Possibly using sudo
  11. Dependencies for building mfterm are: libnfc (1.7.0), libreadline,
  12. libcrypto, OpenSSL, bison, flex.
  13. Trouble shooting:
  14. If you get error messages when trying to read a tag. Verify that
  15. libnfc is installed and configured correctly with the 'nfc-list'
  16. utility program (supplied with libnfc). It should not give you any
  17. error messages and if you place a tag on your reader, it should be
  18. detected.
  19. When building, if you get the error message:
  20. "error: implicit declaration of function ‘rpl_malloc’"
  21. Try this: after running the autogen, but before running the configure,
  22. set the shell variable:
  23. $ export ac_cv_func_malloc_0_nonnull=yes
  24. then run configure, make, make install again.