Dear All, Hello!

[Patch]
The current configure.ac reset $win32-libs.
This patch will append additional value without reset.
Please review this and give any feedback.

[Question]
I have got a build error from ecore_con.c as following.

   undefined reference to: inet_ntop();

In the Evil, inet_ntop() is defined evil_inet_ntop(); means as following

   #define inet_ntop(x,y,z,s) evil_inet_ntop(x,y,z,s)

and ecore_con.c include Evil.h. So I think this is correct..
(inet_ntop() is defined and can be referenced)
but I have no idea why the build error comes.

Sincerely,
Shinwoo Kim.
Index: configure.ac
===================================================================
--- configure.ac	(revision 63906)
+++ configure.ac	(working copy)
@@ -99,19 +99,18 @@ AC_C___ATTRIBUTE__
 win32_cppflags="-DEFL_EVIL_BUILD"
 win32_cflags="-Wall -Wextra -Wshadow -Wdeclaration-after-statement -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls"
 win32_cxxflags=""
-win32_libs=""
 have_wince="no"
 case "$host_os" in
   mingw32ce*)
     have_wince="yes"
     win32_cppflags="${win32_cppflags} -D_WIN32_WCE=0x0420"
-    win32_libs="-ltoolhelp"
+    win32_libs="${win32_libs} -ltoolhelp"
     ;;
   *)
     have_wince="no"
     win32_cxxflags="-fno-rtti -fno-exceptions"
     win32_cppflags="${win32_cppflags} -D_WIN32_WINNT=0x0501 -DSECURITY_WIN32"
-    win32_libs="-lpsapi"
+    win32_libs="${win32_libs} -lpsapi"
     ;;
 esac
 AC_SUBST([win32_cppflags])
------------------------------------------------------------------------------
All of the data generated in your IT infrastructure is seriously valuable.
Why? It contains a definitive record of application performance, security
threats, fraudulent activity, and more. Splunk takes this data and makes
sense of it. IT sense. And common sense.
http://p.sf.net/sfu/splunk-d2dcopy2
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to