tizen 2.4 release accepted/tizen_2.4_mobile tizen_2.4 accepted/tizen/2.4/mobile/20151029.030241 submit/tizen_2.4/20151028.065224 tizen_2.4_mobile_release
authorjk7744.park <jk7744.park@samsung.com>
Sat, 24 Oct 2015 08:21:32 +0000 (17:21 +0900)
committerjk7744.park <jk7744.park@samsung.com>
Sat, 24 Oct 2015 08:21:32 +0000 (17:21 +0900)
.gitignore [new file with mode: 0644]
autogen.sh [new file with mode: 0755]
configure.ac
packaging/baselibs.conf [new file with mode: 0644]
packaging/libXcursor.changes [new file with mode: 0644]
packaging/libXcursor.manifest [new file with mode: 0644]
packaging/libXcursor.spec
src/Makefile.am
src/file.c

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..6d8cab1
--- /dev/null
@@ -0,0 +1,79 @@
+#
+#              X.Org module default exclusion patterns
+#              The next section if for module specific patterns
+#
+#      Do not edit the following section
+#      GNU Build System (Autotools)
+aclocal.m4
+autom4te.cache/
+autoscan.log
+ChangeLog
+compile
+config.guess
+config.h
+config.h.in
+config.log
+config-ml.in
+config.py
+config.status
+config.status.lineno
+config.sub
+configure
+configure.scan
+depcomp
+.deps/
+INSTALL
+install-sh
+.libs/
+libtool
+libtool.m4
+ltmain.sh
+lt~obsolete.m4
+ltoptions.m4
+ltsugar.m4
+ltversion.m4
+Makefile
+Makefile.in
+mdate-sh
+missing
+mkinstalldirs
+*.pc
+py-compile
+stamp-h?
+symlink-tree
+texinfo.tex
+ylwrap
+
+#      Do not edit the following section
+#      Edit Compile Debug Document Distribute
+*~
+*.[0-9]
+*.[0-9]x
+*.bak
+*.bin
+core
+*.dll
+*.exe
+*-ISO*.bdf
+*-JIS*.bdf
+*-KOI8*.bdf
+*.kld
+*.ko
+*.ko.cmd
+*.lai
+*.l[oa]
+*.[oa]
+*.obj
+*.patch
+*.so
+*.pcf.gz
+*.pdb
+*.tar.bz2
+*.tar.gz
+#
+#              Add & Override patterns for libXcursor 
+#
+#              Edit the following section as needed
+# For example, !report.pc overrides *.pc. See 'man gitignore'
+# 
+include/X11/Xcursor/Xcursor.h
diff --git a/autogen.sh b/autogen.sh
new file mode 100755 (executable)
index 0000000..904cd67
--- /dev/null
@@ -0,0 +1,12 @@
+#! /bin/sh
+
+srcdir=`dirname $0`
+test -z "$srcdir" && srcdir=.
+
+ORIGDIR=`pwd`
+cd $srcdir
+
+autoreconf -v --install || exit 1
+cd $ORIGDIR || exit $?
+
+$srcdir/configure --enable-maintainer-mode "$@"
index 16c753b..ee8a500 100644 (file)
@@ -26,7 +26,7 @@ AC_PREREQ([2.60])
 # This is the package version number, not the shared library
 # version.  This version number will be substituted into Xcursor.h
 #
-AC_INIT([libXcursor], [1.1.13],
+AC_INIT([libXcursor], [1.1.14],
         [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],[libXcursor])
 AC_CONFIG_SRCDIR([Makefile.am])
 AC_CONFIG_HEADERS([config.h include/X11/Xcursor/Xcursor.h])
diff --git a/packaging/baselibs.conf b/packaging/baselibs.conf
new file mode 100644 (file)
index 0000000..70ef861
--- /dev/null
@@ -0,0 +1 @@
+libXcursor
diff --git a/packaging/libXcursor.changes b/packaging/libXcursor.changes
new file mode 100644 (file)
index 0000000..c0b9531
--- /dev/null
@@ -0,0 +1,3 @@
+* Mon Mar 18 2013 Anas Nashif <anas.nashif@intel.com> upstream/1.1.13@2104ef8
+- Fixed package groups
+
diff --git a/packaging/libXcursor.manifest b/packaging/libXcursor.manifest
new file mode 100644 (file)
index 0000000..017d22d
--- /dev/null
@@ -0,0 +1,5 @@
+<manifest>
+ <request>
+    <domain name="_"/>
+ </request>
+</manifest>
index 9218a7b..3422373 100644 (file)
@@ -1,6 +1,6 @@
 Summary: Cursor management library
 Name: libXcursor
-Version: 1.1.13
+Version: 1.1.14
 Release: 1
 License: MIT
 Group: System Environment/Libraries
@@ -84,4 +84,4 @@ rm -rf $RPM_BUILD_ROOT
 %{_libdir}/libXcursor.so
 %{_libdir}/pkgconfig/xcursor.pc
 #%dir %{_mandir}/man3x
-#%{_mandir}/man3/Xcursor*.3*
+#%{_mandir}/man3/Xcursor*.3*
\ No newline at end of file
index a44dcb3..a6bee09 100644 (file)
@@ -12,7 +12,7 @@ AM_CFLAGS = \
        -DICONDIR=\"$(ICONDIR)\" \
        -DXCURSORPATH=\"$(XCURSORPATH)\"
 
-INCLUDES = -I$(top_srcdir)/include/X11/Xcursor
+AM_CPPFLAGS = -I$(top_srcdir)/include/X11/Xcursor
 
 #
 # Shared library version info.  This is not the same as the package version
index efe6d4b..ce9de78 100644 (file)
@@ -205,7 +205,7 @@ _XcursorFileHeaderDestroy (XcursorFileHeader *fileHeader)
 }
 
 static XcursorFileHeader *
-_XcursorFileHeaderCreate (int ntoc)
+_XcursorFileHeaderCreate (XcursorUInt ntoc)
 {
     XcursorFileHeader  *fileHeader;