From b6cffdf0d2338df880d79cdd61ac32606217f8d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=AB=8F=E8=A8=AA=E5=AD=90?= Date: Sun, 18 Jan 2026 16:16:52 +0900 Subject: [PATCH] =?UTF-8?q?=E3=81=94=E3=82=81=E3=82=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.def.h | 2 +- config.mk | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/config.def.h b/config.def.h index 4ae6a78..e1159b9 100644 --- a/config.def.h +++ b/config.def.h @@ -6,7 +6,7 @@ * font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html */ // static char *font = "Liberation Mono:pixelsize=16:antialias=true:autohint=true"; -static char *font = "Noto Sans CJK:pixelsize=16:antialias=true:autohint=true"; +static char *font = "mono:pixelsize=16:antialias=true:autohint=true"; static char *font2[] = { "Noto Sans CJK:pixelsize=16", // "DejaVuSansM Nerd Font:pixelsize=16", diff --git a/config.mk b/config.mk index 65a9d67..9831d59 100644 --- a/config.mk +++ b/config.mk @@ -25,11 +25,12 @@ PKG_CONFIG = pkg-config .if "$(UNAME)" == "OpenBSD" INCS = -I$(X11INC) -I$(FREETYPE) \ -I/usr/include/freetype2 \ + -L/usr/local/include \ `$(PKG_CONFIG) --cflags fontconfig` \ `$(PKG_CONFIG) --cflags freetype2` CPPFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=600 -D_BSD_SOURCE -LIBS = -L$(X11LIB) -static -lm -lX11 -lutil -lXft \ - -lfontconfig -lfreetype -lc -lxcb -lpthread -lz -lexpat \ +LIBS = -L$(X11LIB) -L/usr/local/lib -static -lm -lX11 -lutil -lXft \ + -lfontconfig -lfreetype -lc -lxcb -lpthread -lpng16 -lz -lexpat \ -lXrender -lXau -lXdmcp MANPREFIX = ${PREFIX}/man .elif "$(UNAME)" == "FreeBSD"