summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2010-05-07Use stdint.h instead of limits.h for UINT*_MAX definitionsHEADmasterAlan Coopersmith8-8/+8
While Solaris allows either one, C99 only requires them in stdint.h and some platforms don't include them via limits.h Corrects tinderbox reported errors on Fedora 11 build machine: http://tinderbox.x.org/builds/2010-05-06-0019/logs/libXdmcp/#build AA32.c: In function 'XdmcpAllocARRAY32': AA32.c:47: error: 'UINT8_MAX' undeclared (first use in this function) AA8.c: In function 'XdmcpAllocARRAY8': AA8.c:47: error: 'UINT16_MAX' undeclared (first use in this function) Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Compiles clean on GNU/Linux AMD64 Tested-by: Gaetan Nadon <memsize@videotron.ca>
2010-05-05Deal with lint warnings about implicit narrowing conversionsAlan Coopersmith9-10/+49
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Matt Turner <mattst88@gmail.com>
2010-05-05unifdef LynxAlan Coopersmith2-8/+0
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Matt Turner <mattst88@gmail.com>
2010-05-05XdmcpARRAY8Equal: Use memcmp instead of rolling our ownAlan Coopersmith1-5/+2
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Matt Turner <mattst88@gmail.com>
2010-05-05Constify function prototypesAlan Coopersmith9-17/+17
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Matt Turner <mattst88@gmail.com>
2010-03-29config: 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>
2010-03-29config: remove the pkgconfig pc.in file from EXTRA_DISTGaetan Nadon1-1/+1
Automake always includes it in the tarball. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-03-20make: remove unrequired -I${top_builddir}/includeGaetan Nadon1-3/+0
The -I${top_srcdir}/include in AM_CFLAGS is the correct one. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-02-16config: move CWARNFLAGS from configure.ac to Makefile.amGaetan Nadon2-4/+5
Compiler warning flags should be explicitly set in the makefile rather than being merged with other packages compiler flags. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2009-11-27Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILESGaetan Nadon1-1/+2
Now that the INSTALL file is generated. Allows running make maintainer-clean.
2009-10-28INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206Gaetan Nadon3-238/+5
Add missing INSTALL file. Use standard GNU file on building tarball README may have been updated Remove AUTHORS file as it is empty and no content available yet. Remove NEWS file as it is empty and no content available yet.
2009-10-27Deploy the new XORG_DEFAULT_OPTIONS #24242Gaetan Nadon1-3/+4
This macro aggregate a number of existing macros that sets commmon X.Org components configuration options. It shields the configuration file from future changes.
2009-10-26Makefile.am: ChangeLog not required: EXTRA_DIST or *CLEANFILES #24432Gaetan Nadon1-1/+0
ChangeLog filename is known to Automake and requires no further coding in the makefile.
2009-10-22.gitignore: use common defaults with custom section # 24239Gaetan Nadon1-11/+59
Using common defaults will reduce errors and maintenance. Only the very small or inexistent custom section need periodic maintenance when the structure of the component changes. Do not edit defaults.
2009-10-21Makefile.am: do not include autogen.sh in distribution #24183Gaetan Nadon1-1/+1
This is a private build script that should not be distributed
2009-10-21This is not a GNU project, so declare it foreign.Jeremy Huddleston1-1/+1
On Wed, 2009-10-21 at 13:36 +1000, Peter Hutterer wrote: > On Tue, Oct 20, 2009 at 08:23:55PM -0700, Jeremy Huddleston wrote: > > I noticed an INSTALL file in xlsclients and libXvMC today, and it > > was quite annoying to work around since 'autoreconf -fvi' replaces > > it and git wants to commit it. Should these files even be in git? > > Can I nuke them for the betterment of humanity and since they get > > created by autoreconf anyways? > > See https://bugs.freedesktop.org/show_bug.cgi?id=24206 As an interim measure, replace AM_INIT_AUTOMAKE([dist-bzip2]) with AM_INIT_AUTOMAKE([foreign dist-bzip2]). This will prevent the generation of the INSTALL file. It is also part of the 24206 solution. Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
2009-09-23libXdmcp 1.0.3libXdmcp-1.0.3Peter Hutterer1-1/+1
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-09-23Require macros 1.3 for XORG_DEFAULT_OPTIONS.Peter Hutterer1-6/+3
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
2009-02-02Add README with pointers to mailing list, bugzilla & git reposAlan Coopersmith1-0/+25
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2009-01-09Ansification and compile warning fixes.Paulo Cesar Pereira de Andrade23-64/+33
Code that already have a header with the proper prototype is safe to ansify. This uses XORG_CHANGELOG macro to properly work with the "git-log" to "git log" change (required to pass "make distcheck"), uses the XORG_CWARNFLAGS macro, and doesn't generate any compile warnings from gcc 4.3 and sparse.
2008-11-26Mark Xalloc, Xrealloc, and Xfree as weak symbols.Paulo Cesar Pereira de Andrade1-3/+16
Maybe a _X_WEAK macro could be added to <X11/Xfuncproto.h>, but that could actually encourage use of __attribute__((weak)), what is not intended. This change uses the same semantics used in libXfont to declare weak symbols that are overridden by the ones defined in the X Server.
2006-08-11Version bump -> 1.0.2libXdmcp-1.0.2Alan Coopersmith1-1/+1
2006-08-11Require xorg-macros 1.1.0 or later for XORG_WITH_LINT & XORG_LINT_LIBRARY macrosAlan Coopersmith1-0/+4
2006-08-11Add lint library to CLEANFILESAlan Coopersmith1-0/+2
2006-08-11Replace static ChangeLog with dist-hook to generate from git-logAlan Coopersmith2-57/+9
2006-08-10Use AC_CHECK_FUNCS instead of #ifdef SYSV to check for srand48 & lrand48Alan Coopersmith2-1/+3
2006-08-10Add *~ to .gitignore to ignore emacs droppingsAlan Coopersmith1-0/+1
2006-07-13Add lint checking & library targetsAlan Coopersmith2-0/+21
2006-07-13Fix sparse warnings for using 0 instead of NULLAlan Coopersmith4-4/+4
RA8.c:50:17: warning: Using plain integer as NULL pointer RA16.c:50:16: warning: Using plain integer as NULL pointer RA32.c:50:16: warning: Using plain integer as NULL pointer RAofA8.c:50:16: warning: Using plain integer as NULL pointer
2006-07-13renamed: .cvsignore -> .gitignoreAlan Coopersmith1-0/+0
2006-04-27Bump to 1.0.1libXdmcp-1_0_1XORG-7_1Adam Jackson2-1/+6
2006-03-20Bug #6243: Fix build on Cygwin, and when srcdir != objdir. (YaakovXORG-7_0_99_901Adam Jackson3-2/+9
Selkowitz)
2006-01-12static -> static constAdam Jackson2-3/+8
2005-12-15Update package version number for final X11R7 release candidate.XORG-7_0XORG-6_99_99_904Kevin E Martin2-1/+6
2005-12-03Update package version number for X11R7 RC3 release.XORG-6_99_99_903MODULAR_COPYKevin E Martin2-1/+6
2005-11-19Update pkgconfig files to separate library build-time dependencies fromKevin E Martin2-1/+8
application build-time dependencies, and update package deps to work with separate build roots.
2005-10-19Update package version number for RC1 release.XORG-6_99_99_902XORG-6_99_99_901Kevin E Martin2-1/+6
2005-10-05Add missing files to EXTRA_DISTKevin E Martin2-1/+6
2005-07-30Add missing library dependencies: Xdmcp: -lsocket (if needed for recvfrom,XORG-6_99_99_900Alan Coopersmith1-0/+2
such as on Solaris) lbxutil: -lz xkbui: -lm
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-16Use -version-number instead of -version-info.Daniel Stone1-1/+1
2005-07-14typo fixes (Matthieu Herrb)Adam Jackson1-1/+1
2005-07-09Add .cvsignore files Switch _la_CFLAGS for AM_CFLAGS to clean up directoryKeith Packard3-1/+33
2005-07-03Add Xtrans definitions (FONT_t, TRANS_CLIENT) to clean up warnings.XORG-6_8_99_903XORG-6_8_99_902XORG-6_8_99_901XORG-6_8_99_900XORG-6_8_99_16XORG-6_8_99_15XORG-6_8_99_14Daniel Stone2-2/+2
Add XSERV_t, TRANS_SERVER, TRANS_REOPEN to quash warnings. Add #include <dix-config.h> or <xorg-config.h>, as appropriate, to all source files in the xserver/xorg tree, predicated on defines of HAVE_{DIX,XORG}_CONFIG_H. Change all Xfont includes to <X11/fonts/foo.h>.
2005-05-19revert last change, didn't do right thing at all, sorry for the noiseAdam Jackson1-1/+1
2005-05-19Require automake 1.7 in AM_INIT_AUTOMAKEAdam Jackson1-1/+1
2005-05-17Tue May 17 10:38:30 2005 Søren Sandmann <sandmann@redhat.com>Søren Sandmann Pedersen4-74/+6
Remove Xdmcpconf.h and references to it, since it is not needed. Delete entries from the xlibs tree since they are not relevant
2005-05-14Add Xdmcpconf.h.in from xlibs tree.Josh Triplett1-0/+26
2005-05-14Add configure.ac for Xdmcp from xlibs tree.Josh Triplett1-0/+55
2005-05-14Move includes in Xau and Xdmcp into include/X11 subdirectories so that theJosh Triplett1-1/+2
source can reference them with <X11/...>.