]> git.mxchange.org Git - flightgear.git/commitdiff
Borland tweaks.
authorcurt <curt>
Thu, 22 Apr 1999 18:45:40 +0000 (18:45 +0000)
committercurt <curt>
Thu, 22 Apr 1999 18:45:40 +0000 (18:45 +0000)
Include/compiler.h
Include/fg_constants.h
Include/fg_typedefs.h

index 3d1971c8dd94549497354b609f528bcf21a2cc4f..c00f4e0af8ae46c4af9cb2ac8be6f4754f5b5f8c 100644 (file)
 #  define STL_ALGORITHM  <algorithm>
 #  define STL_FUNCTIONAL <functional>
 #  define STL_IOMANIP    <iomanip>
-#  define STL_IOSTREAM   <iostream>
 #  define STL_STDEXCEPT  <stdexcept>
-#  define STL_STRING     <string>
 #  define STL_STRSTREAM  <strstream>
 
 #  define FG_INCOMPLETE_FUNCTIONAL
 
 # endif // HAVE_SGI_STL_PORT
 
+#  define STL_IOSTREAM   <iostream>
+#  define STL_STRING     <string>
 #  define FG_NO_DEFAULT_TEMPLATE_ARGS
 #  define FG_NAMESPACES
-#  define FG_HAVE_STD
+// #  define FG_HAVE_STD
 
 #endif // __BORLANDC__
 
index ed88b50fae96b389bcf57d01c5495e11f5798977..cf24ec67af1a45fab42f22a501ad85206302fab9 100644 (file)
 
 #include "Include/compiler.h"
 
-#ifdef FG_MATCH_EXCEPTION_CLASH
-#  define exception C_exception
-#endif
-
 #ifdef FG_HAVE_STD_INCLUDES
 #  include <cmath>
 #else
+#  ifdef FG_MATH_EXCEPTION_CLASH
+#    define exception C_exception
+#  endif
 #  include <math.h>
 #endif
 
index 52e9368cce89e2ce3dfade37314dab88dd2f836e..048842d6ea3a0045c139974e47d1f15eff8ad0ea 100644 (file)
@@ -2,8 +2,11 @@
 //  Alterations: Copyright C. Hotchkiss 1996
 //
 // $Log$
-// Revision 1.1  1999/04/05 21:32:40  curt
-// Initial revision
+// Revision 1.2  1999/04/22 18:45:42  curt
+// Borland tweaks.
+//
+// Revision 1.1.1.1  1999/04/05 21:32:40  curt
+// Start of 0.6.x branch.
 //
 // Revision 1.2  1998/05/13 18:23:46  curt
 // fg_typedefs.h: updated version by Charlie Hotchkiss
@@ -107,6 +110,7 @@ typedef int (*FNPTR)    ( void );
 typedef int (*FNINTPTR) ( int  );
 typedef int (*FNUIPTR)  ( UINT );
 typedef double( *DBLFNPTR)( void );
+typedef float( *FLTFNPTR)( void );
 
 #endif