annotate scripts/deprecated/module.mk @ 20913:69489c064cb7

New function hash to calculate MD{2/4/5} and SHA{1,244,256,384,512} hash values. * bootstrap.conf: include needed GNULIB functions. * libinterp/dldfcn/hash.cc: new hash value calculating function. * libinterp/dldfcn/module-files: add hash.cc to build system. * scripts/deprecated/md5sum.m: new function perserving interface as md5sum.cc. * scripts/deprecated/module.mk: add md5sum.m to build system. * libinterp/corefcn/md5sum.cc: removed and replaced by m-file. * libinterp/corefcn/module.mk: removed md5sum.cc from build system. * liboctave/util/oct-md5.h: removed unneeded interface header. * liboctave/util/oct-md5.cc: removed unneeded interface code. * liboctave/util/module.mk: removed oct-md5.h and oct-md5.cc from build system. * NEWS: add hash to new functions for 4.2. * doc/interpreter/system.txi: replace md5sum with hash in the manual. * scripts/miscellaneous/warning_ids.m: removed orphaned entry.
author Kai T. Ohlhus <k.ohlhus@gmail.com>
date Wed, 16 Dec 2015 21:57:32 +0100
parents afdb856e44f1
children 58263bea2fdf
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
20328
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20225
diff changeset
1 FCN_FILE_DIRS += scripts/deprecated
9794
0d4613a736e9 convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2
20328
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20225
diff changeset
3 scripts_deprecated_FCN_FILES = \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20225
diff changeset
4 scripts/deprecated/bicubic.m \
20486
4bb41929286b Deprecate bitmax.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 20484
diff changeset
5 scripts/deprecated/bitmax.m \
20328
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20225
diff changeset
6 scripts/deprecated/delaunay3.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20225
diff changeset
7 scripts/deprecated/dump_prefs.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20225
diff changeset
8 scripts/deprecated/find_dir_in_path.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20225
diff changeset
9 scripts/deprecated/finite.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20225
diff changeset
10 scripts/deprecated/fmod.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20225
diff changeset
11 scripts/deprecated/fnmatch.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20225
diff changeset
12 scripts/deprecated/gmap40.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20225
diff changeset
13 scripts/deprecated/isstr.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20225
diff changeset
14 scripts/deprecated/loadaudio.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20225
diff changeset
15 scripts/deprecated/luinc.m \
20502
afdb856e44f1 Deprecate mahalanobis function.
Rik <rik@octave.org>
parents: 20486
diff changeset
16 scripts/deprecated/mahalanobis.m \
20913
69489c064cb7 New function hash to calculate MD{2/4/5} and SHA{1,244,256,384,512} hash values.
Kai T. Ohlhus <k.ohlhus@gmail.com>
parents: 20502
diff changeset
17 scripts/deprecated/md5sum.m \
20328
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20225
diff changeset
18 scripts/deprecated/mouse_wheel_zoom.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20225
diff changeset
19 scripts/deprecated/nfields.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20225
diff changeset
20 scripts/deprecated/octave_tmp_file_name.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20225
diff changeset
21 scripts/deprecated/playaudio.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20225
diff changeset
22 scripts/deprecated/saveaudio.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20225
diff changeset
23 scripts/deprecated/setaudio.m \
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20225
diff changeset
24 scripts/deprecated/syl.m \
20484
c8ec0b72b7a6 Deprecate wavread and wavwrite.
Rik <rik@octave.org>
parents: 20343
diff changeset
25 scripts/deprecated/usage.m \
c8ec0b72b7a6 Deprecate wavread and wavwrite.
Rik <rik@octave.org>
parents: 20343
diff changeset
26 scripts/deprecated/wavread.m \
c8ec0b72b7a6 Deprecate wavread and wavwrite.
Rik <rik@octave.org>
parents: 20343
diff changeset
27 scripts/deprecated/wavwrite.m
9794
0d4613a736e9 convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff changeset
28
20343
916cc788d906 fix installation of script files
John W. Eaton <jwe@octave.org>
parents: 20328
diff changeset
29 scripts_deprecateddir = $(fcnfiledir)/deprecated
916cc788d906 fix installation of script files
John W. Eaton <jwe@octave.org>
parents: 20328
diff changeset
30
916cc788d906 fix installation of script files
John W. Eaton <jwe@octave.org>
parents: 20328
diff changeset
31 scripts_deprecated_DATA = $(scripts_deprecated_FCN_FILES)
916cc788d906 fix installation of script files
John W. Eaton <jwe@octave.org>
parents: 20328
diff changeset
32
20328
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20225
diff changeset
33 FCN_FILES += $(scripts_deprecated_FCN_FILES)
9794
0d4613a736e9 convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
diff changeset
34
20328
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20225
diff changeset
35 PKG_ADD_FILES += scripts/deprecated/PKG_ADD
9906
8d20fb66a0dc more automake fixes
John W. Eaton <jwe@octave.org>
parents: 9868
diff changeset
36
20328
fa9fa6ab76f0 eliminate recursive make invocation in scripts directory tree
John W. Eaton <jwe@octave.org>
parents: 20225
diff changeset
37 DIRSTAMP_FILES += scripts/deprecated/$(octave_dirstamp)