An Internationalized Software Project With Auto Tools | ||
---|---|---|
Prev | Adding libtool Support | Next |
# libtoolize Remember to add `AC_PROG_LIBTOOL' to `configure.ac'. Using `AC_PROG_RANLIB' is rendered obsolete by `AC_PROG_LIBTOOL' You should update your `aclocal.m4' by running aclocal. |
configure.ac |
... AM_INIT_AUTOMAKE |
# ln -s /usr/local/share/libtool/libltdl/acinclude.m4 acinclude.m4 |
# gmake cd . && aclocal19 ... cd . && automake19 --gnu cd . && autoconf259 /bin/sh ./config.status --recheck running /bin/sh ./configure --no-create --no-recursion checking for a BSD-compatible install... /usr/bin/install -c ... config.status: executing depfiles commands cd . && autoheader259 ... |
# cat config.h /* config.h. Generated by configure. */ /* config.h.in. Generated from configure.ac by autoheader. */ /* Define to 1 if you have the <dlfcn.h> header file. */ #define HAVE_DLFCN_H 1 /* Define to 1 if you have the <inttypes.h> header file. */ #define HAVE_INTTYPES_H 1 /* Define to 1 if you have the <memory.h> header file. */ #define HAVE_MEMORY_H 1 ... |
createFromCvs.freebsd |
#!/bin/sh libtoolize ln -s /usr/local/share/libtool/libltdl/acinclude.m4 acinclude.m4 ${ACLOCAL} ... |
createFromCvs.gentoo |
#!/bin/sh libtoolize ln -s /usr/share/libtool/libltdl/acinclude.m4 acinclude.m4 aclocal ... |
Prev | Home | Next |
Adding a Module | gettext Overview |