configure error libxml2 is required
Support Search GitHub This repository Watch 3 Star 9 Fork 6 mysqludf/lib_mysqludf_xml Code Issues configure error libxml2 library not found 2 Pull requests 0 Projects 0 Pulse Graphs New issue configure:
Php Libxml2 Configure
error: "could not find headers for libxml2: #1 Closed Sarge2013 opened this Issue Aug 4,Configure: Error: Invalid Net-snmp Directory - Unable To Find Net-snmp-config
2013 · 17 comments Projects None yet Labels None yet Milestone No milestone Assignees No one assigned 6 participants Sarge2013 commented Aug 4, 2013 Hello, installingConfigure: Error: Curl Library Not Found
on CentOS 6.4 I met the following problem ./configure it starts configuration but stops with checking for libxml2... configure: error: "could not find headers for libxml2: /usr/include/libxml or /usr/include/libxml2/libxml" On http://stackoverflow.com/questions/5544074/cannot-compile-when-using-libxml I found an advise "You need always to keep the -I/usr/include/libxml2 in your gcc statement, so that it can find the header configure error libxml2 library not found zabbix files" But how to use it, what file and how should be corrected ? Or may be there is another solution ? Thank you very much in advance ! UDF Repository for MySQL member jasny commented Aug 4, 2013 You need to install the libxml2 development files. If you're on Debian or Ubuntu run sudo apt-get install libxml2-dev. On CentOS run yum install libxml2-devel. jasny closed this Aug 4, 2013 Sarge2013 commented Aug 4, 2013 I already tried yum install libxml2-devel Loaded plugins: priorities 176 packages excluded due to repository priority protections Setting up Install Process Package libxml2-devel-2.7.6-12.el6_4.1.x86_64 already installed and latest version Nothing to do So I already have latest package of libxml2-devel - but it does not solve the problem. Best regards, Serge UDF Repository for MySQL member jasny commented Aug 4, 2013 Hmm try running ./configure --with-libxml2=/usr/bin/xml2-config jasny reopened this Aug 4, 2013 Sarge2013 commented Aug 4, 2013 I have sameSupport Search GitHub This repository Watch 41 Star 363 Fork 117 redbo/cloudfuse Code Issues 43 Pull requests 6 Projects 0 libxml2 library not found emacs Pulse Graphs New issue libxml2 requested during ./configure #20 Open jdwilsonjr opened glusterfs configure: error: libxml2 devel libraries not found this Issue Jul 5, 2011 · 12 comments Projects None yet Labels None yet Milestone No milestone could not find libxml2 anywhere Assignees No one assigned 12 participants jdwilsonjr commented Jul 5, 2011 Hello Cloudfuse ;-) Seem unable to satisfy ./configure that libxml2 is present / available on centos 5.5. Any https://github.com/mysqludf/lib_mysqludf_xml/issues/1 suggestions ? == copied from console == Installed: libxml2.i386 0:2.6.26-2.1.2.8.el5_5.1 Updated: libxml2.x86_64 0:2.6.26-2.1.2.8.el5_5.1 Complete! [root@rackspace-01 redbo-cloudfuse-0c63cc1]# ./configure checking for gcc... gcc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we https://github.com/redbo/cloudfuse/issues/20 are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking for a BSD-compatible install... /usr/bin/install -c checking for a thread-safe mkdir -p... /bin/mkdir -p checking for pkg-config... /usr/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for XML... no configure: error: 'Unable to find libxml2. Please make sure library and header files are installed.' == thanks == ahrboktrexon commented Jul 17, 2011 same problem for me... centos 5.5 installed, and both versions of libxml (32 and 64bit) NcTech commented Jul 21, 2011 Same issue here, on RHEL5 rogerthomas84 commented Aug 4, 2011 Install libxml2-dev Worked like a champ for me. But unfortunately, it won't 'make' now nkuechler commented Aug 30, 2011 I encountered the same problem on Debian 6.0 (Squeeze): configure: error: 'Unable to find libxml2. Please make sure library and header files are installed.' I was able to resolve this by installing the pkg-config package via aptitude: aptitude -y install pkg-config After installing pkg-config and running ./c
all board cookies • All times are UTC Powered by phpBB Forum Software © phpBB Group Forum web-hosting by SourceForge
Get Kubuntu Get Xubuntu Get Lubuntu Get UbuntuStudio Get Mythbuntu Get Edubuntu Get Ubuntu-GNOME Get UbuntuKylin Ubuntu Code of Conduct Ubuntu Wiki Community Wiki Other Support Launchpad Answers Ubuntu IRC Support AskUbuntu Official Documentation User Documentation Social Media Facebook Twitter Useful Links Distrowatch Bugs: Ubuntu PPAs: Ubuntu Web Upd8: Ubuntu OMG! Ubuntu Ubuntu Insights Planet Ubuntu Activity Page Please read before SSO login Advanced Search Forum The Ubuntu Forum Community Ubuntu Official Flavours Support Installation & Upgrades [ubuntu] could not be find the libxml2 Having an Issue With Posting ? Do you want to help us debug the posting issues ? < is the place to report it, thanks ! Results 1 to 2 of 2 Thread: could not be find the libxml2 Thread Tools Show Printable Version Subscribe to this Thread… Display Linear Mode Switch to Hybrid Mode Switch to Threaded Mode June 21st, 2008 #1 fuatsungur View Profile View Forum Posts Private Message Spilled the Beans Join Date Jun 2008 Beans 14 could not be find the libxml2 hi, when i configure dictconvert in dictconvert folder with ./configure command, then i get an error, it as follows: checking for libxml - version >= 2.5.0... no *** The xml2-config script installed by LIBXML could not be found *** If libxml was installed in PREFIX, make sure PREFIX/bin is in *** your path, or set the XML2_CONFIG environment variable to the *** full path to xml2-config. configure: error: You must have libxml2 >= 2.5.0 installed would you give any advice to solve this? thanx Adv Reply June 21st, 2008 #2 moma View Profile View Forum Posts Private Message Skinny Soy Caramel Ubuntu Join Date Jan 2006 Location Palmela, Portugal Beans 640 Re: could not be find the libxml2 Hello, First, update the package index (package list) in your pc. sudo apt-get update Then use the apt-cache command to search for dependencies (missing packages). In your case: apt-cache search libxml apt-cache search libxml | grep dev libxml2-dev - Development files for the GNOME XML library ... Install it. sudo apt-get install libxml2-dev libxml2 in Ubuntu has version 2.6.31 so that's no problem. apt-cache show libxml2-dev Compilation from source needs the header files (*.h), therefore you must install the xxx-dev package. That's why I limited the listing with | grep dev. Dev pack