Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ set(SRCS
src/writer.c
)

set(config_h ${CMAKE_CURRENT_BINARY_DIR}/include/config.h)
set(config_h ${CMAKE_CURRENT_BINARY_DIR}/include/yaml_config.h)
configure_file(
cmake/config.h.in
${config_h}
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ m4_define([YAML_AGE], 0)
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([yaml_config.h])
AM_INIT_AUTOMAKE([1.9 foreign])

# Define macro variables for the package version numbers.
Expand Down
2 changes: 1 addition & 1 deletion src/yaml_private.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#if HAVE_CONFIG_H
#include <config.h>
#include <yaml_config.h>
#endif

#include <yaml.h>
Expand Down