]> andersk Git - libyaml.git/blobdiff - configure.ac
debian: Release libyaml 0.2.2-1
[libyaml.git] / configure.ac
index 34d7f70a28c8a8dee4d06f61223a09be70cee19b..7e491511b30adb6a4b93e8af56b4e6711ea8bf84 100644 (file)
@@ -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], 2)
+m4_define([YAML_PATCH], 2)
+m4_define([YAML_BUGS], [https://github.com/yaml/libyaml/issues/new])
 
 # Define the libtool version numbers; check the Autobook, Section 11.4.
 # Bump the libtool version numbers using the following algorithm:
@@ -18,15 +18,15 @@ 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], 6)
 m4_define([YAML_AGE], 0)
 
 # Initialize autoconf & automake.
 AC_PREREQ(2.59)
 AC_INIT([yaml], [YAML_MAJOR.YAML_MINOR.YAML_PATCH], [YAML_BUGS])
 AC_CONFIG_AUX_DIR([config])
-AC_CONFIG_HEADERS([config.h])
+AC_CONFIG_HEADERS([include/config.h])
 AM_INIT_AUTOMAKE([1.9 foreign])
 
 # Define macro variables for the package version numbers.
@@ -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])
 
 # Generate the "configure" script.
 AC_OUTPUT
This page took 0.034466 seconds and 4 git commands to generate.