Commit 73b6b55a authored by Doron Behar's avatar Doron Behar
Browse files

octave.pkgs.database: Fix c_verror issue

parent 46293d2b
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
--- a/src/error-helpers.h
+++ b/src/error-helpers.h
@@ -64,7 +64,7 @@
       } \
     catch (OCTAVE__EXECUTION_EXCEPTION& e) \
       { \
-        verror (e, __VA_ARGS__); \
+        c_verror (e, __VA_ARGS__); \
       }
 #endif
 
+4 −0
Original line number Diff line number Diff line
@@ -13,6 +13,10 @@ buildOctavePackage rec {
    url = "mirror://sourceforge/octave/${pname}-${version}.tar.gz";
    sha256 = "1c0n76adi0jw6bx62s04vjyda6kb6ca8lzz2vam43vdy10prcq9p";
  };
  patches = [
    # Fix for octave 8.x
    ./c_verror.patch
  ];

  propagatedBuildInputs = [
    postgresql