FG_USING_STD(string);
+#ifndef FG_HAVE_NATIVE_SGI_COMPILERS
+FG_USING_STD(cout);
+#endif
+
puFont guiFnt = 0;
fntTexFont *guiFntHandle = 0;
// Install our fast fonts
fntpath.append( "typewriter.txf" );
guiFntHandle = new fntTexFont ;
- guiFntHandle -> load ( fntpath.c_str() ) ;
+ guiFntHandle -> load ( (char *)fntpath.c_str() ) ;
puFont GuiFont ( guiFntHandle, 15 ) ;
puSetDefaultFonts( GuiFont, GuiFont ) ;
guiFnt = puGetDefaultLabelFont();
/* -- for CSci 5502 */
+#ifdef HAVE_CONFIG_H
+# include <Include/config.h>
+#endif
+
+#ifdef HAVE_SYS_PARAM_H
+# include <sys/param.h> // BSD macro definitions
+#endif
+
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
// check if the host system is free of interactive users
int system_free() {
-#ifndef __FreeBSD__
+#ifndef BSD
struct utmp *uptr;
setutent();