You can subscribe to this list here.
| 2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(5) |
Nov
(5) |
Dec
(1) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2010 |
Jan
|
Feb
(4) |
Mar
(1) |
Apr
(10) |
May
|
Jun
(1) |
Jul
|
Aug
(1) |
Sep
(4) |
Oct
|
Nov
|
Dec
|
| 2011 |
Jan
(1) |
Feb
(1) |
Mar
(2) |
Apr
|
May
(30) |
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
| 2012 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2013 |
Jan
|
Feb
|
Mar
|
Apr
(3) |
May
|
Jun
|
Jul
(2) |
Aug
(2) |
Sep
|
Oct
(1) |
Nov
|
Dec
|
| 2014 |
Jan
|
Feb
|
Mar
|
Apr
(3) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
(1) |
| 2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
| 2018 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
|
|
|
|
1
|
2
|
3
|
4
|
|
5
|
6
|
7
|
8
|
9
(1) |
10
|
11
(2) |
|
12
|
13
|
14
|
15
|
16
|
17
|
18
|
|
19
|
20
|
21
|
22
|
23
|
24
|
25
|
|
26
|
27
|
28
|
29
|
30
|
|
|
|
From: Joseph G. <jos...@gm...> - 2011-06-11 21:14:44
|
Improved patch, also fixes missing assertions header. Without it there are lots of errors about JSON_FAIL_MESSAGE and others being undefined. Also, I'm manually specifying -DJSON_IS_AMALGAMATION as part of my build, but it sounds like I'm not supposed to need to do that? -Joe G. On Sat, Jun 11, 2011 at 1:54 PM, Joseph Garvin <jos...@gm...> wrote: > amalgamate.py currently doesn't work on Linux because some paths are > done using backslashes instead of forward slashes. I think the Right > Way (TM) to do this is to use os.path, but here's a lazy patch that > just swaps the slashes. > > -Joe G. > |
|
From: Joseph G. <jos...@gm...> - 2011-06-11 18:54:31
|
amalgamate.py currently doesn't work on Linux because some paths are done using backslashes instead of forward slashes. I think the Right Way (TM) to do this is to use os.path, but here's a lazy patch that just swaps the slashes. -Joe G. |
|
From: Andris P. <and...@ik...> - 2011-06-09 09:24:52
|
Json-C (http://oss.metaparadigm.com/json-c/) also installs file /usr/include/json/json.c. Json-C package is present at least in some Linux distributions (it is in Fedora) It would be nice to avoid conflict with JsonCpp header file include/json/json.h. One way would be to move all headers to include/jsoncpp/ from include/json/. Unfortunatelly this change would break already existing software which uses JsonCpp. Perhaps it would be better to put headers in new place and add forwarding headers in old place. For example: include/json/json.h could contain #ifndef __JSONCPP_JSON_JSON_H__ #define __JSONCPP_JSON_JSON_H__ #warning Header file json/json.h is deprecated. Use jsoncpp/json.h instead #include <jsoncpp/json.h> #endif and similarly for other headers. After some time it would then be possible to remove headers at old place. Andris |