summaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)Author
2012-03-07libXt 1.1.2libXt-1.1.2Alan Coopersmith
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2011-12-28Initial docbook conversion.Matt Dew
2011-06-20Only link with ws2_32 for mingw targetJon TURNEY
For the Cygwin target, we will be using the socket functions provided by the Cygwin DLL, so linking with ws2_32 is unnecessary, even though it may be present. Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> Reviewed-by: Cyril Brulebois <kibi@debian.org Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2011-03-18Add test framework similar to xserver and use it to test XtAsprintfAlan Coopersmith
Only two simple test cases to start with: - compares the results of snprintf of a short string to a static buffer with the new buffer returned by XtAsprintf. - compare the results of using XtAsprintf to replicate a portion of a very long string with the original string. Uses malloc debugging flags for various platforms to try to catch errors with uninitialized memory (such as the recently fixed failure to terminate the string). Requires xorg-macros 1.13 for XORG_ENABLE_UNIT_TESTS and XORG_WITH_GLIB. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
2011-03-10Bump to 1.1.1libXt-1.1.1Julien Cristau
Signed-off-by: Julien Cristau <jcristau@debian.org>
2011-03-06Don't need to use target-specific CFLAGS for makestrsAlan Coopersmith
It's the only thing built in that directory, so we can use AM_CFLAGS and drop the requirement for AM_PROG_CC_C_O in configure.ac Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Gaetan Nadon <memsize@videotron.ca> Tested-by: Gaetan Nadon <memsize@videotron.ca>
2011-03-04configure: Bump version to 1.1.0 for releaselibXt-1.1.0Jeremy Huddleston
Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2011-03-04darwin: Don't use poll() when expected to run on darwin10 and priorJeremy Huddleston
Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2011-02-03config: comment, minor upgrade, quote and layout configure.acGaetan Nadon
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. Add AC_CONFIG_SRCDIR([Makefile.am]) This helps automated maintenance and release activities. Details can be found in http://wiki.x.org/wiki/NewModuleGuidelines
2011-01-28config: replace deprecated AC_HELP_STRING with AS_HELP_STRINGGaetan Nadon
This silences an Automake warning. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2011-01-12Add XtAsprintf() as a new exported APIAlan Coopersmith
Like asprintf() but using XtMalloc() to tie into the Xt memory allocation and error handling subsystems. Bumps libXt version to 1.0.99.1 so that modules can set their pkg-config dependency to libXt >= 1.0.99.1 to require XtAsprintf(). Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-12-05config: AC_PROG_CC is provided by XORG_DEFAULT_OPTIONS nowAlan Coopersmith
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-12-05config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERSAlan Coopersmith
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>
2010-12-05Remove non-USE_SNPRINTF case from src/Error.cAlan Coopersmith
unifdef -DUSE_SNPRINTF src/Error.c Plus manual removal of old #ifdef notyet section that said not enough platforms had snprintf support yet. Welcome to the new millenium! Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-10-28libXt 1.0.9libXt-1.0.9Alan Coopersmith
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-08-06man: using the C preprocessor is not required for man pages.Gaetan Nadon
There were no special symbols needing cpp. Everything can be handled by the default MAN_SUBSTS in util-macros. Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-06-08Move Xt specs from xorg-docs moduleAlan Coopersmith
For now, just checked in and included in dist tarballs, not processed into a usable format - same as it was in xorg-docs Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2010-04-05config: update and relocate AX_DEFINE_DIR macroGaetan Nadon
Remove deprecated acinclude.m4 macro container file Use separate macro files as per autoconf recommendation Use the latest macro from GNU Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-03-29config: update AC_PREREQ statement to 2.60Gaetan Nadon
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-27config: remove execute permission on configureation fileGaetan Nadon
Introduced in commit 6baea764567c3327f1d85ba91375adaea6dab46d "Link with winsock for WIN32 platforms" Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
2010-03-15libXt 1.0.8libXt-1.0.8Rémi Cardona
Signed-off-by: Rémi Cardona <remi@gentoo.org>
2009-12-11darwin: xnu doesn't support poll on ttys on the master side.Jeremy Huddleston
<rdar://problem/7360546> Signed-off-by: Jeremy Huddleston <jeremyhu@freedesktop.org>
2009-12-07Don't install makestrs on the systemRémi Cardona
It has no known outside-libXt users. Let's not install it and its man page. Signed-off-by: Rémi Cardona <remi@gentoo.org> Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2009-10-27Deploy the new XORG_DEFAULT_OPTIONS #24242Gaetan Nadon
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-21This is not a GNU project, so declare it foreign.Jeremy Huddleston
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-08libXt 1.0.7libXt-1.0.7Alan Coopersmith
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2009-10-08Replace AC_DEFINE_DIR with AX_DEFINE_DIR from Autoconf ArchiveAlan Coopersmith
2009-10-06Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONSAlan Coopersmith
Includes adding many $(AM_V_GEN) calls for the AM_SILENT_RULES included by XORG_DEFAULT_OPTIONS when automake-1.11 or newer is used Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
2009-08-25Link against libICEJulien Cristau
libXt uses IceConnectionNumber() and IceProcessMessages(), so make sure we link against -lICE. Signed-off-by: Julien Cristau <jcristau@debian.org>
2009-08-03Fix compilation of host tools in cross-compilation caseThomas Petazzoni
At 36e9f0d351afbf7fd2595990b2d39e7c551f6420, a fix was added to use the host gcc instead of the target gcc when cross-compiling libXt. This fix works, but is not solve the whole problem: the CFLAGS and LDFLAGS used with the host compilers are the one defined for the target compiler (and the flags for both compilers might be very different). This new fix let libXt obey to CFLAGS_FOR_BUILD and LDFLAGS_FOR_BUILD environment variables, and use them to compile the host tools in util/. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2009-07-02libXt 1.0.6libXt-1.0.6Adam Jackson
2009-03-12darwin: Don't use poll() on versions of darwin before darwin10Jeremy Huddleston
2009-01-30Janitor: ansification, make distcheck, compiler warnings, .gitignore.Paulo Cesar Pereira de Andrade
Most "compiler" warnings were actually sparse warnings, due to assigning a integer to a pointer, or an external symbol without a previous declaration.
2008-09-23configure.ac: Minor thinkoDaniel Stone
2008-09-23configure.ac: Use native compiler for build toolsJohn Tapsell
makestrs is used during the build, so use the native compiler (either gcc or cc in $PATH, can be overridden as $CC_FOR_BUILD) instead of the (possibly cross-) compiler.
2008-04-29Link with winsock for WIN32 platformsAlan Hourihane
2008-03-09nuke RCS IdsMatthieu Herrb
2008-03-07Solaris builds need to pass -intelabi to makestrs, even on SPARCAlan Coopersmith
For some reason, when Solaris moved to X11R6.0, the intelabi version of StringDefs.c/.h was used on SPARC, so now we're stuck with 10+ years of binaries built to use it.
2007-02-20added -flat_namespace to CFLAGS for DarwinBen Byer
2007-01-27Version bump: 1.0.5libXt-1.0.5Alan Coopersmith
2006-11-08bump to 1.0.4libXt-1.0.4Daniel Stone
2006-10-27Fix .pc file with new autotools by using AC_DEFINE_DIR.Eric Anholt
With autoconf 2.60, $datadir now expands to use $datarootdir rather than just $prefix, so the .pc referenced the undefined $datarootdir. AC_DEFINE_DIR expands it all out for us.
2006-10-13Bump to 1.0.3libXt-1.0.3Adam Jackson
2006-05-12Bump to 1.0.2libXt-1_0_2XORG-7_1Adam Jackson
2006-04-27Bump to 1.0.1libXt-1_0_1Adam Jackson
2005-12-15Update package version number for final X11R7 release candidate.XORG-7_0XORG-6_99_99_904Kevin E Martin
2005-12-10Add configure option to install makestrs and its manpage.MODULAR_COPYKevin E Martin
Add makestrs man page.
2005-12-07Add configure option to set the build's app-default dir, and put the resultKevin E Martin
in the xt.pc file for applications to use.
2005-12-03Update package version number for X11R7 RC3 release.XORG-6_99_99_903Kevin E Martin
2005-12-03Add check and cflags for malloc(0) returning NULL.Kevin E Martin