aboutsummaryrefslogtreecommitdiffstats
path: root/CVSROOT/cfg.pm
diff options
context:
space:
mode:
authorjoe <joe@FreeBSD.org>2001-05-20 20:33:56 +0800
committerjoe <joe@FreeBSD.org>2001-05-20 20:33:56 +0800
commit81af34000ead5885d0b72f6d30650f541baef567 (patch)
treec6163e34f48bdc0d118689d08309075e5afddf9d /CVSROOT/cfg.pm
parent2302d1a640f577d1df42ff8fe747c9e5491f0ff3 (diff)
downloadfreebsd-ports-gnome-81af34000ead5885d0b72f6d30650f541baef567.tar.gz
freebsd-ports-gnome-81af34000ead5885d0b72f6d30650f541baef567.tar.zst
freebsd-ports-gnome-81af34000ead5885d0b72f6d30650f541baef567.zip
Add $DEBUG and $TMPDIR config entries.
Diffstat (limited to 'CVSROOT/cfg.pm')
-rwxr-xr-xCVSROOT/cfg.pm16
1 files changed, 10 insertions, 6 deletions
diff --git a/CVSROOT/cfg.pm b/CVSROOT/cfg.pm
index 7c6a05c1c055..21b8cee1e1f2 100755
--- a/CVSROOT/cfg.pm
+++ b/CVSROOT/cfg.pm
@@ -10,14 +10,18 @@
package cfg;
use strict;
-use vars qw(%TEMPLATE_HEADERS);
+use vars qw($DEBUG $TMPDIR %TEMPLATE_HEADERS);
-############################################################
-#
-# Configurable options
-#
-############################################################
+######################
+### global options ###
+######################
+
+# Debug level, 0 = off, 1 = on.
+$DEBUG = 0;
+
+# Location of temporary directory.
+$TMPDIR = "/tmp/";
################