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

(-)config_office/configure.in (-1 / +13 lines)
Lines 75-80 Link Here
75
 
75
 
76
                          Usage: --with-psdk-home=<absolute path to Microsoft Platform SDK>
76
                          Usage: --with-psdk-home=<absolute path to Microsoft Platform SDK>
77
],,)
77
],,)
78
AC_ARG_WITH(psdk2003,
79
[  --with-2003-psdk        For Windows users, please use this option when you use the
80
                          February 2003 version of the Microsoft Platform SDK.
81
82
                          This may be a temporary workaround! 
83
 
84
                          Usage: --with-2003-psdk
85
],,)
78
AC_ARG_WITH(local-solenv,
86
AC_ARG_WITH(local-solenv,
79
[  --with-local-solenv     If you have solenv in a location other than ../solenv,
87
[  --with-local-solenv     If you have solenv in a location other than ../solenv,
80
                          please supply the path here.
88
                          please supply the path here.
Lines 526-532 Link Here
526
				COMEX=8
534
				COMEX=8
527
			else
535
			else
528
				if test $CCNUMVER -ge "001200000000"; then
536
				if test $CCNUMVER -ge "001200000000"; then
529
					COMEX=7
537
					if test "$with_2003_psdk" = "yes"; then
538
						COMEX=9
539
					else
540
						COMEX=7
541
					fi
530
				else
542
				else
531
					AC_MSG_ERROR([Compiler too old.])
543
					AC_MSG_ERROR([Compiler too old.])
532
				fi
544
				fi

Return to issue 13912