[Pkg-ocaml-maint-commits] r1260 - trunk/packages/camlrpc/trunk/debian

Thomas Petazzoni tpetazzo-guest@costa.debian.org
Tue, 12 Apr 2005 22:23:21 +0000


Author: tpetazzo-guest
Date: 2005-04-12 22:23:20 +0000 (Tue, 12 Apr 2005)
New Revision: 1260

Modified:
   trunk/packages/camlrpc/trunk/debian/README.Debian
   trunk/packages/camlrpc/trunk/debian/changelog
   trunk/packages/camlrpc/trunk/debian/rules
Log:
Do not compile HTTP tunnel support, mention it in the README.Debian, and explicitly tells configure what we don't want to compile

Modified: trunk/packages/camlrpc/trunk/debian/README.Debian
===================================================================
--- trunk/packages/camlrpc/trunk/debian/README.Debian	2005-04-12 21:12:47 UTC (rev 1259)
+++ trunk/packages/camlrpc/trunk/debian/README.Debian	2005-04-12 22:23:20 UTC (rev 1260)
@@ -2,11 +2,11 @@
 ------------------
 
 OCaml-RPC is configured so that it generates ocamlrpcgen, the
-generator for the RPC language mapping and so that it includes the
-HTTP tunnel. Support for Diffie-Hellman authentication and
-authenticated Unix domain sockets is not included.
+generator for the RPC language mapping. It does not include support
+for HTTP tunnel, for Diffie-Hellman authentication, and for
+authenticated Unix domain sockets.
 
 If you are interested by these functionnalities, please report a bug
 as wishlist on this package.
 
- -- Thomas Petazzoni <thomas.petazzoni@enix.org>, Thu Feb 17 18:05:35 2005
+ -- Thomas Petazzoni <thomas.petazzoni@enix.org>, Wed Apr 13 00:22:34 2005

Modified: trunk/packages/camlrpc/trunk/debian/changelog
===================================================================
--- trunk/packages/camlrpc/trunk/debian/changelog	2005-04-12 21:12:47 UTC (rev 1259)
+++ trunk/packages/camlrpc/trunk/debian/changelog	2005-04-12 22:23:20 UTC (rev 1260)
@@ -1,6 +1,10 @@
 camlrpc (0.4.1-7) unstable; urgency=low
 
   * Add dependency on libequeue-ocaml-dev
+  * Add --without-http-tunnel to make sure support for HTTP tunnel is
+    never compiled, even if netclient is installed on the system. For the
+    moment, compiling with HTTP tunnel fails while generating the
+    documentation. This issue has to be fixed later.
 
  -- Thomas Petazzoni <thomas.petazzoni@enix.org>  Tue, 12 Apr 2005 10:33:12 +0200
 

Modified: trunk/packages/camlrpc/trunk/debian/rules
===================================================================
--- trunk/packages/camlrpc/trunk/debian/rules	2005-04-12 21:12:47 UTC (rev 1259)
+++ trunk/packages/camlrpc/trunk/debian/rules	2005-04-12 22:23:20 UTC (rev 1260)
@@ -22,7 +22,11 @@
 configure-stamp: configure
 	dh_testdir
 	# Add here commands to configure the package.
-	./configure -with-ocamlrpcgen -bindir $(BINDIR)
+	./configure -with-ocamlrpcgen \
+                    -without-http-tunnel \
+		    -without-auth-local \
+		    -without-auth-dh \
+                    -bindir $(BINDIR)
 	touch configure-stamp
 
 build: build-stamp