From 558d968e5f3fccd59214b09f748836d1cac236d1 Mon Sep 17 00:00:00 2001 From: fgerlits Date: Fri, 5 Jan 2007 17:28:05 +0000 Subject: [PATCH] fix for ticket #2074, part 1 of 3 --- campcaster/etc/Makefile.in | 52 +++++++++++++------ campcaster/etc/xmlrpc-doxygen.config | 2 +- .../src/modules/alib/etc/doxygen.config | 2 +- .../modules/archiveServer/etc/configure.ac | 2 +- .../modules/archiveServer/etc/doxygen.config | 2 +- .../modules/authentication/etc/configure.ac | 2 +- .../modules/authentication/etc/doxygen.config | 2 +- campcaster/src/modules/core/etc/configure.ac | 2 +- .../src/modules/core/etc/doxygen.config | 2 +- campcaster/src/modules/db/etc/configure.ac | 2 +- campcaster/src/modules/db/etc/doxygen.config | 2 +- .../modules/eventScheduler/etc/configure.ac | 2 +- .../modules/eventScheduler/etc/doxygen.config | 2 +- .../src/modules/getid3/etc/configure.ac | 2 +- .../src/modules/getid3/etc/doxygen.config | 2 +- .../gstreamerElements/etc/configure.ac | 2 +- .../gstreamerElements/etc/doxygen.config | 2 +- .../src/modules/htmlUI/etc/configure.ac | 2 +- .../src/modules/htmlUI/etc/doxygen.config | 2 +- .../modules/playlistExecutor/etc/configure.ac | 2 +- .../playlistExecutor/etc/doxygen.config | 2 +- .../modules/schedulerClient/etc/configure.ac | 2 +- .../schedulerClient/etc/doxygen.config | 2 +- .../src/modules/storageAdmin/etc/configure.ac | 2 +- .../modules/storageClient/etc/configure.ac | 2 +- .../modules/storageClient/etc/doxygen.config | 2 +- .../modules/storageServer/etc/configure.ac | 2 +- .../modules/storageServer/etc/doxygen.config | 2 +- .../src/modules/widgets/etc/configure.ac | 2 +- .../src/modules/widgets/etc/doxygen.config | 2 +- .../products/gLiveSupport/etc/configure.ac | 2 +- .../products/gLiveSupport/etc/doxygen.config | 2 +- .../src/products/scheduler/etc/configure.ac | 2 +- .../src/products/scheduler/etc/doxygen.config | 2 +- 34 files changed, 68 insertions(+), 50 deletions(-) diff --git a/campcaster/etc/Makefile.in b/campcaster/etc/Makefile.in index ee9eb9577..067788723 100644 --- a/campcaster/etc/Makefile.in +++ b/campcaster/etc/Makefile.in @@ -52,6 +52,7 @@ SRC_DIR = ${BASE_DIR}/src TMP_DIR = ${BASE_DIR}/tmp prefix = @prefix@ +PACKAGE_VERSION = @PACKAGE_VERSION@ USR_DIR = ${prefix} USR_BIN_DIR = ${USR_DIR}/bin @@ -238,7 +239,8 @@ ${TMP_DIR}/doxytag_setup.stamp: modules_setup: ${TMP_DIR}/modules_setup.stamp ${TMP_DIR}/modules_setup.stamp: - cd ${ALIB_DIR} && ./configure --prefix=${prefix} + cd ${ALIB_DIR} && ./configure --prefix=${prefix} \ + PACKAGE_VERSION=${PACKAGE_VERSION} cd ${ARCHIVE_SERVER_DIR} && \ ./configure --prefix=${prefix} \ --with-hostname=${HOSTNAME} \ @@ -246,16 +248,20 @@ ${TMP_DIR}/modules_setup.stamp: --with-database-server=${DB_SERVER} \ --with-database=${DATABASE} \ --with-database-user=${DB_USER} \ - --with-database-password=${DB_PASSWORD} - cd ${GETID3_DIR} && ./configure --prefix=${prefix} + --with-database-password=${DB_PASSWORD} \ + PACKAGE_VERSION=${PACKAGE_VERSION} + cd ${GETID3_DIR} && ./configure --prefix=${prefix} \ + PACKAGE_VERSION=${PACKAGE_VERSION} cd ${HTML_UI_DIR} && ./configure --prefix=${prefix} \ --with-apache-group=${APACHE_GROUP} \ --with-www-docroot=${WWW_DOCROOT} \ --with-configure-apache=${CONFIGURE_APACHE} \ - --with-storage-server=${prefix}/var/Campcaster/storageServer + --with-storage-server=${prefix}/var/Campcaster/storageServer \ + PACKAGE_VERSION=${PACKAGE_VERSION} cd ${STORAGE_ADMIN_DIR} && ./configure --prefix=${prefix} \ --with-storage-server=${prefix}/var/Campcaster/storageServer \ - --with-phppart-dir=${prefix}/var/Campcaster/storageAdmin + --with-phppart-dir=${prefix}/var/Campcaster/storageAdmin \ + PACKAGE_VERSION=${PACKAGE_VERSION} cd ${STORAGE_SERVER_DIR} && \ ./configure --prefix=${prefix} \ --with-apache-group=${APACHE_GROUP} \ @@ -267,25 +273,35 @@ ${TMP_DIR}/modules_setup.stamp: --with-database=${DATABASE} \ --with-database-user=${DB_USER} \ --with-database-password=${DB_PASSWORD} \ - --with-init-database=${INIT_LS_DATABASE} + --with-init-database=${INIT_LS_DATABASE} \ + PACKAGE_VERSION=${PACKAGE_VERSION} cd ${CORE_DIR} && \ - ./configure --prefix=${prefix} --enable-debug=${DEBUG} + ./configure --prefix=${prefix} --enable-debug=${DEBUG} \ + PACKAGE_VERSION=${PACKAGE_VERSION} cd ${AUTHENTICATION_DIR} && \ - ./configure --prefix=${prefix} --enable-debug=${DEBUG} + ./configure --prefix=${prefix} --enable-debug=${DEBUG} \ + PACKAGE_VERSION=${PACKAGE_VERSION} cd ${DB_DIR} && \ - ./configure --prefix=${prefix} --enable-debug=${DEBUG} + ./configure --prefix=${prefix} --enable-debug=${DEBUG} \ + PACKAGE_VERSION=${PACKAGE_VERSION} cd ${STORAGE_CLIENT_DIR} && \ - ./configure --prefix=${prefix} --enable-debug=${DEBUG} + ./configure --prefix=${prefix} --enable-debug=${DEBUG} \ + PACKAGE_VERSION=${PACKAGE_VERSION} cd ${GSTREAMER_ELEMENTS_DIR} && \ - ./configure --prefix=${prefix} --enable-debug=${DEBUG} + ./configure --prefix=${prefix} --enable-debug=${DEBUG} \ + PACKAGE_VERSION=${PACKAGE_VERSION} cd ${PLAYLIST_EXECUTOR_DIR} && \ - ./configure --prefix=${prefix} --enable-debug=${DEBUG} + ./configure --prefix=${prefix} --enable-debug=${DEBUG} \ + PACKAGE_VERSION=${PACKAGE_VERSION} cd ${EVENT_SCHEDULER_DIR} && \ - ./configure --prefix=${prefix} --enable-debug=${DEBUG} + ./configure --prefix=${prefix} --enable-debug=${DEBUG} \ + PACKAGE_VERSION=${PACKAGE_VERSION} cd ${SCHEDULER_CLIENT_DIR} && \ - ./configure --prefix=${prefix} --enable-debug=${DEBUG} + ./configure --prefix=${prefix} --enable-debug=${DEBUG} \ + PACKAGE_VERSION=${PACKAGE_VERSION} cd ${WIDGETS_DIR} && \ - ./configure --prefix=${prefix} --enable-debug=${DEBUG} + ./configure --prefix=${prefix} --enable-debug=${DEBUG} \ + PACKAGE_VERSION=${PACKAGE_VERSION} touch ${TMP_DIR}/modules_setup.stamp products_setup: ${TMP_DIR}/products_setup.stamp @@ -302,7 +318,8 @@ ${TMP_DIR}/products_setup.stamp: --with-database-password=${DB_PASSWORD} \ --with-audio-out=${STATION_AUDIO_OUT} \ --with-create-odbc-data-source=${CREATE_ODBC_DATA_SOURCE} \ - --with-init-database=${INIT_LS_DATABASE} + --with-init-database=${INIT_LS_DATABASE} \ + PACKAGE_VERSION=${PACKAGE_VERSION} cd ${GLIVESUPPORT_DIR} && \ ./configure --prefix=${prefix} \ --enable-debug=${DEBUG} \ @@ -314,7 +331,8 @@ ${TMP_DIR}/products_setup.stamp: --with-database-user=${DB_USER} \ --with-database-password=${DB_PASSWORD} \ --with-audio-out=${STUDIO_AUDIO_OUT} \ - --with-audio-cue=${STUDIO_AUDIO_CUE} + --with-audio-cue=${STUDIO_AUDIO_CUE} \ + PACKAGE_VERSION=${PACKAGE_VERSION} touch ${TMP_DIR}/products_setup.stamp distclean: clean tools_distclean modprod_distclean diff --git a/campcaster/etc/xmlrpc-doxygen.config b/campcaster/etc/xmlrpc-doxygen.config index 2880d21ff..90f96b93a 100644 --- a/campcaster/etc/xmlrpc-doxygen.config +++ b/campcaster/etc/xmlrpc-doxygen.config @@ -50,7 +50,7 @@ PROJECT_NAME = "Campcaster XML-RPC Interface" # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 1.0 +PROJECT_NUMBER = 1.1.1 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/campcaster/src/modules/alib/etc/doxygen.config b/campcaster/src/modules/alib/etc/doxygen.config index 8991ee1f6..a819297b9 100644 --- a/campcaster/src/modules/alib/etc/doxygen.config +++ b/campcaster/src/modules/alib/etc/doxygen.config @@ -49,7 +49,7 @@ PROJECT_NAME = LiveSupport - alib module # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 1.0 +PROJECT_NUMBER = 0.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/campcaster/src/modules/archiveServer/etc/configure.ac b/campcaster/src/modules/archiveServer/etc/configure.ac index 1c1588a47..9ea5d9f62 100644 --- a/campcaster/src/modules/archiveServer/etc/configure.ac +++ b/campcaster/src/modules/archiveServer/etc/configure.ac @@ -32,7 +32,7 @@ dnl This is due to the fact that configure spreads a lot of trash around, dnl like atom4te cache directories, config.* files, etc. into the directory dnl it is being run from. We clearly don't want these in our base directory. dnl----------------------------------------------------------------------------- -AC_INIT(ArchiveServer, 1.1.1, bugs@campware.org) +AC_INIT(ArchiveServer, 0.0, bugs@campware.org) AC_PREREQ(2.59) AC_COPYRIGHT([Copyright (c) 2004 Media Development Loan Fund under the GNU GPL]) AC_REVISION($Revision$) diff --git a/campcaster/src/modules/archiveServer/etc/doxygen.config b/campcaster/src/modules/archiveServer/etc/doxygen.config index 73bd3cdbd..e3ccc6bc9 100644 --- a/campcaster/src/modules/archiveServer/etc/doxygen.config +++ b/campcaster/src/modules/archiveServer/etc/doxygen.config @@ -49,7 +49,7 @@ PROJECT_NAME = LiveSupport - archiveServer module # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 1.0 +PROJECT_NUMBER = 0.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/campcaster/src/modules/authentication/etc/configure.ac b/campcaster/src/modules/authentication/etc/configure.ac index 7b22d34bd..58731dad0 100644 --- a/campcaster/src/modules/authentication/etc/configure.ac +++ b/campcaster/src/modules/authentication/etc/configure.ac @@ -32,7 +32,7 @@ dnl This is due to the fact that configure spreads a lot of trash around, dnl like atom4te cache directories, config.* files, etc. into the directory dnl it is being run from. We clearly don't want these in our base directory. dnl----------------------------------------------------------------------------- -AC_INIT(Authentication, 1.1.1, bugs@campware.org) +AC_INIT(Authentication, 0.0, bugs@campware.org) AC_PREREQ(2.59) AC_COPYRIGHT([Copyright (c) 2004 Media Development Loan Fund under the GNU GPL]) AC_REVISION($Revision$) diff --git a/campcaster/src/modules/authentication/etc/doxygen.config b/campcaster/src/modules/authentication/etc/doxygen.config index bb7b13cec..869c77c99 100644 --- a/campcaster/src/modules/authentication/etc/doxygen.config +++ b/campcaster/src/modules/authentication/etc/doxygen.config @@ -50,7 +50,7 @@ PROJECT_NAME = Campcaster # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 1.0 +PROJECT_NUMBER = 0.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/campcaster/src/modules/core/etc/configure.ac b/campcaster/src/modules/core/etc/configure.ac index e7b4d144f..fad671576 100644 --- a/campcaster/src/modules/core/etc/configure.ac +++ b/campcaster/src/modules/core/etc/configure.ac @@ -32,7 +32,7 @@ dnl This is due to the fact that configure spreads a lot of trash around, dnl like atom4te cache directories, config.* files, etc. into the directory dnl it is being run from. We clearly don't want these in our base directory. dnl----------------------------------------------------------------------------- -AC_INIT(Core, 1.1.1, bugs@campware.org) +AC_INIT(Core, 0.0, bugs@campware.org) AC_PREREQ(2.59) AC_COPYRIGHT([Copyright (c) 2004 Media Development Loan Fund under the GNU GPL]) AC_REVISION($Revision$) diff --git a/campcaster/src/modules/core/etc/doxygen.config b/campcaster/src/modules/core/etc/doxygen.config index bb7b13cec..869c77c99 100644 --- a/campcaster/src/modules/core/etc/doxygen.config +++ b/campcaster/src/modules/core/etc/doxygen.config @@ -50,7 +50,7 @@ PROJECT_NAME = Campcaster # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 1.0 +PROJECT_NUMBER = 0.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/campcaster/src/modules/db/etc/configure.ac b/campcaster/src/modules/db/etc/configure.ac index 819b2ec79..bf4981c3d 100644 --- a/campcaster/src/modules/db/etc/configure.ac +++ b/campcaster/src/modules/db/etc/configure.ac @@ -32,7 +32,7 @@ dnl This is due to the fact that configure spreads a lot of trash around, dnl like atom4te cache directories, config.* files, etc. into the directory dnl it is being run from. We clearly don't want these in our base directory. dnl----------------------------------------------------------------------------- -AC_INIT(Db, 1.1.1, bugs@campware.org) +AC_INIT(Db, 0.0, bugs@campware.org) AC_PREREQ(2.59) AC_COPYRIGHT([Copyright (c) 2004 Media Development Loan Fund under the GNU GPL]) AC_REVISION($Revision$) diff --git a/campcaster/src/modules/db/etc/doxygen.config b/campcaster/src/modules/db/etc/doxygen.config index 78bf0f7e6..effcb56d1 100644 --- a/campcaster/src/modules/db/etc/doxygen.config +++ b/campcaster/src/modules/db/etc/doxygen.config @@ -50,7 +50,7 @@ PROJECT_NAME = Campcaster # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 1.0 +PROJECT_NUMBER = 0.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/campcaster/src/modules/eventScheduler/etc/configure.ac b/campcaster/src/modules/eventScheduler/etc/configure.ac index 7e6748b5c..1be646909 100644 --- a/campcaster/src/modules/eventScheduler/etc/configure.ac +++ b/campcaster/src/modules/eventScheduler/etc/configure.ac @@ -32,7 +32,7 @@ dnl This is due to the fact that configure spreads a lot of trash around, dnl like atom4te cache directories, config.* files, etc. into the directory dnl it is being run from. We clearly don't want these in our base directory. dnl----------------------------------------------------------------------------- -AC_INIT(EventScheduler, 1.1.1, bugs@campware.org) +AC_INIT(EventScheduler, 0.0, bugs@campware.org) AC_PREREQ(2.59) AC_COPYRIGHT([Copyright (c) 2004 Media Development Loan Fund under the GNU GPL]) AC_REVISION($Revision$) diff --git a/campcaster/src/modules/eventScheduler/etc/doxygen.config b/campcaster/src/modules/eventScheduler/etc/doxygen.config index bb7b13cec..869c77c99 100644 --- a/campcaster/src/modules/eventScheduler/etc/doxygen.config +++ b/campcaster/src/modules/eventScheduler/etc/doxygen.config @@ -50,7 +50,7 @@ PROJECT_NAME = Campcaster # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 1.0 +PROJECT_NUMBER = 0.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/campcaster/src/modules/getid3/etc/configure.ac b/campcaster/src/modules/getid3/etc/configure.ac index f15340eb6..652d3ff8f 100644 --- a/campcaster/src/modules/getid3/etc/configure.ac +++ b/campcaster/src/modules/getid3/etc/configure.ac @@ -32,7 +32,7 @@ dnl This is due to the fact that configure spreads a lot of trash around, dnl like atom4te cache directories, config.* files, etc. into the directory dnl it is being run from. We clearly don't want these in our base directory. dnl----------------------------------------------------------------------------- -AC_INIT(GetId3, 1.1.1, bugs@campware.org) +AC_INIT(GetId3, 0.0, bugs@campware.org) AC_PREREQ(2.59) AC_COPYRIGHT([Copyright (c) 2004 Media Development Loan Fund under the GNU GPL]) AC_REVISION($Revision$) diff --git a/campcaster/src/modules/getid3/etc/doxygen.config b/campcaster/src/modules/getid3/etc/doxygen.config index bc2083c44..31bbd488e 100644 --- a/campcaster/src/modules/getid3/etc/doxygen.config +++ b/campcaster/src/modules/getid3/etc/doxygen.config @@ -49,7 +49,7 @@ PROJECT_NAME = LiveSupport # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 1.0 +PROJECT_NUMBER = 0.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/campcaster/src/modules/gstreamerElements/etc/configure.ac b/campcaster/src/modules/gstreamerElements/etc/configure.ac index 6fdacd64a..4b7d08690 100644 --- a/campcaster/src/modules/gstreamerElements/etc/configure.ac +++ b/campcaster/src/modules/gstreamerElements/etc/configure.ac @@ -32,7 +32,7 @@ dnl This is due to the fact that configure spreads a lot of trash around, dnl like atom4te cache directories, config.* files, etc. into the directory dnl it is being run from. We clearly don't want these in our base directory. dnl----------------------------------------------------------------------------- -AC_INIT(GstreamerElements, 1.1.1, bugs@campware.org) +AC_INIT(GstreamerElements, 0.0, bugs@campware.org) AC_PREREQ(2.59) AC_COPYRIGHT([Copyright (c) 2004 Media Development Loan Fund under the GNU GPL]) AC_REVISION($Revision$) diff --git a/campcaster/src/modules/gstreamerElements/etc/doxygen.config b/campcaster/src/modules/gstreamerElements/etc/doxygen.config index 6788ad8b3..897efc0d7 100644 --- a/campcaster/src/modules/gstreamerElements/etc/doxygen.config +++ b/campcaster/src/modules/gstreamerElements/etc/doxygen.config @@ -50,7 +50,7 @@ PROJECT_NAME = Campcaster # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 1.0 +PROJECT_NUMBER = 0.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/campcaster/src/modules/htmlUI/etc/configure.ac b/campcaster/src/modules/htmlUI/etc/configure.ac index a492e3664..d7490725a 100644 --- a/campcaster/src/modules/htmlUI/etc/configure.ac +++ b/campcaster/src/modules/htmlUI/etc/configure.ac @@ -32,7 +32,7 @@ dnl This is due to the fact that configure spreads a lot of trash around, dnl like atom4te cache directories, config.* files, etc. into the directory dnl it is being run from. We clearly don't want these in our base directory. dnl----------------------------------------------------------------------------- -AC_INIT(HtmlUI, 1.1.1, bugs@campware.org) +AC_INIT(HtmlUI, 0.0, bugs@campware.org) AC_PREREQ(2.59) AC_COPYRIGHT([Copyright (c) 2004 Media Development Loan Fund under the GNU GPL]) AC_REVISION($Revision$) diff --git a/campcaster/src/modules/htmlUI/etc/doxygen.config b/campcaster/src/modules/htmlUI/etc/doxygen.config index c0ea361ff..db86d23c2 100644 --- a/campcaster/src/modules/htmlUI/etc/doxygen.config +++ b/campcaster/src/modules/htmlUI/etc/doxygen.config @@ -23,7 +23,7 @@ PROJECT_NAME = LiveSupport - htmlUI module # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 1.0 +PROJECT_NUMBER = 0.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/campcaster/src/modules/playlistExecutor/etc/configure.ac b/campcaster/src/modules/playlistExecutor/etc/configure.ac index 044245789..091d09e0e 100644 --- a/campcaster/src/modules/playlistExecutor/etc/configure.ac +++ b/campcaster/src/modules/playlistExecutor/etc/configure.ac @@ -32,7 +32,7 @@ dnl This is due to the fact that configure spreads a lot of trash around, dnl like atom4te cache directories, config.* files, etc. into the directory dnl it is being run from. We clearly don't want these in our base directory. dnl----------------------------------------------------------------------------- -AC_INIT(PlaylistExecutor, 1.1.1, bugs@campware.org) +AC_INIT(PlaylistExecutor, 0.0, bugs@campware.org) AC_PREREQ(2.59) AC_COPYRIGHT([Copyright (c) 2004 Media Development Loan Fund under the GNU GPL]) AC_REVISION($Revision$) diff --git a/campcaster/src/modules/playlistExecutor/etc/doxygen.config b/campcaster/src/modules/playlistExecutor/etc/doxygen.config index bb7b13cec..869c77c99 100644 --- a/campcaster/src/modules/playlistExecutor/etc/doxygen.config +++ b/campcaster/src/modules/playlistExecutor/etc/doxygen.config @@ -50,7 +50,7 @@ PROJECT_NAME = Campcaster # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 1.0 +PROJECT_NUMBER = 0.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/campcaster/src/modules/schedulerClient/etc/configure.ac b/campcaster/src/modules/schedulerClient/etc/configure.ac index f26056d04..3d25a9c16 100644 --- a/campcaster/src/modules/schedulerClient/etc/configure.ac +++ b/campcaster/src/modules/schedulerClient/etc/configure.ac @@ -32,7 +32,7 @@ dnl This is due to the fact that configure spreads a lot of trash around, dnl like atom4te cache directories, config.* files, etc. into the directory dnl it is being run from. We clearly don't want these in our base directory. dnl----------------------------------------------------------------------------- -AC_INIT(StorageClient, 1.1.1, bugs@campware.org) +AC_INIT(StorageClient, 0.0, bugs@campware.org) AC_PREREQ(2.59) AC_COPYRIGHT([Copyright (c) 2004 Media Development Loan Fund under the GNU GPL]) AC_REVISION($Revision$) diff --git a/campcaster/src/modules/schedulerClient/etc/doxygen.config b/campcaster/src/modules/schedulerClient/etc/doxygen.config index bb7b13cec..869c77c99 100644 --- a/campcaster/src/modules/schedulerClient/etc/doxygen.config +++ b/campcaster/src/modules/schedulerClient/etc/doxygen.config @@ -50,7 +50,7 @@ PROJECT_NAME = Campcaster # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 1.0 +PROJECT_NUMBER = 0.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/campcaster/src/modules/storageAdmin/etc/configure.ac b/campcaster/src/modules/storageAdmin/etc/configure.ac index dbd0f8b59..b67e28c33 100644 --- a/campcaster/src/modules/storageAdmin/etc/configure.ac +++ b/campcaster/src/modules/storageAdmin/etc/configure.ac @@ -32,7 +32,7 @@ dnl This is due to the fact that configure spreads a lot of trash around, dnl like atom4te cache directories, config.* files, etc. into the directory dnl it is being run from. We clearly don't want these in our base directory. dnl----------------------------------------------------------------------------- -AC_INIT(StorageAdmin, 1.1.1, bugs@campware.org) +AC_INIT(StorageAdmin, 0.0, bugs@campware.org) AC_PREREQ(2.59) AC_COPYRIGHT([Copyright (c) 2004 Media Development Loan Fund under the GNU GPL]) AC_REVISION($Revision$) diff --git a/campcaster/src/modules/storageClient/etc/configure.ac b/campcaster/src/modules/storageClient/etc/configure.ac index 213ac31c6..81c3a49f9 100644 --- a/campcaster/src/modules/storageClient/etc/configure.ac +++ b/campcaster/src/modules/storageClient/etc/configure.ac @@ -32,7 +32,7 @@ dnl This is due to the fact that configure spreads a lot of trash around, dnl like atom4te cache directories, config.* files, etc. into the directory dnl it is being run from. We clearly don't want these in our base directory. dnl----------------------------------------------------------------------------- -AC_INIT(StorageClient, 1.1.1, bugs@campware.org) +AC_INIT(StorageClient, 0.0, bugs@campware.org) AC_PREREQ(2.59) AC_COPYRIGHT([Copyright (c) 2004 Media Development Loan Fund under the GNU GPL]) AC_REVISION($Revision$) diff --git a/campcaster/src/modules/storageClient/etc/doxygen.config b/campcaster/src/modules/storageClient/etc/doxygen.config index bb7b13cec..869c77c99 100644 --- a/campcaster/src/modules/storageClient/etc/doxygen.config +++ b/campcaster/src/modules/storageClient/etc/doxygen.config @@ -50,7 +50,7 @@ PROJECT_NAME = Campcaster # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 1.0 +PROJECT_NUMBER = 0.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/campcaster/src/modules/storageServer/etc/configure.ac b/campcaster/src/modules/storageServer/etc/configure.ac index 304050a9c..9391e5284 100644 --- a/campcaster/src/modules/storageServer/etc/configure.ac +++ b/campcaster/src/modules/storageServer/etc/configure.ac @@ -32,7 +32,7 @@ dnl This is due to the fact that configure spreads a lot of trash around, dnl like atom4te cache directories, config.* files, etc. into the directory dnl it is being run from. We clearly don't want these in our base directory. dnl----------------------------------------------------------------------------- -AC_INIT(StorageServer, 1.1.1, bugs@campware.org) +AC_INIT(StorageServer, 0.0, bugs@campware.org) AC_PREREQ(2.59) AC_COPYRIGHT([Copyright (c) 2004 Media Development Loan Fund under the GNU GPL]) AC_REVISION($Revision$) diff --git a/campcaster/src/modules/storageServer/etc/doxygen.config b/campcaster/src/modules/storageServer/etc/doxygen.config index 70e9750e2..03256fb35 100644 --- a/campcaster/src/modules/storageServer/etc/doxygen.config +++ b/campcaster/src/modules/storageServer/etc/doxygen.config @@ -49,7 +49,7 @@ PROJECT_NAME = LiveSupport - storageServer module # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 1.0 +PROJECT_NUMBER = 0.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/campcaster/src/modules/widgets/etc/configure.ac b/campcaster/src/modules/widgets/etc/configure.ac index 9ecf116f0..a93bd2050 100644 --- a/campcaster/src/modules/widgets/etc/configure.ac +++ b/campcaster/src/modules/widgets/etc/configure.ac @@ -32,7 +32,7 @@ dnl This is due to the fact that configure spreads a lot of trash around, dnl like atom4te cache directories, config.* files, etc. into the directory dnl it is being run from. We clearly don't want these in our base directory. dnl----------------------------------------------------------------------------- -AC_INIT(Widgets, 1.1.1, bugs@campware.org) +AC_INIT(Widgets, 0.0, bugs@campware.org) AC_PREREQ(2.59) AC_COPYRIGHT([Copyright (c) 2004 Media Development Loan Fund under the GNU GPL]) AC_REVISION($Revision$) diff --git a/campcaster/src/modules/widgets/etc/doxygen.config b/campcaster/src/modules/widgets/etc/doxygen.config index 78bf0f7e6..effcb56d1 100644 --- a/campcaster/src/modules/widgets/etc/doxygen.config +++ b/campcaster/src/modules/widgets/etc/doxygen.config @@ -50,7 +50,7 @@ PROJECT_NAME = Campcaster # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 1.0 +PROJECT_NUMBER = 0.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/campcaster/src/products/gLiveSupport/etc/configure.ac b/campcaster/src/products/gLiveSupport/etc/configure.ac index 10fe005d3..8393b33a3 100644 --- a/campcaster/src/products/gLiveSupport/etc/configure.ac +++ b/campcaster/src/products/gLiveSupport/etc/configure.ac @@ -32,7 +32,7 @@ dnl This is due to the fact that configure spreads a lot of trash around, dnl like atom4te cache directories, config.* files, etc. into the directory dnl it is being run from. We clearly don't want these in our base directory. dnl----------------------------------------------------------------------------- -AC_INIT(Campcaster-Studio, 1.1.1, bugs@campware.org) +AC_INIT(Campcaster-Studio, 0.0, bugs@campware.org) AC_PREREQ(2.59) AC_COPYRIGHT([Copyright (c) 2004 Media Development Loan Fund under the GNU GPL]) AC_REVISION($Revision$) diff --git a/campcaster/src/products/gLiveSupport/etc/doxygen.config b/campcaster/src/products/gLiveSupport/etc/doxygen.config index bebe33162..cab376381 100644 --- a/campcaster/src/products/gLiveSupport/etc/doxygen.config +++ b/campcaster/src/products/gLiveSupport/etc/doxygen.config @@ -50,7 +50,7 @@ PROJECT_NAME = Campcaster # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 1.0 +PROJECT_NUMBER = 0.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/campcaster/src/products/scheduler/etc/configure.ac b/campcaster/src/products/scheduler/etc/configure.ac index 5a3ff3c2b..ff26945bf 100644 --- a/campcaster/src/products/scheduler/etc/configure.ac +++ b/campcaster/src/products/scheduler/etc/configure.ac @@ -32,7 +32,7 @@ dnl This is due to the fact that configure spreads a lot of trash around, dnl like atom4te cache directories, config.* files, etc. into the directory dnl it is being run from. We clearly don't want these in our base directory. dnl----------------------------------------------------------------------------- -AC_INIT(Campcaster-Scheduler, 1.1.1, bugs@campware.org) +AC_INIT(Campcaster-Scheduler, 0.0, bugs@campware.org) AC_PREREQ(2.59) AC_COPYRIGHT([Copyright (c) 2004 Media Development Loan Fund under the GNU GPL]) AC_REVISION($Revision$) diff --git a/campcaster/src/products/scheduler/etc/doxygen.config b/campcaster/src/products/scheduler/etc/doxygen.config index bebe33162..cab376381 100644 --- a/campcaster/src/products/scheduler/etc/doxygen.config +++ b/campcaster/src/products/scheduler/etc/doxygen.config @@ -50,7 +50,7 @@ PROJECT_NAME = Campcaster # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = 1.0 +PROJECT_NUMBER = 0.0 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put.