hi! I found you used a lot of "gh_" functions which are the old APIs of Guile. This may cause problems when you're compiling it with Guile-2.x. Please change them to newer "scm_" APIs according the the manual: https://www.gnu.org/software/guile/manual/guile.html#API-Reference
But I do think it's better to have a table for converting gh_* to scm_*...Anyone know about it? On Fri, 2014-05-23 at 11:09 +0530, Gurjot Singh wrote: > Hi, > I am updating GNU Dr.Geo software, as my GSoC project, from guile 1.6 > to guile 2.0.11 version. It is my first milestone. > I have changed many deprecated syntax to remove errors. > > After that I did 'make'. But when I do 'sudo make install' it gives > the following result: > http://pastebin.com/m8uDCi0A > > This is the install script: > http://goo.gl/RZ8mNf > > I am experiencing the following error when trying to run 'drgeo': > ice-9/psyntax.scm:1274:12: In procedure dobody: > ice-9/psyntax.scm:1274:12: Syntax error: > unknown location: unexpected syntax in form () > > Here is the complete git repository of drgeo that I am currently working on. > http://git.savannah.gnu.org/cgit/dr-geo.git/tree/?h=upgrade > > Thanks in advance >