diff options
author | Chris Larson <clarson@kergoth.com> | 2003-10-27 21:56:32 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2003-10-27 21:56:32 +0000 |
commit | 77b7e2daf37c44b85723b373ea245bf2bba506c7 (patch) | |
tree | 53d5f6824503121c01a3cd2df1556a64d4d18367 /ncurses/ncurses_5.3.oe | |
parent | dfc75d408b9ab582f05b01bb99803609fb4dddc2 (diff) |
configure.patch:
Update lisa's patch to remove a reference to a var that was defined in one of the kde macros.
modutils_2.4.25.oe:
Set sbindir to /sbin for modutils.
ncurses_5.3.oe:
Fix the ncurses build -- just disable the call of auto* for now.
glibc_2.3.2.oe:
Make glibc use the standard autotools class build vs source dir seperation.
tslib.oe:
Dont enable the multievent stuff atm, its page faulting on arm :)
BKrev: 3f9d9490WKCzak7G5KQ4Ek7afaejvw
Diffstat (limited to 'ncurses/ncurses_5.3.oe')
-rw-r--r-- | ncurses/ncurses_5.3.oe | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/ncurses/ncurses_5.3.oe b/ncurses/ncurses_5.3.oe index cb67f1daa5..c7c895772f 100644 --- a/ncurses/ncurses_5.3.oe +++ b/ncurses/ncurses_5.3.oe @@ -24,12 +24,23 @@ EXTRA_OECONF=--with-shared \ --enable-termcap \ --without-cxx-binding \ --with-terminfo-dirs=/etc/terminfo:/usr/share/terminfo \ - --enable-overwrite \ - --program-prefix= + --enable-overwrite export BUILD_CC := ${BUILD_CC} export BUILD_CCFLAGS=-I${S}/ncurses -I${S}/include ${BUILD_CFLAGS} export BUILD_LDFLAGS= +do_configure_prepend () { + if [ -e aclocal.m4 -a ! -e acinclude.m4 ]; then + cat aclocal.m4 > acinclude.m4 + fi +} + +do_configure () { +# override this function to avoid the autoconf/automake/aclocal/autoheader +# calls for now + oe_runconf +} + do_compile () { oe_runmake BUILD_LDFLAGS="" 'BUILD_CCFLAGS=${BUILD_CCFLAGS}' } |