Fix compile error (use -pedantic)
PR: 18216
This commit is contained in:
parent
e6586a2b6c
commit
62f46a1e1f
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=28075
@ -1,20 +1,22 @@
|
||||
--- makefile.bsdi.orig Wed Aug 5 01:18:38 1998
|
||||
+++ makefile.bsdi Mon Oct 5 20:11:38 1998
|
||||
@@ -33,13 +33,13 @@
|
||||
--- makefile.bsdi.orig Tue Aug 4 14:18:38 1998
|
||||
+++ makefile.bsdi Sat Apr 29 13:11:52 2000
|
||||
@@ -32,14 +32,14 @@
|
||||
.SUFFIXES: #clear list of suffixes
|
||||
.SUFFIXES: .cc .o #rules for .c and .o
|
||||
|
||||
CC = gcc
|
||||
-CC = gcc
|
||||
-CFLAGS_DEBUG = -O2 -Wall -DDEBUG -g
|
||||
-CFLAGS_NODEBUG = -O2 -Wall -g
|
||||
+#CC = gcc
|
||||
+CFLAGS_DEBUG = -DDEBUG
|
||||
+CFLAGS_NODEBUG =
|
||||
|
||||
.ifdef DEBUG
|
||||
-CFLAGS = $(CFLAGS_DEBUG)
|
||||
+CFLAGS += $(CFLAGS_DEBUG)
|
||||
+CFLAGS += $(CFLAGS_DEBUG) -pedantic
|
||||
.else
|
||||
-CFLAGS = $(CFLAGS_NODEBUG)
|
||||
+CFLAGS += $(CFLAGS_NODEBUG)
|
||||
+CFLAGS += $(CFLAGS_NODEBUG) -pedantic
|
||||
.endif
|
||||
|
||||
UPSMOND_TARGET = upsmond
|
||||
|
Loading…
Reference in New Issue
Block a user