Changeset 20221

Show
Ignore:
Timestamp:
05/15/07 08:07:39 (1 year ago)
Author:
patrick
Message:

Updated for the signature change to vpr::InteAddr::getAllLocalAddrs() in
VPR 1.1.43. Bumped PyJuggler? version to 1.1.15.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • PyJuggler/branches/1.2/ChangeLog

    r19942 r20221  
    11DATE        AUTHOR      CHANGE 
    22----------- ----------- ------------------------------------------------------- 
     3May-15-2007 patrick     Updated for VPR 1.1.43. 
     4                        NEW VERSION: 1.1.15 
    35Apr-11-2007 patrick     Updated for Gadgeteer 1.1.24. 
    46                        NEW VERSION: 1.1.14 
  • PyJuggler/branches/1.2/configure.ac

    r20194 r20221  
    410410fi 
    411411 
    412 VPR_PATH([1.1.20], , [AC_MSG_ERROR([*** VPR is required for PyJuggler ***])]) 
     412VPR_PATH([1.1.43], , [AC_MSG_ERROR([*** VPR is required for PyJuggler ***])]) 
    413413JCCL_PATH_CXX([1.1.11], , 
    414414              [AC_MSG_ERROR([*** JCCL is required for PyJuggler ***])]) 
  • PyJuggler/branches/1.2/dist/__init__.py

    r19942 r20221  
    66__all__     = ["vrj", "cluster", "gadget", "snx", "jccl", "vpr"] 
    77__build__   = 1 
    8 __version__ = '1.1.14.%d' % __build__ 
     8__version__ = '1.1.15.%d' % __build__ 
    99__date__    = string.join(string.split('$Date$')[1:3], ' ') 
    1010__author__  = 'Patrick Hartling <patrick@infiscape.com>' 
  • PyJuggler/branches/1.2/src/vpr/_InetAddr.cpp

    r20205 r20221  
    7474      ) 
    7575      .def("getAllLocalAddrs", &vpr::InetAddr::getAllLocalAddrs, 
    76            (args("withLoopback") = false), 
     76           (args("withLoopback") = false, args("withDown") = false), 
    7777           "getAllLocalAddrs(withLoopback = False) -> list of InetAddr objects\n" 
    7878           "Retrieves all the IPv4 addresses associated with the local\n" 
     
    8383           "                loopback address (127.0.0.1) in the returned\n" 
    8484           "                list. This parameter is optional and defaults to\n" 
    85            "                False." 
     85           "                False.\n" 
     86           "withDown     -- A Boolean flag indicating whether the address for\n" 
     87           "                interfaces in the down state should be included.\n" 
     88           "                This parameter is optional and defaults to False." 
    8689      ) 
    8790      .def("setAddress",