diff options
author | Tom Rondeau <trondeau@vt.edu> | 2011-02-17 12:15:36 -0500 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2011-02-17 12:15:36 -0500 |
commit | 090799813fee5305fc080297ce43cccc662c9f6e (patch) | |
tree | 1be66fd89f57ab1567645a3c6954b4eb65bffda0 /config | |
parent | cb35c3e28f277717d8f9f849636768d57720487f (diff) |
guile: removing calls to check for guile and guile-dev. GNU Radio can once again be built without Guile.
Diffstat (limited to 'config')
-rw-r--r-- | config/gr_guile.m4 | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/config/gr_guile.m4 b/config/gr_guile.m4 index 4d8d61d434..b5879e0811 100644 --- a/config/gr_guile.m4 +++ b/config/gr_guile.m4 @@ -35,7 +35,11 @@ AC_DEFUN([GUILE_DEVEL],[ GUILE_PKLIBDIR="`${GUILE_CONFIG} info pkglibdir`" GUILE_PKDATADIR="`${GUILE_CONFIG} info pkgdatadir`/site" else - AC_MSG_ERROR([You need to install the guile development files (e.g., libguile-dev, guile-devel, etc.)!]) + dnl Only break on an error if we are using guile. + dnl This should be taken care of in gr_scripting.m4 and I don't know why it's not. + if test x${enable_guile} = xyes; then + AC_MSG_ERROR([You need to install the guile development files (e.g., libguile-dev, guile-devel, etc.)!]) + fi GUILE_CFLAGS="" GUILE_PKLIBDIR="" GUILE_LIBS="Wl,-Bsymbolic-functions -lguile -lgmp -lcrypt" |