From 281d4720d41cf5c6ba5590a932c342946628b010 Mon Sep 17 00:00:00 2001 From: Veselin Georgiev Date: Thu, 10 Mar 2016 01:14:37 +0200 Subject: [PATCH] Fix issue #28: Windows Build error msrdriver.c was forgotten from Makefile.am, under the assumption that autotools are used under *nix only. This is not true, as one could use MinGW or cygwin. --- libcpuid/Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libcpuid/Makefile.am b/libcpuid/Makefile.am index 0b735b8..2710898 100644 --- a/libcpuid/Makefile.am +++ b/libcpuid/Makefile.am @@ -13,7 +13,8 @@ libcpuid_la_SOURCES = \ rdtsc.c \ asm-bits.c \ libcpuid_util.c \ - rdmsr.c + rdmsr.c \ + msrdriver.c libcpuid_la_DEPENDENCIES = \ $(srcdir)/libcpuid.sym