diff options
author | Thomas De Schampheleire <patrickdepinguin@gmail.com> | 2014-02-05 14:50:53 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-02-08 23:25:38 +0100 |
commit | ddf5424fb5ebc609b42ca3b0a29d8a08d5af1b31 (patch) | |
tree | e02b36ea63f819b459e949f42b9259bb2c55c5cb /package/xstroke/xstroke-fix-link-issues.patch | |
parent | 2852f787d0eca3d95b605255e3b58c85760c6d32 (diff) | |
download | buildroot-ddf5424fb5ebc609b42ca3b0a29d8a08d5af1b31.tar.gz buildroot-ddf5424fb5ebc609b42ca3b0a29d8a08d5af1b31.zip |
xstroke: remove deprecated package
xstroke has been deprecated since 2013.02 and thus can be removed in
2014.02.
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/xstroke/xstroke-fix-link-issues.patch')
-rw-r--r-- | package/xstroke/xstroke-fix-link-issues.patch | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/package/xstroke/xstroke-fix-link-issues.patch b/package/xstroke/xstroke-fix-link-issues.patch deleted file mode 100644 index 9a6d71ed17..0000000000 --- a/package/xstroke/xstroke-fix-link-issues.patch +++ /dev/null @@ -1,35 +0,0 @@ -Fix link issues by linking against all needed libraries - -Since gcc 4.6, all libraries that are directly used must be explicitly -passed on the command line. In the case of xstroke, linking against -Xrender, Xext and dl was missing. For the first two, they are added -through addition PKG_CHECK_MODULES() checks, for the latter, it is -added next to -lm and -lpthread in Makefile.am. - -Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> -Index: b/Makefile.am -=================================================================== ---- a/Makefile.am -+++ b/Makefile.am -@@ -40,7 +40,7 @@ - BUILT_SOURCES = rec_parse.h rec_lex.h rec_lex.c - AM_YFLAGS = -d - --xstroke_LDADD = @XSTROKE_LIBS@ -lm -lpthread $(X_LIBS) -lXpm -lXtst -+xstroke_LDADD = @XSTROKE_LIBS@ -ldl -lm -lpthread $(X_LIBS) -lXpm -lXtst - AM_CFLAGS = @XSTROKE_CFLAGS@ -DXSTROKE_CONF_DIR='"$(sysconfdir)/xstroke"' $(X_CFLAGS) - - EXTRA_DIST = xstroke_active.xpm xstroke_inactive.xpm etc/alphabet -Index: b/configure.ac -=================================================================== ---- a/configure.ac -+++ b/configure.ac -@@ -26,7 +26,7 @@ - AC_CHECK_FUNCS([gettimeofday localtime_r]) - - AC_PATH_XTRA --PKG_CHECK_MODULES(XSTROKE, xft) -+PKG_CHECK_MODULES(XSTROKE, [xft xrender xext]) - - AC_CONFIG_FILES([Makefile]) - AC_OUTPUT |