From: Uwe Hermann Date: Sun, 5 Feb 2012 11:54:44 +0000 (+0100) Subject: autogen.sh: aclocal support for Windows XP/Vista/7. X-Git-Url: http://sigrok.org/gitweb/?a=commitdiff_plain;h=221574353d7824da01483b39b5044c366431e85c;hp=faff5357e11f49194fd08c1e6aac0751e9da4dce;p=sigrok-gtk.git autogen.sh: aclocal support for Windows XP/Vista/7. --- diff --git a/autogen.sh b/autogen.sh index 6cc2dbc..d37f5fe 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