| 1 | | |
| | 1 | |
| | 2 | {{{ |
| | 3 | copy ~/config/share/libtool/config.* |
| | 4 | gettext-0.1.17/build-aux |
| | 5 | |
| | 6 | For the following directories, |
| | 7 | gettext-0.1.17/ |
| | 8 | gettext-0.1.17/autoconf-lib-link |
| | 9 | gettext-0.1.17/gettext-runtime |
| | 10 | gettext-0.1.17/gettext-tools |
| | 11 | 1) add `AC_CONFIG_MACRO_DIR([m4])' to configure.ac |
| | 12 | --This must be insterted after any lines containing *_INIT* |
| | 13 | 2) libtoolize --force --copy |
| | 14 | in gettext-0.17/gettext-runtime/libasprintf , |
| | 15 | libtoolize --force --copy as well |
| | 16 | Note: libasprintf does NOT need the AC_CONFIG_MACRO_DIR([m4]) edit |
| | 17 | |
| | 18 | in gettext-0.1.17, |
| | 19 | export EXTRA_CONF="--disable-java" |
| | 20 | export LDFLAGS="-lnetwork" |
| | 21 | |
| | 22 | edit gettext-0.17/gettext-tools/gnulib-lib/binary-io.h |
| | 23 | line 33: |
| | 24 | #ifdef __BEOS__ |
| | 25 | becomes : |
| | 26 | #if defined __BEOS__ || defined __HAIKU__ |
| | 27 | |
| | 28 | ./autogen.sh --quick --skip-gnulib |
| | 29 | ./configure --prefix=/boot/common |
| | 30 | make |
| | 31 | make install |
| | 32 | |
| | 33 | }}} |