From 6a19180699bc42cd073b2d114c3739ca5bef9478 Mon Sep 17 00:00:00 2001 From: Lars Erik Wik Date: Fri, 3 May 2024 11:28:56 +0200 Subject: [PATCH 1/2] Include windows.h instead of libloader.h Ticket: None Changelog: None Signed-off-by: Lars Erik Wik --- lib/module.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/module.c b/lib/module.c index bf6578651..2421fcfc9 100644 --- a/lib/module.c +++ b/lib/module.c @@ -5,8 +5,7 @@ #if HAVE_DLFCN_H #include #elif defined(_WIN32) -#include -#include +#include #endif #include "logger.h" From 54240f5423d7ba25caac2c92b497db6e4a54fa4e Mon Sep 17 00:00:00 2001 From: Lars Erik Wik Date: Fri, 3 May 2024 11:29:45 +0200 Subject: [PATCH 2/2] Bump version number to 0.1.15 Ticket: None Changelog: None Signed-off-by: Lars Erik Wik --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 6a550d2ec..bde29585b 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.63]) -AC_INIT([leech], [0.1.14], [https://github.com/larsewi/leech/issues], [leech], +AC_INIT([leech], [0.1.15], [https://github.com/larsewi/leech/issues], [leech], [https://github.com/larsewi/leech]) AC_CONFIG_SRCDIR([lib/leech.h])