[Unison-hackers] Problem building unison under cygwin

Jerome Vouillon Jerome.Vouillon at pps.jussieu.fr
Wed Jun 2 09:17:22 EDT 2010


On Wed, Jun 02, 2010 at 07:44:51AM -0500, Gene Horodecki wrote:
> On 06/02/2010 3:14 AM, Jerome Vouillon wrote:
> > On Tue, Jun 01, 2010 at 11:12:48PM -0500, Gene Horodecki wrote:
[...]
> >> Cannot load required shared library dllstr.
> >> Reason: dynamic loading not supported on this platform.
> >
> > Could you try the attached patch?  It should fix your problem.
>
> I didn't seem to get an attachment?

Sorry, I forgot about it...

-- Jerome
-------------- next part --------------
Index: Makefile
===================================================================
--- Makefile	(r?vision 448)
+++ Makefile	(copie de travail)
@@ -60,11 +60,11 @@
 # NAME, VERSION, and MAJORVERSION, automatically generated
 -include Makefile.ProjectInfo
 
-Makefile.ProjectInfo: mkProjectInfo.ml $(wildcard ../.bzr/branch/last-revision)
-	ocaml str.cma unix.cma ./mkProjectInfo.ml > $@
+Makefile.ProjectInfo: mkProjectInfo $(wildcard ../.bzr/branch/last-revision)
+	./mkProjectInfo > $@
 
-#mkProjectInfo: mkProjectInfo.ml
-#	ocamlc -o $@ unix.cma str.cma $^
+mkProjectInfo: mkProjectInfo.ml
+	ocamlc -o $@ unix.cma str.cma $^
 
 clean::
 	$(RM) mkProjectInfo


More information about the Unison-hackers mailing list