Changeset 18489


Ignore:
Timestamp:
2009-02-10T13:30:48+13:00 (15 years ago)
Author:
davidb
Message:

Addition of mod_flvx that uses uses 'apxs' to add itself to the apache-httpd installed web server in the main GSDLHOME area

Location:
extensions/gsdl-video/trunk
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • extensions/gsdl-video/trunk/CASCADE-MAKE.sh

    r18425 r18489  
    11#!/bin/bash
     2
     3if [ "x$GSDLHOME" = "x" ] ; then
     4  # This extension needs to have the main GSDL setup.bash sourced
     5
     6  echo "Greenstone environment variable GSDLHOME not set."
     7  echo "Have you sourced the main installation's setup file, e.g. setup.bash?"
     8  exit -1
     9fi
     10
     11if [ ! -d "$GSDLHOME/apache-httpd" ] ; then
     12  # ... and it also needs to have been configured with --enable-apache-httpd
     13  # This is because the entension needs to add mod_flvx to the web server
     14
     15  echo "Could not find the directory \"$GSDLHOME/apache-httpd\""
     16  echo "Has the main Greenstone been configure for this? "
     17  echo "e.g. ./configure --enable-apache-httpd [... other options]"
     18  exit -1
     19fi
     20
    221
    322source bin/script/test-setup.bash
     
    3251if [ ! -e $GEXTVIDEO_INSTALLED/server/htdocs/gsdl ] ; then
    3352  ( cd $GEXTVIDEO_INSTALLED/server/htdocs/ ; \
    34     ln -s $GSDLHOME gsdl )
     53    if [ ! -e gsdl ] ; then ln -s $GSDLHOME gsdl ; fi )
    3554
    3655  if [ $? != 0 ] ; then
  • extensions/gsdl-video/trunk/packages/server/CASCADE-MAKE.sh

    r18425 r18489  
    22
    33
    4 for d in LIGHTTPD GSLIGHTTPD ; do
     4for d in MOD_FLVX; do
    55  echo "    Running CASCADE-MAKE/$d.sh $*"
    66
Note: See TracChangeset for help on using the changeset viewer.