aboutsummaryrefslogtreecommitdiff
path: root/debian
Commit message (Collapse)AuthorAgeFilesLines
* Create Windows and fix drawing issues on Big Endian 64bit systems ↵Mihai Moldovan2015-02-102-71/+0
| | | | | | | | | | | | | | | | | | | (057_nx-X11_sanitize-eventmasks.full.patch). Multiple endiannes issues were setting incorrect event masks when creating and drawing X11 windows. This time, a smaller integer has been casted to a bigger one and passed to some function actually setting its value. This meant, that garbage from stack was attached to the smaller integer value, putting unknown memory into the lower bytes of the bigger integer. Fix this by creating a big, initialized temporary variable, let the function do its magic on that one and pass the value back to the smaller variable--and cross your fingers the smaller variable can hold it without overrunning. (The last bit is a design issue we can't really fix and has been around even before this patch.)
* Fix -Werror=format-security errors ↵Orion Poplawski2015-02-092-108/+0
| | | | | | | | (056_nx-X11_Werror-format-security.full.patch). The below patch fixes more -Werror=format-security errors. Interestingly, most of the errors only showed up on our arm builds. No idea why.
* Fix FTBFS when compiled with -Werror=format-security ↵Orion Poplawski2015-02-092-1091/+0
| | | | (055_nx-X11_imake-Werror-format-security.full.patch).
* Fix FTBFS on ppc64 architecture (054_nx-X11_ppc64-ftbfs.full.patch).Orion Poplawski2015-02-092-15/+0
|
* Avoid building libXcomp.so.1 (which is identical to libXcomp.so.3), ↵Orion Poplawski2015-02-092-33/+0
| | | | (053_nx-X11_no-xcomp1-install-target.full.patch).
* Fix nxauth location on Mac OS X 10 ↵Mihai Moldovan2015-02-092-42/+0
| | | | (052_nxcomp_macos10-nxauth-location.full+lite.patch)
* workaround for Mac OS X 10.5 (051_nxcomp_macos105-fdisset.full+lite.patch(Mihai Moldovan2015-02-092-83/+0
| | | | | | | | | | | The Mac OS X 10.5 SDK requires the second argument of FD_ISSET to be writeable, although it does only access the data. Given that we have a const pointer for a const struct, copy and pass that. . Note that this is merely a workaround for OS X 10.5, as 10.6 and later define the second argument of FD_ISSET as const struct const *foo, too. . It is safe, as data is accessed read-only by FD_ISSET, even on 10.5.
* Description: Enable parallel make (031_nx-X11_parallel-make.full.patch).Jan Engelhardt2015-02-092-201/+0
| | | | | | Restore ability to build things in parallel. (${MAKE} must always appear in the rule directly, and not be hidden through expansions of other variables to get this to work.)
* Allow to pass in configure args (030_nx-X11_configure-args.full.patch).Jan Engelhardt2015-02-092-52/+0
|
* Fix BIGENDIAN issue in nxcomp (relevant on PPC64 arch) ↵Mihai Moldovan2015-02-092-18/+0
| | | | (029_nxcomp_ppc64.full+lite.patch)
* Support abstract local sockets for Linux systems ↵Mike Gabriel2015-02-092-322/+0
| | | | | | (028_nx-X11_abstract-kernel-sockets.full.patch). Relevant code taken from xtrans 1.2.7 on 2014-06-11.
* Add X11 abstract socket support to nxcomp/nxproxy ↵Mike Gabriel2015-02-092-60/+0
| | | | (027_nxcomp_abstract-X11-socket.full+lite.patch).
* Honour compiler/linker option flags.Orion Poplawski2015-02-094-68/+0
| | | | | | 026_nxcompext_honour-optflags.full.patch 026_nxcomp_honour-optflags.full+lite.patch 026_nxcompshad_honour-optflags.full.patch
* Fix FTBFS against libjpeg9a ↵Gabriel Marcano2015-02-092-41/+0
| | | | (025_nxcomp-fix-ftbfs-against-jpeg9a.full+lite.patch).
* nxcomp*, nxproxy: Fix clean-up of source tree via Makefile.in templates.Mike Gabriel2015-02-093-72/+0
| | | | | 024_fix-make-clean.full.patch 024_fix-make-clean.full+lite.patch
* FHS adaptation for Debian packaging (016_nx-X11_install-location.full.patch).Mike Gabriel2015-02-092-155/+0
| | | | | | | | | From tarball, NX libraries and binaries are installed to /usr/local/lib/nx. . FIXME: The paths in this patch get superceded by current build logic in nx-libs.spec and debian/rules. This should be merged into the NX build logic finally.
* nxcomp*,nxproxy: Add clean rules to Makefile.in templates.Mike Gabriel2015-02-095-254/+0
|
* Work on man pages.Mike Gabriel2015-02-094-198/+0
| | | | | | 009_nxproxy_add-man-page.full+lite.patch 009_nxagent_add-man-page.full.patch 010_nxauth_fix-binary-name-in-man-page.full.patch
* sa_restorer vs. memset (008_nxcomp_sa-restorer.full+lite.patch).Mike Gabriel2015-02-092-47/+0
| | | | | | Use memset instead of setting sa_restorer to NULL. Original-Author: Alexander Morozov
* Remove .gch files during cleanup (007_nxcompshad_clean-gch-files.full.patch).Mike Gabriel2015-02-092-18/+0
| | | | | When building nxcompshad .gch files get created. On cleanup these should be removed.
* Fix building against libpng 1.5 (006_nxcomp_libpng15.full+lite.patch).Mike Gabriel2015-02-092-44/+0
| | | | | | | | | | | | | | | From the libpng homepage... The libpng 1.5.x series continues the evolution of the libpng API, finally hiding the contents of the venerable and hoary png_struct and png_info data structures inside private (i.e., non-installed) header files. Instead of direct struct-access, applications should be using the various png_get_xxx() and png_set_xxx() accessor functions, which have existed for almost as long as libpng itself. (Apps that compiled against libpng 1.4 without warnings about deprecated features should happily compile against 1.5, too. Patch origin: Fedora packagers of libXcomp3.
* Description: gcc43 fix (005_nxcomp_gcc43.full+lite.patch)Marcelo Boveto Shima2015-02-092-78/+0
| | | | Use builtin includes to build with gcc43.
* Description: Fix build on Debian (004_nx-X11_fix-nxcompshad-build.full.patch)Mike Gabriel2015-02-092-19/+0
| | | | | | By an unknown reason this patch currently is needed to build nx-X11, nxcomp, nxcompshad and nxcompext with dpkg-buildpackage and debuild.
* gcc43 fix (003_nxcompshad_gcc43.full.patch)Marcelo Boveto Shima2015-02-092-34/+0
| | | | Use builtin includes to build with gcc43.
* Build nxcompshad against nx-X11 ↵Mike Gabriel2015-02-092-40/+0
| | | | | | | | | (002_nxcompshad_build-against-nx-x11-only.full.patch). Make sure nxcompshad get built against nx-X11. . Furthermore /usr/X11R6/lib is an outdated path on current Debian systems.
* Provide README.NX-development file. Drop README.NX-redistribution file.Mike Gabriel2015-02-092-49/+0
|
* fix long-line in changelogMike Gabriel2015-02-091-1/+2
|
* Drop not-used-anymore NX source tree clean-up code. Source tree has been ↵Mike Gabriel2015-02-092-55/+0
| | | | cleaned up natively.
* Revert "Add patch ↵Mike Gabriel2015-02-093-55/+0
| | | | | | | | | 700_nx-X11_mesa-initialize-server-support-correctly.full.patch. Initialize server_support array with correct size. Fix Mesa upstream bugzilla bug #7353. (Fixes: #776)." This reverts commit 4db6f0fdba904d00c1cfc3909b9b2c09655abf87. Reason: the file nx-X11/extras/Mesa/src/glx/x11/glxextensions.c is not used at build time and has been removed from the code base in NX 3.6.
* Add patch 700_nx-X11_mesa-initialize-server-support-correctly.full.patch. ↵Mike Gabriel2015-02-033-0/+55
| | | | Initialize server_support array with correct size. Fix Mesa upstream bugzilla bug #7353. (Fixes: #776).
* Update 991_fix-hr-typos.full.patch. Don't patch files that get removed by ↵Mike Gabriel2015-02-021-40/+0
| | | | the NX code reduction effort.
* Drop 604_nx-X11_recent-freetype-API.full.patch. Not used in current build ↵Mike Gabriel2015-02-022-16/+0
| | | | process.
* Update 600_nx-X11+nxcompext+nxcompshad_unique-libnames.full.patch. Don't ↵Mike Gabriel2015-02-021-24/+0
| | | | patch files matter to the NX code reduction efforts.
* Update 031_nx-X11_parallel-make.full.patch. Don't patch .original files in ↵Mike Gabriel2015-02-021-28/+0
| | | | NX code tree.
* Drop patches: 017_nx-X11_update-autotools-helper-files.full.patch, ↵Mike Gabriel2015-02-024-24562/+0
| | | | 018_nx-X11_update-libtool-ltmain-script.full.patch, 019_nx-X11_expat-build-against-system-libxmltok.full.patch. They patch files that are not used at build time.
* empty CODE-REDUCTION_* files (maybe usable later for futher code reduction ↵Mike Gabriel2015-02-026-1004/+0
| | | | efforts
* On SLE 11.x: libX* packages are prefixed with "xorg-x11-".Mike Gabriel2015-02-021-0/+1
|
* Assure that BuildRoot: is set.Mike Gabriel2015-01-291-0/+1
|
* nx-libs.spec: Set PREFIX=%{_prefix} USRLIBDIR=%{_libdir} SHLIBDIR=%{_libdir} ↵Mike Gabriel2015-01-291-0/+1
| | | | at build time.
* Don't fail if removing *.a files fails due to the files being non-present.Mike Gabriel2015-01-291-0/+1
|
* Makefile.nx-libs: fix faulty path to nxproxy.1 man pageMike Gabriel2015-01-291-1/+1
|
* nx-libs.spec: several dependency fixes...Mike Gabriel2015-01-291-0/+3
| | | | | | + Add Obsoletes: fields to all shared libs for marking the non-versioned library package (names) as obsolete. + Don't depend on nx-libs base package with fixed version.
* Make libNX_X11-6 and libXinerama1 compliant to Shared Library Policy.Mike Gabriel2015-01-291-0/+1
|
* nx-libs.spec: Install man pages into bin:packages.Mike Gabriel2015-01-291-0/+1
|
* Makefile.nx-libs: Install man pages via main Makefile.Mike Gabriel2015-01-2910-6/+17
|
* nx-libs.spec: Mention NX technology in every package description.Mike Gabriel2015-01-291-0/+1
|
* Support .symbols for 64bit and 32bit alike.Mike Gabriel2015-01-292-5/+6
|
* Use SONAME based library package naming scheme.Mike Gabriel2015-01-281-0/+1
|
* Revert "Use SONAME based library package naming scheme."Mike Gabriel2015-01-282-2/+1
| | | | This reverts commit 1e5c83e8bcdf29539667168e20b787585097f680.
* Use SONAME based library package naming scheme.Mike Gabriel2015-01-282-1/+2
|