annotate src/fftw-3.3.8/bootstrap.sh @ 83:ae30d91d2ffe

Replace these with versions built using an older toolset (so as to avoid ABI compatibilities when linking on Ubuntu 14.04 for packaging purposes)
author Chris Cannam
date Fri, 07 Feb 2020 11:51:13 +0000
parents d0c2a83c1364
children
rev   line source
Chris@82 1 #! /bin/sh
Chris@82 2 ############################################################################
Chris@82 3 #
Chris@82 4 # NOTE: If you just want to build FFTW, do not use this file. Just use
Chris@82 5 # the ordinary ./configure && make commmands as described in the installation
Chris@82 6 # section of the manual.
Chris@82 7 #
Chris@82 8 # This file is only for users that want to generate their own codelets,
Chris@82 9 # as described in the "generating your own code" section of the manual.
Chris@82 10 #
Chris@82 11 ############################################################################
Chris@82 12
Chris@82 13 touch ChangeLog
Chris@82 14
Chris@82 15 echo "PLEASE IGNORE WARNINGS AND ERRORS"
Chris@82 16
Chris@82 17 rm -rf autom4te.cache
Chris@82 18 autoreconf --verbose --install --symlink --force
Chris@82 19
Chris@82 20 rm -f config.cache
Chris@82 21
Chris@82 22 # --enable-maintainer-mode enables build of genfft and automatic
Chris@82 23 # rebuild of codelets whenever genfft changes
Chris@82 24 (
Chris@82 25 ./configure --disable-shared --enable-maintainer-mode --enable-threads $*
Chris@82 26 )