mirror of
https://gitlab.xiph.org/xiph/icecast-server.git
synced 2024-12-04 14:46:30 -05:00
Fix critical TODO item 1 (make install)
ATTN Mike! make install now installs the xsl files in pkgdatadir ($prefix/share/icecast) web and admin directories, and builds icecast.xml accordingly. icecast.xml is now installed in $sysconfdir/etc, and IMHO icecast should attempt to find a config file there, and only demand one on the command line if it can't. svn path=/trunk/icecast/; revision=4956
This commit is contained in:
parent
816ca31be1
commit
e19a7af1b1
@ -4,10 +4,10 @@ AUTOMAKE_OPTIONS = foreign dist-zip
|
||||
|
||||
SUBDIRS = src conf doc web admin win32
|
||||
|
||||
EXTRA_DIST = README AUTHORS COPYING
|
||||
EXTRA_DIST = HACKING
|
||||
|
||||
# SCCS Definitions (for BitKeeper)
|
||||
GET = true
|
||||
docdir = $(datadir)/doc/$(PACKAGE)
|
||||
doc_DATA = README AUTHORS COPYING NEWS TODO
|
||||
|
||||
debug:
|
||||
$(MAKE) all CFLAGS="@DEBUG@ @XML_CFLAGS@ @OGG_CFLAGS@ @VORBIS_CFLAGS@"
|
||||
|
84
NEWS
Normal file
84
NEWS
Normal file
@ -0,0 +1,84 @@
|
||||
2003-04-23
|
||||
Support aliases
|
||||
|
||||
2003-03-09
|
||||
Support listening on multiple sockets.
|
||||
|
||||
2003-03-08
|
||||
Support for shoutcast source protocol added.
|
||||
|
||||
2003-03-08
|
||||
Started implementing generic admin interface. Supports (so far):
|
||||
- dynamic configuration of mount fallbacks
|
||||
/admin/fallbacks?mount=/mount&fallback=/fallback
|
||||
- setting of mp3 metadata
|
||||
/admin/metadata?mount=/mount&mode=updinfo&song=New%20Title
|
||||
- dumping raw xml stats
|
||||
/admin/rawstats
|
||||
- listing all connected clients on a mountpoint:
|
||||
/admin/listclients?mount=/mountname
|
||||
|
||||
2003-03-05
|
||||
Implemented the ability to reread the config file on SIGHUP. For now, this
|
||||
does not affect configuration for currently running sources (only new
|
||||
sources and global parameters like max-listeners)
|
||||
|
||||
2003-03-02
|
||||
More features:
|
||||
-- per mountpoint listener maxima
|
||||
-- static configuration of mountpoint fallbacks
|
||||
-- stream dumping (write incoming stream to disk)
|
||||
|
||||
2003-02-27
|
||||
Fix log buffering on win32 - previously, logs were never flushed, so they
|
||||
only got output every few tens or hundreds of lines.
|
||||
|
||||
2003-02-27
|
||||
Support new icy-audio-info header, to communicate various parameters to
|
||||
clients and yp servers, including sample rate, quality, channels, bitrate
|
||||
|
||||
2003-02-25
|
||||
Full support for relaying mp3 metadata (if turned on in config file)
|
||||
|
||||
2003-02-25
|
||||
Allow configuration of maximum client queue length (in bytes)
|
||||
|
||||
2003-02-14
|
||||
Finished full IPv6 support.
|
||||
|
||||
2003-02-12
|
||||
Allow configuring local mountpoint seperately from remote mountpoint for
|
||||
relays
|
||||
|
||||
2003-02-12
|
||||
Per mountpoint usernames and passwords (for sources)
|
||||
|
||||
2003-02-11
|
||||
Now that it's been officially assigned, use application/ogg instead of
|
||||
application/x-ogg
|
||||
|
||||
2003-02-07
|
||||
Allow relaying of mp3 streams from icecast 1.x and shoutcast
|
||||
|
||||
2003-02-07
|
||||
Added ability to configure individual relays (rather than just all streams
|
||||
from a single server).
|
||||
|
||||
2003-02-03
|
||||
Added support for YP directory services listings
|
||||
are only used by the yp listing routines
|
||||
|
||||
2003-02-03
|
||||
Support command line parameter -b to run in the background (not supported
|
||||
on win32)
|
||||
|
||||
2002-12-31
|
||||
Implement configurable mountpoint fallbacks (on source exit, clients are
|
||||
transferred to another mountpoint automatically, without disconnecting
|
||||
them)
|
||||
|
||||
2002-12-31
|
||||
Implemented full mp3 metadata support.
|
||||
|
||||
(older stuff is missing from here)
|
||||
|
@ -2,5 +2,7 @@
|
||||
|
||||
AUTOMAKE_OPTIONS = foreign
|
||||
|
||||
EXTRA_DIST = listclients.xsl listmounts.xsl moveclients.xsl response.xsl stats.xsl
|
||||
admindir = $(pkgdatadir)/admin
|
||||
dist_admin_DATA = listclients.xsl listmounts.xsl moveclients.xsl response.xsl \
|
||||
stats.xsl
|
||||
|
||||
|
@ -2,7 +2,16 @@
|
||||
|
||||
AUTOMAKE_OPTIONS = foreign
|
||||
|
||||
EXTRA_DIST = icecast.xml
|
||||
EXTRA_DIST = icecast.xml.in
|
||||
|
||||
sysconf_DATA = icecast.xml
|
||||
|
||||
edit = sed -e 's,@pkgdatadir\@,$(pkgdatadir),g' \
|
||||
-e 's,@localstatedir\@,$(localstatedir),g' \
|
||||
-e 's,@PACKAGE\@,$(PACKAGE),g'
|
||||
|
||||
icecast.xml: $(srcdir)/icecast.xml.in
|
||||
$(edit) $(srcdir)/icecast.xml.in > icecast.xml
|
||||
|
||||
debug:
|
||||
$(MAKE) all CFLAGS="@DEBUG@"
|
||||
|
@ -84,13 +84,13 @@
|
||||
<fileserve>1</fileserve>
|
||||
|
||||
<paths>
|
||||
<basedir>/usr/local/icecast</basedir>
|
||||
<basedir>@pkgdatadir@</basedir>
|
||||
|
||||
<!-- Note that if <chroot> is turned on below, these paths must both
|
||||
be relative to the new root, not the original root -->
|
||||
<logdir>/usr/local/icecast/logs</logdir>
|
||||
<webroot>/usr/local/icecast/web</webroot>
|
||||
<adminroot>/usr/local/icecast/admin</adminroot>
|
||||
<logdir>@localstatedir@/@PACKAGE@/logs</logdir>
|
||||
<webroot>@pkgdatadir@/web</webroot>
|
||||
<adminroot>@pkgdatadir@/admin</adminroot>
|
||||
|
||||
<!-- Aliases: treat requests for 'source' path as being for 'dest' path
|
||||
May be made specific to a port or bound address using the "port"
|
@ -2,5 +2,6 @@
|
||||
|
||||
AUTOMAKE_OPTIONS = foreign
|
||||
|
||||
EXTRA_DIST = status.xsl status2.xsl
|
||||
webdir = $(pkgdatadir)/web
|
||||
dist_web_DATA = status.xsl status2.xsl
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user