eblossom / vita-49

Virtual Radio Transport (VRT) (VITA-49)
GNU General Public License v3.0
27 stars 9 forks source link

Generation of configure file #2

Open Uruko opened 5 years ago

Uruko commented 5 years ago

Hi, I tried to run the VITA 49 implementation in Windows10 but I got stuck in the installation process. Before running ./configure I generated it by running autoconf which unfortunately gave the following errors:

configure.ac:20: error: possibly undefined macro: AM_CONFIG_HEADER If this token and others are legitimate, please use m4_pattern_allow. See the Autoconf documentation. configure.ac:29: error: possibly undefined macro: _AM_SET_OPTION configure.ac:30: error: possibly undefined macro: AM_INIT_AUTOMAKE configure.ac:94: error: possibly undefined macro: AM_PROG_AS configure.ac:101: error: possibly undefined macro: AC_LIBTOOL_WIN32_DLL configure.ac:102: error: possibly undefined macro: AC_PROG_LIBTOOL

Can you give me directions on how to solve this issue? Uruko

wfdanowitz commented 5 years ago

On Linux at least you need to run aclocal before running autoconf.

LIII-XXII commented 4 years ago

I was able to build out of the box on Linux by running ./bootstrap && ./configure and then make. HTH