Mercurial > hg > octave-nkf
annotate ChangeLog @ 9799:cfd0aa788ae1
remove reference blas and lapack sources
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Tue, 10 Nov 2009 23:07:25 -0500 |
parents | 0d4613a736e9 |
children | 13868ea67c71 |
rev | line source |
---|---|
9799
cfd0aa788ae1
remove reference blas and lapack sources
John W. Eaton <jwe@octave.org>
parents:
9794
diff
changeset
|
1 2009-11-10 John W. Eaton <jwe@octave.org> |
cfd0aa788ae1
remove reference blas and lapack sources
John W. Eaton <jwe@octave.org>
parents:
9794
diff
changeset
|
2 |
cfd0aa788ae1
remove reference blas and lapack sources
John W. Eaton <jwe@octave.org>
parents:
9794
diff
changeset
|
3 * NEWS: Update. |
cfd0aa788ae1
remove reference blas and lapack sources
John W. Eaton <jwe@octave.org>
parents:
9794
diff
changeset
|
4 |
cfd0aa788ae1
remove reference blas and lapack sources
John W. Eaton <jwe@octave.org>
parents:
9794
diff
changeset
|
5 * configure.ac: Exit with error if BLAS or LAPACK libraries are |
cfd0aa788ae1
remove reference blas and lapack sources
John W. Eaton <jwe@octave.org>
parents:
9794
diff
changeset
|
6 not found or if the BLAS library is found to be incompatible with |
cfd0aa788ae1
remove reference blas and lapack sources
John W. Eaton <jwe@octave.org>
parents:
9794
diff
changeset
|
7 the Fortran compiler. Eliminate warn_blas_f77_incompatible |
cfd0aa788ae1
remove reference blas and lapack sources
John W. Eaton <jwe@octave.org>
parents:
9794
diff
changeset
|
8 variable. |
cfd0aa788ae1
remove reference blas and lapack sources
John W. Eaton <jwe@octave.org>
parents:
9794
diff
changeset
|
9 |
9794
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
10 2009-11-10 John W. Eaton <jwe@octave.org> |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
11 |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
12 * configure.ac: Set octincludedir to |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
13 $(includedir)/octave-$(version)/octave, not |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
14 $(includedir)/octave-$(version). |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
15 * mkoctfile.in: Set DEFAULT_INCFLAGS to -I$octincludedir/.. and |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
16 -I$octincludedir instead of -I$octincludedir and |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
17 -I$octincludedir/octave. |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
18 |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
19 * configure.ac: Pass args to AC_INIT. Invoke AM_INIT_AUTOMAKE and |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
20 AC_PROG_LIBTOOL. Don't call AC_PROG_RANLIB. Set version info here. |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
21 Call AC_CONFIG_MACRO_DIR. Give same warning for gcc 1.x and 2.x. |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
22 Use AM_CONDITIONALS for FFTW, BLAS, and LAPACK. Don't set |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
23 variables with calls to ACX_BLAS_WITH_F77_FUNC or ACX_LAPACK. |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
24 Don't substitute BLAS_DIR or LAPACK_DIR. Use LT_INIT. Eliminate |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
25 --enable-shared and --enable-static options (now provided by |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
26 LT_INIT). Set SHARED_LIBS and STATIC_LIBS variables based on |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
27 LT_INIT variables. Handle dlopen libraries with info from |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
28 LT_INIT. Substitute NO_UNDEFINED_FLAG (only set on Windows |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
29 sytems). Include $LAPACK_LIBS in $LIBS when checking for qrupdate |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
30 and cholmod. Handle --enable-dl consistently with other --enable |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
31 options. Don't copy $srcdir/Makefile in AH_BOTTOM commands. |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
32 Substitute LEX_OUTPUT_ROOT. Use AM_CONDITONAL for |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
33 ENABLE_DYNAMIC_LINKING. Reindent configure summary. |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
34 (AC_CONFIG_FILES): Don't list Makefiles in libcruft |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
35 subdirectories. Generate Makefile and src/version.h. Don't |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
36 generate Makeconf, octMakefile, m4/Makefile, emacs/Makefile, |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
37 examples/@polynomial/Makefile, or examples/@FIRfilter/Makefile. |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
38 |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
39 * run-octave.in Call libtool to execute src/octave. |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
40 (ldpreloadsep, liboctinterp, liboctave, libcruft): Delete variables. |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
41 (INFOFILE): Find it in $top_srcdir, not $builddir. |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
42 |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
43 * acinclude.m4: Rename from aclocal.m4. |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
44 (OCTAVE_PROG_FLEX): Don't include -t in LFLAGS. |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
45 |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
46 * autogen.sh: Exit immediately on error. Use libtoolize, aclocal, |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
47 and automake. Only run autoconf and autoheader in top-level and |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
48 scripts directories. |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
49 Run liboctave/config-ops.sh, doc/interpreter/config-images.sh, and |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
50 src/DLD-FUNCTIONS/config-module.sh, to generate source lists for |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
51 subdirectories. |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
52 |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
53 * AUTHORS, Makefile.am, common.mk, m4/module.mk, emacs/module.mk, |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
54 examples/@FIRfilter/module.mk, examples/@polynomial/module.mk, |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
55 examples/Makefile.am: New files. |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
56 * Makeconf.in, Makefile, octMakefile.in, m4/Makefile.in, |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
57 emacs/Makefile.in, install-sh, examples/Makefile.in, |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
58 examples/@FIRfilter/Makefile.in, examples/@polynomial/Makefile.in: |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
59 Delete. |
0d4613a736e9
convert build system to use automake and libtool
John W. Eaton <jwe@octave.org>
parents:
9787
diff
changeset
|
60 |
9787
cc5bb7b5679f
use AMD_CPPFLAGS when checking for UMFPACK
David Grundberg <davidg@cs.umu.se>
parents:
9762
diff
changeset
|
61 2009-11-09 David Grundberg <davidg@cs.umu.se> |
cc5bb7b5679f
use AMD_CPPFLAGS when checking for UMFPACK
David Grundberg <davidg@cs.umu.se>
parents:
9762
diff
changeset
|
62 |
cc5bb7b5679f
use AMD_CPPFLAGS when checking for UMFPACK
David Grundberg <davidg@cs.umu.se>
parents:
9762
diff
changeset
|
63 * configure.ac: Use AMD_CPPFLAGS while checking for UMFPACK. |
cc5bb7b5679f
use AMD_CPPFLAGS when checking for UMFPACK
David Grundberg <davidg@cs.umu.se>
parents:
9762
diff
changeset
|
64 |
9762
8e277dcf1223
prefer dlopen on OS X systems
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
9745
diff
changeset
|
65 2009-10-29 Thomas Treichl <Thomas.Treichl@gmx.net> |
8e277dcf1223
prefer dlopen on OS X systems
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
9745
diff
changeset
|
66 |
8e277dcf1223
prefer dlopen on OS X systems
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
9745
diff
changeset
|
67 * configure.in: Add support for dlopen on Mac systems. |
8e277dcf1223
prefer dlopen on OS X systems
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
9745
diff
changeset
|
68 |
9745 | 69 2009-10-20 Jaroslav Hajek <highegg@gmail.com> |
70 | |
71 * NEWS: Update. | |
72 | |
9722 | 73 2009-10-13 Jaroslav Hajek <highegg@gmail.com> |
74 | |
75 * NEWS: Update. | |
76 | |
9708 | 77 2009-10-08 Jaroslav Hajek <highegg@gmail.com> |
78 | |
79 * configure.ac: Define HAVE_QRUPDATE_LUU if qrupdate supports LU updates. | |
80 | |
9707
6f5c4c82c5fc
avoid ugly F77 names in configure
Jaroslav Hajek <highegg@gmail.com>
parents:
9664
diff
changeset
|
81 2009-10-08 Jaroslav Hajek <highegg@gmail.com> |
6f5c4c82c5fc
avoid ugly F77 names in configure
Jaroslav Hajek <highegg@gmail.com>
parents:
9664
diff
changeset
|
82 |
6f5c4c82c5fc
avoid ugly F77 names in configure
Jaroslav Hajek <highegg@gmail.com>
parents:
9664
diff
changeset
|
83 * configure.ac: Use the LANG argument to OCTAVE_CHECK_LIBRARY to avoid |
6f5c4c82c5fc
avoid ugly F77 names in configure
Jaroslav Hajek <highegg@gmail.com>
parents:
9664
diff
changeset
|
84 ugly names. |
6f5c4c82c5fc
avoid ugly F77 names in configure
Jaroslav Hajek <highegg@gmail.com>
parents:
9664
diff
changeset
|
85 |
9664 | 86 2009-09-23 Jaroslav Hajek <highegg@gmail.com> |
87 | |
88 * NEWS: Update. | |
89 | |
9654
a307a6f77fb3
aclocal.m4: consistently quote first arg to AC_DEFUN
John W. Eaton <jwe@octave.org>
parents:
9648
diff
changeset
|
90 2009-09-18 John W. Eaton <jwe@octave.org> |
a307a6f77fb3
aclocal.m4: consistently quote first arg to AC_DEFUN
John W. Eaton <jwe@octave.org>
parents:
9648
diff
changeset
|
91 |
a307a6f77fb3
aclocal.m4: consistently quote first arg to AC_DEFUN
John W. Eaton <jwe@octave.org>
parents:
9648
diff
changeset
|
92 * aclocal.m4: Consistently quote first arg to AC_DEFUN. |
a307a6f77fb3
aclocal.m4: consistently quote first arg to AC_DEFUN
John W. Eaton <jwe@octave.org>
parents:
9648
diff
changeset
|
93 |
9648
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
94 2009-09-17 John W. Eaton <jwe@octave.org> |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
95 |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
96 * configure.ac: Also AC_DEFINE OCTAAVE_IDX_TYPE. |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
97 (AH_BOTTOM): Include contents of libcruft/misc/oct-dlldefs.h and |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
98 liboctave/oct-types.h here. Use C-style comments. |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
99 (AC_CONFIG_FILES): Remove liboctave/oct-types.h from the list. |
11844593875a
eliminate oct-dlldefs.h and oct-types.h
John W. Eaton <jwe@octave.org>
parents:
9645
diff
changeset
|
100 |
9645 | 101 2009-09-15 John W. Eaton <jwe@octave.org> |
102 | |
103 * configure.ac: Rename from configure.in. | |
104 (AC_CONFIG_FILES): Add m4/Makefile to the list. | |
105 * acx_blas.m4, acx_lapack.m4, acx_blas_f77_func.m4, | |
106 acx_pthread.m4: Move to m4 subdirectory. | |
107 * m4/Makefile.in: New file. | |
108 * octMakefile.in (M4_FILES): Adjust for new m4 subdirectory. | |
109 Rename all instances of configure.in to configure.ac. | |
110 (CONF_DISTSUBDIRS, DISTSUBDIRS): Add m4 to the lists. | |
111 | |
112 * configure.in: Substitute ac_config_headers. | |
113 * octMakefile.in (CONFIG_FILES): Include @ac_config_headers@ in | |
114 the list. From Thorsten Meyer <thorsten.meyier@gmx.de>. | |
115 | |
9617
7c628fb04fd0
Makeconf.in: don't sort sparse and fftw cpp/ld flags
John W. Eaton <jwe@octave.org>
parents:
9615
diff
changeset
|
116 2009-09-04 John W. Eaton <jwe@octave.org> |
7c628fb04fd0
Makeconf.in: don't sort sparse and fftw cpp/ld flags
John W. Eaton <jwe@octave.org>
parents:
9615
diff
changeset
|
117 |
7c628fb04fd0
Makeconf.in: don't sort sparse and fftw cpp/ld flags
John W. Eaton <jwe@octave.org>
parents:
9615
diff
changeset
|
118 * Makeconf.in (SPARSE_CPPFLAGS, SPARSE_LDFLAGS, FFTW_CPPFLAGS, |
7c628fb04fd0
Makeconf.in: don't sort sparse and fftw cpp/ld flags
John W. Eaton <jwe@octave.org>
parents:
9615
diff
changeset
|
119 FFTW_LDFLAGS): Don't sort lists. |
7c628fb04fd0
Makeconf.in: don't sort sparse and fftw cpp/ld flags
John W. Eaton <jwe@octave.org>
parents:
9615
diff
changeset
|
120 |
9615
ee3a5e9a381c
Changed SPARSE_LIBS order to respect dependency
Marco Atzeri <marco_atzeri@yahoo.it>
parents:
9614
diff
changeset
|
121 2009-09-02 Marco Atzeri <marco_atzeri@yahoo.it> |
ee3a5e9a381c
Changed SPARSE_LIBS order to respect dependency
Marco Atzeri <marco_atzeri@yahoo.it>
parents:
9614
diff
changeset
|
122 |
ee3a5e9a381c
Changed SPARSE_LIBS order to respect dependency
Marco Atzeri <marco_atzeri@yahoo.it>
parents:
9614
diff
changeset
|
123 * Makeconf.in: Order SPARSE_LIBS so linking succeeds on Cygwin. |
ee3a5e9a381c
Changed SPARSE_LIBS order to respect dependency
Marco Atzeri <marco_atzeri@yahoo.it>
parents:
9614
diff
changeset
|
124 |
9614 | 125 2009-09-04 Marco Atzeri <marco_atzeri@yahoo.it> |
126 | |
127 * README.Cygwin: Update version info. | |
128 | |
9613
16907d1153d1
attempt to fix LD_PRELOAD for Cygwin
John W. Eaton <jwe@octave.org>
parents:
9610
diff
changeset
|
129 2009-09-04 John W. Eaton <jwe@octave.org> |
16907d1153d1
attempt to fix LD_PRELOAD for Cygwin
John W. Eaton <jwe@octave.org>
parents:
9610
diff
changeset
|
130 |
16907d1153d1
attempt to fix LD_PRELOAD for Cygwin
John W. Eaton <jwe@octave.org>
parents:
9610
diff
changeset
|
131 * configure.in (ldpreloadsep): New variable. Set to ':' for Cygwin. |
16907d1153d1
attempt to fix LD_PRELOAD for Cygwin
John W. Eaton <jwe@octave.org>
parents:
9610
diff
changeset
|
132 * Makeconf.in (do-subst-script-vals): Substitute it. |
16907d1153d1
attempt to fix LD_PRELOAD for Cygwin
John W. Eaton <jwe@octave.org>
parents:
9610
diff
changeset
|
133 * run-octave.in: Use it to seprate elements in the LD_PRELOAD variable. |
16907d1153d1
attempt to fix LD_PRELOAD for Cygwin
John W. Eaton <jwe@octave.org>
parents:
9610
diff
changeset
|
134 |
9610
bb36a5730ecc
configure.in (AH_BOTTOM): If HAVE_Z is defined, define HAVE_ZLIB
John W. Eaton <jwe@octave.org>
parents:
9609
diff
changeset
|
135 2009-09-03 John W. Eaton <jwe@octave.org> |
bb36a5730ecc
configure.in (AH_BOTTOM): If HAVE_Z is defined, define HAVE_ZLIB
John W. Eaton <jwe@octave.org>
parents:
9609
diff
changeset
|
136 |
bb36a5730ecc
configure.in (AH_BOTTOM): If HAVE_Z is defined, define HAVE_ZLIB
John W. Eaton <jwe@octave.org>
parents:
9609
diff
changeset
|
137 * configure.in (AH_BOTTOM): If HAVE_Z is defined, define HAVE_ZLIB. |
bb36a5730ecc
configure.in (AH_BOTTOM): If HAVE_Z is defined, define HAVE_ZLIB
John W. Eaton <jwe@octave.org>
parents:
9609
diff
changeset
|
138 |
9609 | 139 2009-09-03 Jaroslav Hajek <highegg@gmail.com> |
140 | |
141 * NEWS: Update. | |
142 | |
9603
8bea4e89326f
implement FLOAT_STORE to allow safer complex comparisons on x87
Jaroslav Hajek <highegg@gmail.com>
parents:
9600
diff
changeset
|
143 2009-09-02 Jaroslav Hajek <highegg@gmail.com> |
8bea4e89326f
implement FLOAT_STORE to allow safer complex comparisons on x87
Jaroslav Hajek <highegg@gmail.com>
parents:
9600
diff
changeset
|
144 |
9604
4dd8fc7c106c
ChangeLog fix for last change: FLOAT_STORE->FLOAT_TRUNCATE
Jaroslav Hajek <highegg@gmail.com>
parents:
9603
diff
changeset
|
145 * configure.in (FLOAT_TRUNCATE): New config macro. |
9603
8bea4e89326f
implement FLOAT_STORE to allow safer complex comparisons on x87
Jaroslav Hajek <highegg@gmail.com>
parents:
9600
diff
changeset
|
146 |
9600
de6f547574be
BLAS integer size check in acx_blas_f77_func
Jaroslav Hajek <highegg@gmail.com>
parents:
9596
diff
changeset
|
147 2009-09-02 Jaroslav Hajek <highegg@gmail.com> |
de6f547574be
BLAS integer size check in acx_blas_f77_func
Jaroslav Hajek <highegg@gmail.com>
parents:
9596
diff
changeset
|
148 |
de6f547574be
BLAS integer size check in acx_blas_f77_func
Jaroslav Hajek <highegg@gmail.com>
parents:
9596
diff
changeset
|
149 * acx_blas_f77_func.m4 (ACX_BLAS_F77_FUNC): Check for correct INTEGER |
de6f547574be
BLAS integer size check in acx_blas_f77_func
Jaroslav Hajek <highegg@gmail.com>
parents:
9596
diff
changeset
|
150 size. |
de6f547574be
BLAS integer size check in acx_blas_f77_func
Jaroslav Hajek <highegg@gmail.com>
parents:
9596
diff
changeset
|
151 |
9596
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9595
diff
changeset
|
152 2009-09-01 John W. Eaton <jwe@octave.org> |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9595
diff
changeset
|
153 |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9595
diff
changeset
|
154 * aclocal.m4 (OCTAVE_REQUIRE_64_BIT_FORTRAN_INTEGERS): New macro. |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9595
diff
changeset
|
155 * configure.in: Use it, if building with --enable-64. |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9595
diff
changeset
|
156 Move checks for Fortran compiler ahead of checks for libraries. |
f26229391ea1
configure.in, aclocal.m4: check fortran integer size
John W. Eaton <jwe@octave.org>
parents:
9595
diff
changeset
|
157 |
9595 | 158 2009-09-01 Jaroslav Hajek <highegg@gmail.com> |
159 | |
160 * NEWS: Update. | |
161 | |
9589 | 162 2009-08-30 Jaroslav Hajek <highegg@gmail.com> |
163 | |
164 * NEWS: Update. | |
165 | |
9583
8dc1531e2149
correctly save and restore LIBS and CPPFLAGS when checking for GraphicsMagick++
John W. Eaton <jwe@octave.org>
parents:
9577
diff
changeset
|
166 2009-08-27 John W. Eaton <jwe@octave.org> |
8dc1531e2149
correctly save and restore LIBS and CPPFLAGS when checking for GraphicsMagick++
John W. Eaton <jwe@octave.org>
parents:
9577
diff
changeset
|
167 |
8dc1531e2149
correctly save and restore LIBS and CPPFLAGS when checking for GraphicsMagick++
John W. Eaton <jwe@octave.org>
parents:
9577
diff
changeset
|
168 * configure.in: Properly save and restore CPPFLAGS and LIBS when |
8dc1531e2149
correctly save and restore LIBS and CPPFLAGS when checking for GraphicsMagick++
John W. Eaton <jwe@octave.org>
parents:
9577
diff
changeset
|
169 checking for GraphicsMagick++. Don't temporarily change LDFLAGS. |
8dc1531e2149
correctly save and restore LIBS and CPPFLAGS when checking for GraphicsMagick++
John W. Eaton <jwe@octave.org>
parents:
9577
diff
changeset
|
170 |
9577
b03062e16c6f
copyirght & FIXME in aclocal.m4
Jaroslav Hajek <highegg@gmail.com>
parents:
9575
diff
changeset
|
171 2009-08-27 Jaroslav Hajek <highegg@gmail.com> |
b03062e16c6f
copyirght & FIXME in aclocal.m4
Jaroslav Hajek <highegg@gmail.com>
parents:
9575
diff
changeset
|
172 |
b03062e16c6f
copyirght & FIXME in aclocal.m4
Jaroslav Hajek <highegg@gmail.com>
parents:
9575
diff
changeset
|
173 * aclocal.m4 (m4_ifblank, m4_ifnblank): State FSF copyright and markup |
b03062e16c6f
copyirght & FIXME in aclocal.m4
Jaroslav Hajek <highegg@gmail.com>
parents:
9575
diff
changeset
|
174 as FIXME. |
b03062e16c6f
copyirght & FIXME in aclocal.m4
Jaroslav Hajek <highegg@gmail.com>
parents:
9575
diff
changeset
|
175 |
9573
be3ee885739b
configure.in: restore LIBS after checking for ARPACK
John W. Eaton <jwe@octave.org>
parents:
9572
diff
changeset
|
176 2009-08-26 John W. Eaton <jwe@octave.org> |
be3ee885739b
configure.in: restore LIBS after checking for ARPACK
John W. Eaton <jwe@octave.org>
parents:
9572
diff
changeset
|
177 |
be3ee885739b
configure.in: restore LIBS after checking for ARPACK
John W. Eaton <jwe@octave.org>
parents:
9572
diff
changeset
|
178 * configure.in: Restore LIBS after checking for ARPACK. |
be3ee885739b
configure.in: restore LIBS after checking for ARPACK
John W. Eaton <jwe@octave.org>
parents:
9572
diff
changeset
|
179 |
9572
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9570
diff
changeset
|
180 2009-08-26 John W. Eaton <jwe@octave.org> |
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9570
diff
changeset
|
181 |
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9570
diff
changeset
|
182 * configure.in: Use OCTAVE_CHECK_LIBRARY to check for UMFPACK. |
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9570
diff
changeset
|
183 * octave-bug.in, octave-bug.cc.in: Substitute UMFPACK_CPPFLAGS and |
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9570
diff
changeset
|
184 UMFPACK_LDFLAGS. |
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9570
diff
changeset
|
185 * Makeconf.in (UMFPACK_CPPFLAGS, UMFPACK_LDFLAGS): New variables. |
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9570
diff
changeset
|
186 (do-subst-config-vals): Substitute them. |
ab8a163f2052
use OCTAVE_CHECK_LIB to check for UMFPACK
John W. Eaton <jwe@octave.org>
parents:
9570
diff
changeset
|
187 |
9570
1ab56c73ec7c
use OCTAVE_CHECK_LIBRARY to check for qrupdate library
John W. Eaton <jwe@octave.org>
parents:
9569
diff
changeset
|
188 2009-08-26 John W. Eaton <jwe@octave.org> |
1ab56c73ec7c
use OCTAVE_CHECK_LIBRARY to check for qrupdate library
John W. Eaton <jwe@octave.org>
parents:
9569
diff
changeset
|
189 |
1ab56c73ec7c
use OCTAVE_CHECK_LIBRARY to check for qrupdate library
John W. Eaton <jwe@octave.org>
parents:
9569
diff
changeset
|
190 * configure.in: Use OCTAVE_CHECK_LIBRARY to check for qrupdate. |
1ab56c73ec7c
use OCTAVE_CHECK_LIBRARY to check for qrupdate library
John W. Eaton <jwe@octave.org>
parents:
9569
diff
changeset
|
191 * octave-bug.in, octave-bug.cc.in: Substitute QRUPDATE_CPPFLAGS and |
1ab56c73ec7c
use OCTAVE_CHECK_LIBRARY to check for qrupdate library
John W. Eaton <jwe@octave.org>
parents:
9569
diff
changeset
|
192 QRUPDATE_LDFLAGS. |
1ab56c73ec7c
use OCTAVE_CHECK_LIBRARY to check for qrupdate library
John W. Eaton <jwe@octave.org>
parents:
9569
diff
changeset
|
193 * Makeconf.in (QRUPDATE_CPPFLAGS, QRUPDATE_LDFLAGS): New variables. |
1ab56c73ec7c
use OCTAVE_CHECK_LIBRARY to check for qrupdate library
John W. Eaton <jwe@octave.org>
parents:
9569
diff
changeset
|
194 (do-subst-config-vals): Substitute them. |
1ab56c73ec7c
use OCTAVE_CHECK_LIBRARY to check for qrupdate library
John W. Eaton <jwe@octave.org>
parents:
9569
diff
changeset
|
195 |
9569
86787a560712
octave-bug.in: correct substitutions
John W. Eaton <jwe@octave.org>
parents:
9568
diff
changeset
|
196 2009-08-26 John W. Eaton <jwe@octave.org> |
86787a560712
octave-bug.in: correct substitutions
John W. Eaton <jwe@octave.org>
parents:
9568
diff
changeset
|
197 |
86787a560712
octave-bug.in: correct substitutions
John W. Eaton <jwe@octave.org>
parents:
9568
diff
changeset
|
198 * octave-bug.in: Correct substitutions. |
86787a560712
octave-bug.in: correct substitutions
John W. Eaton <jwe@octave.org>
parents:
9568
diff
changeset
|
199 |
9568
d3fccc4c4b9e
use OCTAVE_CHECK_LIBRARY to check for ARPACK
John W. Eaton <jwe@octave.org>
parents:
9565
diff
changeset
|
200 2009-08-26 John W. Eaton <jwe@octave.org> |
d3fccc4c4b9e
use OCTAVE_CHECK_LIBRARY to check for ARPACK
John W. Eaton <jwe@octave.org>
parents:
9565
diff
changeset
|
201 |
d3fccc4c4b9e
use OCTAVE_CHECK_LIBRARY to check for ARPACK
John W. Eaton <jwe@octave.org>
parents:
9565
diff
changeset
|
202 * aclocal.m4 (OCTAVE_CHECK_LIBRARY): Allow empty list of header files. |
d3fccc4c4b9e
use OCTAVE_CHECK_LIBRARY to check for ARPACK
John W. Eaton <jwe@octave.org>
parents:
9565
diff
changeset
|
203 * configure.in: Use OCTAVE_CHECK_LIBRARY to check for arpack. |
d3fccc4c4b9e
use OCTAVE_CHECK_LIBRARY to check for ARPACK
John W. Eaton <jwe@octave.org>
parents:
9565
diff
changeset
|
204 * octave-bug.in, octave-bug.cc.in: Substitute ARPACK_CPPFLAGS and |
d3fccc4c4b9e
use OCTAVE_CHECK_LIBRARY to check for ARPACK
John W. Eaton <jwe@octave.org>
parents:
9565
diff
changeset
|
205 ARPACK_LDFLAGS. |
d3fccc4c4b9e
use OCTAVE_CHECK_LIBRARY to check for ARPACK
John W. Eaton <jwe@octave.org>
parents:
9565
diff
changeset
|
206 * Makeconf.in (ARPACK_CPPFLAGS, ARPACK_LDFLAGS): New variables. |
d3fccc4c4b9e
use OCTAVE_CHECK_LIBRARY to check for ARPACK
John W. Eaton <jwe@octave.org>
parents:
9565
diff
changeset
|
207 (do-subst-config-vals): Substitute them. |
d3fccc4c4b9e
use OCTAVE_CHECK_LIBRARY to check for ARPACK
John W. Eaton <jwe@octave.org>
parents:
9565
diff
changeset
|
208 |
9565
fe57b638e48c
adapt octave-bug.cc.in and mkoctfile.cc.in to recent configure changes
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
9559
diff
changeset
|
209 2009-08-26 Benjamin Lindner <lindnerb@users.sourceforge.net> |
fe57b638e48c
adapt octave-bug.cc.in and mkoctfile.cc.in to recent configure changes
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
9559
diff
changeset
|
210 |
fe57b638e48c
adapt octave-bug.cc.in and mkoctfile.cc.in to recent configure changes
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
9559
diff
changeset
|
211 * mkoctfile.cc.in: Fix typo. |
fe57b638e48c
adapt octave-bug.cc.in and mkoctfile.cc.in to recent configure changes
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
9559
diff
changeset
|
212 * octave-bug.cc.in: Correct substututions. |
fe57b638e48c
adapt octave-bug.cc.in and mkoctfile.cc.in to recent configure changes
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
9559
diff
changeset
|
213 |
9575
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
214 2009-08-25 David Grundberg <individ@acc.umu.se> |
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
215 |
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
216 * configure.in: Run PKG_PROG_PKG_CONFIG earlier. Use pkg-config |
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
217 instead of GraphicsMagick++-config. Determine only -I, -L and -l |
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
218 flags and put them in MAGICK_CPPFLAGS, MAGICK_LDFLAGS and |
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
219 MAGICK_LIBS respectively. Substitute these variables. |
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
220 Remove variables MAGICK_CONFIG and MAGICK_INCFLAGS. |
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
221 Test linking against GraphicsMagick++. |
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
222 * Makeconf.in: Don't run $(MAGICK_CONFIG) here. Use substituted |
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
223 valued from MAGICK_CPPFLAGS, MAGICK_LDFLAGS and MAGICK_LIBS. |
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
224 Remove variables MAGICK_CONFIG and MAGICK_INCFLAGS. |
55ecaefb7d0f
Use pkg-config to configure GraphicsMagick++.
David Grundberg <individ@acc.umu.se>
parents:
9573
diff
changeset
|
225 |
9559
163e205600a4
fix typo in acx_blas_f77_func.m4
Jaroslav Hajek <highegg@gmail.com>
parents:
9547
diff
changeset
|
226 2009-08-24 Jaroslav Hajek <highegg@gmail.com> |
163e205600a4
fix typo in acx_blas_f77_func.m4
Jaroslav Hajek <highegg@gmail.com>
parents:
9547
diff
changeset
|
227 |
163e205600a4
fix typo in acx_blas_f77_func.m4
Jaroslav Hajek <highegg@gmail.com>
parents:
9547
diff
changeset
|
228 * acx_blas_f77_func.m4: Fix typo. |
163e205600a4
fix typo in acx_blas_f77_func.m4
Jaroslav Hajek <highegg@gmail.com>
parents:
9547
diff
changeset
|
229 |
9547 | 230 2009-08-19 Jaroslav Hajek <highegg@gmail.com> |
231 | |
232 * NEWS: Update. | |
233 | |
9543
1d51ab34b509
tweaks for HDF5 library check
John W. Eaton <jwe@octave.org>
parents:
9542
diff
changeset
|
234 2009-08-18 John W. Eaton <jwe@octave.org> |
1d51ab34b509
tweaks for HDF5 library check
John W. Eaton <jwe@octave.org>
parents:
9542
diff
changeset
|
235 |
1d51ab34b509
tweaks for HDF5 library check
John W. Eaton <jwe@octave.org>
parents:
9542
diff
changeset
|
236 * aclocal.m4 (OCTAVE_HDF5_HAS_REQUIRED_API): If test fails, set |
1d51ab34b509
tweaks for HDF5 library check
John W. Eaton <jwe@octave.org>
parents:
9542
diff
changeset
|
237 octave_hdf5_ok to no instead of setting HAVE_HDF5 to false. |
1d51ab34b509
tweaks for HDF5 library check
John W. Eaton <jwe@octave.org>
parents:
9542
diff
changeset
|
238 * configure.in: Check octave_hdf5_ok instead of HAVE_HDF5. |
1d51ab34b509
tweaks for HDF5 library check
John W. Eaton <jwe@octave.org>
parents:
9542
diff
changeset
|
239 Set TEXINFO_HDF5 if HDF5 library is found. |
1d51ab34b509
tweaks for HDF5 library check
John W. Eaton <jwe@octave.org>
parents:
9542
diff
changeset
|
240 |
9542
f5ec5dc66824
use OCTAVE_CHECK_LIBRARY to check for HDF5
John W. Eaton <jwe@octave.org>
parents:
9541
diff
changeset
|
241 2009-08-18 John W. Eaton <jwe@octave.org> |
f5ec5dc66824
use OCTAVE_CHECK_LIBRARY to check for HDF5
John W. Eaton <jwe@octave.org>
parents:
9541
diff
changeset
|
242 |
f5ec5dc66824
use OCTAVE_CHECK_LIBRARY to check for HDF5
John W. Eaton <jwe@octave.org>
parents:
9541
diff
changeset
|
243 * Makeconf.in (ALL_CPPFLAGS): Add HDF5_CPPFLAGS to the list. |
f5ec5dc66824
use OCTAVE_CHECK_LIBRARY to check for HDF5
John W. Eaton <jwe@octave.org>
parents:
9541
diff
changeset
|
244 * aclocal.m4 (OCTAVE_HDF5_HAS_REQUIRED_API): |
f5ec5dc66824
use OCTAVE_CHECK_LIBRARY to check for HDF5
John W. Eaton <jwe@octave.org>
parents:
9541
diff
changeset
|
245 Set HAVE_HDF5 to false, not WITH_HDF5. |
f5ec5dc66824
use OCTAVE_CHECK_LIBRARY to check for HDF5
John W. Eaton <jwe@octave.org>
parents:
9541
diff
changeset
|
246 * configure.in: Use OCTAVE_CHECK_LIBRARY to check for HDF5 |
9543
1d51ab34b509
tweaks for HDF5 library check
John W. Eaton <jwe@octave.org>
parents:
9542
diff
changeset
|
247 library. Print HDF5_CPPFLAGS and HDF5_LDFLAGS in the summary. |
9542
f5ec5dc66824
use OCTAVE_CHECK_LIBRARY to check for HDF5
John W. Eaton <jwe@octave.org>
parents:
9541
diff
changeset
|
248 * octave-bug.in, octave-bug.cc.in, Makeconf.in: Substitute |
f5ec5dc66824
use OCTAVE_CHECK_LIBRARY to check for HDF5
John W. Eaton <jwe@octave.org>
parents:
9541
diff
changeset
|
249 HDF5_CPPFLAGS and HDF5_LDFLAGS. |
f5ec5dc66824
use OCTAVE_CHECK_LIBRARY to check for HDF5
John W. Eaton <jwe@octave.org>
parents:
9541
diff
changeset
|
250 |
9541
afbdf01bcacc
acx_blas_f77_func.m4 (ACX_BLAS_F77_FUNC): Save and restore LIBS
John W. Eaton <jwe@octave.org>
parents:
9540
diff
changeset
|
251 2009-08-18 John W. Eaton <jwe@octave.org> |
afbdf01bcacc
acx_blas_f77_func.m4 (ACX_BLAS_F77_FUNC): Save and restore LIBS
John W. Eaton <jwe@octave.org>
parents:
9540
diff
changeset
|
252 |
afbdf01bcacc
acx_blas_f77_func.m4 (ACX_BLAS_F77_FUNC): Save and restore LIBS
John W. Eaton <jwe@octave.org>
parents:
9540
diff
changeset
|
253 * acx_blas_f77_func.m4 (ACX_BLAS_F77_FUNC): Save and restore LIBS. |
afbdf01bcacc
acx_blas_f77_func.m4 (ACX_BLAS_F77_FUNC): Save and restore LIBS
John W. Eaton <jwe@octave.org>
parents:
9540
diff
changeset
|
254 |
9540
79b5fe2d5646
use Z_LIBS in checks for curl and glpk libraries
John W. Eaton <jwe@octave.org>
parents:
9539
diff
changeset
|
255 2009-08-18 John W. Eaton <jwe@octave.org> |
79b5fe2d5646
use Z_LIBS in checks for curl and glpk libraries
John W. Eaton <jwe@octave.org>
parents:
9539
diff
changeset
|
256 |
79b5fe2d5646
use Z_LIBS in checks for curl and glpk libraries
John W. Eaton <jwe@octave.org>
parents:
9539
diff
changeset
|
257 * aclocal.m4 (OCTAVE_CHECK_LIBRARY): Use variables named |
79b5fe2d5646
use Z_LIBS in checks for curl and glpk libraries
John W. Eaton <jwe@octave.org>
parents:
9539
diff
changeset
|
258 octave_check_library_save_XXX instead of save_XXX. |
79b5fe2d5646
use Z_LIBS in checks for curl and glpk libraries
John W. Eaton <jwe@octave.org>
parents:
9539
diff
changeset
|
259 * configure.in: Add Z_LDFLAGS and Z_LIBS to LIBS, and Z_CPPFLAGS |
79b5fe2d5646
use Z_LIBS in checks for curl and glpk libraries
John W. Eaton <jwe@octave.org>
parents:
9539
diff
changeset
|
260 to CPPFLAGS in checks for curl and glpk libraries. |
79b5fe2d5646
use Z_LIBS in checks for curl and glpk libraries
John W. Eaton <jwe@octave.org>
parents:
9539
diff
changeset
|
261 |
9539
41a74dcd14df
Clear QHULL_LIBS etc on errors. Interpret --without-qhull etc correctly.
David Grundberg <individ@acc.umu.se>
parents:
9538
diff
changeset
|
262 2009-08-18 David Grundberg <individ@acc.umu.se> |
41a74dcd14df
Clear QHULL_LIBS etc on errors. Interpret --without-qhull etc correctly.
David Grundberg <individ@acc.umu.se>
parents:
9538
diff
changeset
|
263 |
41a74dcd14df
Clear QHULL_LIBS etc on errors. Interpret --without-qhull etc correctly.
David Grundberg <individ@acc.umu.se>
parents:
9538
diff
changeset
|
264 * aclocal.m4 (OCTAVE_CHECK_LIBRARY): Clear QHULL_LIBS etc on |
41a74dcd14df
Clear QHULL_LIBS etc on errors. Interpret --without-qhull etc correctly.
David Grundberg <individ@acc.umu.se>
parents:
9538
diff
changeset
|
265 errors. Interpret --without-qhull etc correctly. |
41a74dcd14df
Clear QHULL_LIBS etc on errors. Interpret --without-qhull etc correctly.
David Grundberg <individ@acc.umu.se>
parents:
9538
diff
changeset
|
266 |
9538
d0239bddf621
use OCTAVE_CHECK_LIB to check for zlib
John W. Eaton <jwe@octave.org>
parents:
9536
diff
changeset
|
267 2009-08-17 John W. Eaton <jwe@octave.org> |
d0239bddf621
use OCTAVE_CHECK_LIB to check for zlib
John W. Eaton <jwe@octave.org>
parents:
9536
diff
changeset
|
268 |
d0239bddf621
use OCTAVE_CHECK_LIB to check for zlib
John W. Eaton <jwe@octave.org>
parents:
9536
diff
changeset
|
269 * mkoctfile.in, mkoctfile.cc.in (FFTW3_LDFLAGS, FFTW3_LIBS, |
d0239bddf621
use OCTAVE_CHECK_LIB to check for zlib
John W. Eaton <jwe@octave.org>
parents:
9536
diff
changeset
|
270 FFTW3F_LDFLAGS, FFTW3F_LIBS): Substitute instead of FFTW_LIBS. |
d0239bddf621
use OCTAVE_CHECK_LIB to check for zlib
John W. Eaton <jwe@octave.org>
parents:
9536
diff
changeset
|
271 (FFTW_LIBS): Define from FFTW3_LDFLAGS, FFTW3_LIBS, |
d0239bddf621
use OCTAVE_CHECK_LIB to check for zlib
John W. Eaton <jwe@octave.org>
parents:
9536
diff
changeset
|
272 FFTW3F_LDFLAGS, and FFTW3F_LIBS variables. |
d0239bddf621
use OCTAVE_CHECK_LIB to check for zlib
John W. Eaton <jwe@octave.org>
parents:
9536
diff
changeset
|
273 |
d0239bddf621
use OCTAVE_CHECK_LIB to check for zlib
John W. Eaton <jwe@octave.org>
parents:
9536
diff
changeset
|
274 * octave-bug.cc.in, octave-bug.in (Z_CPPFLAGS, Z_LDFLAGS): |
d0239bddf621
use OCTAVE_CHECK_LIB to check for zlib
John W. Eaton <jwe@octave.org>
parents:
9536
diff
changeset
|
275 Substitute and display them. |
d0239bddf621
use OCTAVE_CHECK_LIB to check for zlib
John W. Eaton <jwe@octave.org>
parents:
9536
diff
changeset
|
276 (Z_LIBS): Rename from ZLIB_LIBS. |
d0239bddf621
use OCTAVE_CHECK_LIB to check for zlib
John W. Eaton <jwe@octave.org>
parents:
9536
diff
changeset
|
277 * configure.in: Use OCTAVE_CHECK_LIBRARY to check for ZLIB. |
d0239bddf621
use OCTAVE_CHECK_LIB to check for zlib
John W. Eaton <jwe@octave.org>
parents:
9536
diff
changeset
|
278 Print Z_CPPFLAGS and Z_LDFLAGS in the summary. |
d0239bddf621
use OCTAVE_CHECK_LIB to check for zlib
John W. Eaton <jwe@octave.org>
parents:
9536
diff
changeset
|
279 * Makeconf.in (Z_CPPFLAGS, Z_LDFLAGS): New variables. |
d0239bddf621
use OCTAVE_CHECK_LIB to check for zlib
John W. Eaton <jwe@octave.org>
parents:
9536
diff
changeset
|
280 (Z_LIBS): Rename from ZLIB_LIBS. |
d0239bddf621
use OCTAVE_CHECK_LIB to check for zlib
John W. Eaton <jwe@octave.org>
parents:
9536
diff
changeset
|
281 (do-subst-config-vals): Substitute them. |
d0239bddf621
use OCTAVE_CHECK_LIB to check for zlib
John W. Eaton <jwe@octave.org>
parents:
9536
diff
changeset
|
282 |
d0239bddf621
use OCTAVE_CHECK_LIB to check for zlib
John W. Eaton <jwe@octave.org>
parents:
9536
diff
changeset
|
283 (ALL_CPPFLAGS): New variable. |
d0239bddf621
use OCTAVE_CHECK_LIB to check for zlib
John W. Eaton <jwe@octave.org>
parents:
9536
diff
changeset
|
284 (%.o : %.c, %.o : %.cc, pic/%.o : %.c, pic/%.o : %.cc): |
d0239bddf621
use OCTAVE_CHECK_LIB to check for zlib
John W. Eaton <jwe@octave.org>
parents:
9536
diff
changeset
|
285 Use $(ALL_CPPFLAGS) instead of $(CPPFLAGS) in command. |
d0239bddf621
use OCTAVE_CHECK_LIB to check for zlib
John W. Eaton <jwe@octave.org>
parents:
9536
diff
changeset
|
286 |
9536
592a959b68e5
octave-bug.in, octave-bug.cc.in: update for recent configure changes
John W. Eaton <jwe@octave.org>
parents:
9531
diff
changeset
|
287 2009-08-17 John W. Eaton <jwe@octave.org> |
592a959b68e5
octave-bug.in, octave-bug.cc.in: update for recent configure changes
John W. Eaton <jwe@octave.org>
parents:
9531
diff
changeset
|
288 |
592a959b68e5
octave-bug.in, octave-bug.cc.in: update for recent configure changes
John W. Eaton <jwe@octave.org>
parents:
9531
diff
changeset
|
289 * octave-bug.in, octave-bug.cc.in: Include AMD_CPPFLAGS, |
592a959b68e5
octave-bug.in, octave-bug.cc.in: update for recent configure changes
John W. Eaton <jwe@octave.org>
parents:
9531
diff
changeset
|
290 AMD_LDFLAGS, AMD_LIBS, ARPACK_LIBS, BLAS_LIBS, CAMD_CPPFLAGS, |
592a959b68e5
octave-bug.in, octave-bug.cc.in: update for recent configure changes
John W. Eaton <jwe@octave.org>
parents:
9531
diff
changeset
|
291 CAMD_LDFLAGS, CAMD_LIBS, CARBON_LIBS, CCOLAMD_CPPFLAGS, |
592a959b68e5
octave-bug.in, octave-bug.cc.in: update for recent configure changes
John W. Eaton <jwe@octave.org>
parents:
9531
diff
changeset
|
292 CCOLAMD_LDFLAGS, CCOLAMD_LIBS, CHOLMOD_CPPFLAGS, CHOLMOD_LDFLAGS, |
592a959b68e5
octave-bug.in, octave-bug.cc.in: update for recent configure changes
John W. Eaton <jwe@octave.org>
parents:
9531
diff
changeset
|
293 CHOLMOD_LIBS, COLAMD_CPPFLAGS, COLAMD_LDFLAGS, COLAMD_LIBS, |
592a959b68e5
octave-bug.in, octave-bug.cc.in: update for recent configure changes
John W. Eaton <jwe@octave.org>
parents:
9531
diff
changeset
|
294 CURL_CPPFLAGS, CURL_LDFLAGS, CURL_LIBS, CXSPARSE_CPPFLAGS, |
592a959b68e5
octave-bug.in, octave-bug.cc.in: update for recent configure changes
John W. Eaton <jwe@octave.org>
parents:
9531
diff
changeset
|
295 CXSPARSE_LDFLAGS, CXSPARSE_LIBS, DL_LIBS, FFTW3_CPPFLAGS, |
592a959b68e5
octave-bug.in, octave-bug.cc.in: update for recent configure changes
John W. Eaton <jwe@octave.org>
parents:
9531
diff
changeset
|
296 FFTW3_LDFLAGS, FFTW3_LIBS, FFTW3F_CPPFLAGS, FFTW3F_LDFLAGS, |
592a959b68e5
octave-bug.in, octave-bug.cc.in: update for recent configure changes
John W. Eaton <jwe@octave.org>
parents:
9531
diff
changeset
|
297 FFTW3F_LIBS, GRAPHICS_LIBS, GLPK_CPPFLAGS, GLPK_LDFLAGS, |
592a959b68e5
octave-bug.in, octave-bug.cc.in: update for recent configure changes
John W. Eaton <jwe@octave.org>
parents:
9531
diff
changeset
|
298 GLPK_LIBS, HDF5_LIBS, OPENGL_LIBS, PTHREAD_CFLAGS, PTHREAD_LIBS, |
592a959b68e5
octave-bug.in, octave-bug.cc.in: update for recent configure changes
John W. Eaton <jwe@octave.org>
parents:
9531
diff
changeset
|
299 QHULL_CPPFLAGS, QHULL_LDFLAGS, QHULL_LIBS, QRUPDATE_LIBS, |
592a959b68e5
octave-bug.in, octave-bug.cc.in: update for recent configure changes
John W. Eaton <jwe@octave.org>
parents:
9531
diff
changeset
|
300 READLINE_LIBS, REGEX_LIBS, TERM_LIBS, UMFPACK_LIBS, X11_INCFLAGS, |
592a959b68e5
octave-bug.in, octave-bug.cc.in: update for recent configure changes
John W. Eaton <jwe@octave.org>
parents:
9531
diff
changeset
|
301 X11_LIBS, and ZLIB_LIBS in the summary of varibles. |
592a959b68e5
octave-bug.in, octave-bug.cc.in: update for recent configure changes
John W. Eaton <jwe@octave.org>
parents:
9531
diff
changeset
|
302 |
592a959b68e5
octave-bug.in, octave-bug.cc.in: update for recent configure changes
John W. Eaton <jwe@octave.org>
parents:
9531
diff
changeset
|
303 * configure.in: Include LEXLIB and LIBGLOB in the summary. |
592a959b68e5
octave-bug.in, octave-bug.cc.in: update for recent configure changes
John W. Eaton <jwe@octave.org>
parents:
9531
diff
changeset
|
304 |
9531
b859079d1644
configure and Makefile fixes for Windows
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9525
diff
changeset
|
305 2009-08-17 Michael Goffioul <michael.goffioul@gmail.com> |
b859079d1644
configure and Makefile fixes for Windows
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9525
diff
changeset
|
306 |
b859079d1644
configure and Makefile fixes for Windows
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9525
diff
changeset
|
307 * aclocal.m4 (OCTAVE_HDF5_DLL): Include HDF5_LIBS in LIBS before |
b859079d1644
configure and Makefile fixes for Windows
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9525
diff
changeset
|
308 attempting link. |
b859079d1644
configure and Makefile fixes for Windows
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9525
diff
changeset
|
309 |
9525
691545147aca
compatibility for earlier autoconfs
Jaroslav Hajek <highegg@gmail.com>
parents:
9523
diff
changeset
|
310 2009-08-15 Jaroslav Hajek <highegg@gmail.com> |
691545147aca
compatibility for earlier autoconfs
Jaroslav Hajek <highegg@gmail.com>
parents:
9523
diff
changeset
|
311 |
691545147aca
compatibility for earlier autoconfs
Jaroslav Hajek <highegg@gmail.com>
parents:
9523
diff
changeset
|
312 * aclocal.m4: Define the autoconf 2.64+ m4sugar macros `m4_ifblank' |
691545147aca
compatibility for earlier autoconfs
Jaroslav Hajek <highegg@gmail.com>
parents:
9523
diff
changeset
|
313 and `m4_ifnblank' if on earlier autoconfs. |
691545147aca
compatibility for earlier autoconfs
Jaroslav Hajek <highegg@gmail.com>
parents:
9523
diff
changeset
|
314 |
9523
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9520
diff
changeset
|
315 2009-08-13 John W. Eaton <jwe@octave.org> |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9520
diff
changeset
|
316 |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9520
diff
changeset
|
317 * Makeconf.in (GLPK_CPPFLAGS, GLPK_LDFLAGS, |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9520
diff
changeset
|
318 AMD_CPPFLAGS, AMD_LDFLAGS, CAMD_CPPFLAGS, CAMD_LDFLAGS, |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9520
diff
changeset
|
319 CCOLAMD_CPPFLAGS, CCOLAMD_LDFLAGS, CHOLMOD_CPPFLAGS, |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9520
diff
changeset
|
320 CHOLMOD_LDFLAGS, COLAMD_CPPFLAGS, COLAMD_LDFLAGS, |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9520
diff
changeset
|
321 CXSPARSE_CPPFLAGS, CXSPARSE_LDFLAGS): New variables. |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9520
diff
changeset
|
322 (do-subst-config-vals): Substitute Them. |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9520
diff
changeset
|
323 (SPARSE_CPPFLAGS, SPARSE_LDFLAGS, SPARSE_LIBS, FFTW_CPPFLAGS, |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9520
diff
changeset
|
324 FFTW_LDFLAGS, FFTW_LIBS): New variables. |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9520
diff
changeset
|
325 |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9520
diff
changeset
|
326 * configure.in: Use OCTAVE_CHECK_LIBRARY to check for GLPK, AMD, |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9520
diff
changeset
|
327 CAMD, CCOLAMD, CHOLMOD, COLAMD, CXSPARSE, FFTW3, and FFTW3F |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9520
diff
changeset
|
328 libraries. Print GLPK_CPPFLAGS, GLPK_LDFLAGS, AMD_CPPFLAGS, |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9520
diff
changeset
|
329 AMD_LDFLAGS, CAMD_CPPFLAGS, CAMD_LDFLAGS, CCOLAMD_CPPFLAGS, |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9520
diff
changeset
|
330 CCOLAMD_LDFLAGS, CHOLMOD_CPPFLAGS, CHOLMOD_LDFLAGS, |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9520
diff
changeset
|
331 COLAMD_CPPFLAGS, COLAMD_LDFLAGS, CXSPARSE_CPPFLAGS, |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9520
diff
changeset
|
332 CXSPARSE_LDFLAGS, FFTW3_CPPFLAGS, FFTW3_LDFLAGS, FFTW3_LIBS, |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9520
diff
changeset
|
333 FFTW3F_CPPFLAGS, FFTW3F_LDFLAGS, and FFTW3F_LIBS in the summary. |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9520
diff
changeset
|
334 (AH_BOTTOM): Define HAVE_FFTW if HAVE_FFTW3 and HAVE_FFTW3F are |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9520
diff
changeset
|
335 both defined. |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9520
diff
changeset
|
336 |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9520
diff
changeset
|
337 * aclocal.m4 (OCTAVE_CHECK_LIBRARY): New optional arguments for |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9520
diff
changeset
|
338 language and doc string. |
0ce82753dd72
more configure changes for libraries
John W. Eaton <jwe@octave.org>
parents:
9520
diff
changeset
|
339 |
9520
bd5909b89457
fix OCTAVE_CHECK_LIBRARY
Jaroslav Hajek <highegg@gmail.com>
parents:
9519
diff
changeset
|
340 2009-08-13 Jaroslav Hajek <highegg@gmail.com> |
bd5909b89457
fix OCTAVE_CHECK_LIBRARY
Jaroslav Hajek <highegg@gmail.com>
parents:
9519
diff
changeset
|
341 |
bd5909b89457
fix OCTAVE_CHECK_LIBRARY
Jaroslav Hajek <highegg@gmail.com>
parents:
9519
diff
changeset
|
342 * aclocal.m4 (OCTAVE_CHECK_LIBRARY): Prepend to LIBS rather than |
bd5909b89457
fix OCTAVE_CHECK_LIBRARY
Jaroslav Hajek <highegg@gmail.com>
parents:
9519
diff
changeset
|
343 replacing. |
bd5909b89457
fix OCTAVE_CHECK_LIBRARY
Jaroslav Hajek <highegg@gmail.com>
parents:
9519
diff
changeset
|
344 |
9519
ee99f9f37505
improve configure checks for qhull and curl libs
John W. Eaton <jwe@octave.org>
parents:
9515
diff
changeset
|
345 2009-08-13 John W. Eaton <jwe@octave.org> |
ee99f9f37505
improve configure checks for qhull and curl libs
John W. Eaton <jwe@octave.org>
parents:
9515
diff
changeset
|
346 |
ee99f9f37505
improve configure checks for qhull and curl libs
John W. Eaton <jwe@octave.org>
parents:
9515
diff
changeset
|
347 * Makeconf.in (QHULL_CPPFLAGS, QHULL_LDFLAGS, CURL_CPPFLAGS, |
ee99f9f37505
improve configure checks for qhull and curl libs
John W. Eaton <jwe@octave.org>
parents:
9515
diff
changeset
|
348 CURL_LDFLAGS): New variables. |
ee99f9f37505
improve configure checks for qhull and curl libs
John W. Eaton <jwe@octave.org>
parents:
9515
diff
changeset
|
349 (do-subst-config-vals): Substitute QHULL_CPPFLAGS, QHULL_LDFLAGS, |
ee99f9f37505
improve configure checks for qhull and curl libs
John W. Eaton <jwe@octave.org>
parents:
9515
diff
changeset
|
350 CURL_CPPFLAGS, and CURL_LDFLAGS |
ee99f9f37505
improve configure checks for qhull and curl libs
John W. Eaton <jwe@octave.org>
parents:
9515
diff
changeset
|
351 * configure.in: Use OCTAVE_CHECK_LIBRARY to check for qhull and |
ee99f9f37505
improve configure checks for qhull and curl libs
John W. Eaton <jwe@octave.org>
parents:
9515
diff
changeset
|
352 curl libraries. Print QHULL_CPPFLAGS, QHULL_LDFLAGS, |
ee99f9f37505
improve configure checks for qhull and curl libs
John W. Eaton <jwe@octave.org>
parents:
9515
diff
changeset
|
353 CURL_CPPFLAGS, and CURL_LDFLAGS in the summary. Print glpk |
ee99f9f37505
improve configure checks for qhull and curl libs
John W. Eaton <jwe@octave.org>
parents:
9515
diff
changeset
|
354 library warning at time of check. Use AC_MSG_WARN, not |
ee99f9f37505
improve configure checks for qhull and curl libs
John W. Eaton <jwe@octave.org>
parents:
9515
diff
changeset
|
355 AC_MSG_RESULT, to print fftw warning. |
ee99f9f37505
improve configure checks for qhull and curl libs
John W. Eaton <jwe@octave.org>
parents:
9515
diff
changeset
|
356 * aclocal.m4 (OCTAVE_CHECK_LIBRARY): New macro. |
ee99f9f37505
improve configure checks for qhull and curl libs
John W. Eaton <jwe@octave.org>
parents:
9515
diff
changeset
|
357 (AC_CHECK_QHULL_VERSION, AC_CHECK_QHULL_OK): |
ee99f9f37505
improve configure checks for qhull and curl libs
John W. Eaton <jwe@octave.org>
parents:
9515
diff
changeset
|
358 Implement with modern autoconf macros. |
ee99f9f37505
improve configure checks for qhull and curl libs
John W. Eaton <jwe@octave.org>
parents:
9515
diff
changeset
|
359 |
9515 | 360 2009-08-11 John W. Eaton <jwe@octave.org> |
361 | |
362 * configure.in: Define and substitute TERM_LIBS instead of | |
363 TERMLIBS. Don't add TERM_LIBS to LIBS. Define DL_LIBS instead of | |
364 adding them to LIBS. Display TERM_LIBS and DL_LIBS in summary | |
365 reporrt. | |
366 * aclocal.m4 (OCTAVE_ENABLE_READLINE): Define and substitute | |
367 READLINE_LIBS instead of LIBREADLINE. Don't add readline library | |
368 to LIBS. Display READLINE_LIBS in summary report. Temporarily | |
369 add TERM_LIBS to LIBS when checking for readline library. | |
370 * Makeconf.in, mkoctfile.cc.in, mkoctfile.in: | |
371 Use READLINE_LIBS instead of LIBREADLINE and TERM_LIBS instead of | |
372 TERMLIBS. Substitute DL_LIBS. | |
373 (do-subst-config-vals): Substitute TERM_LIBS and DL_LIBS. | |
374 | |
9514 | 375 2009-08-11 John W. Eaton <jwe@octave.org> |
376 | |
377 * configure.in: Generate separate variables for HDF5_LIBS and | |
378 ZLIB_LIBS. Don't add them to LIBS. Add separate entries for them | |
379 in the summary report. | |
380 * Makeconf.in (HDF5_LIBS, ZLIB_LIBS): New variables. | |
381 (do-subst-config-vals): Substitute AMD_LIBS, ARPACK_LIBS, | |
382 CAMD_LIBS, CCOLAMD_LIBS, CHOLMOD_LIBS, COLAMD_LIBS, CXSPARSE_LIBS, | |
383 FT2_LIBS, GRAPHICS_LIBS, HDF5_LIBS, OPENGL_LIBS, PTHREAD_CFLAGS, | |
384 PTHREAD_LIBS, QHULL_LIBS, QRUPDATE_LIBS, REGEX_LIBS, UMFPACK_LIBS, | |
385 ZLIB_LIBS. | |
386 | |
9489 | 387 2009-08-05 John W. Eaton <jwe@octave.org> |
9488
ee572cdd4b97
add configure checks for pthread library and compiler flags
John W. Eaton <jwe@octave.org>
parents:
9480
diff
changeset
|
388 |
ee572cdd4b97
add configure checks for pthread library and compiler flags
John W. Eaton <jwe@octave.org>
parents:
9480
diff
changeset
|
389 * acx_pthread.m4: New file. |
ee572cdd4b97
add configure checks for pthread library and compiler flags
John W. Eaton <jwe@octave.org>
parents:
9480
diff
changeset
|
390 * configure.in: Include it and invoke ACX_PTHREAD macro. Print |
ee572cdd4b97
add configure checks for pthread library and compiler flags
John W. Eaton <jwe@octave.org>
parents:
9480
diff
changeset
|
391 ptrhead flags and libraries in summary output. |
9489 | 392 * Makeconf.in (PTHREAD_CFLAGS, PTHREAD_LIBS): Substitute values. |
393 (ALL_CFLAGS, ALL_CXXFLAGS): Include $(PTHREAD_CFLAGS). | |
9488
ee572cdd4b97
add configure checks for pthread library and compiler flags
John W. Eaton <jwe@octave.org>
parents:
9480
diff
changeset
|
394 |
9480 | 395 2009-08-03 Jaroslav Hajek <highegg@gmail.com> |
396 | |
397 * NEWS: Update. | |
398 | |
9462 | 399 2009-07-27 Jaroslav Hajek <highegg@gmail.com> |
400 | |
401 * NEWS: Update. | |
402 | |
9449 | 403 2009-07-22 Jaroslav Hajek <highegg@gmail.com> |
404 | |
405 * NEWS: Update. | |
406 | |
9437
db08c2376970
Makeconf.in (MAGICK_LIBS): Don't pass --ldflags to $(MAGICK_CONFIG)
John W. Eaton <jwe@octave.org>
parents:
9424
diff
changeset
|
407 2009-07-16 John W. Eaton <jwe@octave.org> |
db08c2376970
Makeconf.in (MAGICK_LIBS): Don't pass --ldflags to $(MAGICK_CONFIG)
John W. Eaton <jwe@octave.org>
parents:
9424
diff
changeset
|
408 |
db08c2376970
Makeconf.in (MAGICK_LIBS): Don't pass --ldflags to $(MAGICK_CONFIG)
John W. Eaton <jwe@octave.org>
parents:
9424
diff
changeset
|
409 * Makeconf.in (MAGICK_LIBS): Don't pass --ldflags to $(MAGICK_CONFIG). |
db08c2376970
Makeconf.in (MAGICK_LIBS): Don't pass --ldflags to $(MAGICK_CONFIG)
John W. Eaton <jwe@octave.org>
parents:
9424
diff
changeset
|
410 |
9424
69d05d1a63b9
configure.in: don't use system strftime on MinGW systems
John W. Eaton <jwe@octave.org>
parents:
9408
diff
changeset
|
411 2009-07-09 John W. Eaton <jwe@octave.org> |
69d05d1a63b9
configure.in: don't use system strftime on MinGW systems
John W. Eaton <jwe@octave.org>
parents:
9408
diff
changeset
|
412 |
69d05d1a63b9
configure.in: don't use system strftime on MinGW systems
John W. Eaton <jwe@octave.org>
parents:
9408
diff
changeset
|
413 * configure.in: Don't use system strftime on MinGW systems. |
69d05d1a63b9
configure.in: don't use system strftime on MinGW systems
John W. Eaton <jwe@octave.org>
parents:
9408
diff
changeset
|
414 |
9407
0951174cbb03
remove experimental stuff from lookup, simplify
Jaroslav Hajek <highegg@gmail.com>
parents:
9403
diff
changeset
|
415 2009-06-29 Jaroslav Hajek <highegg@gmail.com> |
0951174cbb03
remove experimental stuff from lookup, simplify
Jaroslav Hajek <highegg@gmail.com>
parents:
9403
diff
changeset
|
416 |
0951174cbb03
remove experimental stuff from lookup, simplify
Jaroslav Hajek <highegg@gmail.com>
parents:
9403
diff
changeset
|
417 * NEWS: Correct info. |
9408 | 418 * NEWS: Update. |
9407
0951174cbb03
remove experimental stuff from lookup, simplify
Jaroslav Hajek <highegg@gmail.com>
parents:
9403
diff
changeset
|
419 |
9403
4af6e29449c1
[mq]: graphics_text_engine
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9381
diff
changeset
|
420 2009-06-26 Michael Goffioul <michael.goffioul@gmail.com> |
4af6e29449c1
[mq]: graphics_text_engine
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9381
diff
changeset
|
421 |
4af6e29449c1
[mq]: graphics_text_engine
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9381
diff
changeset
|
422 * aclocal.m4: Add pkg.m4 macros. |
4af6e29449c1
[mq]: graphics_text_engine
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9381
diff
changeset
|
423 * configure.in (HAVE_FREETYPE): New defined variable. |
4af6e29449c1
[mq]: graphics_text_engine
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9381
diff
changeset
|
424 * configure.in: Add configure tests for Fontconfig detection. |
4af6e29449c1
[mq]: graphics_text_engine
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9381
diff
changeset
|
425 |
9381
f9ab19428cd8
* run-octave.in: Exclude @-files from path. Remove CVS exclusions.
Robert T. Short <octave@phaselockedsystems.com>
parents:
9365
diff
changeset
|
426 2009-06-23 Robert T. Short <octave@phaselockedsystems.com> |
f9ab19428cd8
* run-octave.in: Exclude @-files from path. Remove CVS exclusions.
Robert T. Short <octave@phaselockedsystems.com>
parents:
9365
diff
changeset
|
427 |
f9ab19428cd8
* run-octave.in: Exclude @-files from path. Remove CVS exclusions.
Robert T. Short <octave@phaselockedsystems.com>
parents:
9365
diff
changeset
|
428 * run-octave.in: Exclude @-files from path. Remove CVS exclusions. |
f9ab19428cd8
* run-octave.in: Exclude @-files from path. Remove CVS exclusions.
Robert T. Short <octave@phaselockedsystems.com>
parents:
9365
diff
changeset
|
429 |
9365 | 430 2009-06-19 Jaroslav Hajek <highegg@gmail.com> |
431 | |
432 * NEWS: Update. | |
433 | |
9352 | 434 2009-06-15 Jaroslav Hajek <highegg@gmail.com> |
435 | |
436 * NEWS: Update. | |
437 | |
9332
bf6da2fbfa4e
examples/polynomial: properly handle magic colon
Jaroslav Hajek <highegg@gmail.com>
parents:
9330
diff
changeset
|
438 2009-06-02 Jaroslav Hajek <highegg@gmail.com> |
bf6da2fbfa4e
examples/polynomial: properly handle magic colon
Jaroslav Hajek <highegg@gmail.com>
parents:
9330
diff
changeset
|
439 |
bf6da2fbfa4e
examples/polynomial: properly handle magic colon
Jaroslav Hajek <highegg@gmail.com>
parents:
9330
diff
changeset
|
440 * examples/@polynomial/subsref.m: Handle ':' correctly. |
bf6da2fbfa4e
examples/polynomial: properly handle magic colon
Jaroslav Hajek <highegg@gmail.com>
parents:
9330
diff
changeset
|
441 * examples/@polynomial/subsasgn.m: Ditto. |
bf6da2fbfa4e
examples/polynomial: properly handle magic colon
Jaroslav Hajek <highegg@gmail.com>
parents:
9330
diff
changeset
|
442 |
9329
67fc970dad7d
improve indexed assignment using indexed numel
Jaroslav Hajek <highegg@gmail.com>
parents:
9303
diff
changeset
|
443 2009-06-11 Jaroslav Hajek <highegg@gmail.com> |
67fc970dad7d
improve indexed assignment using indexed numel
Jaroslav Hajek <highegg@gmail.com>
parents:
9303
diff
changeset
|
444 |
67fc970dad7d
improve indexed assignment using indexed numel
Jaroslav Hajek <highegg@gmail.com>
parents:
9303
diff
changeset
|
445 * example/@polynomial/numel.m: New method. |
9330
e903c92d2f02
omission from last patch
Jaroslav Hajek <highegg@gmail.com>
parents:
9329
diff
changeset
|
446 * example/@polynomial/Makefile.in: Include it. |
9329
67fc970dad7d
improve indexed assignment using indexed numel
Jaroslav Hajek <highegg@gmail.com>
parents:
9303
diff
changeset
|
447 |
9501 | 448 2009-05-22 Benjamin Lindner <lindnerb@users.sourceforge.net> |
9303
adf676387922
properly #ifdef MSVC linker specific flags
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
9288
diff
changeset
|
449 |
adf676387922
properly #ifdef MSVC linker specific flags
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
9288
diff
changeset
|
450 * mkoctfile.cc.in: mask MSVC specific linker flags for mex output |
adf676387922
properly #ifdef MSVC linker specific flags
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
9288
diff
changeset
|
451 |
9288
7621f0b0e588
examples/@polynomial/end.m: Fix end for zero based indexing.
Robert T. Short <rtshort@ieee.org>
parents:
9285
diff
changeset
|
452 2009-06-02 Robert T. Short <octave@phaselockedsystems.com> |
7621f0b0e588
examples/@polynomial/end.m: Fix end for zero based indexing.
Robert T. Short <rtshort@ieee.org>
parents:
9285
diff
changeset
|
453 |
7621f0b0e588
examples/@polynomial/end.m: Fix end for zero based indexing.
Robert T. Short <rtshort@ieee.org>
parents:
9285
diff
changeset
|
454 * examples/@polynomial: Fix end method for zero based indexing. |
7621f0b0e588
examples/@polynomial/end.m: Fix end for zero based indexing.
Robert T. Short <rtshort@ieee.org>
parents:
9285
diff
changeset
|
455 |
9285
226f6d001ee2
further improve the polynomial example, fix indexing
Jaroslav Hajek <highegg@gmail.com>
parents:
9284
diff
changeset
|
456 2009-06-02 Jaroslav Hajek <highegg@gmail.com> |
226f6d001ee2
further improve the polynomial example, fix indexing
Jaroslav Hajek <highegg@gmail.com>
parents:
9284
diff
changeset
|
457 |
226f6d001ee2
further improve the polynomial example, fix indexing
Jaroslav Hajek <highegg@gmail.com>
parents:
9284
diff
changeset
|
458 * examples/@polynomial/subsref.m: Allow chained subscripts, |
226f6d001ee2
further improve the polynomial example, fix indexing
Jaroslav Hajek <highegg@gmail.com>
parents:
9284
diff
changeset
|
459 fix behavior according to docs. |
226f6d001ee2
further improve the polynomial example, fix indexing
Jaroslav Hajek <highegg@gmail.com>
parents:
9284
diff
changeset
|
460 * examples/@polynomial/subsasgn.m: Allow chained subscripts, |
226f6d001ee2
further improve the polynomial example, fix indexing
Jaroslav Hajek <highegg@gmail.com>
parents:
9284
diff
changeset
|
461 fix behavior according to docs. |
226f6d001ee2
further improve the polynomial example, fix indexing
Jaroslav Hajek <highegg@gmail.com>
parents:
9284
diff
changeset
|
462 |
9284
567e3e4ab74d
fix up examples/@polynomial
Robert T. Short <octave@phaselockedsystems.com>
parents:
9266
diff
changeset
|
463 2009-06-02 Robert T. Short <octave@phaselockedsystems.com> |
567e3e4ab74d
fix up examples/@polynomial
Robert T. Short <octave@phaselockedsystems.com>
parents:
9266
diff
changeset
|
464 |
567e3e4ab74d
fix up examples/@polynomial
Robert T. Short <octave@phaselockedsystems.com>
parents:
9266
diff
changeset
|
465 * examples/@polynomial: Remove tabs from all functions so |
567e3e4ab74d
fix up examples/@polynomial
Robert T. Short <octave@phaselockedsystems.com>
parents:
9266
diff
changeset
|
466 documentation looks right. Fix a bunch of methods |
567e3e4ab74d
fix up examples/@polynomial
Robert T. Short <octave@phaselockedsystems.com>
parents:
9266
diff
changeset
|
467 that didn't work. Add a method referred to in the docs |
567e3e4ab74d
fix up examples/@polynomial
Robert T. Short <octave@phaselockedsystems.com>
parents:
9266
diff
changeset
|
468 that didn't exist. |
567e3e4ab74d
fix up examples/@polynomial
Robert T. Short <octave@phaselockedsystems.com>
parents:
9266
diff
changeset
|
469 |
9266 | 470 2009-05-26 John W. Eaton <jwe@octave.org> |
471 | |
472 * src/dirfns.cc (Fpathsep): Allow path separator to be set. | |
473 | |
9259
75c502937d2c
Fix typo for termios.h
Thomas Weber <thomas.weber.mail at gmail.com>
parents:
9254
diff
changeset
|
474 2009-03-17 Thomas Weber <thomas.weber.mail at gmail.com> |
75c502937d2c
Fix typo for termios.h
Thomas Weber <thomas.weber.mail at gmail.com>
parents:
9254
diff
changeset
|
475 |
75c502937d2c
Fix typo for termios.h
Thomas Weber <thomas.weber.mail at gmail.com>
parents:
9254
diff
changeset
|
476 * configure.in: fix typo with regards to termios.h |
75c502937d2c
Fix typo for termios.h
Thomas Weber <thomas.weber.mail at gmail.com>
parents:
9254
diff
changeset
|
477 |
9254
fbb43bc17a4d
add missing Makefile in examples/@FIRfilter
Jaroslav Hajek <highegg@gmail.com>
parents:
9252
diff
changeset
|
478 2009-05-25 Jaroslav Hajek <highegg@gmail.com> |
fbb43bc17a4d
add missing Makefile in examples/@FIRfilter
Jaroslav Hajek <highegg@gmail.com>
parents:
9252
diff
changeset
|
479 |
fbb43bc17a4d
add missing Makefile in examples/@FIRfilter
Jaroslav Hajek <highegg@gmail.com>
parents:
9252
diff
changeset
|
480 * examples/@FIRfilter/Makefile.in: New file. |
fbb43bc17a4d
add missing Makefile in examples/@FIRfilter
Jaroslav Hajek <highegg@gmail.com>
parents:
9252
diff
changeset
|
481 * examples/Makefile.in: Include it. |
fbb43bc17a4d
add missing Makefile in examples/@FIRfilter
Jaroslav Hajek <highegg@gmail.com>
parents:
9252
diff
changeset
|
482 * configure.in: Ditto. |
fbb43bc17a4d
add missing Makefile in examples/@FIRfilter
Jaroslav Hajek <highegg@gmail.com>
parents:
9252
diff
changeset
|
483 |
9501 | 484 2009-05-24 Benjamin Lindner <lindnerb@users.sourceforge.net> |
9252
a1d20052517a
support for mkoctfile.exe and octave-config.exe on mingw platform
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
9251
diff
changeset
|
485 |
a1d20052517a
support for mkoctfile.exe and octave-config.exe on mingw platform
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
9251
diff
changeset
|
486 * configure.in: (SCRIPTS_EXE_SUFFIX) Define to ".exe" for |
a1d20052517a
support for mkoctfile.exe and octave-config.exe on mingw platform
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
9251
diff
changeset
|
487 mingw32 compilation (similar to msvc) |
a1d20052517a
support for mkoctfile.exe and octave-config.exe on mingw platform
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
9251
diff
changeset
|
488 |
9251
f8b8ab529913
improve OOP documentation
Robert T. Short <octave@phaselockedsystems.com>
parents:
9242
diff
changeset
|
489 2009-05-24 Robert T. Short <octave@phaselockedsystems.com> |
f8b8ab529913
improve OOP documentation
Robert T. Short <octave@phaselockedsystems.com>
parents:
9242
diff
changeset
|
490 |
f8b8ab529913
improve OOP documentation
Robert T. Short <octave@phaselockedsystems.com>
parents:
9242
diff
changeset
|
491 * examples/@FIRfilter: added FIRfilter class example. |
f8b8ab529913
improve OOP documentation
Robert T. Short <octave@phaselockedsystems.com>
parents:
9242
diff
changeset
|
492 |
9242 | 493 2009-05-22 Marco Atzeri <marco_atzeri@yahoo.it> |
494 | |
495 * src/sysdep.cc: Removed CYGWIN_init | |
496 | |
9241
60bbc66bb0e2
Correct my previous mistake for cygwin SHLBIN and SHLBINPRE
Marco Atzeri <marco_atzeri@yahoo.it>
parents:
9231
diff
changeset
|
497 2009-05-21 Marco Atzeri <marco_atzeri@yahoo.it> |
60bbc66bb0e2
Correct my previous mistake for cygwin SHLBIN and SHLBINPRE
Marco Atzeri <marco_atzeri@yahoo.it>
parents:
9231
diff
changeset
|
498 * configure.in: Correct my mistake in cygwin SHLBINPRE SHLBIN |
60bbc66bb0e2
Correct my previous mistake for cygwin SHLBIN and SHLBINPRE
Marco Atzeri <marco_atzeri@yahoo.it>
parents:
9231
diff
changeset
|
499 |
9501 | 500 2008-05-21 Michael Goffioul <michael.goffioul@gmail.com> |
9229
4b94672337d0
Add Makefile/configure support for C++ version of mkoctfile, octave-config and octave-bug
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9187
diff
changeset
|
501 |
9231
8a5a04b6c46b
Fixes confgure script for QHULL detection and add dependency on user32 [Win32]
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9230
diff
changeset
|
502 * aclocal.m4 (AC_CHECK_QHULL_OK): Do not use -lm under |
8a5a04b6c46b
Fixes confgure script for QHULL detection and add dependency on user32 [Win32]
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9230
diff
changeset
|
503 Windows systems. |
8a5a04b6c46b
Fixes confgure script for QHULL detection and add dependency on user32 [Win32]
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9230
diff
changeset
|
504 * configure.in: Add -luser32 to LIBS under Windows. |
8a5a04b6c46b
Fixes confgure script for QHULL detection and add dependency on user32 [Win32]
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9230
diff
changeset
|
505 |
9229
4b94672337d0
Add Makefile/configure support for C++ version of mkoctfile, octave-config and octave-bug
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9187
diff
changeset
|
506 * configure.in (SCRIPTS_EXE_SUFFIX): New substituted |
4b94672337d0
Add Makefile/configure support for C++ version of mkoctfile, octave-config and octave-bug
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9187
diff
changeset
|
507 variable. Define to ".exe" for MSVC compilation. |
4b94672337d0
Add Makefile/configure support for C++ version of mkoctfile, octave-config and octave-bug
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9187
diff
changeset
|
508 * octMakefile.in (SCRIPTS_EXE_SUFFIX): New variable. |
4b94672337d0
Add Makefile/configure support for C++ version of mkoctfile, octave-config and octave-bug
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9187
diff
changeset
|
509 (DISTFILES): Add mkoctfile.cc.in, octave-config.cc.in and |
4b94672337d0
Add Makefile/configure support for C++ version of mkoctfile, octave-config and octave-bug
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9187
diff
changeset
|
510 octave-bug.cc.in. |
4b94672337d0
Add Makefile/configure support for C++ version of mkoctfile, octave-config and octave-bug
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9187
diff
changeset
|
511 (SHELL_SCRIPTS): Use SCRIPTS_EXE_SUFFIX. |
4b94672337d0
Add Makefile/configure support for C++ version of mkoctfile, octave-config and octave-bug
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9187
diff
changeset
|
512 (mkoctfile.cc, mkoctfile$(EXEEXT)): New build rules. |
4b94672337d0
Add Makefile/configure support for C++ version of mkoctfile, octave-config and octave-bug
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9187
diff
changeset
|
513 (octave-config.cc, octave-config$(EXEEXT)): Likewise. |
4b94672337d0
Add Makefile/configure support for C++ version of mkoctfile, octave-config and octave-bug
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9187
diff
changeset
|
514 (octave-bug.cc, octave-bug$(EXEEXT)): Likewise. |
4b94672337d0
Add Makefile/configure support for C++ version of mkoctfile, octave-config and octave-bug
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9187
diff
changeset
|
515 (install, install-strip, uninstall): Use SCRIPTS_EXE_SUFFIX. |
4b94672337d0
Add Makefile/configure support for C++ version of mkoctfile, octave-config and octave-bug
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9187
diff
changeset
|
516 (maintainer-clean, distclean): Remove mkoctfile.[cc|o|exe], |
4b94672337d0
Add Makefile/configure support for C++ version of mkoctfile, octave-config and octave-bug
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9187
diff
changeset
|
517 octave-config.[cc|o|exe] and octave-bug.[cc|o|exe]. |
4b94672337d0
Add Makefile/configure support for C++ version of mkoctfile, octave-config and octave-bug
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9187
diff
changeset
|
518 (clean): Remove mkoctfile$(EXEEXT), octave-config$(EXEEXT), |
4b94672337d0
Add Makefile/configure support for C++ version of mkoctfile, octave-config and octave-bug
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9187
diff
changeset
|
519 octave-bug$(EXEEXT) and the corresponding object files. |
4b94672337d0
Add Makefile/configure support for C++ version of mkoctfile, octave-config and octave-bug
Michael Goffioul <michael.goffioul@gmail.com>
parents:
9187
diff
changeset
|
520 |
9501 | 521 2009-05-07 Rik <rdrider0-list@yahoo.com> |
9226
50c7d87ecfa1
Remove non-existent mirrors from README.mirrors prior to 3.2 release.
Rik <rdrider0-list@yahoo.com>
parents:
9187
diff
changeset
|
522 |
50c7d87ecfa1
Remove non-existent mirrors from README.mirrors prior to 3.2 release.
Rik <rdrider0-list@yahoo.com>
parents:
9187
diff
changeset
|
523 * README.mirrors: Remove invalid mirror sites which no longer exist. |
50c7d87ecfa1
Remove non-existent mirrors from README.mirrors prior to 3.2 release.
Rik <rdrider0-list@yahoo.com>
parents:
9187
diff
changeset
|
524 |
9187
a3237ae32c0d
eliminate last remnants of F2C variables
John W. Eaton <jwe@octave.org>
parents:
9186
diff
changeset
|
525 2009-05-07 John W. Eaton <jwe@octave.org> |
a3237ae32c0d
eliminate last remnants of F2C variables
John W. Eaton <jwe@octave.org>
parents:
9186
diff
changeset
|
526 |
a3237ae32c0d
eliminate last remnants of F2C variables
John W. Eaton <jwe@octave.org>
parents:
9186
diff
changeset
|
527 * configure.in, mkoctfile.in, mkoctfile.cc.in, octave-bug.in, |
a3237ae32c0d
eliminate last remnants of F2C variables
John W. Eaton <jwe@octave.org>
parents:
9186
diff
changeset
|
528 octave-bug.cc.in: Eliminate last remnants of f2c goop. |
a3237ae32c0d
eliminate last remnants of F2C variables
John W. Eaton <jwe@octave.org>
parents:
9186
diff
changeset
|
529 |
9186
49a0c58a7dcf
Added SHLPRE for SHLEXT instead of SHLLIBPRE
marco_atzeri@yahoo.it
parents:
9178
diff
changeset
|
530 2009-05-07 Marco Atzeri <marco_atzeri@yahoo.it> |
49a0c58a7dcf
Added SHLPRE for SHLEXT instead of SHLLIBPRE
marco_atzeri@yahoo.it
parents:
9178
diff
changeset
|
531 |
49a0c58a7dcf
Added SHLPRE for SHLEXT instead of SHLLIBPRE
marco_atzeri@yahoo.it
parents:
9178
diff
changeset
|
532 * configure.in, Makeconf.in: (SHLPRE): Rename from SHLLIBPRE. |
49a0c58a7dcf
Added SHLPRE for SHLEXT instead of SHLLIBPRE
marco_atzeri@yahoo.it
parents:
9178
diff
changeset
|
533 |
9178
a6375c37dad4
update config stuff to gripe with g++-3.x
Jaroslav Hajek <highegg@gmail.com>
parents:
9176
diff
changeset
|
534 2009-05-05 Jaroslav Hajek <highegg@gmail.com> |
a6375c37dad4
update config stuff to gripe with g++-3.x
Jaroslav Hajek <highegg@gmail.com>
parents:
9176
diff
changeset
|
535 |
a6375c37dad4
update config stuff to gripe with g++-3.x
Jaroslav Hajek <highegg@gmail.com>
parents:
9176
diff
changeset
|
536 * configure.in: Include the whole 3.x g++ series as problematic. |
a6375c37dad4
update config stuff to gripe with g++-3.x
Jaroslav Hajek <highegg@gmail.com>
parents:
9176
diff
changeset
|
537 * Makefile: Don't mention that g++-3.x might work. |
a6375c37dad4
update config stuff to gripe with g++-3.x
Jaroslav Hajek <highegg@gmail.com>
parents:
9176
diff
changeset
|
538 |
9176
7ea76c8a59f7
configure.in: put -lftgl ahead of $FT2_LIBS, and $FT2_LIBS ahead of $OPENGL_LIBS
John W. Eaton <jwe@octave.org>
parents:
9173
diff
changeset
|
539 2009-05-04 John W. Eaton <jwe@octave.org> |
7ea76c8a59f7
configure.in: put -lftgl ahead of $FT2_LIBS, and $FT2_LIBS ahead of $OPENGL_LIBS
John W. Eaton <jwe@octave.org>
parents:
9173
diff
changeset
|
540 |
7ea76c8a59f7
configure.in: put -lftgl ahead of $FT2_LIBS, and $FT2_LIBS ahead of $OPENGL_LIBS
John W. Eaton <jwe@octave.org>
parents:
9173
diff
changeset
|
541 * configure.in: Put -lftgl ahead of $FT2_LIBS, and $FT2_LIBS ahead |
7ea76c8a59f7
configure.in: put -lftgl ahead of $FT2_LIBS, and $FT2_LIBS ahead of $OPENGL_LIBS
John W. Eaton <jwe@octave.org>
parents:
9173
diff
changeset
|
542 of $OPENGL_LIBS. |
7ea76c8a59f7
configure.in: put -lftgl ahead of $FT2_LIBS, and $FT2_LIBS ahead of $OPENGL_LIBS
John W. Eaton <jwe@octave.org>
parents:
9173
diff
changeset
|
543 |
9171
7500cfff4728
configure.in: provide decls for exp2, round, and tgamma if they are missing
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9110
diff
changeset
|
544 2009-05-04 Peter O'Gorman <pogma@thewrittenword.com> |
7500cfff4728
configure.in: provide decls for exp2, round, and tgamma if they are missing
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9110
diff
changeset
|
545 |
9173
224634b2e6e3
configure.in, aclocal.m4: check for c99 vsnprintf
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9172
diff
changeset
|
546 * aclocal.m4 (OCTAVE_HAVE_C99_VSNPRINTF): New macro. |
224634b2e6e3
configure.in, aclocal.m4: check for c99 vsnprintf
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9172
diff
changeset
|
547 * configure.in: Use it. |
224634b2e6e3
configure.in, aclocal.m4: check for c99 vsnprintf
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9172
diff
changeset
|
548 |
9172
cd68431b395a
configure.in: shared library fixes for AIX and HPUX
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9171
diff
changeset
|
549 * configure.in (rs6000-ibm-aix* | powerpc-ibm-aix*): Set |
cd68431b395a
configure.in: shared library fixes for AIX and HPUX
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9171
diff
changeset
|
550 library_path_var to LIBPATH. |
cd68431b395a
configure.in: shared library fixes for AIX and HPUX
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9171
diff
changeset
|
551 (hppa*-hp-hpux*): Set library_path_var to SHLIB_PATH. |
cd68431b395a
configure.in: shared library fixes for AIX and HPUX
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9171
diff
changeset
|
552 (ia64*-hp-hpux*): New case for shared library variables. |
cd68431b395a
configure.in: shared library fixes for AIX and HPUX
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9171
diff
changeset
|
553 |
9171
7500cfff4728
configure.in: provide decls for exp2, round, and tgamma if they are missing
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9110
diff
changeset
|
554 * configure.in: Provide decls for exp2, round, and tgamma if they |
7500cfff4728
configure.in: provide decls for exp2, round, and tgamma if they are missing
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9110
diff
changeset
|
555 are missing. |
7500cfff4728
configure.in: provide decls for exp2, round, and tgamma if they are missing
Peter O'Gorman <pogma@thewrittenword.com>
parents:
9110
diff
changeset
|
556 |
9110
22ae6b3411a7
Add isocolor, isonormals and isosurface functions (For Martin Helm). Add 3D filled triangular patches and the trisurf function
David Bateman <dbateman@free.fr>
parents:
9091
diff
changeset
|
557 2009-04-11 David Bateman <dbateman@free.fr> |
22ae6b3411a7
Add isocolor, isonormals and isosurface functions (For Martin Helm). Add 3D filled triangular patches and the trisurf function
David Bateman <dbateman@free.fr>
parents:
9091
diff
changeset
|
558 |
22ae6b3411a7
Add isocolor, isonormals and isosurface functions (For Martin Helm). Add 3D filled triangular patches and the trisurf function
David Bateman <dbateman@free.fr>
parents:
9091
diff
changeset
|
559 * NEWS: Add new graphics functions. |
22ae6b3411a7
Add isocolor, isonormals and isosurface functions (For Martin Helm). Add 3D filled triangular patches and the trisurf function
David Bateman <dbateman@free.fr>
parents:
9091
diff
changeset
|
560 |
9090
298b57a4fec2
configure.in: tweak warning flags
John W. Eaton <jwe@octave.org>
parents:
9078
diff
changeset
|
561 2009-04-05 John W. Eaton <jwe@octave.org> |
298b57a4fec2
configure.in: tweak warning flags
John W. Eaton <jwe@octave.org>
parents:
9078
diff
changeset
|
562 |
9091
45c832e9976d
configure.in: require autoconf 2.60; eliminate some obsolete macros
John W. Eaton <jwe@octave.org>
parents:
9090
diff
changeset
|
563 * configure.in: Use AC_USE_SYSTEM_EXTENSIONS instead of |
45c832e9976d
configure.in: require autoconf 2.60; eliminate some obsolete macros
John W. Eaton <jwe@octave.org>
parents:
9090
diff
changeset
|
564 AC_GNU_SOURCE, AC_AIX, AC_MINIX, and AC_ISC_POSIX. |
45c832e9976d
configure.in: require autoconf 2.60; eliminate some obsolete macros
John W. Eaton <jwe@octave.org>
parents:
9090
diff
changeset
|
565 Require Autoconf 2.60. |
45c832e9976d
configure.in: require autoconf 2.60; eliminate some obsolete macros
John W. Eaton <jwe@octave.org>
parents:
9090
diff
changeset
|
566 |
9090
298b57a4fec2
configure.in: tweak warning flags
John W. Eaton <jwe@octave.org>
parents:
9078
diff
changeset
|
567 * configure.in: Add -Wformat to extra warning flags. Add |
298b57a4fec2
configure.in: tweak warning flags
John W. Eaton <jwe@octave.org>
parents:
9078
diff
changeset
|
568 -Wconversion to strict warning flags. |
298b57a4fec2
configure.in: tweak warning flags
John W. Eaton <jwe@octave.org>
parents:
9078
diff
changeset
|
569 |
9078
e92591954ea2
Makeconf.in (do-script-install): Use $(INSTALL_DATA) instead of mv to install PKG_ADD file
John W. Eaton <jwe@octave.org>
parents:
9077
diff
changeset
|
570 2009-04-02 John W. Eaton <jwe@octave.org> |
e92591954ea2
Makeconf.in (do-script-install): Use $(INSTALL_DATA) instead of mv to install PKG_ADD file
John W. Eaton <jwe@octave.org>
parents:
9077
diff
changeset
|
571 |
e92591954ea2
Makeconf.in (do-script-install): Use $(INSTALL_DATA) instead of mv to install PKG_ADD file
John W. Eaton <jwe@octave.org>
parents:
9077
diff
changeset
|
572 * Makeconf.in (do-script-install): Use $(INSTALL_DATA) instead of |
e92591954ea2
Makeconf.in (do-script-install): Use $(INSTALL_DATA) instead of mv to install PKG_ADD file
John W. Eaton <jwe@octave.org>
parents:
9077
diff
changeset
|
573 mv to install PKG_ADD file. |
e92591954ea2
Makeconf.in (do-script-install): Use $(INSTALL_DATA) instead of mv to install PKG_ADD file
John W. Eaton <jwe@octave.org>
parents:
9077
diff
changeset
|
574 |
9077
f341cba2c4c6
Makeconf.in (do-subst-script-vals): Use SHLLIBPRE instead of LIBPRE for names for shared libraries
Marco Atzeri <marco_atzeri@yahoo.it>
parents:
9054
diff
changeset
|
575 2009-04-02 Marco Atzeri <marco_atzeri@yahoo.it> |
f341cba2c4c6
Makeconf.in (do-subst-script-vals): Use SHLLIBPRE instead of LIBPRE for names for shared libraries
Marco Atzeri <marco_atzeri@yahoo.it>
parents:
9054
diff
changeset
|
576 |
f341cba2c4c6
Makeconf.in (do-subst-script-vals): Use SHLLIBPRE instead of LIBPRE for names for shared libraries
Marco Atzeri <marco_atzeri@yahoo.it>
parents:
9054
diff
changeset
|
577 * Makeconf.in (do-subst-script-vals): Use SHLLIBPRE instead of |
f341cba2c4c6
Makeconf.in (do-subst-script-vals): Use SHLLIBPRE instead of LIBPRE for names for shared libraries
Marco Atzeri <marco_atzeri@yahoo.it>
parents:
9054
diff
changeset
|
578 LIBPRE for names for shared libraries. |
f341cba2c4c6
Makeconf.in (do-subst-script-vals): Use SHLLIBPRE instead of LIBPRE for names for shared libraries
Marco Atzeri <marco_atzeri@yahoo.it>
parents:
9054
diff
changeset
|
579 |
9054
0735e427c6c0
configure fixes for cygwin
Marco Atzeri <marco_atzeri@yahoo.it>
parents:
9049
diff
changeset
|
580 2009-03-28 Marco Atzeri <marco_atzeri@yahoo.it> |
0735e427c6c0
configure fixes for cygwin
Marco Atzeri <marco_atzeri@yahoo.it>
parents:
9049
diff
changeset
|
581 |
0735e427c6c0
configure fixes for cygwin
Marco Atzeri <marco_atzeri@yahoo.it>
parents:
9049
diff
changeset
|
582 * configure.in: For cygwin, set LIBPRE=lib and clear CPICFLAG, |
0735e427c6c0
configure fixes for cygwin
Marco Atzeri <marco_atzeri@yahoo.it>
parents:
9049
diff
changeset
|
583 CXXPICFLAG, and FPICFLAG. |
0735e427c6c0
configure fixes for cygwin
Marco Atzeri <marco_atzeri@yahoo.it>
parents:
9049
diff
changeset
|
584 |
9501 | 585 2009-03-27 Jaroslav Hajek <highegg@gmail.com> |
9049 | 586 |
587 * aclocal.m4 (OCTAVE_CMATH_FUNC): Add missing AC_LANG_POP. | |
588 * configure.in: Enclose string in quotes. | |
589 | |
9006 | 590 2009-03-23 Jaroslav Hajek <highegg@gmail.com> |
591 | |
592 * NEWS: More updates. | |
593 | |
8998
a48fba01e4ac
optimize isnan/isinf/isfinite mappers
Jaroslav Hajek <highegg@gmail.com>
parents:
8984
diff
changeset
|
594 2009-03-20 Jaroslav Hajek <highegg@gmail.com> |
a48fba01e4ac
optimize isnan/isinf/isfinite mappers
Jaroslav Hajek <highegg@gmail.com>
parents:
8984
diff
changeset
|
595 |
a48fba01e4ac
optimize isnan/isinf/isfinite mappers
Jaroslav Hajek <highegg@gmail.com>
parents:
8984
diff
changeset
|
596 * aclocal.m4 (OCTAVE_CMATH_FUNC): New macro. |
a48fba01e4ac
optimize isnan/isinf/isfinite mappers
Jaroslav Hajek <highegg@gmail.com>
parents:
8984
diff
changeset
|
597 * configure.in: Use it. |
a48fba01e4ac
optimize isnan/isinf/isfinite mappers
Jaroslav Hajek <highegg@gmail.com>
parents:
8984
diff
changeset
|
598 |
8938
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8932
diff
changeset
|
599 2009-03-09 John W. Eaton <jwe@octave.org> |
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8932
diff
changeset
|
600 |
8940
6994961bf1f4
use doc-cache instead of DOC for doc cache file name
John W. Eaton <jwe@octave.org>
parents:
8938
diff
changeset
|
601 * run-octave.in: Use doc-cache instead of DOC for doc cache file. |
6994961bf1f4
use doc-cache instead of DOC for doc cache file name
John W. Eaton <jwe@octave.org>
parents:
8938
diff
changeset
|
602 * configure.in: Likewise. |
6994961bf1f4
use doc-cache instead of DOC for doc cache file name
John W. Eaton <jwe@octave.org>
parents:
8938
diff
changeset
|
603 |
8938
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8932
diff
changeset
|
604 * configure.in (--enable-extra-warning-flags): New option to |
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8932
diff
changeset
|
605 control extra compiler warning flags. |
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8932
diff
changeset
|
606 (--enable-strict-warning-flags): Rename from --enable-picky-flags. |
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8932
diff
changeset
|
607 (GXX_STRICT_FLAGS): Remove -Wenum-clash from the list. |
35e18344fae8
configure.in: options for compiler warning flags
John W. Eaton <jwe@octave.org>
parents:
8932
diff
changeset
|
608 |
8932
2d0f8692a82e
Add the 'histc' function
Soren Hauberg <hauberg@gmail.com>
parents:
8919
diff
changeset
|
609 2009-03-08 S�ren Hauberg <hauberg@gmail.com> |
2d0f8692a82e
Add the 'histc' function
Soren Hauberg <hauberg@gmail.com>
parents:
8919
diff
changeset
|
610 |
2d0f8692a82e
Add the 'histc' function
Soren Hauberg <hauberg@gmail.com>
parents:
8919
diff
changeset
|
611 * NEWS: Mention 'histc'. |
2d0f8692a82e
Add the 'histc' function
Soren Hauberg <hauberg@gmail.com>
parents:
8919
diff
changeset
|
612 |
8919
79474f16215c
config.sub, config.guess: update from FSF sources
John W. Eaton <jwe@octave.org>
parents:
8865
diff
changeset
|
613 2009-03-07 John W. Eaton <jwe@octave.org> |
79474f16215c
config.sub, config.guess: update from FSF sources
John W. Eaton <jwe@octave.org>
parents:
8865
diff
changeset
|
614 |
79474f16215c
config.sub, config.guess: update from FSF sources
John W. Eaton <jwe@octave.org>
parents:
8865
diff
changeset
|
615 * config.guess, config.sub: Update from FSF sources. |
79474f16215c
config.sub, config.guess: update from FSF sources
John W. Eaton <jwe@octave.org>
parents:
8865
diff
changeset
|
616 |
8865
eace5649a8b5
set default value for doc_cache_file variable
John W. Eaton <jwe@octave.org>
parents:
8861
diff
changeset
|
617 2009-02-25 John W. Eaton <jwe@octave.org> |
eace5649a8b5
set default value for doc_cache_file variable
John W. Eaton <jwe@octave.org>
parents:
8861
diff
changeset
|
618 |
eace5649a8b5
set default value for doc_cache_file variable
John W. Eaton <jwe@octave.org>
parents:
8861
diff
changeset
|
619 * configure.in (doc_cache_file): New default variable |
eace5649a8b5
set default value for doc_cache_file variable
John W. Eaton <jwe@octave.org>
parents:
8861
diff
changeset
|
620 * Makeconf.in (@doc_cache_file, do-subst-default-vals): Substitute it. |
eace5649a8b5
set default value for doc_cache_file variable
John W. Eaton <jwe@octave.org>
parents:
8861
diff
changeset
|
621 |
8850
538184c540a9
Add make target "configfiles" to automatically regenerate configuration files
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8849
diff
changeset
|
622 2009-02-24 John W. Eaton <jwe@octave.org> |
538184c540a9
Add make target "configfiles" to automatically regenerate configuration files
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8849
diff
changeset
|
623 |
8861 | 624 * run-octave.in (DOCFILE): New variable. Pass --doc-cache-file |
625 option to Octave. | |
626 | |
8850
538184c540a9
Add make target "configfiles" to automatically regenerate configuration files
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8849
diff
changeset
|
627 * configure.in: Copy Makefile to build directory if not building |
538184c540a9
Add make target "configfiles" to automatically regenerate configuration files
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8849
diff
changeset
|
628 in srcdir. |
538184c540a9
Add make target "configfiles" to automatically regenerate configuration files
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8849
diff
changeset
|
629 |
8849
8b7e448d989c
Do not autogenerate Makefile from Makefile.in.
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8792
diff
changeset
|
630 2009-02-24 Thorsten Meyer <thorsten@hexe> |
8b7e448d989c
Do not autogenerate Makefile from Makefile.in.
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8792
diff
changeset
|
631 |
8850
538184c540a9
Add make target "configfiles" to automatically regenerate configuration files
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8849
diff
changeset
|
632 * configure.in: AC_SUBST ac_config_files. |
538184c540a9
Add make target "configfiles" to automatically regenerate configuration files
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8849
diff
changeset
|
633 * Makeconf.in (config_opts): Define CONFIG_SUBDIRS variable. |
538184c540a9
Add make target "configfiles" to automatically regenerate configuration files
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8849
diff
changeset
|
634 * Makefile: Add make target for configuration files. |
538184c540a9
Add make target "configfiles" to automatically regenerate configuration files
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8849
diff
changeset
|
635 * octMakefile.in: Add make targets for configuration files, |
538184c540a9
Add make target "configfiles" to automatically regenerate configuration files
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8849
diff
changeset
|
636 config.status and configure. |
538184c540a9
Add make target "configfiles" to automatically regenerate configuration files
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8849
diff
changeset
|
637 |
8849
8b7e448d989c
Do not autogenerate Makefile from Makefile.in.
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8792
diff
changeset
|
638 * Makefile.in: Rename to Makefile. |
8b7e448d989c
Do not autogenerate Makefile from Makefile.in.
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8792
diff
changeset
|
639 * configure.in: Remove Makefile from list of autogenerated |
8b7e448d989c
Do not autogenerate Makefile from Makefile.in.
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8792
diff
changeset
|
640 configuration files. |
8b7e448d989c
Do not autogenerate Makefile from Makefile.in.
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8792
diff
changeset
|
641 * octMakefile.in: Remove references to Makefile.in, add Makefile |
8b7e448d989c
Do not autogenerate Makefile from Makefile.in.
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8792
diff
changeset
|
642 to list of CONF_DISTFILES. |
8b7e448d989c
Do not autogenerate Makefile from Makefile.in.
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8792
diff
changeset
|
643 * octMakefile.in (maintainer-clean distclean): Don't delete Makefile. |
8b7e448d989c
Do not autogenerate Makefile from Makefile.in.
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8792
diff
changeset
|
644 |
8792
bbb3fa6778f3
use mkstemps as replacement for mkstemp on mingw32
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8779
diff
changeset
|
645 2009-02-17 Benjamin Lindner <lindnerb@users.sourceforge.net> |
bbb3fa6778f3
use mkstemps as replacement for mkstemp on mingw32
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8779
diff
changeset
|
646 |
bbb3fa6778f3
use mkstemps as replacement for mkstemp on mingw32
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8779
diff
changeset
|
647 * configure.in: Check for mkstemps on MinGW platform |
bbb3fa6778f3
use mkstemps as replacement for mkstemp on mingw32
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8779
diff
changeset
|
648 (HAVE_MKSTEMPS): Define if mkstsmps is avilable in libiberty. |
bbb3fa6778f3
use mkstemps as replacement for mkstemp on mingw32
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8779
diff
changeset
|
649 |
8779 | 650 2009-02-17 Jaroslav Hajek <highegg@gmail.com> |
651 | |
652 * NEWS: Mention cummin and cummax | |
653 | |
8772
aeedc045cfe3
toplev.cc (Foctave_config_info): add CARBON_LIBS, X11_INCFLAGS, and X11_LIBS to the struct
John W. Eaton <jwe@octave.org>
parents:
8771
diff
changeset
|
654 2009-02-17 John W. Eaton <jwe@octave.org> |
aeedc045cfe3
toplev.cc (Foctave_config_info): add CARBON_LIBS, X11_INCFLAGS, and X11_LIBS to the struct
John W. Eaton <jwe@octave.org>
parents:
8771
diff
changeset
|
655 |
8775
a2a9dc5e8565
octave.gperf: eliminate whitespace to allow gperf 2.7.2 to work
John W. Eaton <jwe@octave.org>
parents:
8772
diff
changeset
|
656 * aclocal.m4 (OCTAVE_PROG_GPERF): Don't run gperf. |
a2a9dc5e8565
octave.gperf: eliminate whitespace to allow gperf 2.7.2 to work
John W. Eaton <jwe@octave.org>
parents:
8772
diff
changeset
|
657 |
8772
aeedc045cfe3
toplev.cc (Foctave_config_info): add CARBON_LIBS, X11_INCFLAGS, and X11_LIBS to the struct
John W. Eaton <jwe@octave.org>
parents:
8771
diff
changeset
|
658 * Makeconf.in (do-subst-config-vals): Substitute CARBON_LIBS, |
aeedc045cfe3
toplev.cc (Foctave_config_info): add CARBON_LIBS, X11_INCFLAGS, and X11_LIBS to the struct
John W. Eaton <jwe@octave.org>
parents:
8771
diff
changeset
|
659 X11_INCFLAGS, and X11_LIBS. |
aeedc045cfe3
toplev.cc (Foctave_config_info): add CARBON_LIBS, X11_INCFLAGS, and X11_LIBS to the struct
John W. Eaton <jwe@octave.org>
parents:
8771
diff
changeset
|
660 |
8770
af676d09da08
Fix test for X11 if "--without-x" is given.
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8755
diff
changeset
|
661 2009-02-17 Thomas Treichl <Thomas.Treichl@gmx.net> |
af676d09da08
Fix test for X11 if "--without-x" is given.
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8755
diff
changeset
|
662 |
8771
d3382daaf4d2
Use CARBON_LIBS instead of LIBS for framework Carbon.
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8770
diff
changeset
|
663 * Makeconf.in: Substitute CARBON_LIBS. |
d3382daaf4d2
Use CARBON_LIBS instead of LIBS for framework Carbon.
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8770
diff
changeset
|
664 * configure.in: Use CARBON_LIBS instead of LIBS for framework Carbon. |
d3382daaf4d2
Use CARBON_LIBS instead of LIBS for framework Carbon.
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8770
diff
changeset
|
665 |
8770
af676d09da08
Fix test for X11 if "--without-x" is given.
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8755
diff
changeset
|
666 * configure.in: Fix test for X11 if "--without-x" is given. |
af676d09da08
Fix test for X11 if "--without-x" is given.
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8755
diff
changeset
|
667 |
8755 | 668 2009-02-16 Jaroslav Hajek <highegg@gmail.com> |
669 | |
670 * NEWS: Yet more updates. | |
671 | |
8747 | 672 2009-02-16 John W. Eaton <jwe@octave.org> |
673 | |
674 * NEWS: Mention command-style parsing changes. More updates. | |
675 | |
8737 | 676 2009-02-13 John W. Eaton <jwe@octave.org> |
677 | |
678 * NEWS: Update for release. | |
679 | |
9501 | 680 2009-02-11 Thomas Treichl <Thomas.Treichl@gmx.net> |
8724
a50228129dba
Introduce new macro OCTAVE_GLUTESSCALLBACK_THREEDOTS. Use definitions HAVE_FRAMEWORK_OPENGL and HAVE_GLUTESSCALLBACK_THREEDOTS for Mac's framework OpenGL implementation.
Ben Abbott <bpabbott@mac.com>
parents:
8723
diff
changeset
|
681 |
a50228129dba
Introduce new macro OCTAVE_GLUTESSCALLBACK_THREEDOTS. Use definitions HAVE_FRAMEWORK_OPENGL and HAVE_GLUTESSCALLBACK_THREEDOTS for Mac's framework OpenGL implementation.
Ben Abbott <bpabbott@mac.com>
parents:
8723
diff
changeset
|
682 * aclocal.m4 (OCTAVE_GLUTESSCALLBACK_THREEDOTS): New macro. |
a50228129dba
Introduce new macro OCTAVE_GLUTESSCALLBACK_THREEDOTS. Use definitions HAVE_FRAMEWORK_OPENGL and HAVE_GLUTESSCALLBACK_THREEDOTS for Mac's framework OpenGL implementation.
Ben Abbott <bpabbott@mac.com>
parents:
8723
diff
changeset
|
683 (OCTAVE_OPENGL): Use it in OpenGL check. |
a50228129dba
Introduce new macro OCTAVE_GLUTESSCALLBACK_THREEDOTS. Use definitions HAVE_FRAMEWORK_OPENGL and HAVE_GLUTESSCALLBACK_THREEDOTS for Mac's framework OpenGL implementation.
Ben Abbott <bpabbott@mac.com>
parents:
8723
diff
changeset
|
684 |
9501 | 685 2009-02-11 Ben Abbott <bpabbott@mac.com> |
8723
0899370cce9f
Include FTGLTextureFont.h when FTGL_UPPER_CASE is not defined.
Ben Abbott <bpabbott@mac.com>
parents:
8722
diff
changeset
|
686 |
0899370cce9f
Include FTGLTextureFont.h when FTGL_UPPER_CASE is not defined.
Ben Abbott <bpabbott@mac.com>
parents:
8722
diff
changeset
|
687 * configure.in: Include FTGLTextureFont.h when FTGL_UPPER_CASE is |
0899370cce9f
Include FTGLTextureFont.h when FTGL_UPPER_CASE is not defined.
Ben Abbott <bpabbott@mac.com>
parents:
8722
diff
changeset
|
688 not defined. |
0899370cce9f
Include FTGLTextureFont.h when FTGL_UPPER_CASE is not defined.
Ben Abbott <bpabbott@mac.com>
parents:
8722
diff
changeset
|
689 |
8719
679c270b7584
install DOC and NEWS in $octetcdir
John W. Eaton <jwe@octave.org>
parents:
8718
diff
changeset
|
690 2009-02-11 John W. Eaton <jwe@octave.org> |
679c270b7584
install DOC and NEWS in $octetcdir
John W. Eaton <jwe@octave.org>
parents:
8718
diff
changeset
|
691 |
679c270b7584
install DOC and NEWS in $octetcdir
John W. Eaton <jwe@octave.org>
parents:
8718
diff
changeset
|
692 * configure.in (octetcdir): New default value. |
679c270b7584
install DOC and NEWS in $octetcdir
John W. Eaton <jwe@octave.org>
parents:
8718
diff
changeset
|
693 * Makeconf.in (octetcdir): New variable. |
679c270b7584
install DOC and NEWS in $octetcdir
John W. Eaton <jwe@octave.org>
parents:
8718
diff
changeset
|
694 (do-subst-default-vals): Substitute octetcdir. |
679c270b7584
install DOC and NEWS in $octetcdir
John W. Eaton <jwe@octave.org>
parents:
8718
diff
changeset
|
695 * octMakefile.in (install, uninstall): Use $(octetcdir) for NEWS. |
8722
3cedb606145d
create $(DESTDIR)$(octetcdir) when installing
John W. Eaton <jwe@octave.org>
parents:
8719
diff
changeset
|
696 (DIRS_TO_MAKE): Add $(octetcdir) to the list. |
8719
679c270b7584
install DOC and NEWS in $octetcdir
John W. Eaton <jwe@octave.org>
parents:
8718
diff
changeset
|
697 |
8718
c74c9692add7
Run some clean targets on sub-directory @polynomial
Rafael Laboissiere <rafael@debian.org>
parents:
8708
diff
changeset
|
698 2009-02-10 Rafael Laboissiere <rafael@debian.org> |
c74c9692add7
Run some clean targets on sub-directory @polynomial
Rafael Laboissiere <rafael@debian.org>
parents:
8708
diff
changeset
|
699 |
c74c9692add7
Run some clean targets on sub-directory @polynomial
Rafael Laboissiere <rafael@debian.org>
parents:
8708
diff
changeset
|
700 * examples/Makefile.in: Run some clean targets on sub-directory |
c74c9692add7
Run some clean targets on sub-directory @polynomial
Rafael Laboissiere <rafael@debian.org>
parents:
8708
diff
changeset
|
701 @polynomial. |
c74c9692add7
Run some clean targets on sub-directory @polynomial
Rafael Laboissiere <rafael@debian.org>
parents:
8708
diff
changeset
|
702 |
8705
ccdab7f029a3
examples/Makefile.in: delete unused variable, don't reset SUBDIRS and DISTSUBDIRS
John W. Eaton <jwe@octave.org>
parents:
8698
diff
changeset
|
703 2009-02-09 John W. Eaton <jwe@octave.org> |
ccdab7f029a3
examples/Makefile.in: delete unused variable, don't reset SUBDIRS and DISTSUBDIRS
John W. Eaton <jwe@octave.org>
parents:
8698
diff
changeset
|
704 |
8708
7faf87906ca3
examples/Makefile.in (dist): create subdirs of examples, not dist
John W. Eaton <jwe@octave.org>
parents:
8707
diff
changeset
|
705 * examples/Makefile.in (dist): Create subdirs of examples, not scripts. |
7faf87906ca3
examples/Makefile.in (dist): create subdirs of examples, not dist
John W. Eaton <jwe@octave.org>
parents:
8707
diff
changeset
|
706 |
8707
e356a54586c3
examples/@polynomial/Makefile.in (do-mkpkgadd): special definition for this directory
John W. Eaton <jwe@octave.org>
parents:
8705
diff
changeset
|
707 * examples/@polynomial/Makefile.in (do-mkpkgadd): |
e356a54586c3
examples/@polynomial/Makefile.in (do-mkpkgadd): special definition for this directory
John W. Eaton <jwe@octave.org>
parents:
8705
diff
changeset
|
708 Provide special definition for this directory. |
e356a54586c3
examples/@polynomial/Makefile.in (do-mkpkgadd): special definition for this directory
John W. Eaton <jwe@octave.org>
parents:
8705
diff
changeset
|
709 |
8705
ccdab7f029a3
examples/Makefile.in: delete unused variable, don't reset SUBDIRS and DISTSUBDIRS
John W. Eaton <jwe@octave.org>
parents:
8698
diff
changeset
|
710 * examples/Makefile.in (EXAMPLE_SOURCES): Delete unused variable. |
ccdab7f029a3
examples/Makefile.in: delete unused variable, don't reset SUBDIRS and DISTSUBDIRS
John W. Eaton <jwe@octave.org>
parents:
8698
diff
changeset
|
711 (SUBDIRS, DISTSUBDIRS): Don't reset to empty. |
ccdab7f029a3
examples/Makefile.in: delete unused variable, don't reset SUBDIRS and DISTSUBDIRS
John W. Eaton <jwe@octave.org>
parents:
8698
diff
changeset
|
712 |
8698 | 713 2009-02-08 John W. Eaton <jwe@octave.org> |
714 | |
715 * install-octave.in: Delete. | |
716 * configure.in: Delete AC_CONFIG_COMMANDS macro that was used to | |
717 make install-octave executable. | |
718 | |
8696
87cb8b2e4f14
octMakefile.in (all): display $(prefix) in summary message
John W. Eaton <jwe@octave.org>
parents:
8676
diff
changeset
|
719 2009-02-07 John W. Eaton <jwe@octave.org> |
87cb8b2e4f14
octMakefile.in (all): display $(prefix) in summary message
John W. Eaton <jwe@octave.org>
parents:
8676
diff
changeset
|
720 |
87cb8b2e4f14
octMakefile.in (all): display $(prefix) in summary message
John W. Eaton <jwe@octave.org>
parents:
8676
diff
changeset
|
721 * octMakefile.in (all): Display $(prefix) in summary message. |
87cb8b2e4f14
octMakefile.in (all): display $(prefix) in summary message
John W. Eaton <jwe@octave.org>
parents:
8676
diff
changeset
|
722 |
8676 | 723 2009-02-05 John W. Eaton <jwe@octave.org> |
724 | |
725 * aclocal.m4 (OCTAVE_HDF5_HAS_REQUIRED_API): New macro. | |
726 * configure.in: Use it in HDF5 check. | |
727 | |
8675
43c6012bd4c2
configure.in: separate cases for cygwin and mingw
Benjamin Lindner <lindnerben@gmx.net>
parents:
8659
diff
changeset
|
728 2009-02-04 Benjamin Lindner <lindnerben@gmx.net> |
43c6012bd4c2
configure.in: separate cases for cygwin and mingw
Benjamin Lindner <lindnerben@gmx.net>
parents:
8659
diff
changeset
|
729 |
43c6012bd4c2
configure.in: separate cases for cygwin and mingw
Benjamin Lindner <lindnerben@gmx.net>
parents:
8659
diff
changeset
|
730 * configure.in: Use separate cases for *-*-mingw* and *-*-cygwin* |
43c6012bd4c2
configure.in: separate cases for cygwin and mingw
Benjamin Lindner <lindnerben@gmx.net>
parents:
8659
diff
changeset
|
731 to set variables related to creating shared libraries. |
43c6012bd4c2
configure.in: separate cases for cygwin and mingw
Benjamin Lindner <lindnerben@gmx.net>
parents:
8659
diff
changeset
|
732 |
8659
9792c26bffc7
configure: check whether qhull works
Jaroslav Hajek <highegg@gmail.com>
parents:
8649
diff
changeset
|
733 2009-02-03 Jaroslav Hajek <highegg@gmail.com> |
9792c26bffc7
configure: check whether qhull works
Jaroslav Hajek <highegg@gmail.com>
parents:
8649
diff
changeset
|
734 |
9792c26bffc7
configure: check whether qhull works
Jaroslav Hajek <highegg@gmail.com>
parents:
8649
diff
changeset
|
735 * aclocal.m4 (AC_CHECK_QHULL_OK): New macro, based on suggestion by |
9792c26bffc7
configure: check whether qhull works
Jaroslav Hajek <highegg@gmail.com>
parents:
8649
diff
changeset
|
736 Petr Mikulik <mikulik@physics.muni.cz>. |
9792c26bffc7
configure: check whether qhull works
Jaroslav Hajek <highegg@gmail.com>
parents:
8649
diff
changeset
|
737 * configure.in: Call it. |
9792c26bffc7
configure: check whether qhull works
Jaroslav Hajek <highegg@gmail.com>
parents:
8649
diff
changeset
|
738 |
8649
e50b44b75891
Remove printing of cvs motd in autogen.sh
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8644
diff
changeset
|
739 2009-02-01 Thorsten Meyer <thorsten.meyier@gmx.de> |
e50b44b75891
Remove printing of cvs motd in autogen.sh
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8644
diff
changeset
|
740 |
e50b44b75891
Remove printing of cvs motd in autogen.sh
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8644
diff
changeset
|
741 * autogen.sh: Remove printing of cvs motd. |
e50b44b75891
Remove printing of cvs motd in autogen.sh
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8644
diff
changeset
|
742 |
8644
fac8c78b4fb9
configure.in: fix shared library definitions for Cygwin and MinGW
Marco Atzeri <marco_atzeri@yahoo.it>
parents:
8641
diff
changeset
|
743 2009-01-30 Marco Atzeri <marco_atzeri@yahoo.it> |
fac8c78b4fb9
configure.in: fix shared library definitions for Cygwin and MinGW
Marco Atzeri <marco_atzeri@yahoo.it>
parents:
8641
diff
changeset
|
744 |
fac8c78b4fb9
configure.in: fix shared library definitions for Cygwin and MinGW
Marco Atzeri <marco_atzeri@yahoo.it>
parents:
8641
diff
changeset
|
745 * configure.in (SHLLIBPRE, SHLBINPRE): Fix definitions for Cygwin. |
fac8c78b4fb9
configure.in: fix shared library definitions for Cygwin and MinGW
Marco Atzeri <marco_atzeri@yahoo.it>
parents:
8641
diff
changeset
|
746 (SHLEXT, SHLLIB, SHLBIN, SONAME_FLAGS): Fix definitions for Cygwin |
fac8c78b4fb9
configure.in: fix shared library definitions for Cygwin and MinGW
Marco Atzeri <marco_atzeri@yahoo.it>
parents:
8641
diff
changeset
|
747 and MinGW. |
fac8c78b4fb9
configure.in: fix shared library definitions for Cygwin and MinGW
Marco Atzeri <marco_atzeri@yahoo.it>
parents:
8641
diff
changeset
|
748 |
8641
2264092e9f39
add -lgdi32 to LIBS on windows target
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8635
diff
changeset
|
749 2009-01-30 Benjamin Lindner <lindnerb@users.sourceforge.net> |
2264092e9f39
add -lgdi32 to LIBS on windows target
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8635
diff
changeset
|
750 |
2264092e9f39
add -lgdi32 to LIBS on windows target
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8635
diff
changeset
|
751 * configure.in: Add -lgdi32 to LIBS on *-*-msdosmsvc* and |
2264092e9f39
add -lgdi32 to LIBS on windows target
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8635
diff
changeset
|
752 *-*-mingw* systems. |
2264092e9f39
add -lgdi32 to LIBS on windows target
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8635
diff
changeset
|
753 |
8635
bef8f001032f
Further improvements for OCTAVE_HAVE_FRAMEWORK and the test for the MacOSX Carbon framework.
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8623
diff
changeset
|
754 2009-01-29 Thomas Treichl <Thomas.Treichl@gmx.net> |
bef8f001032f
Further improvements for OCTAVE_HAVE_FRAMEWORK and the test for the MacOSX Carbon framework.
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8623
diff
changeset
|
755 |
bef8f001032f
Further improvements for OCTAVE_HAVE_FRAMEWORK and the test for the MacOSX Carbon framework.
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8623
diff
changeset
|
756 * aclocal.m4 (OCTAVE_HAVE_FRAMEWORK): Add support for |
bef8f001032f
Further improvements for OCTAVE_HAVE_FRAMEWORK and the test for the MacOSX Carbon framework.
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8623
diff
changeset
|
757 --with-framework-<name> and replace "$ac_safe" by "$1". |
bef8f001032f
Further improvements for OCTAVE_HAVE_FRAMEWORK and the test for the MacOSX Carbon framework.
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8623
diff
changeset
|
758 * configure.in: Change "have_carbon" with |
bef8f001032f
Further improvements for OCTAVE_HAVE_FRAMEWORK and the test for the MacOSX Carbon framework.
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8623
diff
changeset
|
759 "have_framework_carbon". |
bef8f001032f
Further improvements for OCTAVE_HAVE_FRAMEWORK and the test for the MacOSX Carbon framework.
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8623
diff
changeset
|
760 |
8618
f8b3ece45bda
use separate prefix for shllib and shlbin files
John W. Eaton <jwe@octave.org>
parents:
8607
diff
changeset
|
761 2009-01-28 John W. Eaton <jwe@octave.org> |
f8b3ece45bda
use separate prefix for shllib and shlbin files
John W. Eaton <jwe@octave.org>
parents:
8607
diff
changeset
|
762 |
8621
f1534e248260
configure.in: check for pcre_compile, don't check for other regex functions if pcre library is found
John W. Eaton <jwe@octave.org>
parents:
8618
diff
changeset
|
763 * configure.in: Check to see that pcre library has pcre_compile |
8623
53fb843ca498
configure.in (REGEX_LIBS): undo part of previous change
John W. Eaton <jwe@octave.org>
parents:
8621
diff
changeset
|
764 function. |
8621
f1534e248260
configure.in: check for pcre_compile, don't check for other regex functions if pcre library is found
John W. Eaton <jwe@octave.org>
parents:
8618
diff
changeset
|
765 |
8618
f8b3ece45bda
use separate prefix for shllib and shlbin files
John W. Eaton <jwe@octave.org>
parents:
8607
diff
changeset
|
766 * configure.in (SHLLIBPRE, SHLBINPRE): New variables. AC_SUBST them. |
f8b3ece45bda
use separate prefix for shllib and shlbin files
John W. Eaton <jwe@octave.org>
parents:
8607
diff
changeset
|
767 (*-*-cygwin*): Set LIBPRE and SHLBINPRE to cyg and SHLLIBPRE to lib. |
f8b3ece45bda
use separate prefix for shllib and shlbin files
John W. Eaton <jwe@octave.org>
parents:
8607
diff
changeset
|
768 Use SHLLIBPRE and SHLLIB in definition of SONAME_FLAGS. |
f8b3ece45bda
use separate prefix for shllib and shlbin files
John W. Eaton <jwe@octave.org>
parents:
8607
diff
changeset
|
769 (*-*-msdosmsvc): Make SHLBINPRE and SHLLIBPRE empty. |
f8b3ece45bda
use separate prefix for shllib and shlbin files
John W. Eaton <jwe@octave.org>
parents:
8607
diff
changeset
|
770 Adjust definition of SONAME_FLAGS for SHLLIBPRE. |
8621
f1534e248260
configure.in: check for pcre_compile, don't check for other regex functions if pcre library is found
John W. Eaton <jwe@octave.org>
parents:
8618
diff
changeset
|
771 |
8618
f8b3ece45bda
use separate prefix for shllib and shlbin files
John W. Eaton <jwe@octave.org>
parents:
8607
diff
changeset
|
772 * Makeconf.in (SHLLIBPRE, SHLBINPRE): Substitute new variables here. |
f8b3ece45bda
use separate prefix for shllib and shlbin files
John W. Eaton <jwe@octave.org>
parents:
8607
diff
changeset
|
773 From Marco Atzeri <marco_atzeri@yahoo.it>. |
f8b3ece45bda
use separate prefix for shllib and shlbin files
John W. Eaton <jwe@octave.org>
parents:
8607
diff
changeset
|
774 |
8607
08331c2fb00f
add -lregex to REGEX_LIBS at configure stage, add ARPACK_LIBS, REGEX_LIBS to liboctave's link deps
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8595
diff
changeset
|
775 2009-01-27 Benjamin Lindner <lindnerb@users.sourceforge.net> |
08331c2fb00f
add -lregex to REGEX_LIBS at configure stage, add ARPACK_LIBS, REGEX_LIBS to liboctave's link deps
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8595
diff
changeset
|
776 |
08331c2fb00f
add -lregex to REGEX_LIBS at configure stage, add ARPACK_LIBS, REGEX_LIBS to liboctave's link deps
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8595
diff
changeset
|
777 * configure.in: Add of -lregex to REGEX_LIBS. |
08331c2fb00f
add -lregex to REGEX_LIBS at configure stage, add ARPACK_LIBS, REGEX_LIBS to liboctave's link deps
Benjamin Lindner <lindnerb@users.sourceforge.net>
parents:
8595
diff
changeset
|
778 |
8595
dee5d60257e4
Use Carbon framework to determine ScreenSize on Mac.
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8577
diff
changeset
|
779 2009-01-26 Thomas Treichl <Thomas.Treichl@gmx.net> |
dee5d60257e4
Use Carbon framework to determine ScreenSize on Mac.
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8577
diff
changeset
|
780 |
dee5d60257e4
Use Carbon framework to determine ScreenSize on Mac.
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8577
diff
changeset
|
781 * aclocal.m4 (OCTAVE_HAVE_FRAMEWORK): New macro. |
dee5d60257e4
Use Carbon framework to determine ScreenSize on Mac.
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8577
diff
changeset
|
782 * configure.in: Use it. |
dee5d60257e4
Use Carbon framework to determine ScreenSize on Mac.
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8577
diff
changeset
|
783 |
8573
da61d0f7ce0b
configure.in (AH_BOTTOM): define OCTAVE_USE_OS_X_API if __APPLE__ is defined
John W. Eaton <jwe@octave.org>
parents:
8562
diff
changeset
|
784 2009-01-22 John W. Eaton <jwe@octave.org> |
da61d0f7ce0b
configure.in (AH_BOTTOM): define OCTAVE_USE_OS_X_API if __APPLE__ is defined
John W. Eaton <jwe@octave.org>
parents:
8562
diff
changeset
|
785 |
da61d0f7ce0b
configure.in (AH_BOTTOM): define OCTAVE_USE_OS_X_API if __APPLE__ is defined
John W. Eaton <jwe@octave.org>
parents:
8562
diff
changeset
|
786 * configure.in (AH_BOTTOM): Define OCTAVE_USE_OS_X_API if |
8595
dee5d60257e4
Use Carbon framework to determine ScreenSize on Mac.
Thomas Treichl <Thomas.Treichl@gmx.net>
parents:
8577
diff
changeset
|
787 __APPLE__ and __MACH__ are defined. |
8573
da61d0f7ce0b
configure.in (AH_BOTTOM): define OCTAVE_USE_OS_X_API if __APPLE__ is defined
John W. Eaton <jwe@octave.org>
parents:
8562
diff
changeset
|
788 |
8562
a6edd5c23cb5
use replacement methods if qrupdate is not available
Jaroslav Hajek <highegg@gmail.com>
parents:
8560
diff
changeset
|
789 2009-01-22 Jaroslav Hajek <highegg@gmail.com> |
a6edd5c23cb5
use replacement methods if qrupdate is not available
Jaroslav Hajek <highegg@gmail.com>
parents:
8560
diff
changeset
|
790 |
a6edd5c23cb5
use replacement methods if qrupdate is not available
Jaroslav Hajek <highegg@gmail.com>
parents:
8560
diff
changeset
|
791 * configure.in: Fix qrupdate warning message. |
a6edd5c23cb5
use replacement methods if qrupdate is not available
Jaroslav Hajek <highegg@gmail.com>
parents:
8560
diff
changeset
|
792 |
8559
07c93dae3fdb
THANKS, Announce: remove obsolete files
John W. Eaton <jwe@octave.org>
parents:
8549
diff
changeset
|
793 2009-01-21 John W. Eaton <jwe@octave.org> |
07c93dae3fdb
THANKS, Announce: remove obsolete files
John W. Eaton <jwe@octave.org>
parents:
8549
diff
changeset
|
794 |
8560
5cc594679cdc
get display characteristics from system
John W. Eaton <jwe@octave.org>
parents:
8559
diff
changeset
|
795 * Makeconf.in: Substitute X11_INCFLAGS and X11_LIBS. |
5cc594679cdc
get display characteristics from system
John W. Eaton <jwe@octave.org>
parents:
8559
diff
changeset
|
796 * configure.in: Use AC_PATH_X to check for X11 header files and |
5cc594679cdc
get display characteristics from system
John W. Eaton <jwe@octave.org>
parents:
8559
diff
changeset
|
797 libraries. |
5cc594679cdc
get display characteristics from system
John W. Eaton <jwe@octave.org>
parents:
8559
diff
changeset
|
798 |
8559
07c93dae3fdb
THANKS, Announce: remove obsolete files
John W. Eaton <jwe@octave.org>
parents:
8549
diff
changeset
|
799 * THANKS, Announce: Remove obsolete files. |
07c93dae3fdb
THANKS, Announce: remove obsolete files
John W. Eaton <jwe@octave.org>
parents:
8549
diff
changeset
|
800 * octMakefile.in (DISTFILES): Remove THANKS from the list. |
07c93dae3fdb
THANKS, Announce: remove obsolete files
John W. Eaton <jwe@octave.org>
parents:
8549
diff
changeset
|
801 |
8549 | 802 2009-01-20 John W. Eaton <jwe@octave.org> |
803 | |
804 * configure.in: Check for fstat. | |
805 | |
8417
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
8377
diff
changeset
|
806 2008-12-23 David Bateman <dbateman@free.fr> |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
8377
diff
changeset
|
807 |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
8377
diff
changeset
|
808 * configure.in: Add configuration test for ARPACK. |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
8377
diff
changeset
|
809 * Makeconf.in (ARPACK_LIBS): Add variable with location of ARPACK |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
8377
diff
changeset
|
810 library. |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
8377
diff
changeset
|
811 * NEWS: Document that eigs and svds were moved to Octaave. |
654bcfb937bf
Add the eigs and svds functions
David Bateman <dbateman@free.fr>
parents:
8377
diff
changeset
|
812 |
8377
25bc2d31e1bf
improve OCTAVE_LOCAL_BUFFER
Jaroslav Hajek <highegg@gmail.com>
parents:
8370
diff
changeset
|
813 2008-10-29 Jaroslav Hajek <highegg@gmail.com> |
25bc2d31e1bf
improve OCTAVE_LOCAL_BUFFER
Jaroslav Hajek <highegg@gmail.com>
parents:
8370
diff
changeset
|
814 |
25bc2d31e1bf
improve OCTAVE_LOCAL_BUFFER
Jaroslav Hajek <highegg@gmail.com>
parents:
8370
diff
changeset
|
815 * configure.in: Remove the OCTAVE_LOCAL_BUFFER stuff (moved to |
25bc2d31e1bf
improve OCTAVE_LOCAL_BUFFER
Jaroslav Hajek <highegg@gmail.com>
parents:
8370
diff
changeset
|
816 liboctave). |
25bc2d31e1bf
improve OCTAVE_LOCAL_BUFFER
Jaroslav Hajek <highegg@gmail.com>
parents:
8370
diff
changeset
|
817 |
8370
34960ba08a81
document more new features in the NEWS file
Jaroslav Hajek <highegg@gmail.com>
parents:
8364
diff
changeset
|
818 2008-12-04 Jaroslav Hajek <highegg@gmail.com> |
34960ba08a81
document more new features in the NEWS file
Jaroslav Hajek <highegg@gmail.com>
parents:
8364
diff
changeset
|
819 |
34960ba08a81
document more new features in the NEWS file
Jaroslav Hajek <highegg@gmail.com>
parents:
8364
diff
changeset
|
820 * NEWS: Document more new features. |
34960ba08a81
document more new features in the NEWS file
Jaroslav Hajek <highegg@gmail.com>
parents:
8364
diff
changeset
|
821 |
8363
be07fdf798cf
update config.guess and config.sub
John W. Eaton <jwe@octave.org>
parents:
8359
diff
changeset
|
822 2008-12-03 John W. Eaton <jwe@octave.org> |
be07fdf798cf
update config.guess and config.sub
John W. Eaton <jwe@octave.org>
parents:
8359
diff
changeset
|
823 |
be07fdf798cf
update config.guess and config.sub
John W. Eaton <jwe@octave.org>
parents:
8359
diff
changeset
|
824 * config.guess, config.sub: Update from FSF sources. |
be07fdf798cf
update config.guess and config.sub
John W. Eaton <jwe@octave.org>
parents:
8359
diff
changeset
|
825 |
8332 | 826 2008-11-18 John W. Eaton <jwe@octave.org> |
827 | |
828 * mkoctfile.cc.in, octave-bug.cc.in: Style fixes. | |
829 | |
9501 | 830 2008-11-13 Ben Abbott <bpabbott@mac.com> |
8355
a8019b9644ca
graphics.h.in: Add props screensize & screenpixelsperinch.
Ben Abbott <bpabbott@mac.com>
parents:
8332
diff
changeset
|
831 |
a8019b9644ca
graphics.h.in: Add props screensize & screenpixelsperinch.
Ben Abbott <bpabbott@mac.com>
parents:
8332
diff
changeset
|
832 * src/graphics.h.in: Add props screensize & screenpixelsperinch. |
a8019b9644ca
graphics.h.in: Add props screensize & screenpixelsperinch.
Ben Abbott <bpabbott@mac.com>
parents:
8332
diff
changeset
|
833 |
8444
c3ac9f2772cd
do not eat white space within @example environments of docstrings
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8417
diff
changeset
|
834 2008-11-08 Thorsten Meyer <thorsten.meyier@gmx.de> |
c3ac9f2772cd
do not eat white space within @example environments of docstrings
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8417
diff
changeset
|
835 |
c3ac9f2772cd
do not eat white space within @example environments of docstrings
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8417
diff
changeset
|
836 * Makeconf.in: export PERL variable for use in scripts/mkdoc |
c3ac9f2772cd
do not eat white space within @example environments of docstrings
Thorsten Meyer <thorsten.meyier@gmx.de>
parents:
8417
diff
changeset
|
837 |
8292 | 838 2008-10-30 David Bateman <dbateman@free.fr> |
839 | |
840 * NEWS: Minor update to document improved indexing code. | |
841 | |
8269
37afdd1d1bf8
Use FT2_CFLAGS when checking for FTGL headers.
Jason Riedy <jason@acm.org>
parents:
8256
diff
changeset
|
842 2008-10-23 Jason Riedy <jason@acm.org> |
37afdd1d1bf8
Use FT2_CFLAGS when checking for FTGL headers.
Jason Riedy <jason@acm.org>
parents:
8256
diff
changeset
|
843 |
37afdd1d1bf8
Use FT2_CFLAGS when checking for FTGL headers.
Jason Riedy <jason@acm.org>
parents:
8256
diff
changeset
|
844 * configure.in: Take care to use FT2_CFLAGS when checking |
37afdd1d1bf8
Use FT2_CFLAGS when checking for FTGL headers.
Jason Riedy <jason@acm.org>
parents:
8256
diff
changeset
|
845 for FTGL headers. |
37afdd1d1bf8
Use FT2_CFLAGS when checking for FTGL headers.
Jason Riedy <jason@acm.org>
parents:
8256
diff
changeset
|
846 |
8256
dba0037e6602
Import new texinfo.tex allowing @ in directory name. Update OOP example class location
David Bateman <dbateman@free.fr>
parents:
8225
diff
changeset
|
847 2008-10-22 David Bateman <dbateman@free.fr> |
dba0037e6602
Import new texinfo.tex allowing @ in directory name. Update OOP example class location
David Bateman <dbateman@free.fr>
parents:
8225
diff
changeset
|
848 |
dba0037e6602
Import new texinfo.tex allowing @ in directory name. Update OOP example class location
David Bateman <dbateman@free.fr>
parents:
8225
diff
changeset
|
849 * examples/@polynomial: Move examples/polynomial here. |
dba0037e6602
Import new texinfo.tex allowing @ in directory name. Update OOP example class location
David Bateman <dbateman@free.fr>
parents:
8225
diff
changeset
|
850 * examples/@polynomial/Makefile.in: Update for new location. |
dba0037e6602
Import new texinfo.tex allowing @ in directory name. Update OOP example class location
David Bateman <dbateman@free.fr>
parents:
8225
diff
changeset
|
851 * examples/Makefile.in: Ditto. |
dba0037e6602
Import new texinfo.tex allowing @ in directory name. Update OOP example class location
David Bateman <dbateman@free.fr>
parents:
8225
diff
changeset
|
852 * configure.in: Change locate of examples/@polynomial makefile |
dba0037e6602
Import new texinfo.tex allowing @ in directory name. Update OOP example class location
David Bateman <dbateman@free.fr>
parents:
8225
diff
changeset
|
853 in AC_CONFIG_FILES. |
dba0037e6602
Import new texinfo.tex allowing @ in directory name. Update OOP example class location
David Bateman <dbateman@free.fr>
parents:
8225
diff
changeset
|
854 |
8225
53202d60086f
Minor update to the NEWS file
David Bateman <dbateman@free.fr>
parents:
8221
diff
changeset
|
855 2008-10-16 David Bateman <dbateman@free.fr> |
53202d60086f
Minor update to the NEWS file
David Bateman <dbateman@free.fr>
parents:
8221
diff
changeset
|
856 |
53202d60086f
Minor update to the NEWS file
David Bateman <dbateman@free.fr>
parents:
8221
diff
changeset
|
857 * NEWS: Minor update. |
53202d60086f
Minor update to the NEWS file
David Bateman <dbateman@free.fr>
parents:
8221
diff
changeset
|
858 |
8221
06094fa570a3
Add some documentation for the OOP code of Octave
David Bateman <dbateman@free.fr>
parents:
8185
diff
changeset
|
859 2008-10-15 David Bateman <dbateman@free.fr> |
06094fa570a3
Add some documentation for the OOP code of Octave
David Bateman <dbateman@free.fr>
parents:
8185
diff
changeset
|
860 |
06094fa570a3
Add some documentation for the OOP code of Octave
David Bateman <dbateman@free.fr>
parents:
8185
diff
changeset
|
861 * examples/polynomial/display.m, examples/polynomial/double.m, |
06094fa570a3
Add some documentation for the OOP code of Octave
David Bateman <dbateman@free.fr>
parents:
8185
diff
changeset
|
862 examples/polynomial/end.m, examples/polynomial/get.m, |
06094fa570a3
Add some documentation for the OOP code of Octave
David Bateman <dbateman@free.fr>
parents:
8185
diff
changeset
|
863 examples/polynomial/mtimes.m, examples/polynomial/plot.m, |
06094fa570a3
Add some documentation for the OOP code of Octave
David Bateman <dbateman@free.fr>
parents:
8185
diff
changeset
|
864 examples/polynomial/polynomial.m, |
06094fa570a3
Add some documentation for the OOP code of Octave
David Bateman <dbateman@free.fr>
parents:
8185
diff
changeset
|
865 examples/polynomial/polynomial_superiorto.m, |
06094fa570a3
Add some documentation for the OOP code of Octave
David Bateman <dbateman@free.fr>
parents:
8185
diff
changeset
|
866 examples/polynomial/polyval.m, examples/polynomial/set.m, |
06094fa570a3
Add some documentation for the OOP code of Octave
David Bateman <dbateman@free.fr>
parents:
8185
diff
changeset
|
867 examples/polynomial/subsasgn.m, examples/polynomial/subsref.m: |
06094fa570a3
Add some documentation for the OOP code of Octave
David Bateman <dbateman@free.fr>
parents:
8185
diff
changeset
|
868 New example files for a sample OOP class. |
06094fa570a3
Add some documentation for the OOP code of Octave
David Bateman <dbateman@free.fr>
parents:
8185
diff
changeset
|
869 * examples/polynomial/Makefile.in: Add a makefile for this new |
06094fa570a3
Add some documentation for the OOP code of Octave
David Bateman <dbateman@free.fr>
parents:
8185
diff
changeset
|
870 directory |
06094fa570a3
Add some documentation for the OOP code of Octave
David Bateman <dbateman@free.fr>
parents:
8185
diff
changeset
|
871 * examples/Makefile.in: Reference the new subdirectory here. |
06094fa570a3
Add some documentation for the OOP code of Octave
David Bateman <dbateman@free.fr>
parents:
8185
diff
changeset
|
872 * configure.in: Add the new makefile to AC_CONFIG_FILES. |
06094fa570a3
Add some documentation for the OOP code of Octave
David Bateman <dbateman@free.fr>
parents:
8185
diff
changeset
|
873 |
9501 | 874 2008-10-01 Jaroslav Hajek <highegg@gmail.com> |
8185
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
8169
diff
changeset
|
875 |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
8169
diff
changeset
|
876 * configure.in: Check for sizeof (long double) and randl. |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
8169
diff
changeset
|
877 |
9501 | 878 2008-09-30 Jaroslav Hajek <highegg@gmail.com> |
8169
66bc6f9b4f72
rewrite integer arithmetics and conversions
Jaroslav Hajek <highegg@gmail.com>
parents:
8092
diff
changeset
|
879 |
66bc6f9b4f72
rewrite integer arithmetics and conversions
Jaroslav Hajek <highegg@gmail.com>
parents:
8092
diff
changeset
|
880 * aclocal.m4 (OCTAVE_FAST_INT_OPS): New macro. |
66bc6f9b4f72
rewrite integer arithmetics and conversions
Jaroslav Hajek <highegg@gmail.com>
parents:
8092
diff
changeset
|
881 * configure.in: Call OCTAVE_FAST_INT_OPS |
66bc6f9b4f72
rewrite integer arithmetics and conversions
Jaroslav Hajek <highegg@gmail.com>
parents:
8092
diff
changeset
|
882 |
8092
6a292b0fa88c
mkoctfile.cc.in, octave-config.cc.in, octave-bug.cc.in: style fixes
John W. Eaton <jwe@octave.org>
parents:
8091
diff
changeset
|
883 2008-09-08 John W. Eaton <jwe@octave.org> |
6a292b0fa88c
mkoctfile.cc.in, octave-config.cc.in, octave-bug.cc.in: style fixes
John W. Eaton <jwe@octave.org>
parents:
8091
diff
changeset
|
884 |
6a292b0fa88c
mkoctfile.cc.in, octave-config.cc.in, octave-bug.cc.in: style fixes
John W. Eaton <jwe@octave.org>
parents:
8091
diff
changeset
|
885 * mkoctfile.cc.in, octave-bug.cc.in, octave-config.cc.in: Style fixes. |
6a292b0fa88c
mkoctfile.cc.in, octave-config.cc.in, octave-bug.cc.in: style fixes
John W. Eaton <jwe@octave.org>
parents:
8091
diff
changeset
|
886 |
8091
4e7527a7b3f9
mkoctfile.cc.in, octave-config.cc.in, octave-bug.cc.in: new files
Michael Goffioul
parents:
8070
diff
changeset
|
887 2008-09-08 Michael Goffioul <michael.goffioul@gmail.com> |
4e7527a7b3f9
mkoctfile.cc.in, octave-config.cc.in, octave-bug.cc.in: new files
Michael Goffioul
parents:
8070
diff
changeset
|
888 |
4e7527a7b3f9
mkoctfile.cc.in, octave-config.cc.in, octave-bug.cc.in: new files
Michael Goffioul
parents:
8070
diff
changeset
|
889 * mkoctfile.cc.in, octave-bug.cc.in, octave-config.cc.in: New files. |
4e7527a7b3f9
mkoctfile.cc.in, octave-config.cc.in, octave-bug.cc.in: new files
Michael Goffioul
parents:
8070
diff
changeset
|
890 |
8070
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8027
diff
changeset
|
891 2008-08-28 David Bateman <dbateman@free.fr> |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8027
diff
changeset
|
892 |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8027
diff
changeset
|
893 * NEWS: Update for some of the graphics changes |
3b53b25e2550
Add data sources and line series
David Bateman <dbateman@free.fr>
parents:
8027
diff
changeset
|
894 |
9501 | 895 2008-08-11 Jaroslav Hajek <highegg@gmail.com> |
8027
fd13f9f7dbac
update macros from cryp.to auoconf archive
Jaroslav Hajek <highegg@gmail.com>
parents:
8019
diff
changeset
|
896 |
fd13f9f7dbac
update macros from cryp.to auoconf archive
Jaroslav Hajek <highegg@gmail.com>
parents:
8019
diff
changeset
|
897 * acx_blas_f77_func.m4, acx_lapack.m4: Update macros from |
fd13f9f7dbac
update macros from cryp.to auoconf archive
Jaroslav Hajek <highegg@gmail.com>
parents:
8019
diff
changeset
|
898 <http://autoconf-archive.cryp.to/>. |
fd13f9f7dbac
update macros from cryp.to auoconf archive
Jaroslav Hajek <highegg@gmail.com>
parents:
8019
diff
changeset
|
899 |
8019
0ef13e15319b
replace NPOS with std::string::npos
John W. Eaton <jwe@octave.org>
parents:
8005
diff
changeset
|
900 2008-08-07 John W. Eaton <jwe@octave.org> |
0ef13e15319b
replace NPOS with std::string::npos
John W. Eaton <jwe@octave.org>
parents:
8005
diff
changeset
|
901 |
0ef13e15319b
replace NPOS with std::string::npos
John W. Eaton <jwe@octave.org>
parents:
8005
diff
changeset
|
902 * aclocal.m4 (OCTAVE_STRING_NPOS): Delete. |
0ef13e15319b
replace NPOS with std::string::npos
John W. Eaton <jwe@octave.org>
parents:
8005
diff
changeset
|
903 * configure.in (OCTAVE_STRING_NPOS): Delete use. |
0ef13e15319b
replace NPOS with std::string::npos
John W. Eaton <jwe@octave.org>
parents:
8005
diff
changeset
|
904 |
8003
997d4384cec4
Makefile.in (header-msg): Mention GNU Make; update GCC version info
John W. Eaton <jwe@octave.org>
parents:
8000
diff
changeset
|
905 2008-08-04 John W. Eaton <jwe@octave.org> |
997d4384cec4
Makefile.in (header-msg): Mention GNU Make; update GCC version info
John W. Eaton <jwe@octave.org>
parents:
8000
diff
changeset
|
906 |
8005
c0d7eb662384
run-octave.in: use sed to append : to path elements
John W. Eaton <jwe@octave.org>
parents:
8004
diff
changeset
|
907 * Makeconf.in (do-subst-script-vals): Also substitute SED. |
c0d7eb662384
run-octave.in: use sed to append : to path elements
John W. Eaton <jwe@octave.org>
parents:
8004
diff
changeset
|
908 * run-octave.in: Use sed to append : to path elements |
c0d7eb662384
run-octave.in: use sed to append : to path elements
John W. Eaton <jwe@octave.org>
parents:
8004
diff
changeset
|
909 instead of using the find expression "-exec echo '{}':". |
c0d7eb662384
run-octave.in: use sed to append : to path elements
John W. Eaton <jwe@octave.org>
parents:
8004
diff
changeset
|
910 Substitute SED here. |
c0d7eb662384
run-octave.in: use sed to append : to path elements
John W. Eaton <jwe@octave.org>
parents:
8004
diff
changeset
|
911 |
8004
4363bc94171a
aclocal.m4 (OCTAVE_PROG_SED): fail if no usable sed is found
John W. Eaton <jwe@octave.org>
parents:
8003
diff
changeset
|
912 * aclocal.m4: Fail if no usable version of sed is found. |
4363bc94171a
aclocal.m4 (OCTAVE_PROG_SED): fail if no usable sed is found
John W. Eaton <jwe@octave.org>
parents:
8003
diff
changeset
|
913 |
8003
997d4384cec4
Makefile.in (header-msg): Mention GNU Make; update GCC version info
John W. Eaton <jwe@octave.org>
parents:
8000
diff
changeset
|
914 * Makefile.in (header-msg): Mention GNU Make requirement. |
997d4384cec4
Makefile.in (header-msg): Mention GNU Make; update GCC version info
John W. Eaton <jwe@octave.org>
parents:
8000
diff
changeset
|
915 Update GCC version info. |
997d4384cec4
Makefile.in (header-msg): Mention GNU Make; update GCC version info
John W. Eaton <jwe@octave.org>
parents:
8000
diff
changeset
|
916 |
8000
ea3cd9791703
octMakefile.in (DISTFILES): add "missing" to the list
John W. Eaton <jwe@octave.org>
parents:
7996
diff
changeset
|
917 2008-07-31 John W. Eaton <jwe@octave.org> |
ea3cd9791703
octMakefile.in (DISTFILES): add "missing" to the list
John W. Eaton <jwe@octave.org>
parents:
7996
diff
changeset
|
918 |
ea3cd9791703
octMakefile.in (DISTFILES): add "missing" to the list
John W. Eaton <jwe@octave.org>
parents:
7996
diff
changeset
|
919 * octMakefile.in (DISTFILES): Add "missing" to the list. |
ea3cd9791703
octMakefile.in (DISTFILES): add "missing" to the list
John W. Eaton <jwe@octave.org>
parents:
7996
diff
changeset
|
920 |
7996
6a7db240b3a3
configure.in: eliminate CXX_ABI and OCTAVE_CXX_PREPEND_UNDERSCORE
John W. Eaton <jwe@octave.org>
parents:
7993
diff
changeset
|
921 2008-07-30 John W. Eaton <jwe@octave.org> |
6a7db240b3a3
configure.in: eliminate CXX_ABI and OCTAVE_CXX_PREPEND_UNDERSCORE
John W. Eaton <jwe@octave.org>
parents:
7993
diff
changeset
|
922 |
6a7db240b3a3
configure.in: eliminate CXX_ABI and OCTAVE_CXX_PREPEND_UNDERSCORE
John W. Eaton <jwe@octave.org>
parents:
7993
diff
changeset
|
923 * aclocal.m4 (CXX_ABI, OCTAVE_CXX_PREPENDS_UNDERSCORE, |
6a7db240b3a3
configure.in: eliminate CXX_ABI and OCTAVE_CXX_PREPEND_UNDERSCORE
John W. Eaton <jwe@octave.org>
parents:
7993
diff
changeset
|
924 OCTAVE_PROG_NM): Delete macros. |
6a7db240b3a3
configure.in: eliminate CXX_ABI and OCTAVE_CXX_PREPEND_UNDERSCORE
John W. Eaton <jwe@octave.org>
parents:
7993
diff
changeset
|
925 * configure.in: Delete uses. |
6a7db240b3a3
configure.in: eliminate CXX_ABI and OCTAVE_CXX_PREPEND_UNDERSCORE
John W. Eaton <jwe@octave.org>
parents:
7993
diff
changeset
|
926 |
7993
80a715c4824d
aclocal.m4 (OCTAVE_OPENGL): Handle MinGW the same as MSVC
Tatsuro MATSUOKA
parents:
7990
diff
changeset
|
927 2008-07-29 Tatsuro MATSUOKA <tmacchant@yahoo.co.jp> |
80a715c4824d
aclocal.m4 (OCTAVE_OPENGL): Handle MinGW the same as MSVC
Tatsuro MATSUOKA
parents:
7990
diff
changeset
|
928 |
80a715c4824d
aclocal.m4 (OCTAVE_OPENGL): Handle MinGW the same as MSVC
Tatsuro MATSUOKA
parents:
7990
diff
changeset
|
929 * aclocal.m4 (OCTAVE_OPENGL): Handle MinGW the same as MSVC. |
80a715c4824d
aclocal.m4 (OCTAVE_OPENGL): Handle MinGW the same as MSVC
Tatsuro MATSUOKA
parents:
7990
diff
changeset
|
930 |
7990
86dae6e5b83c
Initial update of NEWS for 3.2 release
David Bateman <dbateman@free.fr>
parents:
7958
diff
changeset
|
931 2008-07-29 David Bateman <dbateman@free.fr> |
86dae6e5b83c
Initial update of NEWS for 3.2 release
David Bateman <dbateman@free.fr>
parents:
7958
diff
changeset
|
932 |
86dae6e5b83c
Initial update of NEWS for 3.2 release
David Bateman <dbateman@free.fr>
parents:
7958
diff
changeset
|
933 * NEWS.3: Copy from NEWS. |
86dae6e5b83c
Initial update of NEWS for 3.2 release
David Bateman <dbateman@free.fr>
parents:
7958
diff
changeset
|
934 * NEWS: Initial update in preparation for a 3.2 release. |
86dae6e5b83c
Initial update of NEWS for 3.2 release
David Bateman <dbateman@free.fr>
parents:
7958
diff
changeset
|
935 |
7958 | 936 2008-07-21 John W. Eaton <jwe@octave.org> |
937 | |
938 * configure.in: If FTGL.h is found, then also include | |
939 FTGLTextureFont.h in test code. | |
940 | |
7956
0da8455b31c1
Remove unneeded substituted variable
John W. Eaton <jwe@octave.org>
parents:
7954
diff
changeset
|
941 2008-07-21 Michael Goffioul <michael.goffioul@gmail.com> |
0da8455b31c1
Remove unneeded substituted variable
John W. Eaton <jwe@octave.org>
parents:
7954
diff
changeset
|
942 |
0da8455b31c1
Remove unneeded substituted variable
John W. Eaton <jwe@octave.org>
parents:
7954
diff
changeset
|
943 * configure.in: Remove GRAPHICS_OPENGL variable. |
0da8455b31c1
Remove unneeded substituted variable
John W. Eaton <jwe@octave.org>
parents:
7954
diff
changeset
|
944 |
7954 | 945 2008-07-21 John W. Eaton <jwe@octave.org> |
946 | |
947 * aclocal.m4 (OCTAVE_OPENGL): Fix shell syntax problems. | |
948 Handle HAVE_GL_GL_H and HAVE_OPENGL_GL_H in link test. | |
949 | |
950 * configure.in: Don't define and substitute FLTK_BACKEND_SRC or | |
951 GL_RENDER_SRC. | |
952 (HAVE_FLTK): AC_DEFINE if FLTK is available. | |
953 (HAVE_OPENGL): AC_DEFINE if OpenGL is available. | |
954 | |
9501 | 955 2008-07-21 Jaroslav Hajek <highegg@gmail.com> |
7953
efabe34cce70
make configure compatible with FTGL ver <= 2.1.2
Jaroslav Hajek <highegg@gmail.com>
parents:
7951
diff
changeset
|
956 |
efabe34cce70
make configure compatible with FTGL ver <= 2.1.2
Jaroslav Hajek <highegg@gmail.com>
parents:
7951
diff
changeset
|
957 * configure.in: Extend FTGL test to test for both ftgl.h and FTGL.h. |
efabe34cce70
make configure compatible with FTGL ver <= 2.1.2
Jaroslav Hajek <highegg@gmail.com>
parents:
7951
diff
changeset
|
958 Use HAVE_FTGL_UPPERCASE to indicate the latter (version <= 2.1.2). |
efabe34cce70
make configure compatible with FTGL ver <= 2.1.2
Jaroslav Hajek <highegg@gmail.com>
parents:
7951
diff
changeset
|
959 |
9501 | 960 2008-07-19 Rafael Laboissiere <rafael@debia8n.org> |
7951
9d102940bdc7
Include acx_blas_f77_func.m4 in the distribution tarball
Rafael Laboissiere <rafael@debian.org>
parents:
7945
diff
changeset
|
961 |
9d102940bdc7
Include acx_blas_f77_func.m4 in the distribution tarball
Rafael Laboissiere <rafael@debian.org>
parents:
7945
diff
changeset
|
962 * octMakefile.in (CONF_DISTFILES): Include acx_blas_f77_func.m4 in |
9d102940bdc7
Include acx_blas_f77_func.m4 in the distribution tarball
Rafael Laboissiere <rafael@debian.org>
parents:
7945
diff
changeset
|
963 the list. |
9d102940bdc7
Include acx_blas_f77_func.m4 in the distribution tarball
Rafael Laboissiere <rafael@debian.org>
parents:
7945
diff
changeset
|
964 |
9501 | 965 2008-07-18 Carlo de Falco <carlo.defalco@gmail.com> |
7945 | 966 |
967 * aclocal.m4: Search for gl.h and glu.h in OpenGL/ as well as in GL/. | |
968 | |
7944
c2449e91f50a
configure.in: fix FTGL test to handle either FTGL/ftgl.h or ftgl.h
John W. Eaton <jwe@octave.org>
parents:
7937
diff
changeset
|
969 2008-07-18 John W. Eaton <jwe@octave.org> |
c2449e91f50a
configure.in: fix FTGL test to handle either FTGL/ftgl.h or ftgl.h
John W. Eaton <jwe@octave.org>
parents:
7937
diff
changeset
|
970 |
c2449e91f50a
configure.in: fix FTGL test to handle either FTGL/ftgl.h or ftgl.h
John W. Eaton <jwe@octave.org>
parents:
7937
diff
changeset
|
971 * configure.in: Fix FTGL test to handle either FTGL/ftgl.h or ftgl.h. |
c2449e91f50a
configure.in: fix FTGL test to handle either FTGL/ftgl.h or ftgl.h
John W. Eaton <jwe@octave.org>
parents:
7937
diff
changeset
|
972 (warn_freetype, warn_ftgl, warn_fltk_config, warn_fltk_opengl): |
c2449e91f50a
configure.in: fix FTGL test to handle either FTGL/ftgl.h or ftgl.h
John W. Eaton <jwe@octave.org>
parents:
7937
diff
changeset
|
973 New variables. Use these instead of overloading warn_graphics. |
c2449e91f50a
configure.in: fix FTGL test to handle either FTGL/ftgl.h or ftgl.h
John W. Eaton <jwe@octave.org>
parents:
7937
diff
changeset
|
974 |
7937
6661387827d6
Allow build without GraphicsMagick installed
David Bateman <dbateman@free.fr>
parents:
7934
diff
changeset
|
975 2008-07-17 David Bateman <dbateman@free.fr> |
6661387827d6
Allow build without GraphicsMagick installed
David Bateman <dbateman@free.fr>
parents:
7934
diff
changeset
|
976 |
6661387827d6
Allow build without GraphicsMagick installed
David Bateman <dbateman@free.fr>
parents:
7934
diff
changeset
|
977 * configure.in (HAVE_MAGICK): New define for presence of |
6661387827d6
Allow build without GraphicsMagick installed
David Bateman <dbateman@free.fr>
parents:
7934
diff
changeset
|
978 GraphicsMagick. |
6661387827d6
Allow build without GraphicsMagick installed
David Bateman <dbateman@free.fr>
parents:
7934
diff
changeset
|
979 |
7934 | 980 2008-07-16 Michael Goffioul <michael.goffioul@gmail.com> |
981 | |
982 * configure.in: Add check for pthread.h. | |
983 | |
7926
d74f996e005d
__magick_read__.cc: configuration and style fixes
John W. Eaton <jwe@octave.org>
parents:
7916
diff
changeset
|
984 2008-07-14 John W. Eaton <jwe@octave.org> |
d74f996e005d
__magick_read__.cc: configuration and style fixes
John W. Eaton <jwe@octave.org>
parents:
7916
diff
changeset
|
985 |
d74f996e005d
__magick_read__.cc: configuration and style fixes
John W. Eaton <jwe@octave.org>
parents:
7916
diff
changeset
|
986 * Makeconf.in (MAGICK_CONFIG): Substitute here. |
d74f996e005d
__magick_read__.cc: configuration and style fixes
John W. Eaton <jwe@octave.org>
parents:
7916
diff
changeset
|
987 (MAGICK_INCFLAGS, MAGICK_LIBS): Define using GraphicsMagick++ |
d74f996e005d
__magick_read__.cc: configuration and style fixes
John W. Eaton <jwe@octave.org>
parents:
7916
diff
changeset
|
988 config script. |
d74f996e005d
__magick_read__.cc: configuration and style fixes
John W. Eaton <jwe@octave.org>
parents:
7916
diff
changeset
|
989 (do-subst-config-vals): Include MAGICK_LIBS and MAGICK_INCFLAGS in |
d74f996e005d
__magick_read__.cc: configuration and style fixes
John W. Eaton <jwe@octave.org>
parents:
7916
diff
changeset
|
990 list of substitutions. |
d74f996e005d
__magick_read__.cc: configuration and style fixes
John W. Eaton <jwe@octave.org>
parents:
7916
diff
changeset
|
991 * configure.in: Check for GraphicsMagick++ config script. |
d74f996e005d
__magick_read__.cc: configuration and style fixes
John W. Eaton <jwe@octave.org>
parents:
7916
diff
changeset
|
992 |
7915
d74e515cb535
configure.in: check for ftgl.h instead of FTGL.h
John W. Eaton <jwe@octave.org>
parents:
7914
diff
changeset
|
993 2008-07-10 John W. Eaton <jwe@octave.org> |
d74e515cb535
configure.in: check for ftgl.h instead of FTGL.h
John W. Eaton <jwe@octave.org>
parents:
7914
diff
changeset
|
994 |
7916
f805e026c481
octMakefile.in (DIRS_TO_MAKE): update list
John W. Eaton <jwe@octave.org>
parents:
7915
diff
changeset
|
995 * octMakefile.in (DIRS_TO_MAKE): Delete $(localfcnfilepath) and |
f805e026c481
octMakefile.in (DIRS_TO_MAKE): update list
John W. Eaton <jwe@octave.org>
parents:
7915
diff
changeset
|
996 $(localoctfilepath) from the list. Include $(datadir) |
f805e026c481
octMakefile.in (DIRS_TO_MAKE): update list
John W. Eaton <jwe@octave.org>
parents:
7915
diff
changeset
|
997 $(localfcnfiledir) $(localapifcnfiledir) $(localverfcnfiledir) |
f805e026c481
octMakefile.in (DIRS_TO_MAKE): update list
John W. Eaton <jwe@octave.org>
parents:
7915
diff
changeset
|
998 $(localoctfiledir) $(localapioctfiledir) $(localveroctfiledir) |
f805e026c481
octMakefile.in (DIRS_TO_MAKE): update list
John W. Eaton <jwe@octave.org>
parents:
7915
diff
changeset
|
999 $(imagedir) and $(localapiarchlibdir) in the list. |
f805e026c481
octMakefile.in (DIRS_TO_MAKE): update list
John W. Eaton <jwe@octave.org>
parents:
7915
diff
changeset
|
1000 |
7915
d74e515cb535
configure.in: check for ftgl.h instead of FTGL.h
John W. Eaton <jwe@octave.org>
parents:
7914
diff
changeset
|
1001 * configure.in: Look for FTGL/ftgl.h instead of FTGL/FTGL.h. Also |
d74e515cb535
configure.in: check for ftgl.h instead of FTGL.h
John W. Eaton <jwe@octave.org>
parents:
7914
diff
changeset
|
1002 look for ftgl.h. |
d74e515cb535
configure.in: check for ftgl.h instead of FTGL.h
John W. Eaton <jwe@octave.org>
parents:
7914
diff
changeset
|
1003 |
7914
e998e81224b5
Various compilation fixes for MSVC.
John W. Eaton <jwe@octave.org>
parents:
7905
diff
changeset
|
1004 2008-07-10 Michael Goffioul <michael.goffioul@gmail.com> |
7905
bcacdcc726f7
Allow octave compilation without FLTK/OpenGL
John W. Eaton <jwe@octave.org>
parents:
7887
diff
changeset
|
1005 |
bcacdcc726f7
Allow octave compilation without FLTK/OpenGL
John W. Eaton <jwe@octave.org>
parents:
7887
diff
changeset
|
1006 * configure.in: new substituted variables GL_RENDER_SRC and |
bcacdcc726f7
Allow octave compilation without FLTK/OpenGL
John W. Eaton <jwe@octave.org>
parents:
7887
diff
changeset
|
1007 FLTK_BACKEND_SRC. |
bcacdcc726f7
Allow octave compilation without FLTK/OpenGL
John W. Eaton <jwe@octave.org>
parents:
7887
diff
changeset
|
1008 |
9501 | 1009 2008-06-20 Michael Goffioul <michael.goffioul@gmail.com> |
7914
e998e81224b5
Various compilation fixes for MSVC.
John W. Eaton <jwe@octave.org>
parents:
7905
diff
changeset
|
1010 |
e998e81224b5
Various compilation fixes for MSVC.
John W. Eaton <jwe@octave.org>
parents:
7905
diff
changeset
|
1011 * Makeconf.in: Add GRAPHICS_CFLAGS substitution. |
e998e81224b5
Various compilation fixes for MSVC.
John W. Eaton <jwe@octave.org>
parents:
7905
diff
changeset
|
1012 * configure.in: Add checks for hypotf and _hypotf. |
e998e81224b5
Various compilation fixes for MSVC.
John W. Eaton <jwe@octave.org>
parents:
7905
diff
changeset
|
1013 |
9501 | 1014 2008-06-12 Jaroslav Hajek <highegg@gmail.com> |
7887
627b10572d82
configure.in: fix invalid placement of variables restoration statements
Jaroslav Hajek <highegg@gmail.com>
parents:
7874
diff
changeset
|
1015 |
627b10572d82
configure.in: fix invalid placement of variables restoration statements
Jaroslav Hajek <highegg@gmail.com>
parents:
7874
diff
changeset
|
1016 * configure.in: Move LIBS and CXXFLAGS restoration into |
627b10572d82
configure.in: fix invalid placement of variables restoration statements
Jaroslav Hajek <highegg@gmail.com>
parents:
7874
diff
changeset
|
1017 the proper block. |
627b10572d82
configure.in: fix invalid placement of variables restoration statements
Jaroslav Hajek <highegg@gmail.com>
parents:
7874
diff
changeset
|
1018 |
7874
e3a502930e2a
eliminate src/graphics subdirectory
John W. Eaton <jwe@octave.org>
parents:
7863
diff
changeset
|
1019 2008-06-05 John W. Eaton <jwe@octave.org> |
e3a502930e2a
eliminate src/graphics subdirectory
John W. Eaton <jwe@octave.org>
parents:
7863
diff
changeset
|
1020 |
e3a502930e2a
eliminate src/graphics subdirectory
John W. Eaton <jwe@octave.org>
parents:
7863
diff
changeset
|
1021 * configure.in: Add FT2_CFLAGS to XTRA_CXXFLAGS, not CXXFLAGS. |
e3a502930e2a
eliminate src/graphics subdirectory
John W. Eaton <jwe@octave.org>
parents:
7863
diff
changeset
|
1022 Don't add FT2_LIBS to LIBS. |
e3a502930e2a
eliminate src/graphics subdirectory
John W. Eaton <jwe@octave.org>
parents:
7863
diff
changeset
|
1023 Don't generate src/graphics/Makefile, src/graphics/Makerules, |
e3a502930e2a
eliminate src/graphics subdirectory
John W. Eaton <jwe@octave.org>
parents:
7863
diff
changeset
|
1024 src/graphics/opengl/Makefile, or src/graphics/fltk_backend/Makefile. |
e3a502930e2a
eliminate src/graphics subdirectory
John W. Eaton <jwe@octave.org>
parents:
7863
diff
changeset
|
1025 |
e3a502930e2a
eliminate src/graphics subdirectory
John W. Eaton <jwe@octave.org>
parents:
7863
diff
changeset
|
1026 * Makeconf.in (FT2_LIBS, GRAPHICS_LIBS): Substitute here. |
e3a502930e2a
eliminate src/graphics subdirectory
John W. Eaton <jwe@octave.org>
parents:
7863
diff
changeset
|
1027 |
7834
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
1028 2008-06-04 Shai Ayal <shaiay@users.sourceforge.net> |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
1029 |
7863
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
1030 * configure.in: Use AC_TRY_LINK in FTGL test. |
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
1031 Include FT_CFLAGS in CXXFLAGS. |
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
1032 |
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
1033 * aclocal.m4 (OCTAVE_OPENGL): Note FIXME for apple. |
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
1034 |
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
1035 * configure.in: Check for FTGL library. |
2a62d45fa21d
added check for FTGL library
Shai Ayal <shaiay@users.sourceforge.net>
parents:
7834
diff
changeset
|
1036 |
7834
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
1037 * configure.in: Remove check for Fl/glu.h header. |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
1038 |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
1039 * aclocal.m4 (AC_CHECK_FT2): New macro to check for freetype2. |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
1040 |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
1041 * configure.in: Check for FLTK and corresponding compiler flags. |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
1042 |
9501 | 1043 2008-06-04 Michael Goffioul <michael.goffioul@gmail.com> |
7823
feaaf725c54f
Ignore build directories.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7806
diff
changeset
|
1044 |
7834
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
1045 * configure.in: Double-quote warn_graphics variable. |
caab78e7e377
added checks for fltk & freetype in configure script
Shai Ayal <shaiay@sourceforge.net>
parents:
7825
diff
changeset
|
1046 |
7825
13871b7de124
Import sources for OpenGL-based renderer.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7823
diff
changeset
|
1047 * aclocal.m4 (OCTAVE_OPENGL): New function to detect OpenGL |
13871b7de124
Import sources for OpenGL-based renderer.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7823
diff
changeset
|
1048 headers and libraries. |
13871b7de124
Import sources for OpenGL-based renderer.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7823
diff
changeset
|
1049 * configure.in (OCTAVE_OPENGL): Use it. |
13871b7de124
Import sources for OpenGL-based renderer.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7823
diff
changeset
|
1050 (OCTGRAPHICS_DLL_DEFS): New define to build |
13871b7de124
Import sources for OpenGL-based renderer.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7823
diff
changeset
|
1051 graphics-related DLL. |
13871b7de124
Import sources for OpenGL-based renderer.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7823
diff
changeset
|
1052 (AC_CONFIG_FILES): Generate additional files for graphics |
13871b7de124
Import sources for OpenGL-based renderer.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7823
diff
changeset
|
1053 related libraries. |
13871b7de124
Import sources for OpenGL-based renderer.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7823
diff
changeset
|
1054 * Makeconf.in (OPENGL_LIBS): New variable. |
13871b7de124
Import sources for OpenGL-based renderer.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7823
diff
changeset
|
1055 |
7823
feaaf725c54f
Ignore build directories.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7806
diff
changeset
|
1056 * .hgignore: Also ignore build-.*, configure, and autom4te.cache. |
feaaf725c54f
Ignore build directories.
Michael Goffioul <michael.goffioul@gmail.com>
parents:
7806
diff
changeset
|
1057 |
9501 | 1058 2008-05-22 Jaroslav Hajek <highegg@gmail.com> |
7806
edc25a3fb2bc
handle floats in mk-opts.pl
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
1059 |
edc25a3fb2bc
handle floats in mk-opts.pl
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
1060 * mk-opts.pl (emit_print_function, emit_set_function, |
edc25a3fb2bc
handle floats in mk-opts.pl
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
1061 emit_show_function): Support float type. |
edc25a3fb2bc
handle floats in mk-opts.pl
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
1062 |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7702
diff
changeset
|
1063 2008-05-20 David Bateman <dbateman@free.fr> |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7702
diff
changeset
|
1064 |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7702
diff
changeset
|
1065 * configure.in (AC_CHECK_FUNCS): Add expm1, lgammaf, lgammaf_r, |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7702
diff
changeset
|
1066 log1pf and tgammaf. Also check for libfftw3f. |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7702
diff
changeset
|
1067 |
7702
80b78635eefe
Drop the Encoding key
Rafael Laboissiere <rafael@debian.org>
parents:
7698
diff
changeset
|
1068 2008-04-09 Rafael Laboissiere <rafael@debian.org> |
80b78635eefe
Drop the Encoding key
Rafael Laboissiere <rafael@debian.org>
parents:
7698
diff
changeset
|
1069 |
80b78635eefe
Drop the Encoding key
Rafael Laboissiere <rafael@debian.org>
parents:
7698
diff
changeset
|
1070 * example/octave.desktop.in: Drop the Encoding key, which is |
80b78635eefe
Drop the Encoding key
Rafael Laboissiere <rafael@debian.org>
parents:
7698
diff
changeset
|
1071 deprecated by the FreeDesktop standard. |
80b78635eefe
Drop the Encoding key
Rafael Laboissiere <rafael@debian.org>
parents:
7698
diff
changeset
|
1072 |
7698
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7694
diff
changeset
|
1073 2008-04-04 John W. Eaton <jwe@octave.org> |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7694
diff
changeset
|
1074 |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7694
diff
changeset
|
1075 * Makeconf.in (do-check-m-sources): New macro. |
4584feed3ec4
check-m-sources: new target for script Makefiles
John W. Eaton <jwe@octave.org>
parents:
7694
diff
changeset
|
1076 |
7694 | 1077 2008-04-03 Tatsuro MATSUOKA <tmacchant@yahoo.co.jp> |
1078 | |
1079 * README.Cygwin: Update. | |
1080 | |
9501 | 1081 2008-04-02 Jaroslav Hajek <highegg@gmail.com> |
7683
8136cb19fb7a
implement BLAS-F77 call compatibility check
Jaroslav Hajek <highegg@gmail.com>
parents:
7638
diff
changeset
|
1082 |
8136cb19fb7a
implement BLAS-F77 call compatibility check
Jaroslav Hajek <highegg@gmail.com>
parents:
7638
diff
changeset
|
1083 * acx_blas_f77_func.m4: New file. |
8136cb19fb7a
implement BLAS-F77 call compatibility check
Jaroslav Hajek <highegg@gmail.com>
parents:
7638
diff
changeset
|
1084 * configure.in: Call ACX_BLAS_WITH_F77_FUNC instead of ACX_BLAS. |
8136cb19fb7a
implement BLAS-F77 call compatibility check
Jaroslav Hajek <highegg@gmail.com>
parents:
7638
diff
changeset
|
1085 Supply a warning for incompatible Fortran/BLAS configuration. |
8136cb19fb7a
implement BLAS-F77 call compatibility check
Jaroslav Hajek <highegg@gmail.com>
parents:
7638
diff
changeset
|
1086 |
9501 | 1087 2008-03-25 Jaroslav Hajek <highegg@gmail.com> |
7638
2df457529cfa
implement expm1 and log1p functions
Jaroslav Hajek <highegg@gmail.com>
parents:
7636
diff
changeset
|
1088 |
2df457529cfa
implement expm1 and log1p functions
Jaroslav Hajek <highegg@gmail.com>
parents:
7636
diff
changeset
|
1089 * configure.in: Check for expm1 and log1p functions. |
2df457529cfa
implement expm1 and log1p functions
Jaroslav Hajek <highegg@gmail.com>
parents:
7636
diff
changeset
|
1090 |
7636
99c410f7f0b0
implement mapper function for banker's rounding
Jaroslav Hajek <highegg@gmail.com>
parents:
7619
diff
changeset
|
1091 2008-03-25 John W. Eaton <jwe@octave.org> |
99c410f7f0b0
implement mapper function for banker's rounding
Jaroslav Hajek <highegg@gmail.com>
parents:
7619
diff
changeset
|
1092 |
99c410f7f0b0
implement mapper function for banker's rounding
Jaroslav Hajek <highegg@gmail.com>
parents:
7619
diff
changeset
|
1093 * configure.in: Check for trunc. |
99c410f7f0b0
implement mapper function for banker's rounding
Jaroslav Hajek <highegg@gmail.com>
parents:
7619
diff
changeset
|
1094 |
7619 | 1095 2008-03-21 David Bateman <dbateman@free.fr> |
1096 | |
1097 * configure.in (HAVE_AMD): Complete test for presence of amd. | |
1098 | |
7601
8a939b217863
Treat negative values to lgamma and beta correctly
David Bateman <dbateman@free.fr>
parents:
7579
diff
changeset
|
1099 2008-03-18 David Bateman <dbateman@free.fr> |
8a939b217863
Treat negative values to lgamma and beta correctly
David Bateman <dbateman@free.fr>
parents:
7579
diff
changeset
|
1100 |
8a939b217863
Treat negative values to lgamma and beta correctly
David Bateman <dbateman@free.fr>
parents:
7579
diff
changeset
|
1101 * configure.in (AC_CHECK_FUNCS): Also check lgamma_r. |
8a939b217863
Treat negative values to lgamma and beta correctly
David Bateman <dbateman@free.fr>
parents:
7579
diff
changeset
|
1102 |
7579 | 1103 2008-03-11 David Bateman <dbateman@free.fr> |
1104 | |
1105 * run-octave.in: Fix typo. | |
1106 | |
7512
59bee17bc192
ignore errors installing octave.desktop file
John W. Eaton <jwe@octave.org>
parents:
7483
diff
changeset
|
1107 2008-02-21 John W. Eaton <jwe@octave.org> |
59bee17bc192
ignore errors installing octave.desktop file
John W. Eaton <jwe@octave.org>
parents:
7483
diff
changeset
|
1108 |
59bee17bc192
ignore errors installing octave.desktop file
John W. Eaton <jwe@octave.org>
parents:
7483
diff
changeset
|
1109 * examples/Makefile.in (install install-strip): Ignore errors |
59bee17bc192
ignore errors installing octave.desktop file
John W. Eaton <jwe@octave.org>
parents:
7483
diff
changeset
|
1110 installing octave.desktop file. |
59bee17bc192
ignore errors installing octave.desktop file
John W. Eaton <jwe@octave.org>
parents:
7483
diff
changeset
|
1111 |
7483
fb66330b2608
don't special case SH_LD for FreeBSD and OpenBSD
John W. Eaton <jwe@octave.org>
parents:
7482
diff
changeset
|
1112 2008-02-15 John W. Eaton <jwe@octave.org> |
fb66330b2608
don't special case SH_LD for FreeBSD and OpenBSD
John W. Eaton <jwe@octave.org>
parents:
7482
diff
changeset
|
1113 |
fb66330b2608
don't special case SH_LD for FreeBSD and OpenBSD
John W. Eaton <jwe@octave.org>
parents:
7482
diff
changeset
|
1114 * configure.in (*-*-freebsd*, *-*-openbsd*): Don't set SH_LD. |
fb66330b2608
don't special case SH_LD for FreeBSD and OpenBSD
John W. Eaton <jwe@octave.org>
parents:
7482
diff
changeset
|
1115 |
7482
29980c6b8604
don't check f77_exception_encountered
John W. Eaton <jwe@octave.org>
parents:
7449
diff
changeset
|
1116 2008-02-14 John W. Eaton <jwe@octave.org> |
29980c6b8604
don't check f77_exception_encountered
John W. Eaton <jwe@octave.org>
parents:
7449
diff
changeset
|
1117 |
29980c6b8604
don't check f77_exception_encountered
John W. Eaton <jwe@octave.org>
parents:
7449
diff
changeset
|
1118 * examples/fortdemo.cc: Don't check f77_exception_encountered. |
29980c6b8604
don't check f77_exception_encountered
John W. Eaton <jwe@octave.org>
parents:
7449
diff
changeset
|
1119 |
7449 | 1120 2008-02-06 John W. Eaton <jwe@octave.org> |
1121 | |
1122 * examples/Makefile.in (octave.desktop): | |
1123 Use mv instead of move-if-change. | |
1124 | |
7448 | 1125 2008-02-05 John W. Eaton <jwe@octave.org> |
1126 | |
1127 * dlfcn/Makefile.in: Unconditionally include $(MAKEDEPS). | |
1128 Mark $(MAKEDEPS) as .PHONY targets if omit_deps is true. | |
1129 | |
7361 | 1130 2008-01-12 John W. Eaton <jwe@octave.org> |
1131 | |
1132 * aclocal.m4: Call AC_SUBST instead of AC_DEFINE_UNQOTED for | |
1133 GNUPLOT_BINARY. | |
1134 * aclocal.m4, configure.in: Use GNUPLOT instead of GNUPLOT_BINARY | |
1135 as variable name. | |
1136 * Makeconf.in (GNUPLOT): Substitute. | |
1137 (do-subst-config-vals): Substitute GNUPLOT. | |
1138 | |
7334 | 1139 2007-12-21 John W. Eaton <jwe@octave.org> |
1140 | |
1141 Version 3.0.0 released. | |
1142 | |
7315 | 1143 2007-12-13 John W. Eaton <jwe@octave.org> |
1144 | |
1145 * octMakefile.in (octave-bug, octave-config, mkoctfile): | |
1146 Also depend on $(top_srcdir)/src/version.h. | |
1147 | |
7273 | 1148 2007-12-10 John W. Eaton <jwe@octave.org> |
1149 | |
1150 * acx_blas.m4: Use -lsunperf, not -xlic_lib=sunperf. | |
1151 From Jim Langston <Jim.Langston@Sun.COM>. | |
1152 | |
7266 | 1153 2007-12-06 John W. Eaton <jwe@octave.org> |
1154 | |
1155 * configure.in (*-*-darwin*): Only set CPICFLAG, CXXPICFLAG, and | |
1156 FPICFLAG to "" on powerpc systems. | |
1157 | |
7253 | 1158 2007-12-04 John W. Eaton <jwe@octave.org> |
1159 | |
1160 * octave-bug.in (LIBDLFCN): Delete variable and all uses. | |
1161 * Makeconf.in (LIBDLFCN, DLFCN_INCFLAGS): Likewise. | |
1162 * configure.in (DLFCN_DIR, LIBDLFCN, DLFCN_INCFLAGS): Likewise. | |
1163 Don't generate dlfcn/Makefile. | |
1164 * octMakefile.in (DISTSUBDIRS): Delete dlfcn from the list. | |
1165 (SUBDIRS): Don't substitute DLFCN_DIR here. | |
1166 | |
7244 | 1167 2007-12-03 Moritz Borgmann <octave@moriborg.de> |
1168 | |
1169 * Makeconf.in, aclocal.m4, configure.in: Check for find program, | |
1170 preferably gfind (on non-GNU systems). Need a sane find for | |
1171 run-octave script. | |
1172 * run-octave.in: Use FIND and AWK as determined by configure. | |
1173 | |
7237 | 1174 2007-12-03 John W. Eaton <jwe@octave.org> |
1175 | |
1176 * configure.in: If available, include <sys/types.h> in test for | |
1177 sigset_t and sig_atomic_t. | |
1178 | |
7231 | 1179 2007-11-30 Moritz Borgmann <octave@moriborg.de> |
1180 | |
1181 * configure.in: Also check for sunmath.h. | |
1182 | |
7189 | 1183 2007-11-26 David Bateman <dbateman@free.fr> |
1184 | |
1185 * PROJECTS: condest now implemented. | |
1186 | |
1187 * NEWS: Document the TeX interpreter mode and its limitations with | |
1188 gnuplot 4.0. | |
1189 | |
1190 * NEWS: Document the use of "colormap gmap40" to workaround some | |
1191 gnuplot 4.0 colormap issues. | |
1192 | |
7177 | 1193 2007-11-14 John W. Eaton <jwe@octave.org> |
1194 | |
1195 * configure.in: Don't create Makefrag.bsd. | |
1196 | |
7173 | 1197 2007-11-14 Joseph P. Skudlarek <Jskud@Jskud.com> |
1198 | |
1199 * configure.in: Rework pcre.h tests to work with autoconf 2.59, | |
1200 and avoid explicit pcre/pcre.h check by using pcre-config. | |
1201 | |
7171 | 1202 2007-11-13 Joseph P. Skudlarek <Jskud@Jskud.com> |
1203 | |
1204 * octave-bug.in: Try mailx, then Mail, then /usr/ucb/mail, then | |
1205 /bin/mail. | |
1206 | |
7169 | 1207 2007-11-13 John W. Eaton <jwe@octave.org> |
1208 | |
1209 * configure.in: Only define HAVE_PCRE_H if <pcre.h> has the | |
1210 definitions we need. Likewise for <pcre/pcre.h>. | |
1211 | |
7155 | 1212 2007-11-10 John W. Eaton <jwe@octave.org> |
1213 | |
1214 * configure.in: Delete AC_SUBST_FILE(f77_rules_frag). | |
1215 | |
7117 | 1216 2007-11-07 John W. Eaton <jwe@octave.org> |
1217 | |
1218 * configure.in: Also check for pcre/pcre.h. | |
1219 | |
7095 | 1220 2007-11-01 John W. Eaton <jwe@octave.org> |
1221 | |
1222 * configure.in: Delete BLAS library calling convention | |
1223 compatibility check. | |
1224 | |
7088 | 1225 2007-10-31 John W. Eaton <jwe@octave.org> |
1226 | |
1227 * README.binary-dist: Delete. | |
1228 | |
1229 * README.MachTen: Delete. | |
1230 * octMakefile.in (DISTFILES): Remove it from the list. | |
1231 | |
7081 | 1232 2007-10-30 David Bateman <dbateman@free.fr> |
1233 | |
1234 * examples/addtwomatrices.cc, examples/celldemo.cc, | |
1235 examples/firstmexdemo.c, examples/fortdemo.cc, examples/fortsub.f, | |
1236 examples/funcdemo.cc, examples/globaldemo.cc, | |
1237 examples/helloworld.cc, examples/mycell.c, examples/myfeval.c, | |
1238 examples/myfunc.c, examples/mypow2.c, examples/mysparse.c, | |
1239 examples/mystring.c, examples/mystruct.c, examples/paramdemo.cc, | |
1240 examples/stringdemo.cc, examples/structdemo.cc, | |
1241 examples/unwinddemo.cc: Doc fixes for small book format. | |
1242 | |
7075 | 1243 2007-10-26 Michael Goffioul <michael.goffioul@gmail.com> |
1244 | |
1245 * Makeconf.in: Remove UNSETCOMSPEC trick. | |
1246 | |
7067 | 1247 2007-10-25 John W. Eaton <jwe@octave.org> |
1248 | |
1249 * configure.in (AH_BOTTOM): Define OCTAVE_EMPTY_CPP_ARG here. | |
1250 | |
7058 | 1251 2007-10-24 John W. Eaton <jwe@octave.org> |
1252 | |
7063 | 1253 * octMakefile.in (maintainer-clean distclean): No need to delete |
1254 Makefrag.f77 and Makerules.f77. | |
1255 * Makeconf.in: Include rules for making .o files from .f files | |
1256 instead of substituting @f77_rules_frag@. | |
1257 * configure.in): Delete handling of --with-f2c and --with-f77 | |
1258 options. No need to call OCTAVE_CHECK_EXCLUSIVE_WITH_OPTIONS. | |
1259 Delete all special cases for f2c. | |
1260 * aclocal.m4 (OCTAVE_CHECK_EXCLUSIVE_WITH_OPTIONS): Delete macro. | |
1261 | |
7062 | 1262 * FLEX.patch: Delete obsolete file. |
1263 * octMakefile.in (DISTFILES): Remove it from the list. | |
1264 | |
1265 * acx_blas.m4: Use "-Wl,-framework -Wl,vecLib" instead of | |
1266 just "-framework vecLib" in test for Mac OS X test. | |
1267 | |
7061 | 1268 * configure.in, aclocal.m4: Avoid AC_TRY_EVAL. |
1269 | |
7058 | 1270 * aclocal.m4 (OCTAVE_STRPTIME_BROKEN): New macro. |
1271 * configure.in: Use it. | |
1272 | |
7054 | 1273 2007-10-23 John W. Eaton <jwe@octave.org> |
1274 | |
1275 * configure.in: When checking for -lf2c, set F2CLIBS instad of | |
1276 FLIBS, then set FLIBS to $F2CLIBS just before printing the summary. | |
1277 Check for BLAS library calling convention compatibility. | |
1278 | |
7036 | 1279 2007-10-17 John W. Eaton <jwe@octave.org> |
1280 | |
1281 * configure.in: Delete checks for METIS. | |
1282 | |
7016 | 1283 2007-10-12 John W. Eaton <jwe@octave.org> |
1284 | |
7017 | 1285 * mk-opts.pl (parse_input): Allow comment lines beginning with #. |
1286 | |
7016 | 1287 * Change copyright notices in all files that are part of Octave to |
1288 GPLv3 or any later version. | |
1289 | |
1290 * COPYING: Update to GPLv3. | |
1291 | |
1292 * run-octave.in: List args explicitly in exec command. | |
1293 | |
7014 | 1294 2007-10-11 John W. Eaton <jwe@octave.org> |
1295 | |
1296 * config.guess, config.sub: Update from FSF sources. | |
1297 | |
7001 | 1298 2007-10-10 Kim Hansen <kimhanse@gmail.com> |
1299 | |
1300 * run-octave.in: Use $args. Eliminate "if [ -n "$args" ]" conditional. | |
1301 | |
6987 | 1302 2007-10-09 John W. Eaton <jwe@octave.org> |
1303 | |
1304 * gdbinit.in: Delete. | |
1305 * octMakefile.in (DISTFILES): Remove it from the list. | |
1306 (.gdbinit): Delete rule. | |
1307 (maintainer-clean, distclean): No need to delete .gdbinit. | |
1308 | |
1309 2007-10-09 Kim Hansen <kimhanse@gmail.com> | |
1310 | |
1311 * run-octave.in: Use gdb with --args, not .gdbinit. | |
1312 | |
6980 | 1313 2007-10-08 John W. Eaton <jwe@octave.org> |
1314 | |
1315 * emacs/octave-hlp.el, emacs/octave-inf.el, emacs/octave-mod.el: | |
1316 Sync with GNU Emacs versions. | |
1317 * emacs/octave-mod.el: Delete last two args from calls to | |
1318 define-abbrev. | |
1319 | |
6969 | 1320 2007-10-06 John W. Eaton <jwe@octave.org> |
1321 | |
1322 * configure.in: Check for lgamma and tgamma. | |
1323 | |
6957 | 1324 2007-10-04 John W. Eaton <jwe@octave.org> |
1325 | |
1326 * configure.in (UGLY_DEFS): Delete special case for darwin. | |
1327 | |
6955 | 1328 2007-10-03 John W. Eaton <jwe@octave.org> |
1329 | |
1330 * aclocal.m4 (OCTAVE_PROG_SED): Also check for \(X\|Y\) style | |
1331 regular expression alternation. | |
1332 | |
6941 | 1333 2007-10-01 John W. Eaton <jwe@octave.org> |
1334 | |
1335 * aclocal.m4 (OCTAVE_CHECK_STRPTIME): Delete. | |
1336 * configure.in: Don't use OCTAVE_CHECK_STRPTIME, simply check for | |
1337 strptime. | |
1338 | |
6915 | 1339 2007-09-18 Thomas Treichl <Thomas.Treichl@gmx.net> |
6913 | 1340 |
1341 * aclocal.m4 (OCTAVE_CHECK_STRPTIME): New macro. | |
1342 * configure.in: Use it. | |
1343 | |
6870 | 1344 2007-09-06 John W. Eaton <jwe@octave.org> |
1345 | |
1346 * configure.in: Avoid broken strptime function on Cygwin systems. | |
1347 | |
6855 | 1348 2007-09-01 David Bateman <dbateman@free.fr> |
1349 | |
1350 * configure.in: AC_SUBST and check the variable TEXINFO_QHULL. | |
1351 * Makeconf.in: Use it. | |
1352 | |
6829 | 1353 2007-08-24 David Bateman <dbateman@free.fr> |
1354 | |
1355 * configure.in: Extra Qhull bits. | |
1356 | |
6827 | 1357 2007-08-24 Kim Hansen <kimhanse@gmail.com> |
1358 | |
1359 * run-octave.in: Use `command` instead of $(command) to accomodate | |
1360 brain-dead shells. | |
1361 | |
6823 | 1362 2007-08-24 David Bateman <dbateman@free.fr> |
1363 | |
1364 * configure.in: Probe for the use of Qhull. | |
1365 * aclocal.m4 (AC_CHECK_QHULL_VERSION): Macro to check whether | |
1366 Qhull needs a version number. | |
1367 * Makeconf.in: Add QHULL_LIBS. | |
1368 | |
6822 | 1369 2007-08-23 John W. Eaton <jwe@octave.org> |
1370 | |
1371 * aclocal.m4 (OCTAVE_PROG_SED): Don't clobber value from environment. | |
1372 From: Christian Cornelssen <ccorn@cs.tu-berlin.de>. | |
1373 | |
6821 | 1374 2007-08-23 Thomas Weber <thomas.weber.mail@gmail.com> |
1375 | |
1376 * aclocal.m4 (OCTAVE_PROG_GNUPLOT): Drop check for multiple plot | |
1377 windows. | |
1378 | |
6812 | 1379 2007-08-10 S�ren Hauberg <hauberg@gmail.com> |
1380 | |
1381 * ROADMAP: Update for current sources. | |
1382 | |
6804 | 1383 2007-07-26 John W. Eaton <jwe@octave.org> |
1384 | |
1385 * configure.in: Also look for glpk/glpk.h. | |
1386 | |
6796 | 1387 2007-07-25 David Bateman <dbateman@free.fr> |
1388 | |
1389 * octMakefile.in, dlfcn/Makefile.in, emacs/Makefile.in, | |
1390 examples/Makefile.in, test/Makefile.in: Adjust DISTFILES to allow | |
1391 out of tree "make dist" to work. | |
1392 | |
6794 | 1393 2007-07-24 Michael Goffioul <michael.goffioul@swing.be> |
1394 | |
1395 * configure.in (*-*-msdosmsvc): Only add -g to DL_LDFLAGS and | |
1396 SH_LDFLAGS if either CFLAGS or CXXFLAGS contains -g. | |
1397 | |
6789 | 1398 2007-07-24 Rafael Laboissiere <rafael@debian.org> |
1399 | |
1400 * Makeconf.in (RUNTEST): Delete variable substitution. | |
1401 (do-subst-config-vals): Don't substitute %OCTAVE_CONF_RUNTEST%. | |
1402 | |
6782 | 1403 2007-07-20 Thomas Treichl <Thomas.Treichl@gmx.net> |
1404 | |
1405 * mkoctfile.in: Fix typo. | |
1406 | |
6755 | 1407 2007-06-25 John W. Eaton <jwe@octave.org> |
1408 | |
1409 * mk-opts.pl (emit_print_function): Make generated function print | |
1410 to ostream (passed as arg) instead of local buffer. Don't call | |
1411 print_usage in generated function. | |
1412 (emit_options_function): Fix call to print_${class_name} in | |
1413 generated to pass octave_stdout as arg. | |
1414 | |
6742 | 1415 2007-06-18 John W. Eaton <jwe@octave.org> |
1416 | |
1417 * emacs/octave-inf.el (inferior-octave-prompt): Match "octave.bin" | |
1418 and "octave.exe" in addition to "octave". | |
1419 | |
6732 | 1420 2007-06-15 John W. Eaton <jwe@octave.org> |
1421 | |
1422 * run-octave.in: Use simple string concatenation instead of | |
1423 sprintf in AWK program. | |
1424 | |
6710 | 1425 2007-06-13 Michael Goffioul <michael.goffioul@swing.be> |
1426 | |
6724 | 1427 * configure.in: Set NO_OCT_FILE_STRIP=true for msdosmsvc. |
1428 | |
1429 * aclocal.m4 (OCTAVE_HDF5_DLL): Include return statements in | |
1430 function body used for test. | |
1431 | |
6719 | 1432 * configure.in: Check for CXSparse with C++. |
6724 | 1433 |
6710 | 1434 * Makeconf.in (do-subst-config-vals): Also substitute ${libdir} as |
1435 OCTAVE_CONF_LIBDIR. | |
1436 * mkoctfile.in: Set DEFAULT_LIBDIR and substitute OCTAVE_HOME. | |
1437 Define LIBDIR. Use LIBDIR to set DEFAULT_LFLAGS. | |
1438 | |
6704 | 1439 2007-06-12 Benjamin Lindner <lindnerben@gmx.net> |
1440 | |
1441 * configure.in: For mingw, add -lws2_32 -lkernel32 to LIBS and set | |
1442 _USE_MATH_DEFINES same as for msvc. | |
1443 | |
6694 | 1444 2007-06-06 Michael Goffioul <michael.goffioul@swing.be> |
1445 | |
1446 * configure.in: Check for utime.h and sys/utime.h headers. | |
1447 Check for utime, _chmod, _utime, and _utime32 functions. | |
1448 | |
6686 | 1449 2007-06-03 David Bateman <dbateman@free.fr> |
1450 | |
1451 * configure.in (AC_CONFIG_FILES): Add src/mxarray.h | |
1452 * examples/mycell.c, examples/mypow2.c, examples/mysparse.c, | |
1453 examples/mystring.c, examples/mystruct.c: Use mwSize and mwIndex, | |
1454 rather than int for indexing to conform to new mex API. | |
1455 | |
6682 | 1456 2007-06-01 John W. Eaton <jwe@octave.org> |
1457 | |
1458 * configure.in (*-*-darwin*): Fix quoting and construction of | |
1459 MKOCTFILE_DL_LDFLAGS. | |
1460 * mkoctfile.in (DEFAULT_BINDIR, EXEEXT): New substitutions. | |
1461 * Makeconf.in (MKOCTFILE_DL_LDFLAGS): Delete. | |
1462 (do-subst-config-vals): Do configure substitution of | |
1463 MKOCTFILE_DL_LDFLAGS directly here instead of using intermediate | |
1464 variable. Quote this sed substitution with ' instead of ". | |
1465 | |
6668 | 1466 2007-05-29 Steven Mestdagh <steven.mestdagh@esat.kuleuven.be> |
1467 | |
1468 * configure.in: Delete spurious "break" in fftw3 check. | |
1469 Use separate case for SH_LD and SH_LDFLAGS on openbsd. | |
1470 | |
6654 | 1471 2007-05-22 John W. Eaton <jwe@octave.org> |
1472 | |
1473 * Makeconf.in (do-script-uninstall): Also remove directory. | |
1474 | |
6653 | 1475 2007-05-22 Thomas Weber <thomas.weber.mail@gmail.com> |
1476 | |
1477 * NEWS.2, README.MSVC, WWW/NEWS-2.html: Fix typos. | |
1478 | |
6628 | 1479 2007-05-16 David Bateman <dbateman@free.fr> |
1480 | |
1481 * PROJECTS: Update. | |
1482 | |
6594 | 1483 2007-04-27 John W. Eaton <jwe@octave.org> |
1484 | |
1485 * examples/Makefile.in (SOURCES): Add all example files to the list. | |
1486 | |
1487 * octave-config.in: Don't set PREFIX to OCTAVE_HOME if OCTAVE_HOME | |
1488 is empty. | |
1489 | |
6593 | 1490 2007-04-27 David Bateman <dbateman@free.fr> |
1491 | |
6595 | 1492 * examples/mycell.c, examples/mypow2.c, examples/mystring.c, |
1493 examples/myprop.c: New example mex files. | |
6593 | 1494 |
6585 | 1495 2007-04-26 Alex Zvoleff <azvoleff@sbcglobal.net> |
1496 | |
1497 * configure.in: Don't report ARPACK libraries in summary. | |
1498 | |
6580 | 1499 2007-04-25 David Bateman <dbateman@free.fr> |
1500 | |
6583 | 1501 * Makeconf.in (do-subst-texinfo-vals): Also substitute abs_top_srcdir. |
1502 | |
6580 | 1503 * examples/myfunc.c, exampples/paramdemo.cc: New files |
1504 * examples/mystruct.c, examples/mysparse.c, fortdemo.cc: Fix a few | |
1505 formatting issues when included in texinfo files. | |
1506 | |
6573 | 1507 2007-04-25 John W. Eaton <jwe@octave.org> |
1508 | |
6577 | 1509 * Makeconf.in (do-subst-texinfo-vals): Also substitute top_srcdir. |
1510 | |
6573 | 1511 * examples/addtwomatrices.cc, examples/celldemo.cc, |
1512 examples/fortdemo.cc, examples/funcdemo.cc, | |
1513 examples/globaldemo.cc, examples/helloworld.cc, | |
1514 examples/stringdemo.cc, examples/structdemo.cc, | |
6577 | 1515 examples/unwinddemo.cc, examples/fortsub.f, |
1516 examples/firstmexdemo.c: New files. | |
6573 | 1517 * examples/Makefile.in (SOURCES): Add them to the list. |
1518 | |
6552 | 1519 2007-04-20 John W. Eaton <jwe@octave.org> |
1520 | |
1521 * configure.in: Don't check for ARPACK. | |
1522 | |
6475 | 1523 2007-03-29 Rafael Laboissiere <rafael@debian.org> |
1524 | |
6477 | 1525 * emacs/octave-mod.el: Drop LOADPATH, INFO_FILE, and |
1526 INFO_PROGRAM from octave-variables. | |
1527 | |
6475 | 1528 * examples/info-emacs-octave-help, examples/info-emacs-info: |
1529 Use gnuclient, not gnudoit. | |
1530 | |
6466 | 1531 2007-03-27 John W. Eaton <jwe@octave.org> |
1532 | |
6467 | 1533 * octMakefile.in (dist, conf-dist): Use ln, not $(LN_S). |
1534 * emacs/Makefile.in (dist): Likewise. | |
1535 * examples/Makefile.in (dist): Likewise. | |
1536 * dlfcn/Makefile.in (conf-dist): Likewise. | |
1537 | |
6466 | 1538 * config.guess, config.sub: Update from FSF sources. |
1539 | |
6445 | 1540 2007-03-23 John W. Eaton <jwe@octave.org> |
1541 | |
1542 * examples/make_int.cc (octave_integer::clone): Return type is | |
1543 pointer to octave_base_value, not octave_value. | |
1544 (Fdoit): Rep is reference to octave_base_value, not octave_value. | |
1545 | |
9501 | 1546 2007-03-21 Paul Kienzle <pkienzle@users.sf.net> |
6428 | 1547 |
1548 * octMakefile.in (all): Print message after successful build. | |
1549 | |
6381 | 1550 2007-03-05 John W. Eaton <jwe@octave.org> |
1551 | |
1552 * configure.in (GLPK_PRE_4_14): Rename from GLPK_PRE_4_15. | |
1553 | |
6365 | 1554 2007-02-27 John W. Eaton <jwe@octave.org> |
1555 | |
6366 | 1556 * Makeconf.in (do-script-uninstall): Remove PKG_ADD. |
1557 * examples/Makefile.in (uninstall): Don't remove files listed in | |
1558 $(SCRIPTS) from $(srcdir). | |
1559 Remove www.octave.org-octave.desktop, not octave.desktop. | |
1560 | |
6365 | 1561 * run-octave.in (run-octave.in): Use --no-initial-path. |
1562 Rename to qargs to args. Use $args not "$args" when invoking Octave. | |
1563 Try harder to get quoting right when passing args to Octave. | |
1564 | |
6358 | 1565 2007-02-26 John W. Eaton <jwe@octave.org> |
1566 | |
1567 * octMakefile.in (DISTDIRS): Eliminate variable. | |
1568 | |
6694 | 1569 2007-02-26 Michael Goffioul <michael.goffioul@swing.be> |
6358 | 1570 |
1571 * octMakefile.in, dlfcn/Makefile.in, emacs/Makefile.in: | |
1572 Use $(LN_S) instead of ln or ln -s. | |
1573 | |
1574 * octMakefile.in (dist): Use -9 instead of --best with gzip/bzip2. | |
1575 | |
6335 | 1576 2007-02-21 John W. Eaton <jwe@octave.org> |
1577 | |
1578 * configure.in: Also warn about missing functionality for | |
1579 --without-glpk or --without-curl options. Print curl library | |
1580 warning in summary. | |
1581 | |
6333 | 1582 2007-02-20 Rafael Laboissiere <rafael@debian.org> |
1583 | |
1584 * configure.in: Check for versions of GLPK prior to 4.15 and set | |
1585 the GLPK_PRE_4_15 macro accordingly. | |
1586 | |
6319 | 1587 2007-02-16 John W. Eaton <jwe@octave.org> |
1588 | |
1589 * mkoctfile.in: Use OCTAVE_PREFIX, not OCTAVE_CONF_PREFIX, in sed | |
1590 substitutions. | |
1591 * octave-conf.in: Define DATAROOTDIR, not DATADIR, from | |
1592 OCTAVE_DATAROOTDIR. | |
1593 From Michael Goffioul <michael.goffioul@swing.be>. | |
1594 | |
6311 | 1595 2007-02-15 John W. Eaton <jwe@octave.org> |
1596 | |
1597 * octave-config.in (DATAROOTDIR): Include in list of vars. | |
1598 Substitute OCTAVE_HOME. | |
1599 | |
1600 * Makeconf.in (MKOCTFILE_INCFLAGS, MKOCTFILE_LFLAGS): Delete vars. | |
1601 (do-subst-config-vals): Don't substitute them. | |
1602 Also substitute OCTAVE_CONF_INCLUDEDIR, OCTAVE_CONF_OCTINCLUDEDIR, | |
1603 OCTAVE_CONF_OCTLIBDIR, and OCTAVE_CONF_PREFIX here. | |
1604 * mkoctfile.in (OCTAVE_CONF_OCTINCLUDEDIR, OCTAVE_CONF_INCLUDEDIR, | |
1605 OCTAVE_CONF_OCTLIBDIR): Substitute values and perform OCTAVE_HOME | |
1606 substitution here. | |
1607 (DEFAULT_INCFLAGS, DEFAULT_LFLAGS): New variables. Use them to | |
1608 set default values for INCFLAGS and LFLAGS. | |
1609 | |
6295 | 1610 2007-02-09 John W. Eaton <jwe@octave.org> |
1611 | |
1612 * mkoctfile.in: Handle .a files. | |
1613 | |
6286 | 1614 2007-02-08 John W. Eaton <jwe@octave.org> |
1615 | |
6290 | 1616 * octMakefile.in (all): Depend on dist-info-files. |
1617 (dist): Delete dist-info-files dependency. | |
1618 | |
6286 | 1619 * configure.in: Rewrite if !( X ) ... fi as if X; true; else ... fi. |
6289 | 1620 Also check for _glp_lpx_simplex. |
6286 | 1621 |
6279 | 1622 2007-02-07 John W. Eaton <jwe@octave.org> |
1623 | |
1624 * Makeconf.in (do-script-install): Use $(FCN_FILES) for list of | |
1625 files instead of $(FCN_FILES_NO_DIR). Use basename to get | |
1626 filename with no directory part. | |
1627 | |
6276 | 1628 2007-02-07 Michael Goffioul <michael.goffioul@swing.be> |
1629 | |
1630 * aclocal.m4 (OCTAVE_HDF5_DLL): New macro. | |
1631 * configure.in: Use it. | |
1632 | |
6270 | 1633 2007-02-05 John W. Eaton <jwe@octave.org> |
1634 | |
6271 | 1635 * configure.in: Check for realpath function. |
1636 | |
6270 | 1637 * demo.m: Delete obsolete file. |
1638 | |
6255 | 1639 2007-01-29 Michael Goffioul <michael.goffioul@swing.be> |
1640 | |
1641 * configure.in (*-*-msdosmsvc): Set NO_OCT_FILE_STRIP to true. | |
1642 | |
6253 | 1643 2007-01-24 John W. Eaton <jwe@octave.org> |
1644 | |
1645 * octMakefile.in (install): Install NEWS file. | |
1646 (uninstall): Remove it. | |
1647 | |
6231 | 1648 2007-01-08 David Bateman <dbateman@free.fr> |
1649 | |
1650 * configure.in: Replace sparsesuite with suitesparse to match | |
1651 upstream name. | |
1652 | |
6208 | 1653 2006-12-06 Michael Goffioul <michael.goffioul@swing.be> |
1654 | |
1655 * acx_blas.m4, acx_lapack.m4: Handle f2c calling convention. | |
1656 | |
6201 | 1657 2006-12-05 John W. Eaton <jwe@octave.org> |
1658 | |
1659 * configure.in: Don't check for strptime on *-apple-darwin* systems. | |
1660 | |
6187 | 1661 2006-11-28 John W. Eaton <jwe@octave.org> |
1662 | |
1663 * mkoctfile.in: Construct default output file from basename of | |
1664 input file name. | |
1665 | |
1666 2006-11-28 David Bateman <dbateman@free.fr> | |
6186 | 1667 |
1668 * configure.in: Check for sparse header files in the sparsesuite | |
1669 sub-directory. In the cholmod tests, include the camd libraries, as | |
1670 this might be a dependency for cholmod. | |
1671 | |
6170 | 1672 2006-11-15 John W. Eaton <jwe@octave.org> |
1673 | |
1674 * run-octave.in: Don't forget LD_PRELOAD if there are args. | |
1675 | |
6161 | 1676 2006-11-14 John W. Eaton <jwe@octave.org> |
1677 | |
1678 * configure.in: If warning message is printed, print additional | |
1679 final note about missing libraries. | |
1680 | |
6155 | 1681 2006-11-13 John W. Eaton <jwe@octave.org> |
1682 | |
1683 * run-octave.in: Substitute liboctinterp, liboctave, and libcruft. | |
1684 Use them to set LD_PRELOAD. | |
1685 * Makeconf.in (do-subst-script-vals): Also substitute | |
1686 liboctinterp, liboctave, and libcruft. | |
1687 | |
6153 | 1688 2006-11-13 Rafael Laboissiere <rafael@debian.org> |
1689 | |
1690 * mkoctfile.in: Add -Wl,... options to ldflags, not pass_on_flags. | |
1691 | |
6152 | 1692 2006-11-11 John W. Eaton <jwe@octave.org> |
1693 | |
1694 * examples/Makefile.in (octave.desktop): | |
1695 Use $(simple-move-if-change-rule) here. | |
1696 | |
1697 * Makeconf.in (simple-move-if-change-rule, | |
1698 (builddir-move-if-change-rule): New macros. | |
1699 | |
6812 | 1700 2006-11-11 S�ren Hauberg <hauberg@gmail.com> |
6152 | 1701 |
1702 * examples/Makefile.in (uninstall): Add missing semicolon. | |
1703 | |
6150 | 1704 2006-11-09 John W. Eaton <jwe@octave.org> |
1705 | |
1706 * examples/Makefile.in (uninstall): New target. | |
1707 | |
6149 | 1708 2006-11-09 Michael Goffioul <michael.goffioul@swing.be> |
1709 | |
1710 * configure.in (OCTAVE_LOCAL_BUFFER): Don't access first element | |
1711 if size is 0. | |
1712 | |
6141 | 1713 2006-11-06 Michael Goffioul <michael.goffioul@swing.be> |
1714 | |
1715 * configure.in (CRUFT_DLL_DEFS, OCTAVE_DLL_DEFS, OCTINTERP_DLL_DEFS): | |
1716 Also rename in AC_SUBST calls. | |
1717 * Makeconf.in (ALL_CFLAGS): Use DLL_CDEFS instead of XTRA_CDEFS. | |
1718 (ALL_CXXFLAGS): Use DLL_CDEFS instead of XTRA_CXXDEFS. | |
1719 | |
6137 | 1720 2006-11-03 John W. Eaton <jwe@octave.org> |
1721 | |
1722 * configure.in (CRUFT_DLL_DEFS): Rename from XTRA_CRUFT_DEFS. | |
1723 (OCTAVE_DLL_DEFS): Rename from XTRA_OCTAVE_DEFS. | |
1724 (OCTINTERP_DLL_DEFS): Rename from XTRA_OCTINTERP_DEFS. | |
1725 (XTRA_CRUFT_LINK_FLAGS): Rename from XTRA_CRUFT_LINK_DEPS. | |
1726 | |
6136 | 1727 2006-11-02 John W. Eaton <jwe@octave.org> |
1728 | |
1729 * README.Cygwin: Rename from README.Windows. | |
1730 * README.MSVC: New file. | |
1731 * README.Windows: Point to the README.Cygwin and README.MSVC files. | |
1732 | |
6129 | 1733 2006-11-01 John W. Eaton <jwe@octave.org> |
1734 | |
6133 | 1735 * configure.in: Check for PCRE macros we use. Warn if regex |
1736 library is not found. Print hdf5, zlib, umfpack, colamd, ccolamd, | |
1737 cholmod, and cxsparse warnings when we detect the problems. | |
1738 | |
6131 | 1739 * run-octave.in: Handle quoted args properly in exec call? |
6129 | 1740 |
6125 | 1741 2006-10-29 John W. Eaton <jwe@octave.org> |
1742 | |
1743 * run-octave.in: Handle spaces in directory names. | |
1744 | |
6123 | 1745 2006-10-28 Michael Goffioul <michael.goffioul@swing.be> |
6122 | 1746 |
1747 * configure.in (AH_BOTTOM): If using MSVC, define __WIN32__ before | |
1748 other #ifdefs that use it. | |
1749 | |
6116 | 1750 2006-10-27 John W. Eaton <jwe@octave.org> |
1751 | |
6121 | 1752 * configure.in (AH_BOTTOM): Move DLL defs to |
1753 libcruft/misc/oct-dlldefs.h and include it here. | |
1754 | |
6116 | 1755 * aclocal.m4 (OCTAVE_PROG_TEXI2PDF): Require OCTAVE_PROG_TEXI2DVI. |
1756 If texi2pdf is not found but texi2dvi is available, set TEXI2PDF | |
1757 to "$TEXI2DVI --pdf". | |
1758 (OCTAVE_PROG_GHOSTSCRIPT): Also check for gswin32 on Windows systems. | |
6119 | 1759 |
6116 | 1760 * Makeconf.in (UNSETCOMSPEC): Define if COMSPEC is defined. |
1761 From Michael Goffioul <michael.goffioul@swing.be>. | |
1762 | |
6110 | 1763 2006-10-26 John W. Eaton <jwe@octave.org> |
1764 | |
1765 * configure.in (OCTAVE_EXPORT, OCTAVE_IMPORT): New macros | |
1766 (CRUFT_API, OCTAVE_API, OCTINTERP_API): Define using OCTAVE_EXPORT | |
1767 and OCTAVE_IMPORT. | |
1768 | |
6100 | 1769 2006-10-26 Michael Goffioul <michael.goffioul@swing.be> |
1770 | |
1771 * configure.in (*-*-msdosmsvc): Set library_path_var. | |
6103 | 1772 Check for _WIN32_WINNT >= 0x0403. Define _USE_MATH_DEFINES if it |
1773 is needed. | |
6102 | 1774 (XTRA_CRUFT_LINK_DEPS): New variable. Substitute it. |
6104 | 1775 |
1776 * aclocal.m4 (OCTAVE_MKDIR_TAKES_ONE_ARG): Perform check with C++ | |
1777 compiler. | |
1778 | |
6098 | 1779 2006-10-26 John W. Eaton <jwe@octave.org> |
1780 | |
6103 | 1781 * aclocal.m4 (OCTAVE_PROG_PAGER): Also check for more.com for |
1782 *-*-mingw* and *-*-msdosmsvc systems. | |
1783 | |
6102 | 1784 * configure.in (F77_TOLOWER, F77_APPEND_UNDERSCORE, |
1785 F77_APPEND_EXTRA_UNDERSCORE): New variables. Substitute them. | |
1786 * Makeconf.in (F77_TOLOWER, F77_APPEND_UNDERSCORE, | |
1787 F77_APPEND_EXTRA_UNDERSCORE): Substitute here. | |
1788 (do-subst-f77-mangling): New macro. | |
1789 | |
6098 | 1790 * emacs/octave-inf.el (inferior-octave-has-built-in-variables): |
1791 New defvar. | |
1792 (inferior-octave-resync-dirs): Check to see whether Octave has | |
1793 built-in variables and set inferior-octave-has-built-in-variables. | |
1794 Check inferior-octave-has-built-in-variables to decide whether to | |
1795 send commands that set built-in variables or call functions to | |
1796 change Octave's behavior. | |
1797 Send "disp (pwd ())" to Octave instead of just "pwd". | |
1798 (inferior-octave-startup): Send "more off" to Octave instead of | |
1799 "page_screen_output = 0". | |
1800 | |
6087 | 1801 2006-10-25 John W. Eaton <jwe@octave.org> |
1802 | |
6098 | 1803 * configure.in (RETSIGTYPE_IS_VOID): Define if |
1804 "$ac_cv_type_signal" = "void". | |
1805 | |
6094 | 1806 * configure.in (*-*-msdosmsvc): Don't check for strftime. |
1807 | |
6087 | 1808 * configure.in (INCLUDE_DEPS): Set and substitute. |
1809 (DEPEND_FLAGS, DEPEND_EXTRA_SED_PATTERN): Rearrange way these are set. | |
6089 | 1810 |
6087 | 1811 * Makeconf.in (INCLUDE_DEPS): Substitute here, and use to set default |
1812 value for omit_deps. | |
1813 | |
1814 2006-10-25 Michael Goffioul <michael.goffioul@swing.be> | |
1815 | |
1816 * Makeconf.in (ALL_CFLAGS): Include $(XTRA_CDEFS) in the list. | |
1817 (ALL_CXXFLAGS): Include $(XTRA_CXXDEFS) in the list. | |
1818 | |
1819 * configure.in (XTRA_CRUFT_DEFS, XTRA_OCTAVE_DEFS, | |
1820 XTRA_OCTINTERP_DEFS): Define and substitute. | |
1821 (AH_BOTTOM) [_MSC_VER]: include definitions for CRUFT_API, | |
1822 OCTAVE_API, and OCTINTERP_API. | |
1823 | |
6089 | 1824 * configure.in (*-*-msdosmsvc): Add "-EHs -MD" to CXXFLAGS. |
1825 Add "-MD" to CFLAGS. Add "-MD" to CONFLIB_ARG when checking for | |
1826 libf2c. | |
1827 | |
6090 | 1828 * configure.in (*-*-msdosmsvc): Generate replacement unistd.h. |
1829 * octMakefile.in (maintainer-clean, distclean): Also remove unistd.h. | |
1830 | |
1831 * configure.in (*-*-msdosmsvc): Default sepchar is ';'. | |
6091 | 1832 Define default LIBS (link against kernel32 and ws2_32). |
1833 Force having LoadLibrary API. | |
1834 | |
1835 * configure.in (AH_BOTTOM) [_MSC_VER]: Define __WIN32__. | |
6090 | 1836 |
6086 | 1837 2006-10-25 John W. Eaton <jwe@octave.org> |
1838 | |
1839 * mkoctfile.in (OCTAVE_VERSION): No need to quote replacement here. | |
1840 | |
6073 | 1841 2006-10-24 John W. Eaton <jwe@octave.org> |
1842 | |
1843 * run-octave.in: Only modify .gdbinit if -g option is given. | |
1844 Use $(/bin/pwd) instead of $(pwd). | |
1845 | |
6071 | 1846 2006-10-23 John W. Eaton <jwe@octave.org> |
1847 | |
1848 * emacs/Makefile.in (SOURCES, DISTFILES, install, install-strip, | |
1849 uninstall): Handle otags name change. | |
1850 * emacs/octave-tags, emacs/octave-tags.1: Rename from otags. | |
1851 | |
6061 | 1852 2006-10-17 John W. Eaton <jwe@octave.org> |
1853 | |
1854 * configure.in: Check for _isnan, _finite, and _copysign. | |
1855 | |
6057 | 1856 2006-10-17 Michael Goffioul <michael.goffioul@swing.be> |
1857 | |
6061 | 1858 * aclocal.m4 (OCTAVE_CXX_PREPENDS_UNDERSCORE, OCTAVE_CXX_ABI): Use |
1859 $ac_objext instead of assuming .o. | |
1860 (OCTAVE_PROG_GNUPLOT): Handle *-*-msdos the same as *-*-cygwin* | |
1861 and *-*-mingw32*. | |
6057 | 1862 |
6056 | 1863 2006-10-17 John W. Eaton <jwe@octave.org> |
1864 | |
1865 * configure.in: Check for curl_easy_escap instead of | |
1866 curl_global_init. | |
1867 | |
6051 | 1868 2006-10-13 Michael Goffioul <michael.goffioul@swing.be> |
1869 | |
1870 * configure.in [_MSC_VER]: Disable some warnings. | |
1871 (*-*-msdos): New case for shared libraries. | |
1872 (LIBPRE): New variable. | |
1873 * Makeconf.in: Substitute it. | |
1874 | |
6049 | 1875 2006-10-12 John W. Eaton <jwe@octave.org> |
1876 | |
1877 * configure.in (AH_BOTTOM): Don't unconditionally #define | |
1878 OCTAVE_HAVE_POSIX_FILESYSTEM followed by a conditional #undef | |
1879 OCTAVE_HAVE_POSIX_FILESYSTEM since autoconf is commenting out the | |
1880 #undef. | |
1881 | |
6043 | 1882 2006-10-09 John W. Eaton <jwe@octave.org> |
1883 | |
1884 * Makeconf.in (CURL_LIBS, do-subst-config-vals): | |
1885 Substitute CURL_LIBS. | |
1886 | |
1887 * configure.in: Check for libcurl. | |
1888 | |
6028 | 1889 2006-10-04 John W. Eaton <jwe@octave.org> |
1890 | |
1891 * Makeconf.in (library_path_var): Substitute value from configure. | |
1892 (do-subst-script-vals): Add library_path_var to the list. | |
1893 * run-octave.in: Substitute value here. | |
1894 | |
6024 | 1895 2006-10-03 John W. Eaton <jwe@octave.org> |
1896 | |
6025 | 1897 * configure.in: Warn if PCRE library is not found. |
1898 | |
6024 | 1899 * configure.in: Include CAMD_LIBS, AMD_LIBS, and REGEX_LIBS in the |
1900 summary. | |
1901 | |
1902 2006-10-03 David Bateman <dbateman@free.fr> | |
1903 | |
1904 * configure.in: Check for libcamd. | |
1905 * Makeconf.in (CAMD_LIBS): New variable. | |
1906 | |
6009 | 1907 2006-09-27 John W. Eaton <jwe@octave.org> |
1908 | |
1909 * mkoctfile.in [--mex]: Include -I. in incflags. | |
6812 | 1910 From S�ren Hauberg <hauberg@gmail.com>. |
6009 | 1911 |
6001 | 1912 2006-09-26 John W. Eaton <jwe@octave.org> |
1913 | |
1914 * configure.in (AC_CONFIG_FILES): | |
1915 Remove doc/interpreter/images/Makefile from the list. | |
1916 | |
5994 | 1917 2006-09-16 John W. Eaton <jwe@octave.org> |
1918 | |
1919 * octave-bug.in: Delete LIBPLPLOT variables. | |
1920 | |
5990 | 1921 2006-09-15 John W. Eaton <jwe@octave.org> |
1922 | |
1923 * configure.in: Check for locale.h and setlocale. | |
1924 | |
5989 | 1925 2006-09-13 Christopher Hulbert <cchgroupmail@gmail.com> |
1926 | |
1927 * run-octave.in (LD_LIBRARY_PATH): Also append LD_LIBRARY_PATH | |
1928 from environment. | |
1929 | |
5970 | 1930 2006-08-25 Alexander Barth <abarth@marine.usf.edu> |
1931 | |
1932 * mkoctfile.in: Accept .f90 and .F90 as Fortran files. | |
1933 Pass $incflags and $defs to Fortran compiler. | |
1934 | |
5942 | 1935 2006-08-18 John W. Eaton <jwe@octave.org> |
1936 | |
1937 * Makeconf.in (do-subst-texinfo-vals): Don't substitute | |
1938 %CANONICAL_HOST_TYPE%. | |
1939 | |
5934 | 1940 2006-08-17 John W. Eaton <jwe@octave.org> |
1941 | |
1942 * aclocal.m4 (OCTAVE_PROG_GHOSTSCRIPT, OCTAVE_PROG_MAKEINFO, | |
1943 OCTAVE_PROG_TEXI2DVI, OCTAVE_PROG_TEXI2PDF): New macros. | |
1944 * configure.in: Use them. Maybe print warnings in summary. | |
1945 | |
5909 | 1946 2006-07-27 John W. Eaton <jwe@octave.org> |
1947 | |
1948 * Makeconf.in (localapiarchlibdir): Substitute it here. | |
1949 (do-subst-default-vals): Include it in the sed command here. | |
1950 * configure.in (localapiarchlibdir): New variable. | |
1951 * octave-config.in: Don't quote %VAR% values. | |
1952 (LOCALAPIARCHLIBDIR): New variable. | |
1953 | |
1954 2006-07-27 Thomas Weber <thomas.weber.mail@gmail.com> | |
1955 | |
1956 * octave-config.in (OCTAVE_FCNFILEPATH, OCTAVE_IMAGEPATH, | |
1957 OCTAVE_LOCALFCNFILEPATH, OCTAVE_LOCALOCTFILEPATH): Delete variables. | |
1958 | |
5904 | 1959 2006-07-26 John W. Eaton <jwe@octave.org> |
1960 | |
1961 * mkoctfile.in (Options): Accept -g. | |
1962 | |
1963 * configure.in: Check for exp2 and log2. | |
1964 | |
5903 | 1965 2006-07-25 David Bateman <dbateman@free.fr> |
1966 | |
1967 * mysparse.c: New file. | |
1968 | |
5866 | 1969 2006-06-27 John W. Eaton <jwe@octave.org> |
1970 | |
1971 * octMakefile.in (maintainer-clean distclean): Remove | |
1972 $(SHELL_SCRIPTS) instead of naming files individually. | |
1973 Also remove .gdbinit. | |
1974 | |
5864 | 1975 2006-06-21 John W. Eaton <jwe@octave.org> |
1976 | |
1977 * examples/myfeval.c, examples/myfevalf.f, examples/myhello.c, | |
1978 examples/myset.c, examples/mystruct.c: New files. | |
1979 | |
1980 * mkoctfile.in: New option, --mex. | |
1981 | |
5857 | 1982 2006-06-13 John W. Eaton <jwe@octave.org> |
1983 | |
1984 * configure.in (--enable-64): Include "(EXPERIMENTAL)" in help text. | |
1985 Also set warn_64_bit if no suitable type for octave_idx_type is found. | |
1986 If --enable-64 is specified, print warning in summary message. | |
1987 | |
5854 | 1988 2006-06-12 John W. Eaton <jwe@octave.org> |
1989 | |
1990 * aclocal.m4 (OCTAVE_CXX_BROKEN_REINTERPRET_CAST): New macro. | |
1991 * configure.in: Use it. | |
1992 * AH_BOTTOM: Conditionally define FCN_PTR_CAST here. | |
1993 | |
5847 | 1994 2006-06-08 John W. Eaton <jwe@octave.org> |
1995 | |
1996 * Makeconf.in (do-subst-default-vals): Also substitute | |
1997 OCTAVE_DATAROOTDIR. | |
1998 | |
5843 | 1999 2006-06-06 John W. Eaton <jwe@octave.org> |
2000 | |
5844 | 2001 * Makeconf.in (datarootdir): New variable. |
2002 | |
2003 * acx_lapack.m4 (acx_lapack_ok): | |
2004 Use AC_LINK_IFELSE+AC_LANG_PROGRAM instead of AC_TRY_LINK | |
2005 | |
2006 * aclocal.m4: Use AC_RUN_IFELSE+AC_LANG_SOURCE instead of AC_TRY_RUN. | |
2007 | |
2008 * acx_blas.m4, acx_lapack.m4, configure.in, aclocal.m4: | |
2009 Use AS_HELP_STRING instead of AC_HELP_STRING. | |
2010 | |
2011 * configure.in: Outside of other macros, use AC_MSG_NOTICE instad | |
2012 of AC_MSG_RESULT. Check for sys_siglist using method from | |
2013 autoconf manual. | |
2014 | |
2015 * configure.in, Makeconf.in: octMakefile.in: Delete plplot cruft. | |
2016 | |
5843 | 2017 * configure.in, aclocal.m4: |
2018 Use AC_LINK_IFELSE+AC_LANG_PROGRAM instead of AC_TRY_LINK | |
5844 | 2019 Use AC_COMPILE_IFELSE+AC_LANG_PROGRAM instead of AC_TRY_COMPILE. |
2020 Use AS_HELP_STRING consistently with AC_ARG_WITH and AC_ARG_ENABLE. | |
5843 | 2021 |
5828 | 2022 2006-05-23 John W. Eaton <jwe@octave.org> |
2023 | |
2024 * configure.in: Check for inttypes.h and stdint.h. | |
2025 | |
5823 | 2026 2006-05-19 John W. Eaton <jwe@octave.org> |
2027 | |
2028 * mk-opts.pl (emit_print_function, emit_options_function): | |
2029 Generate print_usage calls with no args. | |
2030 | |
5814 | 2031 2006-05-11 John W. Eaton <jwe@octave.org> |
2032 | |
2033 * configure.in (localfcnfilepath, localoctfilepath, fcnfilepath, | |
2034 imagepath): Delete variables. | |
2035 * Makeconf.in (localfcnfilepath, localoctfilepath, fcnfilepath, | |
2036 imagepath): Likewise. | |
2037 (do-subst-default-vals): Don't substitute them. | |
2038 | |
2039 * run-octave.in: Pass --image-path to octave. | |
2040 Use find to recursively add directories to loadpath. | |
2041 Fixup set args command in .gdbinit here. | |
2042 | |
5798 | 2043 2006-05-09 John W. Eaton <jwe@octave.org> |
2044 | |
2045 * octMakefile.in (abs_top_srcdir): Substitute value here. | |
2046 | |
5793 | 2047 2006-05-05 David Bateman <dbateman@free.fr> |
2048 | |
2049 * Makeconf.in (do-subst-scripts-vals): Also replace | |
2050 abs_top_srcdir. | |
2051 * run-octave.in: Define top_srcdir as an absolute path. | |
2052 | |
5788 | 2053 2006-05-04 John W. Eaton <jwe@octave.org> |
2054 | |
2055 * octMakefile.in (SHELL_SCRIPTS): Include run-octave in the list. | |
2056 | |
5781 | 2057 2006-05-02 John W. Eaton <jwe@octave.org> |
2058 | |
2059 * NEWS: New contents for 3.0. | |
2060 * NEWS.2: Move contents of NEWS here. | |
2061 | |
2062 2006-04-29 John W. Eaton <jwe@octave.org> | |
2063 | |
2064 * run-octave.in: Execute $builddir/src/octave, not src/octave. | |
2065 | |
5778 | 2066 2006-04-26 Thomas Weber <thomas.weber.mail@gmail.com> |
2067 | |
2068 * configure.in: Fix apiversion vs. api_version typo. | |
2069 | |
5776 | 2070 2006-04-25 John W. Eaton <jwe@octave.org> |
2071 | |
2072 * Makefile.in (TARGETS): Include run-octave and .gdbinit in the list. | |
2073 * Makeconf.in (subst-script-vals): New macro. | |
2074 * octMakefile.in (run-octave, .gdbinit): New rules. | |
2075 (DISTFILES): Include run-octave.in and gdbinit.in in the list. | |
2076 | |
5765 | 2077 2006-04-17 John W. Eaton <jwe@octave.org> |
2078 | |
2079 * mk-opts.pl (emit_print_function): Emit code that uses | |
2080 std::ostringstream directly. | |
2081 | |
5760 | 2082 2006-04-13 John W. Eaton <jwe@octave.org> |
2083 | |
2084 * configure.in (CONST_CAST, DYNAMIC_CAST, REINTERPRET_CAST, | |
2085 STATIC_CAST): Delete. | |
2086 | |
5759 | 2087 2006-04-12 John W. Eaton <jwe@octave.org> |
2088 | |
2089 * configure.in: If using g++, also add -Wold-style-cast to CXXFLAGS. | |
2090 | |
5719 | 2091 2006-03-28 John W. Eaton <jwe@octave.org> |
2092 | |
2093 * configure.in: Don't check for MPI libraries. | |
2094 | |
5717 | 2095 2006-03-27 John W. Eaton <jwe@octave.org> |
2096 | |
2097 * configure.in: Downcase ac_cv_header_mach_o_dyld_h. | |
2098 From Martin Costabel <costabel@wanadoo.fr>. | |
2099 | |
5708 | 2100 2006-03-22 John W. Eaton <jwe@octave.org> |
2101 | |
2102 * Makeconf.in: (TEXINFO_COLAMD, TEXINFO_CHOLMOD, TEXINFO_UMFPACK): | |
2103 Substitute here. | |
2104 (do-subst-texinfo-vals): New macro definition. | |
2105 | |
2106 * configure.in: Don't substitute OCTAVE_VERSION, OCTAVE_HOSTTYPE, | |
2107 or OCTAVE_HOME. | |
2108 (AC_CONFIG_FILES): Remove doc/conf.texi from the list. | |
2109 | |
5703 | 2110 2006-03-21 John W. Eaton <jwe@octave.org> |
2111 | |
2112 * configure.in: Only print warnings for missing functionality in | |
2113 summary message. | |
2114 | |
5667 | 2115 2006-03-14 John W. Eaton <jwe@octave.org> |
2116 | |
2117 * mk-opts.pl (emit_print_function): Buffer extra message here and | |
2118 pass to print_usage. | |
2119 | |
5658 | 2120 2006-03-09 John W. Eaton <jwe@octave.org> |
2121 | |
2122 * Makeconf.in (do-subst-default-vals): Also substitute OCTAVE_RELEASE. | |
2123 | |
5648 | 2124 2006-03-08 David Bateman <dbateman@free.fr> |
2125 | |
2126 * configure.in: Update the test for CXSPARSE for new upstream release. | |
2127 (OCTAVE_VERSION, OCTAVE_HOSTTYPE, OCTAVE_HOME,TEXINFO_UMFPACK, | |
2128 TEXINFO_COLAMD, TEXINFO_CHOLMOD): New variables for texinfo | |
2129 documentation. | |
5658 | 2130 (AC_CONFIG_FILES): Add doc/interpreter/images/Makefile and |
2131 doc/conf.texi. | |
5648 | 2132 |
5636 | 2133 2006-03-02 Kurt Hornik <Kurt.Hornik@wu-wien.ac.at> |
2134 | |
2135 * emacs/octave-mod.el (octave-indent-for-comment): Make the code | |
2136 match the comments. | |
2137 | |
5635 | 2138 2006-03-02 John W. Eaton <jwe@octave.org> |
2139 | |
2140 * octMakefile.in (ALL_SUBDIRS): Delete. | |
2141 (SUBDIRS): Include src here. | |
2142 (SHELL_SCRIPTS): New variable. | |
2143 (all): Depend on $(SHELL_SCRIPTS) and $(SUBDIRS) with libcruft and | |
2144 liboctave filtered out. | |
2145 (src): Depend on liboctave. | |
2146 (liboctave): Depend on libcruft. | |
2147 | |
5610 | 2148 2006-02-09 David Bateman <dbateman@free.fr> |
2149 | |
2150 * configure.in: Fix for probe of colamd, cccolamd and metis. New test | |
2151 for the presence of cxsparse. | |
2152 Makeconf.in: Include CXSPARSE_LIBS. | |
2153 | |
5600 | 2154 2006-01-19 John W. Eaton <jwe@octave.org> |
2155 | |
2156 * configure.in: Use $WITH_PCRE instead of $HAVE_PCRE in shell test. | |
2157 | |
5599 | 2158 2006-01-14 John W. Eaton <jwe@octave.org> |
2159 | |
2160 * configure.in: Check for mach-o/dyld.h, not Mach-O/dyld.h. | |
2161 From Martin Costabel <costabel@wanadoo.fr>. | |
2162 | |
5597 | 2163 2006-01-13 John W. Eaton <jwe@octave.org> |
2164 | |
2165 * Makeconf.in (do-mkpkgadd): New macro. | |
2166 | |
5585 | 2167 2005-12-14 David Bateman <dbateman@free.fr> |
2168 | |
5590 | 2169 * Makeconf.in: Remove OCTAVE_PROG_RUNTEST. |
2170 * alocal.m4: Remove OCTAVE_PROG_RUNTEST. | |
2171 | |
5585 | 2172 * Makeconf.in: New tests of regex and pcre. |
2173 | |
5579 | 2174 2005-12-13 John W. Eaton <jwe@octave.org> |
2175 | |
2176 * examples/Makefile.in (install install-strip): Fix typo. | |
2177 From William Poetra Yoga Hadisoeseno <williampoetra@gmail.com>. | |
2178 | |
5562 | 2179 2005-12-05 Kurt Hornik <Kurt.Hornik@wu-wien.ac.at> |
2180 | |
2181 * emacs/octave-inf.el (inferior-octave-startup): | |
2182 Force a non-empty string for secondary prompt PS2. | |
2183 | |
5557 | 2184 2005-12-02 John W. Eaton <jwe@octave.org> |
2185 | |
2186 * emacs/octave-mod.el (octave-electric-space): Don't indent | |
2187 comments or strings if octave-auto-indent is nil. | |
2188 | |
5554 | 2189 2005-11-30 John W. Eaton <jwe@octave.org> |
2190 | |
2191 * examples/Makefile.in (install install-strip): Install images and | |
2192 desktop file. | |
2193 | |
5548 | 2194 2005-11-29 Rafael Laboissiere <rafael@debian.org> |
2195 | |
2196 * emacs/octave-mod.el: Ensure that key bindings for | |
2197 octave-mark-defun and backward-kill-word work in both XEmacs and | |
2198 GNU Emacs. | |
2199 | |
5547 | 2200 2005-11-28 John W. Eaton <jwe@octave.org> |
2201 | |
2202 * configure.in: Check for uname. | |
2203 | |
5542 | 2204 2005-11-21 John W. Eaton <jwe@octave.org> |
2205 | |
2206 * examples/Makefile.in (DISTFILES): Don't include octave.desktop here. | |
2207 (distclean): Remove octave.desktop here. | |
2208 (maintainer-clean): Not here. | |
2209 | |
5527 | 2210 2005-11-01 John W. Eaton <jwe@octave.org> |
2211 | |
2212 * examples/Makefile.in (distclean, maintainer-clean): | |
2213 Also remove octave.desktop. | |
2214 From Quentin Spencer <qspencer@ieee.org>. | |
2215 | |
2216 2005-11-01 Quentin Spencer <qspencer@ieee.org> | |
2217 | |
2218 * octMakefile.in (CONF_DISTFILES): Delete acx_include_dirs.m4 from | |
2219 the list. | |
2220 | |
5518 | 2221 2005-10-28 John W. Eaton <jwe@octave.org> |
2222 | |
2223 * configure.in (AC_ARG_WITH(cholmod, ...)): Fix typo. | |
2224 From Quentin Spencer <qspencer@ieee.org> and | |
2225 Andy Adler <adler@site.uOttawa.ca>. | |
2226 | |
5512 | 2227 2005-10-26 John W. Eaton <jwe@octave.org> |
2228 | |
5513 | 2229 * configure.in, aclocal.m4: Don't quote "yes". |
2230 | |
2231 * configure.in: Print warning messages for umfpack, colamd, | |
2232 ccolamd, and cholmod as we are searching. Avoid multiple | |
2233 definitions of message strings. | |
2234 | |
5512 | 2235 * aclocal.m4 (OCTAVE_UMFPACK_SEPERATE_SPLIT): |
2236 Use new method of finding umfpack.h. | |
2237 * configure.in: Use AC_CHECK_HEADERS instead of | |
2238 ACX_CHECK_HEADER_IN_DIRS. | |
2239 (AC_CONFIG_FILES): Delete liboctave/oct-sparse.h from the list. | |
2240 | |
2241 * acx_include_dirs.m4: Delete. | |
2242 | |
5508 | 2243 2005-10-26 Arno J. Klaassen <arno@heho.snv.jussieu.fr> |
2244 | |
2245 * configure.in [*-*-freebsd*] (SH_LDFLAGS): Properly quote. | |
2246 (RLD_FLAG): Set. | |
2247 | |
5506 | 2248 2005-10-23 David Bateman <dbateman@free.fr> |
2249 | |
2250 * configure.in (OCTAVE_UMFPACK_SEPERATE_SPLIT): Check for metis | |
2251 separately. | |
2252 * PROJECTS: Remove completed sparse matrix tasks. | |
2253 | |
9501 | 2254 2005-10-17 Paul Kienzle <pkienzle@users.sf.net> |
5499 | 2255 |
2256 * octave.test/system/system.exp: rmdir no longer prints a | |
2257 message if the directory does not exist. | |
2258 | |
2259 * octave.test/system/mk-rm-dir-1.m: mkdir/rmdir return 1 | |
2260 on success and 0 on failure. | |
2261 | |
5498 | 2262 2005-10-17 John W. Eaton <jwe@octave.org> |
2263 | |
2264 * configure.in (F77_FFLOAT_STORE_FLAG): | |
2265 Check for -ffloat-store option for Fortran compiler and set | |
2266 F77_FLOAT_STORE_FLAG if it works. | |
2267 * Makeconf.in: Substitute it here. | |
2268 (do-subst-config-vals): Substitute OCTAVE_CONF_F77_FLOAT_STORE_FLAG. | |
2269 | |
5496 | 2270 2005-10-14 John W. Eaton <jwe@octave.org> |
2271 | |
2272 * aclocal.m4 (OCTAVE_PROG_PYTHON): New macro. | |
2273 * configure.in: Use it. | |
2274 * Makeconf.in (PYTHON): Substitute it. | |
2275 | |
5483 | 2276 2005-10-05 David Bateman <dbateman@free.fr> |
2277 | |
2278 mkoctfile.in: allow -idirafter argument. | |
2279 | |
5466 | 2280 2005-09-23 John W. Eaton <jwe@octave.org> |
2281 | |
5468 | 2282 * examples/Makefile.in (install install-strip): |
2283 Conditionally install octave.desktop. | |
5470 | 2284 (IMAGE_FILES, IMAGE_FILES_NO_DIR): New macros. |
2285 (DISTFILES): Include IMAGE_FILES in list. | |
2286 (install install-strip): Install image file. | |
2287 | |
5468 | 2288 * aclocal.m4 (OCTAVE_PROG_DESKTOP_FILE_INSTALL): New macro |
2289 * configure.in: Use it. | |
2290 * Makeconf.in: Substitute DESKTOP_FILE_INSTALL. | |
2291 | |
6812 | 2292 * octave.desktop.in: New file. From S�ren Hauberg <hauberg@gmail.com>. |
5466 | 2293 * examples/Makefile.in (SOURCES): Add it to the list. |
2294 (octave.desktop): New target. | |
2295 (all): Depend on octave.desktop. | |
2296 | |
5461 | 2297 2005-09-22 John W. Eaton <jwe@octave.org> |
2298 | |
5465 | 2299 * aclocal.m4 (OCTAVE_PROG_PERL): New macro. |
2300 * configure.in: Use it. | |
2301 * Makeconf.in (PERL): Substitute it. | |
2302 | |
5461 | 2303 * config.guess, config.sub: Update from FSF sources. |
2304 | |
5454 | 2305 2005-09-19 David Bateman <dbateman@free.fr> |
2306 | |
2307 * octMakefile.in (LN_S): Change to DESTDIR before LN_S to avoid | |
2308 lack of symlinks under mingw. | |
2309 | |
5451 | 2310 2005-09-15 John W. Eaton <jwe@octave.org> |
2311 | |
2312 * oct-sparse.h.in: Move to liboctave. | |
2313 * octMakefile.in (CONF_DISTFILES): Delete it from the list. | |
2314 (maintainer-clean, distclean, install, install-strip, uninstall): | |
2315 Omit rules for oct-sparse.h. | |
2316 * configure.in: Substitute liboctave/oct-sparse.h, not oct-sparse.h. | |
2317 | |
2318 2005-09-15 David Bateman <dbateman@free.fr> | |
2319 | |
2320 * acx_include_dirs.m4 (AC_CHECK_HEADER_IN_DIRS): Define new macro. | |
2321 * oct-sparse.h.in: New AC_CONFIG_FILE. | |
2322 * configure.in: (AC_CHECK_HEADER_IN_DIRS): Use macro. | |
2323 (AMD_LIBS, COLAMD_LIBS, CCOLAMD_LIBS, CHOLMOD_LIBS): Probe for | |
2324 these sparse library in addition to UMFPACK. | |
2325 (UMFPACK_INCLUDE, AMD_INCLUDE, COLAMD_INCLUDE, CCOLAMD_INCLUDE): | |
2326 AC_SUBST into oct-sparse.h. | |
2327 (LIBGLOB): Probe for external glob/fnmatch, define LIBGLOB. | |
2328 (sepchar): Define path seperation character in system dependent | |
2329 manner. Use it with OCTAVE_SET_DEFAULT. | |
2330 (SEPCHAR, SEPCHAR_STR): Dpend on sepchar. | |
2331 (DL_LDFLAGS): Define for cygwin and mingw. | |
2332 (-lwsock32): Add to LIBS. | |
2333 (loadlibrary_api): Set for mingw/cygwin and autoconf test appears | |
2334 broken. | |
2335 * Makeconf.in: Don't use ";" as sed seperation to avoid confusion | |
2336 with sepchar. | |
2337 (LIBGLOB, AMD_LIBS, COLAMD_LIBS, CCOLAMD_LIBS, CHOLMOD_LIBS, | |
2338 sepchar): Substitute. | |
2339 * octMakefile.in: (CONF_DISTFILES): Add acx_include_dirs.m4 and | |
2340 oct-sparse.h.in | |
2341 (oct-sparse.h): Include in install and clean directives | |
2342 | |
5437 | 2343 2005-08-31 Pascal A. Dupuis <Pascal.Dupuis@esat.kuleuven.be> |
2344 | |
2345 * emacs/octave-inf.el (inferior-octave-startup): Call | |
2346 inferior-octave-resync-dirs here. | |
2347 | |
5414 | 2348 2005-07-14 John W. Eaton <jwe@octave.org> |
2349 | |
2350 * configure.in (SH_LDFLAGS): Add -Wl,--enable-auto-image-base for | |
2351 Cygwin and MinGW. | |
2352 | |
5389 | 2353 2005-06-14 John W. Eaton <jwe@octave.org> |
2354 | |
2355 * configure.in (AH_BOTTOM): Also define GCC_ATTR_DEPRECATED. | |
2356 | |
5376 | 2357 2005-06-02 John W. Eaton <jwe@octave.org> |
2358 | |
2359 * Makeconf.in (do-subst-default-vals): Substitute | |
2360 ${localstartupfiledir}, not ${localstartupfile} (which is undefined). | |
2361 | |
5351 | 2362 2005-05-16 David Bateman <dbateman@free.fr> |
2363 | |
2364 * configure.in: Change UMFPACK_LONG_IDX to IDX_TYPE_LONG. | |
2365 | |
5337 | 2366 2005-05-04 John W. Eaton <jwe@octave.org> |
2367 | |
2368 * configure.in (AC_CHECK_LIB($zlib_lib, ...)): Check for | |
2369 gzclearerr instead of deflate. | |
2370 | |
5330 | 2371 2005-05-02 John W. Eaton <jwe@octave.org> |
2372 | |
2373 * configure.in (AC_ARG_WITH(umfpack)): List -lumfpack ahead of -lamd. | |
2374 From Dmitri A. Sergatskov <dasergatskov@gmail.com>. | |
2375 | |
5322 | 2376 2005-04-29 David Bateman <dbateman@free.fr> |
2377 | |
2378 * configure.in: Add UMFPACK_LONG_IDX | |
2379 | |
5292 | 2380 2005-04-21 John W. Eaton <jwe@octave.org> |
2381 | |
2382 * configure.in (AC_CONFIG_FILES): Remove install-octave from the list. | |
5297 | 2383 (AH_BOTTOM): Define SIZEOF_OCTAVE_IDX_TYPE. |
5292 | 2384 |
5285 | 2385 2005-04-14 John W. Eaton <jwe@octave.org> |
2386 | |
2387 * mkoctfile.in: Only perform link step if we have some object files. | |
2388 If only -v or --version is supplied, print version info and exit. | |
2389 | |
5275 | 2390 2005-04-08 John W. Eaton <jwe@octave.org> |
2391 | |
5276 | 2392 * octMakefile.in (maintainer-clean distclean): |
2393 Remove install-octave from the list of files to remove. | |
2394 (install-octave.in): Delete file. | |
2395 (DISTFILES): Remove it from the list. | |
2396 | |
5275 | 2397 * Initial merge of 64-bit changes from Clinton Chee: |
2398 | |
2399 2005-04-07 John W. Eaton <jwe@octave.org> | |
2400 | |
2401 * configure.in (--enable-64): Make default disabled. | |
2402 | |
2403 2005-04-06 John W. Eaton <jwe@octave.org> | |
2404 | |
2405 * mk-opts.pl (emit_show_function, emit_set_functions, | |
2406 emit_print_function): Also accept "octave_idx_type" and | |
2407 "Array<octave_idx_type>". | |
2408 | |
2409 2005-04-01 John W. Eaton <jwe@octave.org> | |
2410 | |
2411 * Makeconf.in (USE_64_BIT_IDX_T): Substitute value. | |
2412 (do-subst-config-vals): Add to list of substitutions. | |
2413 | |
2414 * configure.in (AC_CONFIG_FILES): Perform substitutions on | |
2415 liboctave/oct-types.h too. | |
2416 Handle --enable-64. | |
2417 | |
5273 | 2418 2005-04-06 David Bateman <dbateman@free.fr> |
2419 | |
2420 * configure.in: Split the HDF5 and zlib detection code, so that zlib | |
2421 can be used for compressed load/save in the absence of HDF5. | |
2422 | |
2423 * Makeconf.in: Define UMFPACK_LIBS. | |
2424 | |
2425 * Configure.in: Slightly alter the UMFPACK detection code so that it | |
2426 correctly detects cblas bindings or not. | |
2427 | |
5231 | 2428 2005-03-22 John W. Eaton <jwe@octave.org> |
2429 | |
5235 | 2430 * Makeconf.in (GLPK_LIBS): Substitute value. |
2431 (do-subst-config-vals): Add to list of substitutions. | |
2432 | |
2433 * configure.in: Check for glpk. | |
2434 | |
5231 | 2435 * emacs/octave-mod.el (octave-abbrev-table): Omit fifth and sixth |
2436 arguments from define-abbrev for compatibility with some older | |
2437 versions of Emacs. | |
2438 | |
5229 | 2439 2005-03-21 John W. Eaton <jwe@octave.org> |
2440 | |
2441 * octave-bug.in: Try harder to find default pager (use code | |
2442 similar to that used for finding default editor). | |
2443 | |
5226 | 2444 2005-03-17 Shan G. Smith <shan@cybertrails.com> |
2445 | |
2446 * configure.in: Move check for -lumfpack to after check for blas. | |
2447 | |
5221 | 2448 2005-03-17 John W. Eaton <jwe@octave.org> |
2449 | |
5222 | 2450 * configure.in: If first check for -lumfpack fails try again with |
2451 -lcblas as an additional library. | |
2452 | |
5221 | 2453 * configure.in: Change defaults to enable shared libraries and |
2454 dynamic linking and disable static libraries. | |
2455 | |
5204 | 2456 2005-03-15 John W. Eaton <jwe@octave.org> |
2457 | |
5207 | 2458 * octMakefile.in (DISTFILES): Remove texi2dvi from the list. |
2459 | |
5204 | 2460 * emacs/octave-inf.el, emacs/octave-mod.el, emacs/octave-hlp.el: |
2461 Import changes from Emacs. | |
2462 | |
2463 2005-03-14 Rafael Laboissiere <rafael@debian.org> | |
2464 | |
2465 * emacs/octave-mod.el (octave-end-keywords): Omit "end" from the list. | |
2466 (octave-reserved-words): Include "end" here. | |
2467 (octve-block-match-alist): Don't include "end" here. | |
2468 | |
5203 | 2469 2005-03-14 John W. Eaton <jwe@octave.org> |
2470 | |
2471 * configure.in: Check for umfpack/umfpack.h instead of just umfpack.h. | |
2472 | |
2473 2004-06-22 David Bateman <dbateman@free.org> | |
2474 | |
2475 * configure.in: Check for UMFPACK library and header files. | |
2476 | |
2477 2005-03-14 John W. Eaton <jwe@octave.org> | |
2478 | |
2479 * configure.in: Also print a warning if HDF5 library is not found. | |
2480 | |
5199 | 2481 2005-03-10 John W. Eaton <jwe@octave.org> |
2482 | |
2483 * mkoctfile.in: Accept -R DIR. | |
5222 | 2484 |
5196 | 2485 2005-03-09 John W. Eaton <jwe@octave.org> |
2486 | |
2487 * examples/Makefile.in (bin-dist): Delete target. | |
2488 (BINDISTFILES): Delete variable. | |
2489 * emacs/Makefile.in: Likewise. | |
2490 | |
2491 * octMakefile.in (VERSION, ARCH, binary-dist): Delete targets. | |
2492 (XBINDISTFILES, BINDISTFILES, BINDISTSUBDIRS): Delete variables. | |
2493 | |
5194 | 2494 2005-03-04 John W. Eaton <jwe@octave.org> |
2495 | |
2496 * configure.in (GXX_PICKY_FLAGS): Don't include | |
2497 -Wmissing-prototypes or -Wstrict-prototypes. | |
2498 | |
5174 | 2499 2005-03-02 John W. Eaton <jwe@octave.org> |
2500 | |
5177 | 2501 * aclocal.m4 (OCTAVE_CC_FLAG, OCTAVE_CXX_FLAG, OCTAVE_F77_FLAG): |
2502 Use AC_LINK_IFELSE instead of AC_TRY_LINK. | |
2503 | |
5174 | 2504 * configure.in (OCTAVE_LOCAL_BUFFER): Use < T > instead of <T>. |
2505 From Clinton Chee <chee@parallel.hpc.unsw.edu.au>. | |
2506 | |
5173 | 2507 2005-03-01 John W. Eaton <jwe@octave.org> |
2508 | |
2509 * configure.in (AC_CONFIG_FILES): Remove libcruft/odessa/Makefile | |
2510 from the list. | |
2511 | |
5172 | 2512 2005-03-01 Todd Neal <tolchz@gmail.com> |
2513 | |
2514 * examples/make_int.cc: DEFINE_OV_TYPEID_FUNCTIONS_AND_DATA now | |
2515 takes three arguments. | |
5170 | 2516 |
2517 * octMakefile.in (SUBDIRS, CLEANSUBDIRS): | |
2518 Remove @GLOB_DIR@ from the list. | |
2519 | |
5169 | 2520 2005-02-28 John W. Eaton <jwe@octave.org> |
2521 | |
2522 * octMakefile.in (DISTDIRS): Remove glob from the list. | |
2523 (dist): No need to clean up in glob subdirectory. | |
2524 * glob: Delete directory. | |
2525 * Makeconf.in (GLOB_INCFLAGS, LIBGLOB): Delete. | |
2526 (do-subst-config-vals): Don't substitute them. | |
2527 (INCFLAGS): Remove $(GLOB_INCFLAGS) from the list. | |
2528 * configure.in: Don't test for glob or fnmatch. | |
2529 | |
5159 | 2530 2005-02-22 Shan G. Smith <shan@cybertrails.com> |
2531 | |
2532 * mkoctfile.in: If not linking, then use output file name | |
2533 specified with -o. | |
2534 | |
5151 | 2535 2005-02-21 John W. Eaton <jwe@octave.org> |
2536 | |
2537 * texi2dvi: Delete our private version. | |
2538 | |
2539 * Makeconf.in (MAKEINFO): Define. | |
2540 (TEXI2DVI): Define as texi2dvi, not $(top_srcdir)/texi2dvi. | |
2541 | |
5138 | 2542 2005-02-09 John W. Eaton <jwe@octave.org> |
2543 | |
2544 * configure.in: Check for canonicalize_file_name and resolvepath. | |
2545 | |
5126 | 2546 2005-02-02 John W. Eaton <jwe@octave.org> |
2547 | |
2548 * config.guess, config.sub: Update from FSF sources. | |
2549 | |
5111 | 2550 2005-01-18 John W. Eaton <jwe@octave.org> |
2551 | |
5112 | 2552 * octave-bug.in: Try harder to find default editor (stolen from |
2553 bashbug). | |
5111 | 2554 |
5098 | 2555 2004-12-17 John W. Eaton <jwe@octave.org> |
2556 | |
2557 * configure.in: Use AC_GNU_SOURCE. | |
2558 | |
2559 2004-12-17 Orion Poplawski <orion@cora.nwra.com> | |
2560 | |
2561 * configure.in: Also check for signbit decl. | |
2562 | |
5094 | 2563 2004-12-03 John W. Eaton <jwe@octave.org> |
2564 | |
2565 * aclocal.m4 (OCTAVE_PROG_GPERF): Check with -L C++, not -L ANSI_C. | |
2566 * Makefile.in (header-msg): Change recommended gperf version to | |
2567 3.0.1 or more recent. | |
2568 | |
5078 | 2569 2004-11-12 John W. Eaton <jwe@octave.org> |
2570 | |
2571 * Back off on -ffloat-store until we decide whether it is really | |
2572 necessary. | |
2573 | |
5076 | 2574 2004-11-11 John W. Eaton <jwe@octave.org> |
2575 | |
2576 * (OCTAVE_PROG_GNUPLOT): Don't set GNUPLOT_BINARY before calling | |
2577 AC_CHECK_PROGS(GNUPLOT_BINARY, ...). | |
2578 | |
2579 * configure.in: Use it to see if the C, C++, and Fortran compilers | |
2580 accept -ffloat-store. | |
2581 * aclocal.m4 (OCTAVE_F77_FLAG): New macro. | |
2582 | |
4971 | 2583 2004-09-08 John W. Eaton <jwe@octave.org> |
2584 | |
2585 * configure.in (GXX_PICKY_FLAGS): Remove -fno-nonnull-objects. | |
2586 (GCC_PICKY_FLAGS): Remove -Wnested-externs -Wid-clash-31. | |
2587 From Quentin Spencer <qspencer@ieee.org>. | |
2588 | |
2589 * configure.in (GCC_PICKY_FLAGS): Remove -Winline. | |
2590 | |
4968 | 2591 2004-09-07 John W. Eaton <jwe@octave.org> |
2592 | |
2593 * configure.in: Check for round. | |
2594 | |
4906 | 2595 2004-06-22 David Bateman <dbateman@free.fr> |
2596 | |
2597 * configure.in: Use -Wl,-Bsymbolic for MKOCTFILE_DL_LDFLAGS on | |
2598 GNU/Linux systems but not for SH_LDFLAGS. | |
2599 | |
4873 | 2600 2004-04-22 John W. Eaton <jwe@octave.org> |
2601 | |
4877 | 2602 * configure.in: Add -Wl,-Bsymbolic to SH_LDFLAGS for GNU/Linux |
2603 systems. From Fredrik Lingvall <Fredrik.Lingvall@signal.uu.se>. | |
2604 | |
4873 | 2605 * mkoctfile.in: Allow -Wx,option style options to be passed to the |
2606 compiler. From Al Niessner <Al.Niessner@jpl.nasa.gov>. | |
2607 | |
4850 | 2608 2004-04-06 John W. Eaton <jwe@bevo.che.wisc.edu> |
2609 | |
4853 | 2610 * configure.in: Delete code for --with-ieee754. |
2611 Use OCTAVE_IEEE754_DATA_FORMAT. | |
2612 | |
2613 * aclocal.m4 (OCTAVE_IEEE754_DATA_FORMAT): New macro, based on | |
2614 configure.in code for HAVE_IEEE754_COMPLIANCE. | |
2615 | |
2616 2004-04-06 David Bateman <dbateman@free.fr> | |
2617 | |
4850 | 2618 * configure.in : add the option --with-ieee754 and use it to define |
2619 HAVE_IEEE754_COMPLIANCE | |
2620 | |
4843 | 2621 2004-04-02 David Bateman <dbateman@free.fr> |
2622 | |
2623 * configure.in: Warn about g++ 2.9x versions. | |
2624 | |
2625 2004-04-01 John W. Eaton <jwe@bevo.che.wisc.edu> | |
2626 | |
2627 * octMakefile.in (dist): Also make bz2 file and compute md5 | |
2628 checksums of both gz and bz2 files. | |
2629 | |
4816 | 2630 2004-03-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
2631 | |
2632 * configure.in: No longer accept --with-g77 (it is still possible | |
2633 to use --with-f77=g77). | |
2634 | |
4812 | 2635 2004-03-03 John W. Eaton <jwe@bevo.che.wisc.edu> |
2636 | |
2637 * configure.in: Check for -mieee instead of -mieee-with-inexact. | |
2638 | |
4793 | 2639 2004-02-20 Per Persson <persquare@mac.com> |
2640 | |
2641 * mkoctfile.in (LINK_DEPS): Include $LDFLAGS in the list. | |
2642 | |
4786 | 2643 2004-02-18 Per Persson <persquare@mac.com> |
2644 | |
2645 * configure.in (*-*-darwin*): Define SONAME_FLAGS. | |
2646 | |
4773 | 2647 2004-02-16 David Bateman <dbateman@free.fr> |
2648 | |
2649 * configure.in: Test for the presence of FFTW 3.x and use it in | |
2650 preference to FFTW 2.x. Define HAVE_FFTW3 | |
2651 | |
4766 | 2652 2004-02-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
2653 | |
4767 | 2654 * mkoctfile.in (LINK_DEPS): Include $LIBS and $RLD_FLAG. |
4766 | 2655 Use $OCTAVE_LIBS instead of listing libs individually. |
2656 | |
4759 | 2657 2004-02-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
2658 | |
4760 | 2659 * mkoctfile.in: Delete INCLUDE_LINK_DEPS. Fix help text. |
2660 Always define LINK_DEPS. | |
2661 (LINK_DEPS): Also include FLIBS in the list. | |
2662 | |
2663 * Makeconf.in (INCLUDE_LINK_DEPS): Don't substitute. | |
2664 (do-subst-config-vals): Delete INCLUDE_LINK_DEPS. | |
2665 * configure.in (INCLUDE_LINK_DEPS): Delete. | |
2666 | |
4759 | 2667 * mkoctfile (SH_LD, SH_LDFLAGS): Delete. |
2668 (DL_LD, DL_LDFLAGS): New variables. Use them instead of SH_LD and | |
2669 SH_LDFLAGS for creating .oct files. | |
2670 Fix help text. | |
2671 | |
2672 * configure.in (MKOCTFILE_SH_LDFLAGS): Delete. | |
2673 (MKOCTFILE_DL_LDFLAGS): New variable, default to DL_LDFLAGS. | |
2674 | |
2675 * Makeconf.in (do-subst-config-vals): Add DL_LD, DL_LDFLAGS, and | |
2676 MKOCTFILE_DL_LDFLAGS to the list of substitutions. | |
2677 Delete MKOCTFILE_SH_LDFLAGS. | |
2678 | |
2679 2004-02-14 Per Persson <persquare@mac.com> | |
2680 | |
2681 * configure.in (DL_LD, DL_LDFLAGS): New variables, default to | |
2682 SH_LD and SH_LDFLAGS, respectively. | |
2683 Define independently for SH_LD and SH_LDFLAGS for *-*-darwin* targets. | |
2684 * Makeconf.in (DL_LD, DL_LDFLAGS): Substitute them here. | |
2685 | |
4756 | 2686 2004-02-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
2687 | |
2688 * Makefile.in (header-msg): Required bison version now 1.31 or later. | |
2689 | |
4728 | 2690 2004-01-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
2691 | |
2692 * emacs/octave-mod.el: If line-end-position is not defined, | |
2693 provide it as an alias for point-at-eol. | |
2694 | |
2695 2004-01-24 John W. Eaton <jwe@bevo.che.wisc.edu> | |
2696 | |
2697 * emacs/octave-mod.el: If line-beginning-position is not defined, | |
2698 provide it as an alias for point-at-bol. | |
2699 | |
4726 | 2700 2004-01-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
2701 | |
2702 * configure.in (AH_BOTTOM): | |
2703 Define OCTAVE_LOCAL_BUFFER using vector<T> instead of auto_ptr. | |
2704 Suggested by Paul Thomas <Paul.Thomas@jet.efda.org> | |
2705 | |
4710 | 2706 2004-01-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
2707 | |
2708 * octMakefile.in (maintainer-clean, distclean): | |
2709 Remove Makefile and autom4te.cache. | |
2710 | |
4696 | 2711 2004-01-14 David Bateman <dbateman@free.fr> |
2712 | |
2713 * configure.in: Test for the presence of the function | |
2714 H5Gget_num_objs in HDF5 library, and define HAVE_H5GGET_NUM_OBJS. | |
2715 | |
4685 | 2716 2004-01-06 Per Persson <persquare@mac.com> |
2717 | |
2718 * aclocal.m4 (OCTAVE_CXX_PREPENDS_UNDERSCORE): Recognize | |
2719 *-*-darwin*, not *-*-darwin6*. | |
2720 | |
4683 | 2721 2003-12-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
2722 | |
2723 * INSTALL: Update to newer version from autoconf. | |
2724 | |
4670 | 2725 2003-11-26 Cyril Humbert <Cyril.Humbert@univ-mlv.fr> |
2726 | |
2727 * octave-config.in (--m-site-dir): Echo $LOCALVERFCNFILEDIR, not | |
2728 $OCTAVE_LOCALVERFCNFILEDIR. | |
2729 (--oct-site-dir): Echo $LOCALVEROCTFILEDIR, not | |
2730 $OCTAVE_LOCALVEROCTFILEDIR. | |
2731 | |
4645 | 2732 2003-11-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
2733 | |
2734 * configure.in: Also maybe add -W to WARN_CFLAGS and WARN_CXXFLAGS. | |
2735 | |
4626 | 2736 2003-11-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
2737 | |
4627 | 2738 * Makeconf.in (SHLLIB_VER): Fix typo. |
2739 | |
4626 | 2740 * Makeconf.in (WARN_CFLAGS, WARN_CXXFLAGS): Substitute them. |
2741 (ALL_CFLAGS, BUG_CFLAGS): Add $(WARN_CFLAGS). | |
2742 (ALL_CXXFLAGS, BUG_CXXFLAGS): Add $(WARN_CXXFLAGS). | |
2743 (UGLY_ALL_CXXFLAGS): Delete. | |
2744 | |
2745 * configure.in: Add -Wall and -Wshadow to WARN_CFLAGS and | |
2746 WARN_CXXFLAGS instead of CFLAGS and CXXFLAGS. | |
2747 | |
4602 | 2748 2003-11-12 John W. Eaton <jwe@bevo.che.wisc.edu> |
2749 | |
2750 * configure.in: If we need alloca, then also include it in LIBGLOB. | |
2751 | |
4587 | 2752 2003-11-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
2753 | |
2754 * configure.in: Preserve CFLAGS and CXXFLAGS before doing anything. | |
2755 Maybe add -Wshadow to CFLAGS and CXXFLAGS. | |
2756 | |
4570 | 2757 2003-10-24 Stefan Monnier <monnier@iro.umontreal.ca> |
2758 | |
2759 * emacs/octave-mod.el (octave-comment-start): Simplify. | |
2760 (octave-point): Remove. | |
2761 (octave-in-comment-p, octave-in-string-p) | |
2762 (octave-not-in-string-or-comment-p, calculate-octave-indent) | |
2763 (octave-blink-matching-block-open, octave-auto-fill): | |
2764 Use line-(beginning|end)-position instead. | |
2765 | |
4568 | 2766 2003-10-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
2767 | |
2768 * emacs/octave-inf.el (inferior-octave-prompt): Don't bother | |
2769 matching "octave.bin". | |
2770 | |
2771 2003-10-29 Lute Kamstra <lute@gnu.org> | |
2772 | |
2773 * emacs/octave-inf.el (inferior-octave-prompt): Recognize | |
2774 version number in prompt. | |
2775 | |
4546 | 2776 2003-10-24 John W. Eaton <jwe@bevo.che.wisc.edu> |
2777 | |
2778 * emacs/octave-mod.el (octave-mode-syntax-table): Allow % to be a | |
2779 comment character. | |
2780 | |
4544 | 2781 2003-10-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
2782 | |
2783 * Makeconf.in (AWK): Substitute and export it. | |
2784 * configure.in: Also check for AWK. | |
2785 | |
4532 | 2786 2003-10-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
2787 | |
2788 * configure.in (AC_PREREQ): Require 2.57. | |
2789 | |
4513 | 2790 2003-09-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
2791 | |
2792 * configure.in (AH_BOTTOM): Don't define HEAVYWEIGHT_INDEXING here. | |
2793 | |
4476 | 2794 2003-07-30 John W. Eaton <jwe@bevo.che.wisc.edu> |
2795 | |
4478 | 2796 * emacs/octave-mod.el (octave-variables): Delete |
2797 propagate_empty_matrices from the list. | |
2798 | |
4476 | 2799 * ck-oct-fcns.m: Delete. |
2800 | |
4469 | 2801 2003-07-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
2802 | |
2803 * configure.in: Warn if --enable-dl but not --enable-shared. | |
2804 | |
4466 | 2805 2003-07-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
2806 | |
2807 * emacs/octave-mod.el (octave-variables): Delete | |
2808 default_return_value and define_all_return_values from the list. | |
2809 Add warn_undefined_return_values to the list. | |
2810 | |
4460 | 2811 2003-07-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
2812 | |
4461 | 2813 * emacs/octave-mod.el (octave-variables): |
2814 Add warn_empty_list_elements and warn_resize_on_range_error to the | |
2815 list. | |
2816 Delete empty_list_elements_ok and resize_on_range_error from the | |
2817 list. | |
4460 | 2818 |
4457 | 2819 2003-07-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
2820 | |
2821 * emacs/octave-mod.el (octave-variables): Add warn_neg_dim_as_zero | |
2822 to the list. | |
2823 Delete treat_neg_dim_as_zero from the list. | |
2824 | |
4451 | 2825 2003-07-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
2826 | |
2827 * emacs/octave-mod.el (octave-variables): Include | |
2828 DEFAULT_EXEC_PATH, DEFAULT_LOAD_PATH, crash_dumps_octave_core, | |
4452 | 2829 sighup_dumps_octave_core, sigterm_dumps_octave_core, |
4455 | 2830 warn_imag_to_real, warn_num_to_str, warn_str_to_num, and |
2831 warn_fortran_indexing in the list. | |
2832 Delete ok_to_lose_imaginary_part, implicit_num_to_str_ok, | |
2833 implicit_str_to_num_ok, prefer_column_vectors, | |
2834 prefer_zero_one_indexing, and do_fortran_indexing from the list. | |
4451 | 2835 |
4446 | 2836 2003-07-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
2837 | |
4449 | 2838 * Makeconf.in (do-subst-default-vals): Substitute OCTAVE_API_VERSION. |
2839 * octave-config.in: Handle new variable OCTAVE_API_VERSION. | |
2840 | |
2841 * octMakefile.in (DIRS_TO_MAKE): Delete undefined vars | |
2842 $(localfcnfilepathdirs) and $(localoctfilepathdirs) from the list. | |
2843 | |
2844 * octave-config.in: Handle new variables OCTAVE_LOCALAPIFCNFILEDIR | |
2845 and OCTAVE_LOCALAPIOCTFILEDIR | |
2846 | |
2847 * configure.in (localapifcnfiledir): New variable. | |
2848 (localfcnfilepath): Add it to the list. | |
2849 (localapioctfiledir): New variable. | |
2850 (localoctfilepath): Add it to the list. | |
2851 * Makeconf.in (do-subst-default-vals): Substitute new varibles. | |
2852 | |
2853 * Makeconf.in (getapiversion, apiversion): New macros. | |
2854 | |
4446 | 2855 * octMakefile.in (DIRS_TO_MAKE): Include $(localverarchlibdir) in |
2856 the list. | |
2857 | |
4443 | 2858 2003-07-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
2859 | |
2860 * Makeconf.in: Set and substitute values for startupfiledir and | |
2861 localstartupfiledir. | |
2862 | |
2863 * octave-config.in: Allow other configuration defaults to be | |
2864 accessed using --variable VAR option. | |
2865 | |
4440 | 2866 2003-07-02 John W. Eaton <jwe@bevo.che.wisc.edu> |
2867 | |
2868 * octMakefile.in (distclean): remove install-octave here. | |
2869 | |
4439 | 2870 2003-06-27 John W. Eaton <jwe@bevo.che.wisc.edu> |
2871 | |
2872 * configure.in: If user doesn't specify --enable-rpath, then | |
2873 default is to enable it. | |
2874 | |
4422 | 2875 2003-06-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
2876 | |
4423 | 2877 * aclocal.m4 (GNUPLOT_HAS_FRAMES): Eliminate variable. |
2878 | |
4422 | 2879 * emacs/octave-mod.el (octave-variables): Eliminate |
2880 gnuplot_has_multiplot. | |
2881 | |
4417 | 2882 2003-05-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
2883 | |
2884 * configure.in: In check for f_open in libf2c, only use | |
2885 -L. -lconflib if we have created libconflib.a. | |
2886 | |
4414 | 2887 2003-05-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
2888 | |
4416 | 2889 * aclocal.m4 (OCTAVE_PROG_GPERF): Provide struct decl so -t option |
2890 succeeds with gperf 3.0. | |
2891 | |
4414 | 2892 * Makeconf.in (NO_OCT_FILE_STRIP): Use -C arg for make. |
2893 | |
2894 * octMakefile.in (DIRS_TO_MAKE): Use $(shell ...) instead of `...`. | |
2895 | |
4413 | 2896 2003-05-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
2897 | |
2898 * Makeconf.in, octMakefile.in, emacs/Makefile.in, | |
2899 examples/Makefile.in: Handle DESTDIR. | |
2900 | |
4411 | 2901 2003-05-13 John W. Eaton <jwe@bevo.che.wisc.edu> |
2902 | |
2903 * Makeconf.in (sbindir): New variable substitution. | |
2904 | |
4399 | 2905 2003-04-30 John W. Eaton <jwe@bevo.che.wisc.edu> |
2906 | |
2907 * configure.in: Don't define WITH_KPATHSEARCH. | |
2908 | |
4388 | 2909 2003-04-24 John W. Eaton <jwe@bevo.che.wisc.edu> |
2910 | |
2911 * configure.in: Look for wsock32 library on MinGW systems. | |
2912 | |
4382 | 2913 2003-04-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
2914 | |
2915 * configure.in (OCTAVE_LOCAL_BUFFER): Always allocate temporary | |
2916 buffer using new. | |
2917 | |
4378 | 2918 2003-04-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
2919 | |
2920 * Makefile.in octMakefile.in: Delete kpathsea targets. | |
2921 | |
2922 * kpathsea: Delete all files and directory. | |
2923 | |
2924 * configure.in: Don't run configure in kpathsea subdirectory. | |
2925 | |
2926 * README.kpathsea: New file. | |
2927 * octMakefile.in (DISTFILES): Include it in the list. | |
2928 | |
2929 * Makeconf.in (do-subst-config-vals): Don't substitute it. | |
2930 | |
2931 * configure.in: Also check for basename. | |
2932 Don't substitute LIBKPATHSEA. | |
2933 | |
4377 | 2934 2003-04-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
2935 | |
2936 * configure.in (AH_BOTTOM): Don't assume that __WIN32__ will be | |
2937 defined when __CYGWIN__ is defined. | |
2938 | |
4368 | 2939 2003-03-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
2940 | |
2941 * configure.in: Only complain for g++ earlier than 2.95. | |
2942 Try harder to get version number only. | |
2943 | |
9501 | 2944 2003-03-05 Paul Kienzle <pkienzle@users.sf.net> |
4366 | 2945 |
2946 * aclocal.m4 (OCTAVE_DYNAMIC_AUTO_ARRAYS): New macro. | |
2947 * configure.in: Use it. | |
2948 (AH_BOTTOM): Check HAVE_DYNAMIC_AUTO_ARRAYS instead of __GNUG__. | |
2949 | |
4365 | 2950 2003-03-03 John W. Eaton <jwe@bevo.che.wisc.edu> |
2951 | |
2952 * configure.in: Undo previous change. | |
2953 * Makeconf.in: Likewise. | |
2954 | |
4361 | 2955 2003-03-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
2956 | |
2957 * configure.in (KPATHSEA_INCFLAGS): New variable. | |
2958 * Makeconf.in (KPATHSEA_INCFLAGS): Substitute it. | |
2959 (do-subst-config-vals): Add it to the list. | |
2960 (INCFLAGS): Add $(KPATHSEA_INCFLAGS). | |
2961 | |
9501 | 2962 2003-02-23 Paul Kienzle <pkienzle@users.sf.net> |
4360 | 2963 |
2964 * aclocal.m4 (OCTAVE_PLACEMENT_DELETE): New macro. | |
2965 * configure.in: Use it. | |
2966 (AH_BOTTOM): Don't define HAVE_PLACEMENT_DELETE here. | |
2967 | |
4349 | 2968 2003-02-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
2969 | |
4353 | 2970 * configure.in: Allow RLD_FLAG to be set using --enable-rpath arg. |
2971 | |
2972 * configure.in: Fix default RLD_FLAG value for *-sgi-*. From | |
2973 Paul Kienzle <pkienzle@users.sf.net>. | |
2974 | |
2975 * configure.in: Check for long long int and unsigned long long int. | |
2976 | |
4352 | 2977 * configure.in (AH_BOTTOM): Define HAVE_PLACEMENT_DELETE for gcc |
2978 3.2 and later. | |
2979 | |
4349 | 2980 * configure.in: Check for copysign and signbit. |
2981 | |
4334 | 2982 2003-02-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
2983 | |
2984 * emacs/Makefile.in (DISTFILES): Add otags.1 to the list. | |
2985 | |
9501 | 2986 2003-02-18 Dirk Eddelbuettel <edd@debian.org> |
4334 | 2987 |
2988 * emacs/otags.1: New file. | |
2989 | |
9501 | 2990 2003-02-18 David Bateman <dbateman@free.fr> |
4329 | 2991 |
2992 * configure.in: Eliminate linpack | |
2993 | |
4328 | 2994 2003-02-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
2995 | |
2996 * configure.in: Check for mkstemp too. | |
2997 | |
4323 | 2998 2003-02-13 Arno Klaassen <arno@scito.com> |
2999 | |
3000 * configure.in: Fix SH_LD and SH_LDFLAGS for -*-*-freebsd*. | |
3001 | |
3002 2003-02-13 John W. Eaton <jwe@bevo.che.wisc.edu> | |
3003 | |
3004 * configure.in: Use '$(CXX)', '$(AR)', not "$CXX" and "$AR" when | |
3005 setting variables for building shared libraries. | |
3006 | |
9501 | 3007 2003-02-13 Paul Kienzle <pkienzle@users.sf.net> |
4320 | 3008 |
3009 * examples/make_int.cc: Support for ISO standard compilers. | |
3010 | |
9501 | 3011 2003-01-22 Richard Stallman <rms@gnu.org> |
4304 | 3012 |
3013 * emacs/octave-mod.el (octave-mode-map): Avoid binding keys that | |
3014 are reserved for users. | |
3015 | |
4302 | 3016 2003-01-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
3017 | |
3018 * Makeconf.in: Fix typo in previous change. | |
3019 | |
4301 | 3020 2003-01-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
3021 | |
3022 * Makeconf.in (MKOCTFILE_INCFLAGS): Skip -I$(includedir) if | |
3023 $(includedir) is /usr/include. | |
3024 | |
4299 | 3025 2003-01-16 Mumit Khan <khan@nanotech.wisc.edu> |
3026 | |
3027 * Makeconf.in (SED): Export to subshells. | |
3028 | |
4298 | 3029 2003-01-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
3030 | |
3031 * configure.in: Don't bother with compiler flags for | |
3032 explicit/no-implicit template instantiation. | |
3033 | |
9501 | 3034 2003-01-11 Paul Kienzle <pkienzle@users.sf.net> |
4298 | 3035 |
3036 * configure.in, Makeconf.in: Allow setting of BUILD_LDFLAGS. | |
3037 | |
4296 | 3038 2003-01-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
3039 | |
3040 * autogen.sh: Use --force for autoconf and autoheader. | |
3041 | |
4284 | 3042 2003-01-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
3043 | |
4290 | 3044 * octMakefile.in (CONF_DISTFILES): Include acx_blas.m4 and |
3045 acx_lapack.m4. | |
3046 | |
4284 | 3047 * configure.in (BUILD_CC, BUILD_CFLAGS, BUILD_CXX, |
3048 BUILD_CXXFLAGS): Kluge for Sun C/C++. | |
3049 | |
4270 | 3050 2003-01-03 John W. Eaton <jwe@bevo.che.wisc.edu> |
3051 | |
3052 * configure.in: Default value of BUILD_CXX is $CXX, not g++. | |
4278 | 3053 (AH_BOTTOM): Define __USE_STD_IOSTREAM if using Compaq C++ compiler. |
4283 | 3054 For compiler/linker options, use -Wl,OPT instead of -Xlinker OPT. |
4284 | 3055 Check for -ieee option for the C and C++ compilers on alpha systems. |
4270 | 3056 |
4264 | 3057 2003-01-02 John W. Eaton <jwe@bevo.che.wisc.edu> |
3058 | |
3059 * configure.in: Fail on all gcc 1.x and 2.x versions. | |
3060 | |
4249 | 3061 2002-12-30 John W. Eaton <jwe@bevo.che.wisc.edu> |
3062 | |
3063 * configure.in (OCTAVE_LOCAL_BUFFER): New macro. | |
3064 | |
4228 | 3065 2002-12-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
3066 | |
4229 | 3067 * mkoctfile.in: Include $LIBOCTINTERP in the stand alone link command. |
3068 Define LIBOCTAVE, LIBOCTINTERP, LIBCRUFT, LIBREADLINE using -lLIB. | |
4228 | 3069 |
4227 | 3070 2002-12-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
3071 | |
3072 * Makeconf.in (do-script-install, do-script-uninstall): | |
3073 New macros, used in Makefiles in scripts subdirectory. | |
3074 (do-script-install): Use new scripts/mkpkgadd script to construct | |
3075 PKG_ADD files. | |
3076 | |
4214 | 3077 2002-12-03 Nix <nix@esperi.demon.co.uk> |
3078 | |
3079 * configure.in: Use AC_CHECK_DECL in conjunction with | |
3080 AC_DECL_SYS_SIGLIST to ensure signal.h is searched. | |
3081 | |
4207 | 3082 2002-12-03 John W. Eaton <jwe@bevo.che.wisc.edu> |
3083 | |
3084 * configure.in: Dont't set SONAME_FLAGS for alpha alpha*-dec-osf* | |
3085 systems. | |
3086 | |
9501 | 3087 2002-11-29 Paul Kienzle <pkienzle@users.sf.net> |
4207 | 3088 |
3089 * mkoctfile.in: Include "$incflags $def" in commands to generate | |
3090 dependecies. | |
3091 | |
4199 | 3092 2002-11-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
3093 | |
3094 * configure.in (do-subst-config-vals): Substitute OCTAVE_BINDIR. | |
3095 | |
3096 * configure.in (MKOCTFILE_SH_LDFLAGS): New variable. | |
3097 * Makeconf.in (do-subst-config-vals): Substitute | |
3098 OCTAVE_CONF version of this variable. | |
3099 | |
3100 * mkoctfile.in: Set SH_LDFLAGS from MKOCTFILE_SH_LDFLAGS, not | |
3101 SH_LDFLAGS. | |
3102 (VERSION): Substitute value of OCTAVE_CONF_VERSION. | |
3103 | |
3104 * configure.in (NO_OCT_FILE_STRIP): New variable. | |
3105 * Makeconf.in (do-subst-config-vals): Substitute it. | |
3106 * mkoctfile.in (no_oct_file_strip_on_this_platform): New variable. | |
3107 | |
4192 | 3108 2002-11-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
3109 | |
4196 | 3110 * configure.in (OCTAVE_CXX_PRAGMA_INTERFACE_IMPLEMENTATION): |
3111 Delete use. | |
3112 | |
4192 | 3113 * aclocal.m4 (OCTAVE_LANG_PROG_NO_CONFDEFS): Delete. |
3114 (OCTAVE_CXX_PRAGMA_INTERFACE_IMPLEMENTATION): Delete. | |
3115 | |
4189 | 3116 2002-11-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
3117 | |
3118 * configure.in: Check for dlopen last, to avoid broken | |
3119 compatibility libraries. | |
4190 | 3120 Default value for SHLLIB is '$(SHLEXT)', not $SHLEXT. |
4189 | 3121 |
4182 | 3122 2002-11-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
3123 | |
3124 * configure.in (USE_EXCEPTIONS_FOR_INTERRUPTS): No need to define. | |
3125 | |
4180 | 3126 2002-11-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
3127 | |
3128 * configure.in: Check for sigsetjmp and siglongjmp. | |
3129 (AH_BOTTOM): If both are found, define OCTAVE_HAVE_SIG_JUMP. | |
3130 Also check for sig_atomic_t, typedef it if not available. | |
3131 | |
4685 | 3132 2002-11-10 Per Persson <persquare@mac.com> |
4163 | 3133 |
3134 * configure.in: Detect dyld API for dynamic linking on OS X. | |
3135 | |
4685 | 3136 2002-11-09 Per Persson <persquare@mac.com> |
4162 | 3137 |
3138 * configure.in: Use $(TOPDIR)/src/octave, not $(bindir)/octave for | |
3139 -bundle-loader argument. | |
3140 | |
3141 * aclocal.m4 (OCTAVE_CXX_PREPENDS_UNDERSCORE): Force result for OS X. | |
3142 | |
4157 | 3143 2002-11-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
3144 | |
3145 * configure.in: Set FPICFLAG, Also set CXXPICFLAG, CPICFLAG, | |
3146 FPICFLAG, and INCLUDE_LINK_DEPS for OS X. | |
3147 | |
3148 * acx_blas.m4 (LIBS): Also check for Apple vecLib framework. | |
3149 | |
4153 | 3150 2002-11-06 John W. Eaton <jwe@bevo.che.wisc.edu> |
3151 | |
3152 * configure.in (AH_BOTTOM): Define USE_EXCEPTIONS_FOR_INTERRUPTS. | |
3153 | |
4151 | 3154 2002-11-04 Joseph P. Skudlarek <jskud@jskud.com> |
3155 | |
3156 * emacs/otags: handle declarations without arguments and/or return | |
3157 values. | |
3158 | |
4138 | 3159 2002-10-31 John W. Eaton <jwe@bevo.che.wisc.edu> |
3160 | |
3161 * configure.in (SHLEXT_VER, SHLLIB_VER, SHLBIN_VER): Use | |
3162 $(version), not $(VERSION). | |
3163 | |
4130 | 3164 2002-10-28 John W. Eaton <jwe@bevo.che.wisc.edu> |
3165 | |
3166 * Makeconf.in (HAVE_DLOPEN_API, HAVE_SHL_LOAD_API, | |
3167 HAVE_LOADLIBRARY_API): Delete. | |
3168 (do-subst-config-vals): Don't substitute them here. | |
3169 | |
4126 | 3170 2002-10-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
3171 | |
4128 | 3172 * configure.in (ENABLE_DYNAMIC_LINKING): Rename from |
3173 WITH_DYNAMIC_LINKING. | |
3174 * Makeconf.in: Likewise. | |
3175 * examples/hello.cc: Likewise. Improve comments. | |
3176 | |
3177 * configure.in: Revive --enable-dl to set default value for | |
3178 WITH_DYNAMIC_LINKING. | |
3179 | |
4126 | 3180 * configure.in: Also set SHLEXT_VER, SHLLIB_VER, SHLBIN_VER. |
3181 * Makeconf.in: Substitute them here. | |
3182 Also substitute SHLLINKEXT. | |
3183 | |
4685 | 3184 2002-10-25 Per Persson <persquare@mac.com> |
4125 | 3185 |
3186 * aclocal.m4 (OCTAVE_CXX_PRAGMA_INTERFACE_IMPLEMENTATION): Fix | |
3187 first test to properly fail on OS X. Fix typo in final test to | |
3188 set result. | |
3189 | |
4122 | 3190 2002-10-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
3191 | |
3192 * mk-opts.pl (emit_opt_class_header): Make set_options another | |
3193 name for copy. | |
3194 | |
4110 | 3195 2002-10-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
3196 | |
3197 * Makeconf.in (do-subst-config-vals): Don't substitute | |
3198 OCTAVE_CONF_OCTAVE_LITE. | |
3199 (OCTAVE_LITE): Delete. | |
3200 | |
3201 * Makeconf.in: Use HAVE_DLOPEN_API, HAVE_LOADLIBRARY_API, and | |
3202 HAVE_SHL_LOAD_API instead of WITH_DL and WITH_SHL. | |
3203 | |
3204 * configure.in: Rewrite the way we handle dynamic linking. | |
3205 If dynamic linking is used always do what was previously only | |
3206 enabled by --enable-lite-kernel. | |
3207 | |
9501 | 3208 2002-10-17 Paul Kienzle <pkienzle@users.sf.net> |
4110 | 3209 |
3210 * configure.in: Define WITH_DYNAMIC_LINKING based on --enable-shared. | |
3211 Add -lwsock32 to LIBS for MinGW. | |
3212 | |
4109 | 3213 2002-10-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
3214 | |
3215 * aclocal.m4 (OCTAVE_LANG_PROG_NO_CONFDEFS): New macro. | |
3216 (OCTAVE_CXX_PRAGMA_INTERFACE_IMPLEMENTATION): Use it along with | |
3217 AC_LINK_IFELSE instead of AC_TRY_LINK. | |
3218 Require both programs to compile for success. | |
3219 | |
9501 | 3220 2002-10-16 Paul Kienzle <pkienzle@users.sf.net> |
4105 | 3221 |
3222 * aclocal.m4: Both Cygwin and MinGW don't prepend underscores. | |
3223 * configure.in: MinGW builds shared libraries the same as Cygwin. | |
3224 MinGW must link to winsock explicitly. | |
3225 * install-octave.in: MinGW and Cygwin both need OCTAVE_HOME. | |
3226 | |
9501 | 3227 2002-10-15 Paul Kienzle <pkienzle@users.sf.net> |
4104 | 3228 |
3229 * configure.in (library_path_var): New variable. | |
3230 | |
4102 | 3231 2002-10-14 John W. Eaton <jwe@bevo.che.wisc.edu> |
3232 | |
4103 | 3233 * configure.in (SH_LDFLAGS): Additional options for Cygwin: |
4104 | 3234 -Wl,--export-all-symbols -Wl,--enable-auto-import. |
4103 | 3235 |
4102 | 3236 * Makeconf.in (TERMLIBS): Substitute here. |
3237 | |
3238 * configure.in: Define OCTAVE_USE_WINDOWS_API if | |
3239 defined (__WIN32__) && ! defined (__CYGWIN__), not if | |
3240 defined (__WIN32__) || ! defined (__CYGWIN__). | |
3241 Also call AC_SUBST for TERMLIBS. | |
3242 | |
9501 | 3243 2002-10-14 Paul Kienzle <pkienzle@users.sf.net> |
4102 | 3244 |
3245 * configure.in: Use correct SHLEXT and PICFLAG for Cygwin. | |
3246 * configure.in: Cygwin must link against -loctave.dll, etc. | |
3247 | |
3248 * configure.in: Define INCLUDE_LINK_DEPS because Cygwin needs DLLs | |
3249 to be linked against their dependencies. | |
3250 * Makeconf.in: Ditto. | |
3251 | |
3252 * configure.in: Define SHLLIB and SHLBIN because Cygwin doesn't | |
3253 link against shared libs but instead against -lxxx.dll. LIB and | |
3254 BIN are the link and load forms respectively of the library. | |
3255 * Makeconf.in: Ditto, and define the corresponding XXX_VER. | |
3256 | |
3257 * configure.in: Remove LIBOCT_READLINE and LIBOCT_PATHSEARCH | |
3258 because they are merged into LIBOCTAVE to avoid circular | |
3259 dependencies. | |
3260 * Makeconf.in: Ditto. | |
3261 * mkoctfile.in: Ditto. | |
3262 | |
3263 * aclocal.m4 (OCTAVE_ENABLE_READLINE): Define LIBREADLINE because | |
3264 Cygwin requires liboctave to be linked against -lreadline so | |
3265 including it in LIBS isn't sufficient. | |
3266 * mkoctfile.in: Substitute and use LIBREADLINE here. | |
3267 | |
3268 * aclocal.m4 (OCTAVE_CXX_PREPENDS_UNDERSCORE): Force no for cygwin. | |
3269 | |
4101 | 3270 2002-10-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
3271 | |
3272 * configure.in (AH_BOTTOM): Maybe define OCTAVE_USE_WINDOWS_API | |
3273 and OCTAVE_HAVE_WINDOWS_FILESYSTEM. | |
3274 | |
4095 | 3275 2002-10-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
3276 | |
4098 | 3277 * aclocal.m4 (OCTAVE_PROG_GNUPLOT): AC_DEFINE GNUPLOT_BINARY |
3278 Default value on Windows systems is pgnuplot. | |
3279 If not cross compiling and no gnuplot program is found, set | |
3280 default to gnuplot. Set defaults for multiplot and frames. Check | |
3281 for pgnpuplot, pipe-gnuplot, and gnuplot on Windows systems. | |
3282 | |
3283 * configure.in (BUILD_EXEEXT): New variable. | |
3284 * Makeconf.in (BUILD_EXEEXT): Substitute it here. | |
3285 | |
4095 | 3286 * aclocal.m4 (OCTAVE_CXX_PRAGMA_INTERFACE_IMPLEMENTATION): |
3287 Add second test for OS X. | |
3288 | |
4093 | 3289 2002-10-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
3290 | |
4094 | 3291 * aclocal.m4 (OCTAVE_CXX_PRAGMA_INTERFACE_IMPLEMENTATION): New macro. |
3292 * configure.in: Use it. | |
3293 | |
3294 * configure.in (BUILD_CC, BUILD_CFLAGS, BUILD_CXX, BUILD_CXXFLAGS): | |
3295 Set default values if cross compiling. | |
3296 | |
4093 | 3297 * aclocal.m4 (OCTAVE_PROG_NM): Do the right thing for cross compiling. |
3298 (OCTAVE_CXX_PREPENDS_UNDERSCORE): Require OCTAVE_PROG_NM. | |
3299 (OCTAVE_CXX_ABI): Likewise. | |
3300 | |
3301 * Makeconf.in (BUILD_CC, BUILD_CFLAGS, BUILD_CXX, BUILD_CXXFLAGS): | |
3302 New variables for cross compiling. | |
3303 | |
9501 | 3304 2002-10-07 Paul Kienzle <pkienzle@users.sf.net> |
4092 | 3305 |
3306 * configure.in: Check for raise. | |
3307 | |
4084 | 3308 2002-10-02 John W. Eaton <jwe@bevo.che.wisc.edu> |
3309 | |
3310 * aclocal.m4 (OCTAVE_PROG_SED): New macro, adapted from autoconf | |
3311 patches mailing list archive, written by Robert Boehne | |
3312 <rboehne@ricardo-us.com>. | |
3313 * configure.in: Use it. | |
3314 * Makeconf.in: Substitute SED, use $(SED), not sed. | |
3315 (do-subst-conffig-vals): Substitute it here too. | |
3316 * mkoctfile.in: And here. Use $SED, not sed. | |
3317 * octave-bug.in: Likewise. | |
3318 * install-octave.in: Likewise. | |
3319 | |
4081 | 3320 2002-09-30 John W. Eaton <jwe@bevo.che.wisc.edu> |
3321 | |
3322 * configure.in: Don't define mkdir here. | |
3323 | |
4067 | 3324 2002-09-25 Mumit Khan <khan@nanotech.wisc.edu> |
3325 | |
3326 * aclocal.m4 (OCTAVE_MKDIR_TAKES_ONE_ARG): New macro to determine if | |
3327 host mkdir accepts only one arg instead of the usual two. | |
3328 * configure.in: Use. Check for direct.h. | |
3329 (mkdir): Define. | |
3330 | |
9501 | 3331 2002-09-26 Paul Kienzle <pkienzle@users.sf.net> |
4067 | 3332 |
3333 * configure.in: Check for conio.h. | |
3334 Check for _kbhit. | |
3335 | |
4066 | 3336 2002-09-26 John W. Eaton <jwe@bevo.che.wisc.edu> |
3337 | |
3338 * configure.in (AH_BOTTOM): Don't define | |
3339 USE_PRAGMA_INTERFACE_IMPLEMENTATION. | |
3340 | |
9501 | 3341 2002-09-26 Paul Kienzle <pkienzle@users.sf.net> |
4064 | 3342 |
3343 * configure.in: Fix syntax errors in !HAVE_XXX_T. | |
3344 Don't require terminal control for build. | |
3345 | |
4062 | 3346 2002-09-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
3347 | |
3348 * configure.in: Fix typedefs used in AH_BOTTOM. | |
3349 | |
4061 | 3350 2002-09-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
3351 | |
3352 * configure.in (AH_BOTTOM): If using g++, define | |
3353 USE_PRAGMA_INTERFACE_IMPLEMENTATION. | |
3354 | |
4051 | 3355 2002-08-17 John W. Eaton <jwe@bevo.che.wisc.edu> |
3356 | |
3357 * configure.in: Check for sstream. | |
3358 | |
4050 | 3359 2002-08-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
3360 | |
3361 * Makeconf.in (%.d : %.cc): Add $*.df to LHS of dependency list. | |
3362 | |
9501 | 3363 2002-08-15 Paul Kienzle <pkienzle@users.sf.net> |
4044 | 3364 |
3365 * mk-opts.pl: Add support for INCLUDE = "...". | |
3366 | |
3367 2002-08-15 John W. Eaton <jwe@bevo.che.wisc.edu> | |
3368 | |
3369 * mk-opts.pl: Handle Array<int> too. | |
3370 | |
4035 | 3371 2002-08-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
3372 | |
3373 * mk-opts.pl (emit_options_function): Emit newline at EOF. | |
3374 | |
4014 | 3375 2002-08-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
3376 | |
3377 * Makeconf.in: Use $@-t instead of $@.tmp or $@.t. | |
3378 | |
3998 | 3379 2002-07-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
3380 | |
3381 * mk-opts.pl: New file. | |
3382 * Makefile.in (DISTFILES): Add it to the list. | |
3383 | |
3989 | 3384 2002-07-12 John W. Eaton <jwe@bevo.che.wisc.edu> |
3385 | |
3386 * configure.in (AC_CONFIG_FILES): Add libcruft/dasrt/Makefile to | |
3387 the list. | |
3388 | |
3983 | 3389 2002-07-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
3390 | |
3391 * configure.in (AC_CONFIG_FILES): Add libcruft/odessa/Makefile to | |
3392 the list. | |
3393 | |
3956 | 3394 2002-05-24 John W. Eaton <jwe@bevo.che.wisc.edu> |
3395 | |
3396 * configure.in: Maybe add -fno-coalesce-templates to XTRA_CXXFLAGS | |
3397 on darwin systems. | |
3398 (SH_LDFLAGS): Set this on darwin systems. | |
3399 (UGLY_DEFS): Cope with broken sed or shell quoting on darwin systems. | |
3400 | |
3943 | 3401 2002-05-16 John W. Eaton <jwe@bevo.che.wisc.edu> |
3402 | |
3403 * aclocal.m4 (OCTAVE_CXX_ISO_COMPLIANT_LIBRARY): Omit cwctype. | |
3404 | |
3923 | 3405 2002-05-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
3406 | |
3407 * configure.in (AC_AIX): Move before AC_MINIX and AC_ISC_POSIX. | |
3408 (AH_BOTTOM): Move contents of acconfig.h here. | |
3409 * acconfig.h: Delete. | |
3925 | 3410 * octMakefile.in (CONF_DISTFILES): Delete acconfig.h from the list. |
3923 | 3411 |
3911 | 3412 2002-04-27 John W. Eaton <jwe@bevo.che.wisc.edu> |
3413 | |
3414 * configure.in (AC_CONFIG_FILES): Add libcruft/daspk/Makefile to | |
3415 the list. | |
3416 | |
9501 | 3417 2002-04-24 Kurt Hornik <hornik@ci.tuwien.ac.at> |
3908 | 3418 |
3419 * aclocal.m4 (OCTAVE_CC_FLAG, OCTAVE_CXX_FLAG): Also handle flags | |
3420 that contain : and =. | |
3421 | |
3899 | 3422 2002-04-12 John W. Eaton <jwe@bevo.che.wisc.edu> |
3423 | |
3424 * config.guess, config.sub: Update from FSF sources. | |
3425 | |
3897 | 3426 2002-04-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
3427 | |
3428 * configure.in: Declare F2C and F2CFLAGS with AC_ARG_VAR. | |
3429 Delete AC_SUBST calls for F77, FFLAGS, FLIBS, F2C, F2CFLAGS (no | |
3430 need to do this explicitly now). | |
3431 | |
3892 | 3432 2002-04-04 John W. Eaton <jwe@bevo.che.wisc.edu> |
3433 | |
3434 * Makeconf.in: Set and substitute EXEEXT, not EXE. | |
3435 | |
3436 * configure.in (EXE): Delete check and substitution. | |
3437 * install-octave.in: Use EXEEXT instead of EXE. | |
3438 | |
3439 * configure.in: Use AC_CHECK_MEMBERS, not OCTAVE_STRUCT_GR_PASSWD. | |
3440 Use AC_CHECK_TYPES, not AC_CHECK_TYPE or OCTAVE_CHECK_TYPE. | |
3441 * aclocal.m4 (OCTAVE_STRUCT_GR_PASSWD, OCTAVE_CHECK_TYPE): Delete. | |
3442 * acconfig.h (dev_t, ino_t, nlink_t, sigset_t): Typedef if not found. | |
3443 | |
3888 | 3444 2002-04-03 John W. Eaton <jwe@bevo.che.wisc.edu> |
3445 | |
3446 * aclocal.m4: Replace AC_LANG_SAVE, AC_LANG_C, AC_LANG_CPLUSPLUS, | |
3447 and AC_LANG_RESTORE with AC_LANG_PUSH and AC_LANG_POP. | |
3448 Use AS_MESSAGE_LOG_FD instead of AC_FD_CC. | |
3449 * configure.in: Delete second arg in AC_CHECK_SIZEOF calls. | |
3450 | |
9501 | 3451 2002-04-03 Steven G. Johnson <stevenj@alum.mit.edu> |
3886 | 3452 |
3453 * configure.in: Correct usage of AC_ARG_WITH for --with-fftw. | |
3454 | |
3887 | 3455 * configure.in: Update for autoconf 2.5x. |
3456 Minor syntax changes to new recommended syntaxes and macros. | |
3457 Apply changes from autoupdate plus eliminate some warning | |
3458 messages, deprecated uses of changequote, etc. | |
3459 Use autoheader templates to generate config.h.in. | |
3460 Replace most of Octave's Fortran support macros with those in the | |
3461 new autoconf. | |
3462 Eliminate most uses of internal (undocumented) autoconf cache vars. | |
3463 Replace BLAS/LAPACK detection new macros ACX_BLAS/ACX_LAPACK from | |
3464 the autoconf macro repository. | |
3465 * acx_blas.m4, acx_lapack.m4: New files. | |
3466 * acconfig.h: Delete lines that can be automatically generated | |
3467 from new info in configure.in and aclocal.m4. | |
3468 If it is not already defined, define F77_FUNC for use with f2c. | |
3469 * aclocal.m4 (OCTAVE_PROG_G77, OCTAVE_FLIBS, OCTAVE_F77_MAIN_FLAG, | |
3470 OCTAVE_F77_UPPERCASE_NAMES, OCTAVE_F77_APPEND_UNDERSCORE, | |
3471 OCTAVE_F2C_F77_COMPAT): Delete definitions. | |
3472 Use autoheader templates to generate config.h.in. | |
3473 * Makeconf.in, mkoctfile.in (FORTRAN_MAIN_FLAG): Delete all uses. | |
3474 | |
3859 | 3475 2001-11-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
3476 | |
3477 * octave-bug.in (BLAS_LIBS, FFTW_LIBS, LD_CXX): Substitute and | |
3478 print values. | |
3479 * mkoctfile.in: Accept --compile as an alias for -c. | |
3480 New option, --link-stand-alone. | |
3481 New option, --no-pathsearch. | |
3482 New option, --no-readline. | |
3483 Substitute RLD_FLAG, FLIBS, LIBKPATHSEA, LIBOCTINTERP, | |
3484 LIBOCTAVE, LIBOCT_READLINE, LIBOCT_PATHSEARCH, LIBCRUFT, | |
3485 BLAS_LIBS, FFTW_LIBS, and LIBS. | |
3486 * Makeconf.in (MKOCTFILE_LFLAGS): New variable. | |
3487 (do-subst-config-vals): Substitute FFTW_LIBS, LD_CXX, | |
3488 LIBOCT_PATHSEARCH, LIBOCT_READLINE, MKOCTFILE_LFLAGS. | |
3489 | |
3857 | 3490 2001-11-06 John W. Eaton <jwe@bevo.che.wisc.edu> |
3491 | |
3492 * Makefile.in (LIBOCT_READLINE, LIBOCT_PATHSEARCH): New variables. | |
3493 * Makeconf.in: Substitute them here. | |
3494 | |
3853 | 3495 2001-11-02 John W. Eaton <jwe@bevo.che.wisc.edu> |
3496 | |
3497 * octMakefile.in (dist): Omit long-gone info subdir. | |
3498 Fix find command for removing Makefile in kpathsea and glob subdirs. | |
3499 | |
3847 | 3500 2001-08-10 John W. Eaton <jwe@bevo.che.wisc.edu> |
3501 | |
3502 * mkoctfile.in: Substitute F2C and F2CFLAGS. Make it possible to | |
3503 use f2c and a C compile to compiling Fortran source files. Print | |
3504 warnings and error message on stderr, not stdout. Issue warnings | |
3505 if it is not possible to comiple Fortran, C, or C++ files. | |
3506 | |
3507 * configure.in (%.c : %.f): Don't use cat in F2C rule. | |
3508 | |
3846 | 3509 2001-07-27 John W. Eaton <jwe@bevo.che.wisc.edu> |
3510 | |
3511 * Makeconf.in (do-subst-config-vals): Substitute DEPEND_FLAGS and | |
3512 DEPEND_EXTRA_SED_PATTERN. | |
3513 * mkoctfile.in: Handle --depend. | |
3514 | |
3845 | 3515 2001-07-25 Rafael Laboissiere <rafael@laboissiere.net> |
3516 | |
3517 * octave-config.in: New file. | |
3518 * Makeconf.in (do-subst-default-vals): Substitute OCTAVE_VERSION. | |
3519 * Makefile.in (TARGETS): Add octave-config to list. | |
3520 * octMakefile.in (DISTFILES): Add octave-config.in to list. | |
3521 (BINDISTFILES): Add octave-config to list. | |
3522 (all): Add octave-config dependency. | |
3523 (octave-config): New rule. | |
3524 (install): Install octave-config. | |
3525 (uninstall): Delete octave-config from bindir. | |
3526 (maintainer-clean): Delete octave-config. | |
3527 (binary-dist): Add octave-config dependency. | |
3528 | |
3842 | 3529 2001-06-29 Mumit Khan <khan@nanotech.wisc.edu> |
3530 | |
3843 | 3531 * aclocal.m4 (OCTAVE_CXX_ABI): Use "sun_v5" instead of "sun". |
3532 | |
3842 | 3533 * aclocal.m4 (OCTAVE_CXX_ABI): New macro. |
3534 (OCTAVE_CXX_PREPENDS_UNDERSCORE): Add missing return value. | |
3535 * configure.in: Use. | |
3536 * acconfig.h (CXX_ABI): New macro. | |
3537 | |
3835 | 3538 2001-05-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
3539 | |
3540 * configure.in: Quote the call to AC_CHECK_FUNC inside the | |
3541 AC_CHECK_LIB macro when checking for lapack. For autoconf 2.50 | |
3542 | |
3543 * aclocal.m4: Changes for autoconf 2.50: | |
3544 Convert dnl comments inside AC_DEFUN to ###. | |
3545 (OCTAVE_FLIBS): Use [] quoting instead of changequote. | |
3546 | |
3829 | 3547 2001-05-02 John W. Eaton <jwe@bevo.che.wisc.edu> |
3548 | |
3549 * octMakefile.in: Remove remaining references to readline. | |
3830 | 3550 (CONF_DISTFILES): Add autogen.sh to the list. |
3829 | 3551 |
3827 | 3552 2001-05-02 Mumit Khan <khan@nanotech.wisc.edu> |
3553 | |
3554 * configure.in: Support for --with-fftw. | |
3555 (FFT_DIR, FFTW_LIBS): New substitutions. | |
3556 * Makeconf.in (FFTW_LIBS): New variable. | |
3557 * acconfig.h (HAVE_FFTW): New macro. | |
3558 | |
3822 | 3559 2001-04-26 John W. Eaton <jwe@bevo.che.wisc.edu> |
3560 | |
3824 | 3561 * aclocal.m4 (OCTAVE_ENABLE_READLINE): Require readline unless |
3562 --disable-readline is specified. | |
3563 | |
3822 | 3564 * configure.in: Don't define TERMLIBS. Do add terminal lib(s) to LIBS. |
3565 * octave-bug.in: Delete references to TERMLIBS. | |
3566 * Makeconf.in: Likewise. | |
3567 | |
3568 * Makeconf.in (LIBREADLINE): Delete substitution. | |
3569 (do-subst-config-vals): Likewise. | |
3570 * octMakefile.in (SUBDIRS): Delete @READLINE_DIR@ from the list. | |
3571 * configure.in (AC_CONFIG_SUBDIRS): Delete $READLINE_DIR from the list. | |
3572 | |
3573 * configure.in (VOID_SIGHANDLER): Don't check or substitute here. | |
3574 | |
3821 | 3575 2001-04-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
3576 | |
3577 * octMakefile.in (install, install-strip): Don't use mk-includedir-link | |
3578 | |
3579 * Makeconf.in (mk-includedir-link, mk-libdir-link): Delete definitions. | |
3580 | |
3581 2001-04-24 John W. Eaton <jwe@bevo.che.wisc.edu> | |
3582 | |
3583 * Makeconf.in (mk-libdir-link): Undo previous change | |
3584 | |
3820 | 3585 2001-04-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
3586 | |
3587 * configure.in: Only check for libz if checking for HDF5 libraries. | |
3588 Allow user to specify HDF5 library name on command line, same as | |
3589 for BLAS libraries. Include BLAS and HDF5 libs in summary output. | |
3590 | |
3818 | 3591 2001-04-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
3592 | |
3593 * octMakefile.in (CONF_DISTFILES): Remove config.h.bot from the list. | |
3594 | |
9501 | 3595 2001-04-19 David Livings <david.livings@asa.co.uk> |
3815 | 3596 |
3597 * Makeconf.in (mk-libdir-link): Omit check for $(octlibdir)/octave | |
3598 existing as a directory. | |
3599 | |
3803 | 3600 2001-02-28 Albert Chin-A-Young <china@thewrittenword.com> |
3601 | |
3602 * configure.in: Check for getpwnam in libsun only after checking | |
3603 default libraries first. Check for gethostname in libsocket only | |
3604 after checking default libraries first. | |
3605 | |
3800 | 3606 2001-02-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
3607 | |
3608 * configure.in: Allow for using f2c when setting functions to look | |
3609 for in the BLAS and Lapack libraries. | |
3610 From Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at>. | |
3611 | |
3797 | 3612 2001-02-10 Mumit Khan <khan@nanotech.wisc.edu> |
3613 | |
3614 * test/octave.test/string/dec2hex-1.m: Don't assume hex format | |
3615 produces lower case letters. | |
3616 | |
3785 | 3617 2001-02-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
3618 | |
3788 | 3619 * acconfig.h: Merge contents of config.h.bot. |
3620 * config.h.bot: Delete. | |
3621 | |
3785 | 3622 * autogen.sh: Allow running of autoconf or autoheader to be skipped. |
3623 | |
3779 | 3624 2001-02-06 John W. Eaton <jwe@bevo.che.wisc.edu> |
3625 | |
3626 * readline: Update to new version (4.2-beta1). | |
3627 | |
3775 | 3628 2001-02-05 Mumit Khan <khan@nanotech.wisc.edu> |
3629 | |
3630 * configure.in (TEMPLATE_AR, TEMPLATE_ARFLAGS): New variables. | |
3631 * Makeconf.in (TEMPLATE_AR, TEMPLATE_ARFLAGS): Likewise. | |
3632 | |
3633 * configure.in (XTRA_CXXFLAGS): Use -fno-implicit templates for | |
3634 pre-gcc3 compilers. Remove -fno-rtti and -fno-exceptions. | |
3635 (DEPEND_FLAGS, DEPEND_EXTRA_SED_PATTERN): New macros. | |
3636 (BLAS_LIBS): Fix test for sunperf library on Sun Solaris. | |
3637 (CPICFLAG, CXXPICFLAG, FPICFLAG, SH_LDFLAGS, RLD_FLAG): Add Sun | |
3638 compiler support. | |
3639 * Makefile.in (DEPEND_FLAGS, DEPEND_EXTRA_SED_PATTERN): New | |
3640 variables. | |
3641 (%.d : %.cc): Use. | |
3642 (%.d : %.c): Likewise. | |
3643 * acconfig.h (CXX_ISO_COMPLIANT_LIBRARY): Add #undef. | |
3644 | |
3769 | 3645 2001-01-31 Mumit Khan <khan@nanotech.wisc.edu> |
3646 | |
3647 * Makeconf.in (%.d : %.cc): Strip the directory portion of the | |
3648 target. | |
3649 (%.d : %.c): Likewise. | |
3650 | |
3651 * aclocal.m4 (OCTAVE_CXX_ISO_COMPLIANT_LIBRARY): New macro. | |
3652 * configure.in: Use it. | |
3653 | |
3768 | 3654 2001-01-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
3655 | |
3656 * Makeconf.in (do-subst-config-vals): Substitute | |
3657 OCTAVE_CONF_CANONICAL_HOST_TYPE here too. | |
3658 * octave-bug.in: Substitute OCTAVE_CONF_CANONICAL_HOST_TYPE, not | |
3659 OCTAVE_CANONICAL_HOST_TYPE. | |
3660 | |
3750 | 3661 2000-12-09 John W. Eaton <jwe@bevo.che.wisc.edu> |
3662 | |
3663 * aclocal.m4: Give gperf a keyword, to avoid complaints from newer | |
3664 versions. | |
3665 | |
3740 | 3666 2000-11-27 Marcus.Brinkmann <Marcus.Brinkmann@ruhr-uni-bochum.de> |
3667 | |
3668 * configure.in: Handle *-*-gnu* the same as *-*-linux* for shared | |
3669 library creation. | |
3670 | |
3735 | 3671 2000-11-03 Andy Adler <en254@freenet.carleton.ca> |
3672 | |
3673 * mkoctfile.in: Handle -c to mean compile only. | |
3674 | |
3734 | 3675 2000-11-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
3676 | |
3677 * mkoctfile.in: Handle --print. | |
3678 | |
3729 | 3679 2000-10-31 John W. Eaton <jwe@bevo.che.wisc.edu> |
3680 | |
3731 | 3681 * aclocal.m4 (OCTAVE_PROG_GPERF): Check that gperf supports flags |
3682 we use. | |
3683 | |
3729 | 3684 * missing: New file, modified from the missing script provided by |
3685 automake (never create files, just exit with failure status). | |
3686 * aclocal.m4 (OCTAVE_PROG_BISON, OCTAVE_PROG_FLEX, OCTAVE_PROG_GPERF): | |
3687 Use $(top_srcdir)/missing as replacement script. | |
3688 | |
3689 * aclocal.m4 (OCTAVE_PROG_FLEX, OCTAVE_PROG_BISON): New macros. | |
3690 * configure.in: Use them. | |
3691 | |
3726 | 3692 2000-10-27 John W. Eaton <jwe@bevo.che.wisc.edu> |
3693 | |
3694 * autogen.sh: Don't run configure. | |
3695 | |
3696 * configure.in (SPECIAL_MATH_LIB): Delete code related to this var. | |
3697 * Makeconf.in: Ditto. | |
3698 (BLAS_LIBS, LIBS): Substitute here. | |
3699 (do-subst-config-vals): Put BLAS_LIBS in oct-conf.h. | |
3700 | |
3705 | 3701 2000-07-20 Joao Cardoso <jcardoso@inescn.pt> |
3702 | |
3703 * configure.in: (LD_CXX): Define and substitute. | |
3704 For sco3.2v5 systems, set SONAME_FLAGS and RLD_FLAG. | |
3705 * Makeconf.in (LD_CXX): Allow substitution. | |
3706 | |
3700 | 3707 2000-07-18 John W. Eaton <jwe@bevo.che.wisc.edu> |
3708 | |
3709 * octMakefile.in (DISTSUBDIRS): Define in terms of $(ALL_SUBDIRS). | |
3710 | |
3697 | 3711 2000-07-17 Joao Cardoso <jcardoso@inescn.pt> |
3712 | |
3713 * configure.in (LIBGLOB): Set to be the two object files in the | |
3714 glob directory instead of libglob.a. | |
3715 | |
3692 | 3716 2000-07-05 Steven G. Johnson <stevenj@gil-galad.mit.edu> |
3717 | |
3718 * Use BLAS_LIBS to save the names of BLAS libraries instead of | |
3719 adding them to LIBS, then substitute BLAS_LIBS. | |
3720 | |
3690 | 3721 2000-06-30 Steven G. Johnson <stevenj@gil-galad.mit.edu> |
3722 | |
3723 * configure.in: Support for --with-fastblas (ATLAS). | |
3724 | |
3688 | 3725 2000-06-29 John W. Eaton <jwe@bevo.che.wisc.edu> |
3726 | |
3727 * configure.in: Check for long long data type. | |
3728 | |
3687 | 3729 2000-06-29 Steven G. Johnson <stevenj@gil-galad.mit.edu> |
3730 | |
3731 * acconfig.h (HAVE_HDF5): Add undef. | |
3732 * configure.in: Handle --with-hdf5. | |
3733 | |
3681 | 3734 2000-06-26 John W. Eaton <jwe@bevo.che.wisc.edu> |
3735 | |
3736 * octave-bug.in: Substitute correct values for config_opts, | |
3737 MACHINE, and CXXFLAGS. | |
3738 | |
3675 | 3739 2000-06-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
3740 | |
3741 * Makeconf.in (GPERF): Allow substitution. | |
3742 | |
3673 | 3743 2000-06-05 John W. Eaton <jwe@bevo.che.wisc.edu> |
3744 | |
3745 * aclocal.m4 (OCTAVE_PROG_GPERF): New macro. | |
3746 * configure.in: Use it. Print warning at end if gperf is missing. | |
3747 | |
3660 | 3748 2000-04-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
3749 | |
3750 * mkoctfile.in: Try moving output file first. But comment these | |
3751 lines and let people who have trouble enable them. | |
3752 | |
3659 | 3753 2000-04-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
3754 | |
3755 * mkoctfile.in: Remove output file before linking. | |
3756 | |
3757 * octMakefile.in (DIRS_TO_MAKE): Create $(octincludedir)/octave. | |
3758 (install install-strip): Install config.h in $(octincludedir)/octave, | |
3759 not $(octincludedir). | |
3760 | |
3650 | 3761 2000-03-31 John W. Eaton <jwe@bevo.che.wisc.edu> |
3762 | |
3763 * octMakefile.in (DIRS_TO_MAKE): Double up on $ in awk command to | |
3764 get them past Make. | |
3765 | |
3646 | 3766 2000-03-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
3767 | |
3768 * octMakefile.in (SUBDIRS): Omit src. | |
3769 (ALL_SUBDIRS): New variable. Include src here. | |
3770 (all): Depend on src instead of $(SUBDIRS). | |
3771 (src): New target. Depend on $(SUBDIRS). | |
3772 | |
3648 | 3773 * Makefile.in (.NOTPARALLEL): New target, for GNU Make 3.79. |
3774 * octMakefile.in (.NOTPARALLEL): Likewise. | |
3775 | |
3620 | 3776 2000-03-22 John W. Eaton <jwe@bevo.che.wisc.edu> |
3777 | |
3778 * configure.in: Check for vsnprintf. | |
3779 | |
3615 | 3780 2000-03-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
3781 | |
3782 * Makefile.in (liboctave.$(SHLEXT)): Delete target before rebuilding. | |
3783 | |
9501 | 3784 2000-03-21 Ben Sapp <bsapp@nua.lampf.lanl.gov>: |
3615 | 3785 |
3786 * Makeconf.in (%.o : %.c): Pass -o to compile command. | |
3787 (%.o : %.cc): Ditto. | |
3788 * configure.in (%.o : %.f): Ditto. | |
3789 | |
3607 | 3790 2000-03-08 Stephen Eglen <stephen@gnu.org> |
3791 | |
3792 * emacs/octave-mod.el (octave-font-lock-keywords): To font-lock | |
3793 the builtin operators, use `font-lock-builtin-face' for Emacs | |
3794 and `font-lock-preprocessor-face' for XEmacs. | |
3795 | |
3606 | 3796 2000-03-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
3797 | |
3798 * configure.in: For building shared libaries, handle | |
3799 i386-pc-solaris2* the same as sparc-sun-solaris2*. | |
3800 | |
9501 | 3801 2000-02-29 Ben Sapp <bsapp@nua.lampf.lanl.gov> |
3603 | 3802 |
3803 * examples/make_int.cc (make_int): Handle new operator names. | |
3804 | |
3601 | 3805 2000-02-23 John W. Eaton <jwe@bevo.che.wisc.edu> |
3806 | |
3807 * octMakefile.in (maintainer-clean distclean): Don't delete Makefile. | |
3808 (dist): Delete stamp-auto. | |
3809 | |
3597 | 3810 2000-02-11 John W. Eaton <jwe@bevo.che.wisc.edu> |
3811 | |
3812 * configure.in (octincludedir): Delete trailing /octave here. | |
3813 * Makeconf.in (mk-includedir-link): Append it here. | |
3814 (MKOCTFILE_INCFLAGS): Use both -I$(octincludedir) and | |
3815 -I$(octincludedir)/octave. | |
3816 | |
3817 * configure.in (localveroctfiledir, localverarchlibdir, | |
3818 localverfcnfiledir): New variables. | |
3819 (localfcnfilepath): Prepend localverfcnfiledir. | |
3820 (localoctfilepath): Prepend localveroctfiledir. | |
3821 * Makeconf.in: Substitute them here. | |
3822 | |
3823 * Makeconf.in (do-subst-default-vals): Substitute | |
3824 OCTAVE_LOCALVERARCHLIBDIR, OCTAVE_LOCALVERFCNFILEDIR, | |
3825 OCTAVE_LOCALVEROCTFILEDIR. | |
3826 | |
3590 | 3827 2000-02-08 John W. Eaton <jwe@bevo.che.wisc.edu> |
3828 | |
3594 | 3829 * config.guess: Update to latest from subversions.gnu.org. |
3830 * config.sub: Likewise. Recognize sv1-cray as a basic_machine. | |
3831 | |
3591 | 3832 * Makeconf.in (MKOCTFILE_INCFLAGS): New macro. |
3833 (do-subst-conf-vals): Substitute it. | |
3593 | 3834 * mkoctfile.in: Set INCFLAGS from OCTAVE_CONF_MKOCTFILE_INCFLAGS. |
3591 | 3835 |
3590 | 3836 * mkoctfile.in: Fix names in substititions. |
3837 * octave-bug.in: Likewise. | |
3838 | |
3584 | 3839 2000-02-07 John W. Eaton <jwe@bevo.che.wisc.edu> |
3840 | |
3841 * Makeconf.in (do-subst-default-vals, do-subst-config-vals): | |
3842 Substitute more complete set of values. | |
3843 | |
3506 | 3844 2000-02-01 John W. Eaton <jwe@bevo.che.wisc.edu> |
3845 | |
3846 * aclocal.m4 (octave_cv_string_npos): Add std:: qualifier. | |
3847 | |
3485 | 3848 2000-01-27 John W. Eaton <jwe@bevo.che.wisc.edu> |
3849 | |
3850 * emacs/octave-mod.el (octave-begin-keywords): Add "do". | |
3851 (octave-end-keywords): Add "until". | |
3852 (octave-abbrev-table): Add "u" as abbrev for "until ()" | |
3853 (octave-block-match-alist): Add do-until. | |
3854 | |
3474 | 3855 2000-01-25 John W. Eaton <jwe@bevo.che.wisc.edu> |
3856 | |
3475 | 3857 * configure.in: Don't look for the sunmath library. |
3858 Don't check for infinity or quiet_nan. | |
3859 | |
3860 * emacs/octave-mod.el (octave-mode-syntax-table): | |
3861 Undo previous change, but add a comment explaining why. | |
3862 | |
3474 | 3863 * install-octave.in: Exit on any error instead of continuing. |
3864 Install Octave binary last. | |
3865 | |
3473 | 3866 2000-01-24 John W. Eaton <jwe@bevo.che.wisc.edu> |
3867 | |
3868 * emacs/octave-mod.el (octave-mode-syntax-table): | |
3869 Make `%' a comment start character too. | |
3870 | |
3465 | 3871 2000-01-20 John W. Eaton <jwe@bevo.che.wisc.edu> |
3872 | |
3873 * configure.in: Check for strptime and localtime_r. | |
3874 | |
3351 | 3875 1999-11-15 John W. Eaton <jwe@bevo.che.wisc.edu> |
3876 | |
3877 * configure.in (XTRA_CXXFLAGS, XTRA_CFLAGS): Use -mminimal-toc on | |
3878 AIX systems. | |
3879 | |
3323 | 3880 1999-10-26 John W. Eaton <jwe@bevo.che.wisc.edu> |
3881 | |
3882 * emacs/README: New file. | |
3883 * emacs/Makefile.in (DISTFILES, BINDISTFILES): Add it to the lists. | |
3884 | |
3885 * emacs/Makefile.in: Don't distribute .elc files. | |
3886 | |
3308 | 3887 1999-10-21 John W. Eaton <jwe@bevo.che.wisc.edu> |
3888 | |
3889 * configure.in: Check for select and poll. Also check for poll.h | |
3890 and sys/poll.h. | |
3891 | |
9501 | 3892 1999-10-19 Geoff Jacobsen <geoffj@casquet.inet.net.nz> |
3298 | 3893 |
3894 * autogen.sh: New file. | |
3895 | |
3297 | 3896 1999-10-19 John W. Eaton <jwe@bevo.che.wisc.edu> |
3897 | |
3898 * octMakefile.in: Use `$(MAKE) -C dir' instead of `cd dir; $(MAKE)'. | |
3899 | |
3273 | 3900 Mon Sep 20 11:02:29 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
3901 | |
3902 * emacs/octave-inf.el, emacs/octave-mod.el: Update to match FSF | |
3903 sources plus code that will make it work if Emacs doesn't have the | |
3904 customize code. | |
3905 | |
9501 | 3906 Tue Sep 14 07:57:06 1999 Kurt Hornik <hornik@ci.tuwien.ac.at> |
3273 | 3907 |
3908 * emacs/octave-inf.el (inferior-octave-startup): Always pass "-i" | |
3909 and "--no-line-editing" to Octave subprocess. | |
3910 (inferior-octave-startup-args): Default to nil. | |
3911 | |
3268 | 3912 Mon Sep 6 10:50:10 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
3913 | |
3914 * emacs/octave-inf.el (inferior-octave-startup-args): | |
3915 Add --no-line-editing to the list. | |
3916 | |
3249 | 3917 Fri Jul 9 09:15:24 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
3918 | |
3919 * configure.in: Try to handle IEEE FP flags for g77 on Alphas. | |
3920 | |
3921 Thu Jul 8 19:56:37 1999 Stephen Eglen <stephen@gnu.org> | |
3922 | |
3923 * emacs/octave-inf.el (inferior-octave-directory-tracker): | |
3924 Change regexp so that it doesn't match commands beginning with `cd'. | |
3925 | |
3926 Wed Jun 23 13:20:11 1999 Mumit Khan <khan@xraylith.wisc.edu> | |
3927 | |
3928 * configure.in (HAVE_TERMIOS_H): Avoid autoheader lossage. | |
3929 | |
3930 Sun Jun 20 23:05:18 1999 John W. Eaton <jwe@bevo.che.wisc.edu> | |
3931 | |
3932 * configure.in: Check for sys/ioctl.h. | |
3933 | |
3243 | 3934 Mon May 10 09:06:47 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
3935 | |
3936 * aclocal.m4 (OCTAVE_PROG_G77): Also match "FSF-g77", for egcs. | |
3937 | |
3938 Thu Apr 8 19:20:09 1999 John W. Eaton <jwe@bevo.che.wisc.edu> | |
3939 | |
3940 * examples/hello.cc (Fhello): octave_value::print now requires a | |
3941 stream arg. | |
3942 | |
3238 | 3943 Wed Feb 3 01:02:37 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
3944 | |
3945 * configure.in: Use AC_OUTPUT_COMMANDS to chmod install-octave so | |
3946 that the command will also executed in config.status. | |
3947 | |
3234 | 3948 Thu Jan 28 21:05:32 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
3949 | |
3950 * Makeconf.in (do-subst-config-vals): Do substitution on | |
3951 CANONICAL_HOST_TYPE, not TARGET_HOST_TYPE. | |
3952 (do-subst-default-vals): Likewise. | |
3953 | |
3233 | 3954 Wed Jan 20 12:56:02 1999 John W. Eaton <jwe@bevo.che.wisc.edu> |
3955 | |
3956 * configure.in: Don't put -O in FFLAGS for powerpc-apple-machten*. | |
3957 | |
3958 Wed Dec 9 14:02:45 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
3959 | |
3960 * Makeconf.in (RDYNAMIC_FLAG): Substitute RDYNAMIC_FLAG here. | |
3961 * configure.in: Check for G++ compiler flag -rdynamic if setting | |
3962 up to support dynamic linking, and substitute RDYNAMIC_FLAG if | |
3963 -rdynamic is accepted. | |
3964 * aclocal.m4 (OCTAVE_CC_FLAG, OCTAVE_CXX_FLAG): Clarify usage comment. | |
3965 | |
3966 Mon Dec 7 19:49:26 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
3967 | |
3968 * configure.in: Check for -lm just after compiler tests. | |
3969 Remove -lm from other macro calls. Don't check for -lm on NeXT | |
3970 systems. Eric Norum <eric@skatter.usask.ca> says /lib/libsys_s.a | |
3971 has all the routines that are traditionally in libc.a and libm.a | |
3972 on *NIX systems. NeXT also supplies a libm.a, but it seems to be | |
3973 horribly buggy. | |
3974 | |
3975 Sat Dec 5 10:48:40 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
3976 | |
3977 * mkoctfile.in: Correctly handle -?. | |
3978 | |
3225 | 3979 Fri Dec 4 18:05:51 1998 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at> |
3980 | |
3981 * emacs/octave-mod.el (octave-abbrev-start): Use the correct name | |
3982 of the abbrev table, and provide support for XEmacs. | |
3983 (octave-xemacs-p): New variable. | |
3984 | |
3985 Tue Nov 24 23:31:50 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
3986 | |
3987 * configure.in: Check for strftime too. | |
3988 Avoid checking for termios.h on NeXT systems. | |
3989 | |
3222 | 3990 Thu Nov 19 16:07:57 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
3991 | |
3992 * aclocal.m4 (OCTAVE_CXX_PREPENDS_UNDERSCORE): New macro. | |
3993 * configure.in: Use it. | |
3994 * acconfig.h: Add #undef for it. | |
3995 | |
3219 | 3996 Thu Nov 12 10:42:25 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
3997 | |
3998 * emacs/otags: New script from Mario Storti | |
3999 <mstorti@minerva.unl.edu.ar>. | |
4000 * emacs/Makefile.in: Add it to the list of files to distribute and | |
4001 install. | |
4002 | |
4003 Wed Nov 11 17:26:26 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
4004 | |
4005 * configure.in (AC_OUTPUT): Add libcruft/amos/Makefile. | |
4006 Delete libcruft/specfun/Makefile. | |
4007 | |
3215 | 4008 Mon Nov 9 08:53:03 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
4009 | |
4010 * Makeconf.in (LIBGLOB): Add a place for substitution to occur. | |
4011 (GLOB_INCFLAGS): Define as @GLOB_INCFLAGS@, not @DLFCN_INCFLAGS@. | |
4012 (do-subst-config-vals): Don't forget LIBGLOB. | |
4013 * octave-bug.in (LIBGLOB): Substitute here too, and add it to the | |
4014 list of configuration items to print. | |
4015 | |
3206 | 4016 Mon Nov 2 20:33:16 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
4017 | |
3215 | 4018 * configure.in: Define __NO_MATH_INLINES. |
4019 * acconfig.h: Add #undef for it. | |
4020 | |
4021 * configure.in (AC_OUTPUT): Escape newlinew in macro call with \. | |
4022 | |
3206 | 4023 * install-octave.in (SHLEXT): Substitute. |
4024 (SHLEXT_VER): Define. | |
4025 Use them for installing shared libraries. | |
4026 Use subshells to avoid having to cd back to $distdir. | |
4027 (distdir): Delete variable. | |
4028 | |
3189 | 4029 Fri Oct 2 14:23:59 1998 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at> |
4030 | |
4031 * octave-inf.el (inferior-octave-prompt): Also match prompts of | |
4032 the form `octave.bin:1>' which come from using precopiled binary | |
4033 versions. | |
4034 | |
3180 | 4035 Thu Sep 24 13:51:03 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
4036 | |
4037 * configure.in (AC_OUTPUT): Add libcruft/ordered-qz to the list. | |
3185 | 4038 Delete libcruft/balgen and libcruft/eispack from the list. |
3180 | 4039 |
4040 Mon Aug 31 12:07:02 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
4041 | |
4042 * config.sub: Accept armv4 everywhere arm is allowed. | |
4043 | |
4044 Tue Aug 18 17:02:25 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
4045 | |
4046 * mkoctfile.in: Allow -DDEF on command line. | |
4047 | |
9501 | 4048 Thu Jun 18 20:24:40 1998 Roman Hodek <Roman.Hodek@informatik.uni-erlangen.de> |
3178 | 4049 |
4050 * configure.in (RLD_FLAG): Set correctly for Linux on all | |
4051 architectures. From | |
4052 | |
3177 | 4053 Thu May 28 10:17:45 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
4054 | |
4055 * configure.in: When checking for glob stuff, make sure that the | |
4056 systsem header file has all the definitions that we need. If not, | |
4057 set up to use our replacement library. | |
4058 | |
3176 | 4059 Mon May 18 11:33:45 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
4060 | |
4061 * mkoctfile.in: Fix typos in case statement. | |
4062 | |
4063 Fri May 15 00:34:54 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
4064 | |
4065 * configure.in: Make sure install-octave is executable. | |
4066 | |
4067 * install-octave.in (oct_files): Don't cd to src. | |
4068 (have_find): Delete variable (assume all systems have find). | |
4069 | |
4070 Thu May 14 10:29:30 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
4071 | |
4072 * aclocal.m4 (OCTAVE_SET_DEFAULT): Allow values to come from the | |
4073 environment. | |
4074 | |
4075 * Makefile.in (binary-dist): Don't set LDFLAGS to -static. | |
4076 Run configure with --enable-shared and --enable-lite-kernel. | |
4077 | |
4078 * octMakefile.in (DISTFILES): Include README.MachTen in the list. | |
4079 (XBINDISTFILES): Include README.MachTen in the list. | |
4080 Delete README.NLP from the list | |
4081 * README.MachTen: New file. | |
4082 | |
4083 * configure.in: Add -mno-fp-in-toc on ibm-aix4 systems. | |
4084 From Philippe.Defert@cern.ch <Philippe.Defert@cern.ch>. | |
4085 | |
4086 Tue May 5 14:43:36 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
4087 | |
4088 * aclocal.m4 (OCTAVE_PROG_G77): Compile trivial program instead of | |
4089 just running ${f77-f77} -v on nothing. | |
4090 Convert all uses of $F77 to ${F77-f77}. | |
4091 | |
4092 Mon May 4 12:08:36 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
4093 | |
4094 * emacs/octave-mod.el (octave-mode): Make comment-multi-line local | |
4095 and set to nil. | |
4096 | |
3174 | 4097 Tue Apr 28 14:28:14 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
4098 | |
4099 * aclocal.m4 (OCTAVE_FLIBS): Really do skip -lkernel32. | |
4100 | |
4101 Thu Apr 23 23:26:19 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
4102 | |
4103 * kpathsea: Update to version 3.2. | |
4104 | |
4105 Mon Apr 20 21:58:39 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
4106 | |
4107 * configure.in (dlfcn.h): Add check. | |
4108 | |
3168 | 4109 Sat Apr 18 20:15:37 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
4110 | |
4111 * configure.in (USE_GNU_INFO): Delete everything related to this. | |
4112 * acconfig.h (USE_GNU_INFO): Delete undef. | |
4113 | |
3164 | 4114 Tue Apr 14 15:33:20 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
4115 | |
4116 * install-octave.in: Improve error messages if version number or | |
4117 host architecture can't be found. | |
4118 | |
4119 * install-octave.in: Don't install info reader. | |
4120 | |
3162 | 4121 Fri Mar 27 02:54:59 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
4122 | |
4123 * aclocal.m4 (OCTAVE_F2C_F77_COMPAT): Use a Fortran subroutine | |
4124 instead of a function. | |
4125 | |
4126 Tue Mar 10 17:28:20 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
4127 | |
4128 * configure.in (RLD_FLAG): Use $(octlibdir), not $(libdir). | |
4129 | |
3160 | 4130 Mon Mar 2 00:02:26 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
4131 | |
3162 | 4132 * install-octave.in: Explicitly set permissions on ls-R files. |
4133 | |
3161 | 4134 * configure.in: Don't disable GNU Info on cygwin32 systems. |
4135 | |
3160 | 4136 * install-octave.in: New file. |
4137 * configure.in: Create install-octave. | |
4138 * octMakefile.in (distclean, maintainer-clean): Delete install-octave. | |
4139 (DISTFILES): Distribute install-octave.in, not install-octave. | |
4140 | |
4141 Sun Mar 1 23:15:04 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
4142 | |
4143 * configure.in: Fix typo in test for glob and fnmatch headers. | |
4144 | |
4145 Fri Feb 27 15:43:14 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
4146 | |
4147 * configure.in: Fix support for dlopen on SCO systems. | |
4148 | |
4149 Mon Feb 23 13:06:11 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
4150 | |
4151 * configure.in (ieee_fp_flag): Use -mieee-with-inexact on Alphas. | |
4152 Use octave_cv_f77_is_g77, not just f77_is_g77. | |
4153 | |
3156 | 4154 Fri Feb 20 00:38:31 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
4155 | |
4156 * configure.in, Makeconf.in: Try to set things up to use the | |
4157 system glob and fnmatch headers and functions if they exist. | |
4158 Better handling of include and lib flags. | |
4159 | |
4160 Thu Feb 19 01:21:19 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
4161 | |
4162 * configure.in: Don't check for gamma or lgamma | |
4163 * acconfig.h: Delete undef for HAVE_GAMMA and HAVE_LGAMMA. | |
4164 | |
4165 Wed Feb 18 15:05:54 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
4166 | |
4167 * configure.in: Don't check for vfork. | |
4168 | |
3152 | 4169 Wed Feb 11 19:41:22 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
4170 | |
4171 * Makeconf.in (mk-libdir-link): Don't create link if a directory | |
4172 named $(libdir)/octave already exists. | |
4173 | |
4174 Mon Feb 9 14:47:42 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
4175 | |
4176 * octMakefile.in (INSTALL_SUBDIRS): Delete @INFO_DIR@. | |
4177 | |
3147 | 4178 Thu Feb 5 03:04:09 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
4179 | |
4180 * configure.in: Check for vfork. | |
4181 | |
4182 * config.h.bot (X_CAST): New macro. | |
4183 | |
3143 | 4184 Wed Feb 4 01:42:50 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
4185 | |
4186 * aclocal.m4 (OCTAVE_FLIBS): If ld_run_path is not absolute, kill it. | |
4187 | |
3141 | 4188 Tue Feb 3 00:24:01 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
4189 | |
4190 * Makeconf.in (do-subst-vals): Substitute $(libexecdir) too. | |
4191 | |
4192 Mon Feb 2 22:42:27 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
4193 | |
4194 * configure.in: Define octlibdir. | |
4195 * Makeconf.in: Substitute value. | |
4196 (do-subst-config-vals): Set LIBDIR to $(octlibdir). | |
4197 (do-subst-default-vals): Substitute OCTLIBDIR too. | |
4198 | |
3136 | 4199 Sat Jan 31 19:29:56 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
4200 | |
4201 * acconfig.h: Add #undefs for HAVE_GAMMA and HAVE_LGAMMA to avoid | |
4202 bug in autoconf, but #if 0 them out to avoid warning messages | |
4203 about redefining them. | |
4204 | |
3131 | 4205 Mon Jan 26 13:26:09 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
4206 | |
4207 * Makeconf.in (do-subst-config-vals): Substitute XTRA_CFLAGS and | |
4208 XTRA_CXXFLAGS. | |
4209 * mkoctfile.in: Substitute XTRA_CFLAGS and XTRA_CXXFLAGS, not | |
4210 GCC_IEEE_FP_FLAG, HOST_CXXFLAGS, and NO_IMPLICIT_TEMPLATES. | |
4211 (ALL_CFLAGS): Use XTRA_CFLAGS, not GCC_IEEE_FP_FLAG here. | |
4212 (ALL_CXXFLAGS): Use XTRA_CXXFLAGS, not GCC_IEEE_FP_FLAG, | |
4213 HOST_CXXFLAGS, and NO_IMPLICIT_TEMPLATES here. | |
4214 | |
3130 | 4215 Sun Jan 25 01:59:47 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
4216 | |
3131 | 4217 * configure.in: (GXX_PICKY_FLAGS): Add -Weffc++. |
4218 Use OCTAVE_CC_FLAG and OCTAVE_CXX_FLAG to add -Wall and for adding | |
4219 picky flags in AC_ARG_ENABLE(picky-flags ...) macro. | |
4220 | |
3130 | 4221 * aclocal.m4 (OCTAVE_F2C_F77_COMPAT): Require OCTAVE_PROG_G77. |
4222 Handle cross compiling with g77. | |
4223 (OCTAVE_REINSTALL_SIGHANDLERS): Provide defaults for cross compiling. | |
4224 | |
4225 * aclocal.m4 (OCTAVE_PROG_AR, OCTAVE_PROG_G77, OCTAVE_PROG_PAGER, | |
4226 OCTAVE_PROG_GNUPLOT, OCTAVE_PROG_RUNTEST, OCTAVE_F77_MAIN_FLAG): | |
4227 New macros. | |
4228 * configure.in: Use them in place of in-line code. | |
4229 | |
4230 Sat Jan 24 00:33:14 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
4231 | |
4232 * aclocal.m4 (OCTAVE_HOST_TYPE): Don't set target_host_type. | |
4233 * configure.in: Use canonical_host_type in place of target_host_type. | |
4234 | |
4235 Fri Jan 23 02:47:57 1998 John W. Eaton <jwe@bevo.che.wisc.edu> | |
4236 | |
4237 * configure.in: Also check for -fno-rtti. | |
4238 | |
3126 | 4239 Thu Jan 15 23:12:27 1998 John W. Eaton <jwe@bevo.che.wisc.edu> |
4240 | |
3128 | 4241 * config.guess, config.sub: Update to new version from the FSF. |
3127 | 4242 * configure.in: Match alpha*-... instead of just alpha-... to cope |
4243 with new strings like alphaev56-dec-osf4.0b returned from | |
4244 config.guess. | |
4245 | |
3126 | 4246 * aclocal.m4 (OCTAVE_CC_FLAG, OCTAVE_CXX_FLAG): New macros. |
4247 * configure.in: Use them to find out if the C and C++ compilers | |
4248 support -mieee-fp, -mieee, -fno-implicit-templates, and | |
4249 -fno-exceptions instead of relying on version information. Add | |
4250 found flags to XTRA_CFLAGS and XTRA_CXXFLAGS instead of using | |
4251 GCC_IEEE_FP_FLAG and NO_IMPLICIT_TEMPLATES. | |
4252 Delete unused variable HOST_CXXFLAGS. | |
4253 * Makeconf.in: Use XTRA_CFLAGS and XTRA_CXXFLAGS instead of | |
4254 GCC_IEEE_FP_FLAG and NO_IMPLICIT_TEMPLATES. | |
4255 Delete unused variable HOST_CXXFLAGS. | |
4256 | |
3124 | 4257 Thu Dec 11 09:43:56 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4258 | |
3126 | 4259 * config.h.bot: Define CONST_CAST and STATIC_CAST too. |
3124 | 4260 |
4261 * configure.in (SH_LD): Set default to $CXX, not $CC. | |
4262 | |
4263 Mon Dec 1 00:49:56 1997 John W. Eaton <jwe@bevo.che.wisc.edu> | |
4264 | |
4265 * configure.in (AC_OUTPUT): Add libcruft/slatec-err/Makefile. | |
4266 | |
4267 Sun Nov 30 18:19:45 1997 John W. Eaton <jwe@bevo.che.wisc.edu> | |
4268 | |
4269 * configure.in: Check for gamma and lgamma too. | |
4270 | |
3115 | 4271 Fri Nov 28 23:21:17 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4272 | |
4273 * configure.in (AC_OUTPUT): Include libcruft/specfun/Makefile. | |
4274 | |
4275 Fri Nov 28 13:32:26 1997 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at> | |
4276 | |
4277 * octave-inf.el (inferior-octave-directory-tracker): Anchor | |
4278 regexp match to beginning of command string. | |
4279 | |
3111 | 4280 Wed Nov 26 00:38:31 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4281 | |
4282 * configure.in (SPECIAL_MATH_LIB): If libdxml exists on DU | |
4283 systems, define SPECIAL_MATH_LIB. | |
4284 * Makeconf.in (SPECIAL_MATH_LIB): Substitute it. | |
4285 | |
3107 | 4286 Wed Nov 19 01:54:11 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4287 | |
4288 * aclocal.m4 (OCTAVE_CXX_NEW_FRIEND_TEMPLATE_DECL): Don't forget | |
4289 to call AC_LANG_RESTORE. | |
4290 | |
4291 * configure.in (CXX_VERSION): Require 2.7.2 or later. | |
4292 | |
4293 Wed Nov 19 01:38:58 1997 Mumit Khan <khan@dhaka.xraylith.wisc.edu> | |
4294 | |
4295 * aclocal.m4 (OCTAVE_CXX_NEW_FRIEND_TEMPLATE_DECL): New macro | |
4296 check for new friend template declaration syntax (guiding | |
4297 declarations in DWP). | |
4298 * configure.in: Use it. | |
4299 * config.h.in: Add undef for CXX_NEW_FRIEND_TEMPLATE_DECL. | |
4300 | |
4301 * configure.in (CC_VERSION, CXX_VERISON): Check for egcs snapshots. | |
4302 | |
3105 | 4303 Mon Oct 20 01:31:45 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4304 | |
4305 * configure.in: Reprint important warning messages at the end of | |
4306 the run. | |
4307 | |
3093 | 4308 Fri Oct 17 04:43:27 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4309 | |
4310 * Include the following change from RMS for octave-mode.el: | |
4311 | |
4312 1997-04-22 Richard Stallman <rms@psilocin.gnu.ai.mit.edu> | |
4313 | |
4314 * octave-mod.el (inferior-octave-output-list): Declare here | |
4315 to avoid compiler warnings. | |
4316 (inferior-octave-output-string): Likewise. | |
4317 (inferior-octave-receive-in-progress): Likewise. | |
4318 | |
3092 | 4319 Tue Oct 14 10:48:28 1997 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at> |
4320 | |
4321 * emacs/octave-mod.el (octave-block-match-alist): Move | |
4322 `otherwise' to right after `case' to have octave-close-block() | |
4323 correctly close a `switch' block by `endswitch'. | |
4324 | |
3088 | 4325 Thu Oct 2 01:37:15 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4326 | |
3089 | 4327 * aclocal.m4 (OCTAVE_FLIBS): Ignore -lc and -lgcc. |
4328 From "Ram'on Garc'ia Fern'andez" <ramon@juguete.quim.ucm.es> | |
4329 | |
3088 | 4330 * mkoctfile.in: Handle -IDIR option. |
4331 | |
3087 | 4332 Thu Sep 25 11:47:45 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4333 | |
4334 * mkoctfile.in: Really add link options to link command. | |
4335 Also handle -LDIR options. | |
4336 | |
3085 | 4337 Fri Sep 19 09:35:59 1997 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at> |
4338 | |
4339 * octave-inf.el (inferior-octave-startup-args): Set to '("-i") to | |
4340 force interactive behavior. | |
4341 | |
4342 Wed Sep 10 15:31:03 1997 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at> | |
4343 | |
4344 * emacs/octave-mod.el (octave-auto-indent): New variable. | |
4345 (octave-electric-semi, octave-electric-space): Use it. | |
4346 | |
4347 * emacs/octave-mod.el (octave-maybe-insert-continuation-string): New | |
4348 function. | |
4349 (octave-auto-fill): No longer calls do-auto-fill. Should now | |
4350 avoid breaking lines after comment starts or before code line | |
4351 continuation expressions. | |
4352 (octave-fill-paragraph): Move forward a line if octave-auto-fill | |
4353 gave up. | |
4354 | |
4355 * emacs/octave-mod.el (octave-before-magic-comment-p): New function. | |
4356 (octave-comment-indent): Handle magic comments correctly. | |
4357 (calculate-octave-indent): Handle magic comments correctly. | |
4358 | |
4359 * emacs/octave-inf.el (inferior-octave-prompt): Include the `debug' | |
4360 prompt issued by the Octave `keyboard' command. | |
4361 | |
4362 * emacs/octave-mod.el (octave-abbrev-table): Added abbrevs for switch, | |
4363 case, otherwise, and endswitch. | |
4364 (octave-begin-keywords): Added switch. | |
4365 (octave-else-keywords): Added case and otherwise. | |
4366 (octave-end-keywords): Added endswitch. | |
4367 (octave-block-match-alist): Added an entry for switch syntax. | |
4368 (calculate-octave-indent): Added support for switch syntax. | |
4369 (octave-block-end-offset): New function. | |
4370 (octave-comment-indent): Fix a typo. | |
4371 | |
4372 * emacs/octave-hlp.el: Provide octave-hlp. | |
4373 | |
4374 * emacs/octave-inf.el: Provide octave-inf. | |
4375 | |
4376 Sun Sep 7 23:16:33 1997 John W. Eaton <jwe@bevo.che.wisc.edu> | |
4377 | |
4378 * configure.in Don't use OCTAVE_SET_DEFAULT to set values for | |
4379 bindir, datadir, exec_prefix, includedir, infodir, libdir, | |
4380 libexecdir, mandir. | |
4381 Don't use AC_PREFIX_DEFAULT, since we don't want to override the | |
4382 default setting anyway. | |
4383 | |
3082 | 4384 Tue Aug 26 13:30:36 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4385 | |
4386 * octave-bug.in: CC bug report to user if $USER or $LOGNAME is set. | |
4387 | |
4388 Mon Aug 25 11:06:54 1997 John W. Eaton <jwe@bevo.che.wisc.edu> | |
4389 | |
4390 * octave-bug.in: Avoid clobbering existing dead bug report files | |
4391 by numbering them. | |
4392 | |
3081 | 4393 Wed Aug 13 20:34:14 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4394 | |
4395 * emacs/octave-mod.el (octave-before-magic-comment-p): New function. | |
4396 (calculate-octave-indent, octave-comment-indent): Use it. | |
4397 | |
3079 | 4398 Sun Aug 3 15:33:18 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4399 | |
4400 * info: Delete subdirectory. | |
4401 * Makefile.in (TARGETS, help): Delete info. | |
4402 * octMakefile.in (DISTSUBDIRS, BINDISTSUBDIRS): Delete info | |
4403 (binary-dist): Don't strip info/info. | |
4404 * install-octave: Don't install info. | |
4405 * configure.in: Don't run configure in info subdirectory. | |
4406 | |
4407 Fri Jul 25 14:05:15 1997 John W. Eaton <jwe@bevo.che.wisc.edu> | |
4408 | |
4409 * aclocal.m4 (OCTAVE_FLIBS): Avoid adding -lcrt0.o to FLIBS. | |
4410 | |
3074 | 4411 Thu Jul 17 13:31:08 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4412 | |
4413 * aclocal.m4 (OCTAVE_FLIBS): Only accept an ld_run_path that is | |
4414 absolute. | |
4415 | |
3069 | 4416 Wed Jul 9 19:27:38 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4417 | |
4418 * configure.in: Also check for getwd. | |
4419 | |
4420 Tue Jul 8 17:47:11 1997 John W. Eaton <jwe@bevo.che.wisc.edu> | |
4421 | |
4422 * aclocal.m4 (OCTAVE_FLIBS): Avoid grabbing an argument starting | |
4423 with a - as an option for another argument. | |
4424 | |
4425 Wed Jul 2 21:34:15 1997 John W. Eaton <jwe@bevo.che.wisc.edu> | |
4426 | |
4427 * emacs/octave-mod.el (octave-auto-indent): New variable. | |
4428 (octave-electric-semi, octave-electric-space): Use it. | |
4429 | |
3065 | 4430 Thu Jun 26 22:16:59 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4431 | |
4432 * configure.in: Only set GCC_IEEE_FP_FLAG to -mieee-fp on Intel | |
4433 systems if it seems to work. | |
4434 | |
3060 | 4435 Mon Jun 23 09:16:56 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4436 | |
4437 * configure.in (BOUNDS_CHECKING): Fix comment, allow bounds | |
4438 checking to be enabled. | |
4439 | |
3059 | 4440 Fri Jun 20 14:26:17 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4441 | |
4442 * configure.in: Define SH_LD, SH_LDFLAGS, and RLD_FLAG for | |
4443 sparc-sun-sunos4*. | |
4444 | |
4445 * mkoctfile.in: Handle --strip. | |
4446 | |
3053 | 4447 Sun Jun 15 16:24:03 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4448 | |
4449 * octMakefile.in (DISTSUBDIRS): Delete readline. | |
4450 (BINDISTSUBDIRS): Delete readline and kpathsea. | |
4451 (DISTDIRS): Add readline. | |
4452 | |
3051 | 4453 Wed Jun 11 16:28:36 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4454 | |
4455 * mkoctfile.in: Allow more options, support for C and Fortran | |
4456 source, existing object files, etc. Based on patch from Guido | |
4457 Dietz <guido@aia009.aia.RWTH-Aachen.De>. | |
4458 | |
3041 | 4459 Fri Jun 6 15:20:42 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4460 | |
3049 | 4461 * mkoctfile.in: Use eval to invoke compilation and linking |
4462 commands. | |
4463 | |
3044 | 4464 * octMakefile.in (dist, binary-dist): Don't worry about npsol or qpsol. |
4465 * configure.in: Don't create libcruft/fsqp/Makefile, | |
4466 libcruft/npsol/Makefile, or libcruft/qpsol/Makefile. | |
4467 | |
4468 * octMakefile.in (DISTFILES): Don't distribute MAKEINFO.PATCH. | |
4469 | |
4470 * octMakefile.in (DISTFILES): Don't distribute README.NLP. | |
4471 * configure.in: Delete checks for FSQP, NPSOL, and QPSOL. | |
4472 * acconfig.h: Delete undefs for FSQP, NPSOL, and QPSOL. | |
4473 | |
3041 | 4474 * readline: Update to new version (2.1). |
4475 | |
3029 | 4476 Thu Jun 5 01:38:04 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4477 | |
3036 | 4478 * configure.in (SONAME_FLAGS): Define for some systems. |
4479 * Makeconf.in: Substitute value here. | |
4480 | |
3034 | 4481 * Makeconf.in (STATIC_LIBS): New variable. |
4482 * configure.in: Handle --enable-static. | |
4483 | |
3029 | 4484 * Makeconf.in (LIBEXT, SHLEXT_VER): New macros. |
4485 (octlibdir, mk-libdir-link): Delete. | |
4486 | |
3024 | 4487 Wed Jun 4 00:07:29 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4488 | |
3025 | 4489 * Makeconf.in (mk-includedir-link, mk-libdir-link): Make them work. |
4490 | |
3024 | 4491 * configure.in (OCTAVE_PROGRAM_INVOCATION_NAME): Delete check. |
4492 * aclocal.m4 (OCTAVE_PROGRAM_INVOCATION_NAME): Delete macro. | |
4493 | |
3012 | 4494 Mon Jun 2 13:56:26 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4495 | |
4496 * configure.in: Move checks for RANLIB, AR, and ARFLAGS before | |
4497 checks for libf2c. | |
4498 | |
3008 | 4499 Fri May 30 14:59:59 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4500 | |
4501 * configure.in: Fix typo in check for $with_f77. | |
4502 | |
3004 | 4503 Thu May 22 16:48:34 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4504 | |
4505 * configure.in (AC_OUTPUT): Remove duplicate entry for emacs/Makefile. | |
4506 | |
4507 * octMakefile.in (INSTALL_SUBDIRS): New macro. | |
4508 (install): Use it. | |
4509 | |
4510 * kpathsea: Update to new version (3.0). | |
4511 | |
4512 * readline: Update to new version (2.1-beta2). | |
4513 | |
2993 | 4514 Wed May 21 16:33:33 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4515 | |
4516 * octMakefile.in (install, install-strip): Append version | |
4517 information to octave-bug and mkoctfile. | |
3004 | 4518 (install, install-strip): Remove octave-bug and mkoctfile first. |
4519 Ensure link is made in include directory. | |
2993 | 4520 |
4521 * configure.in (octlibdir): New variable. | |
4522 * Makeconf.in: Substitute it here. | |
4523 (do-subst-config-vals): Add -I${octincludedir} to INCFLAGS. | |
4524 Add -L${octlibdir} to LIBFLAGS. | |
4525 | |
4526 * Makeconf.in (mk-includedir-link, mk-libdir-link): New macros. | |
4527 | |
2930 | 4528 Mon May 5 00:58:00 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4529 | |
4530 * configure.in: Make --enable-readline work again. | |
4531 * Makeconf.in: Ditto. | |
4532 | |
2862 | 4533 Tue Apr 8 12:38:18 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4534 | |
4535 * mkoctfile.in: Do substitute SH_LD and SH_LDFLAGS. Don't | |
4536 substitute or use LIBFLAGS, RLD_FLAG, OCTAVE_LIBS, FLIBS, LEXLIB, | |
4537 TERMLIBS, LIBS, LDFLAGS, LIBPLPLOT, or LIBDLFCN. Use $SH_LD and | |
4538 $SH_LDFLAGS, not $CXX -shared. | |
4539 | |
4540 * Makeconf.in (do-subst-config-vals): Also substitute SH_LD and | |
4541 SH_LDFLAGS. | |
4542 | |
2854 | 4543 Fri Mar 28 16:53:08 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4544 | |
2855 | 4545 * configure.in: Don't add -fpe1 to FFLAGS on Alpha OSF/1 systems |
4546 unless we are also using a version of gcc that appears to support | |
4547 IEEE floating point. | |
4548 | |
2854 | 4549 * aclocal.m4 (OCTAVE_FLIBS): Require OCTAVE_HOST_TYPE. |
4550 Skip -lkernel32 on cygwin32 systems. | |
4551 | |
2845 | 4552 Wed Mar 26 17:04:11 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4553 | |
4554 * COPYING: Update to latest version that includes correct address | |
4555 for the FSF. | |
4556 | |
2831 | 4557 Tue Mar 25 21:46:49 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4558 | |
4559 * aclocal.m4 (OCTAVE_CXXLIBS): Delete macro definition. | |
4560 * configure.in, mkoctfile.in, Makeconf.in, octave-bug.in: | |
4561 Delete use of OCTAVE_CXXIBS. | |
4562 | |
2812 | 4563 Thu Mar 13 11:44:46 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4564 | |
2813 | 4565 * configure.in: Move extra checks for Fortran compiler above |
4566 checks for dynamic linking and shared library stuff. | |
4567 Handle --with-f77. Check for Fortran compiler compatibility, even | |
4568 if using g77. Handle --enable-picky-flags. | |
4569 | |
4570 * configure.in: Don't set special PIC options on SGI systems, | |
4571 since PIC is apparently the default. | |
4572 | |
4573 * aclocal.m4 (OCTAVE_CHECK_EXCLUSIVE_WITH_OPTIONS, | |
4574 OCTAVE_HOST_TYPE, OCTAVE_SET_DEFAULT): New macros. | |
4575 * configure.in: Use them. | |
4576 | |
2812 | 4577 * octMakefile.in (distclean): Don't remove configure, config.h.in, |
4578 BUGS, or INSTALL.OCTAVE. | |
4579 | |
2811 | 4580 Wed Mar 12 16:56:56 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4581 | |
4582 * Makefile.in (install-strip): Don't try to set INSTALL_PROGRAM here. | |
4583 | |
4584 * emacs/Makefile.in (install-strip): New target. | |
4585 * dlfcn/Makefile.in: Ditto. | |
4586 * examples/Makefile.in: Ditto. | |
4587 | |
2800 | 4588 Sun Mar 9 03:44:33 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4589 | |
4590 * config.h.bot (STATIC_CAST): Delete definition. | |
4591 | |
9501 | 4592 Thu Mar 6 03:26:41 1997 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at> |
2793 | 4593 |
2794 | 4594 * emacs/octave-hlp.el: Provide octave-hlp. |
4595 * emacs/octave-inf.el: Provide octave-inf. | |
2793 | 4596 |
2794 | 4597 * examples/info-emacs-octave-help: Require octave-hlp instead of |
4598 loading it. | |
2793 | 4599 |
9501 | 4600 Tue Mar 4 12:19:24 1997 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at> |
2788 | 4601 |
2794 | 4602 * emacs/octave-mod.el: Properly indent switch statement. |
2788 | 4603 |
2787 | 4604 Mon Mar 3 15:44:42 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4605 | |
4606 * dlfcn/Makefile.in (DISTFILES): Add ftp-site. | |
4607 | |
2779 | 4608 Sat Mar 1 15:23:14 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
2775 | 4609 |
2783 | 4610 * configure.in: Improve checks for gettimeofday. |
4611 | |
2775 | 4612 * Version 2.0.5 released. |
4613 | |
2779 | 4614 Sat Mar 1 01:34:08 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4615 | |
2783 | 4616 * octMakefile.in (dist): Also delete CVS junk |
4617 | |
2775 | 4618 * config.h.bot: Unconditionally define WITH_KPATHSEARCH. |
4619 | |
2762 | 4620 Fri Feb 28 01:56:52 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4621 | |
2775 | 4622 * emacs/octave-mod.el (octave-end-keywords): Add endswitch. |
4623 (octave-end-keywords): Add otherwise and case. | |
4624 (octave-else-keywords): Add switch. | |
4625 (octave-abbrev-table): Add abbrevs for all of them. | |
4626 | |
2762 | 4627 * configure.in (f77_rules_frag): Set default value to /dev/null |
4628 and redfine as needed. | |
4629 (bsd_gcc_kluge_targets_frag): Likewise. | |
4630 | |
2749 | 4631 Wed Feb 26 12:17:05 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4632 | |
4633 * octMakefile.in (maintainer-clean): Delete some more stuff. | |
4634 | |
2715 | 4635 Fri Feb 21 20:38:25 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4636 | |
4637 * Makeconf.in (do-subst-config-vals): Remove extra -L from | |
4638 RLD_FLAG substitution. | |
4639 | |
2709 | 4640 Thu Feb 20 02:58:05 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4641 | |
4642 * Version 2.0.4 released. | |
2707 | 4643 |
4644 * configure.in (SH_LDFLAGS): Add -fPIC for HP-UX. | |
4645 | |
2693 | 4646 Tue Feb 18 09:22:04 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
2689 | 4647 |
2702 | 4648 * configure.in (SH_LDFLAGS): Fix typo in last change. |
4649 (RLD_FLAG): Don't forget to put -shared in SH_LDFLAGS for alpha | |
4650 systems. | |
4651 | |
2690 | 4652 * Version 2.0.3 released. |
4653 | |
2693 | 4654 Tue Feb 18 00:33:36 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4655 | |
2690 | 4656 * octMakefile.in (binary-dist): Strip src/octave and info/info. |
4657 | |
2689 | 4658 * examples/oregonator.m, examples/oregonator.cc: New files. |
4659 * examples/Makefile.in (SOURCES): Add them to the list. | |
4660 | |
2682 | 4661 Fri Feb 14 14:07:08 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4662 | |
2686 | 4663 * install-octave: Don't fail if LIBRARIES file is missing. |
4664 Don't try to install .oct files if there aren't any. | |
4665 | |
2682 | 4666 * octMakefile.in (bin-dist-type): Delete target. |
4667 (binary-dist): Don't depend on bin-dist-type. | |
4668 Don't delete config.status or config.h here. | |
4669 (BINDISTFILES): Include config.status and config.h here. | |
2684 | 4670 (dist): Don't delete Makefile here. |
2685 | 4671 (binary-dist): Avoid empty chmod command. |
2682 | 4672 |
4673 * Makefile.in (config-check): New target. | |
4674 (all): Depend on config-check. | |
4675 (static-binary-distribution, dynamic-binary-distribution): Delete. | |
4676 (binary-distribution): If in source directory, run configure and | |
4677 make with appropriate args. | |
4678 | |
4679 * octMakefile.in (maintainer-clean, distclean): Don't delete Makefile. | |
4680 (CONF_DISTFILES): Distribute Makefile too. | |
4681 | |
2674 | 4682 Thu Feb 13 16:25:09 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4683 | |
2676 | 4684 * configure.in (SH_LD, SH_LDFLAGS): New variables. |
4685 * Makeconf.in: Substitute them. | |
4686 | |
4687 * configure.in (SH_LIBS, SH_FLIBS, SH_TERMLIBS): Delete. | |
4688 | |
4689 * Makeconf.in (SH_LIBS, SH_FLIBS, SH_TERMLIBS): Delete. | |
4690 | |
2674 | 4691 * octave-bug.in: Reinstate RLD_FLAG. |
4692 * mkoctfile.in: Likewise. | |
4693 * Makeconf.in: Likewise. | |
4694 | |
4695 * configure.in: Reinstate RLD_FLAG, but make it optional. | |
4696 | |
2662 | 4697 Tue Feb 4 14:10:35 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4698 | |
4699 * octMakefile.in (binary-dist): Use find and xargs instead of | |
2666 | 4700 requiring chmod to support X. |
2662 | 4701 |
2661 | 4702 Mon Feb 3 23:51:08 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4703 | |
4704 * examples/info-emacs-octave-help: Update from Kurt Hornik. | |
4705 | |
4706 Fri Jan 31 20:41:15 1997 John W. Eaton <jwe@bevo.che.wisc.edu> | |
4707 | |
4708 * dlfcn/Makefile.in (all): Make libdlfcn.a, not dlfcn.a. | |
4709 | |
2642 | 4710 Wed Jan 29 00:18:55 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4711 | |
2647 | 4712 * Makeconf.in: Use -M instead of -MM to generate dependencies. |
4713 Don't strip $(srcdir) from output. | |
4714 | |
2645 | 4715 * examples/Makefile.in (install): Install info-emacs-info and |
4716 info-emacs-octave-help in $(archlibdir). | |
4717 | |
2642 | 4718 * configure.in (INSTALL_SCRIPT): Substitute this in Makefiles. |
4719 * octMakefile.in (INSTALL_SCRIPT): New macro. | |
4720 (install): Use it. | |
4721 * Makefile.in (install-strip): New target. | |
4722 | |
2638 | 4723 Tue Jan 28 09:48:32 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4724 | |
2642 | 4725 * aclocal.m4 (OCTAVE_FLIBS): Don't look for values-X*.o. This is |
4726 apparently added automatically now by gcc. Don't put space | |
4727 between -L and directory name. | |
4728 | |
2640 | 4729 * Makefile.in (help): New target. |
4730 (header-msg): extract from all. | |
4731 (all, help): Depend on header-msg. | |
4732 | |
2638 | 4733 * aclocal.m4 (ld_run_path): Fix typo in last fix. |
4734 | |
2629 | 4735 Mon Jan 27 00:10:10 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4736 | |
2634 | 4737 * Version 2.0.2 released. |
4738 | |
2630 | 4739 * configure.in: Add check for usleep(). |
2633 | 4740 (bsd_gcc_kluge_targets_frag): New fragment. |
4741 | |
2629 | 4742 * Makefile.in: Delete `internal' targets. |
4743 (static-binary-dist, dynamic-binary-dist): Special cases. | |
4744 | |
4745 * octMakefile.in (static-binary-dist, dynamic-binary-dist): | |
4746 New targets. | |
4747 (binary-dist, bin-dist): Delete. | |
4748 | |
2626 | 4749 Sun Jan 26 19:39:51 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4750 | |
4751 * emacs/Makefile.in: New file. | |
4752 * configure.in: create emacs/Makefile. | |
4753 * octMakefile.in: Move/add emacs dir to the appropriate lists. | |
4754 | |
2624 | 4755 Sat Jan 25 22:27:14 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4756 | |
2626 | 4757 * aclocal.m4 (OCTAVE_CHECK_TYPE): New macro, stolen from bash. |
4758 * configure.in: Use it. | |
4759 * acconfig.h: Add #undef for sigset_t. | |
4760 | |
2625 | 4761 * configure.in (RLD_FLAG): Delete. |
4762 * mkoctfile.in (RLD_FLAG): Delete. | |
4763 * octave-bug.in (RLD_FLAG): Delete. | |
4764 * Makeconf.in (RLD_FLAG): Delete. | |
4765 | |
2624 | 4766 * Makefile.in (bin-dist): New target. |
4767 | |
4768 * install-octave: Rename from doinstall.sh. Update for 2.x. | |
4769 | |
2621 | 4770 Wed Jan 22 11:14:07 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4771 | |
4772 * aclocal.m4 (ld_run_path): Anchor search at beginning of line to | |
4773 avoid GNU sed bug on HP-UX systems. Use just one sed command. | |
4774 | |
4775 * emacs/octave-hlp.el, emacs/octave-inf.el, emacs/octave-mod.el: | |
4776 New files from Kurt Hornik. | |
4777 * emacs/octave.el: Delete. | |
4778 | |
2610 | 4779 Mon Jan 20 11:16:21 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4780 | |
2613 | 4781 * mkoctfile.in (ALL_CXXFLAGS): Delete reference to -lg++. |
4782 | |
2610 | 4783 * configure.in (RLD_FLAG): For sparc-sun-sunos4*, remove space |
4784 between -L and $(libdir). | |
2613 | 4785 (FPICFLAG): If using g77, set it to -fPIC. |
2610 | 4786 |
4787 Sun Jan 19 15:57:20 1997 John W. Eaton <jwe@bevo.che.wisc.edu> | |
4788 | |
4789 * Makeconf.in, configure.in: Delete FUGLY. | |
4790 | |
2605 | 4791 Wed Jan 8 23:12:02 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4792 | |
4793 * configure.in (DEFAULT_PAGER): On cygwin32 systems, also look for | |
4794 more.com. | |
4795 | |
2602 | 4796 Tue Jan 7 00:16:35 1997 John W. Eaton <jwe@bevo.che.wisc.edu> |
4797 | |
4798 * Version 2.0.1 released. | |
4799 | |
2600 | 4800 Thu Dec 19 16:18:59 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
4801 | |
4802 * aclocal.m4 (OCTAVE_FLIBS): Only add -Xlinker args if compiler is | |
4803 gcc. | |
4804 | |
2593 | 4805 Sat Dec 14 09:46:50 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
4806 | |
4807 * README.Linux: New file. | |
4808 * octMakefile.in: Distribute it. | |
4809 | |
2592 | 4810 Fri Dec 13 22:37:49 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
4811 | |
4812 * configure.in (TERMLIBS): Look for termcap and terminfo after | |
4813 ncurses and curses. | |
4814 | |
2588 | 4815 Thu Dec 12 02:27:08 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
4816 | |
2592 | 4817 * Makeconf.in (ALL_LDFLAGS): Add CPICFLAG here since gcc needs it |
4818 on some systems. | |
4819 | |
4820 * configure.in (FPICFLAGS): Set to -fPIC if using g77 on HP/UX. | |
4821 | |
2588 | 4822 * Makefile.in, octMakefile.in: Delete all doc-dist, local-dist, |
4823 and split-dist targets. Likewise for all other Makefiles in the | |
4824 subdirectories. | |
4825 | |
4826 * README.Windows: Renamed from README.WINDOWS. | |
4827 | |
2583 | 4828 Tue Dec 10 01:33:52 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
4829 | |
4830 * Version 2.0 released. | |
4831 | |
4832 * octMakefile.in (binary-dist): Print message instead of making a | |
4833 binary distribution. | |
4834 | |
2575 | 4835 Mon Dec 9 11:28:27 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
4836 | |
2578 | 4837 * README.WINDOWS: New file. |
4838 * octMakefile.in: Distribute it. | |
4839 | |
2577 | 4840 * configure.in: Substitute EXE. On cygwin32 systems, set it to .exe. |
4841 * Makeconf.in (EXE): Add definition. | |
4842 | |
4843 * configure.in: On cygwin32 systems, set default to disable GNU info. | |
4844 | |
2575 | 4845 * aclocal.m4 (OCTAVE_STRING_NPOS): New macro. |
4846 * configure.in: Call it. | |
2577 | 4847 |
2575 | 4848 * acconfig.h: Add undef for NPOS. |
4849 * config.h.bot: Remove kluge for deciding whether to define NPOS. | |
4850 | |
2562 | 4851 Thu Dec 5 11:05:02 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
4852 | |
2567 | 4853 * config.sub: Update to current version from FSF. |
4854 | |
2566 | 4855 * Makeconf.in (ALL_LDFLAGS): Add $(FORTRAN_MAIN_FLAG). |
4856 * configure.in (FORTRAN_MAIN_FLAG): Substitute it. | |
4857 | |
2564 | 4858 * octave-bug.in: Prompt for abort, edit, list, or send. |
4859 Get subject from message in case it has been edited. | |
4860 | |
2562 | 4861 * configure.in: When looking for libf2c, provide definitions for |
2566 | 4862 MAIN_ and MAIN__. |
2562 | 4863 |
2560 | 4864 Tue Dec 3 11:35:35 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
4865 | |
4866 * config.guess: Delete second copy of script in file. | |
4867 | |
2558 | 4868 Sun Nov 24 21:40:25 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
4869 | |
4870 * configure.in: Set GCC_IEEE_FP_FLAG to -mieee-fp on all x86 | |
4871 systems, not just those running Linux. | |
4872 | |
4873 Fri Nov 22 15:10:34 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
4874 | |
4875 * emacs/octave.el: Update from Kurt Hornik to with fixes for | |
4876 fill-paragraph. | |
4877 | |
2548 | 4878 Wed Nov 20 00:33:03 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
4879 | |
2554 | 4880 * Version 1.93. |
4881 | |
2548 | 4882 * aclocal.m4 (OCTAVE_STRUCT_GR_PASSWD): New macro. |
4883 * configure.in: Use it. | |
4884 * acconfig.h (HAVE_GR_PASSWD): Add undef. | |
4885 | |
2546 | 4886 Tue Nov 19 23:10:01 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
4887 | |
4888 * Makeconf.in (INCFLAGS): Add libcruft/misc directory. | |
4889 | |
2512 | 4890 Thu Nov 14 00:07:31 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
4891 | |
2520 | 4892 * emacs/octave.el (octave-text-functions): Change set and show to |
4893 gset and gshow. | |
4894 | |
2518 | 4895 * Makeconf.in (TEXI2DVI): Define to be our own private version. |
4896 | |
4897 * texi2dvi: New file. | |
4898 * octMakefile.in (DISTFILES): Add it to the list. | |
4899 | |
2515 | 4900 * configure.in: Don't substitute values in src/mk-oct-links.in. |
4901 | |
2513 | 4902 * emacs/octave.el: Update to version 0.8.6, from Kurt Hornik. |
4903 | |
2512 | 4904 * configure.in (RLD_FLAG): Surround case pattern in changequote. |
4905 | |
4906 * Version 1.92. | |
4907 | |
2508 | 4908 Wed Nov 13 11:04:26 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
4909 | |
2512 | 4910 * configure.in: Don't set or substitute LIBINFO. |
4911 (infofile): Set and substitute a default value. | |
4912 | |
4913 * Makeconf.in (do-subst-default-values): Substitute it here. | |
4914 | |
2508 | 4915 * configure.in: If running on an SCO system, define SCO, and force |
4916 HAVE_ISINF and HAVE_ISNAN to be defined. | |
4917 Also check for ieeefp.h and nan.h. | |
2510 | 4918 * acconfig.h (HAVE_ISINF, HAVE_ISNAN, SCO): Add undefs. |
2508 | 4919 |
2503 | 4920 Tue Nov 12 21:50:49 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
4921 | |
2506 | 4922 * MAKEINFO.PATCH: Update to use patch relative to texinfo-3.9. |
4923 | |
4924 * INFO.PATCH: New file. | |
4925 * octMakefile.in (DISTFILES): Add it. | |
4926 | |
2503 | 4927 * info: Update to current release from texinfo-3.9. |
4928 | |
2497 | 4929 Mon Nov 11 23:56:58 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
4930 | |
4931 * config.h.bot: Only check value of __GNUC__ and __GNUC_MINOR__ if | |
4932 __GNUC__ is defined. | |
4933 | |
2488 | 4934 Fri Nov 8 11:15:07 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
4935 | |
4936 * Makeconf.in (version): Look in $(TOPDIR)/src then | |
4937 $(srcdir)/$(TOPDIR)/src for version.h. | |
4938 | |
4939 * configure.in (TERMLIBS): Print warning message if no term | |
4940 library is found. | |
4941 (CXXLIB_LIST, CXXLIB_PATH, FLIB_LIST, FLIB_PATH): Delete. | |
4942 * Makeconf.in (CXXLIB_LIST, CXXLIB_PATH, FLIB_LIST, FLIB_PATH): | |
4943 Delete. | |
4944 (do-subst-default-vals): Delete CXXLIB_LIST, CXXLIB_PATH, | |
4945 FLIB_LIST, and FLIB_PATH from the list. | |
4946 | |
2482 | 4947 Thu Nov 7 12:43:36 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
4948 | |
2485 | 4949 * octMakefile.in (bin-dist-tar): Delete references to octtopnm. |
4950 | |
2484 | 4951 * configure.in (RLD_FLAG): Define if x86-linux. |
4952 | |
2482 | 4953 * Version 1.91. |
4954 | |
2475 | 4955 Wed Nov 6 16:26:39 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
4956 | |
4957 * configure.in: Add checks for group stuff. | |
4958 | |
2469 | 4959 Tue Nov 5 12:32:30 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
4960 | |
2472 | 4961 * configure.in: Add checks for geteuid, getuid. |
4962 | |
2471 | 4963 * configure.in: Comment out code to handle --enable-readline since |
4964 it doesn't work yet. | |
4965 | |
2469 | 4966 * aclocal.m4 (OCTAVE_SIGNAL_CHECK, OCTAVE_REINSTALL_SIGHANDLERS): |
4967 New checks stolen from bash 2.0 config. | |
4968 * configure.in: Use them. | |
2471 | 4969 |
2469 | 4970 * acconfig.h: Add #undefs for HAVE_BSD_SIGNALS, HAVE_POSIX_SIGNALS, |
4971 HAVE_USG_SIGHOLD, and MUST_REINSTALL_SIGHANDLERS. | |
4972 | |
4973 Mon Nov 4 11:31:22 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
4974 | |
4975 * configure.in: Check for gethostname in libsocket. Apparently | |
4976 needed for some SCO systems. | |
4977 | |
4978 * emacs/octave.el: Update to version 0.8.5 from Kurt Hornik. | |
4979 | |
2454 | 4980 Fri Nov 1 01:33:40 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
4981 | |
4982 * octMakefile.in (octave-bug, mkoctfile): After substituting | |
4983 values, chmod a+rx. | |
4984 | |
2452 | 4985 Thu Oct 31 13:50:06 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
4986 | |
4987 * octMakefile.in (DISTFILES): Add NEWS.[0-9]. | |
2453 | 4988 * NEWS.1: Old news. |
4989 * NEWS: Just keep news since last major release. | |
2452 | 4990 |
2439 | 4991 Wed Oct 30 01:04:13 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
4992 | |
2452 | 4993 * Version 1.90. |
4994 | |
2450 | 4995 * configure.in: Default is now no internal bounds checking. |
4996 | |
2446 | 4997 * Makefile.in (all): Fix message to say 2.7.2, not 2.7.0. |
4998 | |
2445 | 4999 * config.h.bot (GCC_ATTR_NORETURN): Rename from NORETURN. |
5000 (GCC_ATTR_UNUSED): Rename from GCC_ATTRIBUTE_UNUSED. | |
5001 (NPOS): Define if using gcc 2.8.x or later. | |
5002 | |
2439 | 5003 * octMakefile.in (DIRS_TO_MAKE): Add localarchlibdir to list. |
5004 | |
5005 * configure.in (localarchlibdir): New variable. | |
5006 * Makeconf.in (localarchlibdir): Substitute it. | |
5007 (do-subst-default-vals): Likewise. | |
5008 | |
5009 Sun Oct 27 14:03:36 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5010 | |
5011 * Makeconf.in (do-subst-config-vals): Split into two sed commands | |
5012 to try to avoid fixed limits in some seds and/or systems. | |
5013 | |
2427 | 5014 Fri Oct 25 01:13:45 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
5015 | |
2428 | 5016 * config.h.bot: Add definition for GCC_ATTRIBUTE_UNUSED. |
5017 | |
2427 | 5018 * configure.in: Define RUSAGE_TIMES_ONLY if cygwin32. |
2429 | 5019 * acconfig.h: Add undef. |
2427 | 5020 |
5021 Thu Oct 24 21:17:53 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5022 | |
5023 * config.guess: Update to version that understands what to do for | |
5024 cygwin32 systems. | |
5025 | |
2421 | 5026 Fri Oct 18 12:23:57 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
5027 | |
5028 * configure.in: Don't comment out substitutions for plplot stuff. | |
5029 | |
2418 | 5030 Wed Oct 16 12:01:37 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
5031 | |
5032 * examples/Makefile.in (install): New target. | |
5033 | |
2415 | 5034 Tue Oct 15 14:40:51 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
5035 | |
5036 * configure.in: Comment out plplot stuff. | |
2417 | 5037 In commands to get gxx_version and gcc_version, use simpler sed |
5038 command to avoid confusing brain-dead vendor-supplied seds. | |
5039 | |
2405 | 5040 Mon Oct 14 11:09:12 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
5041 | |
5042 * octMakefile.in (maintainer-clean distclean): Remove mkoctfile too. | |
5043 (kpathsea.info): New target. | |
5044 (dist-info-files): New target. | |
5045 (links-for-dist, links-for-bin-dist, local-dist-tar): | |
5046 Depend on dist-info-files instead of individual files. | |
5047 | |
2391 | 5048 Sat Oct 12 00:17:06 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
5049 | |
2398 | 5050 * examples/Makefile.in (clean, mostlyclean): New targets. |
5051 | |
2394 | 5052 * octMakefile.in (CLEANSUBDIRS): New macro. |
5053 Use it for clean targets. | |
5054 | |
2391 | 5055 * config.h.bot (STATIC_CAST, DYNAMIC_CAST, REINTERPRET_CAST): |
5056 New macros. | |
5057 | |
5058 Wed Sep 25 12:24:20 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5059 | |
5060 * configure.in: Don't look in /usr/ucb/include to find getrusage | |
5061 on Solaris systems since that just seems to cause trouble. | |
5062 * Makeconf.in (UCB_INCFLAGS): Delete. | |
5063 | |
5064 Fri Aug 30 09:07:23 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5065 | |
5066 * configure.in (TERMLIBS): Add check for ncurses. | |
5067 | |
2357 | 5068 Tue Aug 20 21:40:26 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
5069 | |
5070 * configure.in: Always set FPICFLAG, CPICFLAG, CXXPICFLAG, SHLEXT, | |
5071 RLD_FLAG, DLFCN_DIR, even if SHARED_LIBS is false. | |
5072 | |
2353 | 5073 Thu Aug 15 14:39:07 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
5074 | |
5075 * configure.in (gxx_version, gcc_version): Strip out cygnus- from | |
5076 the version number. | |
5077 | |
2351 | 5078 Tue Jul 30 12:55:43 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
5079 | |
5080 * aclocal.m4 (OCTAVE_FLIBS): Also check for -bI:FILE arg to ld, | |
5081 for AIX systems. | |
5082 | |
2346 | 5083 Thu Jul 25 03:09:29 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
5084 | |
5085 * configure.in: On AIX systems, add "-ll -lld" to LIBDLFCN. | |
5086 | |
2337 | 5087 Fri Jul 19 13:02:05 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
5088 | |
5089 * configure.in: If using g77 on alpha, don't add -fpe1 to FFLAGS. | |
5090 | |
2330 | 5091 Mon Jul 15 14:26:48 1996 John W. Eaton <jwe@bevo.che.wisc.edu> |
5092 | |
5093 * config.sub: Update to new version from FSF (gcc sources). | |
5094 | |
5095 Thu Jun 13 16:38:51 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5096 | |
5097 * configure.in: Look for g77 before other fortran compilers. | |
5098 | |
5099 Thu Jun 6 00:05:47 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5100 | |
5101 * configure.in: Add check for multiple plot windows in gnuplot. | |
5102 * acconfig.h: Add #undef for GNUPLOT_HAS_FRAMES. | |
5103 | |
5104 Wed May 22 15:05:40 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5105 | |
5106 * configure.in (UCB_INCFLAGS): Another kluge to try to find | |
5107 getrusage on Solaris systems. | |
5108 * Makeconf.in Substitute it. | |
5109 | |
5110 * configure.in (SH_LIBS, SH_FLIBS, SH_TERMLIBS): Define. | |
5111 * Makeconf.in: Substitute. | |
5112 | |
9501 | 5113 Wed May 22 02:42:32 1996 Kurt Hornik <Kurt.Hornik@tuwien.ac.at> |
2330 | 5114 |
5115 * emacs/octave.el (octave-indent-new-line): Protect | |
5116 octave-indent-line with save-excursion. | |
5117 (octave-calc-indent-this-line): Attempt to handle end tokens that | |
5118 are not on separate lines. | |
5119 (octave-electric-semi): Make `;' self-insert if inside comment. | |
5120 (octave-previous-line): Don't try to go back past the beginning of | |
5121 the buffer. | |
5122 | |
5123 Tue May 21 23:11:46 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5124 | |
5125 * configure.in (F77): Also check for f90. | |
5126 | |
5127 Mon May 20 12:22:54 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5128 | |
5129 * emacs/octave.el (octave-indent-new-line): Make it do what the | |
5130 docstring says it does. | |
5131 | |
5132 * octave-bug.in: Fix previous change so it also matches things | |
5133 like 1.90, not just 1.1.90. | |
5134 | |
9501 | 5135 Fri May 17 09:58:49 1996 Kurt Hornik <Kurt.Hornik@tuwien.ac.at> |
2330 | 5136 |
5137 * emacs/octave.el (octave-electric-semi): Also call octave-indent-line | |
5138 to indent the current line after inserting a semicolon. | |
5139 | |
5140 Fri May 17 02:53:49 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5141 | |
5142 * octMakefile.in (DIRS_TO_MAKE): Add octincludedir. | |
5143 (all): Add mkoctfile. | |
5144 | |
5145 * configure.in: Don't set values for exec_prefix, bindir, datadir, | |
5146 libdir, libexecdir, includedir, mandir, or infodir, so that they | |
5147 can be set from the configure command line. | |
5148 | |
5149 * configure.in, Makeconf.in: Handle mandir, man1dir and man1ext. | |
5150 Change topincludedir to includedir. Use octincludedir as the | |
5151 subdirectory of includedir where we really install include files. | |
5152 | |
5153 * octave-bug.in (BUGADDR): Also set to octave-maintainers if this | |
5154 looks like a pretest version number. | |
5155 | |
5156 * Makeconf.in (do-subst-config-vals): Use $< instead of | |
5157 referencing $(srcdir) directly. | |
5158 (do-subst-default-vals): Likewise. | |
5159 | |
5160 * octMakefile.in (octave-bug): Depend on octave-bug.in | |
5161 (mkoctfile): Likewise, depend on mkoctfile.in. | |
5162 | |
5163 Thu May 16 11:49:46 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5164 | |
5165 * octMakefile.in (DISTFILES): Add mkoctfile.in. | |
5166 (install): Install mkoctfile too. | |
5167 | |
5168 * aclocal.m4 (OCTAVE_F2C_F77_COMPAT): Fix typo in last change | |
5169 | |
5170 Mon May 13 04:02:29 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5171 | |
5172 * configure.in (UGLY_DEFS): Quote " with more \'s. | |
5173 | |
5174 * Makeconf.in (do-subst-config-vals): Quote substitutions here. | |
5175 * octave-bug.in, mkoctfile: Not here. | |
5176 | |
5177 * octMakefile.in (octave-bug, mkoctfile): Depend on Makeconf, | |
5178 octMakefile. | |
5179 | |
5180 * Makeconf.in (do-subst-default-vals): New definition, from | |
5181 src/Makefile.in. | |
5182 | |
5183 * Makeconf.in (do-subst-config-vals): Define here. | |
5184 * octMakefile.in: Not here. | |
5185 | |
5186 * octave-bug.in: Handle more configuration stuff. | |
5187 | |
5188 * configure.in (config_opts): Set from ac_configure_args and subst. | |
5189 * Makeconf.in: Handle config_opts. | |
5190 * octMakefile.in (do-subst-config-vals): Substitute them. | |
5191 | |
5192 Sun May 12 03:37:55 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5193 | |
5194 * Makeconf.in (TERMLIBS): Substitute here. | |
5195 | |
5196 * configure.in (topincludedir): New variable. | |
5197 * Makeconf.in (libexecdir): Substitute it. | |
5198 | |
5199 * octMakefile.in (do-subst-config-vals): Define new command. | |
5200 (octave-bug): Use it. | |
5201 (mkoctfile): New target. | |
5202 | |
5203 * Makefile.in (TARGETS): Add mkoctfile. | |
5204 | |
5205 * examples: New subdirectory. | |
5206 * octMakefile.in: Add it to the appropriate lists. | |
5207 * configure.in: Create examples/Makefile. | |
5208 | |
5209 * octMakefile.in (DIRS_TO_MAKE): Add $(libdir) here. | |
5210 (install): Use INSTALL_PROGRAM to install octave-bug script. | |
5211 Also install config.h. | |
5212 | |
5213 * aclocal.m4 (OCTAVE_F2C_F77_COMPAT): Provide a definition for | |
5214 MAIN__ on Linux systems. | |
5215 | |
5216 Tue Apr 30 05:44:29 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5217 | |
5218 * configure.in: Handle --enable-bounds-check. | |
5219 * acconfig.h: Add undef for BOUNDS_CHECKING | |
5220 | |
5221 Mon Apr 29 01:42:38 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5222 | |
5223 * configure.in (AC_FUNC_SETVBUF_REVERSED): Delete. Octave doesn't | |
5224 need this check (it was for info, which has its own configure now). | |
5225 | |
5226 Sun Apr 28 05:41:26 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5227 | |
5228 * configure.in (DEFAULT_PAGER): Don't append -e to less here. | |
5229 | |
5230 Sat Apr 27 22:23:51 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5231 | |
5232 * configure.in: Check for pid_t and sys/types.h. | |
5233 | |
5234 Tue Apr 23 17:44:18 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5235 | |
5236 * configure.in: Check for fcntl.h, not sys/fcntl.h. | |
5237 Add checks for various system calls. | |
5238 | |
5239 Sun Apr 7 16:42:54 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5240 | |
5241 * configure.in: Check for strdup. | |
5242 | |
5243 * Makefile.in (TARGETS): Add dlfcn. | |
5244 * octMakefile.in (DISTSUBDIRS): Add dlfcn. | |
5245 (SUBDIRS): Add @DLFCN_DIR@. | |
5246 * configure.in: On AIX systems: set DLFCN_DIR=dlfcn when doing | |
5247 shared libraries, bypass checks for dlopen, etc., set and | |
5248 substitute LIBDLFCN and DLFCN_INCFLAGS. Create dlfcn/Makefile. | |
5249 | |
5250 Sat Apr 6 21:45:40 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5251 | |
5252 * Makeconf.in (%.d : %.cc, %.d : %.c): Add dependency for pic/%.o. | |
5253 | |
5254 Fri Mar 29 13:38:40 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5255 | |
5256 * octMakefile.in (maintainer-clean distclean): Delete mk-oct-links. | |
5257 | |
5258 Wed Mar 27 09:05:01 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5259 | |
5260 * aclocal.m4 (OCTAVE_FLIBS): Fix typo in message. | |
5261 | |
5262 Tue Mar 26 02:41:16 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5263 | |
5264 * configure.in (UGLY_DEFS): Undo previous change. | |
5265 When checking for various libraries, don't check for main(), but | |
5266 instead look for functions that are actually supposed to be in | |
5267 those libraries. | |
5268 Require autoconf 2.9. | |
5269 If using solaris2, don't add /usr/ucblib/libucb.a to LIBS until | |
5270 near the very end, then check for for getrusage and times just | |
5271 after that. | |
5272 | |
5273 * Makeconf.in (UGLY_DEFS): Ditto. | |
5274 | |
5275 * octave-bug.in: Don't send empty bug reports. | |
5276 | |
5277 Sat Mar 23 04:55:46 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5278 | |
5279 * octMakefile.in (DISTDIRS): Omit plplot for now. | |
5280 * Makefile.in (TARGETS): Likewise. | |
5281 | |
5282 Fri Mar 22 06:15:44 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5283 | |
5284 * configure.in: Add checks for sys/times.h and times(). | |
5285 (GCC_IEEE_FP_FLAG): Define this if using gcc 2.8.x or later on | |
5286 Alpha/OSF systems. | |
5287 | |
5288 Wed Mar 20 02:04:08 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5289 | |
5290 * octMakefile.in (octave.info): cd to doc/interpreter, not doc. | |
5291 | |
5292 Sun Mar 3 10:01:13 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5293 | |
5294 * config.h.bot: Define HEAVYWEIGHT_INDEXING here. | |
5295 | |
5296 * Makefile.in (TARGETS): Remove dld. | |
5297 * octMakefile.in (DISTSUBDIRS): Ditto. | |
5298 * configure.in: Don't create dld/Makefile. | |
5299 Do create doc/fac/Makefile, doc/interpreter/Makefile, | |
5300 doc/liboctave/Makefile, and doc/refcard/Makefile. | |
5301 | |
5302 Thu Feb 29 08:55:25 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5303 | |
5304 * Makeconf.in (%.o : %.c): Use pattern rule instead of suffix rule. | |
5305 (%.o : %.cc): Likewise. | |
5306 (pic/%.o : %.c, pic/%.o : %.cc): Use separate rules instead of | |
5307 expecting one rule to generate two output files. | |
5308 * configure.in (f77_rules_frag): Use separate rules here too. | |
5309 | |
5310 Mon Feb 26 03:34:12 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5311 | |
5312 * configure.in: If --disable-dl or --disable-shl, don't check for | |
5313 dynamic linking functions. | |
5314 (includedir): Append version. | |
5315 | |
5316 Wed Feb 14 12:20:57 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5317 | |
5318 * octMakefile.in (snapshot-version): Don't quote version number. | |
5319 | |
5320 * aclocal.m4 (OCTAVE_FLIBS): Avoid setting FLIBS=" ". | |
5321 | |
5322 Sat Feb 10 12:59:22 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5323 | |
5324 * glob/Makefile.in (install): New target. | |
5325 | |
5326 Fri Feb 9 14:00:53 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5327 | |
5328 * configure.in: Fix help text for --enable-shared option. | |
5329 | |
5330 Thu Feb 8 10:17:55 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5331 | |
5332 * octMakefile.in (CONF_DISTFILES): New variable. | |
5333 (DISTFILES): Use it instead of listing things twice. | |
5334 (CONF_DISTSUBDIRS): New variable. | |
5335 (conf-dist): New target. | |
5336 | |
5337 * Makefile.in (TARGETS): Add conf-dist. | |
5338 | |
5339 * configure.in (CXX_VERSION, CC_VERSION): Substitute them. | |
5340 * octMakefile.in (octave-bug): Substitute them here too. | |
5341 * octave-bug.in: Put them in the configuration message. | |
5342 | |
5343 Sat Feb 3 08:53:56 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5344 | |
5345 * configure.in: RLD_FLAG should be empty by default, but give it a | |
5346 value for alpha-dec-osf* systems. | |
5347 | |
5348 Fri Feb 2 23:03:40 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5349 | |
5350 * Makeconf.in: Actually do add substitutions for FPICFLAG, | |
5351 CPICFLAG, and CXXPICFLAG. | |
5352 | |
5353 Thu Feb 1 14:58:16 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5354 | |
5355 * configure.in (%.c : %.f): Fix typo. | |
5356 | |
5357 Wed Jan 24 14:47:58 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5358 | |
5359 * configure.in: Also configure in glob subdirectory. | |
5360 Make pattern rule say how to make .o from .f, not .f from .o. Duh. | |
5361 | |
5362 * octMakefile.in: Add glob stuff to the appropriate lists. | |
5363 * Makeconf.in: Likewise. | |
5364 | |
5365 * aclocal.m4: Add test for program_invocation_name. | |
5366 * configure.in: Use it here. | |
5367 | |
5368 * acconfig.h: Add #undef here. | |
5369 | |
5370 Mon Jan 22 17:32:00 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5371 | |
5372 * configure.in: Add checks for mode_t, off_t, size_t, uid_t, | |
5373 dev_t, ino_t, and nlink_t typedefs. | |
5374 * acconfig.h: Add undefs for dev_t, ino_t, and nlink_t. | |
5375 | |
5376 Sat Jan 20 21:05:49 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5377 | |
5378 * configure.in: For Fortran rules, use pattern rules instead of | |
5379 suffix rules. | |
5380 | |
5381 Fri Jan 19 12:38:23 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5382 | |
5383 * configure.in: When checking for libf2c.a, add -lm and an extra lib. | |
5384 | |
5385 Wed Jan 10 16:36:43 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5386 | |
5387 * configure.i: Add missing colon in .o.f pattern for f2c rules. | |
5388 | |
5389 Mon Jan 8 23:18:39 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5390 | |
5391 * configure.in (AC_PROG_LN_S): New check. | |
5392 * Makeconf.in (LN_S): Substitute it. | |
5393 | |
5394 * configure.in (libexecdir): New variable. | |
5395 (archlibdir, octfiledir, localoctfiledir): Use it instead of libdir. | |
5396 (datadir): Default to $(prefix)/share instead of $(prefix)/lib. | |
5397 | |
5398 * Makeconf.in (libexecdir): Substitute it. | |
5399 | |
5400 * configure.in (localoctfiledir): Use $(libdir), not $(datadir). | |
5401 | |
5402 Sun Jan 7 18:40:00 1996 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5403 | |
5404 * aclocal.m4 (OCTAVE_SMART_PUTENV): New macro, extracted from | |
5405 the kpathsearch library. | |
5406 * configure.in: Call it. | |
5407 | |
5408 Fri Dec 29 22:07:52 1995 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5409 | |
5410 * Makeconf.in (subdir-for-command): New definition for | |
5411 SUBDIR_FOR_COMMAND using GNU Make `foreach' instead of shell `for' | |
5412 command. | |
5413 * libcruft/Makefile.in, scripts/Makefile.in, octMakefile.in: | |
5414 Invoke new definition with `@'. | |
5415 | |
5416 Wed Dec 27 14:27:48 1995 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5417 | |
5418 * octMakefile.in (SUBDIRS): Delete DLD_DIR. | |
5419 (distclean): Delete Makerules.f77. | |
5420 | |
5421 * Makeconf.in (WITH_DLD): Delete variable. | |
5422 | |
5423 * configure.in: Delete support for dynamic linking with dld. | |
5424 | |
5425 * configure.in, Makeconf.in: Use consistent names for WITH_DL, | |
5426 WITH_SHL, OCTAVE_LITE, and SHARED_LIBS | |
5427 | |
5428 * config.h.bot: Undo previous change. | |
5429 * acconfig.h: Add #undef for WITH_DYNAMIC_LINKING. | |
5430 * Makeconf.in: Substitute it here too. | |
5431 * configure.in: Set it here. | |
5432 | |
5433 Tue Dec 26 00:12:14 1995 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5434 | |
5435 * configure.in (AC_CONFIG_SUBDIRS): Delete libcruft. | |
5436 (AC_OUTPUT): List libcruft files here. | |
5437 | |
5438 * configure.in, Makeconf.in: Handle Fortran compilation rules | |
5439 using an included fragment in Makeconf. | |
5440 | |
5441 Mon Dec 25 22:14:21 1995 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5442 | |
5443 * configure.in (CPICFLAG, CXXPICFLAG, FPICFLAG): New variables. | |
5444 * Makeconf.in: Substitute them. | |
5445 | |
5446 * configure.in: Handle --enable-shared option. | |
5447 Handle Fortran source files differently. | |
5448 * Makeconf.in (SHARED_LIBS): Substitute shared_libs. | |
5449 (SHLEXT, RLD_FLAG, fortran_rules_flag): Substitute these too. | |
5450 (.c.o, .cc.o): Handle creating position independent code for | |
5451 shared libraries. | |
5452 | |
5453 Sun Dec 24 00:29:12 1995 John W. Eaton <jwe@bevo.che.wisc.edu> | |
5454 | |
5455 * config.h.bot: Maybe define WITH_DYNAMIC_LINKING. | |
5456 | |
5457 * Makeconf.in (WITH_DL, WITH_SHL): Substitute values. | |
5458 * acconfig.h: Add undefs for WITH_DL and WITH_SHL. | |
5459 * configure.in: Handle --enable-dl and --enable-shl. | |
5460 Check for -ldl and dlopen, dlsym, dlclose, and dlerror. | |
5461 Check for -ldld and shl_load, shl_findsym. | |
5462 (have_fortran_compiler): Quit if no suitable Fortran compiler is | |
5463 found. | |
5464 | |
5465 Fri Nov 3 03:33:42 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
5466 | |
5467 * emacs/octave-mode.el: Rename from octave.el. | |
5468 | |
5469 Wed Oct 11 19:22:12 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
5470 | |
5471 * configure.in (GNUPLOT_BINARY): When checking for multiplot, | |
5472 issue a `set term unknown' command first. | |
5473 | |
5474 Wed Oct 4 01:42:35 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
5475 | |
5476 * config.guess: Add entry for PowerPC Macs running Machten. | |
5477 | |
5478 * octMakefile.in (dist-z): Remove old .gz file before creating new one. | |
5479 | |
5480 Mon Oct 2 19:17:22 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
5481 | |
5482 * configure.in: Check to see if it looks like gnuplot supports | |
5483 multiplot. | |
5484 * acconfig.h: Add undef for GNUPLOT_HAS_MULTIPLOT. | |
5485 | |
5486 * acconfig.h: #undefs for HAVE_FINITE, HAVE_ISNAN, HAVE_ISINF, | |
5487 HAVE_TERMIOS_H, HAVE_TERMIO_H, and HAVE_SGTTY_H removed. This | |
5488 file should only have things that autoheader can't figure out. | |
5489 | |
5490 Sun Oct 1 17:08:37 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
5491 | |
5492 * octMakefile.in (clean-tar): Also omit directories called OLD and | |
5493 files beginning with =. | |
5494 | |
5495 Fri Sep 29 01:04:31 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
5496 | |
5497 * ROADMAP: New file. | |
5498 * (DISTFILES): Include it. | |
5499 | |
5500 * emacs: New subdirectory for Emacs-related stuff. | |
5501 * octMakefile.in (DISTDIRS, BINDISTSUBDIRS): Include emacs. | |
5502 (DISTFILES, BINDISTFILES): Don't include octave-mode.el. | |
5503 | |
5504 Tue Sep 26 03:56:39 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
5505 | |
5506 * configure.in: Don't add -Wno-unused to CFLAGS or CXXFLAGS. | |
5507 * config.h.bot: Remove definition of UNUSED. | |
5508 | |
5509 * config.sub: Replace with current version from FSF. | |
5510 * config.guess: Likewise. | |
5511 | |
5512 Thu Sep 21 20:29:00 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
5513 | |
5514 * configure.in (AR, ARFLAGS): Set defaults for these, but also | |
5515 allow them to come from the environment. | |
5516 * Makeconf.in (AR, ARFLAGS): New variables to substitute. | |
5517 | |
5518 Wed Sep 20 00:51:24 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
5519 | |
5520 * octMakefile.in (maintainer-clean): Also remove Makeconf, | |
5521 config.cache, config.h, and config.log. | |
5522 | |
5523 Tue Sep 19 17:20:32 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
5524 | |
5525 * sighandlers.h [HAVE_SIGACTION && HAVE_SIGPROCMASK && | |
5526 HAVE_SIGPENDING && HAVE_SIGSUSPEND]: #define HAVE_POSIX_SIGNALS. | |
5527 | |
5528 * configure.in: Check for sigaction(), sigprocmask(), | |
5529 sigpending(), and sigsuspend() functions. | |
5530 Don't do anything special about checking for termios.h, termio.h, | |
5531 and sgtty.h. | |
5532 | |
5533 Mon Sep 18 22:39:33 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
5534 | |
5535 * config.h.bot [__GNUC__]: Define NORETURN. | |
5536 | |
5537 Fri Sep 15 05:12:29 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
5538 | |
5539 * configure.in (AC_C_BIGENDIAN): Remove test. | |
5540 | |
5541 Thu Sep 14 02:07:51 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
5542 | |
5543 * configure.in (LIBPLPLOT): Disable plplot by default for now. | |
5544 Check for mkdir, rmdir, rename, and umask. | |
5545 | |
5546 * All Makefile.in files: Convert from realclean to | |
5547 maintainer-clean, for GNU coding standards. | |
5548 | |
5549 * configure.in: Call AC_FUNC_CLOSEDIR_VOID. | |
5550 | |
5551 Wed Sep 13 03:25:37 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
5552 | |
5553 * configure.in: Do check for IEEE functions on the Alpha. | |
5554 | |
5555 Mon Sep 11 19:08:47 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
5556 | |
5557 * configure.in: Call AC_STRUCT_ST_BLKSIZE, AC_STRUCT_ST_BLOCKS, | |
5558 and AC_STRUCT_ST_RDEV. | |
5559 | |
5560 Tue Sep 5 02:02:35 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
5561 | |
5562 * configure.in: Check for sys/param.h and sys/stat.h | |
5563 Use AC_HEADER_TIME, not AC_TIME_WITH_SYS_TIME. | |
5564 Use AC_HEADER_SYS_WAIT. | |
5565 | |
5566 Thu Aug 24 15:35:44 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
5567 | |
5568 * configure.in: Don't set or call AC_SUBST for CXXFLAGS or CFLAGS, | |
5569 and don't call AC_SUBST for LDFLAGS -- autoconf takes care of this. | |
5570 If adding -Wall, add -Wno-unused too. | |
5571 | |
5572 Tue Aug 22 01:37:02 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
5573 | |
5574 * Makefile.in (all): Update message. | |
5575 | |
5576 * config.h.bot: New file. | |
5577 * octMakefile.in (DISTFILES): Add it to the list. | |
5578 | |
5579 * acconfig.h (USE_PLPLOT): Add #undef. | |
5580 | |
5581 Mon Aug 21 19:33:33 1995 John Eaton <jwe@bevo.che.wisc.edu> | |
5582 | |
5583 * Makefile.in (NO_DEP_TARGETS): New variable, for targets that can | |
5584 be made without updating dependency files. | |
5585 | |
5586 Sun Jun 25 18:27:49 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
5587 | |
5588 * configure.in (FFLAGS): Add -fpe1 on alpha-dec-osf1 systems. | |
5589 | |
5590 Thu May 4 22:26:34 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
5591 | |
5592 * configure.in: export CC, CXX, and F77 before calling | |
5593 AC_CONFIG_SUBDIRS. | |
5594 | |
5595 Mon May 1 14:17:07 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
5596 | |
5597 * configure.in: Handle --with-plplot. | |
5598 (AC_CONFIG_SUBDIRS): Add plplot directory if --with-plplot. | |
5599 * plplot: New subdirectory. | |
5600 * Makefile.in (plplot): New target. | |
5601 * octMakefile.in (SUBDIRS): Add @PLPLOT_DIR@. | |
5602 (DISTDIRS): Add plplot. | |
5603 | |
5604 * acconfig.h: Add #undef for GETTIMEOFDAY_NO_TZ. | |
5605 | |
5606 * configure.in: Improve check for gettimeofday. | |
5607 | |
5608 Mon May 1 12:50:03 1995 John Eaton (jwe@bullwinkle.che.utexas.edu) | |
5609 | |
5610 * acconfig.h (OCTAVE_LITE): Fix comment. | |
5611 | |
5612 Tue Apr 11 20:31:52 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
5613 | |
5614 * configure.in (INFO_DIR, READLINE_DIR): New variables. | |
5615 If $USE_GNU_INFO, AC_DEFINE it, don't AC_SUBST it. | |
5616 Likewise, for USE_READLINE. | |
5617 | |
5618 * octMakefile.in (SUBDIRS): Substitute INFO_DIR and READLINE_DIR. | |
5619 | |
5620 * aclocal.m4 (OCTAVE_F77_UPPERCASE_NAMES): New macro. | |
5621 (OCTAVE_F77_APPEND_UNDERSCORES): Require it. | |
5622 * configure.in: Use it. | |
5623 (info_subdir): If $USE_GNU_INFO, then run configure in info | |
5624 subdirectory too. | |
5625 Don't check for sys/ttold.h or sys/ptem.h. | |
5626 | |
5627 Mon Apr 10 00:17:57 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
5628 | |
5629 * configure.in (UGLY_DEFS): Delete commands to create this. | |
5630 * Makeconf.in (UGLY_DEFS): Delete substitution. | |
5631 * Makeconf.in (UGLY_ALL_CFLAGS): Delete definition. | |
5632 | |
5633 * configure.in: Add scripts and libcruft to CONFIG_SUBDIRS. | |
5634 Don't edit scripts or libcruft Makefiles here. | |
5635 Reorganize checking for the Fortran compiler. | |
5636 | |
5637 * octMakefile.in (DISTFILES): Delete f2c-compat.sh flibs.sh | |
5638 cxxlibs.sh from list. Add aclocal.m4. | |
5639 * configure.in: Use new macros defined in aclocal.m4. Don't use | |
5640 external shell scripts. Cache values. | |
5641 | |
5642 * aclocal.m4: New file. | |
5643 | |
5644 Sun Apr 9 12:47:27 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
5645 | |
5646 * configure.in: Print status message before exiting. | |
5647 Cache CXXLIBS and FLIBS. | |
5648 | |
5649 * acconfig.h: Delete #undefs for floating point format. | |
5650 * octMakefile.in (DISTFILES): Delete float-type.c from list. | |
5651 * configure.in: Don't try to determine floating point format at | |
5652 configuration time. | |
5653 | |
5654 Mon Apr 3 21:46:10 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
5655 | |
5656 * configure.in: Create scripts/time/Makefile too. | |
5657 | |
5658 * configure.in (gxx_version): Handle new gcc version message. | |
5659 (gcc_version): Likewise. | |
5660 | |
5661 Wed Mar 29 22:59:42 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
5662 | |
5663 * configure.in (AC_STRFTIME): Delete check. | |
5664 (AC_STRUCT_TIMEZONE): New check. | |
5665 | |
5666 Wed Mar 22 08:31:21 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
5667 | |
5668 * Makeconf.in (ALL_FFLAGS, FUGLY): New variables. | |
5669 | |
5670 * configure.in: Use AC_ARG_ENABLE and AC_ARG_WITH consistently. | |
5671 Handle --with-g77. Substitute new variable FUGLY. If F77 is g77, | |
5672 set it to -fugly. Substitute command for making .o from .f. | |
5673 | |
5674 Tue Mar 21 14:24:32 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
5675 | |
5676 * cxxlibs.sh: Extract -R options like -L options. | |
5677 * configure.in (FLIB_PATH, FLIB_LIST): Extract -R options along | |
5678 with -L options. | |
5679 | |
5680 Tue Mar 21 14:20:55 1995 Paul Eggert <eggert@twinsun.com> | |
5681 | |
5682 * configure.in (CXX): Export; cxxlibs.sh needs this. | |
5683 (FLIB_LIST, CXXLIB_LIST): Extract -R options along with -L options. | |
5684 | |
5685 * flibs.sh: Treat `-L foo' like `-Lfoo'. Extract -R options | |
5686 like -L options. | |
5687 | |
5688 Tue Mar 21 08:08:06 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
5689 | |
5690 * flibs.sh: Search for values-X*.o, not values-*.o. | |
5691 | |
5692 Fri Mar 10 10:32:27 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
5693 | |
5694 * Makeconf.in (SUBDIR_FOR_COMMAND): New command definition. | |
5695 * octMakefile.in: Use it. | |
5696 | |
5697 * octMakefile.in (install, uninstall, tags, TAGS, clean, | |
5698 mostlyclean, distclean, realclean): Combine actions. | |
5699 | |
5700 Tue Feb 28 21:24:35 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
5701 | |
5702 * configure.in (FC): Set to $F77 and substitute it. | |
5703 * Makeconf.in (FC): Add substitution line. | |
5704 | |
5705 Sun Feb 26 00:20:19 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
5706 | |
5707 * dointsall.sh: Create ls-R database. | |
5708 | |
5709 * configure.in: Configure kpathsea using AC_CONFIG_SUBDIRS(). | |
5710 Remove check for SMART_PUTENV. | |
5711 Remove kpathsea/c-auto.h from AC_CONFIG_HEADER(). | |
5712 | |
5713 * make: New directory, for kpathsea configuration. | |
5714 * octMakefile.in (DISTDIRS): Add it | |
5715 | |
5716 * kpathsea: Update with 2.6 distribution. | |
5717 | |
5718 * Makefile.in (TARGETS): New variable. Combine all identical targets. | |
5719 | |
5720 * configure.in (LIBINFO, LIBREADLINE): New variables to substitute. | |
5721 | |
5722 Sat Feb 25 18:47:11 1995 John Eaton <jwe@schoch.che.utexas.edu> | |
5723 | |
5724 * acconfig.h (USE_READLINE): Add #undef. | |
5725 * configure.in: Add support for --enable-readline. | |
5726 | |
5727 * acconfig.h (USE_GNU_INFO): Add #undef. | |
5728 * configure.in: Add support for --enable-info. | |
5729 | |
5730 * acconfig.h (RUN_IN_PLACE): Delete #undef. | |
5731 | |
5732 See ChangeLog.1 for earlier changes. |