From c06eb3b73a07f18e24634bd96d3ef791bc43a3dc Mon Sep 17 00:00:00 2001 From: David Turner Date: Fri, 12 May 2000 15:10:21 +0000 Subject: [PATCH] fixed stupid math lib bug in the Makefile --- demos/Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/demos/Makefile b/demos/Makefile index d6ca82718..c1d47b1ac 100644 --- a/demos/Makefile +++ b/demos/Makefile @@ -82,6 +82,14 @@ else # be re-defined for platform-specific stuff.. # LINK = $(CC) $T$@ $< $(FTLIB) $(EFENCE) $(LDFLAGS) + + # the program "src/ftstring.c" used the math library which isn't linked + # with the program by default on Unix, we thus add it whenever appropriate + # + ifeq ($(PLATFORM),unix) + LINK += -lm + endif + COMMON_LINK = $(LINK) $(COMMON_OBJ) GRAPH_LINK = $(COMMON_LINK) $(GRAPH_LIB) GRAPH_LINK2 = $(GRAPH_LINK) $(EXTRA_GRAPH_OBJS)