Problem: 1391707

Title: :UDebug.cp - gCurrentDebugger = kxNoDebugger for qTheDebugger

Received: Sep 27 1996 9:45AM


Following is a bunch of bugs I discovered in MacApp 11 attempting to build an MPW tool on a fresh install on ETO 21 Latest MPW and Codewarrior 10. I've attempted to keep them organized and provide fixes for all

For MPW builds, you may assume the following build commands:

	Set -e MABuildFolder 'Splinter:Builds:MacApp:' 
	MABuild MacApp -Sym -AutoBuild -ModelFar -Link '-sym 3.3' -BuildFolder "{MABuildFolder}"
I like to use a spearate build folder so I can keep source and headers on a smaller volume and have all easily recreated files in a folder that cam be tossed if I need disk space.
:Libraries:Core:Sources:UDebug.cp
	change
		
			short gCurrentDebugger = kxNoDebugger;	// constants defined in CWDebug.h
		
		#endif	// qDebug
	
	to	
		
		#endif	// qDebug
		
		#if qDebug || qTheDebugger
		
		short gCurrentDebugger = kxNoDebugger;	// constants defined in CWDebug.h
		
		#endif	// qDebug || qTheDebugger
		
	so -NoDebug -Sym -TheDebugger builds:
	
	#if qDebug || qTheDebugger
		short gCurrentDebugger = kxNoDebugger;	// constants defined in CWDebug.h
	#endif	// qDebug || qTheDebugger

Fix:

Made the recommended change.