This is an autogenerated patch header for a single-debian-patch file. The
delta against upstream is either kept as a single patch, or maintained
in some VCS, and exported as a single patch instead of more manageable
atomic patches.

--- ivtools-2.0.4a1.orig/CHANGES/CHANGES-2.0
+++ ivtools-2.0.4a1/CHANGES/CHANGES-2.0
@@ -1,3 +1,7 @@
+October 11th 2020 ivtools-2.0.4
+
+* list (or array) comparison operators '<', '>', and '!=' for comterp.
+
 August 22nd 2020 ivtools-2.0.3
 
 * add Golang style "%v" format descriptor to comterp print func.
--- ivtools-2.0.4a1.orig/configure.ac
+++ ivtools-2.0.4a1/configure.ac
@@ -127,9 +127,7 @@ AC_CHECK_TYPES([sig_atomic_t], [], [AC_D
 # Checks for library functions.
 AC_FUNC_ERROR_AT_LINE
 AC_FUNC_FORK
-AC_FUNC_MALLOC
 AC_FUNC_MMAP
-AC_FUNC_REALLOC
 AC_FUNC_STRTOD
 
 AC_CHECK_FUNCS([bzero floor getcwd gethostbyname gethostname \
--- ivtools-2.0.4a1.orig/src/include/ivstd/fstream
+++ ivtools-2.0.4a1/src/include/ivstd/fstream
@@ -211,7 +211,7 @@ public:
 
     // 27.9.1.3 Assign/swap:
 #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
-    basic_filebuf& operator=(basic_filebuf&& __rhs);
+    inline _LIBCPP_INLINE_VISIBILITY basic_filebuf& operator=(basic_filebuf&& __rhs);
 #endif
     void swap(basic_filebuf& __rhs);
 
@@ -1111,7 +1111,7 @@ public:
 #endif
 
 #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
-    basic_ifstream& operator=(basic_ifstream&& __rhs);
+    inline _LIBCPP_INLINE_VISIBILITY basic_ifstream& operator=(basic_ifstream&& __rhs);
 #endif
     inline _LIBCPP_INLINE_VISIBILITY void swap(basic_ifstream& __rhs);
 
@@ -1263,11 +1263,11 @@ public:
     inline _LIBCPP_INLINE_VISIBILITY explicit basic_ofstream(const char* __s, ios_base::openmode __mode = ios_base::out);
     inline _LIBCPP_INLINE_VISIBILITY explicit basic_ofstream(const string& __s, ios_base::openmode __mode = ios_base::out);
 #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
-    basic_ofstream(basic_ofstream&& __rhs);
+    inline _LIBCPP_INLINE_VISIBILITY basic_ofstream(basic_ofstream&& __rhs);
 #endif
 
 #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
-    basic_ofstream& operator=(basic_ofstream&& __rhs);
+    inline _LIBCPP_INLINE_VISIBILITY basic_ofstream& operator=(basic_ofstream&& __rhs);
 #endif
     inline _LIBCPP_INLINE_VISIBILITY void swap(basic_ofstream& __rhs);
 
@@ -1420,11 +1420,11 @@ public:
     inline _LIBCPP_INLINE_VISIBILITY explicit basic_fstream(const string& __s, ios_base::openmode __mode = ios_base::in | ios_base::out);
     inline _LIBCPP_INLINE_VISIBILITY explicit basic_fstream(int fd, ios_base::openmode __mode = ios_base::in | ios_base::out);
 #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
-    basic_fstream(basic_fstream&& __rhs);
+    inline _LIBCPP_INLINE_VISIBILITY basic_fstream(basic_fstream&& __rhs);
 #endif
 
 #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
-    basic_fstream& operator=(basic_fstream&& __rhs);
+    inline _LIBCPP_INLINE_VISIBILITY basic_fstream& operator=(basic_fstream&& __rhs);
 #endif
     inline _LIBCPP_INLINE_VISIBILITY void swap(basic_fstream& __rhs);
 
