View | Details | Raw Unified | Return to issue 18116
Collapse All | Expand All

(-)config_office/configure.in (-5 / +5 lines)
Lines 1526-1543 Link Here
1526
fi
1526
fi
1527
1527
1528
dnl ===================================================================
1528
dnl ===================================================================
1529
dnl Windows builds with .NET need msvcp70.dll in external/msvcp70/
1529
dnl Windows builds with .NET need msvcp70.dll/msvcr70.dll in external/msvcp70/
1530
dnl ===================================================================
1530
dnl ===================================================================
1531
if test "$_os" = "WINNT" -a "$COMEX" = "8"; then
1531
if test "$_os" = "WINNT" -a "$COMEX" = "8"; then
1532
   AC_MSG_CHECKING([msvcp70.dll])
1532
   AC_MSG_CHECKING([msvcp70.dll])
1533
   if test -f ../external/msvcp70/msvcp70.dll; then
1533
   if test -f ../external/msvcp70/msvcp70.dll -a -f ../external/msvcp70/msvcr70.dll; then
1534
      AC_MSG_RESULT([found])
1534
      AC_MSG_RESULT([found])
1535
   else
1535
   else
1536
      AC_MSG_ERROR([The msvcp70.dll is missing in external/msvcp70/.
1536
      AC_MSG_ERROR([msvcp70.dll and/or msvcr70.dll are/is missing in external/msvcp70/.
1537
The dll is part of the .NET installation and can be found in a directory
1537
These dlls are part of the .NET installation and can be found in a directory
1538
similar to:
1538
similar to:
1539
"c:\\Program Files\\Microsoft Visual Studio .NET\\Visual C++ .NET Professional - English\\"
1539
"c:\\Program Files\\Microsoft Visual Studio .NET\\Visual C++ .NET Professional - English\\"
1540
Please copy the file to external/msvcp70.])
1540
Please copy the files to external/msvcp70.])
1541
   fi
1541
   fi
1542
fi
1542
fi
1543
1543

Return to issue 18116