ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/host/ihost-perl/Config.inc
Revision: 1.9
Committed: Fri Mar 28 16:30:30 2003 UTC (21 years, 5 months ago) by tdb
Branch: MAIN
CVS Tags: HEAD
Changes since 1.8: +1 -1 lines
State: FILE REMOVED
Log Message:
Removed some un-used code from CVS. We can always resurrect this later if
someone feels they want to work on it. Gone are the old perl ihost which
isn't needed now, winhost which is broken and shows no sign of being fixed,
and DBReporter. If someone wants to revive them, I'll undelete them :-)

File Contents

# User Rev Content
1 tdb 1.1 # Include Config for the ihost
2 tdb 1.9 # $Id: Config.inc,v 1.8 2002/06/10 14:24:57 tdb Exp $
3 tdb 1.1
4     ##
5     ## Only the first section needs changing here, the rest are just information
6     ##
7    
8     ## File and Path Locations
9    
10     # ****** These need to be set correctly ******
11     # Location of the CVS Repository Root
12 tdb 1.7 CVSROOT = :pserver:anonymous@cvs.i-scream.org.uk:/cvs/i-scream
13 tdb 1.3 CVSMODULE = cms/source/host/ihost
14 tdb 1.1 CVS = `if test -x /usr/bin/cvs; then echo /usr/bin/cvs; else if test -x /usr/local/bin/cvs; then echo /usr/local/bin/cvs; else echo cvs; fi fi`
15     # ****** These need to be set correctly ******
16    
17     # Location of build directory
18     BUILDDIR = build
19    
20     # cvsbuild temporary directory name
21     CVSBUILDTEMP = cvsbuildtemp
22     # cvsbuild default revision
23     rev = HEAD
24     REVISION = $(rev)
25    
26     # archive names
27     ARCNAME = iscream-ihost
28     TAREXT = .tar
29     TARGZEXT = .tar.gz
30     TARFILE = $(ARCNAME)$(TAREXT)
31     TARGZFILE = $(ARCNAME)$(TARGZEXT)
32 tdb 1.5
33     # plugins
34 tdb 1.8 PERLPLUGINS = plugins/perl
35     LINUXPLUGINS = plugins/linux
36     SOLARISPLUGINS = plugins/solaris
37     FREEBSDPLUGINS = plugins/freebsd
38 tdb 1.5