summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2018-11-16Update README for gitlab migrationHEADmasterAlan Coopersmith2-12/+5
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2018-11-10Remove obsolete B16 & B32 tags in struct definitionAlan Coopersmith1-4/+4
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2015-04-22Ensure lbxMaxServers stays within a reasonable rangeAlan Coopersmith1-0/+6
Avoid opportunity for integer overflow when allocating servers array. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
2014-11-08Use SEEK_* names instead of raw numbers for fseek whence argumentAlan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2014-06-02autogen.sh: Honor NOCONFIGURE=1Alan Coopersmith1-2/+3
See http://people.gnome.org/~walters/docs/build-api.txt Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2014-06-02configure: Drop AM_MAINTAINER_MODEAlan Coopersmith2-2/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2014-06-02This is not a GNU project, so declare it foreign.Alan Coopersmith4-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-12-30Add AC_USE_SYSTEM_EXTENSIONS to expose non-standard extensionsAlan Coopersmith1-0/+5
Required on Solaris to expose fd_mask in <sys/select.h> now that xtrans 1.3 defines _XOPEN_SOURCE to 600 on Solaris, since fd_mask is not defined in that version of the XPG standards. Fixes build failure: os/connection.c: In function ‘CreateServerSockets’: os/connection.c:335:10: error: ‘fd_mask’ undeclared (first use in this function) os/connection.c:335:10: note: each undeclared identifier is reported only once for each function it appears in os/connection.c: In function ‘ListenWellKnownSockets’: os/connection.c:416:5: error: ‘fd_mask’ undeclared (first use in this function) os/connection.c: In function ‘EstablishNewConnections’: os/connection.c:562:5: error: ‘fd_mask’ undeclared (first use in this function) os/connection.c: In function ‘CloseDownFileDescriptor’: os/connection.c:684:10: error: ‘fd_mask’ undeclared (first use in this function) os/connection.c: In function ‘CheckConnections’: os/connection.c:701:5: error: unknown type name ‘fd_mask’ os/connection.c:711:17: error: ‘fd_mask’ undeclared (first use in this function) os/connection.c: In function ‘OnlyListenToOneClient’: os/connection.c:770:2: error: ‘fd_mask’ undeclared (first use in this function) os/connection.c: In function ‘ListenToAllClients’: os/connection.c:801:2: error: ‘fd_mask’ undeclared (first use in this function) Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Daniel Stone <daniel@fooishbar.org>
2013-02-10lbxproxy 1.0.3lbxproxy-1.0.3Alan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-01-03install: Use sysconfdir instead of libdir for config files.Egbert Eich1-2/+3
Most X packages today install their config files in sysconfigdir, only a few are left which still put their configuration in libdir. Fix and consolidate setting of the config dir in one place. Signed-off-by: Egbert Eich <eich@freedesktop.org>
2012-05-23Add const qualifiers to silence some gcc -Wwrite-strings warningsAlan Coopersmith2-5/+5
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2012-05-23Cast pointer to long instead of intAlan Coopersmith1-1/+1
Matches the cast passed in ((pointer)(long) server->index on line 1276) Fixes gcc error: di/wire.c:1119:27: error: cast from pointer to integer of different size Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2011-02-18Add standard url's to READMEAlan Coopersmith1-0/+26
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2011-02-18config: replace obsolete usage of AC_OUTPUT with AC_CONFIG_FILESAlan Coopersmith1-1/+2
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2011-02-18config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERSAlan Coopersmith1-6/+8
Regroup AC statements under the Autoconf initialization section. Regroup AM statements under the Automake initialization section. Add missing AC_CONFIG_SRCDIR Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2011-02-18config: upgrade to util-macros 1.8 for additional man page supportAlan Coopersmith2-22/+4
Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS The value of MAN_SUBST is the same for all X.Org packages. Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS Enables use of platform appropriate version of sed. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2011-02-18config: update AC_PREREQ statement to 2.60Gaetan Nadon1-1/+1
Unrelated to the previous patches, the new value simply reflects the reality that the minimum level for autoconf to configure all x.org modules is 2.60 dated June 2006. ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz Signed-off-by: Gaetan Nadon <memsize@videotron.ca> Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2011-02-18config: Remove unnecessary calls from configure.acAlan Coopersmith1-8/+0
XORG_MANPAGE_SECTIONS, XORG_RELEASE_VERSION, XORG_CHANGELOG, AC_PROG_CC & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2011-02-18Don't link directly against libzAlan Coopersmith1-2/+0
lbxproxy doesn't call libz directly, it calls liblbxutil functions, so gets libz as a dependency of liblbxutil either via ELF shared object dependencies or pkg-config Libs.private for static links. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-08-06Fill in COPYING file with copyright notices from source codeAlan Coopersmith1-8/+103
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2009-11-02lbxproxy 1.0.2lbxproxy-1.0.2Alan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2009-11-02Fix compatibility with libXext 1.1 / xextproto 7.1 headersAlan Coopersmith9-6/+41
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2009-11-02Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONSAlan Coopersmith2-7/+20
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2009-11-02Rename lbx.h to lbxproxy.h to avoid conflict with new lbx.h in xextproto 7.1Alan Coopersmith23-27/+27
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2009-01-16Ansification and compile warning fixes.Paulo Cesar Pereira de Andrade41-1606/+887
This also uses XORG_CHANGELOG and XORG_CWARNFLAGS, corrects make distcheck and all gcc 4.3 and sparse warnings. To avoid warnings, several changes in the pseudo patch format - static int foo(); - static int foo(type *arg) { ... } + static int foo(void *); + static int foo(void *_arg) { type *arg = _arg; ... } were made, and all function pointer structure fields and arguments were also "ansified".
2007-12-06Replace static ChangeLog with dist-hook to generate from git logJames Cloos2-51/+10
2007-09-03Add *~ to .gitignore to skip patch/emacs droppingsJames Cloos1-0/+1
2007-08-23Rename .cvsignore to .gitignoreJames Cloos1-0/+0
2006-11-20Bug 7317: xfs doesn't build on some GLIBC based systems: _XOPEN_SOURCE undefinedJ.P. Larocque1-1/+1
Bug 7317: <https://bugs.freedesktop.org/show_bug.cgi?id=7317>
2006-06-26From Patch #6046 <https://bugs.freedesktop.org/attachment.cgi?id=6046>Alan Coopersmith2-1/+8
Ensure ai is initialized to NULL. (Peter Breitenlohner)
2005-12-21Update package version for X11R7 release.lbxproxy-1.0.1XORG-7_1XORG-7_0_99_901XORG-7_0Kevin E Martin2-1/+6
2005-12-19Stub COPYING filesAdam Jackson1-0/+12
2005-12-15Update package version number for final X11R7 release candidate.lbxproxy-1.0.0XORG-6_99_99_904Kevin E Martin2-1/+6
2005-12-06Change *man_SOURCES ==> *man_PRE to fix autotools warnings.MODULAR_COPYKevin E Martin2-3/+8
2005-12-03Update package version number for X11R7 RC3 release.XORG-6_99_99_903Kevin E Martin2-1/+6
2005-11-28Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4Alan Coopersmith1-1/+1
update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)
2005-11-21Another pass at .cvsignores for apps.Eric Anholt1-0/+2
2005-11-20Add/improve .cvsignore files for apps.Eric Anholt1-0/+17
2005-11-09Update package version number for X11R7 RC2 release.XORG-6_99_99_902Kevin E Martin2-1/+6
2005-11-01Update pkgcheck depedencies to work with separate build roots.Kevin E Martin2-1/+6
2005-10-19Update package version number for RC1 release.XORG-6_99_99_901Kevin E Martin2-1/+6
2005-10-17Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions toAlan Coopersmith1-1/+1
work better with BSD make
2005-10-14Use sed to fill in variables in man pageAlan Coopersmith2-1/+33
2005-10-04Install AtomControl config fileKevin E Martin2-0/+7
2005-09-28add design and lbxproxy.def.Kristian Høgsberg3-0/+23
Copy first two paragraphs from man page.
2005-08-27Fixes for running X Test Suite via lbxproxy:XORG-6_8_99_903XORG-6_8_99_902XORG-6_8_99_901Alan Coopersmith4-6/+31
- Failure for Xproto/GetProperty [Sun bug #4432077] - lbxproxy crash on Xlib5/XGetWindowProperty [Sun bug #4416964] - lbxproxy crash on Xlib7/XCreateColormap-10 [Sun bug #4431077] - lbxproxy crash on Xproto tests for bad length [Sun bug #4414232] (Derek Wang - Sun Microsystems)
2005-08-01Install man pages to section 1 instead of section m (Patch from DonnieXORG-6_99_99_900Alan Coopersmith1-1/+1
Berkholz)
2005-07-30Add -D flags to clear more compiler warnings (Stefan Dirsch)Alan Coopersmith1-1/+3
2005-07-29Various changes preparing packages for RC0:Kevin E Martin1-1/+3
- Verify and update package version numbers as needed - Implement versioning scheme - Change bug address to point to bugzilla bug entry form - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to reenable it) - Fix makedepend to use pkgconfig and pass distcheck - Update build script to build macros first - Update modular Xorg version
2005-07-27Fix os detection and OS_CFLAGSKevin E Martin1-2/+3