libXau 1.0.3
This commit is contained in:
parent
6733699ba2
commit
9cab71a0f5
@ -34,8 +34,7 @@ in this Software without prior written authorization from The Open Group.
|
||||
#include <stdlib.h>
|
||||
|
||||
void
|
||||
XauDisposeAuth (auth)
|
||||
Xauth *auth;
|
||||
XauDisposeAuth (Xauth *auth)
|
||||
{
|
||||
if (auth) {
|
||||
if (auth->address) (void) free (auth->address);
|
||||
|
@ -35,9 +35,9 @@ in this Software without prior written authorization from The Open Group.
|
||||
#include <stdlib.h>
|
||||
|
||||
char *
|
||||
XauFileName ()
|
||||
XauFileName (void)
|
||||
{
|
||||
char *slashDotXauthority = "/.Xauthority";
|
||||
const char *slashDotXauthority = "/.Xauthority";
|
||||
char *name;
|
||||
static char *buf;
|
||||
static int bsize;
|
||||
@ -58,7 +58,7 @@ XauFileName ()
|
||||
}
|
||||
if (!name)
|
||||
#endif
|
||||
return 0;
|
||||
return NULL;
|
||||
}
|
||||
size = strlen (name) + strlen(&slashDotXauthority[1]) + 2;
|
||||
if (size > bsize) {
|
||||
@ -66,7 +66,7 @@ XauFileName ()
|
||||
free (buf);
|
||||
buf = malloc ((unsigned) size);
|
||||
if (!buf)
|
||||
return 0;
|
||||
return NULL;
|
||||
bsize = size;
|
||||
}
|
||||
strcpy (buf, name);
|
||||
|
@ -71,12 +71,12 @@ _Xconst char* name)
|
||||
|
||||
auth_name = XauFileName ();
|
||||
if (!auth_name)
|
||||
return 0;
|
||||
return NULL;
|
||||
if (access (auth_name, R_OK) != 0) /* checks REAL id */
|
||||
return 0;
|
||||
return NULL;
|
||||
auth_file = fopen (auth_name, "rb");
|
||||
if (!auth_file)
|
||||
return 0;
|
||||
return NULL;
|
||||
for (;;) {
|
||||
entry = XauReadAuth (auth_file);
|
||||
if (!entry)
|
||||
|
@ -83,12 +83,12 @@ XauGetBestAuthByAddr (
|
||||
|
||||
auth_name = XauFileName ();
|
||||
if (!auth_name)
|
||||
return 0;
|
||||
return NULL;
|
||||
if (access (auth_name, R_OK) != 0) /* checks REAL id */
|
||||
return 0;
|
||||
return NULL;
|
||||
auth_file = fopen (auth_name, "rb");
|
||||
if (!auth_file)
|
||||
return 0;
|
||||
return NULL;
|
||||
|
||||
#ifdef hpux
|
||||
if (family == FamilyLocal) {
|
||||
@ -110,7 +110,7 @@ XauGetBestAuthByAddr (
|
||||
}
|
||||
#endif /* hpux */
|
||||
|
||||
best = 0;
|
||||
best = NULL;
|
||||
best_type = types_length;
|
||||
for (;;) {
|
||||
entry = XauReadAuth (auth_file);
|
||||
|
@ -53,7 +53,7 @@ read_counted_string (unsigned short *countp, char **stringp, FILE *file)
|
||||
if (read_short (&len, file) == 0)
|
||||
return 0;
|
||||
if (len == 0) {
|
||||
data = 0;
|
||||
data = NULL;
|
||||
} else {
|
||||
data = malloc ((unsigned) len);
|
||||
if (!data)
|
||||
@ -70,30 +70,29 @@ read_counted_string (unsigned short *countp, char **stringp, FILE *file)
|
||||
}
|
||||
|
||||
Xauth *
|
||||
XauReadAuth (auth_file)
|
||||
FILE *auth_file;
|
||||
XauReadAuth (FILE *auth_file)
|
||||
{
|
||||
Xauth local;
|
||||
Xauth *ret;
|
||||
|
||||
if (read_short (&local.family, auth_file) == 0)
|
||||
return 0;
|
||||
return NULL;
|
||||
if (read_counted_string (&local.address_length, &local.address, auth_file) == 0)
|
||||
return 0;
|
||||
return NULL;
|
||||
if (read_counted_string (&local.number_length, &local.number, auth_file) == 0) {
|
||||
if (local.address) free (local.address);
|
||||
return 0;
|
||||
return NULL;
|
||||
}
|
||||
if (read_counted_string (&local.name_length, &local.name, auth_file) == 0) {
|
||||
if (local.address) free (local.address);
|
||||
if (local.number) free (local.number);
|
||||
return 0;
|
||||
return NULL;
|
||||
}
|
||||
if (read_counted_string (&local.data_length, &local.data, auth_file) == 0) {
|
||||
if (local.address) free (local.address);
|
||||
if (local.number) free (local.number);
|
||||
if (local.name) free (local.name);
|
||||
return 0;
|
||||
return NULL;
|
||||
}
|
||||
ret = (Xauth *) malloc (sizeof (Xauth));
|
||||
if (!ret) {
|
||||
@ -104,7 +103,7 @@ FILE *auth_file;
|
||||
bzero (local.data, local.data_length);
|
||||
free (local.data);
|
||||
}
|
||||
return 0;
|
||||
return NULL;
|
||||
}
|
||||
*ret = local;
|
||||
return ret;
|
||||
|
@ -55,9 +55,7 @@ write_counted_string (unsigned short count, char *string, FILE *file)
|
||||
}
|
||||
|
||||
int
|
||||
XauWriteAuth (auth_file, auth)
|
||||
FILE *auth_file;
|
||||
Xauth *auth;
|
||||
XauWriteAuth (FILE *auth_file, Xauth *auth)
|
||||
{
|
||||
if (write_short (auth->family, auth_file) == 0)
|
||||
return 0;
|
||||
|
@ -30,12 +30,16 @@ in this Software without prior written authorization from The Open Group.
|
||||
#include <config.h>
|
||||
#endif
|
||||
#include <X11/Xauth.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
main (argc, argv)
|
||||
char **argv;
|
||||
int
|
||||
main (int argc, char **argv)
|
||||
{
|
||||
Xauth test_data;
|
||||
char *name, *data, *file;
|
||||
char *name = "XAU-TEST-1";
|
||||
char *data = "Do not begin the test until instructed to do so.";
|
||||
char *file = NULL;
|
||||
int state = 0;
|
||||
FILE *output;
|
||||
|
||||
@ -50,10 +54,6 @@ char **argv;
|
||||
++state;
|
||||
}
|
||||
}
|
||||
if(!file) {
|
||||
fprintf (stderr, "No file\n");
|
||||
exit (1);
|
||||
}
|
||||
test_data.family = 0;
|
||||
test_data.address_length = 0;
|
||||
test_data.address = "";
|
||||
@ -63,9 +63,14 @@ char **argv;
|
||||
test_data.name = name;
|
||||
test_data.data_length = strlen (data);
|
||||
test_data.data = data;
|
||||
output = fopen (file, "w");
|
||||
if (!file) {
|
||||
output = tmpfile();
|
||||
} else {
|
||||
output = fopen (file, "w");
|
||||
}
|
||||
if (output) {
|
||||
XauWriteAuth (output, &test_data);
|
||||
state = XauWriteAuth (output, &test_data);
|
||||
fclose (output);
|
||||
}
|
||||
return (state = 1) ? 0 : 1;
|
||||
}
|
||||
|
@ -1,55 +1,318 @@
|
||||
2006-05-12 Adam Jackson <ajax@freedesktop.org>
|
||||
commit 45d137fdbb9b21513aff68e945e19cdfdcbc28b1
|
||||
Author: Daniel Stone <daniel@fooishbar.org>
|
||||
Date: Sat Dec 16 01:18:20 2006 +0200
|
||||
|
||||
* configure.ac:
|
||||
Bump to 1.0.1
|
||||
bump to 1.0.3
|
||||
|
||||
2006-05-08 Kevin E. Martin <kem-at-freedesktop-dot-org>
|
||||
commit fefdba6ed5ef56abf0da9caaca64af5a5e7895b0
|
||||
Author: Daniel Stone <daniel@fooishbar.org>
|
||||
Date: Wed Dec 6 18:53:29 2006 +0200
|
||||
|
||||
* Makefile.am:
|
||||
Bug #5628 <https://bugs.freedesktop.org/show_bug.cgi?id=5628>
|
||||
Shadow pages not created correctly when MANDIR & MANSUFFIX don't match.
|
||||
Makefile.am: make ChangeLog hook safer
|
||||
Make ChangeLog hook as safe as possible.
|
||||
|
||||
2005-12-14 Kevin E. Martin <kem-at-freedesktop-dot-org>
|
||||
commit 90e34a4aa471b6e446345ba8095990e360a41570
|
||||
Author: Alan Coopersmith <alan.coopersmith@sun.com>
|
||||
Date: Fri Jul 28 13:47:44 2006 -0700
|
||||
|
||||
* configure.ac:
|
||||
Update package version number for final X11R7 release candidate.
|
||||
Version bump -> 1.0.2
|
||||
|
||||
2005-12-06 Kevin E. Martin <kem-at-freedesktop-dot-org>
|
||||
commit fab8b091936874b4a8077f490ec80abf7b092049
|
||||
Author: Alan Coopersmith <alan.coopersmith@sun.com>
|
||||
Date: Mon Jul 24 13:14:04 2006 -0700
|
||||
|
||||
* Makefile.am:
|
||||
Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
|
||||
Require xorg-macros 1.1.0 or later for XORG_WITH_LINT & XORG_LINT_LIBRARY macros
|
||||
|
||||
2005-12-03 Kevin E. Martin <kem-at-freedesktop-dot-org>
|
||||
commit 3399e7bed20680520b39ade782d7a33966d477ae
|
||||
Author: Alan Coopersmith <alan.coopersmith@sun.com>
|
||||
Date: Mon Jul 24 13:12:57 2006 -0700
|
||||
|
||||
* configure.ac:
|
||||
Update package version number for X11R7 RC3 release.
|
||||
Add lint library to CLEANFILES
|
||||
|
||||
2005-11-19 Kevin E. Martin <kem-at-freedesktop-dot-org>
|
||||
commit aa4f35661022f3f1c1b94284b34a531381d3a7f1
|
||||
Author: Matthieu Herrb <matthieu.herrb@laas.fr>
|
||||
Date: Sun Jul 16 10:57:36 2006 +0200
|
||||
|
||||
* xau.pc.in:
|
||||
Update pkgconfig files to separate library build-time dependencies
|
||||
from application build-time dependencies.
|
||||
set GIT_DIR=${srcdir}/.git for git-log
|
||||
|
||||
2005-10-18 Kevin E. Martin <kem-at-freedesktop-dot-org>
|
||||
commit 881115413a7c157c9aab8fba39c8929692baaacc
|
||||
Author: Alan Coopersmith <alan.coopersmith@sun.com>
|
||||
Date: Thu Jul 13 17:01:49 2006 -0700
|
||||
|
||||
* configure.ac:
|
||||
Update package version number for RC1 release.
|
||||
Generate lint library for checking programs that call functions in libXau
|
||||
|
||||
(Disabled by default, enable with --enable-lint-library)
|
||||
|
||||
2005-10-11 Alan Coopersmith <alan.coopersmith@sun.com>
|
||||
commit f25155b03b9fa866d522714ad64e92bf7f2b95fa
|
||||
Author: Alan Coopersmith <alan.coopersmith@sun.com>
|
||||
Date: Thu Jul 13 15:16:11 2006 -0700
|
||||
|
||||
* Makefile.am:
|
||||
* configure.ac:
|
||||
Use sed to put version number in man page
|
||||
Add shadow man pages for man pages that document multiple functions.
|
||||
|
||||
2005-09-21 Alan Coopersmith <alan.coopersmith@sun.com>
|
||||
renamed: include/.cvsignore -> include/.gitignore
|
||||
|
||||
* configure.ac:
|
||||
Set needed flags for MT-safe API's called from libXau
|
||||
commit 9062a6da402d416f21d4365d3c3a29ceea707e77
|
||||
Author: Alan Coopersmith <alan.coopersmith@sun.com>
|
||||
Date: Wed Jul 12 23:53:14 2006 -0700
|
||||
|
||||
2005-07-08 Keith Packard <keithp@keithp.com>
|
||||
Replace static ChangeLog with dist-hook to generate from git-log
|
||||
|
||||
* .cvsignore:
|
||||
* include/.cvsignore:
|
||||
Add .cvsignore files
|
||||
commit 9b5a14e6de65658fdb712e737b292568a69dc3ee
|
||||
Author: Alan Coopersmith <alan.coopersmith@sun.com>
|
||||
Date: Wed Jul 12 19:27:52 2006 -0700
|
||||
|
||||
Rename XORG_ENABLE_LINT to XORG_WITH_LINT
|
||||
|
||||
commit d3f7a679fce893782774e97c0718393295d0773e
|
||||
Author: Alan Coopersmith <alan.coopersmith@sun.com>
|
||||
Date: Wed Jul 12 19:26:53 2006 -0700
|
||||
|
||||
Move --with-lint handling to XORG_ENABLE_LINT() in xorg-macros.m4
|
||||
|
||||
commit 1abf440a6a54fb0624915f9ac975f3074252c422
|
||||
Author: Alan Coopersmith <alan.coopersmith@sun.com>
|
||||
Date: Wed Jul 12 19:25:38 2006 -0700
|
||||
|
||||
Add *~ to .gitignore to ignore emacs droppings
|
||||
|
||||
commit 43b8275be56151bf0e29ce22795afbef24de0f9c
|
||||
Author: Alan Coopersmith <alan.coopersmith@sun.com>
|
||||
Date: Wed Jul 12 17:00:16 2006 -0700
|
||||
|
||||
renamed: .cvsignore -> .gitignore
|
||||
|
||||
commit 385d7fa4f151425539d613c9665b5e862f3ef614
|
||||
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
|
||||
Date: Wed Jun 28 22:53:36 2006 +0000
|
||||
|
||||
Add "--with-lint" configure flag and "make lint" Makefile target to check
|
||||
source code with lint, sparse or similar tools.
|
||||
|
||||
commit 21ea069c9078edd386e96e038e1a71e041e32cf5
|
||||
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
|
||||
Date: Wed Jun 28 22:49:36 2006 +0000
|
||||
|
||||
Changelog for last commit:
|
||||
Remove prototype for XauGetAuthByName to clear lint warning: name declared
|
||||
but never used or defined
|
||||
Fix sparse warnings:
|
||||
-warning: Using plain integer as NULL pointer
|
||||
-warning: non-ANSI definition of function
|
||||
|
||||
commit 8274b8e4b121c3dc3bfd5d0fa4f85bc23f5c09a0
|
||||
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
|
||||
Date: Wed Jun 28 22:26:50 2006 +0000
|
||||
|
||||
Remove prototype for XauGetAuthByName to clear lint warning: name declared
|
||||
but never used or defined
|
||||
Fix sparse warnings:
|
||||
-warning: Using plain integer as NULL pointer
|
||||
-warning: non-ANSI definition of function
|
||||
|
||||
commit 7f6f90cfce51806340f25b80a87b147d8a743b27
|
||||
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
|
||||
Date: Sat Jun 10 01:27:06 2006 +0000
|
||||
|
||||
Clean up existing Autest test program and use to provide simple (and very
|
||||
incomplete) "make check" test case.
|
||||
|
||||
commit e214cc19e1d599f16a69e86b1d8b247ad40a9ed7
|
||||
Author: Adam Jackson <ajax@nwnk.net>
|
||||
Date: Fri May 12 16:05:48 2006 +0000
|
||||
|
||||
Bump to 1.0.1
|
||||
|
||||
commit b92b597d7d597dd223371fe0ff60d1b2dad38fda
|
||||
Author: Kevin E Martin <kem@kem.org>
|
||||
Date: Mon May 8 19:47:10 2006 +0000
|
||||
|
||||
Bug #5628 <https://bugs.freedesktop.org/show_bug.cgi?id=5628> Shadow pages
|
||||
not created correctly when MANDIR & MANSUFFIX don't match.
|
||||
|
||||
commit 253a3e1c94642ccee9a3ed694eecb5382aa22b1e
|
||||
Author: Kevin E Martin <kem@kem.org>
|
||||
Date: Thu Dec 15 00:24:28 2005 +0000
|
||||
|
||||
Update package version number for final X11R7 release candidate.
|
||||
|
||||
commit c7648c97a5da8824d2871f528da89dedc98e2598
|
||||
Author: Kevin E Martin <kem@kem.org>
|
||||
Date: Tue Dec 6 22:48:42 2005 +0000
|
||||
|
||||
Change *man_SOURCES ==> *man_PRE to fix autotools warnings.
|
||||
|
||||
commit c0fbe656693cab8fdf8776fb4d0fa85d0efc4e20
|
||||
Author: Kevin E Martin <kem@kem.org>
|
||||
Date: Sat Dec 3 05:49:42 2005 +0000
|
||||
|
||||
Update package version number for X11R7 RC3 release.
|
||||
|
||||
commit d6d0baef6dd91cc1c3d3d701ad83ec095f02630c
|
||||
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
|
||||
Date: Mon Nov 28 22:03:05 2005 +0000
|
||||
|
||||
Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4
|
||||
update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)
|
||||
|
||||
commit 1272a96ff8c6ee8c1ff5fc23c421b79ea4c15f92
|
||||
Author: Eric Anholt <anholt@freebsd.org>
|
||||
Date: Sun Nov 20 23:17:40 2005 +0000
|
||||
|
||||
Add/improve libs .cvsignores.
|
||||
|
||||
commit 08bef4712fc1e9194db9c8910f461873b7065063
|
||||
Author: Kevin E Martin <kem@kem.org>
|
||||
Date: Sat Nov 19 07:15:40 2005 +0000
|
||||
|
||||
Update pkgconfig files to separate library build-time dependencies from
|
||||
application build-time dependencies, and update package deps to work
|
||||
with separate build roots.
|
||||
|
||||
commit 307ff4cf91c1331c29470a9654d9d18293b45389
|
||||
Author: Kevin E Martin <kem@kem.org>
|
||||
Date: Wed Oct 19 02:48:09 2005 +0000
|
||||
|
||||
Update package version number for RC1 release.
|
||||
|
||||
commit 913ed232278b0673a763eb46e97aea0f78348b5a
|
||||
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
|
||||
Date: Tue Oct 18 00:00:08 2005 +0000
|
||||
|
||||
Use @LIB_MAN_SUFFIX@ instead of $(LIB_MAN_SUFFIX) in macro substitutions to
|
||||
work better with BSD make
|
||||
|
||||
commit ce3af1f6d302e3b7adaba7e166f6f594aa13c310
|
||||
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
|
||||
Date: Mon Oct 17 21:13:15 2005 +0000
|
||||
|
||||
Rename .shadows.DONE to shadows.DONE to avoid some make's thinking it's a
|
||||
suffix rule (reported by Matthieu Herrb)
|
||||
|
||||
commit 86f92c112c22604824d2044b566b8cbee81cb397
|
||||
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
|
||||
Date: Wed Oct 12 00:39:36 2005 +0000
|
||||
|
||||
Use sed to put version number in man page Add shadow man pages for man
|
||||
pages that document multiple functions.
|
||||
|
||||
commit bd48f668b3c8d5de53e42b73ef4e4136d384672d
|
||||
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
|
||||
Date: Thu Sep 22 01:40:07 2005 +0000
|
||||
|
||||
Set needed flags for MT-safe API's called from libXau
|
||||
|
||||
commit 82affd3fdeafe063406d80e439c16b5d7ee66020
|
||||
Author: Kevin E Martin <kem@kem.org>
|
||||
Date: Fri Jul 29 21:22:50 2005 +0000
|
||||
|
||||
Various changes preparing packages for RC0:
|
||||
- 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
|
||||
|
||||
commit 2edd5e132ac2d1ca1a5631fb1e54970012b33f85
|
||||
Author: Keith Packard <keithp@keithp.com>
|
||||
Date: Sat Jul 9 06:06:57 2005 +0000
|
||||
|
||||
Add .cvsignore files
|
||||
|
||||
commit 2527a93c7ba785499c52de48da9b60d02eb4722d
|
||||
Author: Adam Jackson <ajax@nwnk.net>
|
||||
Date: Thu May 19 00:22:32 2005 +0000
|
||||
|
||||
revert last change, didn't do right thing at all, sorry for the noise
|
||||
|
||||
commit fe846da148f3dd15e13e34216853d700cd2c51fd
|
||||
Author: Adam Jackson <ajax@nwnk.net>
|
||||
Date: Thu May 19 00:10:07 2005 +0000
|
||||
|
||||
Require automake 1.7 in AM_INIT_AUTOMAKE
|
||||
|
||||
commit 9607573553c23bcdfb1c3eaec3571aa52fdeb5ee
|
||||
Author: Josh Triplett <josh@speakeasy.net>
|
||||
Date: Sat May 14 07:46:48 2005 +0000
|
||||
|
||||
Move includes in Xau and Xdmcp into include/X11 subdirectories so that the
|
||||
source can reference them with <X11/...>.
|
||||
|
||||
commit 56a655e717c5de6d91c890fdc6f9b0469ad1dd1a
|
||||
Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
|
||||
Date: Wed May 11 22:44:53 2005 +0000
|
||||
|
||||
lib/Xau:
|
||||
- Update AUTHORS, COPYING from Keith's tree
|
||||
- Don't use gcc specific "-include config.h"
|
||||
- Add autogen.sh
|
||||
lib/xtrans:
|
||||
- Add AUTHORS, COPYING, ChangeLog, Makefile.am, NEWS, README, autogen.sh,
|
||||
configure.ac, xtrans.pc.in
|
||||
xc/lib/Xau:
|
||||
- Add conditionalized #include <config.h>
|
||||
util/modular/symlink.sh
|
||||
- Add functions symlink_lib_xau() and symlink_lib_xtrans()
|
||||
util/modular/addconfig.h
|
||||
- New script that adds #include <config.h> to files
|
||||
|
||||
commit 60177d823918d9ef7575da27870796c1285a2032
|
||||
Author: Søren Sandmann Pedersen <sandmann@daimi.au.dk>
|
||||
Date: Mon May 9 22:04:21 2005 +0000
|
||||
|
||||
Add Xau library to lib/ and symlink.sh
|
||||
|
||||
commit 62b6efa4e0012fc499d2c70bff7b99b468a0458f
|
||||
Author: Alexander Gottwald <alexander.gottwald@s1999.tu-chemnitz.de>
|
||||
Date: Mon Nov 15 15:06:55 2004 +0000
|
||||
|
||||
Bufzilla #1802, http://freedesktop.org/bugzilla/show_bug.cgi?id=1802 Added
|
||||
mingw (Win32) port
|
||||
|
||||
commit 05ed20614e85180684d5b8e663dcc2fe57851447
|
||||
Author: Egbert Eich <eich@suse.de>
|
||||
Date: Fri Apr 23 18:43:36 2004 +0000
|
||||
|
||||
Merging XORG-CURRENT into trunk
|
||||
|
||||
commit 0b934581a8612148d70ecf84df72f6a69ca6c5c2
|
||||
Author: Egbert Eich <eich@suse.de>
|
||||
Date: Sun Mar 14 08:32:01 2004 +0000
|
||||
|
||||
Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004
|
||||
|
||||
commit 1a9fc5ef22e3bdd719fc0f991512b6a1d88faaad
|
||||
Author: Egbert Eich <eich@suse.de>
|
||||
Date: Wed Mar 3 12:11:20 2004 +0000
|
||||
|
||||
Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004
|
||||
|
||||
commit 494e0315dcd701302bb81f2b68f759917ad401dd
|
||||
Author: Egbert Eich <eich@suse.de>
|
||||
Date: Thu Feb 26 13:35:30 2004 +0000
|
||||
|
||||
readding XFree86's cvs IDs
|
||||
|
||||
commit 690d8700431f1afcb585897e7cc49b4fd7c9cf46
|
||||
Author: Egbert Eich <eich@suse.de>
|
||||
Date: Thu Feb 26 09:22:39 2004 +0000
|
||||
|
||||
Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004
|
||||
|
||||
commit bca26a7b7c4c4f58d65462ffd3f1b0eaef2d5d4c
|
||||
Author: Kaleb Keithley <kaleb@freedesktop.org>
|
||||
Date: Tue Nov 25 19:28:09 2003 +0000
|
||||
|
||||
XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks
|
||||
|
||||
commit 1be3101aeab9b6136c32a91c23799724a7fe7797
|
||||
Author: Kaleb Keithley <kaleb@freedesktop.org>
|
||||
Date: Fri Nov 14 16:48:47 2003 +0000
|
||||
|
||||
XFree86 4.3.0.1
|
||||
|
||||
commit dcc3fc52f917603df94ef4207f1dec9238dce23b
|
||||
Author: Kaleb Keithley <kaleb@freedesktop.org>
|
||||
Date: Fri Nov 14 15:54:38 2003 +0000
|
||||
|
||||
R6.6 is the Xorg base-line
|
||||
|
@ -29,16 +29,39 @@ xauinclude_HEADERS = include/X11/Xauth.h
|
||||
pkgconfigdir = $(libdir)/pkgconfig
|
||||
pkgconfig_DATA = xau.pc
|
||||
|
||||
check_PROGRAMS=Autest
|
||||
TESTS=Autest
|
||||
|
||||
Autest_SOURCES=Autest.c
|
||||
Autest_LDADD=libXau.la
|
||||
|
||||
if LINT
|
||||
ALL_LINT_FLAGS=$(LINT_FLAGS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
||||
$(AM_CPPFLAGS) $(CPPFLAGS)
|
||||
|
||||
lint:
|
||||
$(LINT) $(ALL_LINT_FLAGS) $(libXau_la_SOURCES)
|
||||
endif LINT
|
||||
|
||||
if MAKE_LINT_LIB
|
||||
lintlibdir = $(libdir)
|
||||
|
||||
lintlib_DATA = $(LINTLIB)
|
||||
|
||||
$(LINTLIB): $(libXau_la_SOURCES)
|
||||
$(LINT) -y -oXau -x $(ALL_LINT_FLAGS) $(libXau_la_SOURCES)
|
||||
endif MAKE_LINT_LIB
|
||||
|
||||
LIB_MAN_DIR_SUFFIX = $(LIB_MAN_DIR:@mandir@/man%=%)
|
||||
|
||||
libmandir = $(LIB_MAN_DIR)
|
||||
libman_PRE = Xau.man
|
||||
BUILT_SOURCES = shadows.DONE
|
||||
CLEANFILES = $(libman_DATA)
|
||||
CLEANFILES = $(libman_DATA) $(BUILT_SOURCES) $(lintlib_DATA)
|
||||
libman_DATA = $(libman_PRE:man=@LIB_MAN_SUFFIX@) \
|
||||
$(Xau_shadows:=.@LIB_MAN_SUFFIX@)
|
||||
|
||||
EXTRA_DIST = xau.pc.in Autest.c $(libman_PRE)
|
||||
EXTRA_DIST = xau.pc.in $(libman_PRE) ChangeLog
|
||||
|
||||
Xau_shadows = \
|
||||
XauFileName \
|
||||
@ -55,6 +78,7 @@ shadows.DONE:
|
||||
(for i in $(Xau_shadows:=.@LIB_MAN_SUFFIX@) ; do \
|
||||
echo .so man$(LIB_MAN_DIR_SUFFIX)/Xau.$(LIB_MAN_SUFFIX) > $$i; \
|
||||
done)
|
||||
touch shadows.DONE
|
||||
|
||||
XORGRELSTRING = @PACKAGE_STRING@
|
||||
XORGMANNAME = X Version 11
|
||||
@ -62,3 +86,10 @@ XORGRELSTRING = @PACKAGE_STRING@
|
||||
Xau.$(LIB_MAN_SUFFIX): $(srcdir)/Xau.man
|
||||
sed 's/__xorgversion__/"$(XORGRELSTRING)" "$(XORGMANNAME)"/' \
|
||||
< $(srcdir)/Xau.man > Xau.$(LIB_MAN_SUFFIX)
|
||||
|
||||
.PHONY: ChangeLog
|
||||
|
||||
ChangeLog:
|
||||
(GIT_DIR=$(top_srcdir)/.git git-log > .changelog.tmp && mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) || (touch ChangeLog; echo 'git directory not found: installing possibly empty changelog.' >&2)
|
||||
|
||||
dist-hook: ChangeLog
|
||||
|
@ -83,12 +83,12 @@ depcomp = $(SHELL) $(top_srcdir)/depcomp
|
||||
am__depfiles_maybe = depfiles
|
||||
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
LTCOMPILE = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) \
|
||||
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
||||
$(AM_CFLAGS) $(CFLAGS)
|
||||
LTCOMPILE = $(LIBTOOL) $(LT_QUIET) --tag=CC --mode=compile $(CC) \
|
||||
$(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
||||
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
CCLD = $(CC)
|
||||
LINK = $(LIBTOOL) --tag=CC --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
||||
$(AM_LDFLAGS) $(LDFLAGS) -o $@
|
||||
LINK = $(LIBTOOL) $(LT_QUIET) --tag=CC --mode=link $(CCLD) \
|
||||
$(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
|
||||
SOURCES = $(libXau_la_SOURCES) $(Autest_SOURCES)
|
||||
DIST_SOURCES = $(am__libXau_la_SOURCES_DIST) $(Autest_SOURCES)
|
||||
libmanDATA_INSTALL = $(INSTALL_DATA)
|
||||
@ -113,8 +113,12 @@ distcleancheck_listfiles = find . -type f -print
|
||||
ACLOCAL = @ACLOCAL@
|
||||
ADMIN_MAN_DIR = @ADMIN_MAN_DIR@
|
||||
ADMIN_MAN_SUFFIX = @ADMIN_MAN_SUFFIX@
|
||||
AMCMDECHO = @AMCMDECHO@
|
||||
AMDEPSHOWCMDSAT = @AMDEPSHOWCMDSAT@
|
||||
AMDEP_FALSE = @AMDEP_FALSE@
|
||||
AMDEP_TRUE = @AMDEP_TRUE@
|
||||
AMPRETTYECHO = @AMPRETTYECHO@
|
||||
AMSHOWCMDSAT = @AMSHOWCMDSAT@
|
||||
AMTAR = @AMTAR@
|
||||
APP_MAN_DIR = @APP_MAN_DIR@
|
||||
APP_MAN_SUFFIX = @APP_MAN_SUFFIX@
|
||||
@ -149,6 +153,7 @@ F77 = @F77@
|
||||
FFLAGS = @FFLAGS@
|
||||
FILE_MAN_DIR = @FILE_MAN_DIR@
|
||||
FILE_MAN_SUFFIX = @FILE_MAN_SUFFIX@
|
||||
GREP = @GREP@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
||||
@ -168,6 +173,7 @@ LINT_FLAGS = @LINT_FLAGS@
|
||||
LINT_TRUE = @LINT_TRUE@
|
||||
LN_S = @LN_S@
|
||||
LTLIBOBJS = @LTLIBOBJS@
|
||||
LT_QUIET = @LT_QUIET@
|
||||
MAINT = @MAINT@
|
||||
MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@
|
||||
MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@
|
||||
@ -193,16 +199,9 @@ STRIP = @STRIP@
|
||||
VERSION = @VERSION@
|
||||
XAU_CFLAGS = @XAU_CFLAGS@
|
||||
XAU_LIBS = @XAU_LIBS@
|
||||
ac_ct_AR = @ac_ct_AR@
|
||||
ac_ct_AS = @ac_ct_AS@
|
||||
ac_ct_CC = @ac_ct_CC@
|
||||
ac_ct_CXX = @ac_ct_CXX@
|
||||
ac_ct_DLLTOOL = @ac_ct_DLLTOOL@
|
||||
ac_ct_F77 = @ac_ct_F77@
|
||||
ac_ct_OBJDUMP = @ac_ct_OBJDUMP@
|
||||
ac_ct_RANLIB = @ac_ct_RANLIB@
|
||||
ac_ct_STRIP = @ac_ct_STRIP@
|
||||
ac_pt_PKG_CONFIG = @ac_pt_PKG_CONFIG@
|
||||
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
|
||||
am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
|
||||
am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
|
||||
@ -219,23 +218,30 @@ build_cpu = @build_cpu@
|
||||
build_os = @build_os@
|
||||
build_vendor = @build_vendor@
|
||||
datadir = @datadir@
|
||||
datarootdir = @datarootdir@
|
||||
docdir = @docdir@
|
||||
dvidir = @dvidir@
|
||||
exec_prefix = @exec_prefix@
|
||||
host = @host@
|
||||
host_alias = @host_alias@
|
||||
host_cpu = @host_cpu@
|
||||
host_os = @host_os@
|
||||
host_vendor = @host_vendor@
|
||||
htmldir = @htmldir@
|
||||
includedir = @includedir@
|
||||
infodir = @infodir@
|
||||
install_sh = @install_sh@
|
||||
libdir = @libdir@
|
||||
libexecdir = @libexecdir@
|
||||
localedir = @localedir@
|
||||
localstatedir = @localstatedir@
|
||||
mandir = @mandir@
|
||||
mkdir_p = @mkdir_p@
|
||||
oldincludedir = @oldincludedir@
|
||||
pdfdir = @pdfdir@
|
||||
prefix = @prefix@
|
||||
program_transform_name = @program_transform_name@
|
||||
psdir = @psdir@
|
||||
sbindir = @sbindir@
|
||||
sharedstatedir = @sharedstatedir@
|
||||
sysconfdir = @sysconfdir@
|
||||
@ -291,33 +297,40 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__confi
|
||||
@for dep in $?; do \
|
||||
case '$(am__configure_deps)' in \
|
||||
*$$dep*) \
|
||||
echo ' cd $(srcdir) && $(AUTOMAKE) --gnu '; \
|
||||
@AMPRETTYECHO@ ' [AUTOMAKE ] rebuild all'; \
|
||||
@AMCMDECHO@ ' cd $(srcdir) && $(AUTOMAKE) --gnu '; \
|
||||
cd $(srcdir) && $(AUTOMAKE) --gnu \
|
||||
&& exit 0; \
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
|
||||
@AMPRETTYECHO@ ' [AUTOMAKE ] Makefile'; \
|
||||
@AMCMDECHO@ ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
|
||||
cd $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu Makefile
|
||||
.PRECIOUS: Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
echo ' $(SHELL) ./config.status'; \
|
||||
@AMPRETTYECHO@ ' [SH ] config.status'; \
|
||||
@AMCMDECHO@ ' $(SHELL) ./config.status'; \
|
||||
$(SHELL) ./config.status;; \
|
||||
*) \
|
||||
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
|
||||
@AMPRETTYECHO@ ' [SH ] config.status $@'; \
|
||||
@AMCMDECHO@ ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
|
||||
esac;
|
||||
|
||||
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
||||
$(SHELL) ./config.status --recheck
|
||||
@@AMPRETTYECHO@ ' [SH ] config.status'
|
||||
@AMSHOWCMDSAT@$(SHELL) ./config.status --recheck
|
||||
|
||||
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
|
||||
cd $(srcdir) && $(AUTOCONF)
|
||||
@@AMPRETTYECHO@ ' [AUTOCONF ] Regenerate'
|
||||
@AMSHOWCMDSAT@cd $(srcdir) && $(AUTOCONF)
|
||||
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
|
||||
cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
|
||||
@@AMPRETTYECHO@ ' [ACLOCAL ] Regenerate'
|
||||
@AMSHOWCMDSAT@cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
|
||||
|
||||
config.h: stamp-h1
|
||||
@if test ! -f $@; then \
|
||||
@ -327,24 +340,28 @@ config.h: stamp-h1
|
||||
|
||||
stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
|
||||
@rm -f stamp-h1
|
||||
cd $(top_builddir) && $(SHELL) ./config.status config.h
|
||||
@@AMPRETTYECHO@ ' [SH ] Regenerate config.h'
|
||||
@AMSHOWCMDSAT@cd $(top_builddir) && $(SHELL) ./config.status config.h
|
||||
$(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
|
||||
cd $(top_srcdir) && $(AUTOHEADER)
|
||||
rm -f stamp-h1
|
||||
touch $@
|
||||
@@AMPRETTYECHO@ ' [AUTOHEADER] Regenerate'
|
||||
@AMSHOWCMDSAT@cd $(top_srcdir) && $(AUTOHEADER)
|
||||
@AMSHOWCMDSAT@rm -f stamp-h1
|
||||
@AMSHOWCMDSAT@touch $@
|
||||
|
||||
distclean-hdr:
|
||||
-rm -f config.h stamp-h1
|
||||
@@AMPRETTYECHO@ ' [RM ] config.h stamp-h1'
|
||||
@AMSHOWCMDSAT@-rm -f config.h stamp-h1
|
||||
xau.pc: $(top_builddir)/config.status $(srcdir)/xau.pc.in
|
||||
cd $(top_builddir) && $(SHELL) ./config.status $@
|
||||
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
|
||||
@$(NORMAL_INSTALL)
|
||||
test -z "$(libdir)" || $(mkdir_p) "$(DESTDIR)$(libdir)"
|
||||
@AMSHOWCMDSAT@test -z "$(libdir)" || ( @AMPRETTYECHO@ ' [MKDIR ] "$(DESTDIR)$(libdir)"'; $(mkdir_p) "$(DESTDIR)$(libdir)" )
|
||||
@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
|
||||
if test -f $$p; then \
|
||||
f=$(am__strip_dir) \
|
||||
echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \
|
||||
$(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(libdir)/$$f"; \
|
||||
@AMPRETTYECHO@ " [INSTALL ] $$p -> $(DESTDIR)$(libdir)/$$f"; \
|
||||
@AMCMDECHO@ " $(LIBTOOL) $(LT_QUIET) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \
|
||||
$(LIBTOOL) $(LT_QUIET) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(libdir)/$$f"; \
|
||||
else :; fi; \
|
||||
done
|
||||
|
||||
@ -352,36 +369,45 @@ uninstall-libLTLIBRARIES:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@set -x; list='$(lib_LTLIBRARIES)'; for p in $$list; do \
|
||||
p=$(am__strip_dir) \
|
||||
echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \
|
||||
$(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \
|
||||
@AMPRETTYECHO@ " [RM ] $(DESTDIR)$(libdir)/$$p"; \
|
||||
@AMCMDECHO@ " $(LIBTOOL) $(LT_QUIET) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \
|
||||
$(LIBTOOL) $(LT_QUIET) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \
|
||||
done
|
||||
|
||||
clean-libLTLIBRARIES:
|
||||
-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
|
||||
@AMSHOWCMDSAT@-test -z "$(lib_LTLIBRARIES)" || ( \
|
||||
@AMPRETTYECHO@ ' [RM ] $(lib_LTLIBRARIES)'; \
|
||||
rm -f $(lib_LTLIBRARIES) )
|
||||
@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
|
||||
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
|
||||
test "$$dir" != "$$p" || dir=.; \
|
||||
echo "rm -f \"$${dir}/so_locations\""; \
|
||||
@AMPRETTYECHO@ " [RM ] $${dir}/so_locations"; \
|
||||
@AMCMDECHO@ "rm -f \"$${dir}/so_locations\""; \
|
||||
rm -f "$${dir}/so_locations"; \
|
||||
done
|
||||
libXau.la: $(libXau_la_OBJECTS) $(libXau_la_DEPENDENCIES)
|
||||
$(LINK) -rpath $(libdir) $(libXau_la_LDFLAGS) $(libXau_la_OBJECTS) $(libXau_la_LIBADD) $(LIBS)
|
||||
@@AMPRETTYECHO@ ' [LD ] libXau.la'
|
||||
@AMSHOWCMDSAT@$(LINK) -rpath $(libdir) $(libXau_la_LDFLAGS) $(libXau_la_OBJECTS) $(libXau_la_LIBADD) $(LIBS)
|
||||
|
||||
clean-checkPROGRAMS:
|
||||
@list='$(check_PROGRAMS)'; for p in $$list; do \
|
||||
f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
|
||||
echo " rm -f $$p $$f"; \
|
||||
@AMPRETTYECHO@ " [RM ] $$p $$f"; \
|
||||
@AMCMDECHO@ " rm -f $$p $$f"; \
|
||||
rm -f $$p $$f ; \
|
||||
done
|
||||
Autest$(EXEEXT): $(Autest_OBJECTS) $(Autest_DEPENDENCIES)
|
||||
@@AMPRETTYECHO@ ' [LD ] Autest$(EXEEXT)'
|
||||
@rm -f Autest$(EXEEXT)
|
||||
$(LINK) $(Autest_LDFLAGS) $(Autest_OBJECTS) $(Autest_LDADD) $(LIBS)
|
||||
@AMSHOWCMDSAT@$(LINK) $(Autest_LDFLAGS) $(Autest_OBJECTS) $(Autest_LDADD) $(LIBS)
|
||||
|
||||
mostlyclean-compile:
|
||||
-rm -f *.$(OBJEXT)
|
||||
@@AMPRETTYECHO@ ' [RM ] *.$(OBJEXT)'
|
||||
@AMSHOWCMDSAT@-rm -f *.$(OBJEXT)
|
||||
|
||||
distclean-compile:
|
||||
-rm -f *.tab.c
|
||||
@@AMPRETTYECHO@ ' [RM ] *.tab.c'
|
||||
@AMSHOWCMDSAT@-rm -f *.tab.c
|
||||
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/AuDispose.Plo@am__quote@
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/AuFileName.Plo@am__quote@
|
||||
@ -395,42 +421,50 @@ distclean-compile:
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/k5encode.Plo@am__quote@
|
||||
|
||||
.c.o:
|
||||
@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
||||
@@AMPRETTYECHO@ ' [C ] $<'
|
||||
@am__fastdepCC_TRUE@ @AMSHOWCMDSAT@if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ @AMSHOWCMDSAT@source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(COMPILE) -c $<
|
||||
@am__fastdepCC_FALSE@ @AMDEPSHOWCMDSAT@$(COMPILE) -c $<
|
||||
|
||||
.c.obj:
|
||||
@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
|
||||
@@AMPRETTYECHO@ ' [C ] $<'
|
||||
@am__fastdepCC_TRUE@ @AMSHOWCMDSAT@if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ @AMSHOWCMDSAT@source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
|
||||
@am__fastdepCC_FALSE@ @AMDEPSHOWCMDSAT@$(COMPILE) -c `$(CYGPATH_W) '$<'`
|
||||
|
||||
.c.lo:
|
||||
@am__fastdepCC_TRUE@ if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
||||
@@AMPRETTYECHO@ ' [C ] $<'
|
||||
@am__fastdepCC_TRUE@ @AMSHOWCMDSAT@if $(LTCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
|
||||
@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Plo"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ @AMSHOWCMDSAT@source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
|
||||
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
||||
@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
|
||||
@am__fastdepCC_FALSE@ @AMDEPSHOWCMDSAT@$(LTCOMPILE) -c -o $@ $<
|
||||
|
||||
mostlyclean-libtool:
|
||||
-rm -f *.lo
|
||||
@@AMPRETTYECHO@ ' [RM ] *.lo'
|
||||
@AMSHOWCMDSAT@-rm -f *.lo
|
||||
|
||||
clean-libtool:
|
||||
-rm -rf .libs _libs
|
||||
@@AMPRETTYECHO@ ' [RM ] .libs _libs'
|
||||
@AMSHOWCMDSAT@-rm -rf .libs _libs
|
||||
|
||||
distclean-libtool:
|
||||
-rm -f libtool
|
||||
@@AMPRETTYECHO@ ' [RM ] libtool'
|
||||
@AMSHOWCMDSAT@-rm -f libtool
|
||||
uninstall-info-am:
|
||||
install-libmanDATA: $(libman_DATA)
|
||||
@$(NORMAL_INSTALL)
|
||||
test -z "$(libmandir)" || $(mkdir_p) "$(DESTDIR)$(libmandir)"
|
||||
@@AMPRETTYECHO@ ' [MKDIR ] $(DESTDIR)$(libmandir)'
|
||||
@AMSHOWCMDSAT@test -z "$(libmandir)" || $(mkdir_p) "$(DESTDIR)$(libmandir)"
|
||||
@list='$(libman_DATA)'; for p in $$list; do \
|
||||
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
||||
f=$(am__strip_dir) \
|
||||
echo " $(libmanDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(libmandir)/$$f'"; \
|
||||
@AMPRETTYECHO@ " [INSTALL ] '$$d$$p' -> '$(DESTDIR)$(libmandir)/$$f'"; \
|
||||
@AMCMDECHO@ " $(libmanDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(libmandir)/$$f'"; \
|
||||
$(libmanDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(libmandir)/$$f"; \
|
||||
done
|
||||
|
||||
@ -438,16 +472,19 @@ uninstall-libmanDATA:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(libman_DATA)'; for p in $$list; do \
|
||||
f=$(am__strip_dir) \
|
||||
echo " rm -f '$(DESTDIR)$(libmandir)/$$f'"; \
|
||||
@AMPRETTYECHO@ " [RM ] $(DESTDIR)$(libmandir)/$$f"; \
|
||||
@AMCMDECHO@ " rm -f '$(DESTDIR)$(libmandir)/$$f'"; \
|
||||
rm -f "$(DESTDIR)$(libmandir)/$$f"; \
|
||||
done
|
||||
install-lintlibDATA: $(lintlib_DATA)
|
||||
@$(NORMAL_INSTALL)
|
||||
test -z "$(lintlibdir)" || $(mkdir_p) "$(DESTDIR)$(lintlibdir)"
|
||||
@@AMPRETTYECHO@ ' [MKDIR ] $(DESTDIR)$(lintlibdir)'
|
||||
@AMSHOWCMDSAT@test -z "$(lintlibdir)" || $(mkdir_p) "$(DESTDIR)$(lintlibdir)"
|
||||
@list='$(lintlib_DATA)'; for p in $$list; do \
|
||||
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
||||
f=$(am__strip_dir) \
|
||||
echo " $(lintlibDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(lintlibdir)/$$f'"; \
|
||||
@AMPRETTYECHO@ " [INSTALL ] '$$d$$p' -> '$(DESTDIR)$(lintlibdir)/$$f'"; \
|
||||
@AMCMDECHO@ " $(lintlibDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(lintlibdir)/$$f'"; \
|
||||
$(lintlibDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(lintlibdir)/$$f"; \
|
||||
done
|
||||
|
||||
@ -455,16 +492,19 @@ uninstall-lintlibDATA:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(lintlib_DATA)'; for p in $$list; do \
|
||||
f=$(am__strip_dir) \
|
||||
echo " rm -f '$(DESTDIR)$(lintlibdir)/$$f'"; \
|
||||
@AMPRETTYECHO@ " [RM ] $(DESTDIR)$(lintlibdir)/$$f"; \
|
||||
@AMCMDECHO@ " rm -f '$(DESTDIR)$(lintlibdir)/$$f'"; \
|
||||
rm -f "$(DESTDIR)$(lintlibdir)/$$f"; \
|
||||
done
|
||||
install-pkgconfigDATA: $(pkgconfig_DATA)
|
||||
@$(NORMAL_INSTALL)
|
||||
test -z "$(pkgconfigdir)" || $(mkdir_p) "$(DESTDIR)$(pkgconfigdir)"
|
||||
@@AMPRETTYECHO@ ' [MKDIR ] $(DESTDIR)$(pkgconfigdir)'
|
||||
@AMSHOWCMDSAT@test -z "$(pkgconfigdir)" || $(mkdir_p) "$(DESTDIR)$(pkgconfigdir)"
|
||||
@list='$(pkgconfig_DATA)'; for p in $$list; do \
|
||||
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
||||
f=$(am__strip_dir) \
|
||||
echo " $(pkgconfigDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(pkgconfigdir)/$$f'"; \
|
||||
@AMPRETTYECHO@ " [INSTALL ] '$$d$$p' -> '$(DESTDIR)$(pkgconfigdir)/$$f'"; \
|
||||
@AMCMDECHO@ " $(pkgconfigDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(pkgconfigdir)/$$f'"; \
|
||||
$(pkgconfigDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(pkgconfigdir)/$$f"; \
|
||||
done
|
||||
|
||||
@ -472,16 +512,19 @@ uninstall-pkgconfigDATA:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(pkgconfig_DATA)'; for p in $$list; do \
|
||||
f=$(am__strip_dir) \
|
||||
echo " rm -f '$(DESTDIR)$(pkgconfigdir)/$$f'"; \
|
||||
@AMPRETTYECHO@ " [RM ] $(DESTDIR)$(pkgconfigdir)/$$f"; \
|
||||
@AMCMDECHO@ " rm -f '$(DESTDIR)$(pkgconfigdir)/$$f'"; \
|
||||
rm -f "$(DESTDIR)$(pkgconfigdir)/$$f"; \
|
||||
done
|
||||
install-xauincludeHEADERS: $(xauinclude_HEADERS)
|
||||
@$(NORMAL_INSTALL)
|
||||
test -z "$(xauincludedir)" || $(mkdir_p) "$(DESTDIR)$(xauincludedir)"
|
||||
@@AMPRETTYECHO@ ' [MKDIR ] $(DESTDIR)$(xauincludedir)'
|
||||
@AMSHOWCMDSAT@test -z "$(xauincludedir)" || $(mkdir_p) "$(DESTDIR)$(xauincludedir)"
|
||||
@list='$(xauinclude_HEADERS)'; for p in $$list; do \
|
||||
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
||||
f=$(am__strip_dir) \
|
||||
echo " $(xauincludeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(xauincludedir)/$$f'"; \
|
||||
@AMPRETTYECHO@ " [INSTALL ] '$$d$$p' -> '$(DESTDIR)$(xauincludedir)/$$f'"; \
|
||||
@AMCMDECHO@ " $(xauincludeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(xauincludedir)/$$f'"; \
|
||||
$(xauincludeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(xauincludedir)/$$f"; \
|
||||
done
|
||||
|
||||
@ -489,23 +532,25 @@ uninstall-xauincludeHEADERS:
|
||||
@$(NORMAL_UNINSTALL)
|
||||
@list='$(xauinclude_HEADERS)'; for p in $$list; do \
|
||||
f=$(am__strip_dir) \
|
||||
echo " rm -f '$(DESTDIR)$(xauincludedir)/$$f'"; \
|
||||
@AMPRETTYECHO@ " [RM ] $(DESTDIR)$(xauincludedir)/$$f"; \
|
||||
@AMCMDECHO@ " rm -f '$(DESTDIR)$(xauincludedir)/$$f'"; \
|
||||
rm -f "$(DESTDIR)$(xauincludedir)/$$f"; \
|
||||
done
|
||||
|
||||
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
||||
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
@AMSHOWCMDSAT@list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
||||
done | \
|
||||
$(AWK) ' { files[$$0] = 1; } \
|
||||
END { for (i in files) print i; }'`; \
|
||||
@AMPRETTYECHO@ ' [MKID ] $$unique'; \
|
||||
mkid -fID $$unique
|
||||
tags: TAGS
|
||||
|
||||
TAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
tags=; \
|
||||
@AMSHOWCMDSAT@tags=; \
|
||||
here=`pwd`; \
|
||||
list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
@ -515,13 +560,14 @@ TAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
|
||||
END { for (i in files) print i; }'`; \
|
||||
if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
|
||||
test -n "$$unique" || unique=$$empty_fix; \
|
||||
@AMPRETTYECHO@ " [ETAGS ] $$tags"; \
|
||||
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
||||
$$tags $$unique; \
|
||||
fi
|
||||
ctags: CTAGS
|
||||
CTAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
|
||||
$(TAGS_FILES) $(LISP)
|
||||
tags=; \
|
||||
@AMSHOWCMDSAT@tags=; \
|
||||
here=`pwd`; \
|
||||
list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
|
||||
unique=`for i in $$list; do \
|
||||
@ -530,16 +576,20 @@ CTAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
|
||||
$(AWK) ' { files[$$0] = 1; } \
|
||||
END { for (i in files) print i; }'`; \
|
||||
test -z "$(CTAGS_ARGS)$$tags$$unique" \
|
||||
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
$$tags $$unique
|
||||
|| ( \
|
||||
@AMPRETTYECHO@ " [CTAGS ] $$tags"; \
|
||||
$(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
||||
$$tags $$unique )
|
||||
|
||||
GTAGS:
|
||||
here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
@@AMPRETTYECHO@ ' [GTAGS ]'
|
||||
@AMSHOWCMDSAT@here=`$(am__cd) $(top_builddir) && pwd` \
|
||||
&& cd $(top_srcdir) \
|
||||
&& gtags -i $(GTAGS_ARGS) $$here
|
||||
|
||||
distclean-tags:
|
||||
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
@@AMPRETTYECHO@ ' [RM ] TAGS ID GTAGS GRTAGS GSYMS GPATH tags'
|
||||
@AMSHOWCMDSAT@-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
||||
|
||||
check-TESTS: $(TESTS)
|
||||
@failed=0; all=0; xfail=0; xpass=0; skip=0; \
|
||||
@ -615,9 +665,11 @@ check-TESTS: $(TESTS)
|
||||
else :; fi
|
||||
|
||||
distdir: $(DISTFILES)
|
||||
$(am__remove_distdir)
|
||||
mkdir $(distdir)
|
||||
$(mkdir_p) $(distdir)/. $(distdir)/include/X11
|
||||
@AMSHOWCMDSAT@$(am__remove_distdir)
|
||||
@@AMPRETTYECHO@ ' [MKDIR ] $(distdir)'
|
||||
@AMSHOWCMDSAT@mkdir $(distdir)
|
||||
@@AMPRETTYECHO@ ' [MKDIR ] $(distdir)/. $(distdir)/include/X11'
|
||||
@AMSHOWCMDSAT@$(mkdir_p) $(distdir)/. $(distdir)/include/X11
|
||||
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
||||
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
|
||||
list='$(DISTFILES)'; for file in $$list; do \
|
||||
@ -644,59 +696,71 @@ distdir: $(DISTFILES)
|
||||
|| exit 1; \
|
||||
fi; \
|
||||
done
|
||||
$(MAKE) $(AM_MAKEFLAGS) \
|
||||
@AMSHOWCMDSAT@$(MAKE) $(AM_MAKEFLAGS) \
|
||||
top_distdir="$(top_distdir)" distdir="$(distdir)" \
|
||||
dist-hook
|
||||
-find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
|
||||
@AMSHOWCMDSAT@-find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
|
||||
! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
|
||||
! -type d ! -perm -400 -exec chmod a+r {} \; -o \
|
||||
! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \
|
||||
|| chmod -R a+r $(distdir)
|
||||
|| ( @AMPRETTYECHO@ ' [CHMOD ] a+r $(distdir)'; chmod -R a+r $(distdir) )
|
||||
dist-gzip: distdir
|
||||
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
||||
$(am__remove_distdir)
|
||||
@@AMPRETTYECHO@ ' [TAR.GZ ] $(distdir).tar.gz'
|
||||
@AMSHOWCMDSAT@tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
||||
@AMSHOWCMDSAT@$(am__remove_distdir)
|
||||
dist-bzip2: distdir
|
||||
tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
|
||||
$(am__remove_distdir)
|
||||
@@AMPRETTYECHO@ ' [TAR.BZ2 ] $(distdir).tar.bz2'
|
||||
@AMSHOWCMDSAT@tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
|
||||
@AMSHOWCMDSAT@$(am__remove_distdir)
|
||||
|
||||
dist-tarZ: distdir
|
||||
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
|
||||
$(am__remove_distdir)
|
||||
@@AMPRETTYECHO@ ' [TAR.Z ] $(distdir).tar.Z'
|
||||
@AMSHOWCMDSAT@tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
|
||||
@AMSHOWCMDSAT@$(am__remove_distdir)
|
||||
|
||||
dist-shar: distdir
|
||||
shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
|
||||
$(am__remove_distdir)
|
||||
@@AMPRETTYECHO@ ' [SHAR.GZ ] $(distdir).shar.gz'
|
||||
@AMSHOWCMDSAT@shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
|
||||
@AMSHOWCMDSAT@$(am__remove_distdir)
|
||||
|
||||
dist-zip: distdir
|
||||
-rm -f $(distdir).zip
|
||||
zip -rq $(distdir).zip $(distdir)
|
||||
$(am__remove_distdir)
|
||||
@@AMPRETTYECHO@ ' [ZIP ] $(distdir).zip'
|
||||
@AMSHOWCMDSAT@-rm -f $(distdir).zip
|
||||
@AMSHOWCMDSAT@zip -rq $(distdir).zip $(distdir)
|
||||
@AMSHOWCMDSAT@$(am__remove_distdir)
|
||||
|
||||
dist dist-all: distdir
|
||||
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
||||
tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
|
||||
$(am__remove_distdir)
|
||||
@@AMPRETTYECHO@ ' [TAR.GZ ] $(distdir).tar.gz'
|
||||
@AMSHOWCMDSAT@tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
|
||||
@@AMPRETTYECHO@ ' [TAR.BZ2 ] $(distdir).tar.bz2'
|
||||
@AMSHOWCMDSAT@tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
|
||||
@AMSHOWCMDSAT@$(am__remove_distdir)
|
||||
|
||||
# This target untars the dist file and tries a VPATH configuration. Then
|
||||
# it guarantees that the distribution is self-contained by making another
|
||||
# tarfile.
|
||||
distcheck: dist
|
||||
case '$(DIST_ARCHIVES)' in \
|
||||
@AMSHOWCMDSAT@case '$(DIST_ARCHIVES)' in \
|
||||
*.tar.gz*) \
|
||||
@AMPRETTYECHO@ ' [UNTAR.GZ ] $(distdir).tar.gz'; \
|
||||
GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
|
||||
*.tar.bz2*) \
|
||||
@AMPRETTYECHO@ ' [UNTAR.BZ2 ] $(distdir).tar.bz2'; \
|
||||
bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
|
||||
*.tar.Z*) \
|
||||
@AMPRETTYECHO@ ' [UNTAR.Z ] $(distdir).tar.Z'; \
|
||||
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
|
||||
*.shar.gz*) \
|
||||
@AMPRETTYECHO@ ' [UNSHAR.GZ ] $(distdir).shar.gz'; \
|
||||
GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\
|
||||
*.zip*) \
|
||||
@AMPRETTYECHO@ ' [UNZIP ] $(distdir).zip'; \
|
||||
unzip $(distdir).zip ;;\
|
||||
esac
|
||||
chmod -R a-w $(distdir); chmod a+w $(distdir)
|
||||
mkdir $(distdir)/_build
|
||||
mkdir $(distdir)/_inst
|
||||
chmod a-w $(distdir)
|
||||
@AMSHOWCMDSAT@chmod -R a-w $(distdir); chmod a+w $(distdir)
|
||||
@AMSHOWCMDSAT@mkdir $(distdir)/_build
|
||||
@AMSHOWCMDSAT@mkdir $(distdir)/_inst
|
||||
@AMSHOWCMDSAT@chmod a-w $(distdir)
|
||||
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
|
||||
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
|
||||
&& cd $(distdir)/_build \
|
||||
@ -751,8 +815,8 @@ check: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) check-am
|
||||
all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS) config.h
|
||||
installdirs:
|
||||
for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(libmandir)" "$(DESTDIR)$(lintlibdir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(xauincludedir)"; do \
|
||||
test -z "$$dir" || $(mkdir_p) "$$dir"; \
|
||||
@AMSHOWCMDSAT@for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(libmandir)" "$(DESTDIR)$(lintlibdir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(xauincludedir)"; do \
|
||||
test -z "$$dir" || ( @AMPRETTYECHO@ " [MKDIR ] $$dir"; $(mkdir_p) "$$dir" ); \
|
||||
done
|
||||
install: $(BUILT_SOURCES)
|
||||
$(MAKE) $(AM_MAKEFLAGS) install-am
|
||||
@ -765,21 +829,24 @@ install-am: all-am
|
||||
|
||||
installcheck: installcheck-am
|
||||
install-strip:
|
||||
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
@AMSHOWCMDSAT@$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
||||
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
||||
`test -z '$(STRIP)' || \
|
||||
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
||||
mostlyclean-generic:
|
||||
|
||||
clean-generic:
|
||||
@@AMPRETTYECHO@ ' [RM ] $(CLEANFILES)'
|
||||
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
|
||||
|
||||
distclean-generic:
|
||||
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
@@AMPRETTYECHO@ ' [RM ] $(CONFIG_CLEAN_FILES)'
|
||||
@AMSHOWCMDSAT@-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
||||
|
||||
maintainer-clean-generic:
|
||||
@echo "This command is intended for maintainers to use"
|
||||
@echo "it deletes files that may require special tools to rebuild."
|
||||
@@AMPRETTYECHO@ ' [RM ] $(BUILT_SOURCES)'
|
||||
-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
|
||||
clean: clean-am
|
||||
|
||||
@ -787,9 +854,12 @@ clean-am: clean-checkPROGRAMS clean-generic clean-libLTLIBRARIES \
|
||||
clean-libtool mostlyclean-am
|
||||
|
||||
distclean: distclean-am
|
||||
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
@@AMPRETTYECHO@ ' [RM ] $(am__CONFIG_DISTCLEAN_FILES)'
|
||||
@AMSHOWCMDSAT@-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
||||
@@AMPRETTYECHO@ ' [RM ] ./$(DEPDIR)'
|
||||
@AMSHOWCMDSAT@-rm -rf ./$(DEPDIR)
|
||||
@@AMPRETTYECHO@ ' [RM ] Makefile'
|
||||
@AMSHOWCMDSAT@-rm -f Makefile
|
||||
distclean-am: clean-am distclean-compile distclean-generic \
|
||||
distclean-hdr distclean-libtool distclean-tags
|
||||
|
||||
@ -815,10 +885,14 @@ install-man:
|
||||
installcheck-am:
|
||||
|
||||
maintainer-clean: maintainer-clean-am
|
||||
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
||||
-rm -rf $(top_srcdir)/autom4te.cache
|
||||
-rm -rf ./$(DEPDIR)
|
||||
-rm -f Makefile
|
||||
@@AMPRETTYECHO@ ' [RM ] $(am__CONFIG_DISTCLEAN_FILES)'
|
||||
@AMSHOWCMDSAT@-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
||||
@@AMPRETTYECHO@ ' [RM ] autom4te.cache/'
|
||||
@AMSHOWCMDSAT@-rm -rf $(top_srcdir)/autom4te.cache
|
||||
@@AMPRETTYECHO@ ' [RM ] ./$(DEPDIR)'
|
||||
@AMSHOWCMDSAT@-rm -rf ./$(DEPDIR)
|
||||
@@AMPRETTYECHO@ ' [RM ] Makefile'
|
||||
@AMSHOWCMDSAT@-rm -f Makefile
|
||||
maintainer-clean-am: distclean-am maintainer-clean-generic
|
||||
|
||||
mostlyclean: mostlyclean-am
|
||||
|
@ -1,5 +1,5 @@
|
||||
.\" $Xorg: Xau.man,v 1.3 2000/08/17 19:41:54 cpqbld Exp $
|
||||
.\" $XdotOrg: lib/Xau/Xau.man,v 1.2 2004/04/23 18:42:11 eich Exp $
|
||||
.\" $XdotOrg$
|
||||
.\"
|
||||
.\" Copyright (c) 1994 X Consortium
|
||||
.\"
|
||||
|
@ -48,6 +48,15 @@
|
||||
/* Define to the version of this package. */
|
||||
#undef PACKAGE_VERSION
|
||||
|
||||
/* Major version of this package */
|
||||
#undef PACKAGE_VERSION_MAJOR
|
||||
|
||||
/* Minor version of this package */
|
||||
#undef PACKAGE_VERSION_MINOR
|
||||
|
||||
/* Patch version of this package */
|
||||
#undef PACKAGE_VERSION_PATCHLEVEL
|
||||
|
||||
/* Define to 1 if you have the ANSI C header files. */
|
||||
#undef STDC_HEADERS
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
dnl
|
||||
dnl $Id: configure.ac,v 1.1.1.1 2006/11/25 16:54:53 matthieu Exp $
|
||||
dnl $Id: configure.ac,v 1.1.1.2 2006/12/16 21:38:42 matthieu Exp $
|
||||
dnl
|
||||
dnl Copyright © 2003 Keith Packard, Noah Levitt
|
||||
dnl
|
||||
@ -24,12 +24,16 @@ dnl
|
||||
dnl Process this file with autoconf to create configure.
|
||||
|
||||
AC_PREREQ([2.57])
|
||||
AC_INIT(libXau, 1.0.1, [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],libXau)
|
||||
AC_INIT(libXau, 1.0.3, [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],libXau)
|
||||
AM_INIT_AUTOMAKE([dist-bzip2])
|
||||
AM_MAINTAINER_MODE
|
||||
|
||||
AM_CONFIG_HEADER(config.h)
|
||||
|
||||
# Require xorg-macros version 1.1.0 or newer for XORG_WITH_LINT macro
|
||||
m4_ifndef([XORG_MACROS_VERSION], [AC_FATAL([must install xorg-macros 1.1 or later before running autoconf/autogen])])
|
||||
XORG_MACROS_VERSION(1.1)
|
||||
|
||||
AC_PROG_CC
|
||||
AC_PROG_INSTALL
|
||||
AC_PROG_LN_S
|
||||
@ -62,6 +66,11 @@ dnl XXX incomplete, please fill this in
|
||||
XAU_CFLAGS="$XAU_CFLAGS $XTHREAD_CFLAGS"
|
||||
fi
|
||||
|
||||
dnl Allow checking code with lint, sparse, etc.
|
||||
XORG_WITH_LINT
|
||||
XORG_LINT_LIBRARY([Xau])
|
||||
LINT_FLAGS="${LINT_FLAGS} ${XAU_CFLAGS}"
|
||||
|
||||
if test "x$GCC" = "xyes"; then
|
||||
GCC_WARNINGS="-Wall -Wpointer-arith -Wstrict-prototypes \
|
||||
-Wmissing-prototypes -Wmissing-declarations \
|
||||
|
@ -81,10 +81,6 @@ FILE* /* auth_file */,
|
||||
Xauth* /* auth */
|
||||
);
|
||||
|
||||
Xauth *XauGetAuthByName(
|
||||
_Xconst char* /* display_name */
|
||||
);
|
||||
|
||||
Xauth *XauGetAuthByAddr(
|
||||
#if NeedWidePrototypes
|
||||
unsigned int /* family */,
|
||||
|
Loading…
Reference in New Issue
Block a user