links

lynx-like text mode web browser
git clone anongit@rnpnr.xyz:links.git
Log | Files | Refs | Feed | README | LICENSE

Commit: e44efb77bb37eb39446c0df46ac73ee23bed9f33
Parent: cafdc5a1fc71e51ad756df9fd55bcc9813d4ac11
Author: opask
Date:   Sun, 28 Oct 2018 11:25:59 -0600

config.mk: update LIBS and INCS to be more OpenBSD compatible

Diffstat:
Mconfig.mk | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/config.mk b/config.mk @@ -6,8 +6,9 @@ MANPREFIX = $(PREFIX)/share/man X11INC = /usr/X11R6/include X11LIB = /usr/X11R6/lib -INCS = -I. -I/usr/include -I$(X11INC) -LIBS = -L$(X11LIB) -L/usr/lib -lX11 -levent -lpng -ljpeg -lcrypto -lssl -lz +INCS = -I. -I/usr/include -I/usr/local/include -I$(X11INC) +LIBS = -L$(X11LIB) -L/usr/lib -L/usr/local/lib \ + -lX11 -lcrypto -levent -ljpeg -lm -lpng -lssl -lz CPPFLAGS = -DVERSION=\"$(VERSION)\" -D_BSD_SOURCE CFLAGS = -O2 -std=c99 -Wall -pedantic $(CPPFLAGS) \