diff options
| author | Nat Goodspeed <nat@lindenlab.com> | 2011-12-21 11:12:48 -0500 | 
|---|---|---|
| committer | Nat Goodspeed <nat@lindenlab.com> | 2011-12-21 11:12:48 -0500 | 
| commit | 7832d8eccb00d32b6122e5851238e962f65af1e8 (patch) | |
| tree | 5464f04af7eb1faccca8db11d61ecc8174748691 | |
| parent | 14c09c3ce597e47f5c41bb45246e89a1f31d89b0 (diff) | |
Fix llprocesslauncher_test.cpp to work on Windows.
| -rw-r--r-- | indra/llcommon/tests/llprocesslauncher_test.cpp | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/indra/llcommon/tests/llprocesslauncher_test.cpp b/indra/llcommon/tests/llprocesslauncher_test.cpp index 3b5602f620..4d14e1be53 100644 --- a/indra/llcommon/tests/llprocesslauncher_test.cpp +++ b/indra/llcommon/tests/llprocesslauncher_test.cpp @@ -12,6 +12,7 @@  // Precompiled header  #include "linden_common.h"  // associated header +#define WIN32_LEAN_AND_MEAN  #include "llprocesslauncher.h"  // STL headers  #include <vector> @@ -23,6 +24,10 @@  // other Linden headers  #include "../test/lltut.h" +#if defined(LL_WINDOWS) +#define sleep _sleep +#endif +  class APR  {  public: | 
