.gitignore | 6 ChangeLog | 49 Makefile.am | 9 Makefile.in | 671 - README | 20 aclocal.m4 | 8256 -------------- config.guess | 1526 -- config.h.in | 66 config.sub | 1658 -- configure |22716 --------------------------------------- configure.ac | 17 debian/changelog | 19 debian/control | 11 debian/rules | 27 debian/xsfbs/repack.sh | 32 debian/xsfbs/xsfbs-autoreconf.mk | 150 debian/xsfbs/xsfbs.mk | 127 debian/xsfbs/xsfbs.sh | 405 depcomp | 589 - install-sh | 519 ltmain.sh | 6964 ----------- man/.gitignore | 2 man/Makefile.in | 425 man/aiptek.man | 2 missing | 367 mkinstalldirs | 161 src/.gitignore | 6 src/Makefile.am | 5 src/Makefile.in | 514 src/xf86Aiptek.c | 2 src/xf86Aiptek.h | 2 31 files changed, 380 insertions(+), 44943 deletions(-)
New commits: commit cffb422e7f9bc0124980d69af5e0d330e697a242 Author: Julien Cristau <jcris...@debian.org> Date: Thu Apr 9 15:32:08 2009 +0100 Upload to unstable. diff --git a/debian/changelog b/debian/changelog index 1003c7b..130d46e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,8 +1,9 @@ -xserver-xorg-input-aiptek (1:1.2.0-2) UNRELEASED; urgency=low +xserver-xorg-input-aiptek (1:1.2.0-2) unstable; urgency=low * Allow parallel builds. + * Upload to unstable. - -- Julien Cristau <jcris...@debian.org> Wed, 01 Apr 2009 00:59:08 +0200 + -- Julien Cristau <jcris...@debian.org> Thu, 09 Apr 2009 15:32:06 +0100 xserver-xorg-input-aiptek (1:1.2.0-1) experimental; urgency=low commit 9da5c3660e51984cb7b1a92438c7b7fbc563eaab Author: Julien Cristau <jcris...@debian.org> Date: Wed Apr 1 00:59:16 2009 +0200 Allow parallel builds. diff --git a/debian/changelog b/debian/changelog index 93d361b..1003c7b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +xserver-xorg-input-aiptek (1:1.2.0-2) UNRELEASED; urgency=low + + * Allow parallel builds. + + -- Julien Cristau <jcris...@debian.org> Wed, 01 Apr 2009 00:59:08 +0200 + xserver-xorg-input-aiptek (1:1.2.0-1) experimental; urgency=low [ Timo Aaltonen ] diff --git a/debian/rules b/debian/rules index 1e2b63c..2b41b79 100755 --- a/debian/rules +++ b/debian/rules @@ -10,13 +10,14 @@ include debian/xsfbs/xsfbs.mk CFLAGS = -Wall -g -ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) +ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS))) CFLAGS += -O0 else CFLAGS += -O2 endif -ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) - INSTALL_PROGRAM += -s +ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) + NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS))) + MAKEFLAGS += -j$(NUMJOBS) endif DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH) commit c1cd0cbeaaea9435a380579f34119cc938da8b3d Author: Julien Cristau <jcris...@debian.org> Date: Tue Mar 31 22:06:03 2009 +0200 Prepare changelog for upload diff --git a/debian/changelog b/debian/changelog index d9c0d45..93d361b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -xserver-xorg-input-aiptek (1:1.2.0-1) UNRELEASED; urgency=low +xserver-xorg-input-aiptek (1:1.2.0-1) experimental; urgency=low [ Timo Aaltonen ] * New upstream release. @@ -8,7 +8,7 @@ xserver-xorg-input-aiptek (1:1.2.0-1) UNRELEASED; urgency=low [ Julien Cristau ] * Build against xserver >= 1.6 rc1. - -- Timo Aaltonen <tjaal...@ubuntu.com> Tue, 31 Mar 2009 16:09:22 +0300 + -- Julien Cristau <jcris...@debian.org> Tue, 31 Mar 2009 22:05:22 +0200 xserver-xorg-input-aiptek (1:1.1.1-1) unstable; urgency=low commit 2fa632e5844403f412077a2eb1e3080a5edf9424 Author: Julien Cristau <jcris...@debian.org> Date: Tue Mar 31 22:03:50 2009 +0200 Don't try to apply patches, we don't have any Causes FTBFS due to missing quilt build-dep diff --git a/debian/rules b/debian/rules index d87d3a6..1e2b63c 100755 --- a/debian/rules +++ b/debian/rules @@ -31,7 +31,7 @@ endif # kbd_drv.a isn't phenomenally useful; kbd_drv.so more so confflags += --disable-static -configure: $(STAMP_DIR)/patch +configure: autoreconf -vfi obj-$(DEB_BUILD_GNU_TYPE)/config.status: configure commit d2af41fe43aa750a39ef0bcb05bd8c3881e50c20 Author: Julien Cristau <jcris...@debian.org> Date: Tue Mar 31 22:03:46 2009 +0200 Build against xserver >= 1.6 rc1. diff --git a/debian/changelog b/debian/changelog index c6cb3fb..d9c0d45 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,9 +1,13 @@ xserver-xorg-input-aiptek (1:1.2.0-1) UNRELEASED; urgency=low + [ Timo Aaltonen ] * New upstream release. * Run autoreconf at build time; build-depend on automake, libtool and xutils-dev. + [ Julien Cristau ] + * Build against xserver >= 1.6 rc1. + -- Timo Aaltonen <tjaal...@ubuntu.com> Tue, 31 Mar 2009 16:09:22 +0300 xserver-xorg-input-aiptek (1:1.1.1-1) unstable; urgency=low diff --git a/debian/control b/debian/control index 2b3d515..ff753e4 100644 --- a/debian/control +++ b/debian/control @@ -6,7 +6,7 @@ Uploaders: David Nusinow <dnusi...@debian.org>, Julien Cristau <jcris...@debian. Build-Depends: debhelper (>= 5), pkg-config, - xserver-xorg-dev (>= 2:1.4), + xserver-xorg-dev (>= 2:1.5.99.901), x11proto-core-dev, x11proto-randr-dev, x11proto-input-dev, commit 58823fa8bf3d1636421d15f1c8b849a46c73b68f Author: Timo Aaltonen <tjaal...@cc.hut.fi> Date: Tue Mar 31 17:16:05 2009 +0300 Update the upstream ChangeLog. diff --git a/ChangeLog b/ChangeLog new file mode 100644 index 0000000..3ca6a2f --- /dev/null +++ b/ChangeLog @@ -0,0 +1,388 @@ +commit b4dfb51ee61f5c54134e5731e0581f9f74bc6829 +Author: Peter Hutterer <peter.hutte...@who-t.net> +Date: Tue Feb 24 13:44:25 2009 +1000 + + aiptek 1.2.0 + + Signed-off-by: Peter Hutterer <peter.hutte...@who-t.net> + +commit acfbb985d63861cf414f568001a4bce89b75b0d9 +Author: Paulo Cesar Pereira de Andrade <p...@mandriva.com.br> +Date: Mon Feb 2 18:13:44 2009 -0200 + + Janitor: rework make distcheck + + Don't use a static ChangeLog, and distribute the generated one. + Use only one .gitignore file. + Minor cleanup on configure.ac, aiming as similar as possible + drivers configure.ac's. + +commit 3c0327e190e134a4435b4c22238749fed12a6709 +Author: Alan Coopersmith <alan.coopersm...@sun.com> +Date: Thu Jan 29 15:11:26 2009 -0800 + + Add README with pointers to mailing list, bugzilla & git repos + +commit 8d05f481f0219dafed821b7cc89784afe73a5e24 +Author: Alan Coopersmith <alan.coopersm...@sun.com> +Date: Fri Jan 9 16:10:14 2009 -0800 + + Remove xorgconfig & xorgcfg from See Also list in man page + +commit 9caf1a8372b5c9bae4032d256bb6065d8dbf26ba +Author: Peter Hutterer <peter.hutte...@redhat.com> +Date: Thu Aug 14 15:01:28 2008 +0930 + + Fix build, xf86Version.h has been superseeded by xorgVersion.h + +commit 87a3bd344129c06e4f4f90b10d13347b77f2be93 +Author: Julien Cristau <jcris...@debian.org> +Date: Thu Jul 17 18:25:05 2008 +0200 + + Link against -lm for sqrt() + +commit 056b2a86085fd68f6408c53eb148284e2b506e77 +Author: Peter Hutterer <pe...@cs.unisa.edu.au> +Date: Mon May 26 22:01:29 2008 +0930 + + Check for XINPUT ABI 3. + +commit a92bf3b53a277928c94aa87f245ccf301c1e7a2d +Author: René van Paassen <rene.vanpaas...@gmail.com> +Date: Tue Jan 29 22:42:40 2008 +0100 + + Bumped the version to 1.1.1 + + This version is actually being tested/used by someone with a tablet (me) + +commit 4a8945d179f3ca9c6ca3553d36ce9840228cf84f +Author: René van Paassen <r...@pascua.localdomain> +Date: Tue Jan 29 22:32:04 2008 +0100 + + added #if to handle MiPointer{Current|Get}Screen cases + +commit 28269504679fd705f5666c450dbf862f91c8ca84 +Author: René van Paassen <r...@pascua.localdomain> +Date: Tue Jan 29 22:29:41 2008 +0100 + + moved xf86AiptekClose after RemoveEnabled.., fixes crash VT switch + +commit a23587a1eef2c256ae9d4184405efb74135e13d5 +Author: René van Paassen <r...@pascua.localdomain> +Date: Tue Jan 29 22:24:34 2008 +0100 + + Converted xf86msg into debug messages, to prevent filling the log + +commit 51a90b36853a98f6ec5f04c54a9d76fddcfa8ad6 +Author: Peter Hutterer <pe...@cs.unisa.edu.au> +Date: Thu Jan 17 17:21:38 2008 +1030 + + Don't worry about being core pointer if XInput API is > 0. + + Server 1.4 and above let all devices be XI devices and the core devices are + virtual. So we don't have to worry about it in the driver. + + This should make the code compatible with both 1.3 and 1.4. + +commit f424235dd26fa22bc3830cf9d884d7643abf3568 +Author: Peter Hutterer <pe...@cs.unisa.edu.au> +Date: Thu Jan 17 13:24:46 2008 +1030 + + Revert "Driver's don't have to worry about being core pointers anymore." + There's a better way of doing things. See next commit. + + This reverts commit 66e0fbb24377ac14b9cf8a80a55253cff13d7913. + +commit e34bc8e774d92bd81dcefbcd341ab3f040a7f144 +Author: Peter Hutterer <pe...@cs.unisa.edu.au> +Date: Thu Jan 10 11:27:39 2008 +1030 + + Remove redefinition of NEED_XF86_TYPES. + +commit a88dafb63b0e0f3e4557ae75a3ee9a377ea4ef68 +Author: Peter Hutterer <pe...@cs.unisa.edu.au> +Date: Thu Jan 10 11:26:49 2008 +1030 + + miPointerCurrentScreen is deprecated, miPointerGetScreen is all the rage now. + + Untested due to lack of device. + +commit 66e0fbb24377ac14b9cf8a80a55253cff13d7913 +Author: Peter Hutterer <pe...@cs.unisa.edu.au> +Date: Thu Jan 10 11:25:58 2008 +1030 + + Driver's don't have to worry about being core pointers anymore. + + The DDX will do the right job, no matter what events we post, so we don't need + in-driver checks for whether to post proximity events or not. + + Untested due to a lack of device. + +commit 3cb825cb4a633132de10df77e792fcbadf082385 +Author: Rene van Paassen <rene.vanpaas...@gmail.com> +Date: Thu Jan 10 11:23:06 2008 +1030 + + Patch with a load of fixes, backported from aiptektablet.sourceforge.net + + Tested with re-branded aiptek 12000U + +commit afedccae164668128c6228542585cc27d241b7e6 +Author: James Cloos <cl...@jhcloos.com> +Date: Mon Sep 3 05:52:01 2007 -0400 + + Add *~ to .gitignore to skip patch/emacs droppings + +commit 432145c8c4ec06710f139112aeee96fdc19c5f92 +Author: James Cloos <cl...@jhcloos.com> +Date: Thu Aug 23 19:25:19 2007 -0400 + + Rename .cvsignore to .gitignore + +commit 1733fc06082f982b0f0d57bac9632f3ece8f4c34 +Author: Brice Goglin <bgog...@debian.org> +Date: Mon Aug 6 19:32:29 2007 +0200 + + Use PACKAGE_VERSION_MAJOR/MINOR/PATCHLEVEL in xf86AiptekVersionRec + +commit c0f5a94625ed8e7ab326b3b604e8f7461921c027 +Author: Brice Goglin <bgog...@debian.org> +Date: Mon Aug 6 19:32:26 2007 +0200 + + Fix 1.1.0 version in configure.ac + +commit e65a8abb1da2058a5fefa60950054ed01ae2f467 +Author: Adam Jackson <a...@nwnk.net> +Date: Fri Apr 7 16:50:50 2006 +0000 + + Unlibcwrap. Bump server version requirement. Bump to 1.1.0. + +commit 10f7f22a718f2242bda8d378795d3061767cbc4b +Author: Kevin E Martin <k...@kem.org> +Date: Wed Dec 21 02:29:55 2005 +0000 + + Update package version for X11R7 release. + +commit 4331da985ae9d6a7b5d21eb0307827fb64aea1d1 +Author: Adam Jackson <a...@nwnk.net> +Date: Mon Dec 19 16:25:49 2005 +0000 + + Stub COPYING files + +commit eaa1babb65d3db249f58526c26f78c98a4921a14 +Author: Alan Coopersmith <alan.coopersm...@sun.com> +Date: Mon Dec 19 09:07:49 2005 +0000 + + Typo fixes, mailing list & url updates, and other changes to prepare for + X11R6.9 & 7.0 releases. + +commit c49c2d18eb645a863ca824bd898a512221ae6a0f +Author: Kevin E Martin <k...@kem.org> +Date: Thu Dec 15 00:24:13 2005 +0000 + + Update package version number for final X11R7 release candidate. + +commit 9faf2cecf235ef95c9e2700d3b2bd42633dc2b69 +Author: Kevin E Martin <k...@kem.org> +Date: Tue Dec 6 22:48:27 2005 +0000 + + Change *man_SOURCES ==> *man_PRE to fix autotools warnings. + +commit 5914bf9f7767403d884c86b9157f8280a4eb8bc1 +Author: Kevin E Martin <k...@kem.org> +Date: Sat Dec 3 05:49:29 2005 +0000 + + Update package version number for X11R7 RC3 release. + +commit 6b51e42175b57bf88ded3f66e1354d7c1dbe281b +Author: Kevin E Martin <k...@kem.org> +Date: Fri Dec 2 02:16:04 2005 +0000 + + Remove extraneous AC_MSG_RESULT. + +commit 8c4ba228719a927a1a409fef1d59b5f1ae6320a3 +Author: Adam Jackson <a...@nwnk.net> +Date: Tue Nov 29 23:29:54 2005 +0000 + + Only build dlloader modules by default. + +commit 9ca454714cd4643f4dd5568124bbdd1e704f9ea0 +Author: Alan Coopersmith <alan.coopersm...@sun.com> +Date: Mon Nov 28 22:04: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 7cebf35a1a62dd986f05f94ef075f748e6771b35 +Author: Eric Anholt <anh...@freebsd.org> +Date: Mon Nov 21 10:49:00 2005 +0000 + + Add .cvsignores for drivers. + +commit 09d0e1f5174d9379a6a62f6fcd421e40acb49600 +Author: Kevin E Martin <k...@kem.org> +Date: Wed Nov 9 21:15:10 2005 +0000 + + Update package version number for X11R7 RC2 release. + +commit d514546c3203b78ee5925e1f081353971f2c492d +Author: Kevin E Martin <k...@kem.org> +Date: Tue Nov 1 15:08:48 2005 +0000 + + Update pkgcheck depedencies to work with separate build roots. + +commit 97fd7aa3dc51fb0e3b7a6b27c3c73eb06cfbcbdd +Author: Kevin E Martin <k...@kem.org> +Date: Wed Oct 19 02:47:59 2005 +0000 + + Update package version number for RC1 release. + +commit 9204bcbe32e91f7880b90a7a33f7372f3240fef6 +Author: Alan Coopersmith <alan.coopersm...@sun.com> +Date: Tue Oct 18 00:01:50 2005 +0000 + + Use @DRIVER_MAN_SUFFIX@ instead of $(DRIVER_MAN_SUFFIX) in macro + substitutions to work better with BSD make + +commit a6934ae32c03ee0cbb7df9ce86176862ae579be3 +Author: Adam Jackson <a...@nwnk.net> +Date: Mon Oct 17 22:57:25 2005 +0000 + + More 1.7 braindamage: define EXTRA_DIST in terms of @DRIVER_NAME@ instead + of indirectly + +commit 06c97358d8fbc15458a229ed6d6e5f3ee328201f +Author: Alan Coopersmith <alan.coopersm...@sun.com> +Date: Mon Oct 17 00:08:53 2005 +0000 + + Use sed & cpp to substitute variables in driver man pages + +commit a58366783c50bd424e7ac36691e5b914d30771e4 +Author: Daniel Stone <dan...@fooishbar.org> +Date: Thu Aug 18 09:03:37 2005 +0000 + + Update autogen.sh to one that does objdir != srcdir. + +commit 9ee61601ca5b5f51f94a252676240031695f6678 +Author: Søren Sandmann Pedersen <sandm...@daimi.au.dk> +Date: Wed Aug 10 14:07:22 2005 +0000 + + Don\'t lose existing CFLAGS in all the input drivers and some of the video + drivers + +commit 28ae25b20902189d5f7ad4a6f2d0932aa18be7b1 +Author: Kevin E Martin <k...@kem.org> +Date: Fri Jul 29 21:22:39 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 a0bc41b3458c985aff5fc745dd8ff10e04310c20 +Author: Kevin E Martin <k...@kem.org> +Date: Wed Jul 13 20:03:20 2005 +0000 + + Make the module dir configurable + +commit f9627bd4e6cb2a88c46fa7799def0bd1b99b186d +Author: Kevin E Martin <k...@kem.org> +Date: Wed Jul 13 02:20:57 2005 +0000 + + Update all input drivers to pass distcheck + +commit b00537ba24d2ffc713faa71383e009518d2b5e42 +Author: Kevin E Martin <k...@kem.org> +Date: Wed Jul 13 02:18:12 2005 +0000 + + Change input drivers to get keysym's from <X11/keysym.h>. + +commit da137dba6b2601717e3ff760e885eed7755c5a9a +Author: Adam Jackson <a...@nwnk.net> +Date: Tue Jul 12 06:15:07 2005 +0000 + + Build skeletons for input drivers. Should basically work. + +commit 4733f1c8fd451306b09c017bd7741a4e0fe337e4 +Author: Adam Jackson <a...@nwnk.net> +Date: Mon Jul 11 02:37:58 2005 +0000 + + Prep input drivers for modularizing by adding guarded #include "config.h" + +commit 46d19bbd14e3a09222979cee955991e74458e668 +Author: Daniel Stone <dan...@fooishbar.org> +Date: Fri Jul 1 22:43:22 2005 +0000 + + Change all misc.h and os.h references to <X11/foo.h>. + +commit 58696f4a73aac4d0c43094e20d59477ff1da8031 +Author: Adam Jackson <a...@nwnk.net> +Date: Mon Jun 27 18:32:53 2005 +0000 + + Various input drivers set their InputDriverRec to be static when doing a + loadable build, and the same symbol can't be both static and _X_EXPORT. + Pointed out by Alan Coopersmith. + +commit d6531729f026d500516a9740c22b2b7800917a5e +Author: Adam Jackson <a...@nwnk.net> +Date: Sat Jun 25 21:17:00 2005 +0000 + + Bug #3626: _X_EXPORT tags for video and input drivers. + +commit 71b8c6c2fcc8dcb899c641e405d60434d0add0c0 +Author: Egbert Eich <e...@suse.de> +Date: Fri Apr 23 19:54:02 2004 +0000 + + Merging XORG-CURRENT into trunk + +commit 1d4b40f72f30d327e7bd8728e17779e1bbd683fa +Author: Egbert Eich <e...@suse.de> +Date: Sun Mar 14 08:33:51 2004 +0000 + + Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004 + +commit f6478217d3b9ad9d36e6f83a7704338f17b0a5f3 +Author: Egbert Eich <e...@suse.de> +Date: Wed Mar 3 12:12:30 2004 +0000 + + Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004 + +commit 58ee10b7d9fe3d1f3dc8063de302de33d1438002 +Author: Egbert Eich <e...@suse.de> +Date: Thu Feb 26 13:36:00 2004 +0000 + + readding XFree86's cvs IDs + +commit 376ac8a52977f29d59d42a723a567d6babba56f6 +Author: Egbert Eich <e...@suse.de> +Date: Thu Feb 26 09:23:34 2004 +0000 + + Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004 + +commit cec2b7afe6e877d2a83bfdfc991aad605ae081e8 +Author: Egbert Eich <e...@suse.de> +Date: Thu Jan 29 08:08:45 2004 +0000 + + Importing vendor version xf86-012804-2330 on Thu Jan 29 00:06:33 PST 2004 + +commit dcc03ba32debfb3bf1dcc7da024ad8199bd71d50 +Author: Kaleb Keithley <ka...@freedesktop.org> +Date: Fri Dec 19 20:55:25 2003 +0000 + + XFree86 4.3.99.902 (RC 2) + +commit 5d8fba55f40bef3e4e8aa70a86ed0bfd001145c7 +Author: Kaleb Keithley <ka...@freedesktop.org> +Date: Tue Nov 25 19:28:46 2003 +0000 + + XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks + +commit 4b1ef06b77c87bb5bd943a607130e556042bd61c +Author: Kaleb Keithley <ka...@freedesktop.org> +Date: Tue Nov 25 19:28:46 2003 +0000 + + Initial revision commit 10e7de1d2b44e11e3e004f6b53c81f0d44a75ef4 Author: Timo Aaltonen <tjaal...@cc.hut.fi> Date: Tue Mar 31 16:20:08 2009 +0300 Run autoreconf at build time; build-depend on automake, libtool and xutils-dev. diff --git a/Makefile.in b/Makefile.in deleted file mode 100644 index 0556255..0000000 --- a/Makefile.in +++ /dev/null @@ -1,671 +0,0 @@ -# Makefile.in generated by automake 1.10.1 from Makefile.am. -# @configure_input@ - -# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, -# 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. -# This Makefile.in is free software; the Free Software Foundation -# gives unlimited permission to copy and/or distribute it, -# with or without modifications, as long as this notice is preserved. - -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY, to the extent permitted by law; without -# even the implied warranty of MERCHANTABILITY or FITNESS FOR A -# PARTICULAR PURPOSE. - -...@set_make@ - -# Copyright 2005 Adam Jackson. -# -# Permission is hereby granted, free of charge, to any person obtaining a -# copy of this software and associated documentation files (the "Software"), -# to deal in the Software without restriction, including without limitation -# on the rights to use, copy, modify, merge, publish, distribute, sub -# license, and/or sell copies of the Software, and to permit persons to whom -# the Software is furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice (including the next -# paragraph) shall be included in all copies or substantial portions of the -# Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL -# ADAM JACKSON BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -VPATH = @srcdir@ -pkgdatadir = $(datadir)/@PACKAGE@ -pkglibdir = $(libdir)/@PACKAGE@ -pkgincludedir = $(includedir)/@PACKAGE@ -am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd -install_sh_DATA = $(install_sh) -c -m 644 -install_sh_PROGRAM = $(install_sh) -c -install_sh_SCRIPT = $(install_sh) -c -INSTALL_HEADER = $(INSTALL_DATA) -transform = $(program_transform_name) -NORMAL_INSTALL = : -PRE_INSTALL = : -POST_INSTALL = : -NORMAL_UNINSTALL = : -PRE_UNINSTALL = : -POST_UNINSTALL = : -build_triplet = @build@ -host_triplet = @host@ -subdir = . -DIST_COMMON = $(am__configure_deps) $(srcdir)/Makefile.am \ - $(srcdir)/Makefile.in $(srcdir)/config.h.in \ - $(top_srcdir)/configure COPYING ChangeLog config.guess \ - config.sub depcomp install-sh ltmain.sh missing mkinstalldirs -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/configure.ac -am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ - $(ACLOCAL_M4) -am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ - configure.lineno config.status.lineno -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = config.h -CONFIG_CLEAN_FILES = -SOURCES = -DIST_SOURCES = -RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ - html-recursive info-recursive install-data-recursive \ - install-dvi-recursive install-exec-recursive \ - install-html-recursive install-info-recursive \ - install-pdf-recursive install-ps-recursive install-recursive \ - installcheck-recursive installdirs-recursive pdf-recursive \ - ps-recursive uninstall-recursive -RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ - distclean-recursive maintainer-clean-recursive -ETAGS = etags -CTAGS = ctags -DIST_SUBDIRS = $(SUBDIRS) -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) -distdir = $(PACKAGE)-$(VERSION) -top_distdir = $(distdir) -am__remove_distdir = \ - { test ! -d $(distdir) \ - || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \ - && rm -fr $(distdir); }; } -DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2 -GZIP_ENV = --best -distuninstallcheck_listfiles = find . -type f -print -distcleancheck_listfiles = find . -type f -print -ACLOCAL = @ACLOCAL@ -ADMIN_MAN_DIR = @ADMIN_MAN_DIR@ -ADMIN_MAN_SUFFIX = @ADMIN_MAN_SUFFIX@ -AMTAR = @AMTAR@ -APP_MAN_DIR = @APP_MAN_DIR@ -APP_MAN_SUFFIX = @APP_MAN_SUFFIX@ -AR = @AR@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ -AWK = @AWK@ -CC = @CC@ -CCDEPMODE = @CCDEPMODE@ -CFLAGS = @CFLAGS@ -CPP = @CPP@ -CPPFLAGS = @CPPFLAGS@ -CXX = @CXX@ -CXXCPP = @CXXCPP@ -CXXDEPMODE = @CXXDEPMODE@ -CXXFLAGS = @CXXFLAGS@ -CYGPATH_W = @CYGPATH_W@ -DEFS = @DEFS@ -DEPDIR = @DEPDIR@ -DRIVER_MAN_DIR = @DRIVER_MAN_DIR@ -DRIVER_MAN_SUFFIX = @DRIVER_MAN_SUFFIX@ -DRIVER_NAME = @DRIVER_NAME@ -DSYMUTIL = @DSYMUTIL@ -ECHO = @ECHO@ -ECHO_C = @ECHO_C@ -ECHO_N = @ECHO_N@ -ECHO_T = @ECHO_T@ -EGREP = @EGREP@ -EXEEXT = @EXEEXT@ -F77 = @F77@ -FFLAGS = @FFLAGS@ -FILE_MAN_DIR = @FILE_MAN_DIR@ -FILE_MAN_SUFFIX = @FILE_MAN_SUFFIX@ -GREP = @GREP@ -INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ -LDFLAGS = @LDFLAGS@ -LIBOBJS = @LIBOBJS@ -LIBS = @LIBS@ -LIBTOOL = @LIBTOOL@ -LIB_MAN_DIR = @LIB_MAN_DIR@ -LIB_MAN_SUFFIX = @LIB_MAN_SUFFIX@ -LN_S = @LN_S@ -LTLIBOBJS = @LTLIBOBJS@ -MAINT = @MAINT@ -MAKEINFO = @MAKEINFO@ -MISC_MAN_DIR = @MISC_MAN_DIR@ -MISC_MAN_SUFFIX = @MISC_MAN_SUFFIX@ -MKDIR_P = @MKDIR_P@ -NMEDIT = @NMEDIT@ -OBJEXT = @OBJEXT@ -PACKAGE = @PACKAGE@ -PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ -PACKAGE_NAME = @PACKAGE_NAME@ -PACKAGE_STRING = @PACKAGE_STRING@ -PACKAGE_TARNAME = @PACKAGE_TARNAME@ -PACKAGE_VERSION = @PACKAGE_VERSION@ -PATH_SEPARATOR = @PATH_SEPARATOR@ -PKG_CONFIG = @PKG_CONFIG@ -RANLIB = @RANLIB@ -SED = @SED@ -SET_MAKE = @SET_MAKE@ -SHELL = @SHELL@ -STRIP = @STRIP@ -VERSION = @VERSION@ -XORG_CFLAGS = @XORG_CFLAGS@ -XORG_LIBS = @XORG_LIBS@ -abs_builddir = @abs_builddir@ -abs_srcdir = @abs_srcdir@ -abs_top_builddir = @abs_top_builddir@ -abs_top_srcdir = @abs_top_srcdir@ -ac_ct_CC = @ac_ct_CC@ -ac_ct_CXX = @ac_ct_CXX@ -ac_ct_F77 = @ac_ct_F77@ -am__include = @am__include@ -am__leading_dot = @am__leading_dot@ -am__quote = @am__quote@ -am__tar = @am__tar@ -am__untar = @am__untar@ -bindir = @bindir@ -build = @build@ -build_alias = @build_alias@ -build_cpu = @build_cpu@ -build_os = @build_os@ -build_vendor = @build_vendor@ -builddir = @builddir@ -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@ -inputdir = @inputdir@ -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@ -srcdir = @srcdir@ -sysconfdir = @sysconfdir@ -target_alias = @target_alias@ -top_builddir = @top_builddir@ -top_srcdir = @top_srcdir@ -AUTOMAKE_OPTIONS = foreign -SUBDIRS = src man -all: config.h - $(MAKE) $(AM_MAKEFLAGS) all-recursive - -.SUFFIXES: -am--refresh: - @: -$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) - @for dep in $?; do \ - case '$(am__configure_deps)' in \ - *$$dep*) \ - echo ' cd $(srcdir) && $(AUTOMAKE) --foreign '; \ - cd $(srcdir) && $(AUTOMAKE) --foreign \ - && exit 0; \ - exit 1;; \ - esac; \ - done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ - cd $(top_srcdir) && \ - $(AUTOMAKE) --foreign Makefile -.PRECIOUS: Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - @case '$?' in \ - *config.status*) \ - echo ' $(SHELL) ./config.status'; \ - $(SHELL) ./config.status;; \ - *) \ - echo ' 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 - -$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) - cd $(srcdir) && $(AUTOCONF) -$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) - cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) - -config.h: stamp-h1 - @if test ! -f $@; then \ - rm -f stamp-h1; \ - $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \ - else :; fi - -stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status - @rm -f stamp-h1 - 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 $@ - -distclean-hdr: - -rm -f config.h stamp-h1 - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -distclean-libtool: - -rm -f libtool - -# This directory's subdirectories are mostly independent; you can cd -# into them and run `make' without going through this Makefile. -# To change the values of `make' variables: instead of editing Makefiles, -# (1) if the variable is set in `config.status', edit `config.status' -# (which will cause the Makefiles to be regenerated when you run `make'); -# (2) otherwise, pass the desired values on the `make' command line. -$(RECURSIVE_TARGETS): - @failcom='exit 1'; \ - for f in x $$MAKEFLAGS; do \ - case $$f in \ - *=* | --[!k]*);; \ - *k*) failcom='fail=yes';; \ - esac; \ - done; \ - dot_seen=no; \ - target=`echo $@ | sed s/-recursive//`; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - dot_seen=yes; \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done; \ - if test "$$dot_seen" = "no"; then \ - $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ - fi; test -z "$$fail" - -$(RECURSIVE_CLEAN_TARGETS): - @failcom='exit 1'; \ - for f in x $$MAKEFLAGS; do \ - case $$f in \ - *=* | --[!k]*);; \ - *k*) failcom='fail=yes';; \ - esac; \ - done; \ - dot_seen=no; \ - case "$@" in \ - distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ - *) list='$(SUBDIRS)' ;; \ - esac; \ - rev=''; for subdir in $$list; do \ - if test "$$subdir" = "."; then :; else \ - rev="$$subdir $$rev"; \ - fi; \ - done; \ - rev="$$rev ."; \ - target=`echo $@ | sed s/-recursive//`; \ - for subdir in $$rev; do \ - echo "Making $$target in $$subdir"; \ - if test "$$subdir" = "."; then \ - local_target="$$target-am"; \ - else \ - local_target="$$target"; \ - fi; \ - (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ - || eval $$failcom; \ - done && test -z "$$fail" -tags-recursive: - list='$(SUBDIRS)'; for subdir in $$list; do \ - test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ - done -ctags-recursive: - list='$(SUBDIRS)'; for subdir in $$list; do \ - test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ - done - -ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - 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; nonemtpy = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - mkid -fID $$unique -tags: TAGS - -TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - tags=; \ - here=`pwd`; \ - if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ - include_option=--etags-include; \ - empty_fix=.; \ - else \ - include_option=--include; \ - empty_fix=; \ - fi; \ - list='$(SUBDIRS)'; for subdir in $$list; do \ - if test "$$subdir" = .; then :; else \ - test ! -f $$subdir/TAGS || \ - tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ - fi; \ - done; \ - list='$(SOURCES) $(HEADERS) config.h.in $(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; nonempty = 1; } \ - END { if (nonempty) { for (i in files) print i; }; }'`; \ - if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ - test -n "$$unique" || unique=$$empty_fix; \ - $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ - $$tags $$unique; \ - fi -ctags: CTAGS -CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ - $(TAGS_FILES) $(LISP) - tags=; \ - list='$(SOURCES) $(HEADERS) config.h.in $(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; nonempty = 1; } \ -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org