- add 0.37 patch part that got lost on the way to the ports tree Changelog: https://github.com/brouhaha/tumble/compare/v0.37...v0.38 PR: 263651 Submitted by: fuz@fuz.su
22 lines
415 B
Plaintext
22 lines
415 B
Plaintext
--- Makefile.orig 2022-04-29 11:21:31 UTC
|
|
+++ Makefile
|
|
@@ -33,15 +33,15 @@
|
|
CTL_LANG=1
|
|
|
|
|
|
-CFLAGS = -Wall -Wno-unused-function -Wno-unused-but-set-variable -I/usr/include/netpbm
|
|
-LDFLAGS =
|
|
+CFLAGS := $(CFLAGS)
|
|
+LDFLAGS := $(LDFLAGS)
|
|
LDLIBS = -ltiff -ljpeg -lnetpbm -lz -lm
|
|
|
|
ifdef DEBUG
|
|
CFLAGS := $(CFLAGS) -g
|
|
LDFLAGS := $(LDFLAGS) -g
|
|
else
|
|
-CFLAGS := $(CFLAGS) -O3
|
|
+CFLAGS := $(CFLAGS)
|
|
endif
|
|
|
|
ifdef EFENCE
|