Changeset 9954
- Timestamp:
- 03/23/09 17:15:55 (4 years ago)
- Files:
-
- 1 modified
-
OpenSceneGraph/trunk/src/osgDB/Registry.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
OpenSceneGraph/trunk/src/osgDB/Registry.cpp
r9884 r9954 684 684 #endif 685 685 #elif macintosh 686 return prepend+"osgdb_"+lowercase_ext; 686 #ifdef _DEBUG 687 return prepend+"osgdb_"+lowercase_ext+ OSG_DEBUG_POSTFIX_WITH_QUOTES; 688 #else 689 return prepend+"osgdb_"+lowercase_ext; 690 #endif 687 691 #elif defined(__hpux__) 688 692 // why don't we use PLUGIN_EXT from the makefiles here? … … 711 715 #endif 712 716 #elif macintosh 713 return name; 717 #ifdef _DEBUG 718 return name+OSGDEBUG_POSTFIX_WITH_QUOTES; 719 #else 720 return name; 721 #endif 714 722 #elif defined(__hpux__) 715 723 // why don't we use PLUGIN_EXT from the makefiles here?
