build on irix

This commit is contained in:
David Rose 2003-01-20 16:31:04 +00:00
parent 78897e2563
commit 2bc10310d0
2 changed files with 4 additions and 2 deletions

View File

@ -19,11 +19,10 @@
#ifndef NOTIFYCATEGORY_H
#define NOTIFYCATEGORY_H
#include <dtoolbase.h>
#include "dtoolbase.h"
#include "notifySeverity.h"
#include <string>
#include <vector>
////////////////////////////////////////////////////////////////////

View File

@ -82,9 +82,12 @@ typedef int streamsize;
#ifndef HAVE_IOS_TYPEDEFS
typedef int ios_openmode;
typedef int ios_fmtflags;
// Old iostream libraries used ios::seek_dir instead of ios::seekdir.
typedef ios::seek_dir ios_seekdir;
#else
typedef ios::openmode ios_openmode;
typedef ios::fmtflags ios_fmtflags;
typedef ios::seekdir ios_seekdir;
#endif