Richard Shaw wrote: > Ok, started testing, the patch applies cleanly of course but ran into > an issue on Linux: > > /home/build/rpmbuild/freedv/BUILD/fdmdv2-0.96.5.svn1329/src/fdmdv2_main.cpp: > In member function 'void MainFrame::raiseDTR()': > /home/build/rpmbuild/freedv/BUILD/fdmdv2-0.96.5.svn1329/src/fdmdv2_main.cpp:670:15: > > error: 'TIOCM_DTR' was not declared in this scope > int flags = TIOCM_DTR; > > I can see where you added an include for termios.h in fdmdv2_main.h:
Ah, it also needs to include sys/ioctl.h... you should be able to add: #include <sys/ioctl.h> in there to fix it. ------------------------------------------------------------------------------ Learn Graph Databases - Download FREE O'Reilly Book "Graph Databases" is the definitive new guide to graph databases and their applications. Written by three acclaimed leaders in the field, this first edition is now available. Download your free book today! http://p.sf.net/sfu/13534_NeoTech _______________________________________________ Freetel-codec2 mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/freetel-codec2
