Changes between Version 23 and Version 24 of PortingTips
- Timestamp:
- 04/20/10 18:35:20 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PortingTips
v23 v24 25 25 cp /boot/common/share/libtool/config/config.* . 26 26 }}} 27 Where . is the package root folder, or the folder in which the package has outdated config.guess and/or config.sub files. If trying to build static and shared libraries, you may also need to run (try using {{{ ./autogen.sh}}} first if it exists, it usually runs all the autotools as needed):27 Where . is the package root folder, or the folder in which the package has outdated config.guess and/or config.sub files. If trying to build static and shared libraries, you may also need to run (try using {{{'''./autogen.sh'''}}} or {{{'''./bootstrap.sh'''}}} first if it exists, it usually runs all the autotools as needed): 28 28 {{{ 29 29 libtoolize --force --copy --install … … 32 32 autoconf 33 33 }}} 34 35 or 36 37 {{{ 38 libtoolize --force --copy --install 39 autoreconf -i 40 }}} 41 34 42 Which "should" force the Haiku cases into your configure file. You might have to use other options to get aclocal/automake/autoconf to do this successfully. 35 43
