summaryrefslogtreecommitdiff
path: root/librabbitmq
diff options
context:
space:
mode:
authorDavid Wragg <david@rabbitmq.com>2010-10-21 17:49:04 +0100
committerDavid Wragg <david@rabbitmq.com>2010-10-21 17:49:04 +0100
commitba49cb334a0a9ff96956c22ea6eab8920123c6a2 (patch)
tree374f3df9e93d0958f4a94c52ef189a8a56a3e138 /librabbitmq
parent1096c1dbdb961bab603f504b9aaee864f6192c97 (diff)
downloadrabbitmq-c-github-ask-ba49cb334a0a9ff96956c22ea6eab8920123c6a2.tar.gz
Use the msinttypes header when building with the Microsoft compiler
Diffstat (limited to 'librabbitmq')
-rw-r--r--librabbitmq/Makefile.am4
1 files changed, 4 insertions, 0 deletions
diff --git a/librabbitmq/Makefile.am b/librabbitmq/Makefile.am
index 06ade87..238c781 100644
--- a/librabbitmq/Makefile.am
+++ b/librabbitmq/Makefile.am
@@ -9,6 +9,10 @@ if GCC
AM_CFLAGS += -ansi -pedantic
endif
+if USE_MSINTTYPES
+AM_CFLAGS += -I$(top_srcdir)/msinttypes
+endif
+
librabbitmq_la_SOURCES = amqp_mem.c amqp_table.c amqp_connection.c amqp_socket.c amqp_debug.c amqp_api.c $(PLATFORM_DIR)/socket.c
librabbitmq_la_LDFLAGS = -no-undefined
librabbitmq_la_LIBADD = $(EXTRA_LIBS)