| 1 | | |
| | 1 | apply patch glib-aur.diff |
| | 2 | |
| | 3 | * cp /boot/common/share/libtool/config/config.* |
| | 4 | * add `AC_CONFIG_MACRO_DIR([m4])' to configure.in |
| | 5 | --This must be insterted after any lines containing *_INIT* |
| | 6 | * add ACLOCAL_AMFLAGS = -I m4 in Makefile.am. |
| | 7 | |
| | 8 | * libtoolize --force --copy |
| | 9 | * aclocal |
| | 10 | * automake |
| | 11 | * autoconf |
| | 12 | |
| | 13 | * Remove the following line from configure: GTK_DOC_CHECK(1.8) |
| | 14 | |
| | 15 | * ./configure --prefix=/boot/common LDFLAGS=-L/boot/common/lib CLFLAGS=-I/boot/common/include --disable-threads |
| | 16 | |
| | 17 | {{{ |
| | 18 | From the following files, remove this block of text: |
| | 19 | `/stuff-a/_code/glib-2.18.3/docs/reference/glib/Makefile' |
| | 20 | `/stuff-a/_code/glib-2.18.3/docs/reference/gio/Makefile' |
| | 21 | `/stuff-a/_code/glib-2.18.3/docs/reference/gobject/Makefile' |
| | 22 | # |
| | 23 | # Require gtk-doc when making dist |
| | 24 | # |
| | 25 | @ENABLE_GTK_DOC_TRUE@dist-check-gtkdoc: |
| | 26 | @ENABLE_GTK_DOC_FALSE@dist-check-gtkdoc: |
| | 27 | @ENABLE_GTK_DOC_FALSE@ @echo "*** gtk-doc must be installed and enabled in order to make dist" |
| | 28 | @ENABLE_GTK_DOC_FALSE@ @false |
| | 29 | :end_text |
| | 30 | }}} |
| | 31 | |
| | 32 | * make |
| | 33 | |
| | 34 | {{{ |
| | 35 | --== COMMON ISSUES ==-- |
| | 36 | this error message may occur after runnig libtoolize --force --copy |
| | 37 | /stuff-a/_code/pkg-config-0.23> libtoolize --force --copy |
| | 38 | libtoolize: putting auxiliary files in `.'. |
| | 39 | libtoolize: copying file `./ltmain.sh' |
| | 40 | libtoolize: You should add the contents of the following files to `aclocal.m4': |
| | 41 | libtoolize: `/boot/common/share/aclocal/libtool.m4' |
| | 42 | libtoolize: `/boot/common/share/aclocal/ltoptions.m4' |
| | 43 | libtoolize: `/boot/common/share/aclocal/ltversion.m4' |
| | 44 | libtoolize: `/boot/common/share/aclocal/ltsugar.m4' |
| | 45 | libtoolize: `/boot/common/share/aclocal/lt~obsolete.m4' |
| | 46 | libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.in and |
| | 47 | libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree. |
| | 48 | libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am. |
| | 49 | |
| | 50 | My solution, |
| | 51 | add `AC_CONFIG_MACRO_DIR([m4])' to configure.in |
| | 52 | --This must be insterted after any lines containing *_INIT* |
| | 53 | add ACLOCAL_AMFLAGS = -I m4 in Makefile.am. |
| | 54 | rerunni# 1 "conftest.c" |
| | 55 | }}} |