diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2003-10-05 12:34:05 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2003-10-05 12:34:05 (GMT) |
commit | f62ec1169d8f82ba7c44230f7666458244a96495 (patch) | |
tree | 97864d162da48ec2548b1b05987ddbb5301769b1 /qtools/qfile_unix.cpp | |
parent | b740d594fddfb880f5800b991e408bdb42a3f354 (diff) | |
download | Doxygen-f62ec1169d8f82ba7c44230f7666458244a96495.zip Doxygen-f62ec1169d8f82ba7c44230f7666458244a96495.tar.gz Doxygen-f62ec1169d8f82ba7c44230f7666458244a96495.tar.bz2 |
Release-1.3.4-20031005
Diffstat (limited to 'qtools/qfile_unix.cpp')
-rw-r--r-- | qtools/qfile_unix.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/qtools/qfile_unix.cpp b/qtools/qfile_unix.cpp index e074eed..74b73d2 100644 --- a/qtools/qfile_unix.cpp +++ b/qtools/qfile_unix.cpp @@ -40,6 +40,17 @@ #include "qfile.h" #include "qfiledefs_p.h" +#if defined(_OS_MAC_) || defined(_OS_MSDOS_) || defined(_OS_WIN32_) || defined(_OS_OS2_) +# define HAS_TEXT_FILEMODE // has translate/text filemode +#endif +#if defined(O_NONBLOCK) +# define HAS_ASYNC_FILEMODE +# define OPEN_ASYNC O_NONBLOCK +#elif defined(O_NDELAY) +# define HAS_ASYNC_FILEMODE +# define OPEN_ASYNC O_NDELAY +#endif + bool qt_file_access( const QString& fn, int t ) { if ( fn.isEmpty() ) |