Changeset 329
- Timestamp:
- 03/07/08 18:22:07 (9 months ago)
- Files:
-
- 1 modified
-
trunk/thrucommon/src/thrurecorder.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/thrucommon/src/thrurecorder.cpp
r311 r329 13 13 /* hack to work around thrift and log4cxx installing config.h's */ 14 14 #undef HAVE_CONFIG_H 15 16 #if HAVE_LIBSPREAD 15 17 16 18 #include "ConfigFile.h" … … 102 104 } 103 105 106 #else 107 108 #include <stdio.h> 109 #include <stdlib.h> 110 111 int main (int argc, char * argv[]) 112 { 113 fprintf (stderr, "spread support not compiled in\n"); 114 exit (-1); 115 } 116 117 #endif /* HAVE_LIBSPREAD */
