You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(12) |
Jul
(47) |
Aug
(21) |
Sep
(5) |
Oct
(17) |
Nov
|
Dec
(8) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(4) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(9) |
Aug
|
Sep
(3) |
Oct
|
Nov
|
Dec
|
2003 |
Jan
|
Feb
(6) |
Mar
(7) |
Apr
(8) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(9) |
Nov
|
Dec
|
2004 |
Jan
(8) |
Feb
(46) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2005 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2006 |
Jan
(27) |
Feb
(2) |
Mar
|
Apr
(64) |
May
|
Jun
|
Jul
(11) |
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
(2) |
From: Gordon M. <go...@us...> - 2006-01-10 06:57:17
|
Update of /cvsroot/bitcollider/webcollider/src/java/org/bitpedia/collider In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3709/src/java/org/bitpedia/collider Log Message: Directory /cvsroot/bitcollider/webcollider/src/java/org/bitpedia/collider added to the repository |
From: Gordon M. <go...@us...> - 2006-01-10 06:57:17
|
Update of /cvsroot/bitcollider/webcollider/src/java/org In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3709/src/java/org Log Message: Directory /cvsroot/bitcollider/webcollider/src/java/org added to the repository |
From: Gordon M. <go...@us...> - 2006-01-10 06:57:16
|
Update of /cvsroot/bitcollider/webcollider/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3709/src Log Message: Directory /cvsroot/bitcollider/webcollider/src added to the repository |
From: Gordon M. <go...@us...> - 2006-01-10 06:57:16
|
Update of /cvsroot/bitcollider/webcollider/bin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3709/bin Log Message: Directory /cvsroot/bitcollider/webcollider/bin added to the repository |
From: Gordon M. <go...@us...> - 2006-01-10 06:57:16
|
Update of /cvsroot/bitcollider/webcollider/src/java In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3709/src/java Log Message: Directory /cvsroot/bitcollider/webcollider/src/java added to the repository |
From: Gordon M. <go...@us...> - 2006-01-10 06:57:15
|
Update of /cvsroot/bitcollider/webcollider/.settings In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3709/.settings Log Message: Directory /cvsroot/bitcollider/webcollider/.settings added to the repository |
From: Gordon M. <go...@us...> - 2006-01-10 06:55:08
|
Update of /cvsroot/bitcollider/webcollider In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3439/webcollider Log Message: Directory /cvsroot/bitcollider/webcollider added to the repository |
From: Mike L. <mli...@us...> - 2005-03-23 00:23:19
|
Update of /cvsroot/bitcollider/bitcollider/lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23921/lib Modified Files: id3.c id3.h main.c Log Message: copyright statement id3/vorbis extraction Index: id3.c =================================================================== RCS file: /cvsroot/bitcollider/bitcollider/lib/id3.c,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** id3.c 1 Aug 2001 21:21:56 -0000 1.8 --- id3.c 23 Mar 2005 00:22:50 -0000 1.9 *************** *** 271,274 **** --- 271,276 ---- if (info->tracknumber) free(info->tracknumber); + if (info->copyright) + free(info->copyright); free(info); *************** *** 317,320 **** --- 319,325 ---- info->tracknumber = strdup(frameData); + if (strcmp(tagName, "TCOP") == 0) + info->copyright = strdup(frameData); + if (strcmp(tagName, "TSSE") == 0) info->encoder = strdup(frameData); Index: id3.h =================================================================== RCS file: /cvsroot/bitcollider/bitcollider/lib/id3.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** id3.h 28 Feb 2001 23:29:53 -0000 1.1 --- id3.h 23 Mar 2005 00:22:51 -0000 1.2 *************** *** 17,20 **** --- 17,21 ---- char *encoder; char *tracknumber; + char *copyright; } ID3Info; Index: main.c =================================================================== RCS file: /cvsroot/bitcollider/bitcollider/lib/main.c,v retrieving revision 1.49 retrieving revision 1.50 diff -C2 -r1.49 -r1.50 *** main.c 3 Feb 2004 02:47:34 -0000 1.49 --- main.c 23 Mar 2005 00:22:51 -0000 1.50 *************** *** 444,447 **** --- 444,450 ---- add_attribute(submission, "tag.audiotrack.tracknumber", info->tracknumber); + if (info->copyright) + add_attribute(submission, "tag.copyright.statement", + info->copyright); if (info->genre && atoi(info->genre) >= 0) add_attribute(submission, "tag.id3genre.genre", info->genre); |
From: Mike L. <mli...@us...> - 2005-03-23 00:23:19
|
Update of /cvsroot/bitcollider/bitcollider/vorbis In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23921/vorbis Modified Files: vorbis.c vorbis.h Log Message: copyright statement id3/vorbis extraction Index: vorbis.c =================================================================== RCS file: /cvsroot/bitcollider/bitcollider/vorbis/vorbis.c,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** vorbis.c 3 Feb 2004 01:11:07 -0000 1.10 --- vorbis.c 23 Mar 2005 00:22:51 -0000 1.11 *************** *** 162,165 **** --- 162,171 ---- } + if (info->copyright) + { + attrList[i].key = strdup("tag.copyright.statement"); + attrList[i++].value = strdup(info->copyright); + } + if (info->genre) { *************** *** 210,213 **** --- 216,221 ---- if (info->desc) free(info->desc); + if (info->copyright) + free(info->copyright); free(info); *************** *** 299,302 **** --- 307,314 ---- if (temp) info->desc = convertToISO(temp); + + temp = vorbis_comment_query(comment, "license", 0); + if (temp) + info->copyright = convertToISO(temp); } ov_clear(&vf); Index: vorbis.h =================================================================== RCS file: /cvsroot/bitcollider/bitcollider/vorbis/vorbis.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** vorbis.h 16 Mar 2001 04:57:19 -0000 1.1 --- vorbis.h 23 Mar 2005 00:22:51 -0000 1.2 *************** *** 20,23 **** --- 20,24 ---- char *tracknumber; char *desc; + char *copyright; } VorbisInfo; |
From: Robert K. <may...@us...> - 2004-02-06 05:21:45
|
Update of /cvsroot/bitcollider/bitcollider/misc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6672 Modified Files: bitcollider.spec Log Message: Updated for 0.6.0 --- final Index: bitcollider.spec =================================================================== RCS file: /cvsroot/bitcollider/bitcollider/misc/bitcollider.spec,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -r1.11 -r1.12 *** bitcollider.spec 4 Feb 2004 08:50:18 -0000 1.11 --- bitcollider.spec 6 Feb 2004 05:19:05 -0000 1.12 *************** *** 72,76 **** %doc AUTHORS COPYING NEWS README INSTALL %{prefix}/lib/libbitcollider.so* ! %{prefix}/lib/bitcollider/plugins/*.bcp %files devel --- 72,78 ---- %doc AUTHORS COPYING NEWS README INSTALL %{prefix}/lib/libbitcollider.so* ! %{prefix}/lib/bitcollider/plugins/image.bcp ! %{prefix}/lib/bitcollider/plugins/video.bcp ! %{prefix}/lib/bitcollider/plugins/wav.bcp %files devel |
From: Robert K. <may...@us...> - 2004-02-04 08:54:07
|
Update of /cvsroot/bitcollider/bitcollider/wav In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28009/wav Modified Files: Makefile.am Log Message: More minor tweaks to get things to be happy on all platforms. Index: Makefile.am =================================================================== RCS file: /cvsroot/bitcollider/bitcollider/wav/Makefile.am,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** Makefile.am 4 Feb 2004 07:10:06 -0000 1.4 --- Makefile.am 4 Feb 2004 08:51:45 -0000 1.5 *************** *** 15,19 **** mkdir -p $(top_srcdir)/plugins rm -f $(top_srcdir)/plugins/wav.bcp ! ln -s $(top_srcdir)/wav/.libs/wav $(top_srcdir)/plugins/wav.bcp install-exec-am: --- 15,19 ---- mkdir -p $(top_srcdir)/plugins rm -f $(top_srcdir)/plugins/wav.bcp ! ln -s $(top_srcdir)/wav/.libs/wav.so $(top_srcdir)/plugins/wav.bcp install-exec-am: |
From: Robert K. <may...@us...> - 2004-02-04 08:54:07
|
Update of /cvsroot/bitcollider/bitcollider In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28009 Modified Files: Makefile.am Log Message: More minor tweaks to get things to be happy on all platforms. Index: Makefile.am =================================================================== RCS file: /cvsroot/bitcollider/bitcollider/Makefile.am,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -r1.13 -r1.14 *** Makefile.am 3 Feb 2004 01:41:08 -0000 1.13 --- Makefile.am 4 Feb 2004 08:51:44 -0000 1.14 *************** *** 25,29 **** install-data-local: mkdir -p $(libdir)/bitcollider/plugins ! $(INSTALL) -s -m 0655 plugins/*.bcp $(libdir)/bitcollider/plugins mkdir -p $(DESTDIR)$(bindir) $(INSTALL) -s -m 0655 src/bitcollider $(DESTDIR)$(bindir) --- 25,29 ---- install-data-local: mkdir -p $(libdir)/bitcollider/plugins ! $(INSTALL) -m 0655 plugins/*.bcp $(libdir)/bitcollider/plugins mkdir -p $(DESTDIR)$(bindir) $(INSTALL) -s -m 0655 src/bitcollider $(DESTDIR)$(bindir) |
From: Robert K. <may...@us...> - 2004-02-04 08:54:07
|
Update of /cvsroot/bitcollider/bitcollider/image In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28009/image Modified Files: Makefile.am Log Message: More minor tweaks to get things to be happy on all platforms. Index: Makefile.am =================================================================== RCS file: /cvsroot/bitcollider/bitcollider/image/Makefile.am,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** Makefile.am 4 Feb 2004 07:10:06 -0000 1.3 --- Makefile.am 4 Feb 2004 08:51:45 -0000 1.4 *************** *** 15,19 **** mkdir -p $(top_srcdir)/plugins rm -f $(top_srcdir)/plugins/image.bcp ! ln -s $(top_srcdir)/image/.libs/image $(top_srcdir)/plugins/image.bcp install-exec-am: --- 15,19 ---- mkdir -p $(top_srcdir)/plugins rm -f $(top_srcdir)/plugins/image.bcp ! ln -s $(top_srcdir)/image/.libs/image.so $(top_srcdir)/plugins/image.bcp install-exec-am: |
From: Robert K. <may...@us...> - 2004-02-04 08:54:07
|
Update of /cvsroot/bitcollider/bitcollider/video In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28009/video Modified Files: Makefile.am Log Message: More minor tweaks to get things to be happy on all platforms. Index: Makefile.am =================================================================== RCS file: /cvsroot/bitcollider/bitcollider/video/Makefile.am,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** Makefile.am 4 Feb 2004 07:10:06 -0000 1.4 --- Makefile.am 4 Feb 2004 08:51:45 -0000 1.5 *************** *** 15,19 **** mkdir -p $(top_srcdir)/plugins rm -f $(top_srcdir)/plugins/video.bcp ! ln -s $(top_srcdir)/video/.libs/video $(top_srcdir)/plugins/video.bcp install-exec-am: --- 15,19 ---- mkdir -p $(top_srcdir)/plugins rm -f $(top_srcdir)/plugins/video.bcp ! ln -s $(top_srcdir)/video/.libs/video.so $(top_srcdir)/plugins/video.bcp install-exec-am: |
From: Robert K. <may...@us...> - 2004-02-04 08:54:07
|
Update of /cvsroot/bitcollider/bitcollider/vorbis In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28009/vorbis Modified Files: Makefile.am Log Message: More minor tweaks to get things to be happy on all platforms. Index: Makefile.am =================================================================== RCS file: /cvsroot/bitcollider/bitcollider/vorbis/Makefile.am,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** Makefile.am 4 Feb 2004 07:10:06 -0000 1.6 --- Makefile.am 4 Feb 2004 08:51:45 -0000 1.7 *************** *** 18,22 **** mkdir -p $(top_srcdir)/plugins rm -f $(top_srcdir)/plugins/vorbis.bcp ! ln -s $(top_srcdir)/vorbis/.libs/vorbisplugin $(top_srcdir)/plugins/vorbis.bcp install-exec-am: --- 18,22 ---- mkdir -p $(top_srcdir)/plugins rm -f $(top_srcdir)/plugins/vorbis.bcp ! ln -s $(top_srcdir)/vorbis/.libs/vorbisplugin.so $(top_srcdir)/plugins/vorbis.bcp install-exec-am: |
From: Robert K. <may...@us...> - 2004-02-04 08:52:39
|
Update of /cvsroot/bitcollider/bitcollider/misc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27824 Modified Files: bitcollider.spec Log Message: Updated for the latest release Index: bitcollider.spec =================================================================== RCS file: /cvsroot/bitcollider/bitcollider/misc/bitcollider.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** bitcollider.spec 4 Feb 2004 07:10:59 -0000 1.10 --- bitcollider.spec 4 Feb 2004 08:50:18 -0000 1.11 *************** *** 39,43 **** Summary: Ogg/Vorbis bitcollider plugin for extracting metadata from Vorbis files. Group: Development/Libraries ! Requires: %{name} libogg >= 1.0beta4, libvorbis >= 1.0beta4 %description vorbis --- 39,43 ---- Summary: Ogg/Vorbis bitcollider plugin for extracting metadata from Vorbis files. Group: Development/Libraries ! Requires: %{name} libogg >= 1.0, libvorbis >= 1.0 %description vorbis *************** *** 71,78 **** %{prefix}/bin/bitcollider %doc AUTHORS COPYING NEWS README INSTALL ! %{prefix}/lib/*.so.* ! %{prefix}/lib/bitcollider/plugins/wav.bcp ! %{prefix}/lib/bitcollider/plugins/image.bcp ! %{prefix}/lib/bitcollider/plugins/video.bcp %files devel --- 71,76 ---- %{prefix}/bin/bitcollider %doc AUTHORS COPYING NEWS README INSTALL ! %{prefix}/lib/libbitcollider.so* ! %{prefix}/lib/bitcollider/plugins/*.bcp %files devel *************** *** 81,85 **** %{prefix}/lib/*.la %{prefix}/lib/*.a - %{prefix}/lib/*.so %files vorbis --- 79,82 ---- |
From: Robert K. <may...@us...> - 2004-02-04 08:20:35
|
Update of /cvsroot/bitcollider/bitcollider In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22838 Removed Files: install-sh ltconfig ltmain.sh missing mkinstalldirs Log Message: Removing unnecessary files. --- install-sh DELETED --- --- ltconfig DELETED --- --- ltmain.sh DELETED --- --- missing DELETED --- --- mkinstalldirs DELETED --- |
From: Robert K. <may...@us...> - 2004-02-04 07:13:21
|
Update of /cvsroot/bitcollider/bitcollider/misc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10621/misc Modified Files: bitcollider.spec Log Message: Updated version in bitcollider spec Index: bitcollider.spec =================================================================== RCS file: /cvsroot/bitcollider/bitcollider/misc/bitcollider.spec,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** bitcollider.spec 24 Feb 2003 16:21:27 -0000 1.9 --- bitcollider.spec 4 Feb 2004 07:10:59 -0000 1.10 *************** *** 6,10 **** # %define name bitcollider ! %define version 0.5.0 %define release 1 %define prefix /usr --- 6,10 ---- # %define name bitcollider ! %define version 0.6.0 %define release 1 %define prefix /usr *************** *** 74,77 **** --- 74,78 ---- %{prefix}/lib/bitcollider/plugins/wav.bcp %{prefix}/lib/bitcollider/plugins/image.bcp + %{prefix}/lib/bitcollider/plugins/video.bcp %files devel |
From: Robert K. <may...@us...> - 2004-02-04 07:12:27
|
Update of /cvsroot/bitcollider/bitcollider/vorbis In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10470/vorbis Modified Files: Makefile.am Log Message: Reworked the stupid makefiles to not install modules twice. Index: Makefile.am =================================================================== RCS file: /cvsroot/bitcollider/bitcollider/vorbis/Makefile.am,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** Makefile.am 2 Feb 2004 01:56:08 -0000 1.5 --- Makefile.am 4 Feb 2004 07:10:06 -0000 1.6 *************** *** 8,15 **** INCLUDES = -I$(top_srcdir)/.. -I$(top_srcdir)/ver -I$(top_srcdir)/include ! lib_LTLIBRARIES = libvorbisplugin.la ! libvorbisplugin_la_SOURCES = vorbis.c vorbis.h ! libvorbisplugin_la_LDFLAGS = -module -avoid-version ! libvorbisplugin_la_LIBADD = @VORBIS_LIBS@ noinst_HEADERS = vorbis.h --- 8,15 ---- INCLUDES = -I$(top_srcdir)/.. -I$(top_srcdir)/ver -I$(top_srcdir)/include ! lib_LTLIBRARIES = vorbisplugin.la ! vorbisplugin_la_SOURCES = vorbis.c vorbis.h ! vorbisplugin_la_LDFLAGS = -module -avoid-version ! vorbisplugin_la_LIBADD = @VORBIS_LIBS@ noinst_HEADERS = vorbis.h *************** *** 18,22 **** mkdir -p $(top_srcdir)/plugins rm -f $(top_srcdir)/plugins/vorbis.bcp ! ln -s $(top_srcdir)/vorbis/.libs/libvorbisplugin $(top_srcdir)/plugins/vorbis.bcp clean distclean: --- 18,24 ---- mkdir -p $(top_srcdir)/plugins rm -f $(top_srcdir)/plugins/vorbis.bcp ! ln -s $(top_srcdir)/vorbis/.libs/vorbisplugin $(top_srcdir)/plugins/vorbis.bcp ! ! install-exec-am: clean distclean: |
From: Robert K. <may...@us...> - 2004-02-04 07:12:26
|
Update of /cvsroot/bitcollider/bitcollider/video In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10470/video Modified Files: Makefile.am Log Message: Reworked the stupid makefiles to not install modules twice. Index: Makefile.am =================================================================== RCS file: /cvsroot/bitcollider/bitcollider/video/Makefile.am,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** Makefile.am 3 Feb 2004 01:41:08 -0000 1.3 --- Makefile.am 4 Feb 2004 07:10:06 -0000 1.4 *************** *** 8,19 **** INCLUDES = -I$(top_srcdir)/.. -I$(top_srcdir)/ver -I$(top_srcdir)/include ! lib_LTLIBRARIES = libvideo.la ! libvideo_la_SOURCES = video.c mpeg.c quicktime.c avi.c video.h ! libvideo_la_LDFLAGS = -module -avoid-version all: mkdir -p $(top_srcdir)/plugins rm -f $(top_srcdir)/plugins/video.bcp ! ln -s $(top_srcdir)/video/.libs/libvideo $(top_srcdir)/plugins/video.bcp clean distclean: --- 8,21 ---- INCLUDES = -I$(top_srcdir)/.. -I$(top_srcdir)/ver -I$(top_srcdir)/include ! lib_LTLIBRARIES = video.la ! video_la_SOURCES = video.c mpeg.c quicktime.c avi.c video.h ! video_la_LDFLAGS = -module -avoid-version all: mkdir -p $(top_srcdir)/plugins rm -f $(top_srcdir)/plugins/video.bcp ! ln -s $(top_srcdir)/video/.libs/video $(top_srcdir)/plugins/video.bcp ! ! install-exec-am: clean distclean: |
From: Robert K. <may...@us...> - 2004-02-04 07:12:26
|
Update of /cvsroot/bitcollider/bitcollider/wav In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10470/wav Modified Files: Makefile.am Log Message: Reworked the stupid makefiles to not install modules twice. Index: Makefile.am =================================================================== RCS file: /cvsroot/bitcollider/bitcollider/wav/Makefile.am,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** Makefile.am 2 Feb 2004 01:44:57 -0000 1.3 --- Makefile.am 4 Feb 2004 07:10:06 -0000 1.4 *************** *** 8,19 **** INCLUDES = -I$(top_srcdir)/.. -I$(top_srcdir)/ver -I$(top_srcdir)/include ! lib_LTLIBRARIES = libwav.la ! libwav_la_SOURCES = wav.c ! libwav_la_LDFLAGS = -module -avoid-version all: mkdir -p $(top_srcdir)/plugins rm -f $(top_srcdir)/plugins/wav.bcp ! ln -s $(top_srcdir)/wav/.libs/libwav $(top_srcdir)/plugins/wav.bcp clean distclean: --- 8,21 ---- INCLUDES = -I$(top_srcdir)/.. -I$(top_srcdir)/ver -I$(top_srcdir)/include ! lib_LTLIBRARIES = wav.la ! wav_la_SOURCES = wav.c ! wav_la_LDFLAGS = -module -avoid-version all: mkdir -p $(top_srcdir)/plugins rm -f $(top_srcdir)/plugins/wav.bcp ! ln -s $(top_srcdir)/wav/.libs/wav $(top_srcdir)/plugins/wav.bcp ! ! install-exec-am: clean distclean: |
From: Robert K. <may...@us...> - 2004-02-04 07:12:25
|
Update of /cvsroot/bitcollider/bitcollider/image In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10470/image Modified Files: Makefile.am Log Message: Reworked the stupid makefiles to not install modules twice. Index: Makefile.am =================================================================== RCS file: /cvsroot/bitcollider/bitcollider/image/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** Makefile.am 2 Feb 2004 01:44:57 -0000 1.2 --- Makefile.am 4 Feb 2004 07:10:06 -0000 1.3 *************** *** 8,19 **** INCLUDES = -I$(top_srcdir)/.. -I$(top_srcdir)/ver -I$(top_srcdir)/include ! lib_LTLIBRARIES = libimage.la ! libimage_la_SOURCES = image.c ! libimage_la_LDFLAGS = -module -avoid-version all: mkdir -p $(top_srcdir)/plugins rm -f $(top_srcdir)/plugins/image.bcp ! ln -s $(top_srcdir)/image/.libs/libimage $(top_srcdir)/plugins/image.bcp clean distclean: --- 8,21 ---- INCLUDES = -I$(top_srcdir)/.. -I$(top_srcdir)/ver -I$(top_srcdir)/include ! lib_LTLIBRARIES = image.la ! image_la_SOURCES = image.c ! image_la_LDFLAGS = -module -avoid-version all: mkdir -p $(top_srcdir)/plugins rm -f $(top_srcdir)/plugins/image.bcp ! ln -s $(top_srcdir)/image/.libs/image $(top_srcdir)/plugins/image.bcp ! ! install-exec-am: clean distclean: |
From: Robert K. <may...@us...> - 2004-02-04 03:00:09
|
Update of /cvsroot/bitcollider/bitcollider/win32 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1414/win32 Modified Files: bitcollider.dsp bitcollider.dsw Log Message: Updated for the video plugin and for release 0.6.0 Index: bitcollider.dsp =================================================================== RCS file: /cvsroot/bitcollider/bitcollider/win32/bitcollider.dsp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** bitcollider.dsp 1 Aug 2001 21:21:56 -0000 1.8 --- bitcollider.dsp 4 Feb 2004 02:57:49 -0000 1.9 *************** *** 91,94 **** --- 91,98 ---- # ADD CPP /I "../lib" # End Source File + # Begin Source File + + SOURCE=..\lib\sboxes.c + # End Source File # End Group # Begin Group "Header Files" Index: bitcollider.dsw =================================================================== RCS file: /cvsroot/bitcollider/bitcollider/win32/bitcollider.dsw,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** bitcollider.dsw 24 Feb 2003 11:00:35 -0000 1.6 --- bitcollider.dsw 4 Feb 2004 02:57:50 -0000 1.7 *************** *** 4,8 **** ############################################################################### ! Project: "bc_dll"=".\bc_dll.dsp" - Package Owner=<4> Package=<5> --- 4,8 ---- ############################################################################### ! Project: "bc_dll"=.\bc_dll.dsp - Package Owner=<4> Package=<5> *************** *** 16,20 **** ############################################################################### ! Project: "bitcollider"=".\bitcollider.dsp" - Package Owner=<4> Package=<5> --- 16,20 ---- ############################################################################### ! Project: "bitcollider"=.\bitcollider.dsp - Package Owner=<4> Package=<5> *************** *** 39,47 **** Project_Dep_Name gui End Project Dependency }}} ############################################################################### ! Project: "gui"="..\gui\gui.dsp" - Package Owner=<4> Package=<5> --- 39,50 ---- Project_Dep_Name gui End Project Dependency + Begin Project Dependency + Project_Dep_Name video + End Project Dependency }}} ############################################################################### ! Project: "gui"=..\gui\gui.dsp - Package Owner=<4> Package=<5> *************** *** 58,62 **** ############################################################################### ! Project: "image"="..\image\win32\image.dsp" - Package Owner=<4> Package=<5> --- 61,65 ---- ############################################################################### ! Project: "image"=..\image\win32\image.dsp - Package Owner=<4> Package=<5> *************** *** 70,74 **** ############################################################################### ! Project: "video"="..\video\win32\video.dsp" - Package Owner=<4> Package=<5> --- 73,77 ---- ############################################################################### ! Project: "video"=..\video\win32\video.dsp - Package Owner=<4> Package=<5> *************** *** 82,86 **** ############################################################################### ! Project: "vorbis"="..\vorbis\win32\vorbis.dsp" - Package Owner=<4> Package=<5> --- 85,89 ---- ############################################################################### ! Project: "vorbis"=..\vorbis\win32\vorbis.dsp - Package Owner=<4> Package=<5> *************** *** 97,101 **** ############################################################################### ! Project: "wav"="..\WAV\WIN32\wav.dsp" - Package Owner=<4> Package=<5> --- 100,104 ---- ############################################################################### ! Project: "wav"=..\WAV\WIN32\wav.dsp - Package Owner=<4> Package=<5> |
From: Robert K. <may...@us...> - 2004-02-04 03:00:08
|
Update of /cvsroot/bitcollider/bitcollider/lib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1414/lib Modified Files: gui_win32.rc Log Message: Updated for the video plugin and for release 0.6.0 Index: gui_win32.rc =================================================================== RCS file: /cvsroot/bitcollider/bitcollider/lib/gui_win32.rc,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -r1.7 -r1.8 *** gui_win32.rc 27 Oct 2003 03:09:35 -0000 1.7 --- gui_win32.rc 4 Feb 2004 02:57:49 -0000 1.8 *************** *** 56,60 **** LTEXT "Bitcollider/Windows Version ",IDC_VERSIONSTRING,57,10, 153,8,SS_NOPREFIX ! LTEXT "(PD) 2003 The Bitzi Corporation",IDC_STATIC,57,22,116,8 DEFPUSHBUTTON "OK",IDOK,174,20,36,13,WS_GROUP LTEXT "For more information about the Bitcollider and Bitzi's Free Universal Media Catalog, please visit http://bitzi.com", --- 56,60 ---- LTEXT "Bitcollider/Windows Version ",IDC_VERSIONSTRING,57,10, 153,8,SS_NOPREFIX ! LTEXT "(PD) 2004 The Bitzi Corporation",IDC_STATIC,57,22,116,8 DEFPUSHBUTTON "OK",IDOK,174,20,36,13,WS_GROUP LTEXT "For more information about the Bitcollider and Bitzi's Free Universal Media Catalog, please visit http://bitzi.com", |
From: Robert K. <may...@us...> - 2004-02-04 03:00:08
|
Update of /cvsroot/bitcollider/bitcollider/video/win32 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1414/video/win32 Modified Files: video.dsp Log Message: Updated for the video plugin and for release 0.6.0 Index: video.dsp =================================================================== RCS file: /cvsroot/bitcollider/bitcollider/video/win32/video.dsp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** video.dsp 24 Feb 2003 10:46:04 -0000 1.1 --- video.dsp 4 Feb 2004 02:57:49 -0000 1.2 *************** *** 41,47 **** # PROP Output_Dir "Release" # PROP Intermediate_Dir "Release" # PROP Target_Dir "" # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "VIDEO_EXPORTS" /YX /FD /c ! # ADD CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "VIDEO_EXPORTS" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 --- 41,48 ---- # PROP Output_Dir "Release" # PROP Intermediate_Dir "Release" + # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" # ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "VIDEO_EXPORTS" /YX /FD /c ! # ADD CPP /nologo /MT /W3 /GX /O2 /I "..\..\include" /I "..\..\ver" /I "..\include" /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "VIDEO_EXPORTS" /YX /FD /c # ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32 *************** *** 54,57 **** --- 55,62 ---- # ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 # ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386 + # Begin Special Build Tool + SOURCE="$(InputPath)" + PostBuild_Cmds=IF NOT EXIST plugins mkdir ..\..\plugins copy release\video.dll ..\..\plugins\video.bcp + # End Special Build Tool !ELSEIF "$(CFG)" == "video - Win32 Debug" *************** *** 66,72 **** # PROP Output_Dir "Debug" # PROP Intermediate_Dir "Debug" # PROP Target_Dir "" ! # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "VIDEO_EXPORTS" /YX /FD /GZ /c ! # ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "VIDEO_EXPORTS" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 --- 71,78 ---- # PROP Output_Dir "Debug" # PROP Intermediate_Dir "Debug" + # PROP Ignore_Export_Lib 0 # PROP Target_Dir "" ! # ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "VIDEO_EXPORTS" /YX /FD /GZ /c ! # ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "..\..\include" /I "..\..\ver" /I "..\include" /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "VIDEO_EXPORTS" /YX /FD /GZ /c # ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32 # ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32 *************** *** 89,92 **** --- 95,118 ---- # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" + # Begin Source File + + SOURCE=..\avi.c + # End Source File + # Begin Source File + + SOURCE=..\mpeg.c + # End Source File + # Begin Source File + + SOURCE=..\quicktime.c + # End Source File + # Begin Source File + + SOURCE=..\video.c + # End Source File + # Begin Source File + + SOURCE=.\video.def + # End Source File # End Group # Begin Group "Header Files" |