From 948eb829cc0a446afd2b2f5599a7ab903a1f3955 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Sun, 5 Feb 2012 12:54:44 +0100 Subject: [PATCH] autogen.sh: aclocal support for Windows XP/Vista/7. --- autogen.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/autogen.sh b/autogen.sh index 0f4a777..a49d17b 100755 --- a/autogen.sh +++ b/autogen.sh @@ -38,6 +38,13 @@ if [ "x$OS" = "xDarwin" ]; then fi elif [ "x$OS" = "xMINGW32_NT-5.1" ]; then + # Windows XP + ACLOCAL_DIR="-I /usr/local/share/aclocal" +elif [ "x$OS" = "xMINGW32_NT-6.0" ]; then + # Windows Vista + ACLOCAL_DIR="-I /usr/local/share/aclocal" +elif [ "x$OS" = "xMINGW32_NT-6.1" ]; then + # Windows 7 ACLOCAL_DIR="-I /usr/local/share/aclocal" fi -- 2.30.2