From: Johnathan Corgan Date: Fri, 14 May 2010 02:10:44 +0000 (-0700) Subject: gnuradio-core: Disable (temporarily) interpolator tap calculation X-Git-Url: https://git.gag.com/?p=debian%2Fgnuradio;a=commitdiff_plain;h=212ba35ca6b9792df7e7a1791fd9a395b88e77eb 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. --- diff --git a/configure.ac b/configure.ac index a1709338..6d70e03d 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 5f3a6cb2..f5d21631 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