autogen.sh: aclocal support for Windows XP/Vista/7.

This commit is contained in:
Uwe Hermann 2012-02-05 12:54:44 +01:00
parent ca070ed9a0
commit dff75c0df1
1 changed files with 7 additions and 0 deletions

View File

@ -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