Koha Test Wiki MW Canasta on Koha Portainer

Test major Koha Wiki changes or bug fixes here without fear of breaking the production wiki.

For the current Koha Wiki, visit https://wiki.koha-community.org .

Talk:Koha 3.6 on Centos 6.2 i386

From Koha Test Wiki MW Canasta on Koha Portainer
Jump to navigation Jump to search

Hi folks: I'm brand new with Koha 3.08.04 and installed it on a development server running CentOS 6.3.

I ran into problems on the "Install and configure Zebra" step, now to document what I did and hopefully that will help someone else.
I'm going to add a quick note to the page and leave the details here.

Trying to run:

  ./configure --prefix=/usr && make && make install

I was stuck for a long time on the error:

  In file included from zebramap.c:32:
  /usr/include/yaz/icu.h:40:28: error: unicode/utypes.h: No such file or directory

(and the stack of other errors presumably associated with this). In

  /usr/include/yaz/icu.h

CentOS failed to find

  /usr/include/unicode/utypes.h

The library "libicu-devel" fixed the problem for me:

  yum install libicu-devel
  [...]
  Installed: libicu-devel.i686 0:4.2.1-9.1.el6_2

Once that was done I was able to run:

  ./configure --prefix=/usr && make && make install

and move on to the rest of the configuration.