diff options
| author | Douglas B. Rumbaugh <doug@douglasrumbaugh.com> | 2022-12-31 16:35:12 -0500 |
|---|---|---|
| committer | Douglas B. Rumbaugh <doug@douglasrumbaugh.com> | 2022-12-31 16:35:12 -0500 |
| commit | 8029cd7933b4904c4bb0f13012515e9c9c2ab435 (patch) | |
| tree | fb832cae42ef2b1e347f110bef176e413011216c /config.mk | |
| parent | 7c6ef5232de8d31a10e593882c29189c05296541 (diff) | |
| download | st-8029cd7933b4904c4bb0f13012515e9c9c2ab435.tar.gz | |
Added ligatures patch
Diffstat (limited to 'config.mk')
| -rw-r--r-- | config.mk | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -15,10 +15,12 @@ PKG_CONFIG = pkg-config # includes and libs INCS = -I$(X11INC) \ `$(PKG_CONFIG) --cflags fontconfig` \ - `$(PKG_CONFIG) --cflags freetype2` + `$(PKG_CONFIG) --cflags freetype2` \ + `$(PKG_CONFIG) --cflags harfbuzz` LIBS = -L$(X11LIB) -lm -lrt -lX11 -lutil -lXft \ `$(PKG_CONFIG) --libs fontconfig` \ - `$(PKG_CONFIG) --libs freetype2` + `$(PKG_CONFIG) --libs freetype2` \ + `$(PKG_CONFIG) --libs harfbuzz` # flags STCPPFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=600 @@ -29,7 +31,8 @@ STLDFLAGS = $(LIBS) $(LDFLAGS) CPPFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=600 -D_BSD_SOURCE LIBS = -L$(X11LIB) -lm -lX11 -lutil -lXft \ `$(PKG_CONFIG) --libs fontconfig` \ - `$(PKG_CONFIG) --libs freetype2` + `$(PKG_CONFIG) --libs freetype2` \ + `$(PKG_CONFIG) --libs harfbuzz` MANPREFIX = ${PREFIX}/man # compiler and linker |