[Winpcap-users] master b5b9b7d: Start migrating to MSBuild.

WinPcap code review code-review-do-not-reply at winpcap.org
Sun Jul 12 21:39:38 UTC 2015


URL: https://code.wireshark.org/review/gitweb?p=winpcap.git;a=commit;h=b5b9b7d2472d9ad3520a2a696ffddaee3621c452
Submitter: Graham Bloice (graham.bloice at trihedral.com)
Changed: branch: master
Repository: winpcap

Commits:

b5b9b7d by Gerald Combs (gerald at wireshark.org):

    Start migrating to MSBuild.
    
    Add the results of naively running
    
        devenv /upgrade install\MakeAll.sln
    
    under Visual Studio 2013. Remove some (but not all) .vcproj files.
    
    and (lots of) further changes to allow a build to complete.
    
    Note there are hard-coded paths to the win 7 SDK and DDK in the
    VS solution files and packetNtx\CompileDriverNew.bat
    
    Change-Id: I691d7339b466884d1ce4658b8748c6b95a29be8d
    Reviewed-on: https://code.wireshark.org/review/9505
    Reviewed-by: Gerald Combs <gerald at wireshark.org>
    Reviewed-by: Yang Luo <hsluoyz at gmail.com>
    Reviewed-by: Graham Bloice <graham.bloice at trihedral.com>
    

Actions performed:

    from  c33b60b   Add initial .gitignore and .gitreview.
    adds  b5b9b7d   Start migrating to MSBuild.


Summary of changes:
 .gitignore                                         |   37 +
 install/BuildMe.bat                                |   51 +-
 install/MakeAll.sln                                |  114 +-
 .../WinPcap Installer Helper.vcproj                |  241 ---
 .../WinPcap Installer Helper.vcxproj               |  120 ++
 .../WinPcap Installer Helper.vcxproj.filters       |   52 +
 install/copy_installer_files.bat                   |   20 +-
 install/installer/WinPcap.nsi                      | 1047 +++++++------
 install/installer/distribution/license.txt         |    2 +-
 install/release procedures.txt                     |  122 +-
 integrate_libpcap.bat                              |   14 +-
 packetNtx/CompileDriverNew.bat                     |   10 +-
 packetNtx/Dll/Project/Packet.vcproj                | 1612 --------------------
 packetNtx/Dll/Project/Packet.vcxproj               |  538 +++++++
 packetNtx/Dll/Project/Packet.vcxproj.filters       |   59 +
 packetNtx/ddkbuild.cmd                             | 1265 +++++++++++++++
 packetNtx/driver/Driver.vcproj                     |  266 ----
 packetNtx/driver/Driver.vcxproj                    |  153 ++
 packetNtx/driver/Driver.vcxproj.filters            |  125 ++
 version.h                                          |   35 +-
 wpcap/PRJ/wpcap.vcproj                             |  858 -----------
 wpcap/PRJ/wpcap.vcxproj                            |  396 +++++
 wpcap/PRJ/wpcap.vcxproj.filters                    |  152 ++
 wpcap/libpcap/rpcapd/rpcapd.vcproj                 |  263 ----
 wpcap/libpcap/rpcapd/rpcapd.vcxproj                |  123 ++
 wpcap/libpcap/rpcapd/rpcapd.vcxproj.filters        |   71 +
 wpcap/libpcap/snprintf.patch                       |   12 +
 27 files changed, 3819 insertions(+), 3939 deletions(-)
 delete mode 100644 install/WinPcap Installer Helper/WinPcap Installer Helper.vcproj
 create mode 100644 install/WinPcap Installer Helper/WinPcap Installer Helper.vcxproj
 create mode 100644 install/WinPcap Installer Helper/WinPcap Installer Helper.vcxproj.filters
 delete mode 100644 packetNtx/Dll/Project/Packet.vcproj
 create mode 100644 packetNtx/Dll/Project/Packet.vcxproj
 create mode 100644 packetNtx/Dll/Project/Packet.vcxproj.filters
 create mode 100644 packetNtx/ddkbuild.cmd
 delete mode 100644 packetNtx/driver/Driver.vcproj
 create mode 100644 packetNtx/driver/Driver.vcxproj
 create mode 100644 packetNtx/driver/Driver.vcxproj.filters
 delete mode 100644 wpcap/PRJ/wpcap.vcproj
 create mode 100644 wpcap/PRJ/wpcap.vcxproj
 create mode 100644 wpcap/PRJ/wpcap.vcxproj.filters
 delete mode 100644 wpcap/libpcap/rpcapd/rpcapd.vcproj
 create mode 100644 wpcap/libpcap/rpcapd/rpcapd.vcxproj
 create mode 100644 wpcap/libpcap/rpcapd/rpcapd.vcxproj.filters
 create mode 100644 wpcap/libpcap/snprintf.patch


More information about the Winpcap-users mailing list