comparison libinterp/dldfcn/ccolamd.cc @ 21229:a83e7a384ee0

create and install a subset of config.h in octave-config.h * mk-octave-config-h.sh: New file. * Makefile.am (EXTRA_DIST): Add mk-octave-config.h.sh to the list. (octinclude_HEADERS): Add octave-config.h to the list. (octave-config.h): New rule. * common.mk (do_subst_config_vals, do_subst_cross_config_vals): Don't substitute unused ENABLE options. * configure.ac: Note the reason for using oct-conf-post.in.h. Add OCTAVE_ prefix to ENABLE_BOUNDS_CHECK ENABLE_ATOMIC_REFCOUNT, ENABLE_64, ENABLE_OPENMP, and ENABLE_FLOAT_TRUNCATE in calls to AC_DEFINE. Change all uses. * oct-conf-post.in.h: Define HAVE_OCTAVE_DEPRECATED_ATTR instead of HAVE_ATTR_DEPRECATED. Likewise for HAVE_ATTR_NORETURN and HAVE_ATTR_UNUSED. Change all uses.
author John W. Eaton <jwe@octave.org>
date Mon, 08 Feb 2016 17:30:29 -0500
parents 2cf8bc5c7017
children 40de9f8f23a6
comparison
equal deleted inserted replaced
21228:77a622392714 21229:a83e7a384ee0
42 #include "ov-cx-sparse.h" 42 #include "ov-cx-sparse.h"
43 43
44 #include "oct-sparse.h" 44 #include "oct-sparse.h"
45 #include "oct-locbuf.h" 45 #include "oct-locbuf.h"
46 46
47 #if defined (ENABLE_64) 47 #if defined (OCTAVE_ENABLE_64)
48 # define CCOLAMD_NAME(name) ccolamd_l ## name 48 # define CCOLAMD_NAME(name) ccolamd_l ## name
49 # define CSYMAMD_NAME(name) csymamd_l ## name 49 # define CSYMAMD_NAME(name) csymamd_l ## name
50 #else 50 #else
51 # define CCOLAMD_NAME(name) ccolamd ## name 51 # define CCOLAMD_NAME(name) ccolamd ## name
52 # define CSYMAMD_NAME(name) csymamd ## name 52 # define CSYMAMD_NAME(name) csymamd ## name