So I am trying to build a program called "srcdemo2" on github for linux, it's an old program that still has downloadable launchers available for windows but it's apparently compatible with linux. I've done a lot of work to get the dependencies in place, make sure I have the correct (older) version of Java in order to build some of those, sorted through errors in ant, but now I've hit a dead end. I run ant, either "package-linux" or any of the options I'm given, it builds most of the program and then it's giving me these errors:
[compile] Compiling 628 source files to /home/peter/srcdemo2/build/classes [compile] /home/peter/srcdemo2/src/net/srcdemo/userfs/FuseUserFS.java:44: error: cannot find symbol [compile] return info == null ? -ErrorCodes.ENOENT : 0; [compile] ^ [compile] symbol: variable ENOENT [compile] location: class ErrorCodes [compile] /home/peter/srcdemo2/src/net/srcdemo/userfs/FuseUserFS.java:73: error: cannot find symbol [compile] return -ErrorCodes.ENOMEM; [compile] ^ [compile] symbol: variable ENOMEM [compile] location: class ErrorCodes
With my limited experience I can't figure out what files are now causing the error, I took a look at the lines it's referring to but I can't make sense of it. Thanks!