summaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)AuthorFilesLines
2023-03-04configure: Use LT_INIT from libtool 2 instead of deprecated AC_PROG_LIBTOOLAlan Coopersmith1-1/+2
AC_PROG_LIBTOOL was replaced by LT_INIT in libtool 2 in 2008, so it's time to rely on it. Clears autoconf warnings: configure.ac:13: warning: The macro `AC_PROG_LIBTOOL' is obsolete. configure.ac:13: You should run autoupdate. aclocal.m4:3640: AC_PROG_LIBTOOL is expanded from... configure.ac:13: the top level libtoolize: Consider adding 'AC_CONFIG_MACRO_DIRS([m4])' to configure.ac, libtoolize: and rerunning libtoolize and aclocal. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-12-19libSM 1.2.4libSM-1.2.4Alan Coopersmith1-2/+2
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-12-04Handle arrays too large to fit in iceConn buffersAlan Coopersmith1-1/+1
Fixes numerous gcc warnings of the form: sm_client.c: In function ‘SmcOpenConnection’: SMlibint.h:109:25: warning: potential null pointer dereference [-Wnull-dereference] *((CARD32 *) _pBuf) = _val; \ SMlibint.h:160:5: note: in expansion of macro ‘STORE_CARD32’ STORE_CARD32 (_pBuf, (CARD32) _len); \ ^~~~~~~~~~~~ sm_client.c:207:5: note: in expansion of macro ‘STORE_ARRAY8’ STORE_ARRAY8 (pData, len, previousId); ^~~~~~~~~~~~ v2: Raise required libICE version to 1.1.0 to get the updated IceGetHeaderExtra macro definition needed for this to work correctly. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-03-05Add uuid as private dependency to sm.pc for static linkingAlan Coopersmith1-1/+13
If a uuid.pc file was found, add it to Requires.private. Otherwise, add $LIBUUID_LIBS to Libs.private. Fixes: #1 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-03-05Build xz tarballs instead of bzip2Alan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-03-05Fix spelling/wording issuesAlan Coopersmith1-1/+1
Found by using: codespell --builtin clear,rare,usage,informal,code,names Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2018-12-07Update configure.ac bug URL for gitlab migrationAlan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2018-09-30libSM 1.2.3libSM-1.2.3Matthieu Herrb1-1/+1
Signed-off-by: Matthieu Herrb <matthieu@herrb.eu>
2013-09-07libSM 1.2.2libSM-1.2.2Alan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-01-15configure: Remove AM_MAINTAINER_MODEAdam Jackson1-1/+0
Signed-off-by: Adam Jackson <ajax@redhat.com>
2012-03-02libSM 1.2.1libSM-1.2.1Alan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2011-06-11Install target dbs alongside generated documentsGaetan Nadon1-1/+1
This matches a change in xorg-sgml-docs whereby the masterdb will look for the target dbs into the same location as the generated documents. The target dbs are now installed alongside the generated documents. Previously they are installed in $prefix/sgml/X11/dbs alongside masterdb which has the potential of installing outside the package prefix and cause distcheck to fail when user does not have write permission in this package. Requires XORG_CHECK_SGML_DOCTOOLS(1.8) which was released 2011-06-11
2011-03-30Documentation: add Docbook external references supportGaetan Nadon1-5/+6
When writing technical documentation, it is often necessary to cross reference to other information. When that other information is not in the current document, additional support is needed, namely <olink>. A new feature with version 1.7 of xorg-sgml-doctools adds references to other documents within or outside this package. This patch adds technical support for this feature but does not change the content of the documentation as seen by the end user. Each book or article must generate a database containing the href of sections that can be referred to from another document. This database is installed in DATAROOTDIR/sgml/X11/dbs. There is a requirement that the value of DATAROOTDIR for xorg-sgml-doctools and for the package documentation is the same. This forms a virtual document tree. This database is consulted by other documents while they are being generated in order to fulfill the missing information for linking. Refer to the xorg-sgml-doctools for further technical information. Co-authored-by: Matt Dew <marcoz@osource.org> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2011-02-02config: splitting SM and XTRANS compiler options is not requiredGaetan Nadon1-3/+2
Simplify configuration by using a single PKG_CHECK_MODULES statement. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2011-02-02config: comment, minor upgrade, quote and layout configure.acGaetan Nadon1-9/+8
Group statements per section as per Autoconf standard layout Quote statements where appropriate. Autoconf recommends not using dnl instead of # for comments Use AC_CONFIG_FILES to replace the deprecated AC_OUTPUT with parameters. This helps automated maintenance and release activities. Details can be found in http://wiki.x.org/wiki/NewModuleGuidelines Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2011-01-28config: replace deprecated AC_HELP_STRING with AS_HELP_STRINGGaetan Nadon1-1/+1
This silences an Automake warning. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2011-01-28config: remove unrequired AC_HEADER_STDCGaetan Nadon1-5/+0
Autoconf says: "This macro is obsolescent, as current systems have conforming header files. New programs need not use this macro".
2010-11-21config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERSAlan Coopersmith1-10/+8
Regroup AC statements under the Autoconf initialization section. Regroup AM statements under the Automake initialization section. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-11-21config: Remove unnecessary calls from configure.acAlan Coopersmith1-6/+0
AC_PROG_CC 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>
2010-10-27libSM 1.2.0libSM-1.2.0Alan Coopersmith1-1/+1
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-06-26doc: replace groff input format with docbook xml formatGaetan Nadon1-7/+8
Initial version of SMlib and xsmp docbook xml. Requires util-macros 1.10 Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-01-31doc: use new macros to control doc generationGaetan Nadon1-26/+5
Namely XORG_WITH_GROFF for the groff generation tool XORG_ENABLE_DOCS for the generation of all docs Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2009-12-17require autoconf 2.60 because of $(docdir) useRémi Cardona1-1/+1
Signed-off-by: Rémi Cardona <remi@gentoo.org> Reviewed-by: Gaetan Nadon <memsize@videotron.ca> Reviewed-by: Alan Coopersmith <alan.coopersmith@sun.com> Reviewed-by: Dan Nicholson <dbn.lists@gmail.com>
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-10-10Move docs from xorg-docs, use groff to format for installationAlan Coopersmith1-0/+24
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2009-10-09Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONSAlan Coopersmith1-8/+7
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2009-08-14require libICE >= 1.0.5Rémi Cardona1-1/+1
During the ansification (commit 896aeb5dd128), 2 extern decls for _IcePaMagicCookie1Proc and _IcePoMagicCookie1Proc were dropped from sm_client.c and sm_manager.c. Both decls were added between libICE 1.0.4 and 1.0.5. Signed-off-by: Rémi Cardona <remi@gentoo.org>
2009-08-07libSM 1.1.1, update libtool versionlibSM-1.1.1Rémi Cardona1-1/+1
2009-08-03Use FreeBSD uuid functions when available.Diego Elio 'Flameeyes' Pettenò1-6/+9
If the system provide the uuid_create function assume building on FreeBSD or another OS with a compatible uuid interface. If that's the case, ignore libuuid and just use the system functions without extra deps.
2009-02-16Typo fixJulien Cristau1-1/+1
This makes us really error out if we want libuuid but can't find it.
2009-01-28Janitor: ansification, make distcheck, compiler warnings.Paulo Cesar Pereira de Andrade1-7/+6
2008-07-18If we don't have libuuid, build without it instead of failingJulien Cristau1-2/+5
Only error out if configure was given --with-libuuid but we don't find it.
2008-07-02libSM 1.1.0libSM-1.1.0Adam Jackson1-1/+1
2008-06-25Fix --without-libuuid to not call PKG_CHECK_MODULES for libuuidAlan Coopersmith1-1/+1
2008-06-24Bug #14949: Don't use gethostbyname() for client IDs.Dan Williams1-0/+7
gethostbyname() will hit the network, which leads to DNS timeouts, which leads to fail. Just use UUIDs.
2007-05-13Bumped version to 1.0.3.libSM-1.0.3Tilman Sauerbeck1-1/+1
2006-10-13Bump to 1.0.2libSM-1.0.2Adam Jackson1-1/+1
2006-04-27Bump to 1.0.1libSM-1_0_1XORG-7_1Adam Jackson1-1/+1
2005-12-15Update package version number for final X11R7 release candidate.XORG-7_0XORG-6_99_99_904Kevin E Martin1-1/+1
2005-12-03Update package version number for X11R7 RC3 release.XORG-6_99_99_903MODULAR_COPYKevin E Martin1-1/+1
2005-11-09Update package version number for X11R7 RC2 release.XORG-6_99_99_902Kevin E Martin1-1/+1
2005-10-19Update package version number for RC1 release.XORG-6_99_99_901Kevin E Martin1-1/+1
2005-08-15Add XTRANS_CONNECTION_FLAGS to set TCP & IPv6 flags needed by libSMAlan Coopersmith1-0/+3
2005-07-29Various changes preparing packages for RC0:XORG-6_99_99_900Kevin E Martin1-2/+4
- 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-13Eliminate xtrans CFLAGS from .pc file as xtrans is not part of the publicKeith Packard1-1/+5
API.
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-17- Conditionally include config.h in xc/lib/SMXORG-6_8_99_9XORG-6_8_99_8XORG-6_8_99_10Søren Sandmann Pedersen1-0/+40
- Add libSM to symlink.sh - Add SM build system