diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2009-12-28 12:56:36 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2009-12-28 12:56:36 +0100 |
commit | 62d218c2368b3ad1e9802075cef06e3f626fb234 (patch) | |
tree | 4804f063c6e29cd1b17097324d6bd262a3c291b5 /package/ncurses/Makefile | |
parent | b3259201a158cb1a571c2a3b2976fbd7b95a4b80 (diff) | |
parent | 03c7aed5dcad2172bbe1bcd311fabb63fbf6dca0 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/ncurses/Makefile')
-rw-r--r-- | package/ncurses/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/package/ncurses/Makefile b/package/ncurses/Makefile index c3997b060..9e9ddf9b5 100644 --- a/package/ncurses/Makefile +++ b/package/ncurses/Makefile @@ -43,12 +43,15 @@ INSTALL_STYLE= auto ALL_TARGET:= libs INSTALL_TARGET:= install.libs install.data +ifeq (${ADK_HOST_CYGWIN},y) +CONFOPT:= --with-shared +endif pre-configure: (cd ${WRKBUILD}; rm -rf config.{cache,status} ; \ ./configure \ + ${CONFOPT} \ --with-build-cc=${HOSTCC} \ - --with-shared \ --with-progs \ ); ${MAKE} -C ${WRKBUILD}/include |