From fa5e06f95dd7a96b3d188fd4bbcf085a98235bb5 Mon Sep 17 00:00:00 2001 From: Avuton Olrich Date: Sun, 9 Oct 2011 04:44:51 -0700 Subject: Modify version string to post-release version 0.16.6~git --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 0ef99704e..c47c6d9e9 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ AC_PREREQ(2.60) -AC_INIT(mpd, 0.16.5, musicpd-dev-team@lists.sourceforge.net) +AC_INIT(mpd, 0.16.6~git, musicpd-dev-team@lists.sourceforge.net) AC_CONFIG_SRCDIR([src/main.c]) AM_INIT_AUTOMAKE([foreign 1.10 dist-bzip2 subdir-objects]) AM_CONFIG_HEADER(config.h) -- cgit v1.2.3 From c30c46cd5f0d1f857fc38a335ca499cc024e0c80 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Thu, 13 Oct 2011 09:23:32 +0200 Subject: configure.ac: define WINVER Ensure that WINVER is defined early enough, so other system headers won't fall back to their default value. Specifically, this solves a build failure (-Werror) with mingw-w64 ("WINVER redefined"). --- configure.ac | 1 + 1 file changed, 1 insertion(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index c47c6d9e9..478639e7b 100644 --- a/configure.ac +++ b/configure.ac @@ -68,6 +68,7 @@ AC_CANONICAL_HOST case "$host_os" in mingw32* | windows*) + AM_CPPFLAGS="$AM_CPPFLAGS -DWINVER=0x0501" MPD_LIBS="$MPD_LIBS -lws2_32" ;; esac -- cgit v1.2.3