9b82295330
for access. Also, made Makefile respect CFLAGS.
35 lines
676 B
Text
35 lines
676 B
Text
$NetBSD: patch-aa,v 1.3 2001/03/08 21:26:51 jtb Exp $
|
|
|
|
--- Makefile.orig Thu Apr 22 08:31:43 1999
|
|
+++ Makefile
|
|
@@ -1,24 +1,24 @@
|
|
|
|
# Your C compiler.
|
|
|
|
-CC=gcc
|
|
+#CC=gcc
|
|
|
|
# Where your readline library is.
|
|
# You can compile with a hacked replacement of readline instead by
|
|
# doing this:
|
|
|
|
-#INC=-Ifake-readline/
|
|
-#LIB=fake-readline/readline.c
|
|
+INC=-Ifake-readline/
|
|
+LIB=fake-readline/readline.c
|
|
|
|
-INC=-I/usr/include/readline
|
|
-LIB=-lreadline
|
|
+#INC=-I/usr/include/readline
|
|
+#LIB=-lreadline
|
|
|
|
# Flags to the compiler:
|
|
#
|
|
# -DMEM_DEBUG Check for memory leaks.
|
|
#
|
|
|
|
-CFLAGS=-g -Wall -DMEM_DEBUG $(INC) -pg
|
|
+CFLAGS+=-Wall $(INC)
|
|
|
|
# No need to change this stuff.
|
|
|