HaikuPorts
  • Login
  • Preferences
  • Help/Guide
  • Wiki
  • Timeline
  • Roadmap
  • View Tickets
  • Search
  • Port Log
  • Blog

Context Navigation

  • ← Previous Change
  • Wiki History
  • Next Change →

Changes between Version 34 and Version 35 of CommonProblems


Ignore:
Timestamp:
05/12/10 11:28:52 (5 years ago)
Author:
mmadia
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CommonProblems

    v34 v35  
    9696 
    9797Iconv is included in Haiku, but many times ./configure does not detect and use it.  This is because it is in libtextencoding.so ([http://dev.haiku-os.org/ticket/2294 should be fixed now]).  So try adding a check for iconv in libtextextencoding and see if that works. 
     98 
     99=== Cannot find socket libraries === 
     100 
     101The socket functionalities are provided in Haiku's libnetwork.  The proper fix for this is to patch Configure to check that library as well. This is an example patch of libevent. 
     102{{{ 
     103diff -Naur libevent-1.4.13-stable/configure.in libevent-1.4.13-stable-haiku/configure.in 
     104--- libevent-1.4.13-stable/configure.in 2009-05-24 13:37:49.000000000 +0000 
     105+++ libevent-1.4.13-stable-haiku/configure.in   2009-05-28 16:55:17.000000000 +0000 
     106@@ -33,7 +33,7 @@ 
     107 AC_SUBST(LIBTOOL_DEPS) 
     108 
     109 dnl Checks for libraries. 
     110-AC_CHECK_LIB(socket, socket) 
     111+AC_SEARCH_LIBS(socket, socket network) 
     112 AC_CHECK_LIB(resolv, inet_aton) 
     113 AC_CHECK_LIB(rt, clock_gettime) 
     114 AC_CHECK_LIB(nsl, inet_ntoa) 
     115}}} 

Trac Powered

Powered by Trac 0.13dev-r10686
By Edgewall Software.

Visit the Trac open source project at
http://trac.edgewall.org/