6
6
 
# This file is part of HDF5. The full HDF5 copyright notice, including     
7
7
 
# terms governing use, modification, and redistribution, is contained in   
8
8
 
# the files COPYING and Copyright.html.  COPYING can be found at the root  
9
9
 
# of the source code distribution tree; Copyright.html can be found at the 
10
10
 
# root level of an installed copy of the electronic document set and is    
11
11
 
# linked from the top-level documents page.  It can also be found at       
12
12
 
# http://hdfgroup.org/HDF5/doc/Copyright.html.  If you do not have access  
13
13
 
# to either file, you may request a copy from help@hdfgroup.org.           
14
14
 
#
15
15
 
16
 
-
# A script to reconfigure autotools for HDF5, and to recreate other
17
 
-
# generated files specifc to HDF5.
 
16
+
# A script to reconfigure autotools for the REST VOL.
18
17
 
#
19
18
 
# IMPORTANT OS X NOTE
20
19
 
#
21
20
 
# If you are using OS X, you will probably not have the autotools
22
21
 
# installed, even if you have the Xcode command-line tools.
23
22
 
#
24
23
 
# The easiest way to fix this is to install everything via Homebrew:
25
24
 
#
26
25
 
#   http://brew.sh/
27
26
 
#
Show more
150
149
 
    ;;
151
150
 
esac
152
151
 
153
152
 
# Run autotools in order
154
153
 
#
155
154
 
# When available, we use the --force option to ensure all files are
156
155
 
# updated. This prevents the autotools from re-running to fix dependencies
157
156
 
# during the 'make' step, which can be a problem if environment variables
158
157
 
# were set on the command line during autogen invocation.
159
158
 
160
 
-
# Some versions of libtoolize will suggest that we add ACLOCAL_AMFLAGS
161
 
-
# = '-I m4'. This is already done in commence.am, which is included
162
 
-
# in Makefile.am. You can ignore this suggestion.
163
 
-
164
159
 
# LIBTOOLIZE
165
160
 
libtoolize_cmd="${HDF5_LIBTOOLIZE} --copy --force"
166
161
 
echo ${libtoolize_cmd}
167
162
 
if [ "$verbose" = true ] ; then
168
163
 
    ${HDF5_LIBTOOLIZE} --version
169
164
 
fi
170
165
 
${libtoolize_cmd} || exit 1
171
166
 
echo
172
167
 
173
168
 
# ACLOCAL
Show more
203
198
 
# AUTOCONF
204
199
 
autoconf_cmd="${HDF5_AUTOCONF} --force"
205
200
 
echo ${autoconf_cmd}
206
201
 
if [ "$verbose" = true ] ; then
207
202
 
    ${HDF5_AUTOCONF} --version
208
203
 
fi
209
204
 
${autoconf_cmd} || exit 1
210
205
 
echo
211
206
 
212
207
 
echo
213
 
-
exit 0
214
 
-
 
208
+
exit 0