--- src/pcregexp.cc.orig 2015-06-06 14:40:45.000000000 -0700 +++ src/pcregexp.cc 2019-03-09 04:56:34.000000000 -0700 @@ -49,7 +49,7 @@ std::string pattern = args(0).string_value(); std::string input = args(1).string_value(); if (error_state) { - gripe_wrong_type_arg("pcregexp", args(0)); + err_wrong_type_arg("pcregexp", args(0)); return retval; } --- src/Makefile.orig 2015-06-06 14:40:45.000000000 -0700 +++ src/Makefile 2019-03-09 04:55:37.000000000 -0700 @@ -3,8 +3,8 @@ PCRE_SWITCHES := $(shell $(OCTAVE) \ --no-gui --no-init-file --no-site-file --silent --no-history \ - --eval 'disp (octave_config_info ("PCRE_LIBS"));' \ - --eval 'disp (octave_config_info ("PCRE_CPPFLAGS"));' \ + --eval 'disp (__octave_config_info__ ("PCRE_LIBS"));' \ + --eval 'disp (__octave_config_info__ ("PCRE_CPPFLAGS"));' \ ) pcregexp.oct: %.oct: %.cc