diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2012-02-05 12:54:44 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2012-02-05 12:54:44 +0100 |
commit | 63d62a5c6aa3c66b6b3c0662155752ccb123ee23 (patch) | |
tree | ff708ca9963caf6013e32e107e12ff8b16c4ecf4 /autogen.sh | |
parent | bb590e071c0f6554695334b5da804c75267541fb (diff) | |
download | libsigrokdecode-63d62a5c6aa3c66b6b3c0662155752ccb123ee23.tar.gz libsigrokdecode-63d62a5c6aa3c66b6b3c0662155752ccb123ee23.zip |
autogen.sh: aclocal support for Windows XP/Vista/7.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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 |