Git Product home page Git Product logo

cl-rabbit's People

Contributors

b0max avatar davidalphafox avatar desiderius avatar dfmorrison avatar knobo avatar lokedhs avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

cl-rabbit's Issues

Can't build on FreeBSD

Hi,

I'm trying to get cl-rabbit compiled and running under FreeBSD 10.1 but sbcl fails the build with the following:

External process exited with code 1.
Command was: "cc" "-m64" "-I" "/usr/local/include/" "-I/usr/home/arpunk/quicklisp/dists/quicklisp/software/cffi_0.14.0/" "-o" "/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel" "/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c"
Output was:
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:25:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_VERSION_MAJOR);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:27:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_VERSION_MAJOR);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:39:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_VERSION_MINOR);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:41:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_VERSION_MINOR);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:53:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_VERSION_PATCH);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:55:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_VERSION_PATCH);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:67:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_VERSION_IS_RELEASE);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:69:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_VERSION_IS_RELEASE);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:81:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_PROTOCOL_VERSION_MAJOR);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:83:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_PROTOCOL_VERSION_MAJOR);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:95:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_PROTOCOL_VERSION_MINOR);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:97:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_PROTOCOL_VERSION_MINOR);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:109:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_PROTOCOL_VERSION_REVISION);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:111:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_PROTOCOL_VERSION_REVISION);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:123:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_PROTOCOL_PORT);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:125:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_PROTOCOL_PORT);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:137:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_FRAME_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:139:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_FRAME_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:151:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_FRAME_HEADER);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:153:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_FRAME_HEADER);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:165:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_FRAME_BODY);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:167:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_FRAME_BODY);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:179:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_FRAME_HEARTBEAT);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:181:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_FRAME_HEARTBEAT);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:193:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_FRAME_MIN_SIZE);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:195:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_FRAME_MIN_SIZE);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:207:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_FRAME_END);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:209:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_FRAME_END);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:221:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_REPLY_SUCCESS);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:223:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_REPLY_SUCCESS);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:235:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_CONTENT_TOO_LARGE);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:237:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_CONTENT_TOO_LARGE);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:249:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_NO_ROUTE);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:251:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_NO_ROUTE);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:263:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_NO_CONSUMERS);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:265:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_NO_CONSUMERS);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:277:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_ACCESS_REFUSED);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:279:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_ACCESS_REFUSED);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:291:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_NOT_FOUND);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:293:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_NOT_FOUND);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:305:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_RESOURCE_LOCKED);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:307:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_RESOURCE_LOCKED);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:319:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_PRECONDITION_FAILED);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:321:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_PRECONDITION_FAILED);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:333:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_CONNECTION_FORCED);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:335:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_CONNECTION_FORCED);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:347:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_INVALID_PATH);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:349:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_INVALID_PATH);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:361:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_FRAME_ERROR);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:363:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_FRAME_ERROR);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:375:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_SYNTAX_ERROR);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:377:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_SYNTAX_ERROR);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:389:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_COMMAND_INVALID);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:391:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_COMMAND_INVALID);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:403:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_CHANNEL_ERROR);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:405:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_CHANNEL_ERROR);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:417:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_UNEXPECTED_FRAME);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:419:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_UNEXPECTED_FRAME);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:431:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_RESOURCE_ERROR);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:433:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_RESOURCE_ERROR);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:445:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_NOT_ALLOWED);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:447:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_NOT_ALLOWED);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:459:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_NOT_IMPLEMENTED);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:461:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_NOT_IMPLEMENTED);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:473:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_INTERNAL_ERROR);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:475:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_INTERNAL_ERROR);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:487:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_CONNECTION_START_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:489:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_CONNECTION_START_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:501:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_CONNECTION_START_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:503:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_CONNECTION_START_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:515:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_CONNECTION_SECURE_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:517:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_CONNECTION_SECURE_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:529:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_CONNECTION_SECURE_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:531:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_CONNECTION_SECURE_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:543:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_CONNECTION_TUNE_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:545:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_CONNECTION_TUNE_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:557:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_CONNECTION_TUNE_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:559:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_CONNECTION_TUNE_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:571:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_CONNECTION_OPEN_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:573:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_CONNECTION_OPEN_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:585:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_CONNECTION_OPEN_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:587:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_CONNECTION_OPEN_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:599:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_CONNECTION_CLOSE_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:601:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_CONNECTION_CLOSE_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:613:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_CONNECTION_CLOSE_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:615:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_CONNECTION_CLOSE_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:627:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_CONNECTION_BLOCKED_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:629:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_CONNECTION_BLOCKED_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:641:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_CONNECTION_UNBLOCKED_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:643:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_CONNECTION_UNBLOCKED_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:655:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_CHANNEL_OPEN_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:657:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_CHANNEL_OPEN_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:669:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_CHANNEL_OPEN_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:671:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_CHANNEL_OPEN_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:683:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_CHANNEL_FLOW_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:685:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_CHANNEL_FLOW_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:697:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_CHANNEL_FLOW_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:699:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_CHANNEL_FLOW_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:711:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_CHANNEL_CLOSE_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:713:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_CHANNEL_CLOSE_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:725:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_CHANNEL_CLOSE_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:727:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_CHANNEL_CLOSE_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:739:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_ACCESS_REQUEST_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:741:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_ACCESS_REQUEST_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:753:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_ACCESS_REQUEST_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:755:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_ACCESS_REQUEST_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:767:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_EXCHANGE_DECLARE_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:769:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_EXCHANGE_DECLARE_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:781:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_EXCHANGE_DECLARE_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:783:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_EXCHANGE_DECLARE_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:795:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_EXCHANGE_DELETE_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:797:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_EXCHANGE_DELETE_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:809:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_EXCHANGE_DELETE_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:811:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_EXCHANGE_DELETE_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:823:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_EXCHANGE_BIND_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:825:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_EXCHANGE_BIND_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:837:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_EXCHANGE_BIND_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:839:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_EXCHANGE_BIND_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:851:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_EXCHANGE_UNBIND_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:853:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_EXCHANGE_UNBIND_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:865:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_EXCHANGE_UNBIND_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:867:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_EXCHANGE_UNBIND_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:879:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_QUEUE_DECLARE_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:881:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_QUEUE_DECLARE_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:893:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_QUEUE_DECLARE_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:895:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_QUEUE_DECLARE_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:907:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_QUEUE_BIND_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:909:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_QUEUE_BIND_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:921:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_QUEUE_BIND_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:923:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_QUEUE_BIND_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:935:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_QUEUE_PURGE_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:937:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_QUEUE_PURGE_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:949:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_QUEUE_PURGE_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:951:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_QUEUE_PURGE_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:963:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_QUEUE_DELETE_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:965:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_QUEUE_DELETE_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:977:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_QUEUE_DELETE_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:979:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_QUEUE_DELETE_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:991:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_QUEUE_UNBIND_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:993:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_QUEUE_UNBIND_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1005:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_QUEUE_UNBIND_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1007:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_QUEUE_UNBIND_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1019:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_BASIC_QOS_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1021:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_BASIC_QOS_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1033:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_BASIC_QOS_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1035:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_BASIC_QOS_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1047:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_BASIC_CONSUME_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1049:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_BASIC_CONSUME_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1061:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_BASIC_CONSUME_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1063:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_BASIC_CONSUME_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1075:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_BASIC_CANCEL_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1077:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_BASIC_CANCEL_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1089:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_BASIC_CANCEL_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1091:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_BASIC_CANCEL_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1103:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_BASIC_PUBLISH_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1105:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_BASIC_PUBLISH_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1117:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_BASIC_RETURN_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1119:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_BASIC_RETURN_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1131:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_BASIC_DELIVER_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1133:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_BASIC_DELIVER_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1145:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_BASIC_GET_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1147:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_BASIC_GET_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1159:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_BASIC_GET_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1161:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_BASIC_GET_OK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1173:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_BASIC_GET_EMPTY_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1175:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_BASIC_GET_EMPTY_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1187:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_BASIC_ACK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1189:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_BASIC_ACK_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1201:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_BASIC_REJECT_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1203:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_BASIC_REJECT_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1215:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_BASIC_RECOVER_ASYNC_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %li
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1217:29: warning: format specifies type 'unsigned long long' but the argument has type 'uint64_t' (aka 'unsigned long') [-Wformat]
    fprintf(output, "%llu", (uint64_t) AMQP_BASIC_RECOVER_ASYNC_METHOD);
                     ~~~~   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                     %lu
