diff -r pakcs/bin/.pakcs_variables patched_pakcs/bin/.pakcs_variables 7c7 < GHC= --- > GHC=/cygdrive/c/ghc/ghc-6.4.1/bin/ghc 25c25 < SWIPROLOG= --- > SWIPROLOG=c:/curry/pl/bin/plcon.exe Only in patched_pakcs/bin: .pakcs_variables.bak diff -r pakcs/bin/.pakcs_wrapper patched_pakcs/bin/.pakcs_wrapper 11c11 < PATHNAME=`(cd \`dirname $0\` > /dev/null ; pwd)` --- > PATHNAME=`(cd \`dirname $0\` > /dev/null ; cygpath -m \`pwd\`)` Only in patched_pakcs/bin: parsecurry Only in patched_pakcs/bin: swiprolog diff -r pakcs/configure-pakcs patched_pakcs/configure-pakcs 7c7 < PAKCSHOME=`(cd \`dirname $0\` > /dev/null ; pwd)` --- > PAKCSHOME=`(cd \`dirname $0\` > /dev/null ; cygpath -m \`pwd\`)` diff -r pakcs/curry2prolog/Makefile patched_pakcs/curry2prolog/Makefile 6c6 < PAKCSHOME=`pwd`/.. --- > PAKCSHOME=`cygpath -m \`pwd\``/.. 12c12 < SWI=`pwd`/../bin/swiprolog --- > SWI=`cygpath -m \`pwd\``/../bin/swiprolog diff -r pakcs/curry2prolog/c2p.pl patched_pakcs/curry2prolog/c2p.pl 1027c1027 < %write('Executing: '), write(LoadCmd), nl, --- > write('Executing: '), write(LoadCmd), nl, diff -r pakcs/curry2prolog/swibasics.pl patched_pakcs/curry2prolog/swibasics.pl 198c198 < shellCmd(Cmd) :- shell(Cmd,0). --- > shellCmd(Cmd) :- string_concat('c:/cygwin/bin/bash -c ',Cmd,ShellCmd),shell(ShellCmd,0). 201c201 < shellCmd(Cmd,Status) :- shell(Cmd,Status). --- > shellCmd(Cmd,Status) :- string_concat('c:/cygwin/bin/bash -c ',Cmd,ShellCmd),shell(ShellCmd,Status).