summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2018-11-16Update README for gitlab migrationHEADmasterAlan Coopersmith2-13/+5
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2015-04-16proxymngr 1.0.4proxymngr-1.0.4Alan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2014-11-08Stop checking if pointers are NULL before passing them to free()Alan Coopersmith3-78/+39
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2014-11-08Stop casting results of malloc callsAlan Coopersmith4-16/+16
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2014-11-08Replace last strcpy call + manual append with snprintf callAlan Coopersmith1-5/+3
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2014-11-08Replace malloc(strlen)+strcpy sets with strdup callsAlan Coopersmith2-14/+7
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2014-11-08Ensure memory is initialized before use in PushRequestorQueueAlan Coopersmith1-4/+2
If authLen <= 0, then we weren't initializing the authName & authData pointers until after checking if all the allocations succeeded, but if any allocations failed, we'd then try to free them before that. Error: Uninitialised memory (CWE 456) Possible access to uninitialised memory '&newreq->authData' at line 590 of pmdb.c in function 'PushRequestorQueue'. &newreq->authData allocated at line 559. &newreq->authData uninitialised when authLen <= 0 at line 568. at line 591 of pmdb.c in function 'PushRequestorQueue'. &newreq->authData allocated at line 559. &newreq->authData uninitialised when authLen <= 0 at line 568 and newreq->authName == NULL at line 574. Possible access to uninitialised memory '&newreq->authName' at line 588 of pmdb.c in function 'PushRequestorQueue'. &newreq->authName allocated at line 559. &newreq->authName uninitialised when authLen <= 0 at line 568. at line 589 of pmdb.c in function 'PushRequestorQueue'. &newreq->authName allocated at line 559. &newreq->authName uninitialised when authLen <= 0 at line 568 and newreq->authName != NULL at line 574. [ This bug was found by the Parfait 1.5.1 bug checking tool. http://labs.oracle.com/pls/apex/f?p=labs:49:::::P49_PROJECT_ID:13 ] 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-04-01Assume signal handlers return void, as C89 requiresAlan Coopersmith1-6/+1
Drops use of Imake's obsolete SIGNALRETURNSINT. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-02-10proxymngr 1.0.3proxymngr-1.0.3Alan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-01-04install: Use sysconfdir instead of libdir for config files.Egbert Eich1-1/+1
Most X packages today install their config files in sysconfigdir, only a few are left which still put their configuration in libdir. Signed-off-by: Egbert Eich <eich@freedesktop.org> Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-01-04man: Set correct config file location in man pageEgbert Eich2-1/+4
Change the config file location from a hard coded path to what is set during build. Signed-off-by: Egbert Eich <eich@freedesktop.org> Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2012-04-16Mark Usage() with _X_NORETURN to silence gcc warningAlan Coopersmith2-2/+2
main.c: In function ‘Usage’: main.c:75:1: warning: function might be possible candidate for attribute ‘noreturn’ Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2012-04-16Add const qualifiers to clear gcc -Wwrite-strings warningsAlan Coopersmith4-17/+15
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2011-02-18config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERSAlan Coopersmith1-4/+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-18Add $(AM_V_GEN) to silence pmconfig creation ruleAlan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2011-02-18proxymngr depends on xproto, not x11 (Xlib)Alan Coopersmith1-1/+1
proxymngr doesn't include any Xlib headers or call any Xlib functions directly, but does include Xos.h, Xfuncs.h & Xmd.h from xproto. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-10-30proxymngr 1.0.2proxymngr-1.0.2Alan Coopersmith1-1/+2
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-10-30Purge CVS version tagsAlan Coopersmith8-14/+0
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-10-30config: 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>
2010-10-30config: Remove unnecessary calls from configure.acAlan Coopersmith2-3/+1
PKG_CONFIG_MODULES handles AC_SUBST of the CFLAGS & LIBS variables Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-10-30config: upgrade to util-macros 1.8 for additional man page supportAlan Coopersmith2-28/+5
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 The existing statement can now be removed from the configuration file. Use automake provided $(AM_V_GEN) and XORG_DEFAULT_OPTIONS provided $(SED) Enables silent rule and use platform appropriate version of sed. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-10-30Deploy the new XORG_DEFAULT_OPTIONSAlan Coopersmith1-11/+5
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-08-06Fill in COPYING file with copyright notices from source codeAlan Coopersmith1-8/+19
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2009-10-01Add README with pointers to mailing lists, bugzilla, & gitAlan Coopersmith1-0/+30
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2009-01-16Ansification and compile warning fixes.Paulo Cesar Pereira de Andrade4-77/+42
This also uses XORG_CHANGELOG and XORG_CWARNFLAGS, corrects make distcheck and most gcc 4.3 and sparse warnings.
2007-12-06Replace static ChangeLog with dist-hook to generate from git logJames Cloos2-31/+10
2007-09-03Add *~ to .gitignore to skip patch/emacs droppingsJames Cloos1-0/+1
2007-08-23Rename .cvsignore to .gitignoreJames Cloos1-0/+0
2006-06-26From Patch #6046 <https://bugs.freedesktop.org/attachment.cgi?id=6046>Alan Coopersmith2-2/+6
Remove redundant setting of ai to NULL. (Peter Breitenlohner)
2005-12-21Update package version for X11R7 release.proxymngr-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.proxymngr-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-2/+5
2005-11-20Add/improve .cvsignore files for apps.Eric Anholt1-0/+17
2005-10-19Update package version number for RC1 release.XORG-6_99_99_902XORG-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-08-25Partial clean up of symlink.sh script Remove dup protocol files inKevin E Martin1-3/+1
app/proxymngr (found during symlink.sh cleanup)
2005-08-13Add #ifdef HAVE_CONFIG_H/#include "xconfig.h" for modularization.XORG-6_8_99_903XORG-6_8_99_902XORG-6_8_99_901Alan Coopersmith1-0/+4
2005-08-13Add checks for strcasecmp & IPv6Alan Coopersmith1-0/+7
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-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-20Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a globalAdam Jackson2-5/+5
configure cache, you cache it, and the cached value is probably wrong.
2005-07-16- lbxproxy/configure.ac: Add XTRANS_CONNECTION_FLAGS so lbxtransport.cAlan Coopersmith2-2/+2
builds - proxymngr/Makefile.am: Replace $< with portable construct - lbxproxy/configure.ac: - proxymngr/configure.ac: - xfwp/configure.ac: Add xproxymngproto to PKG_CHECK_MODULES