summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix for stdint.h not found in exampleswin32_example_include_fixAlan Antonuk2012-03-062-2/+14
|
* Merge pull request #9 from alanxz/vs2008_install_stdint_fixAlan Antonuk2012-03-061-2/+5
|\ | | | | Fix: add stdint.h to install target on MSVC < 1600
| * Fix: add stdint.h to install target on MSVC < 1600vs2008_install_stdint_fixAlan Antonuk2012-03-061-2/+5
|/ | | | | | MSVC doesn't have stdint.h for versions less than 1600, we need to both have this included and installed along with the header files as the stdint.h is used from amqp.h
* Update MinGW/MSYS paths in etc/install-mingw.shv0.1David Wragg2012-01-231-36/+36
|
* Add an option to limit how many messages are consumedDavid Wragg2011-11-092-3/+24
|
* Correct URL that should point to rabbitmq-codegenDavid Wragg2011-11-051-3/+3
|
* Fix up some markdown formattingDavid Wragg2011-11-041-18/+29
|
* Add a README.md symlink so that github will render the markdownDavid Wragg2011-11-041-0/+1
|
* Merge bug24528 (cmake build support)David Wragg2011-11-040-0/+0
|\ | | | | | | | | From Alan Antonuk's github pull request (<https://github.com/rabbitmq/rabbitmq-c/pull/3>).
* | Guard msinttypes include dir with MSVC and not WIN32bug24528Alan Antonuk2011-11-041-1/+4
| | | | | | | | stdint.h is provided by MinGW/MSYS on Win32. It is not provided by MSVC
* | codegen.py should be copied to the bin directoryAlan Antonuk2011-11-042-5/+12
| | | | | | | | | | Codegen.py should be copied to the bin directory and not the source directory.
* | Specify the project language as C to prevent CMake for looking for a c++ ↵Alan Antonuk2011-11-041-1/+1
| | | | | | | | compiler
* | Updating build documentationAlan Antonuk2011-11-011-3/+21
| |
* | Adding missing include in tools CMakeLists.txtAlan Antonuk2011-11-011-1/+1
| |
* | Adding missing amqp_url.c to CMakeLists.txtAlan Antonuk2011-11-011-0/+1
| |
* | Fix: correct platform_utils directory under win32Alan Antonuk2011-11-011-1/+1
| |
* | Make codegen pull a dependancy of librabbitmqAlan Antonuk2011-11-012-2/+2
| |
* | Adding POPT CMake lib finder.Alan Antonuk2011-11-014-6/+130
| | | | | | | | | | Utilities in the tools/ directory will now be built if the popt library is found
* | Adding CMake files to build tools, but not enabledAlan Antonuk2011-10-301-0/+34
| | | | | | | | | | Did not enable because it requires popt and cmake needs to know how to the popt headers and library
* | Improved handing of external rabbitmq-codegenAlan Antonuk2011-10-301-14/+38
| | | | | | | | | | | | - By default look in the CMAKE_SOURCE_DIR/rabbitmq-codegen, then CMAKE_SOURCE_DIR/../rabbitmq-codegen unless RABBITMQ_CODEGEN_DIR is set - If FETCH_CODEGEN_FROM_GIT use the CMake ExternalProject to do it
* | Fix: setting correct output name for generated filesAlan Antonuk2011-10-301-2/+2
| |
* | Building the rest of the example programsAlan Antonuk2011-10-301-1/+34
| |
* | Adding documentation on how to use CMake buildAlan Antonuk2011-10-252-2/+25
| |
* | Make the copy of codegen.py work in all casesAlan Antonuk2011-08-311-2/+6
| |
* | Adding the codegen stuff as an ExternalProjectAlan Antonuk2011-08-312-26/+33
| |
* | CodeGen found message should be a statusAlan Antonuk2011-06-071-1/+2
| |
* | Adding install targetAlan Antonuk2011-06-071-0/+11
| |
* | Changes to support building on Win32/64Alan Antonuk2011-06-063-12/+67
| |
* | generate config.h in binary dir instead of source dirXiaoGuang Zeng2011-03-031-1/+1
| |
* | add cmake build support.XiaoGuang Zeng2011-03-033-0/+68
|/ | | | librabbitmq and example/amqp_sendstring can be build under linux now.
* Provide some minimal client propertiesDavid Wragg2011-10-131-2/+13
|
* merge bug24440 into default (add amqp URL support to C client)Alexandru Scvortov2011-09-2110-176/+750
|\
| * Add amqp URL support to the toolsbug24440David Wragg2011-09-211-28/+119
| |
| * Add support for parsing amqp URLs to librabbitmqDavid Wragg2011-09-218-3/+398
| |
| * Automatically run test_tables in 'make check'David Wragg2011-09-212-122/+236
| | | | | | | | | | | | This involves making test_tables self-contained. Previously, it would write to stdout, and that output had to be manually compared with test_tables.expected. Now the comparison is automated.
| * Remove the redundant float and double encoding testsDavid Wragg2011-09-211-26/+0
|/ | | | test_table_codec already tests these.
* merge bug24349 into default (rabbitmq-c should work on platforms that don't ↵Alexandru Scvortov2011-09-062-7/+33
|\ | | | | | | support unaligned accesses)
| * Comment magical memcpysbug24349David Wragg2011-08-181-2/+6
| |
| * Don't rely on unaligned accesses or little-endiannessDavid Wragg2011-08-172-7/+29
|/ | | | | | | | | | This uses memcpy to avoid the unaligned accesses. gcc on x86 seems to do a reasonable job of optimizing them away. gcc on ARM leaves some memcpy calls in the generated code. It might be better in terms of the code generated to use an approach based on packaged structs (that's wwhat the Linux kernel does). But that would depend on compiler-specific syntax.
* die_errno should use the err parameter, not errnoDavid Wragg2011-07-051-1/+1
|
* Don't emit trailing spaces in test_tables.cDavid Wragg2011-07-051-14/+14
|
* Remove trailing whitespaceDavid Wragg2011-07-0521-62/+62
|
* Merge bug24048 into defaultDavid Wragg2011-04-181-0/+1
|\ | | | | | | Add missing header to fix build on OpenBSD
| * Add missing header (fixes build on OpenBSD).bug24048Piotr Sikora2011-04-111-0/+1
|/
* merge bug23872 into default (update copyright to "VMware, Inc")Alexandru Scvortov2011-03-0244-763/+338
|\
| * Include a license block in generated filesbug23872David Wragg2011-03-021-11/+49
| | | | | | | | For consistency with broker codegen.
| * Fix remaining mentions of the defunct tonyg@rabbitmq.com addressDavid Wragg2011-03-022-2/+3
| |
| * Python doesn't like C commentsDavid Wragg2011-03-011-35/+35
| |
| * Update copyright noticesDavid Wragg2011-03-0142-778/+314
|/ | | | And generally bring debian/copyright up to date.
* Credit recent contributorsDavid Wragg2011-02-071-0/+4
|