2 # Process this file with autoconf to produce a configure script.
6 AM_INIT_AUTOMAKE(vorbose, 0.1, [vorbis-dev@xiph.org])
7 AM_CONFIG_HEADER(config.h)
8 AC_CONFIG_FILES([Makefile src/Makefile])
10 # Checks for programs.
13 # Checks for libraries.
15 AC_CHECK_LIB(ogg2, ogg2pack_eop, [], [
16 AC_MSG_ERROR([$PACKAGE requires libogg2])
19 # Checks for header files.
21 AC_CHECK_HEADERS([stdlib.h string.h])
22 AC_CHECK_HEADERS([ogg2/ogg.h])
24 dnl we cheat with the vorbis headers, using our own copies since we
27 # Checks for typedefs, structures, and compiler characteristics.
30 # Checks for library functions.
33 AC_CHECK_FUNCS([memset])