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

(-)file_not_specified_in_diff (-11 / +14 lines)
Line 29 Link Here
29
			  (under Linux in stlport4-home/include/stlport)
Lines 618-627 Link Here
618
        if test "$_os" != "WINNT"; then
619
        if test "$_os" == "Linux"; then
619
           AC_TRY_CPP($STLPORT4/stlport/hash_map, AC_MSG_RESULT([checked.]), AC_MSG_ERROR([STLport4 headers not found.]))
620
	    AC_TRY_CPP($STLPORT4/include/stlport/hash_map, AC_MSG_RESULT([checked.]), AC_MSG_ERROR([STLport4 headers not found.]))
620
        else
621
        else if test "$_os" != "WINNT"; then
621
           dnl AC_TRY_CPP doesn't work on Windows because C++ preprocessor is not found by autoconf.
622
	    AC_TRY_CPP($STLPORT4/stlport/hash_map, AC_MSG_RESULT([checked.]), AC_MSG_ERROR([STLport4 headers not found.]))
622
           if test -f "$STLPORT4/stlport/hash_map"; then
623
    	    else
623
              AC_MSG_RESULT([checked.])
624
        	dnl AC_TRY_CPP doesn't work on Windows because C++ preprocessor is not found by autoconf.
624
           else
625
        	if test -f "$STLPORT4/stlport/hash_map"; then
625
              AC_MSG_ERROR([STLport4 headers not found.])
626
            	    AC_MSG_RESULT([checked.])
626
           fi
627
        	else
627
        fi
628
            	    AC_MSG_ERROR([STLport4 headers not found.])
628
--
629
        	fi
630
    	    fi
631
	fi

Return to issue 338