From 6fb2acc3c49e3bb7b8845d517c4bff4a8f5b0fa8 Mon Sep 17 00:00:00 2001 From: Johnathan Corgan Date: Wed, 2 Sep 2009 10:14:02 -0700 Subject: Removed subversion related configuration info. * Don't call GR_SUBVERSION in configure.ac * Remove --svn* options from gnuradio-config-info --- configure.ac | 3 --- 1 file changed, 3 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 1764b46ab..2bb37935e 100644 --- a/configure.ac +++ b/configure.ac @@ -286,9 +286,6 @@ dnl AX_BOOST_TEST_EXEC_MONITOR dnl AX_BOOST_UNIT_TEST_FRAMEWORK dnl AX_BOOST_WSERIALIZATION - -dnl If this is being done from a subversion tree, create variables -GR_SUBVERSION BUILD_DATE=`date -R -u` AC_SUBST(BUILD_DATE) -- cgit From 7467db4fdde61a67553e7257347a14f8487598ab Mon Sep 17 00:00:00 2001 From: Johnathan Corgan Date: Thu, 3 Sep 2009 12:53:02 -0700 Subject: Fix Python header check failure due to invalid cached state * GR_FORTRAN macro leaves $ac_ext=f on some systems * Restore by invoking AC_PROG_CC Reported-by: Szymon Jakubczak Signed-off-by: Johnathan Corgan --- configure.ac | 1 + 1 file changed, 1 insertion(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 2bb37935e..4b90b723c 100644 --- a/configure.ac +++ b/configure.ac @@ -125,6 +125,7 @@ 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 +AC_PROG_CC dnl ensure $ac_ext set correctly after Fortran test GR_NO_UNDEFINED dnl do we need the -no-undefined linker flag GR_SCRIPTING -- cgit From acdf13612f55c3a4abd4f2f05d759a4fd2fdf7d0 Mon Sep 17 00:00:00 2001 From: Johnathan Corgan Date: Thu, 3 Sep 2009 17:12:40 -0700 Subject: Better fix for broken AC_PROG_F77 macro * Move AC_PROG_CC into GR_FORTRAN macro definition --- configure.ac | 1 - 1 file changed, 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 4b90b723c..2bb37935e 100644 --- a/configure.ac +++ b/configure.ac @@ -125,7 +125,6 @@ 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 -AC_PROG_CC dnl ensure $ac_ext set correctly after Fortran test GR_NO_UNDEFINED dnl do we need the -no-undefined linker flag GR_SCRIPTING -- cgit