mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-12-04 14:46:30 -05:00
80078cce1d
You can now use the Shoutcast DSP as a source client. The connection protocol is a bit odd, and we had to handle it separately, and thus we've added a new config option (<shoutcast-compat>) that is set at the listener port level. * support for NSV (and the nsvscsrc source client). After adding support for the connection protocol of the shoutcast DSP, adding NSV was just a simple of a few special handling cases. * removed all traces of the earlier attempt at the shoutcast DSP connection protocol * Due to the growing complexity of the config files, I've also created a few alternate config files, namely one for a "shoutcast compat" setup as well as a "minimal" one for quick basic configurations. svn path=/icecast/trunk/icecast/; revision=8191
35 lines
1.1 KiB
Makefile
35 lines
1.1 KiB
Makefile
## Process this with automake to create Makefile.in
|
|
|
|
AUTOMAKE_OPTIONS = foreign
|
|
|
|
EXTRA_DIST = icecast.xml.in icecast_minimal.xml.in icecast_shoutcast_compat.xml.in
|
|
DISTCLEANFILES = icecast.xml.dist icecast_minimal.xml.dist icecast_shoutcast_compat.xml.dist
|
|
|
|
docdir = $(datadir)/$(PACKAGE)/doc
|
|
doc_DATA = icecast.xml.dist icecast_minimal.xml.dist icecast_shoutcast_compat.xml.dist
|
|
|
|
install-data-hook:
|
|
$(mkinstalldirs) $(DESTDIR)$(sysconfdir)
|
|
test -f $(DESTDIR)$(sysconfdir)/icecast.xml || \
|
|
$(INSTALL_DATA) icecast.xml.dist $(DESTDIR)$(sysconfdir)/icecast.xml
|
|
|
|
edit = sed -e 's,@pkgdatadir\@,$(pkgdatadir),g' \
|
|
-e 's,@localstatedir\@,$(localstatedir),g' \
|
|
-e 's,@PACKAGE\@,$(PACKAGE),g'
|
|
|
|
icecast.xml.dist: $(srcdir)/icecast.xml.in
|
|
$(edit) $(srcdir)/icecast.xml.in > icecast.xml.dist
|
|
|
|
icecast_minimal.xml.dist: $(srcdir)/icecast_minimal.xml.in
|
|
$(edit) $(srcdir)/icecast_minimal.xml.in > icecast_minimal.xml.dist
|
|
|
|
icecast_shoutcast_compat.xml.dist: $(srcdir)/icecast_shoutcast_compat.xml.in
|
|
$(edit) $(srcdir)/icecast_shoutcast_compat.xml.in > icecast_shoutcast_compat.xml.dist
|
|
|
|
debug:
|
|
$(MAKE) all CFLAGS="@DEBUG@"
|
|
|
|
profile:
|
|
$(MAKE) all CFLAGS="@PROFILE@"
|
|
|