Activity for Graham Inggs

  • Graham Inggs Graham Inggs posted a comment on discussion Open Discussion

    Is there any progress on porting LinSmith to Gtk-3? Is the code available somewhere public?

  • Graham Inggs Graham Inggs posted a comment on ticket #489

    Below is a patch fixing the issue. We want to scanDirectory() if fileBaseName matches 'private' case-insensitively. --- a/libs/libFreeMat/Interpreter.cpp +++ b/libs/libFreeMat/Interpreter.cpp @@ -364,7 +364,7 @@ procFileP(prefix + ":" + fileBaseName,fileAbsoluteFilePath,tempfunc); else if (fileBaseName[0] == '@') scanDirectory(fileAbsoluteFilePath,tempfunc,fileBaseName); - else if (fileBaseName == "private") + else if (fileBaseName.toUpper() == "PRIVATE") scanDirectory(fileAbsoluteFilePath,tempfunc,fileAbsoluteFilePath);...

  • Graham Inggs Graham Inggs posted a comment on ticket #563

    Below is a patch fixing the issue. FREEMAT_VERSION is already quoted. --- a/src/application.cpp +++ b/src/application.cpp @@ -429,7 +429,7 @@ void ApplicationWindow::about() { QString text; text += "FreeMat Version "; - text += QUOTEME(FREEMAT_VERSION); + text += FREEMAT_VERSION; text += "\n\n"; text += "Licensed under the GNU Public License Ver 2\n"; text += "Web: http://freemat.sf.net\n";

  • Graham Inggs Graham Inggs posted a comment on ticket #2

    Thanks for the merge! I don't need a new release just for this, Debian can carry...

  • Graham Inggs Graham Inggs created ticket #2

    please sort object files to make build reproducible

  • Graham Inggs Graham Inggs posted a comment on ticket #64

    0.74 is nearly 3 years old. Any chance of a new release please?

  • Graham Inggs Graham Inggs created ticket #4

    Wishlist: please set '-z relro --as-needed' linker options for Linux build

  • Graham Inggs Graham Inggs created ticket #9

    Wishlist: please remove build date from version string

  • Graham Inggs Graham Inggs posted a comment on ticket #8

    I'm getting expected results from traceroute 2.0.21 on Ubuntu Utopic (kernel 3.16)....

  • Graham Inggs Graham Inggs modified a comment on ticket #8

    So on newer kernels I see one packet arriving with ee->ee_origin = SO_EE_ORIGIN_LOCAL...

  • Graham Inggs Graham Inggs posted a comment on ticket #8

    So on newer kernels I see one packet arriving with ee->ee_origin = SO_EE_ORIGIN_LOCAL...

  • Graham Inggs Graham Inggs posted a comment on ticket #8

    There's also a bug report for 2.0.19 segfaulting with the --mtu switch in Arch Linux:...

  • Graham Inggs Graham Inggs posted a comment on ticket #8

    Without --mtu or with -I or -T are all fine. 2.0.19 on Trusty, Utopic and Sid all...

  • Graham Inggs Graham Inggs created ticket #8

    Problem with --mtu on recent Debian/Ubuntu distributions

  • Graham Inggs Graham Inggs posted a comment on ticket #39

    Is MC included now?

1