153 lines
5.6 KiB
Plaintext
153 lines
5.6 KiB
Plaintext
dnl-----------------------------------------------------------------------------
|
|
dnl Copyright (c) 2004 Media Development Loan Fund
|
|
dnl
|
|
dnl This file is part of the Campcaster project.
|
|
dnl http://campcaster.campware.org/
|
|
dnl To report bugs, send an e-mail to bugs@campware.org
|
|
dnl
|
|
dnl Campcaster is free software; you can redistribute it and/or modify
|
|
dnl it under the terms of the GNU General Public License as published by
|
|
dnl the Free Software Foundation; either version 2 of the License, or
|
|
dnl (at your option) any later version.
|
|
dnl
|
|
dnl Campcaster is distributed in the hope that it will be useful,
|
|
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
dnl GNU General Public License for more details.
|
|
dnl
|
|
dnl You should have received a copy of the GNU General Public License
|
|
dnl along with Campcaster; if not, write to the Free Software
|
|
dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
dnl
|
|
dnl
|
|
dnl Author : $Author$
|
|
dnl Version : $Revision$
|
|
dnl Location : $URL$
|
|
dnl-----------------------------------------------------------------------------
|
|
|
|
dnl-----------------------------------------------------------------------------
|
|
dnl NOTE: Run all configure related scripts from the tmp directory of the
|
|
dnl project.
|
|
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_PREREQ(2.59)
|
|
AC_COPYRIGHT([Copyright (c) 2004 Media Development Loan Fund under the GNU GPL])
|
|
AC_REVISION($Revision$)
|
|
|
|
AC_CONFIG_SRCDIR(../var/Archive.php)
|
|
|
|
|
|
dnl-----------------------------------------------------------------------------
|
|
dnl specify the FQDN
|
|
dnl-----------------------------------------------------------------------------
|
|
AC_SUBST(HOSTNAME)
|
|
|
|
AC_ARG_WITH([hostname],
|
|
AC_HELP_STRING([--with-hostname],
|
|
[use the specified hostname (guess)]),
|
|
[HOSTNAME=${withval}], [HOSTNAME=`hostname -f`])
|
|
|
|
AC_MSG_RESULT([using hostname: ${HOSTNAME}])
|
|
|
|
|
|
dnl-----------------------------------------------------------------------------
|
|
dnl specify the web server port
|
|
dnl-----------------------------------------------------------------------------
|
|
AC_SUBST(WWW_PORT)
|
|
|
|
AC_ARG_WITH([www-port],
|
|
AC_HELP_STRING([--with-www-port],
|
|
[use the specified www port (80)]),
|
|
[WWW_PORT=${withval}], [WWW_PORT=80])
|
|
|
|
AC_MSG_RESULT([using www port: ${WWW_PORT}])
|
|
|
|
|
|
dnl-----------------------------------------------------------------------------
|
|
dnl specify the database server name
|
|
dnl-----------------------------------------------------------------------------
|
|
AC_SUBST(DB_SERVER)
|
|
|
|
AC_ARG_WITH([database-server],
|
|
AC_HELP_STRING([--with-database-server],
|
|
[use the specified database server (localhost)]),
|
|
[DB_SERVER=${withval}], [DB_SERVER=localhost])
|
|
|
|
AC_MSG_RESULT([using database server: ${DB_SERVER}])
|
|
|
|
|
|
dnl-----------------------------------------------------------------------------
|
|
dnl get the name of the Campcaster database
|
|
dnl-----------------------------------------------------------------------------
|
|
AC_SUBST(DATABASE)
|
|
|
|
AC_ARG_WITH([database],
|
|
AC_HELP_STRING([--with-database],
|
|
[the name of the postgresql database to use (Campcaster)]),
|
|
[DATABASE=${withval}], [DATABASE=Campcaster])
|
|
|
|
AC_MSG_RESULT([using database: ${DATABASE}])
|
|
|
|
|
|
dnl-----------------------------------------------------------------------------
|
|
dnl specify the database server user
|
|
dnl-----------------------------------------------------------------------------
|
|
AC_SUBST(DB_USER)
|
|
|
|
AC_ARG_WITH([database-user],
|
|
AC_HELP_STRING([--with-database-user],
|
|
[use the specified database server user (campcaster)]),
|
|
[DB_USER=${withval}], [DB_USER=campcaster])
|
|
|
|
AC_MSG_RESULT([using database server user: ${DB_USER}])
|
|
|
|
|
|
dnl-----------------------------------------------------------------------------
|
|
dnl specify the database server user password
|
|
dnl-----------------------------------------------------------------------------
|
|
AC_SUBST(DB_PASSWORD)
|
|
|
|
AC_ARG_WITH([database-password],
|
|
AC_HELP_STRING([--with-database-password],
|
|
[use the specified database server user password (campcaster)]),
|
|
[DB_PASSWORD=${withval}], [DB_PASSWORD=campcaster])
|
|
|
|
AC_MSG_RESULT([using database server user password: ${DB_PASSWORD}])
|
|
|
|
|
|
dnl-----------------------------------------------------------------------------
|
|
dnl specify url prefix
|
|
dnl-----------------------------------------------------------------------------
|
|
AC_SUBST(URL_PREFIX)
|
|
|
|
AC_ARG_WITH([url-prefix],
|
|
AC_HELP_STRING([--with-url-prefix],
|
|
[use the specified url prefix (campcaster)]),
|
|
[URL_PREFIX=${withval}], [URL_PREFIX=campcaster])
|
|
|
|
AC_MSG_RESULT([using url prefix: ${URL_PREFIX}])
|
|
|
|
|
|
dnl display status info on what libraries will get compiled
|
|
|
|
AC_MSG_NOTICE(
|
|
[using the following configuration settings:
|
|
|
|
hostname: ${HOSTNAME}
|
|
www port: ${WWW_PORT}
|
|
database server: ${DB_SERVER}
|
|
database name: ${DATABASE}
|
|
database user: ${DB_USER}
|
|
database user password: ${DB_PASSWORD}
|
|
url prefix: ${URL_PREFIX}
|
|
|
|
])
|
|
|
|
|
|
AC_CONFIG_FILES(../Makefile:../etc/Makefile.in)
|
|
|
|
AC_OUTPUT()
|