Changeset 9624
- Timestamp:
- 09/20/08 13:55:36
- Files:
-
- gnuradio/branches/developers/trondeau/qtgui/config/gr_qwt.m4 (modified) (3 diffs)
- gnuradio/branches/developers/trondeau/qtgui/config/gr_qwtplot3d.m4 (modified) (4 diffs)
- gnuradio/branches/developers/trondeau/qtgui/config/grc_gr_qtgui.m4 (modified) (1 diff)
- gnuradio/branches/developers/trondeau/qtgui/gr-qtgui/src/lib/Makefile.am (modified) (1 diff)
- gnuradio/branches/developers/trondeau/qtgui/gr-qtgui/src/lib/qtspectrum/specDisplay.pro (deleted)
- gnuradio/branches/developers/trondeau/qtgui/gr-qtgui/src/lib/qtspectrum/specDisplay.pro.in (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gnuradio/branches/developers/trondeau/qtgui/config/gr_qwt.m4
r9618 r9624 69 69 if test "$qwt_qwt_h" = "yes" ; then 70 70 QWT_CFLAGS="$QWT_CFLAGS -I/usr/include/qwt" 71 QWT_INCLUDES="$QWT_INCLUDES /usr/include/qwt"72 71 else 73 72 dnl otherwise, check qwt-qt4/qwt.h (as in Ubuntu) … … 80 79 if test "$qwt_qt4_qwt_h" = "yes" ; then 81 80 QWT_CFLAGS="$QWT_CFLAGS -I/usr/include/qwt-qt4" 82 QWT_INCLUDES="$QWT_INCLUDES /usr/include/qwt-qt4"83 81 else 84 82 dnl otherwise, qwt.h wasn't found, so set the flag to no … … 151 149 dnl Export our variables 152 150 AC_SUBST(QWT_CFLAGS) 153 AC_SUBST(QWT_INCLUDES)154 151 AC_SUBST(QWT_LIBS) 155 152 ]) gnuradio/branches/developers/trondeau/qtgui/config/gr_qwtplot3d.m4
r9618 r9624 68 68 if test "$qwtplot3d_qwtplot3d_h" = "yes" ; then 69 69 QWTPLOT3D_CFLAGS="$QWTPLOT3D_CFLAGS -I/usr/include/qwtplot3d" 70 QWTPLOT3D_INCLUDES="$QWTPLOT3D_INCLUDES /usr/include/qwtplot3d"71 70 else 72 71 dnl otherwise, check qwtplot3d-qt4/qwtplot3d.h (as in Ubuntu) … … 79 78 if test "$qwtplot3d_qt4_qwtplot3d_h" = "yes" ; then 80 79 QWTPLOT3D_CFLAGS="$QWTPLOT3D_CFLAGS -I/usr/include/qwtplot3d-qt4" 81 QWTPLOT3D_INCLUDES="$QWTPLOT3D_INCLUDES /usr/include/qwtplot3d-qt4"82 80 else 83 81 dnl otherwise, qwtplot3d.h wasn't found, so set the flag to no … … 88 86 dnl Using the user-specified include directory 89 87 QWTPLOT3D_CFLAGS="$QWTPLOT3D_CFLAGS -I$qwtplot3d_incdir" 90 QWTPLOT3D_INCLUDES="$QWTPLOT3D_INCLUDES $qwtplot3d_incdir"91 88 AC_CHECK_HEADER( 92 89 [$qwtplot3d_incdir/qwt3d_plot.h], … … 151 148 dnl Export our variables 152 149 AC_SUBST(QWTPLOT3D_CFLAGS) 153 AC_SUBST(QWTPLOT3D_INCLUDES)154 150 AC_SUBST(QWTPLOT3D_LIBS) 155 151 ]) gnuradio/branches/developers/trondeau/qtgui/config/grc_gr_qtgui.m4
r9618 r9624 59 59 dnl Export the include dirs and libraries (note: QTOPENGL_LIBS includes links 60 60 dnl to QtCore and QtGui libraries) 61 QT_CFLAGS="$QWT_CFLAGS $QWTPLOT3D_CFLAGS $QTCORE_CFLAGS $QTGUI_CFLAGS" 62 QT_INCLUDES="$QWT_INCLUDES $QWTPLOT3D_INCLUDES $QTCORE_CFLAGS_ONLY_I $QTGUI_CFLAGS_ONLY_I" 61 QT_INCLUDES="$QWT_CFLAGS $QWTPLOT3D_CFLAGS $QTCORE_CFLAGS $QTGUI_CFLAGS" 63 62 QT_LIBS="$QWT_LIBS $QWTPLOT3D_LIBS $QTOPENGL_LIBS" 64 AC_SUBST(QT_CFLAGS) 63 64 dnl Build an includes variable specifically for running qmake by extracting 65 dnl all includes from the QWT and QWTPLOT3D, without the -I; 66 dnl qmake appends the -I when processing the project file INCLUDEPATH 67 for i in $QWT_CFLAGS $QWTPLOT3D_CFLAGS; do 68 QMAKE_INCLUDES="$QMAKE_INCLUDES ${i##-I}" 69 done 70 71 AC_SUBST(QMAKE_INCLUDES) 65 72 AC_SUBST(QT_INCLUDES) 66 73 AC_SUBST(QT_LIBS) gnuradio/branches/developers/trondeau/qtgui/gr-qtgui/src/lib/Makefile.am
r9618 r9624 33 33 34 34 AM_CPPFLAGS = $(STD_DEFINES_AND_INCLUDES) $(PYTHON_CPPFLAGS) \ 35 $(QT_ CFLAGS) -Iqtspectrum -Iqtspectrum/.ui $(WITH_INCLUDES)35 $(QT_INCLUDES) -Iqtspectrum -Iqtspectrum/.ui $(WITH_INCLUDES) 36 36 37 37 SWIGPYTHONARGS = $(SWIGPYTHONFLAGS) $(STD_DEFINES_AND_INCLUDES) \
