view admin/get-base-address @ 12691:6d6285a2a633 octave-forge

use macro ISNAN() instead of C++'s isnan() - because it supports all floating point formats not just double
author schloegl
date Sat, 12 Sep 2015 14:16:39 +0000
parents 76b7f347ed44
children
line wrap: on
line source

#! /bin/sh

HOST=`hostname`

case `hostname` in
  foobar*|devzero*|frodo*)
    echo -n "file:/home/jwe/src/octave-www/"
  ;;
  *)
    echo -n ""
    #echo -n `pwd`/htdocs
  ;;
esac

exit 0