diff options
author | Johnathan Corgan | 2010-05-13 19:10:44 -0700 |
---|---|---|
committer | Johnathan Corgan | 2010-05-13 19:10:44 -0700 |
commit | 212ba35ca6b9792df7e7a1791fd9a395b88e77eb (patch) | |
tree | 4b403efcf9278b9c555701f63138a11a450b83b0 | |
parent | 2057623cf8f9e9738954b146d3a23577110f7906 (diff) | |
download | gnuradio-212ba35ca6b9792df7e7a1791fd9a395b88e77eb.tar.gz gnuradio-212ba35ca6b9792df7e7a1791fd9a395b88e77eb.tar.bz2 gnuradio-212ba35ca6b9792df7e7a1791fd9a395b88e77eb.zip |
gnuradio-core: Disable (temporarily) interpolator tap calculation
There is some breakage with GR_FORTRAN / AC_PROG_F77 when running
bootstrap. The gen_interpolator_taps binary is only needed to
regenerate the MMSE interpolator taps, which hasn't been done for
several years. Disable this until proper fix can be done.
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | gnuradio-core/src/gen_interpolator_taps/Makefile.am | 18 |
2 files changed, 10 insertions, 10 deletions
diff --git a/configure.ac b/configure.ac index a17093385..6d70e03de 100644 --- a/configure.ac +++ b/configure.ac @@ -124,7 +124,7 @@ dnl AC_DISABLE_SHARED dnl don't build shared libraries AC_ENABLE_SHARED dnl do build shared libraries AC_DISABLE_STATIC dnl don't build static libraries m4_ifdef([LT_INIT],[LT_INIT],[AC_PROG_LIBTOOL]) -GR_FORTRAN +dnl GR_FORTRAN GR_NO_UNDEFINED dnl do we need the -no-undefined linker flag GR_SCRIPTING diff --git a/gnuradio-core/src/gen_interpolator_taps/Makefile.am b/gnuradio-core/src/gen_interpolator_taps/Makefile.am index 5f3a6cb25..f5d21631b 100644 --- a/gnuradio-core/src/gen_interpolator_taps/Makefile.am +++ b/gnuradio-core/src/gen_interpolator_taps/Makefile.am @@ -21,13 +21,13 @@ include $(top_srcdir)/Makefile.common -EXTRA_DIST = praxis.txt simpson.h +EXTRA_DIST = praxis.txt simpson.h objective_fct.c gen_interpolator_taps.c simpson.c praxis.f -if ENABLE_FORTRAN -noinst_PROGRAMS = gen_interpolator_taps -noinst_HEADERS = simpson.h - -gen_interpolator_taps_SOURCES = gen_interpolator_taps.c objective_fct.c simpson.c praxis.f -gen_interpolator_taps_LDADD = $(FLIBS) -lm - -endif +dnl if ENABLE_FORTRAN +dnl noinst_PROGRAMS = gen_interpolator_taps +dnl noinst_HEADERS = simpson.h +dnl +dnl gen_interpolator_taps_SOURCES = gen_interpolator_taps.c objective_fct.c simpson.c praxis.f +dnl gen_interpolator_taps_LDADD = $(FLIBS) -lm +dnl +dnl endif |