# HG changeset patch # User Jaroslav Hajek # Date 1216288596 -7200 # Node ID bf4a04ebff21d9fdd0d6f500bafee6612103bb59 # Parent 6661387827d6e986e65a26c59d2045db51b8e263 [mq]: makefix diff -r 6661387827d6 -r bf4a04ebff21 src/ChangeLog --- a/src/ChangeLog Thu Jul 17 11:43:26 2008 +0200 +++ b/src/ChangeLog Thu Jul 17 11:56:36 2008 +0200 @@ -1,3 +1,15 @@ +2008-07-17 Jaroslav Hajek + + * Makefile.in (convhulln.oct, __delaunayn__.oct, __voronoi__.oct, + regexp.oct, urlwrite.oct, __glpk__.oct, fltk_backend.oct): + Use OCT_LINK_DEPS instead of DL_LDFLAGS for target-specific + dependencies. + +2008-07-17 David Bateman + + * DLD-FUNCTION/__magick_read__.cc (F__magick_read__): Allow build + without GraphicsMagick++ installed. + 2008-07-16 John W. Eaton * graphics.h.in (gh_manager::autolock): Delete copy constructor @@ -48,11 +60,6 @@ (GO_BODY): Likewise. (Fdrawnow): Support single "expose" argument. -2008-07-17 David Bateman - - * DLD-FUNCTION/__magick_read__.cc (F__magick_read__): Allow build - without GraphicsMagick++ installed. - 2008-07-15 John W. Eaton * DLD-FUNCTIONS/__convn__.cc (convn): Cast second arg to diff -r 6661387827d6 -r bf4a04ebff21 src/Makefile.in --- a/src/Makefile.in Thu Jul 17 11:43:26 2008 +0200 +++ b/src/Makefile.in Thu Jul 17 11:56:36 2008 +0200 @@ -627,15 +627,15 @@ __magick_read__.d: CPPFLAGS += $(MAGICK_INCFLAGS) __magick_read__.o pic/__magick_read__.o: CPPFLAGS += $(MAGICK_INCFLAGS) -__magick_read__.oct: DL_LDFLAGS += $(MAGICK_LIBS) +__magick_read__.oct: OCT_LINK_DEPS += $(MAGICK_LIBS) -convhulln.oct: DL_LDFLAGS += $(QHULL_LIBS) -__delaunayn__.oct: DL_LDFLAGS += $(QHULL_LIBS) -__voronoi__.oct: DL_LDFLAGS += $(QHULL_LIBS) -regexp.oct: DL_LDFLAGS += $(REGEX_LIBS) -urlwrite.oct: DL_LDFLAGS += $(CURL_LIBS) -__glpk__.oct: DL_LDFLAGS += $(GLPK_LIBS) -fltk_backend.oct: DL_LDFLAGS += $(GRAPHICS_LIBS) $(FT2_LIBS) +convhulln.oct: OCT_LINK_DEPS += $(QHULL_LIBS) +__delaunayn__.oct: OCT_LINK_DEPS += $(QHULL_LIBS) +__voronoi__.oct: OCT_LINK_DEPS += $(QHULL_LIBS) +regexp.oct: OCT_LINK_DEPS += $(REGEX_LIBS) +urlwrite.oct: OCT_LINK_DEPS += $(CURL_LIBS) +__glpk__.oct: OCT_LINK_DEPS += $(GLPK_LIBS) +fltk_backend.oct: OCT_LINK_DEPS += $(GRAPHICS_LIBS) $(FT2_LIBS) check: all .PHONY: check