# HG changeset patch # User John W. Eaton # Date 1472789009 14400 # Node ID 084a0a865a6b00824d0bbb565fea277d002fcc2d # Parent f2721809fb7a2ac5ff54b625b702ee97706e2d88 omit of-sparsersb for 64-bit indexing builds diff -r f2721809fb7a -r 084a0a865a6b Makefile.in --- a/Makefile.in Thu Sep 01 09:55:32 2016 -0400 +++ b/Makefile.in Fri Sep 02 00:03:29 2016 -0400 @@ -435,7 +435,11 @@ endif OCTAVE_FORGE_BASE_URL := 'http://sourceforge.net/projects/octave/files/Octave Forge Packages/Individual Package Releases' -OCTAVE_FORGE_PACKAGES := $(addprefix of-,miscellaneous struct optim specfun general signal communications image io statistics control geometry windows linear-algebra sockets zenity data-smoothing fuzzy-logic-toolkit quaternion fits tsa dicom netcdf ltfat database instrument-control generate_html nurbs strings financial stk splines dataframe lssa queueing ga odepkg interval nan ocs mapping tisean sparsersb video zeromq) +OCTAVE_FORGE_PACKAGES := $(addprefix of-,miscellaneous struct optim specfun general signal communications image io statistics control geometry windows linear-algebra sockets zenity data-smoothing fuzzy-logic-toolkit quaternion fits tsa dicom netcdf ltfat database instrument-control generate_html nurbs strings financial stk splines dataframe lssa queueing ga odepkg interval nan ocs mapping tisean video zeromq) +ifeq ($(ENABLE_64),no) + ## This package does not work properly with 64-bit indexing + OCTAVE_FORGE_PACKAGES += sparsersb +endif # get ALL deps for all of- packages, regardless of whethe building the actual forge package in the installer OCTAVE_FORGE_DEPS:= $(sort $(foreach p,$(wildcard $(TOP_DIR)/src/of-*.mk),$(shell $(SED) -n 's/.*_DEPS.*:=\(.*\)/\1/p' $p)))