summaryrefslogtreecommitdiffstats
path: root/c++
diff options
context:
space:
mode:
authorJames Laird <jlaird@hdfgroup.org>2005-02-01 15:27:37 (GMT)
committerJames Laird <jlaird@hdfgroup.org>2005-02-01 15:27:37 (GMT)
commit30bfb1e0eaa2783479b2adcf81e0c147963140f6 (patch)
tree2f21404e71d636322504afd40a0fd13ea3736af5 /c++
parentf1278ad78fa0a36e4722760de1a6ec87f1ae6a17 (diff)
downloadhdf5-30bfb1e0eaa2783479b2adcf81e0c147963140f6.zip
hdf5-30bfb1e0eaa2783479b2adcf81e0c147963140f6.tar.gz
hdf5-30bfb1e0eaa2783479b2adcf81e0c147963140f6.tar.bz2
[svn-r9907] Purpose:
Bug fix Description: Different compilers use different flags to include Fortran module files Solution: Changed boilerplate to use configure variable rather than hardcoded -M flag. Platforms tested: sleipnir, sol, copper
Diffstat (limited to 'c++')
-rw-r--r--c++/Makefile.in1
-rw-r--r--c++/examples/Makefile.in1
-rw-r--r--c++/src/Makefile.in1
-rw-r--r--c++/test/Makefile.in1
4 files changed, 4 insertions, 0 deletions
diff --git a/c++/Makefile.in b/c++/Makefile.in
index d349e85..c7ad184 100644
--- a/c++/Makefile.in
+++ b/c++/Makefile.in
@@ -194,6 +194,7 @@ H5FC_PP = $(bindir)/h5pfc
# Make sure that these variables are exported to the Makefiles
F9XMODEXT = @F9XMODEXT@
+F9XMODFLAG = @F9XMODFLAG@
SUBDIRS = src test
DIST_SUBDIRS = $(SUBDIRS) examples
diff --git a/c++/examples/Makefile.in b/c++/examples/Makefile.in
index 13f94c9..096c733 100644
--- a/c++/examples/Makefile.in
+++ b/c++/examples/Makefile.in
@@ -194,6 +194,7 @@ H5FC_PP = $(bindir)/h5pfc
# Make sure that these variables are exported to the Makefiles
F9XMODEXT = @F9XMODEXT@
+F9XMODFLAG = @F9XMODFLAG@
# Use h5c++ to build examples, instead of reguar C++ compiler
H5CPP = $(bindir)/h5c++
diff --git a/c++/src/Makefile.in b/c++/src/Makefile.in
index af17a34..1e4afd7 100644
--- a/c++/src/Makefile.in
+++ b/c++/src/Makefile.in
@@ -194,6 +194,7 @@ H5FC_PP = $(bindir)/h5pfc
# Make sure that these variables are exported to the Makefiles
F9XMODEXT = @F9XMODEXT@
+F9XMODFLAG = @F9XMODFLAG@
# Include src directory
AM_CPPFLAGS = -I$(top_srcdir)/src
diff --git a/c++/test/Makefile.in b/c++/test/Makefile.in
index 20879e2..bbfa64c 100644
--- a/c++/test/Makefile.in
+++ b/c++/test/Makefile.in
@@ -194,6 +194,7 @@ H5FC_PP = $(bindir)/h5pfc
# Make sure that these variables are exported to the Makefiles
F9XMODEXT = @F9XMODEXT@
+F9XMODFLAG = @F9XMODFLAG@
# Include src, test, and c++/src directories
AM_CPPFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/test -I$(top_srcdir)/c++/src