diff options
author | erdgeist <> | 2007-11-16 20:19:15 +0000 |
---|---|---|
committer | erdgeist <> | 2007-11-16 20:19:15 +0000 |
commit | 4735b99db2562494c59fa47277ffd7dee3b44fc1 (patch) | |
tree | 6b09a6063d2ab7081bf5e3aa399ba1a28f799926 /Makefile | |
parent | 6458a37d82aef8e910b2aed4cf25333e211482ae (diff) |
Forgot to specify -pthread when using threads
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,7 +8,7 @@ CC?=gcc | |||
8 | OPTS_debug=-g -ggdb #-pg # -fprofile-arcs -ftest-coverage | 8 | OPTS_debug=-g -ggdb #-pg # -fprofile-arcs -ftest-coverage |
9 | OPTS_production=-Os | 9 | OPTS_production=-Os |
10 | CFLAGS+=-I../libowfat -Wall -pipe -Wextra #-pedantic -ansi | 10 | CFLAGS+=-I../libowfat -Wall -pipe -Wextra #-pedantic -ansi |
11 | LDFLAGS+=-L../libowfat/ -lowfat | 11 | LDFLAGS+=-L../libowfat/ -lowfat -pthread |
12 | 12 | ||
13 | BINARY =opentracker | 13 | BINARY =opentracker |
14 | HEADERS=trackerlogic.h scan_urlencoded_query.h ot_mutex.h ot_stats.h ot_sync.h ot_vector.h ot_clean.h ot_udp.h ot_iovec.h ot_fullscrape.h ot_accesslist.h | 14 | HEADERS=trackerlogic.h scan_urlencoded_query.h ot_mutex.h ot_stats.h ot_sync.h ot_vector.h ot_clean.h ot_udp.h ot_iovec.h ot_fullscrape.h ot_accesslist.h |