summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorChris Wilson <chris+github@qwirx.com>2006-10-14 17:04:30 +0000
committerChris Wilson <chris+github@qwirx.com>2006-10-14 17:04:30 +0000
commit639cf174e77fbdc0f6389d7a1a117fced4a96353 (patch)
tree5e0709941868f0d8c71a04333a0242c830505e5b /lib
parentb0b1c91e8f49470ce6232973f4adb0160a6c021e (diff)
Use BoxPlatform to see if we are building on Windows (refs #3)
Diffstat (limited to 'lib')
-rwxr-xr-xlib/server/makeprotocol.pl.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/server/makeprotocol.pl.in b/lib/server/makeprotocol.pl.in
index b5b9dd19..88177b62 100755
--- a/lib/server/makeprotocol.pl.in
+++ b/lib/server/makeprotocol.pl.in
@@ -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 @@ __E
close H;
close CPP;
+
sub obj_is_type
{
my ($c,$ty) = @_;