Changes between Version 15 and Version 16 of Ticket #38582, comment 6


Ignore:
Timestamp:
Aug 6, 2013, 10:27:28 PM (11 years ago)
Author:
cooljeanius (Eric Gallager)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #38582, comment 6

    v15 v16  
    1515|| `AC_CHECK_FUNCS([strchr])` || `src/machista1.0/machista_wrap.c:1381` || `char* where = strchr(cr,':');` || I actually have no clue what is going on here; there are very few comments in this area of the code... || Even though I do not really get what this is used for here, it would still probably be a good idea to check for this function anyways. ||
    1616|| `AC_CHECK_FUNCS([strdup])` || `src/cregistry/entry.c:384` || `query = strdup("SELECT id FROM registry.ports");` || In a registry searching function || `/* build the query */` Checking this would help ensure that registry-checking works properly. ||
    17 || `AC_CHECK_FUNCS([strerror])` || `src/macports1.0/sysctl.c:72` ||
     17|| `AC_CHECK_FUNCS([strerror])` || `src/macports1.0/sysctl.c:72` || `Tcl_AppendObjToObj(tcl_result, Tcl_NewStringObj(strerror(errno), -1));` || Used for an error that can result from checking `sysctl` || Checking for this could improve `sysctl` checking. ||
    1818|| `AC_CHECK_FUNCS([strrchr])` || `src/darwintracelib1.0/darwintrace.c:894` ||
    1919|| `AC_CHECK_FUNCS([strstr])` || `src/machista1.0/machista_wrap.c:1383` ||