1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-17 03:25:46 +00:00
freebsd-ports/science/flounder/files/patch-Fl_Gnuplot.cc
Beech Rintoul 6bec834a46 - Fix build with clang
- Support PLIST_FILES
- Strip binaries

PR:		ports/174167
Submitted by:	KATO Tsuguru <tkato432@yahoo.com> (maintainer)
2012-12-23 19:11:12 +00:00

32 lines
803 B
C++

--- src/Fl_Gnuplot.cc.orig 2002-12-20 03:56:35.000000000 +0900
+++ src/Fl_Gnuplot.cc 2012-10-23 23:22:44.000000000 +0900
@@ -39,11 +39,11 @@
#include <stdlib.h>
#include <stdio.h>
-#include <fstream.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
+#include <iostream>
#include "FL/fl_draw.H"
#include "FL/fl_ask.H"
@@ -53,12 +53,14 @@
#define N_ENTRIES 8192
+using namespace std;
+
// enter a GNUP{LOT command to be executed
void gnuplotcom_cb( Fl_Widget *w, void *p )
{
Fl_Gnuplot* graph=(Fl_Gnuplot*)w;
- char *s=fl_input("Enter Gnuplot commands seperated by ;",graph->command() );
+ char *s=(char*)fl_input("Enter Gnuplot commands seperated by ;",graph->command() );
if( s != NULL ) graph->command(s);
graph->window()->redraw();
}