Commit graph

732 commits

Author SHA1 Message Date
Yo-An Lin 031a37514e Merge pull request #83 from sjones608/cplusplus_bool
Don't typedef bool if compiling with C++
2015-10-01 09:56:22 +08:00
Steve Jones d12296af59 Don't typedef bool if compiling with C++
If using the C++ wrapper provided by r3.hpp, you get a compiler
error when r3_define.h tries to typedef bool as C++ already has
native bool type.  Modified the guard around this typedef
to include a check for C++ compilation (!defined(__cplusplus)).
2015-09-28 11:42:45 -05:00
Yo-An Lin eb2ff77e5c Merge pull request #82 from RickySu/memoryleak-fix
fix memory leak
2015-09-11 18:24:07 +08:00
Ricky Su 292b082c78 fix memory leak 2015-09-11 15:14:07 +08:00
Yo-An Lin d9a7deab9a Merge pull request #81 from RickySu/headerfile-fix
add extern c in c++
2015-08-28 14:00:08 +08:00
Ricky Su d5296df683 add extern c in c++ 2015-08-27 13:58:36 +08:00
Yo-An Lin 5eb3e483b3 Merge pull request #80 from RickySu/slug_find_name
add r3_slug_find_name and rename slug_count to r3_slug_count
2015-08-26 22:06:46 +08:00
Ricky Su f445c261c6 add r3_slug_find_name and rename slug_count to r3_slug_count 2015-08-26 22:00:23 +08:00
c9s 3a62cb6559 Fix cmake build 2015-03-05 11:45:39 +08:00
Gasol Wu 85f1b218a5 Make build sucessful 2015-02-12 13:21:50 +08:00
Gasol Wu 50643bb25f Add missing files from Pux 2015-02-12 13:21:50 +08:00
Gasol Wu 868ee4a27b Add workable config.m4 2015-02-12 13:21:50 +08:00
Brendan Ashworth 01239c96f6 Fixes typo 2015-02-12 12:44:41 +08:00
Brendan Ashworth ea286b2c56 Adds clib package.json for dependency management 2015-02-12 12:44:41 +08:00
Yo-An Lin 17276ae8eb Update README.md 2015-01-27 17:35:26 +08:00
Yo-An Lin c7fcba3ee5 Merge pull request #77 from pangyre/patch-1
Update README.md
2014-11-20 15:34:43 +08:00
Ashley Pond V 607a285426 Update README.md
Simple typo, s/Memroy/Memory/;
2014-11-19 19:46:30 -08:00
c9s 82143dfacb use am slient rule 2014-09-27 16:40:06 +08:00
Yo-An Lin 0f01283e78 Merge pull request #74 from PeterDaveHello/patch-1
make CI build faster
2014-08-14 07:06:39 +08:00
Peter Dave Hello 7a39929776 make CI build faster 2014-08-13 14:29:18 +08:00
c9s bd22e7b35c free slug object 2014-08-12 18:03:26 +08:00
Yo-An Lin 21dcdd5807 Merge pull request #70 from tonytonyjan/patch-2
Add a new binding link.
2014-08-09 17:49:45 +08:00
Yo-An Lin 84a27bdf05 Merge pull request #69 from tonytonyjan/patch-1
Update README.md
2014-08-09 17:49:27 +08:00
Yo-An Lin b80270afe9 Merge pull request #72 from kanru/fix-pcre-return-type
Fix pcre_exec's return type
2014-08-09 17:48:52 +08:00
Kan-Ru Chen (陳侃如) 3629452fe0 Fix pcre_exec's return type
According to PCRE_EXEC(3) pcre_exec returns int.

The original code uses char but char could be either signed or
unsigned. On armel and sparc this caused segment fault because
the (rc < 0) error checking was optimized out.
2014-08-04 01:07:37 +08:00
簡煒航 (Jian Weihang) 5d22dc54af Add a new binding link. 2014-07-30 05:28:33 +08:00
簡煒航 (Jian Weihang) 302763b783 Update README.md 2014-07-29 21:47:58 +08:00
Yo-An Lin 8c5b25949e Merge pull request #65 from czchen/feature/pcre
Use Requires for libpcre in r3.pc
2014-07-05 16:04:23 +08:00
Yo-An Lin 3963bddb1f Merge pull request #64 from czchen/feature/debug
Let --enable-debug define DEBUG instead of ENABLE_DEBUG in config.h
2014-07-05 16:03:46 +08:00
ChangZhuo Chen (陳昌倬) b3482c7792 Use Requires for libpcre in r3.pc 2014-07-04 21:27:56 +08:00
ChangZhuo Chen (陳昌倬) 6eb509beb2 Use ##__VA_ARGS__ to avoid build fail 2014-07-04 18:26:32 +08:00
ChangZhuo Chen (陳昌倬) 21d9c486c0 Use DEBUG instead of ENABLE_DEBUG in config.h 2014-07-04 18:25:22 +08:00
c9s 270fd1dd7b Fix image path 2014-06-28 01:25:29 +08:00
c9s 1dca0fb453 update changelogs 2014-06-28 00:54:43 +08:00
c9s 13900d44ba bump version to 1.3.3 2014-06-28 00:53:32 +08:00
c9s da026219be Fix gvc graph generator function 2014-06-28 00:53:04 +08:00
c9s 72f10015d5 Fix copyright email 2014-06-27 13:24:40 +08:00
c9s 1eeae6d26e bump version to 1.3.2 2014-06-27 00:18:22 +08:00
c9s 9a9572a0d5 Fix duplicated symbol define 2014-06-27 00:05:24 +08:00
c9s 04ac654440 Fix Makefile.am for C++ 2014-06-27 00:04:23 +08:00
c9s d00ac51809 Fix cmakelist 2014-06-27 00:04:22 +08:00
Yo-An Lin db35d03217 Merge pull request #62 from caasi/patch-2
Update README.md
2014-06-20 10:28:24 +08:00
caasi Huang 6e468fd5b5 Update README.md
* Try to fix the example: 'Routing with conditions'.
* Add two Node.js bindings.
2014-06-20 03:09:26 +08:00
Yo-An Lin 5e00b60f79 Merge pull request #61 from czchen/feature/ppa
Add ubuntu PPA link
2014-06-19 15:22:01 +08:00
ChangZhuo Chen (陳昌倬) cc253e069a Add ubuntu PPA link 2014-06-18 23:48:17 +08:00
c9s 7754043252 Include 3rdparty CMakeLists.txt 2014-06-18 20:54:46 +08:00
c9s a697301c44 strndup polyfill for cmake 2014-06-18 20:47:06 +08:00
c9s 8ebaac0536 Fix CMakeLists.txt 2014-06-18 20:28:13 +08:00
c9s fb0cb84c3c Put CMakeLists.txt back 2014-06-18 20:28:13 +08:00
c9s 25e3644630 put cmake_modules files back, we can support two build systems 2014-06-18 20:28:13 +08:00