Skip to content

Commit

Permalink
fix a latent autoconf error
Browse files Browse the repository at this point in the history
  • Loading branch information
mikebrady committed Jul 10, 2024
1 parent 091773b commit 4e8a6a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ AM_CONDITIONAL([USE_GIT_VERSION], [test -n "$GIT" && test -e ".git/index" ])

# Checks for libraries.
AC_CHECK_LIB([m],[exp], , AC_MSG_ERROR(maths library needed))
PKG_CHECK_MODULES([ALSA], [alsa], [LIBS="${ALSA_LIBS} ${LIBS}"])
PKG_CHECK_MODULES([alsa], [alsa], [CFLAGS="${alsa_CFLAGS} ${CFLAGS}" LIBS="${alsa_LIBS} ${LIBS}"])

# Checks for header files.
AC_CHECK_HEADERS([stdint.h stdlib.h string.h math.h])
Expand Down

0 comments on commit 4e8a6a2

Please sign in to comment.