I have a very basic understanding of how autoconf and automake work, gathered from various tutorials. However, as I would like my libraries to be flexible during their builds, they need to have the --with-FEATURE and --without-FEATURE functionality commonly found in other programs. How do I implement this?
I have a very basic understanding of how autoconf and automake work, gathered from
Share
You’ll want to use
AC_ARG_WITH, for example: