From 4a3018e4eceb981aadbadbe3eadff4c17f018357 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Mon, 24 Dec 2012 14:32:23 +0200 Subject: MSVS 9.0 uses mspdb80.dll, go figure Change-Id: Id37b276983b86455dcbdcd40fd1e3d3efba33011 --- configure.ac | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index ef4dfef900c5..b0d85b91ba4a 100644 --- a/configure.ac +++ b/configure.ac @@ -3122,8 +3122,15 @@ if test "$_os" = "WINNT"; then MSPDB_PATH="$VC_PRODUCT_DIR/bin/amd64" fi - if test ! -e "$MSPDB_PATH/mspdb${vcnum}.dll"; then - AC_MSG_ERROR([No mspdb${vcnum}.dll in $MSPDB_PATH, Visual Studio installation broken?]) + case $vcnum in + 90) + mspdbnum=80;; + *) + mspdbnum=$vcnum;; + esac + + if test ! -e "$MSPDB_PATH/mspdb${mspdbnum}.dll"; then + AC_MSG_ERROR([No mspdb${mspdbnum}.dll in $MSPDB_PATH, Visual Studio installation broken?]) fi MSPDB_PATH=`cygpath -d "$MSPDB_PATH"` -- cgit