blob: f4f03628e7bf533d2a1eafd82ea86687576a9dd2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
--- Config.orig 1997-06-14 10:32:18 UTC
+++ Config
@@ -1,9 +1,9 @@
# -*- sh -*-
# SECTION A.) Global configuration
# Select compiler command
-CC = gcc
+#CC = gcc
#
-CFLAGS = -Wall -Wno-parentheses -Wshadow -Wstrict-prototypes -Wmissing-prototypes
+#CFLAGS = -Wall -Wno-parentheses -Wshadow -Wstrict-prototypes -Wmissing-prototypes
LDFLAGS =
EXLIBS =
#
@@ -14,22 +14,22 @@ EXLIBS =
#LUA = True
#
# Define this to disable debugging
-#NDEBUG = True
+NDEBUG = True
#
#
#
# SECTION B.) yaps configuration
# Name and location of global configuration file
-YAPS_CFGFILE = /etc/yaps.rc
+YAPS_CFGFILE = ${PREFIX}/etc/yaps.rc
# Name of local configuration file (location is $HOME.)
YAPS_LCFGFILE = .yapsrc
# Directory for installing the binary
-YAPS_BINDIR = /usr/local/bin
+YAPS_BINDIR = ${PREFIX}/bin
# Directory for optional support files
-YAPS_LIBDIR = /usr/local/lib/yaps
+YAPS_LIBDIR = ${PREFIX}/share/yaps
# User/Group/Mode for yaps
YAPS_USER = bin
-YAPS_GROUP = uucp
+YAPS_GROUP = dialer
YAPS_MODE = 2711
# User/Group/Mode for global configuration file
YAPS_RCUSER = bin
@@ -56,7 +56,7 @@ endif
#
ifdef NDEBUG
DDEFS = -DNDEBUG
-G = -O
+G =
else
G = -g
endif
|