I am trying to get the command line arguments of ./configure
in confdefs.h
using something like:
AC_DEFINE_UNQUOTED([CONFIGURATION], ["$@"], [Configuration commandline parameters])
But it gets evaluted to
#define CONFIGURATION "darwin12.4.0"
What am I doing wrong?