1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Subject: Fix compilation by adding pthread dependency
Author: Sebastian Reichel <sre@debian.org>
Last-Update: 2015-08-04
Index: aegisub/tools/Makefile
===================================================================
--- aegisub.orig/tools/Makefile
+++ aegisub/tools/Makefile
@@ -7,7 +7,7 @@ PROGRAM += $(d)osx-bundle-restart-helper
endif
repack-thes-dict_OBJ := $(d)repack-thes-dict.o $(TOP)lib/libaegisub.a
-repack-thes-dict_LIBS := $(LIBS_BOOST) $(LIBS_ICU)
+repack-thes-dict_LIBS := $(LIBS_BOOST) $(LIBS_ICU) -pthread
repack-thes-dict_CPPFLAGS := -I$(TOP) -I$(TOP)libaegisub/include $(CFLAGS_ICU)
PROGRAM += $(d)repack-thes-dict
|