diff options
Diffstat (limited to 'audio/rio/files/patch-aa')
-rw-r--r-- | audio/rio/files/patch-aa | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/audio/rio/files/patch-aa b/audio/rio/files/patch-aa deleted file mode 100644 index 48f9f07f7d3..00000000000 --- a/audio/rio/files/patch-aa +++ /dev/null @@ -1,35 +0,0 @@ -*** app.cpp.orig Mon Mar 15 06:53:16 1999 ---- app.cpp Sat Sep 18 15:13:44 1999 -*************** -*** 30,35 **** ---- 30,42 ---- - #define SIZE_MAXPATH _MAX_PATH - #define DELETEARRAY delete[] - -+ #elif defined(__FreeBSD__) -+ // FreeBSD g++ -+ // (anybody know if this stuff applies more generally to other BSDs?) -+ #include <unistd.h> -+ #include <sys/syslimits.h> -+ #define SIZE_MAXPATH PATH_MAX -+ - #elif defined(__linux__) - // linux g++ - #include <unistd.h> -*************** -*** 81,87 **** - { - static char szBuf[ 64 ]; - struct tm* psDateTime; -! psDateTime = localtime( &lValue ); - - if ( !psDateTime ) - strcpy( szBuf, "INVALID DATE/TIME" ); ---- 88,94 ---- - { - static char szBuf[ 64 ]; - struct tm* psDateTime; -! psDateTime = localtime( (time_t *)&lValue ); - - if ( !psDateTime ) - strcpy( szBuf, "INVALID DATE/TIME" ); |