debian/0000755000000000000000000000000012201620034007154 5ustar debian/control0000644000000000000000000000272312201620034010563 0ustar Source: xpuzzles Section: games Priority: optional Maintainer: Varun Hiremath Build-Depends: debhelper (>= 7), libesd0-dev, libxpm-dev, libxt-dev, libmotif-dev, libglu1-mesa-dev, autotools-dev, libaudiofile-dev Standards-Version: 3.9.4 Homepage: http://www.tux.org/~bagleyd/puzzles.html Vcs-Git: git://git.debian.org/users/varun/xpuzzles.git Vcs-Browser: http://git.debian.org/?p=users/varun/xpuzzles.git;a=summary Package: xpuzzles Architecture: any Depends: ${shlibs:Depends} Conflicts: xmpuzzles Description: collection of puzzles for X (plain X version) The following puzzles are included: . - Rotational 3D Puzzles: xrubik, xpyraminx, xoct, xskewb, xdino, xmball - Sliding Block Puzzles: xcubes, xtriangles, xhexagons, xpanex - Combination: xbarrel, xmlink . This version was compiled without the Motif GUI widget library and thus shows limited user interface functionality. See xmpuzzles for the extended version. Package: xmpuzzles Priority: extra Architecture: any Depends: ${shlibs:Depends} Conflicts: xpuzzles Description: collection of puzzles for X (Motif version) The following puzzles are included: . - Rotational 3D Puzzles: xmrubik, xmpyraminx, xmoct, xmskewb, xmdino, xmmball - Sliding Block Puzzles: xmcubes, xmtriangles, xmhexagons, xmpanex - Combination: xmbarrel, xmmlink . This is the Motif version which shows additional functionality. It was compiled with lesstif2. Motif is a GUI widget library for the X Window system. debian/copyright0000644000000000000000000001065512201620034011116 0ustar Downloaded from Initially packaged by Christoph Lameter on Thu, 08 Sep 1996 15:37:25 +0100 and maintained by Christoph Lameter (until 11 Nov 1996) Vincent Renardias (until 29 Sep 1998) Darren Benham (until 12 Mar 2000) Matej Vela (until 29 Dec 2001) with additional help from Christian Kurz Henrique de Moraes Holschuh Joey Hess Thomas Bushnell, BSG Florian Ernst (until 23 Dec 2005) Jose Carlos Medeiros (until 17 Aug 2006) The current maintainer is Varun Hiremath The source code includes the following copyright licence: ---------------------------------------------------------- /*- # # Copyright © 1994 - 2005 David Albert Bagley, bagleyd@tux.org # # All Rights Reserved # # Permission to use, copy, modify, and distribute this software and # its documentation for any purpose and without fee is hereby granted, # provided that the above copyright notice appear in all copies and # that both that copyright notice and this permission notice appear in # supporting documentation, and that the name of the author not be # used in advertising or publicity pertaining to distribution of the # software without specific, written prior permission. # # This program is distributed in the hope that it will be "playable", # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # */ ---------------------------------------------------------- For xcubes/CubesS.c there exists the following note: ---------------------------------------------------------- # Taken from the X puzzle by Don Bennett, HP Labs # [...] /* * $XConsortium: puzzle.c,v 1.14 94/03/28 18:34:10 gildea Exp $ */ /* Puzzle - © Copyright 1987, 1988 Don Bennett. * * Permission to use, copy, modify, and distribute this software and its * documentation for any purpose and without fee is hereby granted, * provided that the above copyright notice appear in all copies and that * both that copyright notice and this permission notice appear in * supporting documentation. */ ---------------------------------------------------------- The files */{file.c,picture.c,sound.c} show: ---------------------------------------------------------- /* # Taken from xlock, many authors... # # All Rights Reserved # # Permission to use, copy, modify, and distribute this software and # its documentation for any purpose and without fee is hereby granted, # provided that the above copyright notice appear in all copies and # that both that copyright notice and this permission notice appear in # supporting documentation, and that the name of the author not be # used in advertising or publicity pertaining to distribution of the # software without specific, written prior permission. # # This program is distributed in the hope that it will be "useful", # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # */ ---------------------------------------------------------- The */mkinstalldirs scripts show: ---------------------------------------------------------- # Author: Noah Friedman # Created: 1993-05-16 # Public domain ---------------------------------------------------------- The */install-sh scripts show: ---------------------------------------------------------- # Copyright 1991 by the Massachusetts Institute of Technology # # Permission to use, copy, modify, distribute, and sell this software and its # documentation for any purpose is hereby granted without fee, provided that # the above copyright notice appear in all copies and that both that # copyright notice and this permission notice appear in supporting # documentation, and that the name of M.I.T. not be used in advertising or # publicity pertaining to distribution of the software without specific, # written prior permission. M.I.T. makes no representations about the # suitability of this software for any purpose. It is provided "as is" # without express or implied warranty. ---------------------------------------------------------- debian/watch0000644000000000000000000000011612201620034010203 0ustar version=3 http://ftp.tux.org/pub/tux/bagleyd/xpuzzles/xpuzzles-(.*)\.tar\.bz2 debian/rules0000755000000000000000000001110212201620034010227 0ustar #!/usr/bin/make -f # -*- makefile -*- # Sample debian/rules that uses debhelper. # GNU copyright 1997 to 1999 by Joey Hess. #export DH_VERBOSE=1 PROGRAMS = rubik skewb dino pyraminx oct mball cubes triangles hexagons mlink barrel panex DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) CONFIGURE_FLAGS := --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \ --prefix=/usr --bindir=\$${prefix}/games --mandir=\$${prefix}/share/man \ --with-x --with-xpm --without-rplay --with-esound --without-nas CFLAGS = -Wall -g ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) CFLAGS += -O0 else CFLAGS += -O2 endif build: true build-motif-stamp: dh_testdir for PROG in $(PROGRAMS) ; do \ set -e ; \ cd $$PROG ; \ # use up to date config.{sub,guess} from autotools-dev \ ln -sf /usr/share/misc/config.sub . ; \ ln -sf /usr/share/misc/config.guess . ; \ CFLAGS="$(CFLAGS)" ./configure $(CONFIGURE_FLAGS) --with-motif --enable-xm-prefix ; \ $(MAKE) ; \ cd .. ; \ done touch $@ build-nomotif-stamp: dh_testdir $(MAKE) -f xpuzzles.Makefile distclean for PROG in $(PROGRAMS) ; do \ set -e ; \ cd $$PROG ; \ CFLAGS="$(CFLAGS)" ./configure $(CONFIGURE_FLAGS) --without-motif ; \ $(MAKE) ; \ cd .. ; \ done touch $@ clean: dh_testdir dh_testroot $(MAKE) -f xpuzzles.Makefile distclean dh_clean build-motif-stamp build-nomotif-stamp debian/*.menu debian/*links $(RM) -r debian/xdesktop debian/xmdesktop # remove outdated config.{sub,guess} find \( -name config.sub -o -name config.guess \) -print0 | xargs -0 -r rm -f \; install: install-motif-stamp install-nomotif-stamp for INFIX in '' m ; do \ set -e ; \ DOCDIR=$(CURDIR)/debian/x$${INFIX}puzzles/usr/share/doc/x$${INFIX}puzzles ; \ PIXDIR=$(CURDIR)/debian/x$${INFIX}puzzles/usr/share/pixmaps ; \ install -D -m 0644 xpuzzles.README $$DOCDIR/README ; \ echo -n "" > debian/x$${INFIX}puzzles.menu; \ mkdir -p $(CURDIR)/debian/x$${INFIX}desktop; \ for PROG in $(PROGRAMS) ; do \ install -D -m 0644 $$PROG/README $$DOCDIR/x$$INFIX$$PROG.README ; \ install -D -m 0644 $$PROG/pixmaps/$$PROG.t.xpm $$PIXDIR/x$$PROG.t.xpm ; \ install -D -m 0644 $$PROG/pixmaps/$$PROG.m.xpm $$PIXDIR/x$$PROG.m.xpm ; \ echo '?package(x'$$INFIX'puzzles): needs="X11" \' >> debian/x$${INFIX}puzzles.menu ; \ echo ' section="Games/Puzzles" title="'x$$INFIX$$PROG'" \' >> debian/x$${INFIX}puzzles.menu ; \ echo ' command="/usr/games/x'$$INFIX$$PROG'" \' >> debian/x$${INFIX}puzzles.menu ; \ echo ' icon="/usr/share/pixmaps/x'$$PROG'.m.xpm"' >> debian/x$${INFIX}puzzles.menu ; \ echo '[Desktop Entry]' > debian/x$${INFIX}desktop/x$${INFIX}$$PROG.desktop ; \ echo 'Name=x'$$INFIX$$PROG'' >> debian/x$${INFIX}desktop/x$${INFIX}$$PROG.desktop ; \ echo 'GenericName='$$PROG' game' >> debian/x$${INFIX}desktop/x$${INFIX}$$PROG.desktop ; \ echo 'Exec=/usr/games/x'$$INFIX$$PROG'' >> debian/x$${INFIX}desktop/x$${INFIX}$$PROG.desktop ; \ echo 'Icon=/usr/share/pixmaps/x'$$PROG'.m.xpm' >> debian/x$${INFIX}desktop/x$${INFIX}$$PROG.desktop ; \ echo 'Terminal=false' >> debian/x$${INFIX}desktop/x$${INFIX}$$PROG.desktop ; \ echo 'Type=Application' >> debian/x$${INFIX}desktop/x$${INFIX}$$PROG.desktop ; \ echo 'Categories=Game;' >> debian/x$${INFIX}desktop/x$${INFIX}$$PROG.desktop ; \ done ; \ mkdir -p $(CURDIR)/debian/x$${INFIX}puzzles/usr/share/applications; \ cp debian/x$${INFIX}desktop/*.desktop $(CURDIR)/debian/x$${INFIX}puzzles/usr/share/applications; \ done install-motif-stamp: build-motif-stamp dh_testroot for PROG in $(PROGRAMS) ; do \ set -e ; \ cd $$PROG ; \ $(MAKE) install DESTDIR=$(CURDIR)/debian/xmpuzzles xapploaddir=/etc/X11/app-defaults ; \ cd .. ; \ echo 'usr/share/man/man6/x'$$PROG'.6.gz usr/share/man/man6/xm'$$PROG'.6.gz' >> debian/xmpuzzles.links ; \ done install-nomotif-stamp: build-nomotif-stamp dh_testroot for PROG in $(PROGRAMS) ; do \ set -e ; \ cd $$PROG ; \ $(MAKE) install DESTDIR=$(CURDIR)/debian/xpuzzles xapploaddir=/etc/X11/app-defaults ; \ cd .. ; \ done binary-indep: install # We have nothing to do by default. binary-arch: install dh_testdir -a dh_testroot -a dh_install -a dh_installdocs -a -A debian/README.Debian dh_installmenu -a dh_installman -a dh_installchangelogs -a dh_strip -a dh_link -a dh_compress -a dh_fixperms -a dh_installdeb -a dh_shlibdeps -a dh_gencontrol -a dh_md5sums -a dh_builddeb -a get-orig-source: -uscan --force-download --repack --rename binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary debian/compat0000644000000000000000000000000212201620034010352 0ustar 7 debian/changelog0000644000000000000000000002605412201620034011035 0ustar xpuzzles (7.7.1-1) unstable; urgency=low * New upstream release * Build-Depends replace lesstif2-dev with libmotif-dev (Closes: #714676) * Add Build-Depnds libaudiofile-dev (Closes: #657595) * Add a patch linkaudio.diff to fix linking with libaudiofile * Switch to source format 3 -- Varun Hiremath Sat, 10 Aug 2013 20:40:57 -0400 xpuzzles (7.5.3-1) unstable; urgency=low * New upstream release * Bump Standards-Version to 3.8.3 -- Varun Hiremath Thu, 24 Dec 2009 04:44:42 -0500 xpuzzles (7.5-1) unstable; urgency=low * New upstream release * Bump Standards-Version to 3.8.2 * Remove Torsten from Uploaders, as requested. * Bump debian/compat to 7 * Build-Depend on autotools-dev + remove outdated config.{sub,guess} (Closes: #537613) + use up to date files from autotools-dev -- Varun Hiremath Sun, 09 Aug 2009 17:41:59 -0400 xpuzzles (7.4.2-1) unstable; urgency=low * New upstream release * Bump up Standards-Version: 3.8.0 (no changes). -- Torsten Werner Fri, 05 Dec 2008 00:41:00 +0100 xpuzzles (7.4.1-1) unstable; urgency=low * New upstream version -- Torsten Werner Tue, 12 Aug 2008 06:12:09 +0200 xpuzzles (7.4-1) unstable; urgency=low * New upstream release * Change Build-Depends: libgl1-mesa-dev. -- Torsten Werner Thu, 24 Jul 2008 21:56:28 +0200 xpuzzles (7.3.3-1) unstable; urgency=low * New upstream release * Bump Standards-Version to 3.7.3 -- Varun Hiremath Fri, 15 Feb 2008 19:27:27 +0530 xpuzzles (7.3.2-1) unstable; urgency=low [ Varun Hiremath ] * New upstream release * debian/rules: fix the generated *.desktop files. [ Torsten Werner ] * Fix Vcs and Homepage headers in debian/control. -- Torsten Werner Sat, 01 Dec 2007 09:59:17 +0100 xpuzzles (7.3-1) unstable; urgency=low * New upstream release * debian/rules: incorporate upstream changes in src directory names -- Varun Hiremath Thu, 03 May 2007 21:50:07 +0530 xpuzzles (7.2.6-1) experimental; urgency=low * New upstream release * debian/rules: + clean up the desktop files appearing in the diff file. + separate the desktop files for the two binaries xpuzzles and xmpuzzles and install only the corresponding ones in both the binaries. -- Varun Hiremath Fri, 29 Dec 2006 23:31:19 +0530 xpuzzles (7.2.5-1) experimental; urgency=low [ Varun Hiremath ] * New upstream release * Add XS-X-Vcs-Svn header in debian/control * Update debian/watch to version 3 * debian/control: indented Homepage with two spaces [ Torsten Werner ] * Uploading to experimental because we are in soft freeze. -- Torsten Werner Sun, 26 Nov 2006 21:56:51 +0100 xpuzzles (7.2.3-1) unstable; urgency=low * New upstream release -- Varun Hiremath Sun, 1 Oct 2006 21:59:54 +0530 xpuzzles (7.2.1-2) unstable; urgency=low [ Varun Hiremath ] * New maintainer (Closes: #382560) [ Torsten Werner ] * add myself to Uploaders -- Torsten Werner Thu, 17 Aug 2006 02:56:19 +0200 xpuzzles (7.2.1-1) unstable; urgency=low * New upstream release * Bump Standards-Version: 3.7.2 -- Jose Carlos Medeiros Tue, 11 Jul 2006 17:37:06 -0300 xpuzzles (7.2-1) unstable; urgency=low * New upstream release -- Jose Carlos Medeiros Fri, 12 May 2006 13:01:30 -0300 xpuzzles (7.1.5-3) unstable; urgency=low * Removed debian/xabacus.desktop file, this is a unused file. (closes: 349456) -- Jose Carlos Medeiros Fri, 10 Mar 2006 11:32:25 -0300 xpuzzles (7.1.5-2) unstable; urgency=low * New Mantainer. (closes: #344461) * Updated debian/watch file. * Added creation of desktop menu files. -- Jose Carlos Medeiros Fri, 23 Dec 2005 17:00:44 -0200 xpuzzles (7.1.5-1) unstable; urgency=low * New upstream release * debian/copyright: B-D on xlibmesa-gl-dev | libgl-dev instead of just plain xlibmesa-gl-dev * debian/rules: minor improvement in style -- Florian Ernst Mon, 24 Oct 2005 18:19:33 +0200 xpuzzles (7.1.4-1) unstable; urgency=low * New upstream release * debian/control: Standards-Version 3.6.2, no changes required -- Florian Ernst Tue, 9 Aug 2005 15:01:13 +0200 xpuzzles (7.1.3-1) unstable; urgency=low * New upstream release -- Florian Ernst Sun, 13 Mar 2005 13:27:40 +0100 xpuzzles (7.1.2-1) unstable; urgency=low * New maintainer address, many thanks to Shaun Jackman for previous sponsoring * New upstream release + incorporates compilation patch and esound patch, thus dropping them * debian/control: start Description: with lowercase letter instead -- Florian Ernst Sun, 23 Jan 2005 19:07:40 +0100 xpuzzles (7.1.1-1) unstable; urgency=low * New upstream release + incorporates compilation patch for plain X progs + patch for esound added * debian/control: + Build-Depends: removed autotools-dev (upstream takes care), added libesd0-dev for sound + Description(s): xbarrel is a combination puzzle, Motif versions clarified * debian/copyright: + updated, now elaborately listing every mention * debian/rules: + reflect esound usage / config.{sub,guess} already present * debian/README.Debian: it's about xrubik, clarified -- Florian Ernst Thu, 23 Dec 2004 00:13:41 +0100 xpuzzles (7.0.1-3) unstable; urgency=low * debian/control: trim down descriptions (Closes: #267669) * debian/README.Debian: added, explaining the color differences between the original cube and the recently sold common cube (Closes: #141329) -- Florian Ernst Tue, 21 Sep 2004 12:06:29 +0200 xpuzzles (7.0.1-2) unstable; urgency=medium (FTBFS on ia64 and s390) * Build-Depends on autotools-dev, updated config.{sub,guess} -- Florian Ernst Tue, 17 Aug 2004 10:33:07 +0200 xpuzzles (7.0.1-1) unstable; urgency=low * New upstream release, new maintainer (Closes: #261289) * echo 4 > debian/compat * debian/control: + updated Build-Depends + added xbarrel and upstream homepage to long descriptions as well as clarifying the differences between xpuzzles and xmpuzzles + Standards-Version: 3.6.1 * debian/copyright + added note about previous and current maintainer/s + updated copyright notice * debian/rules: redo, following best practices * debian/watch: added -- Florian Ernst Sat, 14 Aug 2004 18:44:19 +0200 xpuzzles (5.5.4.1-2) unstable; urgency=low * New maintainer. -- Thomas Bushnell, BSG Sat, 29 Dec 2001 13:15:52 -0800 xpuzzles (5.5.4.1-1) unstable; urgency=low * New upstream version. * Updated maintainer address to . * Conforms to Standards version 3.5.6. -- Matej Vela Sat, 17 Nov 2001 20:39:09 +0100 xpuzzles (5.5.3-1) unstable; urgency=low * New upstream version. * Lowered priority of xmpuzzles to extra, correcting the override disparity. -- Matej Vela Tue, 3 Apr 2001 10:09:58 +0200 xpuzzles (5.5.2-4) unstable; urgency=low * Use `int' to store the return value from `getc' since `char' is unsigned on some machines and cannot equal `EOF'. Closes: #53716. * debian/rules: Rewritten to avoid patching Makefiles. Moved to debhelper 3. Autogenerates debian/*.menu. * debian/control: Updated. * Conforms to Standards version 3.5.2. -- Matej Vela Mon, 26 Mar 2001 01:47:50 +0200 xpuzzles (5.5.2-3) unstable; urgency=low * Moved app-defaults to /etc/X11, Closes: #86330 -- Joey Hess Fri, 16 Feb 2001 19:14:41 -0800 xpuzzles (5.5.2-2) unstable; urgency=low * Fixed typo in menu entry for xcubes (Closes: #84966) * Upload as non-native source format (native upload of 5.5.2-1 caused by broken upload?) -- Henrique de Moraes Holschuh Mon, 5 Feb 2001 13:47:55 -0200 xpuzzles (5.5.2-1) unstable; urgency=low * Added Build-Depends (Closes: #60281). * Packaged New Upstream Version (Closes: #50826) -- Christian Kurz Mon, 13 Mar 2000 19:20:47 +0100 xpuzzles (5.4.4-5) unstable; urgency=low * Made package lintian and policy-compliant. -- Christian Kurz Sun, 12 Mar 2000 11:25:12 +0100 xpuzzles (5.4.4-4) unstable; urgency=low * Recompiled lesstif/motif binaries against new library * Orphaned -- Darren Benham Fri, 05 Mar 1999 20:11:16 -0800 xpuzzles (5.4.4-3) unstable; urgency=low * Fixed a few spelling errors in control file -- Darren Benham Mon, 29 Mar 1999 20:11:16 -0800 xpuzzles (5.4.4-2) unstable; urgency=low * Created Conflicts for motif and non-motif versions (closes #27393 & #27585) -- Darren Benham Wed, 7 Oct 1998 13:03:16 -0700 xpuzzles (5.4.4-1) unstable; urgency=low * New upstream version * new maintainer * seperated motif into seperate lesstif package -- Darren Benham Tue, 29 Sep 1998 21:50:47 -0700 xpuzzles (5.4.3-1) unstable; urgency=low * New upstream version (Bug #17997). * Lintian report #19445: Correct md5sums problem. Update to debian std 2.4.0.0. * Updated debian/copyright file. * Orphaned the package. -- Vincent Renardias Sat, 14 Mar 1998 21:33:48 +0100 xpuzzles (5.4.1-5) unstable; urgency=low * Uncompress copyright file (Bug #14502). -- Vincent Renardias Sun, 9 Nov 1997 02:56:33 +0100 xpuzzles (5.4.1-4) unstable; urgency=low * Rebuilt with libc6/xlib6g (Bug #12704). -- Vincent Renardias Sun, 9 Nov 1997 02:11:50 +0100 xpuzzles (5.4.1-3) unstable; urgency=low * Cosmetic Change (Fix bug #9651). -- Vincent Renardias Wed, 14 May 1997 20:00:33 +0200 xpuzzles (5.4.1-2) unstable; urgency=low * Rebuilt with libc6. -- Vincent Renardias Fri, 2 May 1997 01:25:12 +0200 xpuzzles (5.4.1-1) unstable; urgency=low * Upstream upgrade. -- Vincent Renardias Sun, 9 Mar 1997 03:26:44 +0100 xpuzzles (5.4-1) unstable; urgency=low * Upstream upgrade (Fixes Bug #5470, #7393). -- Vincent Renardias Sat, 15 Feb 1997 06:57:21 +0100 xpuzzles (5.3.3-4) unstable; urgency=low * Updated dependancies ( elf-x11r6lib --> xlib6 ). -- Vincent Renardias Sat, 1 Feb 1997 20:32:51 +0100 xpuzzles (5.3.3-3) frozen unstable; urgency=low * Moved files from '/usr/lib/X11' to '/usr/X11R6/lib/X11'. -- Vincent Renardias Sun, 24 Nov 1996 07:08:44 +0100 xpuzzles (5.3.3-2) unstable; urgency=low * Maintainer changed. * Some tuning in debian/rules. -- Vincent Renardias Mon, 11 Nov 1996 19:40:09 +0100 xpuzzles (5.3.3-1) unstable; urgency=low * Initial release -- Christoph Lameter Thu, 08 Sep 1996 15:37:25 +0100 debian/README.Debian0000644000000000000000000000143012201620034011213 0ustar About xrubik and the original Cube: There exist two versions, both from the original manufacturer: there is the color arrangement of the original Rubik's cube which is the one Erno Rubik prefers. (i.e. blue is opposite green, red opposite orange, and yellow is opposite to white; if the blue side is on the top, then the red is on the left and the yellow on the right, and so on), and there are the new Rubik's Cubes currently sold in stores and online which are colored differently (i.e. blue is opposite to white, green is opposite to yellow, and red is opposite to orange). This package uses the newer color arrangement, but you can easily arrange it to your personal preferences by adjusting the X11 app-defaults. -- Florian Ernst Sun, 23 Jan 2005 19:09:44 +0100 debian/source/0000755000000000000000000000000012201620034010454 5ustar debian/source/format0000644000000000000000000000001412201620034011662 0ustar 3.0 (quilt) debian/patches/0000755000000000000000000000000012201620034010603 5ustar debian/patches/series0000644000000000000000000000001712201620034012016 0ustar linkaudio.diff debian/patches/linkaudio.diff0000644000000000000000000001564212201620034013424 0ustar diff --git a/barrel/configure b/barrel/configure index 16cdb99..202de6f 100755 --- a/barrel/configure +++ b/barrel/configure @@ -4927,7 +4927,7 @@ $as_echo "no" >&6; } else $as_echo "#define HAVE_XPM 1" >>confdefs.h - LIBS="${LIBS} -lXpm" + LIBS="${LIBS} -lXpm -laudiofile" test "x$xpm_includes" = xNONE && xpm_includes=$ac_xpm_includes test "x$xpm_libraries" = xNONE && xpm_libraries=$ac_xpm_libraries ac_cv_path_xpm="no_xpm= ac_xpm_includes=$xpm_includes ac_xpm_libraries=$xpm_libraries" diff --git a/cubes/configure b/cubes/configure index 0ad607d..06ee4e9 100755 --- a/cubes/configure +++ b/cubes/configure @@ -4927,7 +4927,7 @@ $as_echo "no" >&6; } else $as_echo "#define HAVE_XPM 1" >>confdefs.h - LIBS="${LIBS} -lXpm" + LIBS="${LIBS} -lXpm -laudiofile" test "x$xpm_includes" = xNONE && xpm_includes=$ac_xpm_includes test "x$xpm_libraries" = xNONE && xpm_libraries=$ac_xpm_libraries ac_cv_path_xpm="no_xpm= ac_xpm_includes=$xpm_includes ac_xpm_libraries=$xpm_libraries" diff --git a/dial/configure b/dial/configure index c87d87c..6ffb794 100755 --- a/dial/configure +++ b/dial/configure @@ -4868,7 +4868,7 @@ $as_echo "no" >&6; } else $as_echo "#define HAVE_XPM 1" >>confdefs.h - LIBS="${LIBS} -lXpm" + LIBS="${LIBS} -lXpm -laudiofile" test "x$xpm_includes" = xNONE && xpm_includes=$ac_xpm_includes test "x$xpm_libraries" = xNONE && xpm_libraries=$ac_xpm_libraries ac_cv_path_xpm="no_xpm= ac_xpm_includes=$xpm_includes ac_xpm_libraries=$xpm_libraries" diff --git a/dino/configure b/dino/configure index 309c971..ae2c4c5 100755 --- a/dino/configure +++ b/dino/configure @@ -4929,7 +4929,7 @@ $as_echo "no" >&6; } else $as_echo "#define HAVE_XPM 1" >>confdefs.h - LIBS="${LIBS} -lXpm" + LIBS="${LIBS} -lXpm -laudiofile" test "x$xpm_includes" = xNONE && xpm_includes=$ac_xpm_includes test "x$xpm_libraries" = xNONE && xpm_libraries=$ac_xpm_libraries ac_cv_path_xpm="no_xpm= ac_xpm_includes=$xpm_includes ac_xpm_libraries=$xpm_libraries" diff --git a/hexagons/configure b/hexagons/configure index 111d473..1f17ae9 100755 --- a/hexagons/configure +++ b/hexagons/configure @@ -4927,7 +4927,7 @@ $as_echo "no" >&6; } else $as_echo "#define HAVE_XPM 1" >>confdefs.h - LIBS="${LIBS} -lXpm" + LIBS="${LIBS} -lXpm -laudiofile" test "x$xpm_includes" = xNONE && xpm_includes=$ac_xpm_includes test "x$xpm_libraries" = xNONE && xpm_libraries=$ac_xpm_libraries ac_cv_path_xpm="no_xpm= ac_xpm_includes=$xpm_includes ac_xpm_libraries=$xpm_libraries" diff --git a/mball/configure b/mball/configure index 01647ed..9005a20 100755 --- a/mball/configure +++ b/mball/configure @@ -4927,7 +4927,7 @@ $as_echo "no" >&6; } else $as_echo "#define HAVE_XPM 1" >>confdefs.h - LIBS="${LIBS} -lXpm" + LIBS="${LIBS} -lXpm -laudiofile" test "x$xpm_includes" = xNONE && xpm_includes=$ac_xpm_includes test "x$xpm_libraries" = xNONE && xpm_libraries=$ac_xpm_libraries ac_cv_path_xpm="no_xpm= ac_xpm_includes=$xpm_includes ac_xpm_libraries=$xpm_libraries" diff --git a/mlink/configure b/mlink/configure index e74a273..5b21ee6 100755 --- a/mlink/configure +++ b/mlink/configure @@ -4927,7 +4927,7 @@ $as_echo "no" >&6; } else $as_echo "#define HAVE_XPM 1" >>confdefs.h - LIBS="${LIBS} -lXpm" + LIBS="${LIBS} -lXpm -laudiofile" test "x$xpm_includes" = xNONE && xpm_includes=$ac_xpm_includes test "x$xpm_libraries" = xNONE && xpm_libraries=$ac_xpm_libraries ac_cv_path_xpm="no_xpm= ac_xpm_includes=$xpm_includes ac_xpm_libraries=$xpm_libraries" diff --git a/oct/configure b/oct/configure index d89cae8..ca0931b 100755 --- a/oct/configure +++ b/oct/configure @@ -4927,7 +4927,7 @@ $as_echo "no" >&6; } else $as_echo "#define HAVE_XPM 1" >>confdefs.h - LIBS="${LIBS} -lXpm" + LIBS="${LIBS} -lXpm -laudiofile" test "x$xpm_includes" = xNONE && xpm_includes=$ac_xpm_includes test "x$xpm_libraries" = xNONE && xpm_libraries=$ac_xpm_libraries ac_cv_path_xpm="no_xpm= ac_xpm_includes=$xpm_includes ac_xpm_libraries=$xpm_libraries" diff --git a/panex/configure b/panex/configure index acd6566..cfd2785 100755 --- a/panex/configure +++ b/panex/configure @@ -4927,7 +4927,7 @@ $as_echo "no" >&6; } else $as_echo "#define HAVE_XPM 1" >>confdefs.h - LIBS="${LIBS} -lXpm" + LIBS="${LIBS} -lXpm -laudiofile" test "x$xpm_includes" = xNONE && xpm_includes=$ac_xpm_includes test "x$xpm_libraries" = xNONE && xpm_libraries=$ac_xpm_libraries ac_cv_path_xpm="no_xpm= ac_xpm_includes=$xpm_includes ac_xpm_libraries=$xpm_libraries" diff --git a/pyraminx/configure b/pyraminx/configure index 80a5f65..96bb33b 100755 --- a/pyraminx/configure +++ b/pyraminx/configure @@ -4927,7 +4927,7 @@ $as_echo "no" >&6; } else $as_echo "#define HAVE_XPM 1" >>confdefs.h - LIBS="${LIBS} -lXpm" + LIBS="${LIBS} -lXpm -laudiofile" test "x$xpm_includes" = xNONE && xpm_includes=$ac_xpm_includes test "x$xpm_libraries" = xNONE && xpm_libraries=$ac_xpm_libraries ac_cv_path_xpm="no_xpm= ac_xpm_includes=$xpm_includes ac_xpm_libraries=$xpm_libraries" diff --git a/rubik/configure b/rubik/configure index a8cc77f..5f8e896 100755 --- a/rubik/configure +++ b/rubik/configure @@ -4929,7 +4929,7 @@ $as_echo "no" >&6; } else $as_echo "#define HAVE_XPM 1" >>confdefs.h - LIBS="${LIBS} -lXpm" + LIBS="${LIBS} -lXpm -laudiofile" test "x$xpm_includes" = xNONE && xpm_includes=$ac_xpm_includes test "x$xpm_libraries" = xNONE && xpm_libraries=$ac_xpm_libraries ac_cv_path_xpm="no_xpm= ac_xpm_includes=$xpm_includes ac_xpm_libraries=$xpm_libraries" diff --git a/skewb/configure b/skewb/configure index 23b5fcf..16c3e6c 100755 --- a/skewb/configure +++ b/skewb/configure @@ -4929,7 +4929,7 @@ $as_echo "no" >&6; } else $as_echo "#define HAVE_XPM 1" >>confdefs.h - LIBS="${LIBS} -lXpm" + LIBS="${LIBS} -lXpm -laudiofile" test "x$xpm_includes" = xNONE && xpm_includes=$ac_xpm_includes test "x$xpm_libraries" = xNONE && xpm_libraries=$ac_xpm_libraries ac_cv_path_xpm="no_xpm= ac_xpm_includes=$xpm_includes ac_xpm_libraries=$xpm_libraries" diff --git a/threed/configure b/threed/configure index 253273b..c98d29f 100755 --- a/threed/configure +++ b/threed/configure @@ -4885,7 +4885,7 @@ $as_echo "no" >&6; } else $as_echo "#define HAVE_XPM 1" >>confdefs.h - LIBS="${LIBS} -lXpm" + LIBS="${LIBS} -lXpm -laudiofile" test "x$xpm_includes" = xNONE && xpm_includes=$ac_xpm_includes test "x$xpm_libraries" = xNONE && xpm_libraries=$ac_xpm_libraries ac_cv_path_xpm="no_xpm= ac_xpm_includes=$xpm_includes ac_xpm_libraries=$xpm_libraries" diff --git a/triangles/configure b/triangles/configure index c72fdbf..692b761 100755 --- a/triangles/configure +++ b/triangles/configure @@ -4927,7 +4927,7 @@ $as_echo "no" >&6; } else $as_echo "#define HAVE_XPM 1" >>confdefs.h - LIBS="${LIBS} -lXpm" + LIBS="${LIBS} -lXpm -laudiofile" test "x$xpm_includes" = xNONE && xpm_includes=$ac_xpm_includes test "x$xpm_libraries" = xNONE && xpm_libraries=$ac_xpm_libraries ac_cv_path_xpm="no_xpm= ac_xpm_includes=$xpm_includes ac_xpm_libraries=$xpm_libraries"