summaryrefslogtreecommitdiff
path: root/science/netcdf/files
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2003-03-29 09:53:18 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2003-03-29 09:53:18 +0000
commit2c36078d184e6b3fde44793800a6c8ca0b0639f1 (patch)
tree19d35773be783fd6761833f599af82301c20ceac /science/netcdf/files
parent46e9a484f814c07d51ab2cb90517f4f5c4c368ae (diff)
Diffstat (limited to 'science/netcdf/files')
-rw-r--r--science/netcdf/files/patch-aa19
-rw-r--r--science/netcdf/files/patch-ncvalues.cpp25
-rw-r--r--science/netcdf/files/patch-netcdfcpp.h29
3 files changed, 0 insertions, 73 deletions
diff --git a/science/netcdf/files/patch-aa b/science/netcdf/files/patch-aa
deleted file mode 100644
index 43324e78712d..000000000000
--- a/science/netcdf/files/patch-aa
+++ /dev/null
@@ -1,19 +0,0 @@
---- rules.make.orig Mon Mar 12 22:31:55 2001
-+++ rules.make Mon Apr 30 14:02:44 2001
-@@ -145,14 +145,8 @@
- cp $(MANUAL) $@
- $(MANDIR)/man3/$(MANUAL): $(MANDIR)/man3 $(MANUAL)
- cp $(MANUAL) $@
--$(MANDIR)/man3f/$(MANUAL): $(MANDIR)/man3 $(MANDIR)/man3/$(MANUAL) \
-- $(MANDIR)/man3f
-- rm -f $@
-- ln -s $(MANDIR)/man3/$(MANUAL) $@
--$(MANDIR)/man3f90/$(MANUAL): $(MANDIR)/man3 $(MANDIR)/man3/$(MANUAL) \
-- $(MANDIR)/man3f90
-- rm -f $@
-- ln -s $(MANDIR)/man3/$(MANUAL) $@
-+$(MANDIR)/man3f/$(MANUAL): $(MANDIR)/man3 $(MANDIR)/man3/$(MANUAL)
-+$(MANDIR)/man3f90/$(MANUAL): $(MANDIR)/man3 $(MANDIR)/man3/$(MANUAL)
-
- ################################################################################
- # Cleanup:
diff --git a/science/netcdf/files/patch-ncvalues.cpp b/science/netcdf/files/patch-ncvalues.cpp
deleted file mode 100644
index 7dbb0bca2d02..000000000000
--- a/science/netcdf/files/patch-ncvalues.cpp
+++ /dev/null
@@ -1,25 +0,0 @@
---- cxx/ncvalues.cpp.orig Wed Dec 23 02:21:49 1998
-+++ cxx/ncvalues.cpp Tue Oct 1 10:27:32 2002
-@@ -310,7 +310,11 @@
- os << the_values[i] << ", ";
- if (the_number > 0)
- os << the_values[the_number-1] ;
-+#if (__GNUC__ == 2)
- os.flags(save);
-+#else
-+ os.flags(std::_Ios_Fmtflags(save));
-+#endif
- return os;
- }
-
-@@ -322,6 +326,10 @@
- os << the_values[i] << ", ";
- if (the_number > 0)
- os << the_values[the_number-1];
-+#if (__GNUC__ == 2)
- os.flags(save);
-+#else
-+ os.flags(std::_Ios_Fmtflags(save));
-+#endif
- return os;
- }
diff --git a/science/netcdf/files/patch-netcdfcpp.h b/science/netcdf/files/patch-netcdfcpp.h
deleted file mode 100644
index 5d6747ad105b..000000000000
--- a/science/netcdf/files/patch-netcdfcpp.h
+++ /dev/null
@@ -1,29 +0,0 @@
---- cxx/netcdfcpp.h.orig Mon Sep 16 16:25:44 2002
-+++ cxx/netcdfcpp.h Mon Sep 16 16:26:23 2002
-@@ -154,7 +154,7 @@
- virtual ~NcDim( void );
-
- // to construct dimensions, since constructor is private
-- friend NcFile;
-+ friend class NcFile;
- };
-
-
-@@ -357,7 +357,7 @@
- void init_cur( void );
-
- // to make variables, since constructor is private
-- friend NcFile;
-+ friend class NcFile;
- };
-
-
-@@ -388,7 +388,7 @@
- NcAtt( NcFile*, NcToken); // global attribute
-
- // To make attributes, since constructor is private
-- friend NcFile;
-+ friend class NcFile;
- friend NcAtt* NcVar::get_att( NcToken ) const;
- };
-