Sorry. I fixed. :)

2013년 4월 8일 월요일에 Daniel Juyung Seo님이 작성:

> what is this?
>
> Daniel Juyung Seo (SeoZ)
> On Apr 8, 2013 8:56 AM, "Jaehwan Kim - Enlightenment Git" <
> [email protected]> wrote:
>
> > jaehwan pushed a commit to branch elementary-1.7.
> >
> > commit 62988ff772d47bd66ca76dfd138a1efc45513b6c
> > Author: Jaehwan Kim <[email protected]>
> > Date:   Mon Apr 8 08:55:51 2013 +0900
> >
> >     Quit the scroll animator if the scroller don't have a bounce and
> reach
> > a edge.
> > ---
> >  ChangeLog                                 |   4 +
> >  NEWS                                      |   7 +
> >  cmakeconfig/ElementaryConfig.cmake        |  32 +++++
> >  cmakeconfig/ElementaryConfigVersion.cmake |  11 ++
> >  data/objects/test_prefs.epb               | Bin 0 -> 2548 bytes
> >  src/bin/elementary_codegen                | 228
> > ++++++++++++++++++++++++++++++
> >  src/bin/elm_prefs_cc                      | 228
> > ++++++++++++++++++++++++++++++
> >  src/lib/elm_interface_scrollable.c        |   4 +-
> >  8 files changed, 512 insertions(+), 2 deletions(-)
> >
> > diff --git a/ChangeLog b/ChangeLog
> > index 22bf422..a723315 100644
> > --- a/ChangeLog
> > +++ b/ChangeLog
> > @@ -800,3 +800,7 @@
> >  2013-04-04  Rafael Antognolli
> >
> >          * 1.7.6 release
> > +
> > +2013-04-08  Jaehwan Kim
> > +
> > +        * Quit the scroll animator if the scroller don't have a bounce
> > and reach a edge.
> > diff --git a/NEWS b/NEWS
> > index 1bf12bf..a20fff3 100644
> > --- a/NEWS
> > +++ b/NEWS
> > @@ -1,3 +1,10 @@
> > +Changes since Elementary 1.7.6:
> > +-------------------------
> > +
> > +Fixes:
> > +
> > +   * Quit the scroll animator if the scroller don't have a bounce and
> > reach a edge.
> > +
> >  Elementary 1.7.6
> >
> >  Changes since Elementary 1.7.5:
> > diff --git a/cmakeconfig/ElementaryConfig.cmake
> > b/cmakeconfig/ElementaryConfig.cmake
> > new file mode 100644
> > index 0000000..e41759d
> > --- /dev/null
> > +++ b/cmakeconfig/ElementaryConfig.cmake
> > @@ -0,0 +1,32 @@
> > +# - Try to find elementary
> > +# Once done this will define
> > +#  ELEMENTARY_FOUND - System has elementary
> > +#  ELEMENTARY_INCLUDE_DIRS - The elementary include directories
> > +#  ELEMENTARY_LIBRARIES - The libraries needed to use elementary
> > +#  ELEMENTARY_DEFINITIONS - Compiler switches required for using
> > elementary
> > +
> > +set(MY_PKG elementary)
> > +
> > +find_package(PkgConfig)
> > +if
> > ("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}.${CMAKE_PATCH_VERSION}"
> > VERSION_GREATER "2.8.1")
> > +   # "QUIET" was introduced in 2.8.2
> > +   set(_QUIET QUIET)
> > +endif ()
> > +pkg_check_modules(PC_LIBELEMENTARY ${_QUIET} ${MY_PKG})
> > +
> > +find_library(ELEMENTARY_LIBRARY
> > +             NAMES ${PC_LIBELEMENTARY_LIBRARIES}
> > +             HINTS ${PC_LIBELEMENTARY_LIBDIR}
> > ${PC_LIBELEMENTARY_LIBRARY_DIRS} )
> > +
> > +set(ELEMENTARY_DEFINITIONS ${PC_LIBELEMENTARY_CFLAGS_OTHER})
> > +set(ELEMENTARY_LIBRARIES ${ELEMENTARY_LIBRARY})
> > +set(ELEMENTARY_INCLUDE_DIRS ${PC_LIBELEMENTARY_INCLUDE_DIRS})
> > +
> > +include(FindPackageHandleStandardArgs)
> > +# handle the QUIETLY and REQUIRED arguments and set ELEMENTARY_FOUND to
> > TRUE
> > +# if all listed variables are TRUE
> > +find_package_handle_standard_args(${MY_PKG} DEFAULT_MSG
> > +   ELEMENTARY_LIBRARIES ELEMENTARY_INCLUDE_DIRS)
> > +
> > +mark_as_advanced(ELEMENTARY_INCLUDE_DIRS ELEMENTARY_LIBRARY
> > ELEMENTARY_LIBRARIES ELEMENTARY_DEFINITIONS)
> > +
> > diff --git a/cmakeconfig/ElementaryConfigVersion.cmake
> > b/cmakeconfig/ElementaryConfigVersion.cmake
> > new file mode 100644
> > index 0000000_______________________________________________
> enlightenment-devel mailing list
> [email protected] <javascript:;>
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
------------------------------------------------------------------------------
Minimize network downtime and maximize team effectiveness.
Reduce network management and security costs.Learn how to hire 
the most talented Cisco Certified professionals. Visit the 
Employer Resources Portal
http://www.cisco.com/web/learning/employer_resources/index.html
_______________________________________________
enlightenment-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to