Initial commit
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
--- a/unix/xserver/hw/vnc/xvnc.c 2013-07-14 14:05:29.963390223 -0400
|
||||
+++ b/unix/xserver/hw/vnc/xvnc.c 2013-07-14 14:04:12.840357191 -0400
|
||||
@@ -250,7 +250,7 @@
|
||||
#if XORG < 111
|
||||
AbortDDX()
|
||||
#else
|
||||
-AbortDDX(enum ExitCode error)
|
||||
+SigAbortDDX(int signo, enum ExitCode error)
|
||||
#endif
|
||||
{
|
||||
#if XORG < 111
|
||||
@@ -260,6 +260,14 @@
|
||||
#endif
|
||||
}
|
||||
|
||||
+#if XORG >= 111
|
||||
+void
|
||||
+AbortDDX(enum ExitCode error)
|
||||
+{
|
||||
+ SigAbortDDX(0, error);
|
||||
+}
|
||||
+#endif
|
||||
+
|
||||
#ifdef __DARWIN__
|
||||
void
|
||||
DarwinHandleGUI(int argc, char *argv[])
|
||||
@@ -0,0 +1,10 @@
|
||||
--- a/unix/xserver/man/Makefile.am 2013-03-30 17:51:01.707258746 -0400
|
||||
+++ b/unix/xserver/man/Makefile.am 2013-03-30 17:51:47.606569692 -0400
|
||||
@@ -2,5 +2,7 @@
|
||||
# (i.e. those handled in the os/utils.c options processing instead of in
|
||||
# the DDX-level options processing)
|
||||
|
||||
+if ENABLE_DOCS
|
||||
include $(top_srcdir)/manpages.am
|
||||
appman_PRE = Xserver.man
|
||||
+endif ENABLE_DOCS
|
||||
@@ -0,0 +1,52 @@
|
||||
--- a/ltmain.sh 2016-05-11 23:23:25.796742323 -0400
|
||||
+++ b/ltmain.sh 2016-05-11 23:24:47.173010324 -0400
|
||||
@@ -6447,6 +6447,9 @@
|
||||
# It is a libtool convenience library, so add in its objects.
|
||||
func_append convenience " $ladir/$objdir/$old_library"
|
||||
func_append old_convenience " $ladir/$objdir/$old_library"
|
||||
+ elif test "$linkmode" != prog && test "$linkmode" != lib; then
|
||||
+ func_fatal_error "\`$lib' is not a convenience library"
|
||||
+ fi
|
||||
tmp_libs=
|
||||
for deplib in $dependency_libs; do
|
||||
deplibs="$deplib $deplibs"
|
||||
@@ -6457,9 +6460,6 @@
|
||||
fi
|
||||
func_append tmp_libs " $deplib"
|
||||
done
|
||||
- elif test "$linkmode" != prog && test "$linkmode" != lib; then
|
||||
- func_fatal_error "\`$lib' is not a convenience library"
|
||||
- fi
|
||||
continue
|
||||
fi # $pass = conv
|
||||
|
||||
--- a/m4/libtool.m4 2016-05-11 23:26:23.801328557 -0400
|
||||
+++ b/m4/libtool.m4 2016-05-11 23:27:12.701489603 -0400
|
||||
@@ -4589,9 +4589,6 @@
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
- linux* | k*bsd*-gnu | gnu*)
|
||||
- _LT_TAGVAR(link_all_deplibs, $1)=no
|
||||
- ;;
|
||||
*)
|
||||
_LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
|
||||
;;
|
||||
@@ -4654,9 +4651,6 @@
|
||||
openbsd*)
|
||||
with_gnu_ld=no
|
||||
;;
|
||||
- linux* | k*bsd*-gnu | gnu*)
|
||||
- _LT_TAGVAR(link_all_deplibs, $1)=no
|
||||
- ;;
|
||||
esac
|
||||
|
||||
_LT_TAGVAR(ld_shlibs, $1)=yes
|
||||
@@ -5055,7 +5049,6 @@
|
||||
if test "$aix_use_runtimelinking" = yes; then
|
||||
shared_flag="$shared_flag "'${wl}-G'
|
||||
fi
|
||||
- _LT_TAGVAR(link_all_deplibs, $1)=no
|
||||
else
|
||||
# not using gcc
|
||||
if test "$host_cpu" = ia64; then
|
||||
@@ -0,0 +1,8 @@
|
||||
## Patches with a number < 100 are applied in debian.
|
||||
## Ubuntu patches start with 100.
|
||||
|
||||
# Ubuntu patches
|
||||
100_rethrow_signals.patch
|
||||
|
||||
# Upstream patches
|
||||
516_tigervnc-xorg-manpages.patch
|
||||
Reference in New Issue
Block a user