mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
4095d64e48
- Remove dependency on gcc 2.95 assuming that support for gcc 2.7.2 is dropped long time ago - Bump PORTREVISION Approved by: portmgr, MAINTAINER
23 lines
710 B
C++
23 lines
710 B
C++
--- src/ftrack.cpp.orig Fri Aug 19 17:58:00 2005
|
|
+++ src/ftrack.cpp Fri Aug 19 17:59:25 2005
|
|
@@ -42,8 +42,8 @@
|
|
#include "parsetpl.hpp"
|
|
#include "tmstamp.hpp"
|
|
#include "script.hpp"
|
|
-#include <iostream.h>
|
|
-#include <fstream.h>
|
|
+#include <iostream>
|
|
+#include <fstream>
|
|
#include <smapi/msgapi.h>
|
|
|
|
static struct utimbuf ut;
|
|
@@ -53,7 +53,7 @@
|
|
// Signals catch functions
|
|
// --------------------------------------------------------------------
|
|
void AbrtHndl(int Sign) {
|
|
-fstream fh ("FTrack.err", ios::append);
|
|
+fstream fh ("FTrack.err", ios::app);
|
|
|
|
cerr << "Internal Error!!! Please, read report.err in documentation.\n";
|
|
cerr << "---------------------------------------\n";
|