From 4ed559d66693b675f0ee296e73f22fd95336105d Mon Sep 17 00:00:00 2001 From: "Yujie Shu (Intern)" Date: Wed, 16 May 2012 14:58:44 -0700 Subject: [PATCH] Making sure that the OpenEXR libraries and linker flags are included in the build process. --- OpenEXR_Viewers/exrdisplay/Makefile.am | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/OpenEXR_Viewers/exrdisplay/Makefile.am b/OpenEXR_Viewers/exrdisplay/Makefile.am index 07f0055810..2509b42505 100644 --- a/OpenEXR_Viewers/exrdisplay/Makefile.am +++ b/OpenEXR_Viewers/exrdisplay/Makefile.am @@ -7,7 +7,9 @@ bin_PROGRAMS = exrdisplay INCLUDES = @GL_CXXFLAGS@ @CG_CXXFLAGS@ @FLTK_CXXFLAGS@ -I$(top_builddir) \ @OPENEXR_CTL_CXXFLAGS@ -LDADD = @CG_LDFLAGS@ @FLTK_LDFLAGS@ \ +LDADD = @OPENEXR_LDFLAGS@ \ + @OPENEXR_LIBS@ \ + @CG_LDFLAGS@ @FLTK_LDFLAGS@ \ @OPENEXR_CTL_LDFLAGS@ \ @OPENEXR_CTL_LIBS@