Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Autoconf configure.ac adjustment. Move AC_CONFIG_AUX_DIR([config]) af…
…ter AC_INIT and before all others.
  • Loading branch information
micahsnyder committed Jun 27, 2019
1 parent ea9a1e3 commit c72b183
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions configure.ac
Expand Up @@ -20,16 +20,18 @@ dnl Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
dnl MA 02110-1301, USA.

AC_PREREQ([2.59])

dnl For a release change [devel] to the real version [0.xy]
dnl also change VERSION below
AC_INIT([ClamAV], [0.102.0-devel], [https://bugzilla.clamav.net/], [clamav], [https://www.clamav.net/])

dnl put configure auxiliary into config
AC_CONFIG_AUX_DIR([config])

dnl enable C++
AC_PROG_CXX()

AH_BOTTOM([#include "platform.h"])
dnl put configure auxiliary into config
AC_CONFIG_AUX_DIR([config])
AC_CONFIG_HEADERS([clamav-config.h libclammspack/config.h:libclammspack/config.h.in])

dnl safety check, this used to be a parameter to AC_INIT
Expand Down

0 comments on commit c72b183

Please sign in to comment.