diff options
author | Jason Evans <jasone@canonware.com> | 2015-07-21 23:45:35 (GMT) |
---|---|---|
committer | Jason Evans <jasone@canonware.com> | 2015-07-21 23:45:35 (GMT) |
commit | 1b0e4abbfdbcc1c1a71d1f617adb19951109bfce (patch) | |
tree | 4d63b5b45596a5ddbb40441fb417d8e5ae3a80f1 /Makefile.in | |
parent | 00632609dfdd28e8de5afdd3e838f3975566e5d9 (diff) | |
download | jemalloc-1b0e4abbfdbcc1c1a71d1f617adb19951109bfce.zip jemalloc-1b0e4abbfdbcc1c1a71d1f617adb19951109bfce.tar.gz jemalloc-1b0e4abbfdbcc1c1a71d1f617adb19951109bfce.tar.bz2 |
Port mq_get() to MinGW.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index 02f4424..25c2d5a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -111,9 +111,9 @@ DOCS_MAN3 := $(DOCS_XML:$(objroot)%.xml=$(objroot)%.3) DOCS := $(DOCS_HTML) $(DOCS_MAN3) C_TESTLIB_SRCS := $(srcroot)test/src/btalloc.c $(srcroot)test/src/btalloc_0.c \ $(srcroot)test/src/btalloc_1.c $(srcroot)test/src/math.c \ - $(srcroot)test/src/mtx.c $(srcroot)test/src/SFMT.c \ - $(srcroot)test/src/test.c $(srcroot)test/src/thd.c \ - $(srcroot)test/src/timer.c + $(srcroot)test/src/mtx.c $(srcroot)test/src/mq.c \ + $(srcroot)test/src/SFMT.c $(srcroot)test/src/test.c \ + $(srcroot)test/src/thd.c $(srcroot)test/src/timer.c C_UTIL_INTEGRATION_SRCS := $(srcroot)src/util.c TESTS_UNIT := $(srcroot)test/unit/atomic.c \ $(srcroot)test/unit/bitmap.c \ |