nurpax / nurpawiki

Automatically exported from code.google.com/p/nurpawiki
GNU General Public License v2.0
0 stars 3 forks source link

Apply makefile simplification patch once Ocsigen's released META requires more packages by default #48

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
When this change:

diff -rN -u old-ocsigen/META.in new-ocsigen/META.in
--- old-ocsigen/META.in 2008-01-03 16:05:37.000000000 +0100
+++ new-ocsigen/META.in 2008-01-03 16:05:37.000000000 +0100
@@ -1,4 +1,4 @@
 description = "Libraries for Ocsigen"
 version = "_VERSION_"
-requires = "netstring,lwt"
+requires = "netstring,netsys,ssl,pcre,unix,dynlink,threads,lwt"

..has been released officially in Ocsigen, the below patch:

8<
goditest@debian:~/dev/nurpawiki$ svn diff
Index: Makefile
===================================================================
--- Makefile    (rÃ(c)vision 341)
+++ Makefile    (copie de travail)
@@ -5,7 +5,7 @@
 CAMLOPT = ocamlfind ocamlopt -thread  $(LIB)
 CAMLDOC = ocamlfind ocamldoc $(LIB)
 CAMLDEP = ocamlfind ocamldep
-LIB = -package threads,netstring,calendar,extlib,postgresql,ocsigen
+LIB = -package calendar,extlib,postgresql,ocsigen

 OBJS = $(FILES:.ml=.cmo)
8<

should be applied to Nurpawiki.

Original issue reported on code.google.com by jjhel...@gmail.com on 6 Jan 2008 at 11:53