Ticket #40978: emacs-app.diff

File emacs-app.diff, 856 bytes (added by takanori@…, 11 years ago)
  • Portfile

     
    55
    66name                emacs-app
    77version             24.3
    8 revision            1
     8revision            2
    99categories          aqua editors
    1010maintainers         hum css openmaintainer
    1111
  • files/patch-src_emacs.c.diff

     
    2828+        strlcpy(newpath, "__PREFIX__/bin:", newpathsize);
    2929+        strlcat(newpath, oldpath, newpathsize);
    3030+        setenv("PATH", newpath, 1);
    31 +        free(newpath);
     31+        /* free(newpath); newpath shouldn't be freed - see setenv(3) */
    3232+      }
    3333+    }
    3434+  }