Routino SVN Repository Browser

Check out the latest version of Routino: svn co http://routino.org/svn/trunk routino

ViewVC logotype

Log of /branches/MS-Windows

View Directory Listing Directory Listing


Sticky Revision:


Revision 1698 - Directory Listing
Modified Sun May 31 16:34:57 2015 UTC (9 years, 9 months ago) by amb
Merge changes from trunk: remove -Wfloat-conversion option, change
web/Makefile order, ensure allocated strings are long enough.


Revision 1697 - Directory Listing
Modified Sun May 31 16:31:27 2015 UTC (9 years, 9 months ago) by amb
Microsoft Windows does not allow deleting an open file and continuing
to use it like UNIX does.  For MS Windows rename the file instead of
deleting and replacing it and do not delete open files immediately but
wait until they are closed.


Revision 1696 - Directory Listing
Modified Sat May 30 17:21:45 2015 UTC (9 years, 9 months ago) by amb
Open files in binary mode for MSVC and MinGW.


Revision 1692 - Directory Listing
Modified Fri May 29 14:34:26 2015 UTC (9 years, 9 months ago) by amb
Add instructions for compiling with Cygwin (no source code changes
needed).


Revision 1691 - Directory Listing
Modified Thu May 28 18:30:17 2015 UTC (9 years, 9 months ago) by amb
Merge changes from trunk: "Update Makefiles ... 'make clean' goes back
to the source code in the release tar files and 'make distclean' goes
back to the source code in subversion".


Revision 1689 - Directory Listing
Modified Thu May 28 17:28:13 2015 UTC (9 years, 9 months ago) by amb
Update documentation to describe compilation on Microsoft Windows.


Revision 1688 - Directory Listing
Modified Thu May 28 17:27:31 2015 UTC (9 years, 9 months ago) by amb
Do not try to compile the built-in file decompression on MINGW or MSVC
due to the lack of fork() function.


Revision 1687 - Directory Listing
Modified Thu May 28 17:25:01 2015 UTC (9 years, 9 months ago) by amb
Update Makefiles for compiling with MINGW to include mman-win32.o and
handle executables with .exe file extension.


Revision 1686 - Directory Listing
Modified Tue May 26 19:03:41 2015 UTC (9 years, 9 months ago) by amb
When compiling with MINGW there is no strcasecmp() function so
_stricmp() must be used (the same as with MSVC).


Revision 1685 - Directory Listing
Modified Tue May 26 19:02:32 2015 UTC (9 years, 9 months ago) by amb
When compiling with MINGW the same mman-win32 functions are required
as with MSVC.  The open() function can not set the 'group' and 'other'
permissions although it can set the 'user' permissions.


Revision 1684 - Directory Listing
Modified Tue May 26 19:01:08 2015 UTC (9 years, 9 months ago) by amb
When compiling with MINGW the pread() and pwrite() functions are not
available.  Fix a signed/unsigned assignment warning in the inline
functions.


Revision 1683 - Directory Listing
Modified Tue May 26 18:59:24 2015 UTC (9 years, 9 months ago) by amb
Only compile the pipe_and_fork() function if any of the compression
methods are enabled.


Revision 1682 - Directory Listing
Modified Tue May 26 17:31:47 2015 UTC (9 years, 9 months ago) by amb
Copied from: trunk revision 1681
Create a branch for a version that compiles on Microsoft Windows (not just with MSVC).

Revision 1680 - Directory Listing
Modified Tue May 26 17:28:56 2015 UTC (9 years, 9 months ago) by amb
Original Path: trunk
Merge branch 'MSVC' back into the trunk.


Revision 1679 - Directory Listing
Modified Tue May 26 17:24:34 2015 UTC (9 years, 9 months ago) by amb
Original Path: trunk
Update to Leaflet version 0.7.3.


Revision 1678 - Directory Listing
Modified Thu May 21 18:37:15 2015 UTC (9 years, 9 months ago) by amb
Original Path: trunk
Fix bug with 64-bit version failing 'make test'.


Revision 1677 - Directory Listing
Modified Wed May 20 18:36:31 2015 UTC (9 years, 9 months ago) by amb
Original Path: trunk
Change a static variable to a const to clarify it usage.


Revision 1661 - Directory Listing
Modified Mon May 18 18:01:10 2015 UTC (9 years, 10 months ago) by amb
Original Path: trunk
Fix use-after-free error found by valgrind.


Revision 1657 - Directory Listing
Modified Sat May 16 17:45:20 2015 UTC (9 years, 10 months ago) by amb
Original Path: trunk
Fix bug with moving markers on the map (OpenLayers version) and enable
markers when they are dragged onto the map (both versions).


Revision 1656 - Directory Listing
Modified Sat May 16 15:33:49 2015 UTC (9 years, 10 months ago) by amb
Original Path: trunk
Allow dragging the waypoint icon up-and-down in the list and onto the
map.


Revision 1655 - Directory Listing
Modified Fri May 15 16:33:34 2015 UTC (9 years, 10 months ago) by amb
Original Path: trunk
Add updated Hungarian translations submitted via
http://www.routino.org/translations/ on 2015-05-14.


Revision 1653 - Directory Listing
Modified Thu May 14 17:27:01 2015 UTC (9 years, 10 months ago) by amb
Original Path: trunk
Add the -pedantic compilation flag to allow detection of more
potential errors and portability issues.


Revision 1652 - Directory Listing
Modified Thu May 14 17:25:25 2015 UTC (9 years, 10 months ago) by amb
Original Path: trunk
Replace all arithmetic involving 'void*' pointers with 'char*' since
it isn't strictly valid although it is accepted by gcc.


Revision 1651 - Directory Listing
Modified Wed May 13 19:02:08 2015 UTC (9 years, 10 months ago) by amb
Original Path: trunk
Remove a gcc warning about overflow in implicit constant conversion
(by making it an explicit type cast).


Revision 1650 - Directory Listing
Added Wed May 13 17:58:30 2015 UTC (9 years, 10 months ago) by amb
Original Path: trunk
Use "%zu" to print 'size_t' type values and use Pindex_t to print
'index_t' type values.