Commit 72080f7e1555878137da2aac337447773e7d131e
1 parent
ca9c58c4
Remove AUL
Change-Id: Id8dbb9439a3259dca94f737934cd711477b95626
Showing
3 changed files
with
1 additions
and
13 deletions
build/tizen/configure.ac
demo/dali-table-view.cpp
| ... | ... | @@ -21,12 +21,7 @@ |
| 21 | 21 | // EXTERNAL INCLUDES |
| 22 | 22 | #include <algorithm> |
| 23 | 23 | #include <sstream> |
| 24 | - | |
| 25 | -#ifdef USE_AUL | |
| 26 | -#include <aul.h> | |
| 27 | -#else | |
| 28 | 24 | #include<unistd.h> |
| 29 | -#endif // USE_AUL | |
| 30 | 25 | |
| 31 | 26 | using namespace Dali; |
| 32 | 27 | using namespace Dali::Toolkit; |
| ... | ... | @@ -715,9 +710,7 @@ void DaliTableView::OnPressedAnimationFinished( Dali::Animation& source ) |
| 715 | 710 | else |
| 716 | 711 | { |
| 717 | 712 | const Example& example( iter->second ); |
| 718 | -#ifdef USE_AUL | |
| 719 | - aul_open_app( example.name.c_str() ); | |
| 720 | -#else // USE_AUL | |
| 713 | + | |
| 721 | 714 | std::stringstream stream; |
| 722 | 715 | stream << DALI_EXAMPLE_BIN << example.name.c_str(); |
| 723 | 716 | pid_t pid = fork(); |
| ... | ... | @@ -726,7 +719,6 @@ void DaliTableView::OnPressedAnimationFinished( Dali::Animation& source ) |
| 726 | 719 | execlp( stream.str().c_str(), example.name.c_str(), NULL ); |
| 727 | 720 | DALI_ASSERT_ALWAYS(false && "exec failed!"); |
| 728 | 721 | } |
| 729 | -#endif // USE_AUL | |
| 730 | 722 | } |
| 731 | 723 | mPressedActor.Reset(); |
| 732 | 724 | } | ... | ... |
packaging/com.samsung.dali-demo.spec
| ... | ... | @@ -18,7 +18,6 @@ BuildRequires: boost-devel |
| 18 | 18 | BuildRequires: pkgconfig |
| 19 | 19 | BuildRequires: pkgconfig(capi-appfw-application) |
| 20 | 20 | BuildRequires: pkgconfig(capi-media-player) |
| 21 | -BuildRequires: pkgconfig(aul) | |
| 22 | 21 | BuildRequires: dali-toolkit-devel |
| 23 | 22 | BuildRequires: dali-adaptor-devel |
| 24 | 23 | BuildRequires: pkgconfig(dlog) | ... | ... |