comparison src/alloc.c @ 118:7d55a9ba150c r20-1b11

Import from CVS: tag r20-1b11
author cvs
date Mon, 13 Aug 2007 09:24:17 +0200
parents 48d667d6f17f
children 28f395d8dc7a
comparison
equal deleted inserted replaced
117:578fd4947a72 118:7d55a9ba150c
2737 } 2737 }
2738 clear_message (); 2738 clear_message ();
2739 2739
2740 if (rc < 0) { 2740 if (rc < 0) {
2741 (void)unlink("SATISFIED"); 2741 (void)unlink("SATISFIED");
2742 /* Current build process on NT does */
2743 /* not know how to restart itself. */
2744 /* --marcpa */
2745 #ifndef WINDOWSNT
2742 fatal ("Pure size adjusted, will restart `make'"); 2746 fatal ("Pure size adjusted, will restart `make'");
2747 #endif
2743 } else if (pure_lossage && die_if_pure_storage_exceeded) { 2748 } else if (pure_lossage && die_if_pure_storage_exceeded) {
2744 fatal ("Pure storage exhausted"); 2749 fatal ("Pure storage exhausted");
2745 } 2750 }
2746 } 2751 }
2747 2752