Displaying 2 results from an estimated 2 matches for "liphlpapi".
Did you mean:
  iphlpapi
  
2010 Jul 06
0
winebuild: rpc_server.o is an empty file
...hared ./rpcrt4.spec cproxy.o cpsf.o cstub.o ndr_clientserver.o ndr_cont            ndr_es.o ndr_fullpointer.o ndr_marshall.o ndr_ole.o ndr_stubless.o rpc_assoc.o rpc_async.o rpc_binding.o rpc_epmap.o rpc_message.o rpc_server.o rpc_transport.o rpcrt4_main.o              sion.res    -o rpcrt4.dll.so -liphlpapi -lwininet -lsecur32 -luser32 -luuid -ladvapi32 -lkernel32 -lntdll -Wb,-diphlpapi -Wb,-dwininet -Wb,-dsecur32 -Wb,-duser32 ../../libs/po            ort.a
winebuild: rpc_server.o is an empty file
winegcc: ../../tools/winebuild/winebuild failed
make[1]: *** [rpcrt4.dll.so] Error 2
make[1]: Leaving dir...
2011 Jan 03
1
Tinc improvements
...onfigure.in b/configure.in
index 8e1ae87..b1f7d78 100644
--- a/configure.in
+++ b/configure.in
@@ -63,7 +63,7 @@
   *mingw*)
     AC_DEFINE(HAVE_MINGW, 1, [MinGW])
     [ rm -f src/device.c; cp -f src/mingw/device.c src/device.c ]
-    LIBS="$LIBS -lws2_32"
+    LIBS="$LIBS -lws2_32 -liphlpapi"
   ;;
   *)
     AC_MSG_ERROR("Unknown operating system.")
@@ -108,6 +108,15 @@
 )
 AC_CHECK_HEADERS([netinet/tcp.h netinet/ip_icmp.h netinet/icmp6.h],
   [], [], [#include "have.h"]
+)
+AC_CHECK_HEADERS([ifaddrs.h],
+  [], [], [#include "have.h"]
+)
+AC_CHECK_HE...