google-code-export / serf

Automatically exported from code.google.com/p/serf
Apache License 2.0
1 stars 1 forks source link

Misssing object file mock_buckets.obj in serf.mak #101

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Compile with MSVC

What is the expected output? What do you see instead?
test_buckets.obj : error LNK2001: unresolved external symbol 
_serf_bucket_mock_more_data_arrived
test_buckets.obj : error LNK2001: unresolved external symbol 
_serf_bucket_mock_create
Release\test_all.exe : fatal error LNK1120: 2 unresolved externals
NMAKE : fatal error U1077: 'link.exe' : return code '0x460'
Stop.

What version of the product are you using? On what operating system?
SVN-HEAD; target Windows x86.

Please provide any additional information below.
Fix:
Index: serf.mak
===================================================================
--- serf.mak    (revision 1877)
+++ serf.mak    (working copy)
@@ -145,6 +145,7 @@
     "$(INTDIR)\test_util.obj" \
     "$(INTDIR)\test_context.obj" \
     "$(INTDIR)\test_buckets.obj" \
+    "$(INTDIR)\mock_buckets.obj" \
     "$(INTDIR)\test_ssl.obj" \
     "$(INTDIR)\test_server.obj" \
     "$(INTDIR)\test_sslserver.obj" \

Original issue reported on code.google.com by 0x1...@googlemail.com on 31 May 2013 at 12:35

GoogleCodeExporter commented 9 years ago
Fixed in r1878.

Original comment by chemodax@gmail.com on 31 May 2013 at 1:08