From: Steven S. <sm...@us...> - 2014-01-06 04:32:03
|
Update of /cvsroot/mjpeg/mjpeg_play In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv20261 Modified Files: configure.ac Log Message: Do not need 2nd check of v4l - the 2nd one also generated a v4l warning on non-linux systems Index: configure.ac =================================================================== RCS file: /cvsroot/mjpeg/mjpeg_play/configure.ac,v retrieving revision 1.77 retrieving revision 1.78 diff -C2 -d -r1.77 -r1.78 *** configure.ac 31 Dec 2013 04:26:03 -0000 1.77 --- configure.ac 6 Jan 2014 04:31:59 -0000 1.78 *************** *** 161,167 **** esac]) - AS_IF([test "x$have_video4linux" != "xtrue" && test "x$with_v4l" != "xno"], - [have_video4linux=false - AC_MSG_WARN([videodev.h not found - please install the linux kernel headers programms needing v4l disabled])]) AM_CONDITIONAL(HAVE_V4L, test x$have_video4linux = xtrue) --- 161,164 ---- *************** *** 172,179 **** dnl ********************************************************************* ACX_PTHREAD - dnl maddog: The following matches the original pthread-checking behavior - dnl in this script, i.e. "If a CFLAG is necessary, use it for - dnl *everything*." Hopefully, any CFLAGs will eventually go away. - dnl The other option is to stick PTHREAD_CFLAGS/CC in Makefile.am.... CFLAGS="$CFLAGS $PTHREAD_CFLAGS" CXXFLAGS="$CXXFLAGS $PTHREAD_CFLAGS" --- 169,172 ---- |