Patches for WIN32

[SVN r17895]
This commit is contained in:
Dave Abrahams 2003-03-13 17:41:17 +00:00
parent d3c9688784
commit 941d2165f8
2 changed files with 12 additions and 4 deletions

View File

@ -126,7 +126,7 @@ int main() { foo(); }
t.write("c.cpp",
"""
#ifdef _WIN32
int __declspec(dllexport) must_export_something();
int __declspec(dllexport) must_export_something;
#endif
""")
@ -145,7 +145,11 @@ t.write("lib1/Jamfile", """
;
lib c : c.cpp ;
""")
t.write("lib1/c.cpp", "")
t.write("lib1/c.cpp", """
#ifdef _WIN32
int __declspec(dllexport) must_export_something;
#endif
""")
t.write("lib2/Jamfile", """
lib b : b.cpp : : : <define>FOO ;

View File

@ -126,7 +126,7 @@ int main() { foo(); }
t.write("c.cpp",
"""
#ifdef _WIN32
int __declspec(dllexport) must_export_something();
int __declspec(dllexport) must_export_something;
#endif
""")
@ -145,7 +145,11 @@ t.write("lib1/Jamfile", """
;
lib c : c.cpp ;
""")
t.write("lib1/c.cpp", "")
t.write("lib1/c.cpp", """
#ifdef _WIN32
int __declspec(dllexport) must_export_something;
#endif
""")
t.write("lib2/Jamfile", """
lib b : b.cpp : : : <define>FOO ;