Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2014
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. /* The package the library is from is tox-git. My actual example program looks as follows. */
  2.  
  3. #include <stdio.h>
  4. /* #include <tox2/tox.h> // a link to the same file made with "ln -s tox tox2". works. */
  5. /* #include <tox/tox2.h> // a copy of the same file made with "cp tox.h tox2.h". works. */
  6. #include <tox/tox.h>
  7. int main ()
  8. {
  9. printf ("%d\n", TOX_FILECONTROL_RESUME_BROKEN); // an enum
  10. printf ("%d\n", TOX_GROUPCHAT_TYPE_AV); // an enum declared exactly the same way
  11. return 0;
  12. }
  13.  
  14. /* Just as in my example code, any previously existing variables or functions (TOX_FILECONTROL_RESUME_BROKEN) act as expected, but recent varables and functions (TOX_GROUPCHAT_TYPE_AV) aren't found. Of course I have tried all the different tests previously mentioned. */
  15.  
  16. /* Besides just my example program, no recent tox clients will compile, and no one else is seeing these errors according to varying Google searches of the errors, the respective AUR webpages, and the respective IRC channels as well as the tox IRC channel itself. The clients do compile with the identical linked folder. */
  17.  
  18. /* Although I can just used the linked folder, I would like to know what is causing this error so I can know when I'm facing it in the future. */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement