summaryrefslogtreecommitdiffstats
path: root/hl/tools/gif2h5/Makefile.am
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2006-02-09 21:06:14 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2006-02-09 21:06:14 (GMT)
commitf6dd21fb11c6a5fa8503b0614715cdfdf738d380 (patch)
tree4ba95688ee5af3398b45b5d851040451ea01910f /hl/tools/gif2h5/Makefile.am
parent45ab968ad8c015b8fca0f6a56d1bee8a06ee067e (diff)
downloadhdf5-f6dd21fb11c6a5fa8503b0614715cdfdf738d380.zip
hdf5-f6dd21fb11c6a5fa8503b0614715cdfdf738d380.tar.gz
hdf5-f6dd21fb11c6a5fa8503b0614715cdfdf738d380.tar.bz2
[svn-r11931] Purpose:
bug fix Description: the linking order in Makefile.am of the gif2h5 tool was causing linking errors on some configurations (pgcc, --disable-shared) Solution: changed the order of the linking (hl before hdf5) Platforms tested: linux, several configurations solaris Misc. update:
Diffstat (limited to 'hl/tools/gif2h5/Makefile.am')
-rw-r--r--hl/tools/gif2h5/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/hl/tools/gif2h5/Makefile.am b/hl/tools/gif2h5/Makefile.am
index 29db664..5318869 100644
--- a/hl/tools/gif2h5/Makefile.am
+++ b/hl/tools/gif2h5/Makefile.am
@@ -29,6 +29,6 @@ gif2h5_SOURCES=gif2hdf.c gif2mem.c decompress.c gifread.c writehdf.c
h52gif_SOURCES=hdf2gif.c hdfgifwr.c readhdf.c
# Programs all depend on the hdf5 library and the tools library
-LDADD=$(LIBH5TOOLS) $(LIBHDF5) $(LIBH5_HL)
+LDADD=$(LIBH5TOOLS) $(LIBH5_HL) $(LIBHDF5)
include $(top_srcdir)/config/conclude.am