/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c:1229:29: warning: format specifies type 'long long' but the argument has type 'int64_t' (aka 'long') [-Wformat]
    fprintf(output, "%lli", (int64_t) AMQP_BASIC_RECOVER_MET..
   [Condition of type CFFI-GROVEL:GROVEL-ERROR]

Restarts:
 0: [RETRY] Retry PROCESS-OP on #<GROVEL-FILE "cl-rabbit" "src" "grovel">.
 1: [ACCEPT] Continue, treating PROCESS-OP on #<GROVEL-FILE "cl-rabbit" "src" "grovel"> as having been successful.
 2: [RETRY] Retry ASDF operation.
 3: [CLEAR-CONFIGURATION-AND-RETRY] Retry ASDF operation after resetting the configuration.
 4: [ABORT] Give up on "cl-rabbit"
 5: [RETRY] Retry SLIME REPL evaluation request.
 --more--

Backtrace:
  0: (CFFI-GROVEL:GROVEL-ERROR "External process exited with code ~S.~@ ..)
  1: (CFFI-GROVEL::INVOKE "cc" "-m64" "-I" "/usr/local/include/" "-I/usr/home/arpunk/quicklisp/dists/quicklisp/software/cffi_0.14.0/" "-o" "/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/a..
  2: (CFFI-GROVEL::CC-COMPILE-AND-LINK #P"/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.c" #P"/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/u..
  3: ((LAMBDA NIL :IN CFFI-GROVEL:PROCESS-GROVEL-FILE))
  4: (SB-IMPL::%WITH-STANDARD-IO-SYNTAX #<CLOSURE (LAMBDA NIL :IN CFFI-GROVEL:PROCESS-GROVEL-FILE) {1008D60E3B}>)
  5: (CFFI-GROVEL:PROCESS-GROVEL-FILE #P"/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.lisp" #P"/usr/home/arpunk/.cache/common-lisp/sbcl-1.2.6-bsd-x64/usr/home/arpunk/src/lisp/cl-rabbit/src/grovel.process..
  6: ((:METHOD ASDF/ACTION:PERFORM (CFFI-GROVEL::PROCESS-OP CFFI-GROVEL:GROVEL-FILE)) #<CFFI-GROVEL::PROCESS-OP > #<CFFI-GROVEL:GROVEL-FILE "cl-rabbit" "src" "grovel">) [fast-method]
  7: ((SB-PCL::EMF ASDF/ACTION:PERFORM) #<unavailable argument> #<unavailable argument> #<CFFI-GROVEL::PROCESS-OP > #<CFFI-GROVEL:GROVEL-FILE "cl-rabbit" "src" "grovel">)
  8: ((:METHOD ASDF/ACTION:PERFORM-WITH-RESTARTS :AROUND (T T)) #<CFFI-GROVEL::PROCESS-OP > #<CFFI-GROVEL:GROVEL-FILE "cl-rabbit" "src" "grovel">) [fast-method]
  9: ((:METHOD ASDF/PLAN:PERFORM-PLAN (LIST)) ((#1=#<ASDF/LISP-ACTION:COMPILE-OP > . #<ASDF/SYSTEM:SYSTEM "alexandria">) (#1# . #<ASDF/COMPONENT:MODULE #2="trivial-features" "src">) (#1# . #<ASDF/SYSTEM:SY..
 10: ((FLET SB-C::WITH-IT :IN SB-C::%WITH-COMPILATION-UNIT))
 11: ((:METHOD ASDF/PLAN:PERFORM-PLAN :AROUND (T)) ((#1=#<ASDF/LISP-ACTION:COMPILE-OP > . #<ASDF/SYSTEM:SYSTEM "alexandria">) (#1# . #<ASDF/COMPONENT:MODULE #2="trivial-features" "src">) (#1# . #<ASDF/SYST..
 12: ((FLET SB-C::WITH-IT :IN SB-C::%WITH-COMPILATION-UNIT))
 13: ((:METHOD ASDF/PLAN:PERFORM-PLAN :AROUND (T)) #<ASDF/PLAN:SEQUENTIAL-PLAN {1007896763}> :VERBOSE NIL) [fast-method]
 14: ((:METHOD ASDF/OPERATE:OPERATE (ASDF/OPERATION:OPERATION ASDF/COMPONENT:COMPONENT)) #<ASDF/LISP-ACTION:LOAD-OP :VERBOSE NIL> #<ASDF/SYSTEM:SYSTEM "cl-rabbit"> :VERBOSE NIL) [fast-method]
 15: ((SB-PCL::EMF ASDF/OPERATE:OPERATE) #<unused argument> #<unused argument> #<ASDF/LISP-ACTION:LOAD-OP :VERBOSE NIL> #<ASDF/SYSTEM:SYSTEM "cl-rabbit"> :VERBOSE NIL)
 16: ((LAMBDA NIL :IN ASDF/OPERATE:OPERATE))
 17: ((:METHOD ASDF/OPERATE:OPERATE :AROUND (T T)) #<ASDF/LISP-ACTION:LOAD-OP :VERBOSE NIL> #<ASDF/SYSTEM:SYSTEM "cl-rabbit"> :VERBOSE NIL) [fast-method]
 18: ((SB-PCL::EMF ASDF/OPERATE:OPERATE) #<unused argument> #<unused argument> ASDF/LISP-ACTION:LOAD-OP "cl-rabbit" :VERBOSE NIL)
 19: ((LAMBDA NIL :IN ASDF/OPERATE:OPERATE))
 --more--

My cc version is:

FreeBSD clang version 3.4.1 (tags/RELEASE_34/dot1-final 208032) 20140512
Target: x86_64-unknown-freebsd10.1
Thread model: posix

My rabbitmq-c library version is 0.5.2 and sbcl 1.2.6, both built from source.

If you need more info or debugging please let me know.

Unable to install

I received compilation errors while attempting to install cl-rabbit on a Mac running OS X (Darwin Kernel Version 14.5.0). I followed the directions on the readme path to use quick load. The output is shown below. It looks like there are two errors: pkg-config was not found and amqp.h was not found. I was able to install pkg-config with brew install pkg-config. That changed the error to

; pkg-config libffi --cflags
ERROR: External process exited with code 1.
Command was: "pkg-config" "libffi" "--cflags"
Output was:
Package libffi was not found in the pkg-config search path.
Perhaps you should add the directory containing `libffi.pc'
to the PKG_CONFIG_PATH environment variable
No package 'libffi' found
Attempting to continue anyway.

The amqp.h error remained.

Original Output
$ sbcl
This is SBCL 1.1.6.0-3c5581a, an implementation of ANSI Common Lisp.
More information about SBCL is available at http://www.sbcl.org/.

SBCL is free software, provided as is, with absolutely no warranty.
It is mostly in the public domain; some portions are provided under
BSD-style licenses. See the CREDITS and COPYING files in the
distribution for more information.

  • (ql:quickload :cl-rabbit)
    To load "cl-rabbit":
    Install 7 Quicklisp releases:
    alexandria babel cffi cl-ppcre cl-rabbit
    trivial-features uiop
    ; Fetching #<URL "http://beta.quicklisp.org/archive/cl-ppcre/2015-06-08/cl-ppcre-2.0.10.tgz">
    ; 156.05KB

    159,799 bytes in 0.75 seconds (208.07KB/sec)
    ; Fetching #<URL "http://beta.quicklisp.org/archive/uiop/2015-08-04/uiop-3.1.5.tgz">
    ; 87.12KB

    89,212 bytes in 0.43 seconds (203.08KB/sec)
    ; Fetching #<URL "http://beta.quicklisp.org/archive/cffi/2015-06-08/cffi_0.15.0.tgz">
    ; 210.58KB

    215,636 bytes in 0.66 seconds (320.52KB/sec)
    ; Fetching #<URL "http://beta.quicklisp.org/archive/trivial-features/2015-07-09/trivial-features-20150709-git.tgz">
    ; 10.23KB

    10,480 bytes in 0.01 seconds (1705.73KB/sec)
    ; Fetching #<URL "http://beta.quicklisp.org/archive/babel/2015-06-08/babel-20150608-git.tgz">
    ; 248.03KB

    253,987 bytes in 0.56 seconds (440.56KB/sec)
    ; Fetching #<URL "http://beta.quicklisp.org/archive/alexandria/2015-05-05/alexandria-20150505-git.tgz">
    ; 48.78KB

    49,955 bytes in 0.25 seconds (191.31KB/sec)
    ; Fetching #<URL "http://beta.quicklisp.org/archive/cl-rabbit/2015-08-04/cl-rabbit-20150804-git.tgz">
    ; 16.63KB

    17,026 bytes in 0.02 seconds (755.77KB/sec)
    ; Loading "cl-rabbit"
    [package alexandria.0.dev]........................
    [package babel-encodings].........................
    [package babel]...................................
    ..................................................
    [package uiop/package]............................
    ..................................................
    [package cffi-sys]................................
    [package cffi]....................................
    ..................................................
    [package cffi-features]...........................
    [package cffi-grovel].............................
    [package cl-ppcre]................................
    ...................; pkg-config libffi --cflags
    ERROR: Couldn't execute "pkg-config": No such file or directory
    Attempting to continue anyway.
    ; cc -m32 -I /opt/local/include/ -I/opt/local/include/ -I/Users/tda0106/quicklisp/dists/quicklisp/software/cffi_0.15.0/ -o /Users/tda0106/.cache/common-lisp/sbcl-1.1.6.0-3c5581a-macosx-x86/Users/tda0106/quicklisp/dists/quicklisp/software/cffi_0.15.0/libffi/libffi-unix /Users/tda0106/.cache/common-lisp/sbcl-1.1.6.0-3c5581a-macosx-x86/Users/tda0106/quicklisp/dists/quicklisp/software/cffi_0.15.0/libffi/libffi-unix.c
    ; /Users/tda0106/.cache/common-lisp/sbcl-1.1.6.0-3c5581a-macosx-x86/Users/tda0106/quicklisp/dists/quicklisp/software/cffi_0.15.0/libffi/libffi-unix /Users/tda0106/.cache/common-lisp/sbcl-1.1.6.0-3c5581a-macosx-x86/Users/tda0106/quicklisp/dists/quicklisp/software/cffi_0.15.0/libffi/libffi-unix.grovel-tmp.lisp
    ...............................
    [package cl-rabbit]...............................
    [package cl-rabbit.examples]; cc -m32 -I /opt/local/include/ -I/opt/local/include/ -I/Users/tda0106/quicklisp/dists/quicklisp/software/cffi_0.15.0/ -o /Users/tda0106/.cache/common-lisp/sbcl-1.1.6.0-3c5581a-macosx-x86/Users/tda0106/quicklisp/dists/quicklisp/software/cl-rabbit-20150804-git/src/grovel /Users/tda0106/.cache/common-lisp/sbcl-1.1.6.0-3c5581a-macosx-x86/Users/tda0106/quicklisp/dists/quicklisp/software/cl-rabbit-20150804-git/src/grovel.c

debugger invoked on a CFFI-GROVEL:GROVEL-ERROR: External process exited with code 1.
Command was: "cc" "-m32" "-I" "/opt/local/include/" "-I/opt/local/include/" "-I/Users/tda0106/quicklisp/dists/quicklisp/software/cffi_0.15.0/" "-o" "/Users/tda0106/.cache/common-lisp/sbcl-1.1.6.0-3c5581a-macosx-x86/Users/tda0106/quicklisp/dists/quicklisp/software/cl-rabbit-20150804-git/src/grovel" "/Users/tda0106/.cache/common-lisp/sbcl-1.1.6.0-3c5581a-macosx-x86/Users/tda0106/quicklisp/dists/quicklisp/software/cl-rabbit-20150804-git/src/grovel.c"
Output was:
/Users/tda0106/.cache/common-lisp/sbcl-1.1.6.0-3c5581a-macosx-x86/Users/tda0106/quicklisp/dists/quicklisp/software/cl-rabbit-20150804-git/src/grovel.c:8:10: fatal error: 'amqp.h' file not found

include <amqp.h>

     ^

1 error generated.

Type HELP for debugger help, or (SB-EXT:EXIT) to exit from SBCL.

restarts (invokable by number or by possibly-abbreviated name):
0: [RETRY ] Retry # on #<GROVEL-FILE "cl-rabbit" "src" "grovel">.
1: [ACCEPT] Continue, treating # on #<GROVEL-FILE "cl-rabbit" "src" "grovel"> as having been successful.
2: [ABORT ] Give up on "cl-rabbit"
3: Exit debugger, returning to top level.

(CFFI-GROVEL:GROVEL-ERROR "External process exited with code S.@
Command was: S{ S}@
Output was:
%~A" 1 "cc" ("-m32" "-I" "/opt/local/include/" "-I/opt/local/include/" "-I/Users/tda0106/quicklisp/dists/quicklisp/software/cffi_0.15.0/" "-o" "/Users/tda0106/.cache/common-lisp/sbcl-1.1.6.0-3c5581a-macosx-x86/Users/tda0106/quicklisp/dists/quicklisp/software/cl-rabbit-20150804-git/src/grovel" "/Users/tda0106/.cache/common-lisp/sbcl-1.1.6.0-3c5581a-macosx-x86/Users/tda0106/quicklisp/dists/quicklisp/software/cl-rabbit-20150804-git/src/grovel.c") "/Users/tda0106/.cache/common-lisp/sbcl-1.1.6.0-3c5581a-macosx-x86/Users/tda0106/quicklisp/dists/quicklisp/software/cl-rabbit-20150804-git/src/grovel.c:8:10: fatal error: 'amqp.h' file not found

include <amqp.h>

     ^

1 error generated.
")
0]

installation issue on Ubuntu 18.04

Hi,
is there some instructions to install on Ubuntu 18 ?
I'm using emacs+slime+sbcl

and (ql:quickload "cl-rabbit") fails because of cffi-libffi fails upon cffi-grovel.
Any idea why that would fail ? am I the only one having this issue or am I the only one using cl-rabbit with Ubuntu ?

Thanks.

basic-consume redelivers when it shouldnt

Hi,

This is my code.

  (handler-case
      (progn
	(with-connection (conn)
	    (let ((socket (tcp-socket-new conn)))
		(socket-open socket *rabbitmq-host* 5672)
		(login-sasl-plain conn *vhost* *rabbitmq-username* *rabbitmq-password*)
		(with-channel (conn 1)
		    (let ((queue-name *queue-name*))
			(basic-consume conn 1 queue-name)
		  )))))
    (error (err)
      (print "Error during process")
      (princ err))))

This works and I can basic ack if I want to. However the above code causes 18/s redelivery events to occur if I observe the rabbitmq dashboard. Why might this be? This feels a bit problematic with massive unnecessary network overhead.

Thanks

Chris

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.