[Box Backup-dev] COMMIT r641 - box/chris/general/infrastructure

boxbackup-dev@fluffy.co.uk boxbackup-dev@fluffy.co.uk
Mon, 10 Jul 2006 20:47:24 +0000 (GMT)


Author: chris
Date: 2006-07-10 20:47:16 +0000 (Mon, 10 Jul 2006)
New Revision: 641

Modified:
   box/chris/general/infrastructure/makebuildenv.pl
Log:
* makebuildenv.pl
- Added lib/common to include paths on Win32 to fix new build error
- Made the windows include path logic more logical


Modified: box/chris/general/infrastructure/makebuildenv.pl
===================================================================
--- box/chris/general/infrastructure/makebuildenv.pl	2006-07-06 20:59:52 UTC (rev 640)
+++ box/chris/general/infrastructure/makebuildenv.pl	2006-07-10 20:47:16 UTC (rev 641)
@@ -37,14 +37,14 @@
 # flags about the environment
 my %env_flags;
 
-my $windows_include_path = "-I../../lib/win32 ";
+my $windows_include_path = "";
 if ($target_windows)
 {
+	$windows_include_path = "-I../../lib/win32 -I../../lib/common ";
 	push @implicit_deps, "lib/win32";
 }
 else
 {
-	$windows_include_path = "";
 	# $env_flags{'IGNORE_lib/win32'} = 1;
 }