./configure
make tdd$ autoreconf . -i
configure.ac:10: error: possibly undefined macro: AC_LIBTOOL_DLOPEN
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.
configure.ac:11: error: possibly undefined macro: AC_PROG_LIBTOOL
autoreconf: /usr/local/Cellar/autoconf/2.69/bin/autoconf failed with exit status: 1./configure
[... cut out a bunch of normal output ...]
checking whether LD supports -Wl,-map... yes
checking for the availability of gmock via the GMOCK_HOME variable... ./configure: line 7476: LT_INIT: command not found
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating cpputest.pc
config.status: error: cannot find input file: `Makefile.in'--
You received this message because you are subscribed to the Google Groups "cpputest" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cpputest+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Thanks Heath
Something is odd. Here is my clang info
~/repos/github/cpputest $ gcc -v
Configured with: --prefix=/Library/Developer/CommandLineTools/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 9.0.0 (clang-900.0.39.2)
Target: x86_64-apple-darwin16.7.0
Thread model: posix
InstalledDir: /Library/Developer/CommandLineTools/usr/bin
I had to make some changes to configure.ac. I know nothing about this, but following the errors I added AC_PROG_RANLIB and commented out
# AC_LIBTOOL_DLOPEN
# AC_PROG_LIBTOOL
After that, these commands operated as they should.
cd cpputest
./autoreconf . -I
./configure
Make add
I'd do a pull request if I know what to change that would not break other platforms.
Thanks again, James