]> sigrok.org Git - libsigrokdecode.git/commitdiff
autogen.sh: aclocal support for Windows XP/Vista/7.
authorUwe Hermann <redacted>
Sun, 5 Feb 2012 11:54:44 +0000 (12:54 +0100)
committerUwe Hermann <redacted>
Sun, 5 Feb 2012 11:54:44 +0000 (12:54 +0100)
autogen.sh

index 0f4a777151203c1321b3e493a0d19f92b91b0aa1..a49d17b63fcde65964ba465882b7d1f1c5a1229d 100755 (executable)
@@ -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