Hello,

I don't know if this issue concern port maintainer or php ffmpeg extension team 
directly, but after "make extract" in FreeBSD ports there's an error in 
config.m4, this line use PHP == operator that is of course not available in a 
.m4 file :

  if test "$enable_ffmpeg_swscale" == yes; then

the wrong line must be replaced with :

  if test "$enable_ffmpeg_swscale" = "yes"; then

or the ffmpeg_frame->toGDImage() function will not work because detection of 
swscale presence made by configure script is not working

Thanks to fix and/or to tell me where to direct the issue.

Hope this help !

_______________________________________________
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"

Reply via email to