mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
9b586f478b
- Add WITH_ESOUND knob and enable the plugin build - Fix bsdvideo (bktr(4)) plugin and make it buildable on more archs - Add a small error handler to detect unresolved symbols in plugins - Add more plugins to pkg-plist - Add experimental support for firewire(4) based video devices. The segment of the Makefile is intentionally commented out. PR: ports/95422, ports/96624 Submitted by: Joerg Pulz <Joerg.Pulz@frm2.tum.de>, Steve Ames <steve@energistic.com> (maintainer) Approved by: Steve Ames <steve@energistic.com> (maintainer)
19 lines
333 B
Plaintext
19 lines
333 B
Plaintext
--- plugins/Makefile.in.orig Thu Apr 6 10:15:56 2006
|
|
+++ plugins/Makefile.in Thu Apr 6 10:18:41 2006
|
|
@@ -22,6 +22,15 @@
|
|
endif
|
|
endif
|
|
|
|
+HAS_ESD = @HAS_ESD@
|
|
+
|
|
+ifeq (1,$(HAS_ESD))
|
|
+SUBDIRS += sound_esd
|
|
+ifeq (,$(DEFAULT_SOUND))
|
|
+DEFAULT_SOUND = sound_esd
|
|
+endif
|
|
+endif
|
|
+
|
|
HAS_SUNAUDIO = @HAS_SUNAUDIO@
|
|
|
|
ifeq (1,$(HAS_SUNAUDIO))
|