From abadf66b5664980e327423f9ce0a7c74318edce2 Mon Sep 17 00:00:00 2001 From: Marc Schink Date: Sat, 29 Oct 2016 10:13:59 +0200 Subject: [PATCH] Doxyfile: Set PROJECT_NUMBER to current package version Signed-off-by: Marc Schink --- .gitignore | 1 - Doxyfile => Doxyfile.in | 12 ++++++------ Makefile.am | 2 +- configure.ac | 1 + 4 files changed, 8 insertions(+), 8 deletions(-) rename Doxyfile => Doxyfile.in (99%) diff --git a/.gitignore b/.gitignore index 26903ee..21e8ca0 100644 --- a/.gitignore +++ b/.gitignore @@ -7,7 +7,6 @@ config.status configure configure.gnu .deps -doxy/ *.la libjaylink.pc .libs diff --git a/Doxyfile b/Doxyfile.in similarity index 99% rename from Doxyfile rename to Doxyfile.in index e68a579..785173a 100644 --- a/Doxyfile +++ b/Doxyfile.in @@ -38,7 +38,7 @@ PROJECT_NAME = "libjaylink" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = +PROJECT_NUMBER = "@JAYLINK_VERSION_PACKAGE@" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a @@ -743,7 +743,7 @@ WARN_LOGFILE = # spaces. # Note: If this tag is empty the current directory is searched. -INPUT = libjaylink +INPUT = @top_srcdir@/libjaylink # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses @@ -778,10 +778,10 @@ RECURSIVE = NO # Note that relative paths are relative to the directory from which doxygen is # run. -EXCLUDE = libjaylink/libjaylink-internal.h \ - libjaylink/list.c \ - libjaylink/transport.c \ - libjaylink/buffer.c +EXCLUDE = @top_srcdir@/libjaylink/libjaylink-internal.h \ + @top_srcdir@/libjaylink/list.c \ + @top_srcdir@/libjaylink/transport.c \ + @top_srcdir@/libjaylink/buffer.c # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or # directories that are symbolic links (a Unix file system feature) are excluded diff --git a/Makefile.am b/Makefile.am index 39584a2..f41bbde 100644 --- a/Makefile.am +++ b/Makefile.am @@ -25,4 +25,4 @@ pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = libjaylink.pc endif -EXTRA_DIST = Doxyfile README contrib/99-libjaylink.rules +EXTRA_DIST = README contrib/99-libjaylink.rules diff --git a/configure.ac b/configure.ac index 9c815a4..7ee5641 100644 --- a/configure.ac +++ b/configure.ac @@ -97,6 +97,7 @@ AC_CONFIG_FILES([Makefile]) AC_CONFIG_FILES([libjaylink/Makefile]) AC_CONFIG_FILES([libjaylink/version.h]) AC_CONFIG_FILES([libjaylink.pc]) +AC_CONFIG_FILES([Doxyfile]) AC_OUTPUT -- 2.11.4.GIT