Changeset 8145 in orxonox.OLD for trunk/src/defs
- Timestamp:
- Jun 5, 2006, 11:49:26 AM (19 years ago)
- Location:
- trunk/src/defs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/defs/debug.h
r7819 r8145 131 131 #define PRINTF1 \ 132 132 if (SOFT_DEBUG_LEVEL >= ORX_ERR) \ 133 printf("(EE)::%s:%d:", __FILE__, __LINE__) &&PRINT_EXEC134 #else 135 #define PRINTF1 if (ORX_NONE) 133 printf("(EE)::%s:%d:", __FILE__, __LINE__), PRINT_EXEC 134 #else 135 #define PRINTF1 if (ORX_NONE) PRINT_EXEC 136 136 #endif 137 137 … … 139 139 #define PRINTF2 \ 140 140 if (SOFT_DEBUG_LEVEL >= ORX_WARN) \ 141 printf("(WW)::%s:%d:", __FILE__, __LINE__) &&PRINT_EXEC142 143 #else 144 #define PRINTF2 if (ORX_NONE) 141 printf("(WW)::%s:%d:", __FILE__, __LINE__), PRINT_EXEC 142 143 #else 144 #define PRINTF2 if (ORX_NONE) PRINT_EXEC 145 145 #endif 146 146 … … 148 148 #define PRINTF3 \ 149 149 if (SOFT_DEBUG_LEVEL >= ORX_INFO) \ 150 printf("(II)::%s:%d:", __FILE__, __LINE__) &&PRINT_EXEC151 #else 152 #define PRINTF3 if (ORX_NONE) 150 printf("(II)::%s:%d:", __FILE__, __LINE__), PRINT_EXEC 151 #else 152 #define PRINTF3 if (ORX_NONE) PRINT_EXEC 153 153 #endif 154 154 … … 156 156 #define PRINTF4 \ 157 157 if (SOFT_DEBUG_LEVEL >= ORX_DEBUG) \ 158 printf("(DD)::%s:%d:", __FILE__, __LINE__) &&PRINT_EXEC159 #else 160 #define PRINTF4 if (ORX_NONE) 158 printf("(DD)::%s:%d:", __FILE__, __LINE__), PRINT_EXEC 159 #else 160 #define PRINTF4 if (ORX_NONE) PRINT_EXEC 161 161 #endif 162 162 … … 164 164 #define PRINTF5 \ 165 165 if (SOFT_DEBUG_LEVEL >= ORX_vDEBUG) \ 166 printf("(VD)::%s:%d:", __FILE__, __LINE__) &&PRINT_EXEC167 #else 168 #define PRINTF5 if (ORX_NONE) 166 printf("(VD)::%s:%d:", __FILE__, __LINE__), PRINT_EXEC 167 #else 168 #define PRINTF5 if (ORX_NONE) PRINT_EXEC 169 169 #endif 170 170 … … 174 174 175 175 #define PRINTF0 \ 176 printf("%s:%d::", __FILE__, __LINE__) &&PRINT_EXEC176 printf("%s:%d::", __FILE__, __LINE__), PRINT_EXEC 177 177 #endif 178 178 … … 196 196 PRINT_EXEC 197 197 #else 198 #define PRINT1 if (ORX_NONE) 198 #define PRINT1 if (ORX_NONE) PRINT_EXEC 199 199 #endif 200 200 … … 205 205 206 206 #else 207 #define PRINT2 if (ORX_NONE) 207 #define PRINT2 if (ORX_NONE) PRINT_EXEC 208 208 #endif 209 209 … … 213 213 PRINT_EXEC 214 214 #else 215 #define PRINT3 if (ORX_NONE) 215 #define PRINT3 if (ORX_NONE) PRINT_EXEC 216 216 #endif 217 217 … … 221 221 PRINT_EXEC 222 222 #else 223 #define PRINT4 if (ORX_NONE) 223 #define PRINT4 if (ORX_NONE) PRINT_EXEC 224 224 #endif 225 225 … … 229 229 PRINT_EXEC 230 230 #else 231 #define PRINT5 if (ORX_NONE) 231 #define PRINT5 if (ORX_NONE) PRINT_EXEC 232 232 #endif 233 233 -
trunk/src/defs/include_paths.am
r7927 r8145 12 12 AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/graphics/render2D 13 13 AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/particles 14 AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/gui/gtk_gui 15 AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/gui/gl_gui 16 AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/gui/gl_gui/glmenu 14 AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/gui/gl 15 AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/gui/gl/glmenu 17 16 AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/lang 18 17 AM_CXXFLAGS+=-I$(MAINSRCDIR)/lib/shell
Note: See TracChangeset
for help on using the changeset viewer.