blob: 94b9d370021c088c8a861c4a0fe866a00d59258a (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
*** Config.orig Sat Jun 14 19:32:18 1997
--- Config Tue Aug 8 20:29:41 2000
***************
*** 1,9 ****
# -*- sh -*-
# SECTION A.) Global configuration
# Select compiler command
! CC = gcc
#
! CFLAGS = -Wall -Wno-parentheses -Wshadow -Wstrict-prototypes -Wmissing-prototypes
LDFLAGS =
EXLIBS =
#
--- 1,9 ----
# -*- sh -*-
# SECTION A.) Global configuration
# Select compiler command
! #CC = gcc
#
! #CFLAGS = -Wall -Wno-parentheses -Wshadow -Wstrict-prototypes -Wmissing-prototypes
LDFLAGS =
EXLIBS =
#
***************
*** 14,35 ****
#LUA = True
#
# Define this to disable debugging
! #NDEBUG = True
#
#
#
# SECTION B.) yaps configuration
# Name and location of global configuration file
! YAPS_CFGFILE = /etc/yaps.rc
# Name of local configuration file (location is $HOME.)
YAPS_LCFGFILE = .yapsrc
# Directory for installing the binary
! YAPS_BINDIR = /usr/local/bin
# Directory for optional support files
! YAPS_LIBDIR = /usr/local/lib/yaps
# User/Group/Mode for yaps
YAPS_USER = bin
! YAPS_GROUP = uucp
YAPS_MODE = 2711
# User/Group/Mode for global configuration file
YAPS_RCUSER = bin
--- 14,35 ----
#LUA = True
#
# Define this to disable debugging
! NDEBUG = True
#
#
#
# SECTION B.) yaps configuration
# Name and location of global configuration file
! YAPS_CFGFILE = ${PREFIX}/etc/yaps.rc
# Name of local configuration file (location is $HOME.)
YAPS_LCFGFILE = .yapsrc
# Directory for installing the binary
! YAPS_BINDIR = ${PREFIX}/bin
# Directory for optional support files
! YAPS_LIBDIR = ${PREFIX}/share/yaps
# User/Group/Mode for yaps
YAPS_USER = bin
! YAPS_GROUP = dialer
YAPS_MODE = 2711
# User/Group/Mode for global configuration file
YAPS_RCUSER = bin
***************
*** 56,62 ****
#
ifdef NDEBUG
DDEFS = -DNDEBUG
! G = -O
else
G = -g
endif
--- 56,62 ----
#
ifdef NDEBUG
DDEFS = -DNDEBUG
! G =
else
G = -g
endif
|