author | mickeyl <mickeyl> | 2003-01-23 21:48:51 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2003-01-23 21:48:51 (UTC) |
commit | 43613e89c7844a328088d54c9d183508dad8a25b (patch) (side-by-side diff) | |
tree | 02ea9c768569d9db4c2aa98eebae1f1503e83d9a | |
parent | bd91bd009b88ce6ac4d6d542490b24c7f8ee6d61 (diff) | |
download | opie-43613e89c7844a328088d54c9d183508dad8a25b.zip opie-43613e89c7844a328088d54c9d183508dad8a25b.tar.gz opie-43613e89c7844a328088d54c9d183508dad8a25b.tar.bz2 |
fix .pro files for new buildsystem
ensure libmail and bend gets build before the mail app
-rw-r--r-- | noncore/unsupported/mail2/config.in | 5 | ||||
-rw-r--r-- | noncore/unsupported/mail2/libmail/libmail.pro | 4 | ||||
-rw-r--r-- | noncore/unsupported/mail2/mail.pro | 4 |
3 files changed, 7 insertions, 6 deletions
diff --git a/noncore/unsupported/mail2/config.in b/noncore/unsupported/mail2/config.in index b584be3..af0fa3c 100644 --- a/noncore/unsupported/mail2/config.in +++ b/noncore/unsupported/mail2/config.in @@ -1,12 +1,13 @@ config OPIEMAIL2 boolean "opiemail" default "y" - depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE + depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE && BEND && LIBMAIL config MAIL boolean default "y" if OPIEMAIL depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE && BEND && LIBMAIL - + + source noncore/mail/bend/config.in source noncore/mail/libmail/config.in diff --git a/noncore/unsupported/mail2/libmail/libmail.pro b/noncore/unsupported/mail2/libmail/libmail.pro index 05a9773..5f8e590 100644 --- a/noncore/unsupported/mail2/libmail/libmail.pro +++ b/noncore/unsupported/mail2/libmail/libmail.pro @@ -1,6 +1,6 @@ TEMPLATE = lib -CONFIG = qt warn_on debug -#CONFIG = qt warn_on release +CONFIG += qt warn_on debug +#CONFIG += qt warn_on release HEADERS = configfile.h \ defines.h \ imapbase.h \ diff --git a/noncore/unsupported/mail2/mail.pro b/noncore/unsupported/mail2/mail.pro index 407545f..faaec9c 100644 --- a/noncore/unsupported/mail2/mail.pro +++ b/noncore/unsupported/mail2/mail.pro @@ -1,6 +1,6 @@ TEMPLATE = app -CONFIG = qt warn_on debug -#CONFIG = qt warn_on release +CONFIG += qt warn_on debug +#CONFIG += qt warn_on release HEADERS = accounteditor.h \ addresspicker.h \ composer.h \ |