mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 01:56:37 -04:00
This update fixes the followings: - The current upstream Makefile appends '-O1' to CFLAGS, which would inadvertently override any previous optimization option that passed by the user. - www/elinks has recently been updated to a supported version add optional dependency to it, and remove the related note in 'pkg-message'. PR: 263391
11 lines
263 B
Text
11 lines
263 B
Text
--- Makefile.orig 2020-09-01 11:34:08 UTC
|
|
+++ Makefile
|
|
@@ -4,7 +4,7 @@
|
|
INSTALL ?= install
|
|
MSGFMT ?= msgfmt
|
|
|
|
-CFLAGS += -Wall -Wno-switch -Wno-pointer-to-int-cast -O1
|
|
+CFLAGS += -Wall -Wno-switch -Wno-pointer-to-int-cast
|
|
#LIBS +=
|
|
|
|
#SOCKET_LIBS := -l socket
|