diff options
author | joerg <joerg> | 2005-10-10 13:06:11 +0000 |
---|---|---|
committer | joerg <joerg> | 2005-10-10 13:06:11 +0000 |
commit | 74366cc44db04e3963b345569e45b6e874ec04d9 (patch) | |
tree | 5e72c20ba30eefe7bb803e1cf7c105cb0e1bb305 /audio/daapd/patches | |
parent | 87e2398c652e542f06f5541c5153579876881802 (diff) | |
download | pkgsrc-74366cc44db04e3963b345569e45b6e874ec04d9.tar.gz |
Don't hard code the thread library, use pkgsrc variables.
Diffstat (limited to 'audio/daapd/patches')
-rw-r--r-- | audio/daapd/patches/patch-aa | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/audio/daapd/patches/patch-aa b/audio/daapd/patches/patch-aa index fc6f4e81dab..cb574dd3bf4 100644 --- a/audio/daapd/patches/patch-aa +++ b/audio/daapd/patches/patch-aa @@ -1,4 +1,4 @@ -$NetBSD: patch-aa,v 1.6 2005/04/05 20:27:02 rillig Exp $ +$NetBSD: patch-aa,v 1.7 2005/10/10 13:06:11 joerg Exp $ --- makefile.orig 2004-09-07 21:17:58.000000000 -0400 +++ makefile @@ -11,11 +11,13 @@ $NetBSD: patch-aa,v 1.6 2005/04/05 20:27:02 rillig Exp $ # no need to touch anything below this line -@@ -14,16 +14,16 @@ TARGET = daapd +@@ -13,17 +13,17 @@ MAKE = $(MAKE_COMMAND) + TARGET = daapd DEPS = daaplib_ libhttpd_ OBJS = daapd.o db.o dboutput.o songcache.o parsemp3.o - LIBS = -ldaaplib -lhttpd-persistent -lid3tag -lz -lpthread +-LIBS = -ldaaplib -lhttpd-persistent -lid3tag -lz -lpthread -LIBPATH = -L. -L./daaplib/src -L./libhttpd/src -L/usr/local/lib ++LIBS = -ldaaplib -lhttpd-persistent -lid3tag -lz ${PTHREAD_LDFLAGS} ${PTHREAD_LIBS} +LIBPATH = -L. ${LDFLAGS} -L./daaplib/src -L./libhttpd/src -L/usr/local/lib INCPATH = -I. -I./daaplib/include -I./libhttpd/src -I/usr/local/include -DEPLOY = /usr/local |