bb87ad4446
- Allow building without qcc aka MORDA (make WITHOUT_MORDA=yes). PR: 22599 Submitted by: MAINTAINER
50 lines
1.1 KiB
Plaintext
50 lines
1.1 KiB
Plaintext
--- CONFIG.orig Sat Oct 28 00:02:38 2000
|
|
+++ CONFIG Fri Nov 3 20:39:19 2000
|
|
@@ -6,7 +6,7 @@
|
|
BINDIR = /usr/local/bin
|
|
|
|
# default config (can be overridden with -I)
|
|
-CONF = /etc/ftn/qico.conf
|
|
+CONF = ${PREFIX}/etc/qico.conf
|
|
# non-binary file permissions
|
|
PERM = 00600
|
|
|
|
@@ -19,14 +19,14 @@
|
|
#############################################################################
|
|
|
|
# qcc features (for building this you must have ncurses-4.2+)
|
|
-MORDA = 1
|
|
+#MORDA = 1
|
|
|
|
# Please, set it under FreeBSD
|
|
-#FREE_BSD=1
|
|
+FREE_BSD=1
|
|
|
|
|
|
# lock dir
|
|
-DEFS += -DLOCK_DIR=\"/var/lock\"
|
|
+DEFS += -DLOCK_DIR=\"/var/spool/lock\"
|
|
|
|
# communication socket
|
|
DEFS += -DQIPC_SOCKET=\"/tmp/qlog\"
|
|
@@ -59,13 +59,13 @@
|
|
### OS depended settings #####################################################
|
|
##############################################################################
|
|
|
|
-SHELL = /bin/sh
|
|
-CC = gcc
|
|
-AWK = awk
|
|
-INSTALL = install
|
|
-LEX = lex
|
|
+SHELL ?= /bin/sh
|
|
+CC ?= gcc
|
|
+AWK ?= awk
|
|
+INSTALL ?= install
|
|
+LEX ?= lex
|
|
#YACC = bison -y
|
|
-YACC = yacc
|
|
+YACC ?= yacc
|
|
|
|
# required for linux glibc2 systems
|
|
#LIBS=-lresolv
|