mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
2e794eaa33
- Support external speex, knob WITH_SPEEX - Remove indirect dependencies on expat and openldap (via pwlib) PR: ports/95423 Submitted by: Joerg Pulz <Joerg.Pulz@frm2.tum.de> Approved by: Steve Ames <steve@energistic.com> (maintainer)
20 lines
541 B
Plaintext
20 lines
541 B
Plaintext
--- plugins/audio/Speex/Makefile.in.orig Wed Apr 5 23:40:27 2006
|
|
+++ plugins/audio/Speex/Makefile.in Wed Apr 5 23:41:12 2006
|
|
@@ -59,6 +59,7 @@
|
|
CC=@CC@
|
|
CXX=@CXX@
|
|
LDSO=@LDSO@
|
|
+LDFLAGS=@LDFLAGS@
|
|
|
|
ifndef PREFIX
|
|
PREFIX=/usr/local
|
|
@@ -101,7 +102,7 @@
|
|
OBJECTS = $(addprefix $(OBJDIR)/,$(patsubst %.cxx,%.o,$(patsubst %.c,%.o,$(notdir $(SRCS)))))
|
|
|
|
$(PLUGIN): $(OBJECTS)
|
|
- $(CC) $(LDSO)$(SONAME) -o $@ $^ $(EXTRALIBS)
|
|
+ $(CC) $(LDSO)$(SONAME) -o $@ $^ $(LDFLAGS) $(EXTRALIBS)
|
|
|
|
install:
|
|
mkdir -p $(DESTDIR)$(LIBDIR)/pwlib/codecs/audio/
|