Try to install minimal gnu-radio

Hello every one i am start using gnu radio…

i want to write configure.ac in a manner that only gnuradio-core in
build…

without giving any commandline option on configure script…

How can i did this…

thanks

On 03/14/2011 06:55 AM, [email protected] wrote:

Hello every one i am start using gnu radio…

i want to write configure.ac in a manner that only gnuradio-core in build…

without giving any commandline option on configure script…

How can i did this…

comment out the GRC_GR_* lines in configure.ac

if i did
GRC_GRUEL dnl must come first
GRC_GCELL
GRC_GNURADIO_CORE
GRC_USRP
GRC_USRP2
dnl GRC_GR_USRP dnl this must come after GRC_USRP
dnl GRC_GR_USRP2
dnl GRC_GR_GCELL dnl this must come after GRC_GCELL and
GRC_GNURADIO_CORE
dnl GRC_GR_MSDD6000
dnl GRC_GR_AUDIO_ALSA
dnl GRC_GR_AUDIO_JACK
dnl GRC_GR_AUDIO_OSS
dnl GRC_GR_AUDIO_OSX
dnl GRC_GR_AUDIO_PORTAUDIO
dnl GRC_GR_AUDIO_WINDOWS
dnl GRC_GR_ATSC
dnl GRC_GR_COMEDI
dnl GRC_GR_CVSD_VOCODER
dnl GRC_GR_GPIO
dnl GRC_GR_GSM_FR_VOCODER
dnl GRC_GR_NOAA
dnl GRC_GR_PAGER
dnl GRC_GR_RADAR_MONO
dnl GRC_GR_RADIO_ASTRONOMY
dnl GRC_GR_TRELLIS
dnl GRC_GR_VIDEO_SDL
dnl GRC_GR_WXGUI
dnl GRC_GR_QTGUI
dnl GRC_GR_SOUNDER dnl this must come after GRC_USRP
dnl GRC_GR_UTILS dnl this must come after GRC_GR_WXGUI
GRC_GNURADIO_EXAMPLES dnl must come after all GRC_GR_*
GRC_GRC
GRC_DOCS dnl must be last

this in configure

then why it shows

./configure: line 6273: AC_LIBTOOL_WIN32_DLL: command not found
./configure: line 6274: AC_ENABLE_SHARED: command not found
./configure: line 6288: AC_PROG_LIBTOOL: command not found
checking for python… /usr/bin/python
checking for python version… 2.6
checking for python platform… linux2
checking for python script directory…
${prefix}/lib/python2.6/dist-packages
checking for python extension module directory…
${exec_prefix}/lib/python2.6/dist-packages
checking for Python include path… /usr/include/python2.6
checking Python.h usability… no
checking Python.h presence… no
checking for Python.h… no
configure: error: cannot find usable Python headers

this error during configureaton (./configure)…

is there any way to not install dependiencies packages (like python,
swig)…
if i do not want to install related things in gnuradio…

On Tue, Mar 15, 2011 at 12:59 AM, [email protected]
wrote:

dnl GRC_GR_MSDD6000
dnl GRC_GR_GSM_FR_VOCODER
GRC_GNURADIO_EXAMPLES dnl must come after all GRC_GR_*
checking for python… /usr/bin/python
configure: error: cannot find usable Python headers

this error during configureaton (./configure)…

is there any way to not install dependiencies packages (like python,
swig)…
if i do not want to install related things in gnuradio…

By default, GNU Radio core requires Python. Disable it by passing
“–disable-python” to the configure script.

Tom