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

(-)config_office/configure.in (+32 lines)
Lines 1510-1515 Link Here
1510
fi
1510
fi
1511
1511
1512
dnl ===================================================================
1512
dnl ===================================================================
1513
dnl Windows builds need dbghelp.dll in external/dbghelp/
1514
dnl ===================================================================
1515
if test "$_os" = "WINNT"; then
1516
   AC_MSG_CHECKING([dbghelp.dll])
1517
   if test -f ../external/dbghelp/dbghelp.dll; then
1518
      AC_MSG_RESULT([found])
1519
   else
1520
      AC_MSG_ERROR([The dbghelp.dll is missing in external/dbghelp/.
1521
Get it from the Microsoft site and put it into external/dbghelp.
1522
(Note: Microsoft seems to enjoy changing the exact location of this file. You
1523
may have to search Microsoft's website.) Last time it was seen at:
1524
<http://www.microsoft.com/downloads/release.asp?releaseid=30682>.])
1525
   fi
1526
fi
1527
1528
dnl ===================================================================
1529
dnl Windows builds with .NET need msvcp70.dll in external/msvcp70/
1530
dnl ===================================================================
1531
if test "$_os" = "WINNT" -a "$COMEX" = "8"; then
1532
   AC_MSG_CHECKING([msvcp70.dll])
1533
   if test -f ../external/msvcp70/msvcp70.dll; then
1534
      AC_MSG_RESULT([found])
1535
   else
1536
      AC_MSG_ERROR([The msvcp70.dll is missing in external/msvcp70/.
1537
The dll is part of the .NET installation and can be found in a directory
1538
similar to:
1539
"c:\\Program Files\\Microsoft Visual Studio .NET\\Visual C++ .NET Professional - English\\"
1540
Please copy the file to external/dbghelp.])
1541
   fi
1542
fi
1543
1544
dnl ===================================================================
1513
dnl Test for the presence of the right polygon clipping code
1545
dnl Test for the presence of the right polygon clipping code
1514
dnl ===================================================================
1546
dnl ===================================================================
1515
1547

Return to issue 18116