[Box Backup-commit] COMMIT r1037 - box/chris/merge/lib/server

boxbackup-dev@fluffy.co.uk boxbackup-dev@fluffy.co.uk
Sat, 14 Oct 2006 18:04:31 +0100


Author: chris
Date: 2006-10-14 18:04:30 +0100 (Sat, 14 Oct 2006)
New Revision: 1037

Modified:
   box/chris/merge/lib/server/makeprotocol.pl.in
Log:
Use BoxPlatform to see if we are building on Windows (refs #3)


Modified: box/chris/merge/lib/server/makeprotocol.pl.in
===================================================================
--- box/chris/merge/lib/server/makeprotocol.pl.in	2006-10-14 15:08:45 UTC (rev 1036)
+++ box/chris/merge/lib/server/makeprotocol.pl.in	2006-10-14 17:04:30 UTC (rev 1037)
@@ -1,6 +1,9 @@
 #!@PERL@
 use strict;
 
+use lib "../../infrastructure";
+use BoxPlatform;
+
 # Make protocol C++ classes from a protocol description file
 
 # built in type info (values are is basic type, C++ typename)
@@ -912,6 +915,7 @@
 close H;
 close CPP;
 
+
 sub obj_is_type
 {
 	my ($c,$ty) = @_;