X-Git-Url: http://andersk.mit.edu/gitweb/libyaml.git/blobdiff_plain/cec6fc98ebecc208edc30a900e6ab195e7c21851..9db8216095b4785c2996c00b8da61de88779e452:/configure.ac diff --git a/configure.ac b/configure.ac index 34d7f70..108201d 100644 --- a/configure.ac +++ b/configure.ac @@ -2,9 +2,9 @@ # Define the package version numbers and the bug reporting link. m4_define([YAML_MAJOR], 0) -m4_define([YAML_MINOR], 0) -m4_define([YAML_PATCH], 1) -m4_define([YAML_BUGS], [http://pyyaml.org/newticket?component=libyaml]) +m4_define([YAML_MINOR], 1) +m4_define([YAML_PATCH], 7) +m4_define([YAML_BUGS], [https://bitbucket.org/xi/libyaml/issues/new]) # Define the libtool version numbers; check the Autobook, Section 11.4. # Bump the libtool version numbers using the following algorithm: @@ -18,8 +18,8 @@ m4_define([YAML_BUGS], [http://pyyaml.org/newticket?component=libyaml]) # else: # YAML_AGE = 0 m4_define([YAML_RELEASE], 0) -m4_define([YAML_CURRENT], 0) -m4_define([YAML_REVISION], 0) +m4_define([YAML_CURRENT], 2) +m4_define([YAML_REVISION], 5) m4_define([YAML_AGE], 0) # Initialize autoconf & automake. @@ -55,6 +55,9 @@ AC_PROG_LN_S AC_PROG_MAKE_SET AC_PROG_LIBTOOL +AC_CHECK_PROG(DOXYGEN, [doxygen], [true], [false]) +AM_CONDITIONAL(DOXYGEN, [test "$DOXYGEN" = true]) + # Checks for header files. AC_HEADER_STDC AC_CHECK_HEADERS([stdlib.h]) @@ -64,7 +67,7 @@ AC_C_CONST AC_TYPE_SIZE_T # Define Makefiles. -AC_CONFIG_FILES([include/Makefile src/Makefile Makefile tests/Makefile]) +AC_CONFIG_FILES([yaml-0.1.pc include/Makefile src/Makefile Makefile tests/Makefile win32/Makefile]) # Generate the "configure" script. AC_OUTPUT