[xiph-cvs] cvs commit: icecast/win32/res Makefile.am
Michael Smith
msmith at xiph.org
Tue Sep 24 01:16:25 PDT 2002
msmith 02/09/24 04:16:24
Modified: . Makefile.am TODO configure.in
src Makefile.am
Added: doc Makefile.am
web Makefile.am
win32 Makefile.am
win32/res Makefile.am
Log:
build updates.
Revision Changes Path
1.4 +1 -1 icecast/Makefile.am
Index: Makefile.am
===================================================================
RCS file: /usr/local/cvsroot/icecast/Makefile.am,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- Makefile.am 21 Oct 2001 16:13:01 -0000 1.3
+++ Makefile.am 24 Sep 2002 08:16:22 -0000 1.4
@@ -2,7 +2,7 @@
AUTOMAKE_OPTIONS = foreign dist-zip
-SUBDIRS = src conf
+SUBDIRS = src conf doc web win32
EXTRA_DIST = README AUTHORS COPYING
<p><p>1.6 +9 -2 icecast/TODO
Index: TODO
===================================================================
RCS file: /usr/local/cvsroot/icecast/TODO,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- TODO 9 Aug 2002 15:55:01 -0000 1.5
+++ TODO 24 Sep 2002 08:16:22 -0000 1.6
@@ -2,14 +2,21 @@
----
- stats get off? this needs testing more testing.
-- autoconf doesn't set HAS_POLL
+- autoconf doesn't set HAVE_POLL
- automake isn't installing things (conf, web) correctly.
+- some stuff (like 'genre') isn't making it into the stats dump
+
+- thread_join uses thread->sys_thread, but thread structure has
+ already been freed in thread_exit()
+
FEATURES
--------
-- pull out vorbis comments. and send to stats.
+
+- pull out vorbis comments. and send to stats. This seems to be being
+ done, but it isn't working right.
- directory server GUID checks
directory server does GET /GUID-asldjfasldfjalsdkfjasldkfj HTTP/1.0
<p><p>1.15 +2 -2 icecast/configure.in
Index: configure.in
===================================================================
RCS file: /usr/local/cvsroot/icecast/configure.in,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- configure.in 11 Aug 2002 12:15:40 -0000 1.14
+++ configure.in 24 Sep 2002 08:16:22 -0000 1.15
@@ -1,7 +1,7 @@
dnl Process this file with autoconf to produce a configure script.
AC_INIT(src/main.c)
-AM_INIT_AUTOMAKE(icecast,2.0)
+AM_INIT_AUTOMAKE(icecast,2.0-alpha-1)
AC_PROG_CC
AC_CANONICAL_HOST
@@ -163,4 +163,4 @@
AC_SUBST(CFLAGS)
AC_SUBST(PROFILE)
-AC_OUTPUT(Makefile conf/Makefile src/Makefile src/avl/Makefile src/httpp/Makefile src/thread/Makefile src/log/Makefile src/net/Makefile src/timing/Makefile)
+AC_OUTPUT(Makefile conf/Makefile src/Makefile src/avl/Makefile src/httpp/Makefile src/thread/Makefile src/log/Makefile src/net/Makefile src/timing/Makefile doc/Makefile web/Makefile win32/Makefile win32/res/Makefile)
<p><p>1.1 icecast/doc/Makefile.am
Index: Makefile.am
===================================================================
## Process this file with automake to produce Makefile.in
AUTOMAKE_OPTIONS = foreign
EXTRA_DIST = Index.hhk icecast2.chm icecast2.hhc icecast2.hhp index_win32.html \
stats1.jpg style.css win32_section1.html win32_section2.html \
win32_section3.html windowtitle.jpg
<p><p><p>1.10 +1 -1 icecast/src/Makefile.am
Index: Makefile.am
===================================================================
RCS file: /usr/local/cvsroot/icecast/src/Makefile.am,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- Makefile.am 28 Aug 2002 13:00:02 -0000 1.9
+++ Makefile.am 24 Sep 2002 08:16:23 -0000 1.10
@@ -8,7 +8,7 @@
noinst_HEADERS = config.h os.h logging.h sighandler.h connection.h global.h\
util.h slave.h source.h stats.h refbuf.h client.h format.h format_vorbis.h\
- compat.h format_mp3.h fserve.h
+ compat.h format_mp3.h fserve.h xslt.h
icecast_SOURCES = config.c main.c logging.c sighandler.c connection.c global.c\
util.c slave.c source.c stats.c refbuf.c client.c format.c format_vorbis.c\
format_mp3.c xslt.c fserve.c
<p><p>1.1 icecast/web/Makefile.am
Index: Makefile.am
===================================================================
## Process this file with automake to produce Makefile.in
AUTOMAKE_OPTIONS = foreign
EXTRA_DIST = status.xsl status2.xsl
<p><p><p>1.1 icecast/win32/Makefile.am
Index: Makefile.am
===================================================================
## Process this file with automake to produce Makefile.in
AUTOMAKE_OPTIONS = foreign
SUBDIRS = res
EXTRA_DIST = ConfigTab.cpp ConfigTab.h Icecast2win.clw Icecast2win.cpp \
Icecast2win.dsp Icecast2win.dsw Icecast2win.h Icecast2win.rc \
Icecast2winDlg.cpp Icecast2winDlg.h Makefile.am ResizableDialog.cpp \
ResizableDialog.h StatsTab.cpp StatsTab.h Status.cpp Status.h StdAfx.cpp \
StdAfx.h TabCtrlSSL.cpp TabCtrlSSL.h TabPageSSL.cpp TabPageSSL.h black.bmp \
colors.h icecast.dsp icecast.ico icecast.xml icecast2.iss icecast2logo2.bmp\
resource.h running.bmp status.xsl status2.xsl stopped.bmp
<p><p><p>1.1 icecast/win32/res/Makefile.am
Index: Makefile.am
===================================================================
## Process this file with automake to produce Makefile.in
AUTOMAKE_OPTIONS = foreign
EXTRA_DIST = Icecast2win.rc2
<p><p><p>--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'cvs-request at xiph.org'
containing only the word 'unsubscribe' in the body. No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.
More information about the commits
mailing list