Guest User

Untitled

a guest
Jan 22nd, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.64 KB | None | 0 0
  1. | /OE/shr-unstable/tmp/sysroots/x86_64-linux/usr/bin/valac -C --basedir .. --vapidir ../vapi --pkg posix --pkg linux --pkg glib-2.0 --pkg gio-2.0 --pkg gee-1.0 --pkg fsobasics-2.0 --header fsotransport.h --library fsotransport-2.0 -D FAST_BAUD --pkg hsuart basetransport.vala commandqueue.vala delegate.vala null.vala parser.vala pipe.vala pty.vala serial.vala socket.vala transport.vala hsuart.vala ngsm.vala
  2. | ngsm.vala:98.25-98.33: error: The name `Gsm' does not exist in the context of `Linux'
  3. | var muxconfig = Linux.Gsm.Config();
  4. | ^^^^^^^^^
  5. | ngsm.vala:98.13-98.42: error: var declaration not allowed with non-typed initializer
  6. | var muxconfig = Linux.Gsm.Config();
  7. | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  8. | ngsm.vala:99.31-99.39: error: The name `Gsm' does not exist in the context of `Linux'
  9. | if ( Linux.ioctl( fd, Linux.Gsm.GSMIOC_GETCONF, &muxconfig ) == -1 )
  10. | ^^^^^^^^^
  11. | ngsm.vala:99.58-99.66: error: The name `muxconfig' does not exist in the context of `FsoFramework.NgsmTransport.enterMuxMode'
  12. | if ( Linux.ioctl( fd, Linux.Gsm.GSMIOC_GETCONF, &muxconfig ) == -1 )
  13. | ^^^^^^^^^
  14. | ngsm.vala:105.9-105.17: error: The name `muxconfig' does not exist in the context of `FsoFramework.NgsmTransport.enterMuxMode'
  15. | muxconfig.initiator = 1;
  16. | ^^^^^^^^^
  17. | ngsm.vala:106.9-106.17: error: The name `muxconfig' does not exist in the context of `FsoFramework.NgsmTransport.enterMuxMode'
  18. | muxconfig.encapsulation = mode;
  19. | ^^^^^^^^^
  20. | ngsm.vala:107.9-107.17: error: The name `muxconfig' does not exist in the context of `FsoFramework.NgsmTransport.enterMuxMode'
  21. | muxconfig.mru = 127;
  22. | ^^^^^^^^^
  23. | ngsm.vala:108.9-108.17: error: The name `muxconfig' does not exist in the context of `FsoFramework.NgsmTransport.enterMuxMode'
  24. | muxconfig.mtu = 127;
  25. | ^^^^^^^^^
  26. | ngsm.vala:109.31-109.39: error: The name `Gsm' does not exist in the context of `Linux'
  27. | if ( Linux.ioctl( fd, Linux.Gsm.GSMIOC_SETCONF, &muxconfig ) == -1 )
  28. | ^^^^^^^^^
  29. | ngsm.vala:109.58-109.66: error: The name `muxconfig' does not exist in the context of `FsoFramework.NgsmTransport.enterMuxMode'
  30. | if ( Linux.ioctl( fd, Linux.Gsm.GSMIOC_SETCONF, &muxconfig ) == -1 )
  31. | ^^^^^^^^^
  32. | ngsm.vala:119.66-119.78: error: The name `makedev' does not exist in the context of `Linux'
  33. | Posix.mknod( @"/dev/ttygsm$i", Posix.S_IFCHR | 0666, Linux.makedev( MKNOD_TTYGSM_MAJOR, i ) );
Add Comment
Please, Sign In to add comment