aboutsummaryrefslogtreecommitdiffstats
path: root/cursor/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
* build: Move cursor Makefile.am into toplevel Makefile.amKristian Høgsberg2014-03-061-21/+0
|
* Ensure cursor_data.c is included in distribution tarballsMatt Roper2012-10-091-0/+1
| | | | Signed-off-by: Matt Roper <matthew.d.roper@intel.com>
* cursor: use os_create_anonymous_file()Pekka Paalanen2012-07-101-0/+2
| | | | | | | Copy the implementation of os_create_anonymous_file() here from weston, so we can use it instead of hardcoding a path to /tmp. Signed-off-by: Pekka Paalanen <ppaalanen@gmail.com>
* wayland-cursor: add an option that changes the cursor theme directoryAnder Conselvan de Oliveira2012-06-081-1/+5
| | | | | | Some distros (e.g. gentoo) install cursor themes in non-standard directories. Add option --with-icondir to configure.sh that sets the directory in which to look for cursors.
* cursor: Fix warning with objdir != srcdir buildDaniel Stone2012-05-311-1/+1
| | | | | | | | Make sure we find the right include paths. krh: Edited to use $(top_builddir) Signed-off-by: Daniel Stone <daniel@fooishbar.org>
* cursor: Link libwayland-cursor to libwayland-clientRob Bradford2012-05-291-1/+1
| | | | | | LDADD is only used when linking programs not libraries. Spotted-by: Pekka Paalanen <ppaalanen@gmail.com>
* Introduce libwayland-cursor, a cursor helper libraryAnder Conselvan de Oliveira2012-05-221-0/+14
The purpose of this library is to be the equivalent of libXcursor in the X world. This library is compatible with X cursor themes and loads them directly into an shm pool making it easy for the clients to get buffer for each cursor image. The code for handling the X cursor theme was taken from libXcursor. The files cursor/xcursor.[ch] are a stripped down version of that library containing only the interfaces necessary for implementing the wayland counterpart.