* support installation of both x64 and x86 binaries
* add readme
* add function to convert line endings. The README.md file currently has
Windows line endings, but if that ever changes this function will
automatically make the file "Windows friendly".
- No hard coded dependency paths. These are better set with environment
variables or property pages.
- Don't require admin rights to run
- Add support for running on Windows XP (note that Boost and Crypto++
*also* need to be built targetting XP).
- Explicitly set type to console application
- Initial stubs for building x64 version
- Turn off sending error reports to Microsoft
- spaces, not tabs (matches the default when saved by VS2013 itself)
- disable multibyte
- re-enable SDL checks
This reverts commits c8a80a497d and f7791e5289
This didn't actually fix Windows crash problem. In fact, it still
crashed without --log=0 being set. Changes to the i2pd.vcxproj file
fixed the crashes with VS 2013 > update 1. i2pd now works with VS 2013
Update 3 and Update 4 RC.
Since these changes didn't have the intended effect, let's remove them.
Move old LDFLAGS variable to LDLIBS. By doing ths, a user can set their
own LDFLAGS without breaking the build. A case in which this can be
useful is hardening with debian, e.g.
$ dpkg-buildflags --get LDFLAGS
-Wl,-z,relro
Note; we use _MSC_VER instead of _WIN32 for MSVC spesific code.
* 'master' of github-meeh420:PrivacySolutions/i2pd: (35 commits)
handle incoming datagramms
send datagram through destination's thread
incoming ipv6 connections
support ipv6 for outgoing NTCP connections
some cleanup
Update Daemon.cpp
Add Upstart job to debian packaging
Implement reload in init script
Rename init.d to i2pd.init
Decouple logging and daemonization
verify signature through remore identity
moved remote RI and identity to TransportSession
set unreachable trough NetDb
moved AddressBook to ClientContext
initialize router identity
don't specify RI for inbound NTCP connections
use remote router indentity
take identity of local RI from private keys
send datagram from SAM
fixed windows build
...
Conflicts:
SAM.cpp