--- kq-0.99.cvs20060528.orig/debian/kq-data.install +++ kq-0.99.cvs20060528/debian/kq-data.install @@ -0,0 +1,3 @@ +usr/share/games/kq/data +usr/share/games/kq/maps +usr/share/games/kq/music --- kq-0.99.cvs20060528.orig/debian/copyright +++ kq-0.99.cvs20060528/debian/copyright @@ -0,0 +1,28 @@ +This is a Debian packaged version of the KQ Lives game. + +This package was put together by Sam Hocevar, using sources from the KQ CVS +tree at SourceForge. The KQ SourceForge webage is at: + http://kqlives.sourceforge.net/ + +Upstream Author: Josh Bolduc + + -- Sam Hocevar Fri, 25 Apr 2003 13:35:50 +0200 + +KQ is Copyright (C) 2002 by Josh Bolduc + + This program is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by the + Free Software Foundation; either version 2, or (at your option) any + later version. + + 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. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian GNU/Linux systems, the complete text of the GNU General +Public License can be found in `/usr/share/common-licenses/GPL'. --- kq-0.99.cvs20060528.orig/debian/patches/020_alternate_keys.diff +++ kq-0.99.cvs20060528/debian/patches/020_alternate_keys.diff @@ -0,0 +1,79 @@ +Index: kq-0.99.cvs20060528/src/kq.c +=================================================================== +--- kq-0.99.cvs20060528.orig/src/kq.c 2006-05-28 00:12:34.000000000 +0200 ++++ kq-0.99.cvs20060528/src/kq.c 2006-05-28 00:17:31.000000000 +0200 +@@ -355,16 +355,16 @@ + poll_keyboard (); + } + +- balt = key[kalt]; +- besc = key[kesc]; +- bctrl = key[kctrl]; +- benter = key[kenter]; ++ balt = key[kalt] | key[KEY_SPACE]; ++ besc = key[kesc] | key[KEY_ESC]; ++ bctrl = key[kctrl] | key[KEY_ESC]; ++ benter = key[kenter] | key[KEY_ENTER]; + bhelp = key[KEY_F1]; + +- up = key[kup]; +- down = key[kdown]; +- left = key[kleft]; +- right = key[kright]; ++ up = key[kup] | key[KEY_UP]; ++ down = key[kdown] | key[KEY_DOWN]; ++ left = key[kleft] | key[KEY_LEFT]; ++ right = key[kright] | key[KEY_RIGHT]; + + // TT: Is there a reason this has to be called twice in one function? + // poll_music (); +Index: kq-0.99.cvs20060528/src/setup.c +=================================================================== +--- kq-0.99.cvs20060528.orig/src/setup.c 2006-05-28 00:12:35.000000000 +0200 ++++ kq-0.99.cvs20060528/src/setup.c 2006-05-28 00:20:10.000000000 +0200 +@@ -774,25 +774,36 @@ + */ + void show_help (void) + { ++ char key[80]; + menubox (double_buffer, 116 + xofs, yofs, 9, 1, BLUE); + print_font (double_buffer, 132 + xofs, 8 + yofs, "KQ Help", FGOLD); + menubox (double_buffer, 32 + xofs, 32 + yofs, 30, 20, BLUE); + menubox (double_buffer, xofs, 216 + yofs, 38, 1, BLUE); ++#if 0 + print_font (double_buffer, 16 + xofs, 224 + yofs, + "Press CONFIRM to exit this screen", FNORMAL); +- citem (72, "Up Key:", kq_keyname (kup), FNORMAL); +- citem (80, "Down Key:", kq_keyname (kdown), FNORMAL); +- citem (88, "Left Key:", kq_keyname (kleft), FNORMAL); +- citem (96, "Right Key:", kq_keyname (kright), FNORMAL); +- citem (104, "Confirm Key:", kq_keyname (kalt), FNORMAL); +- citem (112, "Cancel Key:", kq_keyname (kctrl), FNORMAL); +- citem (120, "Menu Key:", kq_keyname (kenter), FNORMAL); +- citem (128, "System Menu Key:", kq_keyname (kesc), FNORMAL); ++#endif ++ sprintf(key, kup != KEY_UP ? "UP/%s" : "%s", kq_keyname (kup)); ++ citem (80, "Up Key:", key, FNORMAL); ++ sprintf(key, kdown != KEY_DOWN ? "DOWN/%s" : "%s", kq_keyname (kdown)); ++ citem (88, "Down Key:", key, FNORMAL); ++ sprintf(key, kleft != KEY_LEFT ? "LEFT/%s" : "%s", kq_keyname (kleft)); ++ citem (96, "Left Key:", key, FNORMAL); ++ sprintf(key, kright != KEY_RIGHT ? "RIGHT/%s" : "%s", kq_keyname (kright)); ++ citem (104, "Right Key:", key, FNORMAL); ++ sprintf(key, kalt != KEY_SPACE ? "SPACE/%s" : "%s", kq_keyname (kalt)); ++ citem (112, "Confirm Key:", key, FNORMAL); ++ sprintf(key, kctrl != KEY_ESC ? "ESC/%s" : "%s", kq_keyname (kctrl)); ++ citem (120, "Cancel Key:", key, FNORMAL); ++ sprintf(key, kenter != KEY_ENTER ? "ENTER/%s" : "%s", kq_keyname (kenter)); ++ citem (128, "Menu Key:", key, FNORMAL); ++ sprintf(key, kesc != KEY_ESC ? "ESC/%s" : "%s", kq_keyname (kesc)); ++ citem (136, "System Menu Key:", key, FNORMAL); + do { + blit2screen (xofs, yofs); + readcontrols (); + } +- while (!balt && !bctrl); ++ while (!balt && !bctrl && !besc); + unpress (); + } + --- kq-0.99.cvs20060528.orig/debian/patches/020_usr_share_games.diff +++ kq-0.99.cvs20060528/debian/patches/020_usr_share_games.diff @@ -0,0 +1,27 @@ +Index: kq-0.99.cvs20060528/scripts/cult.lua +=================================================================== +--- kq-0.99.cvs20060528.orig/scripts/cult.lua 2006-05-28 00:12:34.000000000 +0200 ++++ kq-0.99.cvs20060528/scripts/cult.lua 2006-05-28 07:47:32.000000000 +0200 +@@ -363,7 +363,7 @@ + local a, b, dx, dy + local ax, ay, z + +- create_df("data/mpcx.dat", "LFLAME_PCX") ++ create_df("mpcx.dat", "LFLAME_PCX") + create_bmp(0, 24, 24) + df2bmp(0, 0, 16, 0, 0, 24, 24) + create_bmp(1, 64, 16) +Index: kq-0.99.cvs20060528/src/intrface.c +=================================================================== +--- kq-0.99.cvs20060528.orig/src/intrface.c 2006-05-28 07:45:55.000000000 +0200 ++++ kq-0.99.cvs20060528/src/intrface.c 2006-05-28 07:47:09.000000000 +0200 +@@ -2359,7 +2359,8 @@ + + static int KQ_create_df (lua_State * L) + { +- g_df = load_datafile_object (lua_tostring (L, 1), lua_tostring (L, 2)); ++ g_df = load_datafile_object (kqres(DATA_DIR, lua_tostring (L, 1)), ++ lua_tostring (L, 2)); + return 0; + } + --- kq-0.99.cvs20060528.orig/debian/patches/001_kfreebsd_support.diff +++ kq-0.99.cvs20060528/debian/patches/001_kfreebsd_support.diff @@ -0,0 +1,34 @@ +Index: kq-0.99.cvs20060528/configure.ac +=================================================================== +--- kq-0.99.cvs20060528.orig/configure.ac 2007-02-09 15:00:59.000000000 +0100 ++++ kq-0.99.cvs20060528/configure.ac 2007-02-09 15:02:06.000000000 +0100 +@@ -76,11 +76,11 @@ + + # host stuff + case ${host} in +- *-*-linux*) +- kq_extra_files='unix.$(OBJEXT)' ++ *-*-mingw32* | *-*-cygwin* | *-*-windows*) ++ kq_extra_files='win.$(OBJEXT)' + AC_SUBST([kq_extra_files]) +- AC_SUBST(kq_target_dir,unix) + bundle=no ++ #LIBS="-lwinmm ${LIBS}" + ;; + *-*-darwin*) + kq_extra_files='osx.$(OBJEXT)' +@@ -88,11 +88,11 @@ + AC_SUBST(kq_target_dir,macosx) + bundle=yes + ;; +- *-*-mingw32* | *-*-cygwin* | *-*-windows*) +- kq_extra_files='win.$(OBJEXT)' ++ *) # *-*-linux*|*-*-k*bsd*-gnu) ++ kq_extra_files='unix.$(OBJEXT)' + AC_SUBST([kq_extra_files]) ++ AC_SUBST(kq_target_dir,unix) + bundle=no +- #LIBS="-lwinmm ${LIBS}" + ;; + esac + AM_CONDITIONAL(BUNDLE, test x$bundle = xyes) --- kq-0.99.cvs20060528.orig/debian/patches/000_luac50.diff +++ kq-0.99.cvs20060528/debian/patches/000_luac50.diff @@ -0,0 +1,78 @@ +Index: kq-0.99.cvs20060528/mkfiles/makefile.cfg +=================================================================== +--- kq-0.99.cvs20060528.orig/mkfiles/makefile.cfg 2005-11-12 10:32:24.000000000 +0100 ++++ kq-0.99.cvs20060528/mkfiles/makefile.cfg 2006-05-28 00:16:59.000000000 +0200 +@@ -74,7 +74,7 @@ + # DFLAGS are the flags used to build the dependencies. # + # # + CXXFLAGS := -Wall -Werror -W -I $(INC_DIR) -finline +-CFLAGS := -Wall -W -I $(INC_DIR) ++CFLAGS := -Wall -W -I $(INC_DIR) -I /usr/include/lua50 + DEPFLAGS := -MM -MG -I$(INC_DIR) + LDFLAGS := + TGZFLAGS := cvzf +@@ -99,7 +99,7 @@ + # # + # The extra libraries we need to compile the program. Just the base name. # + # # +-LIBRARY := lua ++LIBRARY := lua50 + ifdef KQ_USE_JGMOD + LIBRARY += jgmod + else +Index: kq-0.99.cvs20060528/readme.txt +=================================================================== +--- kq-0.99.cvs20060528.orig/readme.txt 2006-03-30 12:57:58.000000000 +0200 ++++ kq-0.99.cvs20060528/readme.txt 2006-05-28 00:16:59.000000000 +0200 +@@ -132,7 +132,7 @@ + script into a .lob file, do the following if you have perl: + + perl prep.pl < filename.lua > temp.tmp +-luac -o filename.lob temp.tmp ++luac50 -o filename.lob temp.tmp + + I tried piping under DOS, but it wasn't working quite right. Just + try it yourself if you like. +@@ -141,7 +141,7 @@ + 'scripts' directory that contains all of the .lua files, but without + macros in them. Then you can compile these by just doing this: + +-luac -o filename.lob filename.lua ++luac50 -o filename.lob filename.lua + + If you don't use DOS for doing this, things might be slightly + different for you. +Index: kq-0.99.cvs20060528/scripts/compall.sh +=================================================================== +--- kq-0.99.cvs20060528.orig/scripts/compall.sh 2002-09-03 23:13:53.000000000 +0200 ++++ kq-0.99.cvs20060528/scripts/compall.sh 2006-05-28 00:16:59.000000000 +0200 +@@ -1,5 +1,5 @@ + for a in `cat allsc.txt` + do + echo "Processing $a" +- perl prep.pl < $a.lua | ./luac.exe -o $a.lob - ++ perl prep.pl < $a.lua | ./luac50.exe -o $a.lob - + done +Index: kq-0.99.cvs20060528/scripts/comp.bat +=================================================================== +--- kq-0.99.cvs20060528.orig/scripts/comp.bat 2002-09-03 23:13:53.000000000 +0200 ++++ kq-0.99.cvs20060528/scripts/comp.bat 2006-05-28 00:16:59.000000000 +0200 +@@ -1,4 +1,4 @@ + perl prep.pl < %1.lua > _tmpfile.$$$ +-luac -o %1.lob _tmpfile.$$$ ++luac50 -o %1.lob _tmpfile.$$$ + erase _tmpfile.$$$ + +Index: kq-0.99.cvs20060528/scripts/Makefile.am +=================================================================== +--- kq-0.99.cvs20060528.orig/scripts/Makefile.am 2006-05-28 00:12:34.000000000 +0200 ++++ kq-0.99.cvs20060528/scripts/Makefile.am 2006-05-28 00:16:59.000000000 +0200 +@@ -15,7 +15,7 @@ + all-am: Makefile confirm-dir $(LOBS) + + %.lob: pscripts/%.lua $(INCLUDES) +- luac -o $@ $< ++ luac50 -o $@ $< + + + pscripts/%.lua: $(srcdir)/%.lua --- kq-0.99.cvs20060528.orig/debian/patches/010_rebootstrap.diff +++ kq-0.99.cvs20060528/debian/patches/010_rebootstrap.diff @@ -0,0 +1,6062 @@ +Index: kq-0.99.cvs20060528/Makefile.in +=================================================================== +--- kq-0.99.cvs20060528.orig/Makefile.in 2006-05-28 00:14:31.000000000 +0200 ++++ kq-0.99.cvs20060528/Makefile.in 2007-02-09 15:15:33.000000000 +0100 +@@ -1,8 +1,8 @@ +-# Makefile.in generated by automake 1.9.6 from Makefile.am. ++# Makefile.in generated by automake 1.10 from Makefile.am. + # @configure_input@ + + # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +-# 2003, 2004, 2005 Free Software Foundation, Inc. ++# 2003, 2004, 2005, 2006 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. +@@ -15,15 +15,11 @@ + @SET_MAKE@ + + +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ + pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = . + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -38,26 +34,25 @@ + build_triplet = @build@ + host_triplet = @host@ + bin_PROGRAMS = kq$(EXEEXT) mapdraw$(EXEEXT) mapdiff$(EXEEXT) \ +- mapdump$(EXEEXT) $(am__EXEEXT_1) ++ mapdump$(EXEEXT) $(MAPDRAW2) + EXTRA_PROGRAMS = mapdraw2$(EXEEXT) ++subdir = . + DIST_COMMON = README $(am__configure_deps) $(dist_gfx_DATA) \ + $(dist_man_MANS) $(dist_map_DATA) $(dist_music_DATA) \ + $(srcdir)/Makefile.am $(srcdir)/Makefile.in \ + $(srcdir)/config.h.in $(top_srcdir)/configure AUTHORS \ +- ChangeLog INSTALL NEWS compile config.guess config.sub depcomp \ ++ ChangeLog INSTALL NEWS config.guess config.sub depcomp \ + install-sh missing +-subdir = . + ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 + am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \ + $(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 configure.status.lineno ++ configure.lineno config.status.lineno + mkinstalldirs = $(install_sh) -d + CONFIG_HEADER = config.h + CONFIG_CLEAN_FILES = +-am__EXEEXT_1 = @MAPDRAW2@ + am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(man6dir)" \ + "$(DESTDIR)$(cscriptsdir)" "$(DESTDIR)$(gfxdir)" \ + "$(DESTDIR)$(mapdir)" "$(DESTDIR)$(musicdir)" +@@ -91,7 +86,7 @@ + mapdata.$(OBJEXT) disk.$(OBJEXT) + mapdump_OBJECTS = $(am_mapdump_OBJECTS) + mapdump_DEPENDENCIES = $(am__DEPENDENCIES_1) +-DEFAULT_INCLUDES = -I. -I$(srcdir) -I. ++DEFAULT_INCLUDES = -I.@am__isrc@ + depcomp = $(SHELL) $(top_srcdir)/depcomp + am__depfiles_maybe = depfiles + COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ +@@ -109,10 +104,11 @@ + $(mapdraw_SOURCES) $(mapdraw2_SOURCES) $(mapdump_SOURCES) + RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ + html-recursive info-recursive install-data-recursive \ +- install-exec-recursive install-info-recursive \ +- install-recursive installcheck-recursive installdirs-recursive \ +- pdf-recursive ps-recursive uninstall-info-recursive \ +- uninstall-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 + man6dir = $(mandir)/man6 + NROFF = nroff + MANS = $(dist_man_MANS) +@@ -128,6 +124,8 @@ + dist_musicDATA_INSTALL = $(INSTALL_DATA) + DATA = $(cscripts_DATA) $(dist_gfx_DATA) $(dist_map_DATA) \ + $(dist_music_DATA) ++RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ ++ distclean-recursive maintainer-clean-recursive + ETAGS = etags + CTAGS = ctags + DIST_SUBDIRS = $(SUBDIRS) +@@ -144,15 +142,11 @@ + distcleancheck_listfiles = find . -type f -print + ACLOCAL = @ACLOCAL@ + ALLEGRO_LIBS = @ALLEGRO_LIBS@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ + AUTOCONF = @AUTOCONF@ + AUTOHEADER = @AUTOHEADER@ + AUTOMAKE = @AUTOMAKE@ + AWK = @AWK@ +-BUNDLE_FALSE = @BUNDLE_FALSE@ +-BUNDLE_TRUE = @BUNDLE_TRUE@ + CC = @CC@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ +@@ -170,6 +164,7 @@ + GTK_CFLAGS = @GTK_CFLAGS@ + GTK_LIBS = @GTK_LIBS@ + HAVE_ALLEGRO = @HAVE_ALLEGRO@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -180,6 +175,7 @@ + LTLIBOBJS = @LTLIBOBJS@ + MAKEINFO = @MAKEINFO@ + MAPDRAW2 = @MAPDRAW2@ ++MKDIR_P = @MKDIR_P@ + OBJC = @OBJC@ + OBJCDEPMODE = @OBJCDEPMODE@ + OBJCFLAGS = @OBJCFLAGS@ +@@ -197,11 +193,11 @@ + STRIP = @STRIP@ + VERSION = @VERSION@ + WARNING_CFLAGS = @WARNING_CFLAGS@ ++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@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepOBJC_FALSE = @am__fastdepOBJC_FALSE@ +-am__fastdepOBJC_TRUE = @am__fastdepOBJC_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ +@@ -213,6 +209,7 @@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -244,8 +241,11 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + SUBDIRS = scripts + kq_SOURCES = src/enemyc.c src/intrface.c src/sgame.c \ + src/combat.c src/entity.c src/movement.c src/shopmenu.c \ +@@ -316,7 +316,7 @@ + scripts/shrine.lob + + MOSTLYCLEANFILES = $(cscripts_DATA) +-cscriptsdir = $(pkgdatadir)/scripts ++cscriptsdir = $(pkglibdir)/scripts + EXTRA_DIST = scripts/bridge2.lua scripts/dville.lua \ + scripts/starting.lua scripts/bridge.lua scripts/estate.lua \ + scripts/temple1.lua scripts/camp.lua scripts/esteria.lua \ +@@ -345,7 +345,7 @@ + + musicdir = $(pkgdatadir)/music + dist_man_MANS = debian/kq.6 +-AM_CFLAGS = -I$(top_srcdir)/include -DKQ_BIN=\"$(bindir)/KQ$(EXEEXT)\" -DKQ_DATA=\"$(pkgdatadir)\" ++AM_CFLAGS = -I$(top_srcdir)/include -DKQ_BIN=\"$(bindir)/kq$(EXEEXT)\" -DKQ_DATA=\"$(pkgdatadir)\" -DKQ_LIB=\"$(pkglibdir)\" + all: config.h + $(MAKE) $(AM_MAKEFLAGS) all-recursive + +@@ -388,7 +388,7 @@ + config.h: stamp-h1 + @if test ! -f $@; then \ + rm -f stamp-h1; \ +- $(MAKE) stamp-h1; \ ++ $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \ + else :; fi + + stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status +@@ -403,7 +403,7 @@ + -rm -f config.h stamp-h1 + install-binPROGRAMS: $(bin_PROGRAMS) + @$(NORMAL_INSTALL) +- test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)" ++ test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" + @list='$(bin_PROGRAMS)'; for p in $$list; do \ + p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ + if test -f $$p \ +@@ -426,19 +426,19 @@ + -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) + kq$(EXEEXT): $(kq_OBJECTS) $(kq_DEPENDENCIES) + @rm -f kq$(EXEEXT) +- $(OBJCLINK) $(kq_LDFLAGS) $(kq_OBJECTS) $(kq_LDADD) $(LIBS) ++ $(OBJCLINK) $(kq_OBJECTS) $(kq_LDADD) $(LIBS) + mapdiff$(EXEEXT): $(mapdiff_OBJECTS) $(mapdiff_DEPENDENCIES) + @rm -f mapdiff$(EXEEXT) +- $(LINK) $(mapdiff_LDFLAGS) $(mapdiff_OBJECTS) $(mapdiff_LDADD) $(LIBS) ++ $(LINK) $(mapdiff_OBJECTS) $(mapdiff_LDADD) $(LIBS) + mapdraw$(EXEEXT): $(mapdraw_OBJECTS) $(mapdraw_DEPENDENCIES) + @rm -f mapdraw$(EXEEXT) +- $(LINK) $(mapdraw_LDFLAGS) $(mapdraw_OBJECTS) $(mapdraw_LDADD) $(LIBS) ++ $(LINK) $(mapdraw_OBJECTS) $(mapdraw_LDADD) $(LIBS) + mapdraw2$(EXEEXT): $(mapdraw2_OBJECTS) $(mapdraw2_DEPENDENCIES) + @rm -f mapdraw2$(EXEEXT) +- $(LINK) $(mapdraw2_LDFLAGS) $(mapdraw2_OBJECTS) $(mapdraw2_LDADD) $(LIBS) ++ $(LINK) $(mapdraw2_OBJECTS) $(mapdraw2_LDADD) $(LIBS) + mapdump$(EXEEXT): $(mapdump_OBJECTS) $(mapdump_DEPENDENCIES) + @rm -f mapdump$(EXEEXT) +- $(LINK) $(mapdump_LDFLAGS) $(mapdump_OBJECTS) $(mapdump_LDADD) $(LIBS) ++ $(LINK) $(mapdump_OBJECTS) $(mapdump_LDADD) $(LIBS) + + mostlyclean-compile: + -rm -f *.$(OBJEXT) +@@ -492,652 +492,651 @@ + @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/win.Po@am__quote@ + + .c.o: +-@am__fastdepCC_TRUE@ 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 ++@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(COMPILE) -c $< + + .c.obj: +-@am__fastdepCC_TRUE@ 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 ++@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` + + enemyc.o: src/enemyc.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enemyc.o -MD -MP -MF "$(DEPDIR)/enemyc.Tpo" -c -o enemyc.o `test -f 'src/enemyc.c' || echo '$(srcdir)/'`src/enemyc.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/enemyc.Tpo" "$(DEPDIR)/enemyc.Po"; else rm -f "$(DEPDIR)/enemyc.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enemyc.o -MD -MP -MF $(DEPDIR)/enemyc.Tpo -c -o enemyc.o `test -f 'src/enemyc.c' || echo '$(srcdir)/'`src/enemyc.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/enemyc.Tpo $(DEPDIR)/enemyc.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/enemyc.c' object='enemyc.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enemyc.o `test -f 'src/enemyc.c' || echo '$(srcdir)/'`src/enemyc.c + + enemyc.obj: src/enemyc.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enemyc.obj -MD -MP -MF "$(DEPDIR)/enemyc.Tpo" -c -o enemyc.obj `if test -f 'src/enemyc.c'; then $(CYGPATH_W) 'src/enemyc.c'; else $(CYGPATH_W) '$(srcdir)/src/enemyc.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/enemyc.Tpo" "$(DEPDIR)/enemyc.Po"; else rm -f "$(DEPDIR)/enemyc.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT enemyc.obj -MD -MP -MF $(DEPDIR)/enemyc.Tpo -c -o enemyc.obj `if test -f 'src/enemyc.c'; then $(CYGPATH_W) 'src/enemyc.c'; else $(CYGPATH_W) '$(srcdir)/src/enemyc.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/enemyc.Tpo $(DEPDIR)/enemyc.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/enemyc.c' object='enemyc.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o enemyc.obj `if test -f 'src/enemyc.c'; then $(CYGPATH_W) 'src/enemyc.c'; else $(CYGPATH_W) '$(srcdir)/src/enemyc.c'; fi` + + intrface.o: src/intrface.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT intrface.o -MD -MP -MF "$(DEPDIR)/intrface.Tpo" -c -o intrface.o `test -f 'src/intrface.c' || echo '$(srcdir)/'`src/intrface.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/intrface.Tpo" "$(DEPDIR)/intrface.Po"; else rm -f "$(DEPDIR)/intrface.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT intrface.o -MD -MP -MF $(DEPDIR)/intrface.Tpo -c -o intrface.o `test -f 'src/intrface.c' || echo '$(srcdir)/'`src/intrface.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/intrface.Tpo $(DEPDIR)/intrface.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/intrface.c' object='intrface.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o intrface.o `test -f 'src/intrface.c' || echo '$(srcdir)/'`src/intrface.c + + intrface.obj: src/intrface.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT intrface.obj -MD -MP -MF "$(DEPDIR)/intrface.Tpo" -c -o intrface.obj `if test -f 'src/intrface.c'; then $(CYGPATH_W) 'src/intrface.c'; else $(CYGPATH_W) '$(srcdir)/src/intrface.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/intrface.Tpo" "$(DEPDIR)/intrface.Po"; else rm -f "$(DEPDIR)/intrface.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT intrface.obj -MD -MP -MF $(DEPDIR)/intrface.Tpo -c -o intrface.obj `if test -f 'src/intrface.c'; then $(CYGPATH_W) 'src/intrface.c'; else $(CYGPATH_W) '$(srcdir)/src/intrface.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/intrface.Tpo $(DEPDIR)/intrface.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/intrface.c' object='intrface.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o intrface.obj `if test -f 'src/intrface.c'; then $(CYGPATH_W) 'src/intrface.c'; else $(CYGPATH_W) '$(srcdir)/src/intrface.c'; fi` + + sgame.o: src/sgame.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sgame.o -MD -MP -MF "$(DEPDIR)/sgame.Tpo" -c -o sgame.o `test -f 'src/sgame.c' || echo '$(srcdir)/'`src/sgame.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/sgame.Tpo" "$(DEPDIR)/sgame.Po"; else rm -f "$(DEPDIR)/sgame.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sgame.o -MD -MP -MF $(DEPDIR)/sgame.Tpo -c -o sgame.o `test -f 'src/sgame.c' || echo '$(srcdir)/'`src/sgame.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/sgame.Tpo $(DEPDIR)/sgame.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/sgame.c' object='sgame.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sgame.o `test -f 'src/sgame.c' || echo '$(srcdir)/'`src/sgame.c + + sgame.obj: src/sgame.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sgame.obj -MD -MP -MF "$(DEPDIR)/sgame.Tpo" -c -o sgame.obj `if test -f 'src/sgame.c'; then $(CYGPATH_W) 'src/sgame.c'; else $(CYGPATH_W) '$(srcdir)/src/sgame.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/sgame.Tpo" "$(DEPDIR)/sgame.Po"; else rm -f "$(DEPDIR)/sgame.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sgame.obj -MD -MP -MF $(DEPDIR)/sgame.Tpo -c -o sgame.obj `if test -f 'src/sgame.c'; then $(CYGPATH_W) 'src/sgame.c'; else $(CYGPATH_W) '$(srcdir)/src/sgame.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/sgame.Tpo $(DEPDIR)/sgame.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/sgame.c' object='sgame.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sgame.obj `if test -f 'src/sgame.c'; then $(CYGPATH_W) 'src/sgame.c'; else $(CYGPATH_W) '$(srcdir)/src/sgame.c'; fi` + + combat.o: src/combat.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT combat.o -MD -MP -MF "$(DEPDIR)/combat.Tpo" -c -o combat.o `test -f 'src/combat.c' || echo '$(srcdir)/'`src/combat.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/combat.Tpo" "$(DEPDIR)/combat.Po"; else rm -f "$(DEPDIR)/combat.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT combat.o -MD -MP -MF $(DEPDIR)/combat.Tpo -c -o combat.o `test -f 'src/combat.c' || echo '$(srcdir)/'`src/combat.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/combat.Tpo $(DEPDIR)/combat.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/combat.c' object='combat.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o combat.o `test -f 'src/combat.c' || echo '$(srcdir)/'`src/combat.c + + combat.obj: src/combat.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT combat.obj -MD -MP -MF "$(DEPDIR)/combat.Tpo" -c -o combat.obj `if test -f 'src/combat.c'; then $(CYGPATH_W) 'src/combat.c'; else $(CYGPATH_W) '$(srcdir)/src/combat.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/combat.Tpo" "$(DEPDIR)/combat.Po"; else rm -f "$(DEPDIR)/combat.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT combat.obj -MD -MP -MF $(DEPDIR)/combat.Tpo -c -o combat.obj `if test -f 'src/combat.c'; then $(CYGPATH_W) 'src/combat.c'; else $(CYGPATH_W) '$(srcdir)/src/combat.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/combat.Tpo $(DEPDIR)/combat.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/combat.c' object='combat.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o combat.obj `if test -f 'src/combat.c'; then $(CYGPATH_W) 'src/combat.c'; else $(CYGPATH_W) '$(srcdir)/src/combat.c'; fi` + + entity.o: src/entity.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT entity.o -MD -MP -MF "$(DEPDIR)/entity.Tpo" -c -o entity.o `test -f 'src/entity.c' || echo '$(srcdir)/'`src/entity.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/entity.Tpo" "$(DEPDIR)/entity.Po"; else rm -f "$(DEPDIR)/entity.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT entity.o -MD -MP -MF $(DEPDIR)/entity.Tpo -c -o entity.o `test -f 'src/entity.c' || echo '$(srcdir)/'`src/entity.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/entity.Tpo $(DEPDIR)/entity.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/entity.c' object='entity.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o entity.o `test -f 'src/entity.c' || echo '$(srcdir)/'`src/entity.c + + entity.obj: src/entity.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT entity.obj -MD -MP -MF "$(DEPDIR)/entity.Tpo" -c -o entity.obj `if test -f 'src/entity.c'; then $(CYGPATH_W) 'src/entity.c'; else $(CYGPATH_W) '$(srcdir)/src/entity.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/entity.Tpo" "$(DEPDIR)/entity.Po"; else rm -f "$(DEPDIR)/entity.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT entity.obj -MD -MP -MF $(DEPDIR)/entity.Tpo -c -o entity.obj `if test -f 'src/entity.c'; then $(CYGPATH_W) 'src/entity.c'; else $(CYGPATH_W) '$(srcdir)/src/entity.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/entity.Tpo $(DEPDIR)/entity.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/entity.c' object='entity.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o entity.obj `if test -f 'src/entity.c'; then $(CYGPATH_W) 'src/entity.c'; else $(CYGPATH_W) '$(srcdir)/src/entity.c'; fi` + + movement.o: src/movement.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT movement.o -MD -MP -MF "$(DEPDIR)/movement.Tpo" -c -o movement.o `test -f 'src/movement.c' || echo '$(srcdir)/'`src/movement.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/movement.Tpo" "$(DEPDIR)/movement.Po"; else rm -f "$(DEPDIR)/movement.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT movement.o -MD -MP -MF $(DEPDIR)/movement.Tpo -c -o movement.o `test -f 'src/movement.c' || echo '$(srcdir)/'`src/movement.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/movement.Tpo $(DEPDIR)/movement.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/movement.c' object='movement.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o movement.o `test -f 'src/movement.c' || echo '$(srcdir)/'`src/movement.c + + movement.obj: src/movement.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT movement.obj -MD -MP -MF "$(DEPDIR)/movement.Tpo" -c -o movement.obj `if test -f 'src/movement.c'; then $(CYGPATH_W) 'src/movement.c'; else $(CYGPATH_W) '$(srcdir)/src/movement.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/movement.Tpo" "$(DEPDIR)/movement.Po"; else rm -f "$(DEPDIR)/movement.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT movement.obj -MD -MP -MF $(DEPDIR)/movement.Tpo -c -o movement.obj `if test -f 'src/movement.c'; then $(CYGPATH_W) 'src/movement.c'; else $(CYGPATH_W) '$(srcdir)/src/movement.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/movement.Tpo $(DEPDIR)/movement.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/movement.c' object='movement.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o movement.obj `if test -f 'src/movement.c'; then $(CYGPATH_W) 'src/movement.c'; else $(CYGPATH_W) '$(srcdir)/src/movement.c'; fi` + + shopmenu.o: src/shopmenu.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT shopmenu.o -MD -MP -MF "$(DEPDIR)/shopmenu.Tpo" -c -o shopmenu.o `test -f 'src/shopmenu.c' || echo '$(srcdir)/'`src/shopmenu.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/shopmenu.Tpo" "$(DEPDIR)/shopmenu.Po"; else rm -f "$(DEPDIR)/shopmenu.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT shopmenu.o -MD -MP -MF $(DEPDIR)/shopmenu.Tpo -c -o shopmenu.o `test -f 'src/shopmenu.c' || echo '$(srcdir)/'`src/shopmenu.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/shopmenu.Tpo $(DEPDIR)/shopmenu.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/shopmenu.c' object='shopmenu.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o shopmenu.o `test -f 'src/shopmenu.c' || echo '$(srcdir)/'`src/shopmenu.c + + shopmenu.obj: src/shopmenu.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT shopmenu.obj -MD -MP -MF "$(DEPDIR)/shopmenu.Tpo" -c -o shopmenu.obj `if test -f 'src/shopmenu.c'; then $(CYGPATH_W) 'src/shopmenu.c'; else $(CYGPATH_W) '$(srcdir)/src/shopmenu.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/shopmenu.Tpo" "$(DEPDIR)/shopmenu.Po"; else rm -f "$(DEPDIR)/shopmenu.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT shopmenu.obj -MD -MP -MF $(DEPDIR)/shopmenu.Tpo -c -o shopmenu.obj `if test -f 'src/shopmenu.c'; then $(CYGPATH_W) 'src/shopmenu.c'; else $(CYGPATH_W) '$(srcdir)/src/shopmenu.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/shopmenu.Tpo $(DEPDIR)/shopmenu.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/shopmenu.c' object='shopmenu.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o shopmenu.obj `if test -f 'src/shopmenu.c'; then $(CYGPATH_W) 'src/shopmenu.c'; else $(CYGPATH_W) '$(srcdir)/src/shopmenu.c'; fi` + + credits.o: src/credits.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT credits.o -MD -MP -MF "$(DEPDIR)/credits.Tpo" -c -o credits.o `test -f 'src/credits.c' || echo '$(srcdir)/'`src/credits.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/credits.Tpo" "$(DEPDIR)/credits.Po"; else rm -f "$(DEPDIR)/credits.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT credits.o -MD -MP -MF $(DEPDIR)/credits.Tpo -c -o credits.o `test -f 'src/credits.c' || echo '$(srcdir)/'`src/credits.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/credits.Tpo $(DEPDIR)/credits.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/credits.c' object='credits.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o credits.o `test -f 'src/credits.c' || echo '$(srcdir)/'`src/credits.c + + credits.obj: src/credits.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT credits.obj -MD -MP -MF "$(DEPDIR)/credits.Tpo" -c -o credits.obj `if test -f 'src/credits.c'; then $(CYGPATH_W) 'src/credits.c'; else $(CYGPATH_W) '$(srcdir)/src/credits.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/credits.Tpo" "$(DEPDIR)/credits.Po"; else rm -f "$(DEPDIR)/credits.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT credits.obj -MD -MP -MF $(DEPDIR)/credits.Tpo -c -o credits.obj `if test -f 'src/credits.c'; then $(CYGPATH_W) 'src/credits.c'; else $(CYGPATH_W) '$(srcdir)/src/credits.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/credits.Tpo $(DEPDIR)/credits.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/credits.c' object='credits.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o credits.obj `if test -f 'src/credits.c'; then $(CYGPATH_W) 'src/credits.c'; else $(CYGPATH_W) '$(srcdir)/src/credits.c'; fi` + + eqpmenu.o: src/eqpmenu.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT eqpmenu.o -MD -MP -MF "$(DEPDIR)/eqpmenu.Tpo" -c -o eqpmenu.o `test -f 'src/eqpmenu.c' || echo '$(srcdir)/'`src/eqpmenu.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/eqpmenu.Tpo" "$(DEPDIR)/eqpmenu.Po"; else rm -f "$(DEPDIR)/eqpmenu.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT eqpmenu.o -MD -MP -MF $(DEPDIR)/eqpmenu.Tpo -c -o eqpmenu.o `test -f 'src/eqpmenu.c' || echo '$(srcdir)/'`src/eqpmenu.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/eqpmenu.Tpo $(DEPDIR)/eqpmenu.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/eqpmenu.c' object='eqpmenu.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o eqpmenu.o `test -f 'src/eqpmenu.c' || echo '$(srcdir)/'`src/eqpmenu.c + + eqpmenu.obj: src/eqpmenu.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT eqpmenu.obj -MD -MP -MF "$(DEPDIR)/eqpmenu.Tpo" -c -o eqpmenu.obj `if test -f 'src/eqpmenu.c'; then $(CYGPATH_W) 'src/eqpmenu.c'; else $(CYGPATH_W) '$(srcdir)/src/eqpmenu.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/eqpmenu.Tpo" "$(DEPDIR)/eqpmenu.Po"; else rm -f "$(DEPDIR)/eqpmenu.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT eqpmenu.obj -MD -MP -MF $(DEPDIR)/eqpmenu.Tpo -c -o eqpmenu.obj `if test -f 'src/eqpmenu.c'; then $(CYGPATH_W) 'src/eqpmenu.c'; else $(CYGPATH_W) '$(srcdir)/src/eqpmenu.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/eqpmenu.Tpo $(DEPDIR)/eqpmenu.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/eqpmenu.c' object='eqpmenu.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o eqpmenu.obj `if test -f 'src/eqpmenu.c'; then $(CYGPATH_W) 'src/eqpmenu.c'; else $(CYGPATH_W) '$(srcdir)/src/eqpmenu.c'; fi` + + itemmenu.o: src/itemmenu.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT itemmenu.o -MD -MP -MF "$(DEPDIR)/itemmenu.Tpo" -c -o itemmenu.o `test -f 'src/itemmenu.c' || echo '$(srcdir)/'`src/itemmenu.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/itemmenu.Tpo" "$(DEPDIR)/itemmenu.Po"; else rm -f "$(DEPDIR)/itemmenu.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT itemmenu.o -MD -MP -MF $(DEPDIR)/itemmenu.Tpo -c -o itemmenu.o `test -f 'src/itemmenu.c' || echo '$(srcdir)/'`src/itemmenu.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/itemmenu.Tpo $(DEPDIR)/itemmenu.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/itemmenu.c' object='itemmenu.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o itemmenu.o `test -f 'src/itemmenu.c' || echo '$(srcdir)/'`src/itemmenu.c + + itemmenu.obj: src/itemmenu.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT itemmenu.obj -MD -MP -MF "$(DEPDIR)/itemmenu.Tpo" -c -o itemmenu.obj `if test -f 'src/itemmenu.c'; then $(CYGPATH_W) 'src/itemmenu.c'; else $(CYGPATH_W) '$(srcdir)/src/itemmenu.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/itemmenu.Tpo" "$(DEPDIR)/itemmenu.Po"; else rm -f "$(DEPDIR)/itemmenu.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT itemmenu.obj -MD -MP -MF $(DEPDIR)/itemmenu.Tpo -c -o itemmenu.obj `if test -f 'src/itemmenu.c'; then $(CYGPATH_W) 'src/itemmenu.c'; else $(CYGPATH_W) '$(srcdir)/src/itemmenu.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/itemmenu.Tpo $(DEPDIR)/itemmenu.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/itemmenu.c' object='itemmenu.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o itemmenu.obj `if test -f 'src/itemmenu.c'; then $(CYGPATH_W) 'src/itemmenu.c'; else $(CYGPATH_W) '$(srcdir)/src/itemmenu.c'; fi` + + music.o: src/music.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT music.o -MD -MP -MF "$(DEPDIR)/music.Tpo" -c -o music.o `test -f 'src/music.c' || echo '$(srcdir)/'`src/music.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/music.Tpo" "$(DEPDIR)/music.Po"; else rm -f "$(DEPDIR)/music.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT music.o -MD -MP -MF $(DEPDIR)/music.Tpo -c -o music.o `test -f 'src/music.c' || echo '$(srcdir)/'`src/music.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/music.Tpo $(DEPDIR)/music.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/music.c' object='music.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o music.o `test -f 'src/music.c' || echo '$(srcdir)/'`src/music.c + + music.obj: src/music.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT music.obj -MD -MP -MF "$(DEPDIR)/music.Tpo" -c -o music.obj `if test -f 'src/music.c'; then $(CYGPATH_W) 'src/music.c'; else $(CYGPATH_W) '$(srcdir)/src/music.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/music.Tpo" "$(DEPDIR)/music.Po"; else rm -f "$(DEPDIR)/music.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT music.obj -MD -MP -MF $(DEPDIR)/music.Tpo -c -o music.obj `if test -f 'src/music.c'; then $(CYGPATH_W) 'src/music.c'; else $(CYGPATH_W) '$(srcdir)/src/music.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/music.Tpo $(DEPDIR)/music.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/music.c' object='music.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o music.obj `if test -f 'src/music.c'; then $(CYGPATH_W) 'src/music.c'; else $(CYGPATH_W) '$(srcdir)/src/music.c'; fi` + + timing.o: src/timing.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT timing.o -MD -MP -MF "$(DEPDIR)/timing.Tpo" -c -o timing.o `test -f 'src/timing.c' || echo '$(srcdir)/'`src/timing.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/timing.Tpo" "$(DEPDIR)/timing.Po"; else rm -f "$(DEPDIR)/timing.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT timing.o -MD -MP -MF $(DEPDIR)/timing.Tpo -c -o timing.o `test -f 'src/timing.c' || echo '$(srcdir)/'`src/timing.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/timing.Tpo $(DEPDIR)/timing.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/timing.c' object='timing.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o timing.o `test -f 'src/timing.c' || echo '$(srcdir)/'`src/timing.c + + timing.obj: src/timing.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT timing.obj -MD -MP -MF "$(DEPDIR)/timing.Tpo" -c -o timing.obj `if test -f 'src/timing.c'; then $(CYGPATH_W) 'src/timing.c'; else $(CYGPATH_W) '$(srcdir)/src/timing.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/timing.Tpo" "$(DEPDIR)/timing.Po"; else rm -f "$(DEPDIR)/timing.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT timing.obj -MD -MP -MF $(DEPDIR)/timing.Tpo -c -o timing.obj `if test -f 'src/timing.c'; then $(CYGPATH_W) 'src/timing.c'; else $(CYGPATH_W) '$(srcdir)/src/timing.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/timing.Tpo $(DEPDIR)/timing.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/timing.c' object='timing.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o timing.obj `if test -f 'src/timing.c'; then $(CYGPATH_W) 'src/timing.c'; else $(CYGPATH_W) '$(srcdir)/src/timing.c'; fi` + + disk.o: src/disk.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT disk.o -MD -MP -MF "$(DEPDIR)/disk.Tpo" -c -o disk.o `test -f 'src/disk.c' || echo '$(srcdir)/'`src/disk.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/disk.Tpo" "$(DEPDIR)/disk.Po"; else rm -f "$(DEPDIR)/disk.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT disk.o -MD -MP -MF $(DEPDIR)/disk.Tpo -c -o disk.o `test -f 'src/disk.c' || echo '$(srcdir)/'`src/disk.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/disk.Tpo $(DEPDIR)/disk.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/disk.c' object='disk.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o disk.o `test -f 'src/disk.c' || echo '$(srcdir)/'`src/disk.c + + disk.obj: src/disk.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT disk.obj -MD -MP -MF "$(DEPDIR)/disk.Tpo" -c -o disk.obj `if test -f 'src/disk.c'; then $(CYGPATH_W) 'src/disk.c'; else $(CYGPATH_W) '$(srcdir)/src/disk.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/disk.Tpo" "$(DEPDIR)/disk.Po"; else rm -f "$(DEPDIR)/disk.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT disk.obj -MD -MP -MF $(DEPDIR)/disk.Tpo -c -o disk.obj `if test -f 'src/disk.c'; then $(CYGPATH_W) 'src/disk.c'; else $(CYGPATH_W) '$(srcdir)/src/disk.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/disk.Tpo $(DEPDIR)/disk.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/disk.c' object='disk.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o disk.obj `if test -f 'src/disk.c'; then $(CYGPATH_W) 'src/disk.c'; else $(CYGPATH_W) '$(srcdir)/src/disk.c'; fi` + + eskill.o: src/eskill.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT eskill.o -MD -MP -MF "$(DEPDIR)/eskill.Tpo" -c -o eskill.o `test -f 'src/eskill.c' || echo '$(srcdir)/'`src/eskill.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/eskill.Tpo" "$(DEPDIR)/eskill.Po"; else rm -f "$(DEPDIR)/eskill.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT eskill.o -MD -MP -MF $(DEPDIR)/eskill.Tpo -c -o eskill.o `test -f 'src/eskill.c' || echo '$(srcdir)/'`src/eskill.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/eskill.Tpo $(DEPDIR)/eskill.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/eskill.c' object='eskill.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o eskill.o `test -f 'src/eskill.c' || echo '$(srcdir)/'`src/eskill.c + + eskill.obj: src/eskill.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT eskill.obj -MD -MP -MF "$(DEPDIR)/eskill.Tpo" -c -o eskill.obj `if test -f 'src/eskill.c'; then $(CYGPATH_W) 'src/eskill.c'; else $(CYGPATH_W) '$(srcdir)/src/eskill.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/eskill.Tpo" "$(DEPDIR)/eskill.Po"; else rm -f "$(DEPDIR)/eskill.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT eskill.obj -MD -MP -MF $(DEPDIR)/eskill.Tpo -c -o eskill.obj `if test -f 'src/eskill.c'; then $(CYGPATH_W) 'src/eskill.c'; else $(CYGPATH_W) '$(srcdir)/src/eskill.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/eskill.Tpo $(DEPDIR)/eskill.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/eskill.c' object='eskill.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o eskill.obj `if test -f 'src/eskill.c'; then $(CYGPATH_W) 'src/eskill.c'; else $(CYGPATH_W) '$(srcdir)/src/eskill.c'; fi` + + kq.o: src/kq.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT kq.o -MD -MP -MF "$(DEPDIR)/kq.Tpo" -c -o kq.o `test -f 'src/kq.c' || echo '$(srcdir)/'`src/kq.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/kq.Tpo" "$(DEPDIR)/kq.Po"; else rm -f "$(DEPDIR)/kq.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT kq.o -MD -MP -MF $(DEPDIR)/kq.Tpo -c -o kq.o `test -f 'src/kq.c' || echo '$(srcdir)/'`src/kq.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/kq.Tpo $(DEPDIR)/kq.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/kq.c' object='kq.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o kq.o `test -f 'src/kq.c' || echo '$(srcdir)/'`src/kq.c + + kq.obj: src/kq.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT kq.obj -MD -MP -MF "$(DEPDIR)/kq.Tpo" -c -o kq.obj `if test -f 'src/kq.c'; then $(CYGPATH_W) 'src/kq.c'; else $(CYGPATH_W) '$(srcdir)/src/kq.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/kq.Tpo" "$(DEPDIR)/kq.Po"; else rm -f "$(DEPDIR)/kq.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT kq.obj -MD -MP -MF $(DEPDIR)/kq.Tpo -c -o kq.obj `if test -f 'src/kq.c'; then $(CYGPATH_W) 'src/kq.c'; else $(CYGPATH_W) '$(srcdir)/src/kq.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/kq.Tpo $(DEPDIR)/kq.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/kq.c' object='kq.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o kq.obj `if test -f 'src/kq.c'; then $(CYGPATH_W) 'src/kq.c'; else $(CYGPATH_W) '$(srcdir)/src/kq.c'; fi` + + res.o: src/res.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT res.o -MD -MP -MF "$(DEPDIR)/res.Tpo" -c -o res.o `test -f 'src/res.c' || echo '$(srcdir)/'`src/res.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/res.Tpo" "$(DEPDIR)/res.Po"; else rm -f "$(DEPDIR)/res.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT res.o -MD -MP -MF $(DEPDIR)/res.Tpo -c -o res.o `test -f 'src/res.c' || echo '$(srcdir)/'`src/res.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/res.Tpo $(DEPDIR)/res.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/res.c' object='res.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o res.o `test -f 'src/res.c' || echo '$(srcdir)/'`src/res.c + + res.obj: src/res.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT res.obj -MD -MP -MF "$(DEPDIR)/res.Tpo" -c -o res.obj `if test -f 'src/res.c'; then $(CYGPATH_W) 'src/res.c'; else $(CYGPATH_W) '$(srcdir)/src/res.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/res.Tpo" "$(DEPDIR)/res.Po"; else rm -f "$(DEPDIR)/res.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT res.obj -MD -MP -MF $(DEPDIR)/res.Tpo -c -o res.obj `if test -f 'src/res.c'; then $(CYGPATH_W) 'src/res.c'; else $(CYGPATH_W) '$(srcdir)/src/res.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/res.Tpo $(DEPDIR)/res.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/res.c' object='res.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o res.obj `if test -f 'src/res.c'; then $(CYGPATH_W) 'src/res.c'; else $(CYGPATH_W) '$(srcdir)/src/res.c'; fi` + + fade.o: src/fade.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT fade.o -MD -MP -MF "$(DEPDIR)/fade.Tpo" -c -o fade.o `test -f 'src/fade.c' || echo '$(srcdir)/'`src/fade.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/fade.Tpo" "$(DEPDIR)/fade.Po"; else rm -f "$(DEPDIR)/fade.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT fade.o -MD -MP -MF $(DEPDIR)/fade.Tpo -c -o fade.o `test -f 'src/fade.c' || echo '$(srcdir)/'`src/fade.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/fade.Tpo $(DEPDIR)/fade.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/fade.c' object='fade.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o fade.o `test -f 'src/fade.c' || echo '$(srcdir)/'`src/fade.c + + fade.obj: src/fade.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT fade.obj -MD -MP -MF "$(DEPDIR)/fade.Tpo" -c -o fade.obj `if test -f 'src/fade.c'; then $(CYGPATH_W) 'src/fade.c'; else $(CYGPATH_W) '$(srcdir)/src/fade.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/fade.Tpo" "$(DEPDIR)/fade.Po"; else rm -f "$(DEPDIR)/fade.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT fade.obj -MD -MP -MF $(DEPDIR)/fade.Tpo -c -o fade.obj `if test -f 'src/fade.c'; then $(CYGPATH_W) 'src/fade.c'; else $(CYGPATH_W) '$(srcdir)/src/fade.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/fade.Tpo $(DEPDIR)/fade.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/fade.c' object='fade.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o fade.obj `if test -f 'src/fade.c'; then $(CYGPATH_W) 'src/fade.c'; else $(CYGPATH_W) '$(srcdir)/src/fade.c'; fi` + + magic.o: src/magic.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT magic.o -MD -MP -MF "$(DEPDIR)/magic.Tpo" -c -o magic.o `test -f 'src/magic.c' || echo '$(srcdir)/'`src/magic.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/magic.Tpo" "$(DEPDIR)/magic.Po"; else rm -f "$(DEPDIR)/magic.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT magic.o -MD -MP -MF $(DEPDIR)/magic.Tpo -c -o magic.o `test -f 'src/magic.c' || echo '$(srcdir)/'`src/magic.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/magic.Tpo $(DEPDIR)/magic.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/magic.c' object='magic.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o magic.o `test -f 'src/magic.c' || echo '$(srcdir)/'`src/magic.c + + magic.obj: src/magic.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT magic.obj -MD -MP -MF "$(DEPDIR)/magic.Tpo" -c -o magic.obj `if test -f 'src/magic.c'; then $(CYGPATH_W) 'src/magic.c'; else $(CYGPATH_W) '$(srcdir)/src/magic.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/magic.Tpo" "$(DEPDIR)/magic.Po"; else rm -f "$(DEPDIR)/magic.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT magic.obj -MD -MP -MF $(DEPDIR)/magic.Tpo -c -o magic.obj `if test -f 'src/magic.c'; then $(CYGPATH_W) 'src/magic.c'; else $(CYGPATH_W) '$(srcdir)/src/magic.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/magic.Tpo $(DEPDIR)/magic.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/magic.c' object='magic.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o magic.obj `if test -f 'src/magic.c'; then $(CYGPATH_W) 'src/magic.c'; else $(CYGPATH_W) '$(srcdir)/src/magic.c'; fi` + + scrnshot.o: src/scrnshot.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT scrnshot.o -MD -MP -MF "$(DEPDIR)/scrnshot.Tpo" -c -o scrnshot.o `test -f 'src/scrnshot.c' || echo '$(srcdir)/'`src/scrnshot.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/scrnshot.Tpo" "$(DEPDIR)/scrnshot.Po"; else rm -f "$(DEPDIR)/scrnshot.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT scrnshot.o -MD -MP -MF $(DEPDIR)/scrnshot.Tpo -c -o scrnshot.o `test -f 'src/scrnshot.c' || echo '$(srcdir)/'`src/scrnshot.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/scrnshot.Tpo $(DEPDIR)/scrnshot.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/scrnshot.c' object='scrnshot.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o scrnshot.o `test -f 'src/scrnshot.c' || echo '$(srcdir)/'`src/scrnshot.c + + scrnshot.obj: src/scrnshot.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT scrnshot.obj -MD -MP -MF "$(DEPDIR)/scrnshot.Tpo" -c -o scrnshot.obj `if test -f 'src/scrnshot.c'; then $(CYGPATH_W) 'src/scrnshot.c'; else $(CYGPATH_W) '$(srcdir)/src/scrnshot.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/scrnshot.Tpo" "$(DEPDIR)/scrnshot.Po"; else rm -f "$(DEPDIR)/scrnshot.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT scrnshot.obj -MD -MP -MF $(DEPDIR)/scrnshot.Tpo -c -o scrnshot.obj `if test -f 'src/scrnshot.c'; then $(CYGPATH_W) 'src/scrnshot.c'; else $(CYGPATH_W) '$(srcdir)/src/scrnshot.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/scrnshot.Tpo $(DEPDIR)/scrnshot.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/scrnshot.c' object='scrnshot.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o scrnshot.obj `if test -f 'src/scrnshot.c'; then $(CYGPATH_W) 'src/scrnshot.c'; else $(CYGPATH_W) '$(srcdir)/src/scrnshot.c'; fi` + + draw.o: src/draw.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT draw.o -MD -MP -MF "$(DEPDIR)/draw.Tpo" -c -o draw.o `test -f 'src/draw.c' || echo '$(srcdir)/'`src/draw.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/draw.Tpo" "$(DEPDIR)/draw.Po"; else rm -f "$(DEPDIR)/draw.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT draw.o -MD -MP -MF $(DEPDIR)/draw.Tpo -c -o draw.o `test -f 'src/draw.c' || echo '$(srcdir)/'`src/draw.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/draw.Tpo $(DEPDIR)/draw.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/draw.c' object='draw.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o draw.o `test -f 'src/draw.c' || echo '$(srcdir)/'`src/draw.c + + draw.obj: src/draw.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT draw.obj -MD -MP -MF "$(DEPDIR)/draw.Tpo" -c -o draw.obj `if test -f 'src/draw.c'; then $(CYGPATH_W) 'src/draw.c'; else $(CYGPATH_W) '$(srcdir)/src/draw.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/draw.Tpo" "$(DEPDIR)/draw.Po"; else rm -f "$(DEPDIR)/draw.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT draw.obj -MD -MP -MF $(DEPDIR)/draw.Tpo -c -o draw.obj `if test -f 'src/draw.c'; then $(CYGPATH_W) 'src/draw.c'; else $(CYGPATH_W) '$(srcdir)/src/draw.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/draw.Tpo $(DEPDIR)/draw.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/draw.c' object='draw.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o draw.obj `if test -f 'src/draw.c'; then $(CYGPATH_W) 'src/draw.c'; else $(CYGPATH_W) '$(srcdir)/src/draw.c'; fi` + + heroc.o: src/heroc.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT heroc.o -MD -MP -MF "$(DEPDIR)/heroc.Tpo" -c -o heroc.o `test -f 'src/heroc.c' || echo '$(srcdir)/'`src/heroc.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/heroc.Tpo" "$(DEPDIR)/heroc.Po"; else rm -f "$(DEPDIR)/heroc.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT heroc.o -MD -MP -MF $(DEPDIR)/heroc.Tpo -c -o heroc.o `test -f 'src/heroc.c' || echo '$(srcdir)/'`src/heroc.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/heroc.Tpo $(DEPDIR)/heroc.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/heroc.c' object='heroc.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o heroc.o `test -f 'src/heroc.c' || echo '$(srcdir)/'`src/heroc.c + + heroc.obj: src/heroc.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT heroc.obj -MD -MP -MF "$(DEPDIR)/heroc.Tpo" -c -o heroc.obj `if test -f 'src/heroc.c'; then $(CYGPATH_W) 'src/heroc.c'; else $(CYGPATH_W) '$(srcdir)/src/heroc.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/heroc.Tpo" "$(DEPDIR)/heroc.Po"; else rm -f "$(DEPDIR)/heroc.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT heroc.obj -MD -MP -MF $(DEPDIR)/heroc.Tpo -c -o heroc.obj `if test -f 'src/heroc.c'; then $(CYGPATH_W) 'src/heroc.c'; else $(CYGPATH_W) '$(srcdir)/src/heroc.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/heroc.Tpo $(DEPDIR)/heroc.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/heroc.c' object='heroc.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o heroc.obj `if test -f 'src/heroc.c'; then $(CYGPATH_W) 'src/heroc.c'; else $(CYGPATH_W) '$(srcdir)/src/heroc.c'; fi` + + masmenu.o: src/masmenu.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT masmenu.o -MD -MP -MF "$(DEPDIR)/masmenu.Tpo" -c -o masmenu.o `test -f 'src/masmenu.c' || echo '$(srcdir)/'`src/masmenu.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/masmenu.Tpo" "$(DEPDIR)/masmenu.Po"; else rm -f "$(DEPDIR)/masmenu.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT masmenu.o -MD -MP -MF $(DEPDIR)/masmenu.Tpo -c -o masmenu.o `test -f 'src/masmenu.c' || echo '$(srcdir)/'`src/masmenu.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/masmenu.Tpo $(DEPDIR)/masmenu.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/masmenu.c' object='masmenu.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o masmenu.o `test -f 'src/masmenu.c' || echo '$(srcdir)/'`src/masmenu.c + + masmenu.obj: src/masmenu.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT masmenu.obj -MD -MP -MF "$(DEPDIR)/masmenu.Tpo" -c -o masmenu.obj `if test -f 'src/masmenu.c'; then $(CYGPATH_W) 'src/masmenu.c'; else $(CYGPATH_W) '$(srcdir)/src/masmenu.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/masmenu.Tpo" "$(DEPDIR)/masmenu.Po"; else rm -f "$(DEPDIR)/masmenu.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT masmenu.obj -MD -MP -MF $(DEPDIR)/masmenu.Tpo -c -o masmenu.obj `if test -f 'src/masmenu.c'; then $(CYGPATH_W) 'src/masmenu.c'; else $(CYGPATH_W) '$(srcdir)/src/masmenu.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/masmenu.Tpo $(DEPDIR)/masmenu.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/masmenu.c' object='masmenu.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o masmenu.obj `if test -f 'src/masmenu.c'; then $(CYGPATH_W) 'src/masmenu.c'; else $(CYGPATH_W) '$(srcdir)/src/masmenu.c'; fi` + + selector.o: src/selector.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT selector.o -MD -MP -MF "$(DEPDIR)/selector.Tpo" -c -o selector.o `test -f 'src/selector.c' || echo '$(srcdir)/'`src/selector.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/selector.Tpo" "$(DEPDIR)/selector.Po"; else rm -f "$(DEPDIR)/selector.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT selector.o -MD -MP -MF $(DEPDIR)/selector.Tpo -c -o selector.o `test -f 'src/selector.c' || echo '$(srcdir)/'`src/selector.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/selector.Tpo $(DEPDIR)/selector.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/selector.c' object='selector.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o selector.o `test -f 'src/selector.c' || echo '$(srcdir)/'`src/selector.c + + selector.obj: src/selector.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT selector.obj -MD -MP -MF "$(DEPDIR)/selector.Tpo" -c -o selector.obj `if test -f 'src/selector.c'; then $(CYGPATH_W) 'src/selector.c'; else $(CYGPATH_W) '$(srcdir)/src/selector.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/selector.Tpo" "$(DEPDIR)/selector.Po"; else rm -f "$(DEPDIR)/selector.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT selector.obj -MD -MP -MF $(DEPDIR)/selector.Tpo -c -o selector.obj `if test -f 'src/selector.c'; then $(CYGPATH_W) 'src/selector.c'; else $(CYGPATH_W) '$(srcdir)/src/selector.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/selector.Tpo $(DEPDIR)/selector.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/selector.c' object='selector.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o selector.obj `if test -f 'src/selector.c'; then $(CYGPATH_W) 'src/selector.c'; else $(CYGPATH_W) '$(srcdir)/src/selector.c'; fi` + + effects.o: src/effects.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT effects.o -MD -MP -MF "$(DEPDIR)/effects.Tpo" -c -o effects.o `test -f 'src/effects.c' || echo '$(srcdir)/'`src/effects.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/effects.Tpo" "$(DEPDIR)/effects.Po"; else rm -f "$(DEPDIR)/effects.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT effects.o -MD -MP -MF $(DEPDIR)/effects.Tpo -c -o effects.o `test -f 'src/effects.c' || echo '$(srcdir)/'`src/effects.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/effects.Tpo $(DEPDIR)/effects.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/effects.c' object='effects.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o effects.o `test -f 'src/effects.c' || echo '$(srcdir)/'`src/effects.c + + effects.obj: src/effects.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT effects.obj -MD -MP -MF "$(DEPDIR)/effects.Tpo" -c -o effects.obj `if test -f 'src/effects.c'; then $(CYGPATH_W) 'src/effects.c'; else $(CYGPATH_W) '$(srcdir)/src/effects.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/effects.Tpo" "$(DEPDIR)/effects.Po"; else rm -f "$(DEPDIR)/effects.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT effects.obj -MD -MP -MF $(DEPDIR)/effects.Tpo -c -o effects.obj `if test -f 'src/effects.c'; then $(CYGPATH_W) 'src/effects.c'; else $(CYGPATH_W) '$(srcdir)/src/effects.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/effects.Tpo $(DEPDIR)/effects.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/effects.c' object='effects.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o effects.obj `if test -f 'src/effects.c'; then $(CYGPATH_W) 'src/effects.c'; else $(CYGPATH_W) '$(srcdir)/src/effects.c'; fi` + + hskill.o: src/hskill.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT hskill.o -MD -MP -MF "$(DEPDIR)/hskill.Tpo" -c -o hskill.o `test -f 'src/hskill.c' || echo '$(srcdir)/'`src/hskill.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/hskill.Tpo" "$(DEPDIR)/hskill.Po"; else rm -f "$(DEPDIR)/hskill.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT hskill.o -MD -MP -MF $(DEPDIR)/hskill.Tpo -c -o hskill.o `test -f 'src/hskill.c' || echo '$(srcdir)/'`src/hskill.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/hskill.Tpo $(DEPDIR)/hskill.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/hskill.c' object='hskill.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o hskill.o `test -f 'src/hskill.c' || echo '$(srcdir)/'`src/hskill.c + + hskill.obj: src/hskill.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT hskill.obj -MD -MP -MF "$(DEPDIR)/hskill.Tpo" -c -o hskill.obj `if test -f 'src/hskill.c'; then $(CYGPATH_W) 'src/hskill.c'; else $(CYGPATH_W) '$(srcdir)/src/hskill.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/hskill.Tpo" "$(DEPDIR)/hskill.Po"; else rm -f "$(DEPDIR)/hskill.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT hskill.obj -MD -MP -MF $(DEPDIR)/hskill.Tpo -c -o hskill.obj `if test -f 'src/hskill.c'; then $(CYGPATH_W) 'src/hskill.c'; else $(CYGPATH_W) '$(srcdir)/src/hskill.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/hskill.Tpo $(DEPDIR)/hskill.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/hskill.c' object='hskill.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o hskill.obj `if test -f 'src/hskill.c'; then $(CYGPATH_W) 'src/hskill.c'; else $(CYGPATH_W) '$(srcdir)/src/hskill.c'; fi` + + menu.o: src/menu.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT menu.o -MD -MP -MF "$(DEPDIR)/menu.Tpo" -c -o menu.o `test -f 'src/menu.c' || echo '$(srcdir)/'`src/menu.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/menu.Tpo" "$(DEPDIR)/menu.Po"; else rm -f "$(DEPDIR)/menu.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT menu.o -MD -MP -MF $(DEPDIR)/menu.Tpo -c -o menu.o `test -f 'src/menu.c' || echo '$(srcdir)/'`src/menu.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/menu.Tpo $(DEPDIR)/menu.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/menu.c' object='menu.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o menu.o `test -f 'src/menu.c' || echo '$(srcdir)/'`src/menu.c + + menu.obj: src/menu.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT menu.obj -MD -MP -MF "$(DEPDIR)/menu.Tpo" -c -o menu.obj `if test -f 'src/menu.c'; then $(CYGPATH_W) 'src/menu.c'; else $(CYGPATH_W) '$(srcdir)/src/menu.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/menu.Tpo" "$(DEPDIR)/menu.Po"; else rm -f "$(DEPDIR)/menu.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT menu.obj -MD -MP -MF $(DEPDIR)/menu.Tpo -c -o menu.obj `if test -f 'src/menu.c'; then $(CYGPATH_W) 'src/menu.c'; else $(CYGPATH_W) '$(srcdir)/src/menu.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/menu.Tpo $(DEPDIR)/menu.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/menu.c' object='menu.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o menu.obj `if test -f 'src/menu.c'; then $(CYGPATH_W) 'src/menu.c'; else $(CYGPATH_W) '$(srcdir)/src/menu.c'; fi` + + setup.o: src/setup.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT setup.o -MD -MP -MF "$(DEPDIR)/setup.Tpo" -c -o setup.o `test -f 'src/setup.c' || echo '$(srcdir)/'`src/setup.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/setup.Tpo" "$(DEPDIR)/setup.Po"; else rm -f "$(DEPDIR)/setup.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT setup.o -MD -MP -MF $(DEPDIR)/setup.Tpo -c -o setup.o `test -f 'src/setup.c' || echo '$(srcdir)/'`src/setup.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/setup.Tpo $(DEPDIR)/setup.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/setup.c' object='setup.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o setup.o `test -f 'src/setup.c' || echo '$(srcdir)/'`src/setup.c + + setup.obj: src/setup.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT setup.obj -MD -MP -MF "$(DEPDIR)/setup.Tpo" -c -o setup.obj `if test -f 'src/setup.c'; then $(CYGPATH_W) 'src/setup.c'; else $(CYGPATH_W) '$(srcdir)/src/setup.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/setup.Tpo" "$(DEPDIR)/setup.Po"; else rm -f "$(DEPDIR)/setup.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT setup.obj -MD -MP -MF $(DEPDIR)/setup.Tpo -c -o setup.obj `if test -f 'src/setup.c'; then $(CYGPATH_W) 'src/setup.c'; else $(CYGPATH_W) '$(srcdir)/src/setup.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/setup.Tpo $(DEPDIR)/setup.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/setup.c' object='setup.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o setup.obj `if test -f 'src/setup.c'; then $(CYGPATH_W) 'src/setup.c'; else $(CYGPATH_W) '$(srcdir)/src/setup.c'; fi` + + unix.o: src/unix.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT unix.o -MD -MP -MF "$(DEPDIR)/unix.Tpo" -c -o unix.o `test -f 'src/unix.c' || echo '$(srcdir)/'`src/unix.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/unix.Tpo" "$(DEPDIR)/unix.Po"; else rm -f "$(DEPDIR)/unix.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT unix.o -MD -MP -MF $(DEPDIR)/unix.Tpo -c -o unix.o `test -f 'src/unix.c' || echo '$(srcdir)/'`src/unix.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/unix.Tpo $(DEPDIR)/unix.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/unix.c' object='unix.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o unix.o `test -f 'src/unix.c' || echo '$(srcdir)/'`src/unix.c + + unix.obj: src/unix.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT unix.obj -MD -MP -MF "$(DEPDIR)/unix.Tpo" -c -o unix.obj `if test -f 'src/unix.c'; then $(CYGPATH_W) 'src/unix.c'; else $(CYGPATH_W) '$(srcdir)/src/unix.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/unix.Tpo" "$(DEPDIR)/unix.Po"; else rm -f "$(DEPDIR)/unix.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT unix.obj -MD -MP -MF $(DEPDIR)/unix.Tpo -c -o unix.obj `if test -f 'src/unix.c'; then $(CYGPATH_W) 'src/unix.c'; else $(CYGPATH_W) '$(srcdir)/src/unix.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/unix.Tpo $(DEPDIR)/unix.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/unix.c' object='unix.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o unix.obj `if test -f 'src/unix.c'; then $(CYGPATH_W) 'src/unix.c'; else $(CYGPATH_W) '$(srcdir)/src/unix.c'; fi` + + beos.o: src/beos.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT beos.o -MD -MP -MF "$(DEPDIR)/beos.Tpo" -c -o beos.o `test -f 'src/beos.c' || echo '$(srcdir)/'`src/beos.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/beos.Tpo" "$(DEPDIR)/beos.Po"; else rm -f "$(DEPDIR)/beos.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT beos.o -MD -MP -MF $(DEPDIR)/beos.Tpo -c -o beos.o `test -f 'src/beos.c' || echo '$(srcdir)/'`src/beos.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/beos.Tpo $(DEPDIR)/beos.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/beos.c' object='beos.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o beos.o `test -f 'src/beos.c' || echo '$(srcdir)/'`src/beos.c + + beos.obj: src/beos.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT beos.obj -MD -MP -MF "$(DEPDIR)/beos.Tpo" -c -o beos.obj `if test -f 'src/beos.c'; then $(CYGPATH_W) 'src/beos.c'; else $(CYGPATH_W) '$(srcdir)/src/beos.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/beos.Tpo" "$(DEPDIR)/beos.Po"; else rm -f "$(DEPDIR)/beos.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT beos.obj -MD -MP -MF $(DEPDIR)/beos.Tpo -c -o beos.obj `if test -f 'src/beos.c'; then $(CYGPATH_W) 'src/beos.c'; else $(CYGPATH_W) '$(srcdir)/src/beos.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/beos.Tpo $(DEPDIR)/beos.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/beos.c' object='beos.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o beos.obj `if test -f 'src/beos.c'; then $(CYGPATH_W) 'src/beos.c'; else $(CYGPATH_W) '$(srcdir)/src/beos.c'; fi` + + win.o: src/win.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT win.o -MD -MP -MF "$(DEPDIR)/win.Tpo" -c -o win.o `test -f 'src/win.c' || echo '$(srcdir)/'`src/win.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/win.Tpo" "$(DEPDIR)/win.Po"; else rm -f "$(DEPDIR)/win.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT win.o -MD -MP -MF $(DEPDIR)/win.Tpo -c -o win.o `test -f 'src/win.c' || echo '$(srcdir)/'`src/win.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/win.Tpo $(DEPDIR)/win.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/win.c' object='win.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o win.o `test -f 'src/win.c' || echo '$(srcdir)/'`src/win.c + + win.obj: src/win.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT win.obj -MD -MP -MF "$(DEPDIR)/win.Tpo" -c -o win.obj `if test -f 'src/win.c'; then $(CYGPATH_W) 'src/win.c'; else $(CYGPATH_W) '$(srcdir)/src/win.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/win.Tpo" "$(DEPDIR)/win.Po"; else rm -f "$(DEPDIR)/win.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT win.obj -MD -MP -MF $(DEPDIR)/win.Tpo -c -o win.obj `if test -f 'src/win.c'; then $(CYGPATH_W) 'src/win.c'; else $(CYGPATH_W) '$(srcdir)/src/win.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/win.Tpo $(DEPDIR)/win.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/win.c' object='win.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o win.obj `if test -f 'src/win.c'; then $(CYGPATH_W) 'src/win.c'; else $(CYGPATH_W) '$(srcdir)/src/win.c'; fi` + + dos.o: src/dos.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dos.o -MD -MP -MF "$(DEPDIR)/dos.Tpo" -c -o dos.o `test -f 'src/dos.c' || echo '$(srcdir)/'`src/dos.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/dos.Tpo" "$(DEPDIR)/dos.Po"; else rm -f "$(DEPDIR)/dos.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dos.o -MD -MP -MF $(DEPDIR)/dos.Tpo -c -o dos.o `test -f 'src/dos.c' || echo '$(srcdir)/'`src/dos.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dos.Tpo $(DEPDIR)/dos.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/dos.c' object='dos.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dos.o `test -f 'src/dos.c' || echo '$(srcdir)/'`src/dos.c + + dos.obj: src/dos.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dos.obj -MD -MP -MF "$(DEPDIR)/dos.Tpo" -c -o dos.obj `if test -f 'src/dos.c'; then $(CYGPATH_W) 'src/dos.c'; else $(CYGPATH_W) '$(srcdir)/src/dos.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/dos.Tpo" "$(DEPDIR)/dos.Po"; else rm -f "$(DEPDIR)/dos.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dos.obj -MD -MP -MF $(DEPDIR)/dos.Tpo -c -o dos.obj `if test -f 'src/dos.c'; then $(CYGPATH_W) 'src/dos.c'; else $(CYGPATH_W) '$(srcdir)/src/dos.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/dos.Tpo $(DEPDIR)/dos.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/dos.c' object='dos.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dos.obj `if test -f 'src/dos.c'; then $(CYGPATH_W) 'src/dos.c'; else $(CYGPATH_W) '$(srcdir)/src/dos.c'; fi` + + mapdiff.o: maps/mapdiff.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapdiff.o -MD -MP -MF "$(DEPDIR)/mapdiff.Tpo" -c -o mapdiff.o `test -f 'maps/mapdiff.c' || echo '$(srcdir)/'`maps/mapdiff.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/mapdiff.Tpo" "$(DEPDIR)/mapdiff.Po"; else rm -f "$(DEPDIR)/mapdiff.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapdiff.o -MD -MP -MF $(DEPDIR)/mapdiff.Tpo -c -o mapdiff.o `test -f 'maps/mapdiff.c' || echo '$(srcdir)/'`maps/mapdiff.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/mapdiff.Tpo $(DEPDIR)/mapdiff.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maps/mapdiff.c' object='mapdiff.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mapdiff.o `test -f 'maps/mapdiff.c' || echo '$(srcdir)/'`maps/mapdiff.c + + mapdiff.obj: maps/mapdiff.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapdiff.obj -MD -MP -MF "$(DEPDIR)/mapdiff.Tpo" -c -o mapdiff.obj `if test -f 'maps/mapdiff.c'; then $(CYGPATH_W) 'maps/mapdiff.c'; else $(CYGPATH_W) '$(srcdir)/maps/mapdiff.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/mapdiff.Tpo" "$(DEPDIR)/mapdiff.Po"; else rm -f "$(DEPDIR)/mapdiff.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapdiff.obj -MD -MP -MF $(DEPDIR)/mapdiff.Tpo -c -o mapdiff.obj `if test -f 'maps/mapdiff.c'; then $(CYGPATH_W) 'maps/mapdiff.c'; else $(CYGPATH_W) '$(srcdir)/maps/mapdiff.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/mapdiff.Tpo $(DEPDIR)/mapdiff.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maps/mapdiff.c' object='mapdiff.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mapdiff.obj `if test -f 'maps/mapdiff.c'; then $(CYGPATH_W) 'maps/mapdiff.c'; else $(CYGPATH_W) '$(srcdir)/maps/mapdiff.c'; fi` + + mapdata.o: maps/mapdata.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapdata.o -MD -MP -MF "$(DEPDIR)/mapdata.Tpo" -c -o mapdata.o `test -f 'maps/mapdata.c' || echo '$(srcdir)/'`maps/mapdata.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/mapdata.Tpo" "$(DEPDIR)/mapdata.Po"; else rm -f "$(DEPDIR)/mapdata.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapdata.o -MD -MP -MF $(DEPDIR)/mapdata.Tpo -c -o mapdata.o `test -f 'maps/mapdata.c' || echo '$(srcdir)/'`maps/mapdata.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/mapdata.Tpo $(DEPDIR)/mapdata.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maps/mapdata.c' object='mapdata.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mapdata.o `test -f 'maps/mapdata.c' || echo '$(srcdir)/'`maps/mapdata.c + + mapdata.obj: maps/mapdata.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapdata.obj -MD -MP -MF "$(DEPDIR)/mapdata.Tpo" -c -o mapdata.obj `if test -f 'maps/mapdata.c'; then $(CYGPATH_W) 'maps/mapdata.c'; else $(CYGPATH_W) '$(srcdir)/maps/mapdata.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/mapdata.Tpo" "$(DEPDIR)/mapdata.Po"; else rm -f "$(DEPDIR)/mapdata.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapdata.obj -MD -MP -MF $(DEPDIR)/mapdata.Tpo -c -o mapdata.obj `if test -f 'maps/mapdata.c'; then $(CYGPATH_W) 'maps/mapdata.c'; else $(CYGPATH_W) '$(srcdir)/maps/mapdata.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/mapdata.Tpo $(DEPDIR)/mapdata.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maps/mapdata.c' object='mapdata.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mapdata.obj `if test -f 'maps/mapdata.c'; then $(CYGPATH_W) 'maps/mapdata.c'; else $(CYGPATH_W) '$(srcdir)/maps/mapdata.c'; fi` + + mapedit.o: maps/mapedit.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapedit.o -MD -MP -MF "$(DEPDIR)/mapedit.Tpo" -c -o mapedit.o `test -f 'maps/mapedit.c' || echo '$(srcdir)/'`maps/mapedit.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/mapedit.Tpo" "$(DEPDIR)/mapedit.Po"; else rm -f "$(DEPDIR)/mapedit.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapedit.o -MD -MP -MF $(DEPDIR)/mapedit.Tpo -c -o mapedit.o `test -f 'maps/mapedit.c' || echo '$(srcdir)/'`maps/mapedit.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/mapedit.Tpo $(DEPDIR)/mapedit.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maps/mapedit.c' object='mapedit.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mapedit.o `test -f 'maps/mapedit.c' || echo '$(srcdir)/'`maps/mapedit.c + + mapedit.obj: maps/mapedit.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapedit.obj -MD -MP -MF "$(DEPDIR)/mapedit.Tpo" -c -o mapedit.obj `if test -f 'maps/mapedit.c'; then $(CYGPATH_W) 'maps/mapedit.c'; else $(CYGPATH_W) '$(srcdir)/maps/mapedit.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/mapedit.Tpo" "$(DEPDIR)/mapedit.Po"; else rm -f "$(DEPDIR)/mapedit.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapedit.obj -MD -MP -MF $(DEPDIR)/mapedit.Tpo -c -o mapedit.obj `if test -f 'maps/mapedit.c'; then $(CYGPATH_W) 'maps/mapedit.c'; else $(CYGPATH_W) '$(srcdir)/maps/mapedit.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/mapedit.Tpo $(DEPDIR)/mapedit.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maps/mapedit.c' object='mapedit.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mapedit.obj `if test -f 'maps/mapedit.c'; then $(CYGPATH_W) 'maps/mapedit.c'; else $(CYGPATH_W) '$(srcdir)/maps/mapedit.c'; fi` + + mapfile.o: maps/mapfile.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapfile.o -MD -MP -MF "$(DEPDIR)/mapfile.Tpo" -c -o mapfile.o `test -f 'maps/mapfile.c' || echo '$(srcdir)/'`maps/mapfile.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/mapfile.Tpo" "$(DEPDIR)/mapfile.Po"; else rm -f "$(DEPDIR)/mapfile.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapfile.o -MD -MP -MF $(DEPDIR)/mapfile.Tpo -c -o mapfile.o `test -f 'maps/mapfile.c' || echo '$(srcdir)/'`maps/mapfile.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/mapfile.Tpo $(DEPDIR)/mapfile.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maps/mapfile.c' object='mapfile.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mapfile.o `test -f 'maps/mapfile.c' || echo '$(srcdir)/'`maps/mapfile.c + + mapfile.obj: maps/mapfile.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapfile.obj -MD -MP -MF "$(DEPDIR)/mapfile.Tpo" -c -o mapfile.obj `if test -f 'maps/mapfile.c'; then $(CYGPATH_W) 'maps/mapfile.c'; else $(CYGPATH_W) '$(srcdir)/maps/mapfile.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/mapfile.Tpo" "$(DEPDIR)/mapfile.Po"; else rm -f "$(DEPDIR)/mapfile.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapfile.obj -MD -MP -MF $(DEPDIR)/mapfile.Tpo -c -o mapfile.obj `if test -f 'maps/mapfile.c'; then $(CYGPATH_W) 'maps/mapfile.c'; else $(CYGPATH_W) '$(srcdir)/maps/mapfile.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/mapfile.Tpo $(DEPDIR)/mapfile.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maps/mapfile.c' object='mapfile.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mapfile.obj `if test -f 'maps/mapfile.c'; then $(CYGPATH_W) 'maps/mapfile.c'; else $(CYGPATH_W) '$(srcdir)/maps/mapfile.c'; fi` + + mapent.o: maps/mapent.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapent.o -MD -MP -MF "$(DEPDIR)/mapent.Tpo" -c -o mapent.o `test -f 'maps/mapent.c' || echo '$(srcdir)/'`maps/mapent.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/mapent.Tpo" "$(DEPDIR)/mapent.Po"; else rm -f "$(DEPDIR)/mapent.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapent.o -MD -MP -MF $(DEPDIR)/mapent.Tpo -c -o mapent.o `test -f 'maps/mapent.c' || echo '$(srcdir)/'`maps/mapent.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/mapent.Tpo $(DEPDIR)/mapent.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maps/mapent.c' object='mapent.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mapent.o `test -f 'maps/mapent.c' || echo '$(srcdir)/'`maps/mapent.c + + mapent.obj: maps/mapent.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapent.obj -MD -MP -MF "$(DEPDIR)/mapent.Tpo" -c -o mapent.obj `if test -f 'maps/mapent.c'; then $(CYGPATH_W) 'maps/mapent.c'; else $(CYGPATH_W) '$(srcdir)/maps/mapent.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/mapent.Tpo" "$(DEPDIR)/mapent.Po"; else rm -f "$(DEPDIR)/mapent.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapent.obj -MD -MP -MF $(DEPDIR)/mapent.Tpo -c -o mapent.obj `if test -f 'maps/mapent.c'; then $(CYGPATH_W) 'maps/mapent.c'; else $(CYGPATH_W) '$(srcdir)/maps/mapent.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/mapent.Tpo $(DEPDIR)/mapent.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maps/mapent.c' object='mapent.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mapent.obj `if test -f 'maps/mapent.c'; then $(CYGPATH_W) 'maps/mapent.c'; else $(CYGPATH_W) '$(srcdir)/maps/mapent.c'; fi` + + mapshared.o: maps/mapshared.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapshared.o -MD -MP -MF "$(DEPDIR)/mapshared.Tpo" -c -o mapshared.o `test -f 'maps/mapshared.c' || echo '$(srcdir)/'`maps/mapshared.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/mapshared.Tpo" "$(DEPDIR)/mapshared.Po"; else rm -f "$(DEPDIR)/mapshared.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapshared.o -MD -MP -MF $(DEPDIR)/mapshared.Tpo -c -o mapshared.o `test -f 'maps/mapshared.c' || echo '$(srcdir)/'`maps/mapshared.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/mapshared.Tpo $(DEPDIR)/mapshared.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maps/mapshared.c' object='mapshared.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mapshared.o `test -f 'maps/mapshared.c' || echo '$(srcdir)/'`maps/mapshared.c + + mapshared.obj: maps/mapshared.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapshared.obj -MD -MP -MF "$(DEPDIR)/mapshared.Tpo" -c -o mapshared.obj `if test -f 'maps/mapshared.c'; then $(CYGPATH_W) 'maps/mapshared.c'; else $(CYGPATH_W) '$(srcdir)/maps/mapshared.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/mapshared.Tpo" "$(DEPDIR)/mapshared.Po"; else rm -f "$(DEPDIR)/mapshared.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapshared.obj -MD -MP -MF $(DEPDIR)/mapshared.Tpo -c -o mapshared.obj `if test -f 'maps/mapshared.c'; then $(CYGPATH_W) 'maps/mapshared.c'; else $(CYGPATH_W) '$(srcdir)/maps/mapshared.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/mapshared.Tpo $(DEPDIR)/mapshared.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maps/mapshared.c' object='mapshared.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mapshared.obj `if test -f 'maps/mapshared.c'; then $(CYGPATH_W) 'maps/mapshared.c'; else $(CYGPATH_W) '$(srcdir)/maps/mapshared.c'; fi` + + mapdraw2-mapdraw2.o: maps/mapdraw2.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mapdraw2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapdraw2-mapdraw2.o -MD -MP -MF "$(DEPDIR)/mapdraw2-mapdraw2.Tpo" -c -o mapdraw2-mapdraw2.o `test -f 'maps/mapdraw2.c' || echo '$(srcdir)/'`maps/mapdraw2.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/mapdraw2-mapdraw2.Tpo" "$(DEPDIR)/mapdraw2-mapdraw2.Po"; else rm -f "$(DEPDIR)/mapdraw2-mapdraw2.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mapdraw2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapdraw2-mapdraw2.o -MD -MP -MF $(DEPDIR)/mapdraw2-mapdraw2.Tpo -c -o mapdraw2-mapdraw2.o `test -f 'maps/mapdraw2.c' || echo '$(srcdir)/'`maps/mapdraw2.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/mapdraw2-mapdraw2.Tpo $(DEPDIR)/mapdraw2-mapdraw2.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maps/mapdraw2.c' object='mapdraw2-mapdraw2.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mapdraw2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mapdraw2-mapdraw2.o `test -f 'maps/mapdraw2.c' || echo '$(srcdir)/'`maps/mapdraw2.c + + mapdraw2-mapdraw2.obj: maps/mapdraw2.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mapdraw2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapdraw2-mapdraw2.obj -MD -MP -MF "$(DEPDIR)/mapdraw2-mapdraw2.Tpo" -c -o mapdraw2-mapdraw2.obj `if test -f 'maps/mapdraw2.c'; then $(CYGPATH_W) 'maps/mapdraw2.c'; else $(CYGPATH_W) '$(srcdir)/maps/mapdraw2.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/mapdraw2-mapdraw2.Tpo" "$(DEPDIR)/mapdraw2-mapdraw2.Po"; else rm -f "$(DEPDIR)/mapdraw2-mapdraw2.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mapdraw2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapdraw2-mapdraw2.obj -MD -MP -MF $(DEPDIR)/mapdraw2-mapdraw2.Tpo -c -o mapdraw2-mapdraw2.obj `if test -f 'maps/mapdraw2.c'; then $(CYGPATH_W) 'maps/mapdraw2.c'; else $(CYGPATH_W) '$(srcdir)/maps/mapdraw2.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/mapdraw2-mapdraw2.Tpo $(DEPDIR)/mapdraw2-mapdraw2.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maps/mapdraw2.c' object='mapdraw2-mapdraw2.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mapdraw2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mapdraw2-mapdraw2.obj `if test -f 'maps/mapdraw2.c'; then $(CYGPATH_W) 'maps/mapdraw2.c'; else $(CYGPATH_W) '$(srcdir)/maps/mapdraw2.c'; fi` + + mapdraw2-mainwindow.o: maps/mainwindow.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mapdraw2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapdraw2-mainwindow.o -MD -MP -MF "$(DEPDIR)/mapdraw2-mainwindow.Tpo" -c -o mapdraw2-mainwindow.o `test -f 'maps/mainwindow.c' || echo '$(srcdir)/'`maps/mainwindow.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/mapdraw2-mainwindow.Tpo" "$(DEPDIR)/mapdraw2-mainwindow.Po"; else rm -f "$(DEPDIR)/mapdraw2-mainwindow.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mapdraw2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapdraw2-mainwindow.o -MD -MP -MF $(DEPDIR)/mapdraw2-mainwindow.Tpo -c -o mapdraw2-mainwindow.o `test -f 'maps/mainwindow.c' || echo '$(srcdir)/'`maps/mainwindow.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/mapdraw2-mainwindow.Tpo $(DEPDIR)/mapdraw2-mainwindow.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maps/mainwindow.c' object='mapdraw2-mainwindow.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mapdraw2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mapdraw2-mainwindow.o `test -f 'maps/mainwindow.c' || echo '$(srcdir)/'`maps/mainwindow.c + + mapdraw2-mainwindow.obj: maps/mainwindow.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mapdraw2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapdraw2-mainwindow.obj -MD -MP -MF "$(DEPDIR)/mapdraw2-mainwindow.Tpo" -c -o mapdraw2-mainwindow.obj `if test -f 'maps/mainwindow.c'; then $(CYGPATH_W) 'maps/mainwindow.c'; else $(CYGPATH_W) '$(srcdir)/maps/mainwindow.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/mapdraw2-mainwindow.Tpo" "$(DEPDIR)/mapdraw2-mainwindow.Po"; else rm -f "$(DEPDIR)/mapdraw2-mainwindow.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mapdraw2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapdraw2-mainwindow.obj -MD -MP -MF $(DEPDIR)/mapdraw2-mainwindow.Tpo -c -o mapdraw2-mainwindow.obj `if test -f 'maps/mainwindow.c'; then $(CYGPATH_W) 'maps/mainwindow.c'; else $(CYGPATH_W) '$(srcdir)/maps/mainwindow.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/mapdraw2-mainwindow.Tpo $(DEPDIR)/mapdraw2-mainwindow.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maps/mainwindow.c' object='mapdraw2-mainwindow.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mapdraw2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mapdraw2-mainwindow.obj `if test -f 'maps/mainwindow.c'; then $(CYGPATH_W) 'maps/mainwindow.c'; else $(CYGPATH_W) '$(srcdir)/maps/mainwindow.c'; fi` + + mapdraw2-mapedit2.o: maps/mapedit2.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mapdraw2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapdraw2-mapedit2.o -MD -MP -MF "$(DEPDIR)/mapdraw2-mapedit2.Tpo" -c -o mapdraw2-mapedit2.o `test -f 'maps/mapedit2.c' || echo '$(srcdir)/'`maps/mapedit2.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/mapdraw2-mapedit2.Tpo" "$(DEPDIR)/mapdraw2-mapedit2.Po"; else rm -f "$(DEPDIR)/mapdraw2-mapedit2.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mapdraw2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapdraw2-mapedit2.o -MD -MP -MF $(DEPDIR)/mapdraw2-mapedit2.Tpo -c -o mapdraw2-mapedit2.o `test -f 'maps/mapedit2.c' || echo '$(srcdir)/'`maps/mapedit2.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/mapdraw2-mapedit2.Tpo $(DEPDIR)/mapdraw2-mapedit2.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maps/mapedit2.c' object='mapdraw2-mapedit2.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mapdraw2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mapdraw2-mapedit2.o `test -f 'maps/mapedit2.c' || echo '$(srcdir)/'`maps/mapedit2.c + + mapdraw2-mapedit2.obj: maps/mapedit2.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mapdraw2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapdraw2-mapedit2.obj -MD -MP -MF "$(DEPDIR)/mapdraw2-mapedit2.Tpo" -c -o mapdraw2-mapedit2.obj `if test -f 'maps/mapedit2.c'; then $(CYGPATH_W) 'maps/mapedit2.c'; else $(CYGPATH_W) '$(srcdir)/maps/mapedit2.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/mapdraw2-mapedit2.Tpo" "$(DEPDIR)/mapdraw2-mapedit2.Po"; else rm -f "$(DEPDIR)/mapdraw2-mapedit2.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mapdraw2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapdraw2-mapedit2.obj -MD -MP -MF $(DEPDIR)/mapdraw2-mapedit2.Tpo -c -o mapdraw2-mapedit2.obj `if test -f 'maps/mapedit2.c'; then $(CYGPATH_W) 'maps/mapedit2.c'; else $(CYGPATH_W) '$(srcdir)/maps/mapedit2.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/mapdraw2-mapedit2.Tpo $(DEPDIR)/mapdraw2-mapedit2.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maps/mapedit2.c' object='mapdraw2-mapedit2.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mapdraw2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mapdraw2-mapedit2.obj `if test -f 'maps/mapedit2.c'; then $(CYGPATH_W) 'maps/mapedit2.c'; else $(CYGPATH_W) '$(srcdir)/maps/mapedit2.c'; fi` + + mapdraw2-mapshared.o: maps/mapshared.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mapdraw2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapdraw2-mapshared.o -MD -MP -MF "$(DEPDIR)/mapdraw2-mapshared.Tpo" -c -o mapdraw2-mapshared.o `test -f 'maps/mapshared.c' || echo '$(srcdir)/'`maps/mapshared.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/mapdraw2-mapshared.Tpo" "$(DEPDIR)/mapdraw2-mapshared.Po"; else rm -f "$(DEPDIR)/mapdraw2-mapshared.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mapdraw2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapdraw2-mapshared.o -MD -MP -MF $(DEPDIR)/mapdraw2-mapshared.Tpo -c -o mapdraw2-mapshared.o `test -f 'maps/mapshared.c' || echo '$(srcdir)/'`maps/mapshared.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/mapdraw2-mapshared.Tpo $(DEPDIR)/mapdraw2-mapshared.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maps/mapshared.c' object='mapdraw2-mapshared.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mapdraw2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mapdraw2-mapshared.o `test -f 'maps/mapshared.c' || echo '$(srcdir)/'`maps/mapshared.c + + mapdraw2-mapshared.obj: maps/mapshared.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mapdraw2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapdraw2-mapshared.obj -MD -MP -MF "$(DEPDIR)/mapdraw2-mapshared.Tpo" -c -o mapdraw2-mapshared.obj `if test -f 'maps/mapshared.c'; then $(CYGPATH_W) 'maps/mapshared.c'; else $(CYGPATH_W) '$(srcdir)/maps/mapshared.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/mapdraw2-mapshared.Tpo" "$(DEPDIR)/mapdraw2-mapshared.Po"; else rm -f "$(DEPDIR)/mapdraw2-mapshared.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mapdraw2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapdraw2-mapshared.obj -MD -MP -MF $(DEPDIR)/mapdraw2-mapshared.Tpo -c -o mapdraw2-mapshared.obj `if test -f 'maps/mapshared.c'; then $(CYGPATH_W) 'maps/mapshared.c'; else $(CYGPATH_W) '$(srcdir)/maps/mapshared.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/mapdraw2-mapshared.Tpo $(DEPDIR)/mapdraw2-mapshared.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maps/mapshared.c' object='mapdraw2-mapshared.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mapdraw2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mapdraw2-mapshared.obj `if test -f 'maps/mapshared.c'; then $(CYGPATH_W) 'maps/mapshared.c'; else $(CYGPATH_W) '$(srcdir)/maps/mapshared.c'; fi` + + mapdraw2-disk.o: src/disk.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mapdraw2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapdraw2-disk.o -MD -MP -MF "$(DEPDIR)/mapdraw2-disk.Tpo" -c -o mapdraw2-disk.o `test -f 'src/disk.c' || echo '$(srcdir)/'`src/disk.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/mapdraw2-disk.Tpo" "$(DEPDIR)/mapdraw2-disk.Po"; else rm -f "$(DEPDIR)/mapdraw2-disk.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mapdraw2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapdraw2-disk.o -MD -MP -MF $(DEPDIR)/mapdraw2-disk.Tpo -c -o mapdraw2-disk.o `test -f 'src/disk.c' || echo '$(srcdir)/'`src/disk.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/mapdraw2-disk.Tpo $(DEPDIR)/mapdraw2-disk.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/disk.c' object='mapdraw2-disk.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mapdraw2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mapdraw2-disk.o `test -f 'src/disk.c' || echo '$(srcdir)/'`src/disk.c + + mapdraw2-disk.obj: src/disk.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mapdraw2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapdraw2-disk.obj -MD -MP -MF "$(DEPDIR)/mapdraw2-disk.Tpo" -c -o mapdraw2-disk.obj `if test -f 'src/disk.c'; then $(CYGPATH_W) 'src/disk.c'; else $(CYGPATH_W) '$(srcdir)/src/disk.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/mapdraw2-disk.Tpo" "$(DEPDIR)/mapdraw2-disk.Po"; else rm -f "$(DEPDIR)/mapdraw2-disk.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mapdraw2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapdraw2-disk.obj -MD -MP -MF $(DEPDIR)/mapdraw2-disk.Tpo -c -o mapdraw2-disk.obj `if test -f 'src/disk.c'; then $(CYGPATH_W) 'src/disk.c'; else $(CYGPATH_W) '$(srcdir)/src/disk.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/mapdraw2-disk.Tpo $(DEPDIR)/mapdraw2-disk.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/disk.c' object='mapdraw2-disk.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(mapdraw2_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mapdraw2-disk.obj `if test -f 'src/disk.c'; then $(CYGPATH_W) 'src/disk.c'; else $(CYGPATH_W) '$(srcdir)/src/disk.c'; fi` + + mapdump.o: maps/mapdump.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapdump.o -MD -MP -MF "$(DEPDIR)/mapdump.Tpo" -c -o mapdump.o `test -f 'maps/mapdump.c' || echo '$(srcdir)/'`maps/mapdump.c; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/mapdump.Tpo" "$(DEPDIR)/mapdump.Po"; else rm -f "$(DEPDIR)/mapdump.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapdump.o -MD -MP -MF $(DEPDIR)/mapdump.Tpo -c -o mapdump.o `test -f 'maps/mapdump.c' || echo '$(srcdir)/'`maps/mapdump.c ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/mapdump.Tpo $(DEPDIR)/mapdump.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maps/mapdump.c' object='mapdump.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mapdump.o `test -f 'maps/mapdump.c' || echo '$(srcdir)/'`maps/mapdump.c + + mapdump.obj: maps/mapdump.c +-@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapdump.obj -MD -MP -MF "$(DEPDIR)/mapdump.Tpo" -c -o mapdump.obj `if test -f 'maps/mapdump.c'; then $(CYGPATH_W) 'maps/mapdump.c'; else $(CYGPATH_W) '$(srcdir)/maps/mapdump.c'; fi`; \ +-@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/mapdump.Tpo" "$(DEPDIR)/mapdump.Po"; else rm -f "$(DEPDIR)/mapdump.Tpo"; exit 1; fi ++@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mapdump.obj -MD -MP -MF $(DEPDIR)/mapdump.Tpo -c -o mapdump.obj `if test -f 'maps/mapdump.c'; then $(CYGPATH_W) 'maps/mapdump.c'; else $(CYGPATH_W) '$(srcdir)/maps/mapdump.c'; fi` ++@am__fastdepCC_TRUE@ mv -f $(DEPDIR)/mapdump.Tpo $(DEPDIR)/mapdump.Po + @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='maps/mapdump.c' object='mapdump.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mapdump.obj `if test -f 'maps/mapdump.c'; then $(CYGPATH_W) 'maps/mapdump.c'; else $(CYGPATH_W) '$(srcdir)/maps/mapdump.c'; fi` + + .m.o: +-@am__fastdepOBJC_TRUE@ if $(OBJCCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +-@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi ++@am__fastdepOBJC_TRUE@ $(OBJCCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< ++@am__fastdepOBJC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po + @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepOBJC_FALSE@ $(OBJCCOMPILE) -c -o $@ $< + + .m.obj: +-@am__fastdepOBJC_TRUE@ if $(OBJCCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +-@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi ++@am__fastdepOBJC_TRUE@ $(OBJCCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` ++@am__fastdepOBJC_TRUE@ mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po + @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepOBJC_FALSE@ $(OBJCCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + + osx.o: src/osx.m +-@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT osx.o -MD -MP -MF "$(DEPDIR)/osx.Tpo" -c -o osx.o `test -f 'src/osx.m' || echo '$(srcdir)/'`src/osx.m; \ +-@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/osx.Tpo" "$(DEPDIR)/osx.Po"; else rm -f "$(DEPDIR)/osx.Tpo"; exit 1; fi ++@am__fastdepOBJC_TRUE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT osx.o -MD -MP -MF $(DEPDIR)/osx.Tpo -c -o osx.o `test -f 'src/osx.m' || echo '$(srcdir)/'`src/osx.m ++@am__fastdepOBJC_TRUE@ mv -f $(DEPDIR)/osx.Tpo $(DEPDIR)/osx.Po + @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='src/osx.m' object='osx.o' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o osx.o `test -f 'src/osx.m' || echo '$(srcdir)/'`src/osx.m + + osx.obj: src/osx.m +-@am__fastdepOBJC_TRUE@ if $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT osx.obj -MD -MP -MF "$(DEPDIR)/osx.Tpo" -c -o osx.obj `if test -f 'src/osx.m'; then $(CYGPATH_W) 'src/osx.m'; else $(CYGPATH_W) '$(srcdir)/src/osx.m'; fi`; \ +-@am__fastdepOBJC_TRUE@ then mv -f "$(DEPDIR)/osx.Tpo" "$(DEPDIR)/osx.Po"; else rm -f "$(DEPDIR)/osx.Tpo"; exit 1; fi ++@am__fastdepOBJC_TRUE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -MT osx.obj -MD -MP -MF $(DEPDIR)/osx.Tpo -c -o osx.obj `if test -f 'src/osx.m'; then $(CYGPATH_W) 'src/osx.m'; else $(CYGPATH_W) '$(srcdir)/src/osx.m'; fi` ++@am__fastdepOBJC_TRUE@ mv -f $(DEPDIR)/osx.Tpo $(DEPDIR)/osx.Po + @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ source='src/osx.m' object='osx.obj' libtool=no @AMDEPBACKSLASH@ + @AMDEP_TRUE@@am__fastdepOBJC_FALSE@ DEPDIR=$(DEPDIR) $(OBJCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ + @am__fastdepOBJC_FALSE@ $(OBJC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_OBJCFLAGS) $(OBJCFLAGS) -c -o osx.obj `if test -f 'src/osx.m'; then $(CYGPATH_W) 'src/osx.m'; else $(CYGPATH_W) '$(srcdir)/src/osx.m'; fi` +-uninstall-info-am: + install-man6: $(man6_MANS) $(man_MANS) + @$(NORMAL_INSTALL) +- test -z "$(man6dir)" || $(mkdir_p) "$(DESTDIR)$(man6dir)" ++ test -z "$(man6dir)" || $(MKDIR_P) "$(DESTDIR)$(man6dir)" + @list='$(man6_MANS) $(dist_man6_MANS) $(nodist_man6_MANS)'; \ + l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \ + for i in $$l2; do \ +@@ -1182,7 +1181,7 @@ + done + install-cscriptsDATA: $(cscripts_DATA) + @$(NORMAL_INSTALL) +- test -z "$(cscriptsdir)" || $(mkdir_p) "$(DESTDIR)$(cscriptsdir)" ++ test -z "$(cscriptsdir)" || $(MKDIR_P) "$(DESTDIR)$(cscriptsdir)" + @list='$(cscripts_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ +@@ -1199,7 +1198,7 @@ + done + install-dist_gfxDATA: $(dist_gfx_DATA) + @$(NORMAL_INSTALL) +- test -z "$(gfxdir)" || $(mkdir_p) "$(DESTDIR)$(gfxdir)" ++ test -z "$(gfxdir)" || $(MKDIR_P) "$(DESTDIR)$(gfxdir)" + @list='$(dist_gfx_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ +@@ -1216,7 +1215,7 @@ + done + install-dist_mapDATA: $(dist_map_DATA) + @$(NORMAL_INSTALL) +- test -z "$(mapdir)" || $(mkdir_p) "$(DESTDIR)$(mapdir)" ++ test -z "$(mapdir)" || $(MKDIR_P) "$(DESTDIR)$(mapdir)" + @list='$(dist_map_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ +@@ -1233,7 +1232,7 @@ + done + install-dist_musicDATA: $(dist_music_DATA) + @$(NORMAL_INSTALL) +- test -z "$(musicdir)" || $(mkdir_p) "$(DESTDIR)$(musicdir)" ++ test -z "$(musicdir)" || $(MKDIR_P) "$(DESTDIR)$(musicdir)" + @list='$(dist_music_DATA)'; for p in $$list; do \ + if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ + f=$(am__strip_dir) \ +@@ -1280,8 +1279,7 @@ + $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ + fi; test -z "$$fail" + +-mostlyclean-recursive clean-recursive distclean-recursive \ +-maintainer-clean-recursive: ++$(RECURSIVE_CLEAN_TARGETS): + @failcom='exit 1'; \ + for f in x $$MAKEFLAGS; do \ + case $$f in \ +@@ -1383,24 +1381,22 @@ + + distdir: $(DISTFILES) + $(am__remove_distdir) +- mkdir $(distdir) +- $(mkdir_p) $(distdir)/Mac $(distdir)/data $(distdir)/debian $(distdir)/maps $(distdir)/music $(distdir)/scripts +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ test -d $(distdir) || mkdir $(distdir) ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkdir_p) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ +@@ -1414,7 +1410,7 @@ + list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ + if test "$$subdir" = .; then :; else \ + test -d "$(distdir)/$$subdir" \ +- || $(mkdir_p) "$(distdir)/$$subdir" \ ++ || $(MKDIR_P) "$(distdir)/$$subdir" \ + || exit 1; \ + distdir=`$(am__cd) $(distdir) && pwd`; \ + top_distdir=`$(am__cd) $(top_distdir) && pwd`; \ +@@ -1422,6 +1418,8 @@ + $(MAKE) $(AM_MAKEFLAGS) \ + top_distdir="$$top_distdir" \ + distdir="$$distdir/$$subdir" \ ++ am__remove_distdir=: \ ++ am__skip_length_check=: \ + distdir) \ + || exit 1; \ + fi; \ +@@ -1429,7 +1427,7 @@ + -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 {} {} \; \ ++ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ + || chmod -R a+r $(distdir) + dist-gzip: distdir + tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz +@@ -1504,7 +1502,7 @@ + $(am__remove_distdir) + @(echo "$(distdir) archives ready for distribution: "; \ + list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ +- sed -e '1{h;s/./=/g;p;x;}' -e '$${p;x;}' ++ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' + distuninstallcheck: + @cd $(distuninstallcheck_dir) \ + && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ +@@ -1530,7 +1528,7 @@ + installdirs: installdirs-recursive + installdirs-am: + for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(man6dir)" "$(DESTDIR)$(cscriptsdir)" "$(DESTDIR)$(gfxdir)" "$(DESTDIR)$(mapdir)" "$(DESTDIR)$(musicdir)"; do \ +- test -z "$$dir" || $(mkdir_p) "$$dir"; \ ++ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ + done + install: install-recursive + install-exec: install-exec-recursive +@@ -1581,12 +1579,20 @@ + install-data-am: install-cscriptsDATA install-dist_gfxDATA \ + install-dist_mapDATA install-dist_musicDATA install-man + ++install-dvi: install-dvi-recursive ++ + install-exec-am: install-binPROGRAMS + ++install-html: install-html-recursive ++ + install-info: install-info-recursive + + install-man: install-man6 + ++install-pdf: install-pdf-recursive ++ ++install-ps: install-ps-recursive ++ + installcheck-am: + + maintainer-clean: maintainer-clean-recursive +@@ -1610,32 +1616,33 @@ + + uninstall-am: uninstall-binPROGRAMS uninstall-cscriptsDATA \ + uninstall-dist_gfxDATA uninstall-dist_mapDATA \ +- uninstall-dist_musicDATA uninstall-info-am uninstall-man +- +-uninstall-info: uninstall-info-recursive ++ uninstall-dist_musicDATA uninstall-man + + uninstall-man: uninstall-man6 + +-.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am all-local \ +- am--refresh check check-am clean clean-binPROGRAMS \ +- clean-generic clean-recursive ctags ctags-recursive dist \ ++.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \ ++ install-strip ++ ++.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ ++ all all-am all-local am--refresh check check-am clean \ ++ clean-binPROGRAMS clean-generic ctags ctags-recursive dist \ + dist-all dist-bzip2 dist-gzip dist-shar dist-tarZ dist-zip \ + distcheck distclean distclean-compile distclean-generic \ +- distclean-hdr distclean-recursive distclean-tags \ +- distcleancheck distdir distuninstallcheck dvi dvi-am html \ +- html-am info info-am install install-am install-binPROGRAMS \ +- install-cscriptsDATA install-data install-data-am \ +- install-dist_gfxDATA install-dist_mapDATA \ +- install-dist_musicDATA install-exec install-exec-am \ +- install-info install-info-am install-man install-man6 \ +- install-strip installcheck installcheck-am installdirs \ +- installdirs-am maintainer-clean maintainer-clean-generic \ +- maintainer-clean-recursive mostlyclean mostlyclean-compile \ +- mostlyclean-generic mostlyclean-recursive pdf pdf-am ps ps-am \ +- tags tags-recursive uninstall uninstall-am \ +- uninstall-binPROGRAMS uninstall-cscriptsDATA \ +- uninstall-dist_gfxDATA uninstall-dist_mapDATA \ +- uninstall-dist_musicDATA uninstall-info-am uninstall-man \ ++ distclean-hdr distclean-tags distcleancheck distdir \ ++ distuninstallcheck dvi dvi-am html html-am info info-am \ ++ install install-am install-binPROGRAMS install-cscriptsDATA \ ++ install-data install-data-am install-dist_gfxDATA \ ++ install-dist_mapDATA install-dist_musicDATA install-dvi \ ++ install-dvi-am install-exec install-exec-am install-html \ ++ install-html-am install-info install-info-am install-man \ ++ install-man6 install-pdf install-pdf-am install-ps \ ++ install-ps-am install-strip installcheck installcheck-am \ ++ installdirs installdirs-am maintainer-clean \ ++ maintainer-clean-generic mostlyclean mostlyclean-compile \ ++ mostlyclean-generic pdf pdf-am ps ps-am tags tags-recursive \ ++ uninstall uninstall-am uninstall-binPROGRAMS \ ++ uninstall-cscriptsDATA uninstall-dist_gfxDATA \ ++ uninstall-dist_mapDATA uninstall-dist_musicDATA uninstall-man \ + uninstall-man6 + + KQ.app: kq +Index: kq-0.99.cvs20060528/scripts/Makefile.in +=================================================================== +--- kq-0.99.cvs20060528.orig/scripts/Makefile.in 2006-05-28 00:14:30.000000000 +0200 ++++ kq-0.99.cvs20060528/scripts/Makefile.in 2007-02-09 15:15:32.000000000 +0100 +@@ -1,8 +1,8 @@ +-# Makefile.in generated by automake 1.9.6 from Makefile.am. ++# Makefile.in generated by automake 1.10 from Makefile.am. + # @configure_input@ + + # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +-# 2003, 2004, 2005 Free Software Foundation, Inc. ++# 2003, 2004, 2005, 2006 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. +@@ -19,15 +19,11 @@ + # two-step process allows luac to give better error messages, though + # the line numbers will refer to the versions in pscripts rather than + # the original scripts +-srcdir = @srcdir@ +-top_srcdir = @top_srcdir@ + VPATH = @srcdir@ + pkgdatadir = $(datadir)/@PACKAGE@ + pkglibdir = $(libdir)/@PACKAGE@ + pkgincludedir = $(includedir)/@PACKAGE@ +-top_builddir = .. + am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +-INSTALL = @INSTALL@ + install_sh_DATA = $(install_sh) -c -m 644 + install_sh_PROGRAM = $(install_sh) -c + install_sh_SCRIPT = $(install_sh) -c +@@ -56,15 +52,11 @@ + DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) + ACLOCAL = @ACLOCAL@ + ALLEGRO_LIBS = @ALLEGRO_LIBS@ +-AMDEP_FALSE = @AMDEP_FALSE@ +-AMDEP_TRUE = @AMDEP_TRUE@ + AMTAR = @AMTAR@ + AUTOCONF = @AUTOCONF@ + AUTOHEADER = @AUTOHEADER@ + AUTOMAKE = @AUTOMAKE@ + AWK = @AWK@ +-BUNDLE_FALSE = @BUNDLE_FALSE@ +-BUNDLE_TRUE = @BUNDLE_TRUE@ + CC = @CC@ + CCDEPMODE = @CCDEPMODE@ + CFLAGS = @CFLAGS@ +@@ -82,6 +74,7 @@ + GTK_CFLAGS = @GTK_CFLAGS@ + GTK_LIBS = @GTK_LIBS@ + HAVE_ALLEGRO = @HAVE_ALLEGRO@ ++INSTALL = @INSTALL@ + INSTALL_DATA = @INSTALL_DATA@ + INSTALL_PROGRAM = @INSTALL_PROGRAM@ + INSTALL_SCRIPT = @INSTALL_SCRIPT@ +@@ -92,6 +85,7 @@ + LTLIBOBJS = @LTLIBOBJS@ + MAKEINFO = @MAKEINFO@ + MAPDRAW2 = @MAPDRAW2@ ++MKDIR_P = @MKDIR_P@ + OBJC = @OBJC@ + OBJCDEPMODE = @OBJCDEPMODE@ + OBJCFLAGS = @OBJCFLAGS@ +@@ -109,11 +103,11 @@ + STRIP = @STRIP@ + VERSION = @VERSION@ + WARNING_CFLAGS = @WARNING_CFLAGS@ ++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@ +-am__fastdepCC_FALSE = @am__fastdepCC_FALSE@ +-am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ +-am__fastdepOBJC_FALSE = @am__fastdepOBJC_FALSE@ +-am__fastdepOBJC_TRUE = @am__fastdepOBJC_TRUE@ + am__include = @am__include@ + am__leading_dot = @am__leading_dot@ + am__quote = @am__quote@ +@@ -125,6 +119,7 @@ + build_cpu = @build_cpu@ + build_os = @build_os@ + build_vendor = @build_vendor@ ++builddir = @builddir@ + datadir = @datadir@ + datarootdir = @datarootdir@ + docdir = @docdir@ +@@ -156,8 +151,11 @@ + psdir = @psdir@ + sbindir = @sbindir@ + sharedstatedir = @sharedstatedir@ ++srcdir = @srcdir@ + sysconfdir = @sysconfdir@ + target_alias = @target_alias@ ++top_builddir = @top_builddir@ ++top_srcdir = @top_srcdir@ + LUAS := $(wildcard $(srcdir)/*.lua) + LOBS := $(notdir $(LUAS:.lua=.lob)) + SUFFIXES = .lua .lob +@@ -195,7 +193,6 @@ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + $(ACLOCAL_M4): $(am__aclocal_m4_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh +-uninstall-info-am: + tags: TAGS + TAGS: + +@@ -204,22 +201,21 @@ + + + distdir: $(DISTFILES) +- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ +- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ +- list='$(DISTFILES)'; for file in $$list; do \ +- case $$file in \ +- $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \ +- $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \ +- esac; \ ++ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ ++ list='$(DISTFILES)'; \ ++ dist_files=`for file in $$list; do echo $$file; done | \ ++ sed -e "s|^$$srcdirstrip/||;t" \ ++ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ ++ case $$dist_files in \ ++ */*) $(MKDIR_P) `echo "$$dist_files" | \ ++ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ ++ sort -u` ;; \ ++ esac; \ ++ for file in $$dist_files; do \ + if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ +- dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \ +- if test "$$dir" != "$$file" && test "$$dir" != "."; then \ +- dir="/$$dir"; \ +- $(mkdir_p) "$(distdir)$$dir"; \ +- else \ +- dir=''; \ +- fi; \ + if test -d $$d/$$file; then \ ++ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ +@@ -278,12 +274,20 @@ + + install-data-am: + ++install-dvi: install-dvi-am ++ + install-exec-am: + ++install-html: install-html-am ++ + install-info: install-info-am + + install-man: + ++install-pdf: install-pdf-am ++ ++install-ps: install-ps-am ++ + installcheck-am: + + maintainer-clean: maintainer-clean-am +@@ -302,22 +306,25 @@ + + ps-am: + +-uninstall-am: uninstall-info-am ++uninstall-am: ++ ++.MAKE: install-am install-strip + + .PHONY: all all-am check check-am clean clean-generic distclean \ + distclean-generic distdir dvi dvi-am html html-am info info-am \ +- install install-am install-data install-data-am install-exec \ +- install-exec-am install-info install-info-am install-man \ ++ install install-am install-data install-data-am install-dvi \ ++ install-dvi-am install-exec install-exec-am install-html \ ++ install-html-am install-info install-info-am install-man \ ++ install-pdf install-pdf-am install-ps install-ps-am \ + install-strip installcheck installcheck-am installdirs \ + maintainer-clean maintainer-clean-generic mostlyclean \ +- mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am \ +- uninstall-info-am ++ mostlyclean-generic pdf pdf-am ps ps-am uninstall uninstall-am + + + all-am: Makefile confirm-dir $(LOBS) + + %.lob: pscripts/%.lua $(INCLUDES) +- luac -o $@ $< ++ luac50 -o $@ $< + + pscripts/%.lua: $(srcdir)/%.lua + $(CPP) $(foreach X, $(INCLUDES), -include $(X)) $< > $@ +Index: kq-0.99.cvs20060528/aclocal.m4 +=================================================================== +--- kq-0.99.cvs20060528.orig/aclocal.m4 2007-02-09 15:14:35.000000000 +0100 ++++ kq-0.99.cvs20060528/aclocal.m4 2007-02-09 15:15:26.000000000 +0100 +@@ -1,7 +1,7 @@ +-# generated automatically by aclocal 1.9.6 -*- Autoconf -*- ++# generated automatically by aclocal 1.10 -*- Autoconf -*- + + # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, +-# 2005 Free Software Foundation, Inc. ++# 2005, 2006 Free Software Foundation, Inc. + # This file 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. +@@ -11,7 +11,12 @@ + # even the implied warranty of MERCHANTABILITY or FITNESS FOR A + # PARTICULAR PURPOSE. + +-# Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc. ++m4_if(m4_PACKAGE_VERSION, [2.61],, ++[m4_fatal([this file was generated for autoconf 2.61. ++You have another version of autoconf. If you want to use that, ++you should regenerate the build system entirely.], [63])]) ++ ++# Copyright (C) 2002, 2003, 2005, 2006 Free Software Foundation, Inc. + # + # This file is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, +@@ -21,14 +26,29 @@ + # ---------------------------- + # Automake X.Y traces this macro to ensure aclocal.m4 has been + # generated from the m4 files accompanying Automake X.Y. +-AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version="1.9"]) ++# (This private macro should not be called outside this file.) ++AC_DEFUN([AM_AUTOMAKE_VERSION], ++[am__api_version='1.10' ++dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to ++dnl require some minimum version. Point them to the right macro. ++m4_if([$1], [1.10], [], ++ [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ++]) ++ ++# _AM_AUTOCONF_VERSION(VERSION) ++# ----------------------------- ++# aclocal traces this macro to find the Autoconf version. ++# This is a private macro too. Using m4_define simplifies ++# the logic in aclocal, which can simply ignore this definition. ++m4_define([_AM_AUTOCONF_VERSION], []) + + # AM_SET_CURRENT_AUTOMAKE_VERSION + # ------------------------------- +-# Call AM_AUTOMAKE_VERSION so it can be traced. ++# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. + # This function is AC_REQUIREd by AC_INIT_AUTOMAKE. + AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], +- [AM_AUTOMAKE_VERSION([1.9.6])]) ++[AM_AUTOMAKE_VERSION([1.10])dnl ++_AM_AUTOCONF_VERSION(m4_PACKAGE_VERSION)]) + + # AM_AUX_DIR_EXPAND -*- Autoconf -*- + +@@ -85,14 +105,14 @@ + + # AM_CONDITIONAL -*- Autoconf -*- + +-# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005 ++# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006 + # Free Software Foundation, Inc. + # + # This file 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. + +-# serial 7 ++# serial 8 + + # AM_CONDITIONAL(NAME, SHELL-CONDITION) + # ------------------------------------- +@@ -101,8 +121,10 @@ + [AC_PREREQ(2.52)dnl + ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], + [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl +-AC_SUBST([$1_TRUE]) +-AC_SUBST([$1_FALSE]) ++AC_SUBST([$1_TRUE])dnl ++AC_SUBST([$1_FALSE])dnl ++_AM_SUBST_NOTMAKE([$1_TRUE])dnl ++_AM_SUBST_NOTMAKE([$1_FALSE])dnl + if $2; then + $1_TRUE= + $1_FALSE='#' +@@ -116,15 +138,14 @@ + Usually this means the macro was only invoked conditionally.]]) + fi])]) + +- +-# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005 ++# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 + # Free Software Foundation, Inc. + # + # This file 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. + +-# serial 8 ++# serial 9 + + # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be + # written in clear, in which case automake, when reading aclocal.m4, +@@ -152,6 +173,7 @@ + ifelse([$1], CC, [depcc="$CC" am_compiler_list=], + [$1], CXX, [depcc="$CXX" am_compiler_list=], + [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], ++ [$1], UPC, [depcc="$UPC" am_compiler_list=], + [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], + [depcc="$$1" am_compiler_list=]) + +@@ -217,6 +239,7 @@ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ + >/dev/null 2>conftest.err && ++ grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then +@@ -269,7 +292,8 @@ + AMDEPBACKSLASH='\' + fi + AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) +-AC_SUBST([AMDEPBACKSLASH]) ++AC_SUBST([AMDEPBACKSLASH])dnl ++_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl + ]) + + # Generate code to set up dependency tracking. -*- Autoconf -*- +@@ -294,8 +318,9 @@ + # some people rename them; so instead we look at the file content. + # Grep'ing the first line is not enough: some people post-process + # each Makefile.in and add a new line on top of each file to say so. +- # So let's grep whole file. +- if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then ++ # Grep'ing the whole file is not good either: AIX grep has a line ++ # limit of 2048, but all sed's we know have understand at least 4000. ++ if sed 10q "$mf" | grep '^#.*generated by automake' > /dev/null 2>&1; then + dirpart=`AS_DIRNAME("$mf")` + else + continue +@@ -342,8 +367,8 @@ + + # Do all the work for Automake. -*- Autoconf -*- + +-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 +-# Free Software Foundation, Inc. ++# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, ++# 2005, 2006 Free Software Foundation, Inc. + # + # This file is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, +@@ -366,16 +391,20 @@ + # arguments mandatory, and then we can depend on a new Autoconf + # release and drop the old call support. + AC_DEFUN([AM_INIT_AUTOMAKE], +-[AC_PREREQ([2.58])dnl ++[AC_PREREQ([2.60])dnl + dnl Autoconf wants to disallow AM_ names. We explicitly allow + dnl the ones we care about. + m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl + AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl + AC_REQUIRE([AC_PROG_INSTALL])dnl +-# test to see if srcdir already configured +-if test "`cd $srcdir && pwd`" != "`pwd`" && +- test -f $srcdir/config.status; then +- AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) ++if test "`cd $srcdir && pwd`" != "`pwd`"; then ++ # Use -I$(srcdir) only when $(srcdir) != ., so that make's output ++ # is not polluted with repeated "-I." ++ AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl ++ # test to see if srcdir already configured ++ if test -f $srcdir/config.status; then ++ AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) ++ fi + fi + + # test whether we have cygpath +@@ -395,6 +424,9 @@ + AC_SUBST([PACKAGE], [$1])dnl + AC_SUBST([VERSION], [$2])], + [_AM_SET_OPTIONS([$1])dnl ++dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. ++m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, ++ [m4_fatal([AC_INIT should be called with package and version arguments])])dnl + AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl + AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl + +@@ -430,6 +462,10 @@ + [_AM_DEPENDENCIES(CXX)], + [define([AC_PROG_CXX], + defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl ++AC_PROVIDE_IFELSE([AC_PROG_OBJC], ++ [_AM_DEPENDENCIES(OBJC)], ++ [define([AC_PROG_OBJC], ++ defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl + ]) + ]) + +@@ -465,7 +501,7 @@ + # Define $install_sh. + AC_DEFUN([AM_PROG_INSTALL_SH], + [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl +-install_sh=${install_sh-"$am_aux_dir/install-sh"} ++install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"} + AC_SUBST(install_sh)]) + + # Copyright (C) 2003, 2005 Free Software Foundation, Inc. +@@ -543,14 +579,14 @@ + + # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- + +-# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2005 ++# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005 + # Free Software Foundation, Inc. + # + # This file 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. + +-# serial 4 ++# serial 5 + + # AM_MISSING_PROG(NAME, PROGRAM) + # ------------------------------ +@@ -566,6 +602,7 @@ + # If it does, set am_missing_run to use it, otherwise, to nothing. + AC_DEFUN([AM_MISSING_HAS_RUN], + [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl ++AC_REQUIRE_AUX_FILE([missing])dnl + test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing" + # Use eval to expand $SHELL + if eval "$MISSING --run true"; then +@@ -576,7 +613,7 @@ + fi + ]) + +-# Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc. ++# Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. + # + # This file is free software; the Free Software Foundation + # gives unlimited permission to copy and/or distribute it, +@@ -584,60 +621,23 @@ + + # AM_PROG_MKDIR_P + # --------------- +-# Check whether `mkdir -p' is supported, fallback to mkinstalldirs otherwise. +-# +-# Automake 1.8 used `mkdir -m 0755 -p --' to ensure that directories +-# created by `make install' are always world readable, even if the +-# installer happens to have an overly restrictive umask (e.g. 077). +-# This was a mistake. There are at least two reasons why we must not +-# use `-m 0755': +-# - it causes special bits like SGID to be ignored, +-# - it may be too restrictive (some setups expect 775 directories). +-# +-# Do not use -m 0755 and let people choose whatever they expect by +-# setting umask. +-# +-# We cannot accept any implementation of `mkdir' that recognizes `-p'. +-# Some implementations (such as Solaris 8's) are not thread-safe: if a +-# parallel make tries to run `mkdir -p a/b' and `mkdir -p a/c' +-# concurrently, both version can detect that a/ is missing, but only +-# one can create it and the other will error out. Consequently we +-# restrict ourselves to GNU make (using the --version option ensures +-# this.) ++# Check for `mkdir -p'. + AC_DEFUN([AM_PROG_MKDIR_P], +-[if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then +- # We used to keeping the `.' as first argument, in order to +- # allow $(mkdir_p) to be used without argument. As in +- # $(mkdir_p) $(somedir) +- # where $(somedir) is conditionally defined. However this is wrong +- # for two reasons: +- # 1. if the package is installed by a user who cannot write `.' +- # make install will fail, +- # 2. the above comment should most certainly read +- # $(mkdir_p) $(DESTDIR)$(somedir) +- # so it does not work when $(somedir) is undefined and +- # $(DESTDIR) is not. +- # To support the latter case, we have to write +- # test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir), +- # so the `.' trick is pointless. +- mkdir_p='mkdir -p --' +-else +- # On NextStep and OpenStep, the `mkdir' command does not +- # recognize any option. It will interpret all options as +- # directories to create, and then abort because `.' already +- # exists. +- for d in ./-p ./--version; +- do +- test -d $d && rmdir $d +- done +- # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists. +- if test -f "$ac_aux_dir/mkinstalldirs"; then +- mkdir_p='$(mkinstalldirs)' +- else +- mkdir_p='$(install_sh) -d' +- fi +-fi +-AC_SUBST([mkdir_p])]) ++[AC_PREREQ([2.60])dnl ++AC_REQUIRE([AC_PROG_MKDIR_P])dnl ++dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, ++dnl while keeping a definition of mkdir_p for backward compatibility. ++dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. ++dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of ++dnl Makefile.ins that do not define MKDIR_P, so we do our own ++dnl adjustment using top_builddir (which is defined more often than ++dnl MKDIR_P). ++AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl ++case $mkdir_p in ++ [[\\/$]]* | ?:[[\\/]]*) ;; ++ */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; ++esac ++]) + + # Helper functions for option handling. -*- Autoconf -*- + +@@ -749,9 +749,21 @@ + if test "$cross_compiling" != no; then + AC_CHECK_TOOL([STRIP], [strip], :) + fi +-INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s" ++INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" + AC_SUBST([INSTALL_STRIP_PROGRAM])]) + ++# Copyright (C) 2006 Free Software Foundation, Inc. ++# ++# This file 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. ++ ++# _AM_SUBST_NOTMAKE(VARIABLE) ++# --------------------------- ++# Prevent Automake from outputing VARIABLE = @VARIABLE@ in Makefile.in. ++# This macro is traced by Automake. ++AC_DEFUN([_AM_SUBST_NOTMAKE]) ++ + # Check how to create a tarball. -*- Autoconf -*- + + # Copyright (C) 2004, 2005 Free Software Foundation, Inc. +Index: kq-0.99.cvs20060528/compile +=================================================================== +--- kq-0.99.cvs20060528.orig/compile 2007-02-09 15:14:36.000000000 +0100 ++++ /dev/null 1970-01-01 00:00:00.000000000 +0000 +@@ -1,142 +0,0 @@ +-#! /bin/sh +-# Wrapper for compilers which do not understand `-c -o'. +- +-scriptversion=2005-05-14.22 +- +-# Copyright (C) 1999, 2000, 2003, 2004, 2005 Free Software Foundation, Inc. +-# Written by Tom Tromey . +-# +-# This program is free software; you can redistribute it and/or modify +-# it under the terms of the GNU General Public License as published by +-# the Free Software Foundation; either version 2, or (at your option) +-# any later version. +-# +-# 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. See the +-# GNU General Public License for more details. +-# +-# You should have received a copy of the GNU General Public License +-# along with this program; if not, write to the Free Software +-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +- +-# As a special exception to the GNU General Public License, if you +-# distribute this file as part of a program that contains a +-# configuration script generated by Autoconf, you may include it under +-# the same distribution terms that you use for the rest of that program. +- +-# This file is maintained in Automake, please report +-# bugs to or send patches to +-# . +- +-case $1 in +- '') +- echo "$0: No command. Try \`$0 --help' for more information." 1>&2 +- exit 1; +- ;; +- -h | --h*) +- cat <<\EOF +-Usage: compile [--help] [--version] PROGRAM [ARGS] +- +-Wrapper for compilers which do not understand `-c -o'. +-Remove `-o dest.o' from ARGS, run PROGRAM with the remaining +-arguments, and rename the output as expected. +- +-If you are trying to build a whole package this is not the +-right script to run: please start by reading the file `INSTALL'. +- +-Report bugs to . +-EOF +- exit $? +- ;; +- -v | --v*) +- echo "compile $scriptversion" +- exit $? +- ;; +-esac +- +-ofile= +-cfile= +-eat= +- +-for arg +-do +- if test -n "$eat"; then +- eat= +- else +- case $1 in +- -o) +- # configure might choose to run compile as `compile cc -o foo foo.c'. +- # So we strip `-o arg' only if arg is an object. +- eat=1 +- case $2 in +- *.o | *.obj) +- ofile=$2 +- ;; +- *) +- set x "$@" -o "$2" +- shift +- ;; +- esac +- ;; +- *.c) +- cfile=$1 +- set x "$@" "$1" +- shift +- ;; +- *) +- set x "$@" "$1" +- shift +- ;; +- esac +- fi +- shift +-done +- +-if test -z "$ofile" || test -z "$cfile"; then +- # If no `-o' option was seen then we might have been invoked from a +- # pattern rule where we don't need one. That is ok -- this is a +- # normal compilation that the losing compiler can handle. If no +- # `.c' file was seen then we are probably linking. That is also +- # ok. +- exec "$@" +-fi +- +-# Name of file we expect compiler to create. +-cofile=`echo "$cfile" | sed -e 's|^.*/||' -e 's/\.c$/.o/'` +- +-# Create the lock directory. +-# Note: use `[/.-]' here to ensure that we don't use the same name +-# that we are using for the .o file. Also, base the name on the expected +-# object file name, since that is what matters with a parallel build. +-lockdir=`echo "$cofile" | sed -e 's|[/.-]|_|g'`.d +-while true; do +- if mkdir "$lockdir" >/dev/null 2>&1; then +- break +- fi +- sleep 1 +-done +-# FIXME: race condition here if user kills between mkdir and trap. +-trap "rmdir '$lockdir'; exit 1" 1 2 15 +- +-# Run the compile. +-"$@" +-ret=$? +- +-if test -f "$cofile"; then +- mv "$cofile" "$ofile" +-elif test -f "${cofile}bj"; then +- mv "${cofile}bj" "$ofile" +-fi +- +-rmdir "$lockdir" +-exit $ret +- +-# Local Variables: +-# mode: shell-script +-# sh-indentation: 2 +-# eval: (add-hook 'write-file-hooks 'time-stamp) +-# time-stamp-start: "scriptversion=" +-# time-stamp-format: "%:y-%02m-%02d.%02H" +-# time-stamp-end: "$" +-# End: +Index: kq-0.99.cvs20060528/config.guess +=================================================================== +--- kq-0.99.cvs20060528.orig/config.guess 2007-02-09 15:14:36.000000000 +0100 ++++ kq-0.99.cvs20060528/config.guess 2007-02-09 15:15:31.000000000 +0100 +@@ -1,9 +1,10 @@ + #! /bin/sh + # Attempt to guess a canonical system name. + # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, +-# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. ++# 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, ++# Inc. + +-timestamp='2006-02-23' ++timestamp='2006-07-02' + + # This file is free software; you can redistribute it and/or modify it + # under the terms of the GNU General Public License as published by +@@ -210,7 +211,7 @@ + echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} + exit ;; + macppc:MirBSD:*:*) +- echo powerppc-unknown-mirbsd${UNAME_RELEASE} ++ echo powerpc-unknown-mirbsd${UNAME_RELEASE} + exit ;; + *:MirBSD:*:*) + echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} +@@ -770,6 +771,8 @@ + case ${UNAME_MACHINE} in + pc98) + echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; ++ amd64) ++ echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + *) + echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; + esac +@@ -780,9 +783,6 @@ + i*:MINGW*:*) + echo ${UNAME_MACHINE}-pc-mingw32 + exit ;; +- i*:MSYS_NT-*:*:*) +- echo ${UNAME_MACHINE}-pc-mingw32 +- exit ;; + i*:windows32*:*) + # uname -m includes "-pc" on this system. + echo ${UNAME_MACHINE}-mingw32 +@@ -790,10 +790,10 @@ + i*:PW*:*) + echo ${UNAME_MACHINE}-pc-pw32 + exit ;; +- x86:Interix*:[345]*) ++ x86:Interix*:[3456]*) + echo i586-pc-interix${UNAME_RELEASE} + exit ;; +- EM64T:Interix*:[345]*) ++ EM64T:Interix*:[3456]*) + echo x86_64-unknown-interix${UNAME_RELEASE} + exit ;; + [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) +@@ -831,6 +831,9 @@ + arm*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit ;; ++ avr32*:Linux:*:*) ++ echo ${UNAME_MACHINE}-unknown-linux-gnu ++ exit ;; + cris:Linux:*:*) + echo cris-axis-linux-gnu + exit ;; +@@ -989,7 +992,7 @@ + LIBC=gnulibc1 + # endif + #else +- #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__sun) ++ #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) + LIBC=gnu + #else + LIBC=gnuaout +Index: kq-0.99.cvs20060528/config.sub +=================================================================== +--- kq-0.99.cvs20060528.orig/config.sub 2007-02-09 15:14:36.000000000 +0100 ++++ kq-0.99.cvs20060528/config.sub 2007-02-09 15:15:31.000000000 +0100 +@@ -1,9 +1,10 @@ + #! /bin/sh + # Configuration validation subroutine script. + # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, +-# 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. ++# 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, ++# Inc. + +-timestamp='2006-02-23' ++timestamp='2006-09-20' + + # This file is (in principle) common to ALL GNU software. + # The presence of a machine in this file suggests that SOME GNU software +@@ -240,7 +241,7 @@ + | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ + | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ + | am33_2.0 \ +- | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \ ++ | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ + | bfin \ + | c4x | clipper \ + | d10v | d30v | dlx | dsp16xx \ +@@ -248,7 +249,8 @@ + | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ + | i370 | i860 | i960 | ia64 \ + | ip2k | iq2000 \ +- | m32r | m32rle | m68000 | m68k | m88k | maxq | mb | microblaze | mcore \ ++ | m32c | m32r | m32rle | m68000 | m68k | m88k \ ++ | maxq | mb | microblaze | mcore \ + | mips | mipsbe | mipseb | mipsel | mipsle \ + | mips16 \ + | mips64 | mips64el \ +@@ -274,21 +276,19 @@ + | pdp10 | pdp11 | pj | pjl \ + | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ + | pyramid \ +- | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \ ++ | score \ ++ | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ + | sh64 | sh64le \ +- | sparc | sparc64 | sparc64b | sparc86x | sparclet | sparclite \ +- | sparcv8 | sparcv9 | sparcv9b \ +- | strongarm \ ++ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ ++ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ ++ | spu | strongarm \ + | tahoe | thumb | tic4x | tic80 | tron \ + | v850 | v850e \ + | we32k \ +- | x86 | xscale | xscalee[bl] | xstormy16 | xtensa \ ++ | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ + | z8k) + basic_machine=$basic_machine-unknown + ;; +- m32c) +- basic_machine=$basic_machine-unknown +- ;; + m6811 | m68hc11 | m6812 | m68hc12) + # Motorola 68HC11/12. + basic_machine=$basic_machine-unknown +@@ -318,7 +318,7 @@ + | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ + | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ + | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ +- | avr-* \ ++ | avr-* | avr32-* \ + | bfin-* | bs2000-* \ + | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ + | clipper-* | craynv-* | cydra-* \ +@@ -329,7 +329,7 @@ + | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ + | i*86-* | i860-* | i960-* | ia64-* \ + | ip2k-* | iq2000-* \ +- | m32r-* | m32rle-* \ ++ | m32c-* | m32r-* | m32rle-* \ + | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ + | m88110-* | m88k-* | maxq-* | mcore-* \ + | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ +@@ -358,23 +358,21 @@ + | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ + | pyramid-* \ + | romp-* | rs6000-* \ +- | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | shbe-* \ ++ | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ + | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ +- | sparc-* | sparc64-* | sparc64b-* | sparc86x-* | sparclet-* \ ++ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ + | sparclite-* \ +- | sparcv8-* | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \ ++ | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \ + | tahoe-* | thumb-* \ + | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ + | tron-* \ + | v850-* | v850e-* | vax-* \ + | we32k-* \ +- | x86-* | x86_64-* | xps100-* | xscale-* | xscalee[bl]-* \ ++ | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ + | xstormy16-* | xtensa-* \ + | ymp-* \ + | z8k-*) + ;; +- m32c-*) +- ;; + # Recognize the various machine names and aliases which stand + # for a CPU type and a company and sometimes even an OS. + 386bsd) +@@ -912,6 +910,10 @@ + sb1el) + basic_machine=mipsisa64sb1el-unknown + ;; ++ sde) ++ basic_machine=mipsisa32-sde ++ os=-elf ++ ;; + sei) + basic_machine=mips-sei + os=-seiux +@@ -1128,7 +1130,7 @@ + sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele) + basic_machine=sh-unknown + ;; +- sparc | sparcv8 | sparcv9 | sparcv9b) ++ sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) + basic_machine=sparc-sun + ;; + cydra) +@@ -1217,7 +1219,7 @@ + | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ + | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ + | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ +- | -skyos* | -haiku* | -rdos*) ++ | -skyos* | -haiku* | -rdos* | -toppers*) + # Remember, each alternative MUST END IN *, to match a version number. + ;; + -qnx*) +@@ -1369,6 +1371,12 @@ + # system, and we'll never get to this point. + + case $basic_machine in ++ score-*) ++ os=-elf ++ ;; ++ spu-*) ++ os=-elf ++ ;; + *-acorn) + os=-riscix1.2 + ;; +@@ -1378,9 +1386,9 @@ + arm*-semi) + os=-aout + ;; +- c4x-* | tic4x-*) +- os=-coff +- ;; ++ c4x-* | tic4x-*) ++ os=-coff ++ ;; + # This must come before the *-dec entry. + pdp10-*) + os=-tops20 +Index: kq-0.99.cvs20060528/configure +=================================================================== +--- kq-0.99.cvs20060528.orig/configure 2007-02-09 15:14:36.000000000 +0100 ++++ kq-0.99.cvs20060528/configure 2007-02-09 15:15:29.000000000 +0100 +@@ -1,6 +1,6 @@ + #! /bin/sh + # Guess values for system-dependent variables and create Makefiles. +-# Generated by GNU Autoconf 2.59d for KQ 0.99. ++# Generated by GNU Autoconf 2.61 for KQ 0.99. + # + # Report bugs to . + # +@@ -12,7 +12,8 @@ + ## M4sh Initialization. ## + ## --------------------- ## + +-# Be Bourne compatible ++# Be more Bourne compatible ++DUALCASE=1; export DUALCASE # for MKS sh + if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: +@@ -21,10 +22,13 @@ + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST + else +- case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac ++ case `(set -o) 2>/dev/null` in ++ *posix*) set -o posix ;; ++esac ++ + fi +-BIN_SH=xpg4; export BIN_SH # for Tru64 +-DUALCASE=1; export DUALCASE # for MKS sh ++ ++ + + + # PATH needs CR +@@ -217,7 +221,7 @@ + else + as_candidate_shells= + as_save_IFS=$IFS; IFS=$PATH_SEPARATOR +-for as_dir in /usr/bin/posix$PATH_SEPARATOR/bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH ++for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH + do + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. +@@ -232,10 +236,9 @@ + + + for as_shell in $as_candidate_shells $SHELL; do +- # Try only shells which exist, to save several forks. +- if test -f $as_shell && +- { ($as_shell) 2> /dev/null <<\_ASEOF +-# Be Bourne compatible ++ # Try only shells that exist, to save several forks. ++ if { test -f "$as_shell" || test -f "$as_shell.exe"; } && ++ { ("$as_shell") 2> /dev/null <<\_ASEOF + if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: +@@ -244,18 +247,19 @@ + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST + else +- case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac ++ case `(set -o) 2>/dev/null` in ++ *posix*) set -o posix ;; ++esac ++ + fi +-BIN_SH=xpg4; export BIN_SH # for Tru64 +-DUALCASE=1; export DUALCASE # for MKS sh ++ + + : + _ASEOF + }; then + CONFIG_SHELL=$as_shell + as_have_required=yes +- if { $as_shell 2> /dev/null <<\_ASEOF +-# Be Bourne compatible ++ if { "$as_shell" 2> /dev/null <<\_ASEOF + if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: +@@ -264,10 +268,12 @@ + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST + else +- case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac ++ case `(set -o) 2>/dev/null` in ++ *posix*) set -o posix ;; ++esac ++ + fi +-BIN_SH=xpg4; export BIN_SH # for Tru64 +-DUALCASE=1; export DUALCASE # for MKS sh ++ + + : + (as_func_return () { +@@ -459,7 +465,7 @@ + } + + +-if (dirname -- /) >/dev/null 2>&1; then ++if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname + else + as_dirname=false +@@ -514,19 +520,28 @@ + as_mkdir_p=false + fi + +-# Find out whether ``test -x'' works. Don't use a zero-byte file, as +-# systems may use methods other than mode bits to determine executability. +-cat >conf$$.file <<_ASEOF +-#! /bin/sh +-exit 0 +-_ASEOF +-chmod +x conf$$.file +-if test -x conf$$.file >/dev/null 2>&1; then +- as_executable_p="test -x" ++if test -x / >/dev/null 2>&1; then ++ as_test_x='test -x' + else +- as_executable_p=: ++ if ls -dL / >/dev/null 2>&1; then ++ as_ls_L_option=L ++ else ++ as_ls_L_option= ++ fi ++ as_test_x=' ++ eval sh -c '\'' ++ if test -d "$1"; then ++ test -d "$1/."; ++ else ++ case $1 in ++ -*)set "./$1";; ++ esac; ++ case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in ++ ???[sx]*):;;*)false;;esac;fi ++ '\'' sh ++ ' + fi +-rm -f conf$$.file ++as_executable_p=$as_test_x + + # Sed expression to map a string onto a valid CPP name. + as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" +@@ -567,36 +582,36 @@ + # Factoring default headers for most tests. + ac_includes_default="\ + #include +-#if HAVE_SYS_TYPES_H ++#ifdef HAVE_SYS_TYPES_H + # include + #endif +-#if HAVE_SYS_STAT_H ++#ifdef HAVE_SYS_STAT_H + # include + #endif +-#if STDC_HEADERS ++#ifdef STDC_HEADERS + # include + # include + #else +-# if HAVE_STDLIB_H ++# ifdef HAVE_STDLIB_H + # include + # endif + #endif +-#if HAVE_STRING_H +-# if !STDC_HEADERS && HAVE_MEMORY_H ++#ifdef HAVE_STRING_H ++# if !defined STDC_HEADERS && defined HAVE_MEMORY_H + # include + # endif + # include + #endif +-#if HAVE_STRINGS_H ++#ifdef HAVE_STRINGS_H + # include + #endif +-#if HAVE_INTTYPES_H ++#ifdef HAVE_INTTYPES_H + # include + #endif +-#if HAVE_STDINT_H ++#ifdef HAVE_STDINT_H + # include + #endif +-#if HAVE_UNISTD_H ++#ifdef HAVE_UNISTD_H + # include + #endif" + +@@ -648,6 +663,7 @@ + INSTALL_PROGRAM + INSTALL_SCRIPT + INSTALL_DATA ++am__isrc + CYGPATH_W + PACKAGE + VERSION +@@ -712,6 +728,7 @@ + CC + CFLAGS + LDFLAGS ++LIBS + CPPFLAGS + CPP + PKG_CONFIG +@@ -822,10 +839,10 @@ + -disable-* | --disable-*) + ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'` + # Reject names that are not valid shell variable names. +- expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && ++ expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && + { echo "$as_me: error: invalid feature name: $ac_feature" >&2 + { (exit 1); exit 1; }; } +- ac_feature=`echo $ac_feature | sed 's/-/_/g'` ++ ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` + eval enable_$ac_feature=no ;; + + -docdir | --docdir | --docdi | --doc | --do) +@@ -841,10 +858,10 @@ + -enable-* | --enable-*) + ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` + # Reject names that are not valid shell variable names. +- expr "x$ac_feature" : ".*[^-_$as_cr_alnum]" >/dev/null && ++ expr "x$ac_feature" : ".*[^-._$as_cr_alnum]" >/dev/null && + { echo "$as_me: error: invalid feature name: $ac_feature" >&2 + { (exit 1); exit 1; }; } +- ac_feature=`echo $ac_feature | sed 's/-/_/g'` ++ ac_feature=`echo $ac_feature | sed 's/[-.]/_/g'` + eval enable_$ac_feature=\$ac_optarg ;; + + -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ +@@ -1038,19 +1055,19 @@ + -with-* | --with-*) + ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` + # Reject names that are not valid shell variable names. +- expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && ++ expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && + { echo "$as_me: error: invalid package name: $ac_package" >&2 + { (exit 1); exit 1; }; } +- ac_package=`echo $ac_package| sed 's/-/_/g'` ++ ac_package=`echo $ac_package | sed 's/[-.]/_/g'` + eval with_$ac_package=\$ac_optarg ;; + + -without-* | --without-*) + ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'` + # Reject names that are not valid shell variable names. +- expr "x$ac_package" : ".*[^-_$as_cr_alnum]" >/dev/null && ++ expr "x$ac_package" : ".*[^-._$as_cr_alnum]" >/dev/null && + { echo "$as_me: error: invalid package name: $ac_package" >&2 + { (exit 1); exit 1; }; } +- ac_package=`echo $ac_package | sed 's/-/_/g'` ++ ac_package=`echo $ac_package | sed 's/[-.]/_/g'` + eval with_$ac_package=no ;; + + --x) +@@ -1312,6 +1329,7 @@ + CFLAGS C compiler flags + LDFLAGS linker flags, e.g. -L if you have libraries in a + nonstandard directory ++ LIBS libraries to pass to the linker, e.g. -l + CPPFLAGS C/C++/Objective C preprocessor flags, e.g. -I if + you have headers in a nonstandard directory + CPP C preprocessor +@@ -1330,7 +1348,7 @@ + if test "$ac_init_help" = "recursive"; then + # If there are subdirs, report their specific --help. + for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue +- test -d $ac_dir || continue ++ test -d "$ac_dir" || continue + ac_builddir=. + + case "$ac_dir" in +@@ -1367,12 +1385,12 @@ + + cd "$ac_dir" || { ac_status=$?; continue; } + # Check for guested configure. +- if test -f $ac_srcdir/configure.gnu; then ++ if test -f "$ac_srcdir/configure.gnu"; then + echo && +- $SHELL $ac_srcdir/configure.gnu --help=recursive +- elif test -f $ac_srcdir/configure; then ++ $SHELL "$ac_srcdir/configure.gnu" --help=recursive ++ elif test -f "$ac_srcdir/configure"; then + echo && +- $SHELL $ac_srcdir/configure --help=recursive ++ $SHELL "$ac_srcdir/configure" --help=recursive + else + echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 + fi || ac_status=$? +@@ -1384,7 +1402,7 @@ + if $ac_init_version; then + cat <<\_ACEOF + KQ configure 0.99 +-generated by GNU Autoconf 2.59d ++generated by GNU Autoconf 2.61 + + Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, + 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. +@@ -1398,7 +1416,7 @@ + running configure, to aid debugging if configure makes a mistake. + + It was created by KQ $as_me 0.99, which was +-generated by GNU Autoconf 2.59d. Invocation command line was ++generated by GNU Autoconf 2.61. Invocation command line was + + $ $0 $@ + +@@ -1458,7 +1476,6 @@ + ac_configure_args= + ac_configure_args0= + ac_configure_args1= +-ac_sep= + ac_must_keep_next=false + for ac_pass in 1 2 + do +@@ -1491,9 +1508,7 @@ + -* ) ac_must_keep_next=true ;; + esac + fi +- ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'" +- # Get rid of the leading space. +- ac_sep=" " ++ ac_configure_args="$ac_configure_args '$ac_arg'" + ;; + esac + done +@@ -1557,6 +1572,9 @@ + for ac_var in $ac_subst_vars + do + eval ac_val=\$$ac_var ++ case $ac_val in ++ *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; ++ esac + echo "$ac_var='\''$ac_val'\''" + done | sort + echo +@@ -1571,6 +1589,9 @@ + for ac_var in $ac_subst_files + do + eval ac_val=\$$ac_var ++ case $ac_val in ++ *\'\''*) ac_val=`echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; ++ esac + echo "$ac_var='\''$ac_val'\''" + done | sort + echo +@@ -1657,8 +1678,8 @@ + { echo "$as_me:$LINENO: loading cache $cache_file" >&5 + echo "$as_me: loading cache $cache_file" >&6;} + case $cache_file in +- [\\/]* | ?:[\\/]* ) . $cache_file;; +- *) . ./$cache_file;; ++ [\\/]* | ?:[\\/]* ) . "$cache_file";; ++ *) . "./$cache_file";; + esac + fi + else +@@ -1751,34 +1772,40 @@ + ac_config_headers="$ac_config_headers config.h" + + ac_aux_dir= +-for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do +- if test -f $ac_dir/install-sh; then ++for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do ++ if test -f "$ac_dir/install-sh"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/install-sh -c" + break +- elif test -f $ac_dir/install.sh; then ++ elif test -f "$ac_dir/install.sh"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/install.sh -c" + break +- elif test -f $ac_dir/shtool; then ++ elif test -f "$ac_dir/shtool"; then + ac_aux_dir=$ac_dir + ac_install_sh="$ac_aux_dir/shtool install -c" + break + fi + done + if test -z "$ac_aux_dir"; then +- { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5 +-echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;} ++ { { echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&5 ++echo "$as_me: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&2;} + { (exit 1); exit 1; }; } + fi +-ac_config_guess="$SHELL $ac_aux_dir/config.guess" +-ac_config_sub="$SHELL $ac_aux_dir/config.sub" +-ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure. ++ ++# These three variables are undocumented and unsupported, ++# and are intended to be withdrawn in a future Autoconf release. ++# They can cause serious problems if a builder's source tree is in a directory ++# whose full name contains unusual characters. ++ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ++ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ++ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. ++ + + # Make sure we can run config.sub. +-$ac_config_sub sun4 >/dev/null 2>&1 || +- { { echo "$as_me:$LINENO: error: cannot run $ac_config_sub" >&5 +-echo "$as_me: error: cannot run $ac_config_sub" >&2;} ++$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || ++ { { echo "$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub" >&5 ++echo "$as_me: error: cannot run $SHELL $ac_aux_dir/config.sub" >&2;} + { (exit 1); exit 1; }; } + + { echo "$as_me:$LINENO: checking build system type" >&5 +@@ -1788,14 +1815,14 @@ + else + ac_build_alias=$build_alias + test "x$ac_build_alias" = x && +- ac_build_alias=`$ac_config_guess` ++ ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` + test "x$ac_build_alias" = x && + { { echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5 + echo "$as_me: error: cannot guess build type; you must specify one" >&2;} + { (exit 1); exit 1; }; } +-ac_cv_build=`$ac_config_sub $ac_build_alias` || +- { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_build_alias failed" >&5 +-echo "$as_me: error: $ac_config_sub $ac_build_alias failed" >&2;} ++ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || ++ { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&5 ++echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&2;} + { (exit 1); exit 1; }; } + + fi +@@ -1829,9 +1856,9 @@ + if test "x$host_alias" = x; then + ac_cv_host=$ac_cv_build + else +- ac_cv_host=`$ac_config_sub $host_alias` || +- { { echo "$as_me:$LINENO: error: $ac_config_sub $host_alias failed" >&5 +-echo "$as_me: error: $ac_config_sub $host_alias failed" >&2;} ++ ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || ++ { { echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&5 ++echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&2;} + { (exit 1); exit 1; }; } + fi + +@@ -1858,7 +1885,8 @@ + case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac + + +-am__api_version="1.9" ++am__api_version='1.10' ++ + # Find a good install program. We prefer a C program (faster), + # so one script is as good as another. But avoid the broken or + # incompatible versions: +@@ -1895,7 +1923,7 @@ + # by default. + for ac_prog in ginstall scoinst install; do + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_executable_p "$as_dir/$ac_prog$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then + if test $ac_prog = install && + grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then + # AIX install. It has an incompatible calling convention. +@@ -2010,38 +2038,53 @@ + echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} + fi + +-if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then +- # We used to keeping the `.' as first argument, in order to +- # allow $(mkdir_p) to be used without argument. As in +- # $(mkdir_p) $(somedir) +- # where $(somedir) is conditionally defined. However this is wrong +- # for two reasons: +- # 1. if the package is installed by a user who cannot write `.' +- # make install will fail, +- # 2. the above comment should most certainly read +- # $(mkdir_p) $(DESTDIR)$(somedir) +- # so it does not work when $(somedir) is undefined and +- # $(DESTDIR) is not. +- # To support the latter case, we have to write +- # test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir), +- # so the `.' trick is pointless. +- mkdir_p='mkdir -p --' +-else +- # On NextStep and OpenStep, the `mkdir' command does not +- # recognize any option. It will interpret all options as +- # directories to create, and then abort because `.' already +- # exists. +- for d in ./-p ./--version; +- do +- test -d $d && rmdir $d +- done +- # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists. +- if test -f "$ac_aux_dir/mkinstalldirs"; then +- mkdir_p='$(mkinstalldirs)' ++{ echo "$as_me:$LINENO: checking for a thread-safe mkdir -p" >&5 ++echo $ECHO_N "checking for a thread-safe mkdir -p... $ECHO_C" >&6; } ++if test -z "$MKDIR_P"; then ++ if test "${ac_cv_path_mkdir+set}" = set; then ++ echo $ECHO_N "(cached) $ECHO_C" >&6 ++else ++ as_save_IFS=$IFS; IFS=$PATH_SEPARATOR ++for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin ++do ++ IFS=$as_save_IFS ++ test -z "$as_dir" && as_dir=. ++ for ac_prog in mkdir gmkdir; do ++ for ac_exec_ext in '' $ac_executable_extensions; do ++ { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue ++ case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( ++ 'mkdir (GNU coreutils) '* | \ ++ 'mkdir (coreutils) '* | \ ++ 'mkdir (fileutils) '4.1*) ++ ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext ++ break 3;; ++ esac ++ done ++ done ++done ++IFS=$as_save_IFS ++ ++fi ++ ++ if test "${ac_cv_path_mkdir+set}" = set; then ++ MKDIR_P="$ac_cv_path_mkdir -p" + else +- mkdir_p='$(install_sh) -d' ++ # As a last resort, use the slow shell script. Don't cache a ++ # value for MKDIR_P within a source directory, because that will ++ # break other packages using the cache if that directory is ++ # removed, or if the value is a relative name. ++ test -d ./--version && rmdir ./--version ++ MKDIR_P="$ac_install_sh -d" + fi + fi ++{ echo "$as_me:$LINENO: result: $MKDIR_P" >&5 ++echo "${ECHO_T}$MKDIR_P" >&6; } ++ ++mkdir_p="$MKDIR_P" ++case $mkdir_p in ++ [\\/$]* | ?:[\\/]*) ;; ++ */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; ++esac + + for ac_prog in gawk mawk nawk awk + do +@@ -2061,7 +2104,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_AWK="$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -2087,25 +2130,25 @@ + + { echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5 + echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6; } +-set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,:./+-,___p_,'` ++set x ${MAKE-make}; ac_make=`echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` + if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then + echo $ECHO_N "(cached) $ECHO_C" >&6 + else + cat >conftest.make <<\_ACEOF + SHELL = /bin/sh + all: +- @echo 'ac_maketemp=X"$(MAKE)"' ++ @echo '@@@%%%=$(MAKE)=@@@%%%' + _ACEOF + # GNU make sometimes prints "make[1]: Entering...", which would confuse us. +-eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=` +-if test "$ac_maketemp" != X ; then +- eval ac_cv_prog_make_${ac_make}_set=yes +-else +- eval ac_cv_prog_make_${ac_make}_set=no +-fi ++case `${MAKE-make} -f conftest.make 2>/dev/null` in ++ *@@@%%%=?*=@@@%%%*) ++ eval ac_cv_prog_make_${ac_make}_set=yes;; ++ *) ++ eval ac_cv_prog_make_${ac_make}_set=no;; ++esac + rm -f conftest.make + fi +-if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then ++if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then + { echo "$as_me:$LINENO: result: yes" >&5 + echo "${ECHO_T}yes" >&6; } + SET_MAKE= +@@ -2124,12 +2167,16 @@ + fi + rmdir .tst 2>/dev/null + +-# test to see if srcdir already configured +-if test "`cd $srcdir && pwd`" != "`pwd`" && +- test -f $srcdir/config.status; then +- { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 ++if test "`cd $srcdir && pwd`" != "`pwd`"; then ++ # Use -I$(srcdir) only when $(srcdir) != ., so that make's output ++ # is not polluted with repeated "-I." ++ am__isrc=' -I$(srcdir)' ++ # test to see if srcdir already configured ++ if test -f $srcdir/config.status; then ++ { { echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5 + echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;} + { (exit 1); exit 1; }; } ++ fi + fi + + # test whether we have cygpath +@@ -2172,7 +2219,7 @@ + + MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} + +-install_sh=${install_sh-"$am_aux_dir/install-sh"} ++install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"} + + # Installed binaries are usually stripped using `strip' when the user + # run `make install-strip'. However `strip' might not be the right +@@ -2196,7 +2243,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_STRIP="${ac_tool_prefix}strip" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -2236,7 +2283,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_STRIP="strip" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -2276,7 +2323,7 @@ + fi + + fi +-INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s" ++INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" + + # We need awk for the "check" target. The system "awk" is bad on + # some platforms. +@@ -2314,7 +2361,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="${ac_tool_prefix}gcc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -2354,7 +2401,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CC="gcc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -2411,7 +2458,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="${ac_tool_prefix}cc" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -2452,7 +2499,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then + ac_prog_rejected=yes + continue +@@ -2510,7 +2557,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_CC="$ac_tool_prefix$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -2554,7 +2601,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_ac_ct_CC="$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -2607,36 +2654,37 @@ + # Provide some information about the compiler. + echo "$as_me:$LINENO: checking for C compiler version" >&5 + ac_compiler=`set X $ac_compile; echo $2` +-{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version >&5\"") >&5 +- (eval $ac_compiler --version >&5) 2>&5 ++{ (ac_try="$ac_compiler --version >&5" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compiler --version >&5") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } +-{ (eval echo "$as_me:$LINENO: \"$ac_compiler -v >&5\"") >&5 +- (eval $ac_compiler -v >&5) 2>&5 ++{ (ac_try="$ac_compiler -v >&5" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compiler -v >&5") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } +-{ (eval echo "$as_me:$LINENO: \"$ac_compiler -V >&5\"") >&5 +- (eval $ac_compiler -V >&5) 2>&5 ++{ (ac_try="$ac_compiler -V >&5" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compiler -V >&5") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } + +- +-# List of possible output files. We want to start from the most likely, +-# but we have to check foo.exe before foo, because Cygwin `test -f' looks +-# also for foo.exe. b.out is created by i960 compilers. +-# As a last resort, we also try wildcards: `conftest.*' and `a.*'. +-# But we are not allowed to rm a.*, and we do not want always remove +-# conftest.*, so we will list them literally, when appropriate. +-ac_outfiles="a_out.exe a.out conftest.exe conftest a.exe b.out" +- +-# The IRIX 6 linker writes into existing files which may not be +-# executable, retaining their permissions. Remove them first so a +-# subsequent execution test works. +-rm -f $ac_outfiles conftest.* +- + cat >conftest.$ac_ext <<_ACEOF + /* confdefs.h. */ + _ACEOF +@@ -2652,41 +2700,82 @@ + return 0; + } + _ACEOF +- + ac_clean_files_save=$ac_clean_files +-ac_clean_files="$ac_clean_files $ac_outfiles" +- +-# The following tests should remove their output except files matching conftest.*. ++ac_clean_files="$ac_clean_files a.out a.exe b.out" + # Try to create an executable without -o first, disregard a.out. + # It will help us diagnose broken compilers, and finding out an intuition + # of exeext. + { echo "$as_me:$LINENO: checking for C compiler default output file name" >&5 + echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6; } + ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` ++# ++# List of possible output files, starting from the most likely. ++# The algorithm is not robust to junk in `.', hence go to wildcards (a.*) ++# only as a last resort. b.out is created by i960 compilers. ++ac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out' ++# ++# The IRIX 6 linker writes into existing files which may not be ++# executable, retaining their permissions. Remove them first so a ++# subsequent execution test works. ++ac_rmfiles= ++for ac_file in $ac_files ++do ++ case $ac_file in ++ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; ++ * ) ac_rmfiles="$ac_rmfiles $ac_file";; ++ esac ++done ++rm -f $ac_rmfiles + +-if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5 +- (eval $ac_link_default) 2>&5 ++if { (ac_try="$ac_link_default" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_link_default") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then +- for ac_file in $ac_outfiles a.* conftest.* NO ++ # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. ++# So ignore a value of `no', otherwise this would lead to `EXEEXT = no' ++# in a Makefile. We should not override ac_cv_exeext if it was cached, ++# so that the user can short-circuit this test for compilers unknown to ++# Autoconf. ++for ac_file in $ac_files '' + do + test -f "$ac_file" || continue + case $ac_file in +- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; +- * ) break;; ++ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ++ ;; ++ [ab].out ) ++ # We found the default executable, but exeext='' is most ++ # certainly right. ++ break;; ++ *.* ) ++ if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; ++ then :; else ++ ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` ++ fi ++ # We set ac_cv_exeext here because the later test for it is not ++ # safe: cross compilers may not add the suffix if given an `-o' ++ # argument, so we may need to know it at that point already. ++ # Even if this section looks crufty: it has the advantage of ++ # actually working. ++ break;; ++ * ) ++ break;; + esac + done +-if test "$ac_file" = NO; then +- { { echo "$as_me:$LINENO: error: no output file found +-See \`config.log' for more details." >&5 +-echo "$as_me: error: no output file found +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; } +-fi +- ++test "$ac_cv_exeext" = no && ac_cv_exeext= + + else ++ ac_file='' ++fi ++ ++{ echo "$as_me:$LINENO: result: $ac_file" >&5 ++echo "${ECHO_T}$ac_file" >&6; } ++if test -z "$ac_file"; then + echo "$as_me: failed program was:" >&5 + sed 's/^/| /' conftest.$ac_ext >&5 + +@@ -2697,8 +2786,8 @@ + { (exit 77); exit 77; }; } + fi + +-{ echo "$as_me:$LINENO: result: $ac_file" >&5 +-echo "${ECHO_T}$ac_file" >&6; } ++ac_exeext=$ac_cv_exeext ++ + # Check that the compiler produces executables we can run. If not, either + # the compiler is broken, or we cross compile. + { echo "$as_me:$LINENO: checking whether the C compiler works" >&5 +@@ -2707,8 +2796,12 @@ + # If not cross compiling, check that we can run a simple program. + if test "$cross_compiling" != yes; then + if { ac_try='./$ac_file' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 ++ { (case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_try") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then +@@ -2730,9 +2823,10 @@ + { echo "$as_me:$LINENO: result: yes" >&5 + echo "${ECHO_T}yes" >&6; } + +-# Clean up; list also $ac_file, in case it matched a wildcard entry. +-rm -f $ac_outfiles $ac_file +- ++rm -f a.out a.exe conftest$ac_cv_exeext b.out ++ac_clean_files=$ac_clean_files_save ++# Check that the compiler produces executables we can run. If not, either ++# the compiler is broken, or we cross compile. + { echo "$as_me:$LINENO: checking whether we are cross compiling" >&5 + echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6; } + { echo "$as_me:$LINENO: result: $cross_compiling" >&5 +@@ -2740,64 +2834,72 @@ + + { echo "$as_me:$LINENO: checking for suffix of executables" >&5 + echo $ECHO_N "checking for suffix of executables... $ECHO_C" >&6; } +-if test "${ac_cv_exeext+set}" = set; then +- echo $ECHO_N "(cached) $ECHO_C" >&6 +-else +- if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 +- (eval $ac_link) 2>&5 ++if { (ac_try="$ac_link" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_link") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then +- # If both `conftest.exe' and `conftest' are `present' (well, observable), +- # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will +- # work properly (i.e., refer to `conftest.exe'), while it won't with `rm'. +- for ac_file in conftest.exe conftest conftest.* NO; do +- test -f "$ac_file" || continue +- case $ac_file in +- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; +- *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` +- break;; +- * ) break;; +- esac +- done +- if test "$ac_file" = NO; then +- { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: no output file found +-See \`config.log' for more details." >&5 +-echo "$as_me: error: cannot compute suffix of executables: no output file found +-See \`config.log' for more details." >&2;} +- { (exit 1); exit 1; }; } +-fi +- +- # Clean up; list also $ac_file, in case it matched conftest.*. +- rm -f $ac_outfiles $ac_file +- ++ # If both `conftest.exe' and `conftest' are `present' (well, observable) ++# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will ++# work properly (i.e., refer to `conftest.exe'), while it won't with ++# `rm'. ++for ac_file in conftest.exe conftest conftest.*; do ++ test -f "$ac_file" || continue ++ case $ac_file in ++ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;; ++ *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` ++ break;; ++ * ) break;; ++ esac ++done + else + { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link + See \`config.log' for more details." >&5 + echo "$as_me: error: cannot compute suffix of executables: cannot compile and link + See \`config.log' for more details." >&2;} + { (exit 1); exit 1; }; } +- + fi + +- +-fi ++rm -f conftest$ac_cv_exeext + { echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5 + echo "${ECHO_T}$ac_cv_exeext" >&6; } ++ ++rm -f conftest.$ac_ext + EXEEXT=$ac_cv_exeext + ac_exeext=$EXEEXT +- +- +-ac_clean_files=$ac_clean_files_save +- + { echo "$as_me:$LINENO: checking for suffix of object files" >&5 + echo $ECHO_N "checking for suffix of object files... $ECHO_C" >&6; } + if test "${ac_cv_objext+set}" = set; then + echo $ECHO_N "(cached) $ECHO_C" >&6 + else +- rm -f conftest.o conftest.obj +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>&5 ++ cat >conftest.$ac_ext <<_ACEOF ++/* confdefs.h. */ ++_ACEOF ++cat confdefs.h >>conftest.$ac_ext ++cat >>conftest.$ac_ext <<_ACEOF ++/* end confdefs.h. */ ++ ++int ++main () ++{ ++ ++ ; ++ return 0; ++} ++_ACEOF ++rm -f conftest.o conftest.obj ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; then +@@ -2820,14 +2922,12 @@ + { (exit 1); exit 1; }; } + fi + ++rm -f conftest.$ac_cv_objext conftest.$ac_ext + fi + { echo "$as_me:$LINENO: result: $ac_cv_objext" >&5 + echo "${ECHO_T}$ac_cv_objext" >&6; } + OBJEXT=$ac_cv_objext + ac_objext=$OBJEXT +- +- +-rm -f conftest.* + { echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5 + echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6; } + if test "${ac_cv_c_compiler_gnu+set}" = set; then +@@ -2852,26 +2952,22 @@ + } + _ACEOF + rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>conftest.er1 ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_compiler_gnu=yes + else + echo "$as_me: failed program was:" >&5 +@@ -2880,7 +2976,7 @@ + ac_compiler_gnu=no + fi + +-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_cv_c_compiler_gnu=$ac_compiler_gnu + + fi +@@ -2914,26 +3010,22 @@ + } + _ACEOF + rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>conftest.er1 ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_cv_prog_cc_g=yes + else + echo "$as_me: failed program was:" >&5 +@@ -2956,26 +3048,22 @@ + } + _ACEOF + rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>conftest.er1 ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + : + else + echo "$as_me: failed program was:" >&5 +@@ -2999,26 +3087,22 @@ + } + _ACEOF + rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>conftest.er1 ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_cv_prog_cc_g=yes + else + echo "$as_me: failed program was:" >&5 +@@ -3027,13 +3111,13 @@ + + fi + +-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi + +-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi + +-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + ac_c_werror_flag=$ac_save_c_werror_flag + fi + { echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5 +@@ -3098,6 +3182,11 @@ + that's true only with -std. */ + int osf4_cc_array ['\x00' == 0 ? 1 : -1]; + ++/* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters ++ inside strings and character constants. */ ++#define FOO(x) 'x' ++int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; ++ + int test (int i, double x); + struct s1 {int (*f) (int a);}; + struct s2 {int (*f) (double a);}; +@@ -3117,26 +3206,22 @@ + do + CC="$ac_save_CC $ac_arg" + rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>conftest.er1 ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_cv_prog_cc_c89=$ac_arg + else + echo "$as_me: failed program was:" >&5 +@@ -3145,7 +3230,7 @@ + + fi + +-rm -f conftest.err conftest.$ac_objext ++rm -f core conftest.err conftest.$ac_objext + test "x$ac_cv_prog_cc_c89" != "xno" && break + done + rm -f conftest.$ac_ext +@@ -3225,9 +3310,7 @@ + am_depcomp="$ac_aux_dir/depcomp" + AMDEPBACKSLASH='\' + fi +- +- +-if test "x$enable_dependency_tracking" != xno; then ++ if test "x$enable_dependency_tracking" != xno; then + AMDEP_TRUE= + AMDEP_FALSE='#' + else +@@ -3237,7 +3320,6 @@ + + + +- + depcc="$CC" am_compiler_list= + + { echo "$as_me:$LINENO: checking dependency style of $depcc" >&5 +@@ -3305,6 +3387,7 @@ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ + >/dev/null 2>conftest.err && ++ grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then +@@ -3334,9 +3417,7 @@ + echo "${ECHO_T}$am_cv_CC_dependencies_compiler_type" >&6; } + CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type + +- +- +-if ++ if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then + am__fastdepCC_TRUE= +@@ -3387,24 +3468,22 @@ + #endif + Syntax error + _ACEOF +-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 +- (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ++if { (ac_try="$ac_cpp conftest.$ac_ext" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null; then +- if test -s conftest.err; then +- ac_cpp_err=$ac_c_preproc_warn_flag +- ac_cpp_err=$ac_cpp_err$ac_c_werror_flag +- else +- ac_cpp_err= +- fi +-else +- ac_cpp_err=yes +-fi +-if test -z "$ac_cpp_err"; then ++ (exit $ac_status); } >/dev/null && { ++ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || ++ test ! -s conftest.err ++ }; then + : + else + echo "$as_me: failed program was:" >&5 +@@ -3426,24 +3505,22 @@ + /* end confdefs.h. */ + #include + _ACEOF +-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 +- (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ++if { (ac_try="$ac_cpp conftest.$ac_ext" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null; then +- if test -s conftest.err; then +- ac_cpp_err=$ac_c_preproc_warn_flag +- ac_cpp_err=$ac_cpp_err$ac_c_werror_flag +- else +- ac_cpp_err= +- fi +-else +- ac_cpp_err=yes +-fi +-if test -z "$ac_cpp_err"; then ++ (exit $ac_status); } >/dev/null && { ++ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || ++ test ! -s conftest.err ++ }; then + # Broken: success on invalid input. + continue + else +@@ -3496,24 +3573,22 @@ + #endif + Syntax error + _ACEOF +-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 +- (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ++if { (ac_try="$ac_cpp conftest.$ac_ext" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null; then +- if test -s conftest.err; then +- ac_cpp_err=$ac_c_preproc_warn_flag +- ac_cpp_err=$ac_cpp_err$ac_c_werror_flag +- else +- ac_cpp_err= +- fi +-else +- ac_cpp_err=yes +-fi +-if test -z "$ac_cpp_err"; then ++ (exit $ac_status); } >/dev/null && { ++ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || ++ test ! -s conftest.err ++ }; then + : + else + echo "$as_me: failed program was:" >&5 +@@ -3535,24 +3610,22 @@ + /* end confdefs.h. */ + #include + _ACEOF +-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 +- (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ++if { (ac_try="$ac_cpp conftest.$ac_ext" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null; then +- if test -s conftest.err; then +- ac_cpp_err=$ac_c_preproc_warn_flag +- ac_cpp_err=$ac_cpp_err$ac_c_werror_flag +- else +- ac_cpp_err= +- fi +-else +- ac_cpp_err=yes +-fi +-if test -z "$ac_cpp_err"; then ++ (exit $ac_status); } >/dev/null && { ++ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || ++ test ! -s conftest.err ++ }; then + # Broken: success on invalid input. + continue + else +@@ -3604,7 +3677,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_OBJC="$ac_prog" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -3704,6 +3777,7 @@ + depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ + $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ + >/dev/null 2>conftest.err && ++ grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && + grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && + ${MAKE-make} -s -f confmf > /dev/null 2>&1; then +@@ -3733,9 +3807,7 @@ + echo "${ECHO_T}$am_cv_OBJC_dependencies_compiler_type" >&6; } + OBJCDEPMODE=depmode=$am_cv_OBJC_dependencies_compiler_type + +- +- +-if ++ if + test "x$enable_dependency_tracking" != xno \ + && test "$am_cv_OBJC_dependencies_compiler_type" = gcc3; then + am__fastdepOBJC_TRUE= +@@ -3765,7 +3837,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_prog_HAVE_ALLEGRO="yes" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -3821,26 +3893,23 @@ + } + _ACEOF + rm -f conftest.$ac_objext conftest$ac_exeext +-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 +- (eval $ac_link) 2>conftest.er1 ++if { (ac_try="$ac_link" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_alleg_create_bitmap=yes + else + echo "$as_me: failed program was:" >&5 +@@ -3849,7 +3918,7 @@ + ac_cv_lib_alleg_create_bitmap=no + fi + +-rm -f conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +@@ -3891,7 +3960,7 @@ + for ac_prog in grep ggrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" +- { test -f "$ac_path_GREP" && $as_executable_p "$ac_path_GREP"; } || continue ++ { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue + # Check for GNU ac_path_GREP and select it if it is found. + # Check for GNU $ac_path_GREP + case `"$ac_path_GREP" --version 2>&1` in +@@ -3917,7 +3986,7 @@ + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done +- rm -f conftest.*;; ++ rm -f conftest.in conftest.tmp conftest.nl conftest.out;; + esac + + +@@ -3973,7 +4042,7 @@ + for ac_prog in egrep; do + for ac_exec_ext in '' $ac_executable_extensions; do + ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" +- { test -f "$ac_path_EGREP" && $as_executable_p "$ac_path_EGREP"; } || continue ++ { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue + # Check for GNU ac_path_EGREP and select it if it is found. + # Check for GNU $ac_path_EGREP + case `"$ac_path_EGREP" --version 2>&1` in +@@ -3999,7 +4068,7 @@ + # 10*(2^10) chars as input seems more than enough + test $ac_count -gt 10 && break + done +- rm -f conftest.*;; ++ rm -f conftest.in conftest.tmp conftest.nl conftest.out;; + esac + + +@@ -4057,26 +4126,22 @@ + } + _ACEOF + rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>conftest.er1 ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_cv_header_stdc=yes + else + echo "$as_me: failed program was:" >&5 +@@ -4085,7 +4150,7 @@ + ac_cv_header_stdc=no + fi + +-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + + if test $ac_cv_header_stdc = yes; then + # SunOS 4.x string.h does not declare mem*, contrary to ANSI. +@@ -4166,13 +4231,22 @@ + } + _ACEOF + rm -f conftest$ac_exeext +-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 +- (eval $ac_link) 2>&5 ++if { (ac_try="$ac_link" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_link") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 ++ { (case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_try") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then +@@ -4231,26 +4305,22 @@ + #include <$ac_header> + _ACEOF + rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>conftest.er1 ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + eval "$as_ac_Header=yes" + else + echo "$as_me: failed program was:" >&5 +@@ -4259,7 +4329,7 @@ + eval "$as_ac_Header=no" + fi + +-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi + ac_res=`eval echo '${'$as_ac_Header'}'` + { echo "$as_me:$LINENO: result: $ac_res" >&5 +@@ -4305,26 +4375,22 @@ + #include <$ac_header> + _ACEOF + rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>conftest.er1 ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else + echo "$as_me: failed program was:" >&5 +@@ -4333,7 +4399,7 @@ + ac_header_compiler=no + fi + +-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 + echo "${ECHO_T}$ac_header_compiler" >&6; } + +@@ -4348,24 +4414,22 @@ + /* end confdefs.h. */ + #include <$ac_header> + _ACEOF +-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 +- (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ++if { (ac_try="$ac_cpp conftest.$ac_ext" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null; then +- if test -s conftest.err; then +- ac_cpp_err=$ac_c_preproc_warn_flag +- ac_cpp_err=$ac_cpp_err$ac_c_werror_flag +- else +- ac_cpp_err= +- fi +-else +- ac_cpp_err=yes +-fi +-if test -z "$ac_cpp_err"; then ++ (exit $ac_status); } >/dev/null && { ++ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || ++ test ! -s conftest.err ++ }; then + ac_header_preproc=yes + else + echo "$as_me: failed program was:" >&5 +@@ -4456,26 +4520,22 @@ + #include <$ac_header> + _ACEOF + rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>conftest.er1 ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else + echo "$as_me: failed program was:" >&5 +@@ -4484,7 +4544,7 @@ + ac_header_compiler=no + fi + +-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 + echo "${ECHO_T}$ac_header_compiler" >&6; } + +@@ -4499,24 +4559,22 @@ + /* end confdefs.h. */ + #include <$ac_header> + _ACEOF +-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 +- (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ++if { (ac_try="$ac_cpp conftest.$ac_ext" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null; then +- if test -s conftest.err; then +- ac_cpp_err=$ac_c_preproc_warn_flag +- ac_cpp_err=$ac_cpp_err$ac_c_werror_flag +- else +- ac_cpp_err= +- fi +-else +- ac_cpp_err=yes +-fi +-if test -z "$ac_cpp_err"; then ++ (exit $ac_status); } >/dev/null && { ++ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || ++ test ! -s conftest.err ++ }; then + ac_header_preproc=yes + else + echo "$as_me: failed program was:" >&5 +@@ -4604,26 +4662,22 @@ + #include <$ac_header> + _ACEOF + rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>conftest.er1 ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else + echo "$as_me: failed program was:" >&5 +@@ -4632,7 +4686,7 @@ + ac_header_compiler=no + fi + +-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 + echo "${ECHO_T}$ac_header_compiler" >&6; } + +@@ -4647,24 +4701,22 @@ + /* end confdefs.h. */ + #include <$ac_header> + _ACEOF +-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 +- (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ++if { (ac_try="$ac_cpp conftest.$ac_ext" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null; then +- if test -s conftest.err; then +- ac_cpp_err=$ac_c_preproc_warn_flag +- ac_cpp_err=$ac_cpp_err$ac_c_werror_flag +- else +- ac_cpp_err= +- fi +-else +- ac_cpp_err=yes +-fi +-if test -z "$ac_cpp_err"; then ++ (exit $ac_status); } >/dev/null && { ++ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || ++ test ! -s conftest.err ++ }; then + ac_header_preproc=yes + else + echo "$as_me: failed program was:" >&5 +@@ -4758,10 +4810,10 @@ + #ifndef __cplusplus + /* Ultrix mips cc rejects this. */ + typedef int charset[2]; +- const charset x; ++ const charset cs; + /* SunOS 4.1.1 cc rejects this. */ +- char const *const *ccp; +- char **p; ++ char const *const *pcpcc; ++ char **ppc; + /* NEC SVR4.0.2 mips cc rejects this. */ + struct point {int x, y;}; + static struct point const zero = {0,0}; +@@ -4770,11 +4822,11 @@ + an arm of an if-expression whose if-part is not a constant + expression */ + const char *g = "string"; +- ccp = &g + (g ? g-g : 0); ++ pcpcc = &g + (g ? g-g : 0); + /* HPUX 7.0 cc rejects these. */ +- ++ccp; +- p = (char**) ccp; +- ccp = (char const *const *) p; ++ ++pcpcc; ++ ppc = (char**) pcpcc; ++ pcpcc = (char const *const *) ppc; + { /* SCO 3.2v4 cc rejects this. */ + char *t; + char const *s = 0 ? (char *) 0 : (char const *) 0; +@@ -4801,7 +4853,7 @@ + const int foo = 10; + if (!foo) return 0; + } +- return !x[0] && !zero.x; ++ return !cs[0] && !zero.x; + #endif + + ; +@@ -4809,26 +4861,22 @@ + } + _ACEOF + rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>conftest.er1 ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_cv_c_const=yes + else + echo "$as_me: failed program was:" >&5 +@@ -4837,7 +4885,7 @@ + ac_cv_c_const=no + fi + +-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi + { echo "$as_me:$LINENO: result: $ac_cv_c_const" >&5 + echo "${ECHO_T}$ac_cv_c_const" >&6; } +@@ -4870,26 +4918,22 @@ + + _ACEOF + rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>conftest.er1 ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_cv_c_inline=$ac_kw + else + echo "$as_me: failed program was:" >&5 +@@ -4898,7 +4942,7 @@ + + fi + +-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + test "$ac_cv_c_inline" != no && break + done + +@@ -4947,26 +4991,22 @@ + } + _ACEOF + rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>conftest.er1 ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_cv_header_time=yes + else + echo "$as_me: failed program was:" >&5 +@@ -4975,7 +5015,7 @@ + ac_cv_header_time=no + fi + +-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi + { echo "$as_me:$LINENO: result: $ac_cv_header_time" >&5 + echo "${ECHO_T}$ac_cv_header_time" >&6; } +@@ -5004,32 +5044,30 @@ + int + main () + { +-struct tm *tp; tp->tm_sec; ++struct tm tm; ++ int *p = &tm.tm_sec; ++ return !p; + ; + return 0; + } + _ACEOF + rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>conftest.er1 ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_cv_struct_tm=time.h + else + echo "$as_me: failed program was:" >&5 +@@ -5038,7 +5076,7 @@ + ac_cv_struct_tm=sys/time.h + fi + +-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi + { echo "$as_me:$LINENO: result: $ac_cv_struct_tm" >&5 + echo "${ECHO_T}$ac_cv_struct_tm" >&6; } +@@ -5074,26 +5112,22 @@ + } + _ACEOF + rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>conftest.er1 ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_cv_c_volatile=yes + else + echo "$as_me: failed program was:" >&5 +@@ -5102,7 +5136,7 @@ + ac_cv_c_volatile=no + fi + +-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + fi + { echo "$as_me:$LINENO: result: $ac_cv_c_volatile" >&5 + echo "${ECHO_T}$ac_cv_c_volatile" >&6; } +@@ -5124,26 +5158,22 @@ + "" + _ACEOF + rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>conftest.er1 ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + : + else + echo "$as_me: failed program was:" >&5 +@@ -5152,7 +5182,7 @@ + WARNING_CFLAGS="" + fi + +-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + CFLAGS="$kq_save_CFLAGS" + + +@@ -5184,26 +5214,22 @@ + #include <$ac_header> + _ACEOF + rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>conftest.er1 ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else + echo "$as_me: failed program was:" >&5 +@@ -5212,7 +5238,7 @@ + ac_header_compiler=no + fi + +-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 + echo "${ECHO_T}$ac_header_compiler" >&6; } + +@@ -5227,24 +5253,22 @@ + /* end confdefs.h. */ + #include <$ac_header> + _ACEOF +-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 +- (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ++if { (ac_try="$ac_cpp conftest.$ac_ext" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null; then +- if test -s conftest.err; then +- ac_cpp_err=$ac_c_preproc_warn_flag +- ac_cpp_err=$ac_cpp_err$ac_c_werror_flag +- else +- ac_cpp_err= +- fi +-else +- ac_cpp_err=yes +-fi +-if test -z "$ac_cpp_err"; then ++ (exit $ac_status); } >/dev/null && { ++ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || ++ test ! -s conftest.err ++ }; then + ac_header_preproc=yes + else + echo "$as_me: failed program was:" >&5 +@@ -5322,7 +5346,7 @@ + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ +-#if STDC_HEADERS || HAVE_STDLIB_H ++#if defined STDC_HEADERS || defined HAVE_STDLIB_H + # include + #else + char *malloc (); +@@ -5337,13 +5361,22 @@ + } + _ACEOF + rm -f conftest$ac_exeext +-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 +- (eval $ac_link) 2>&5 ++if { (ac_try="$ac_link" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_link") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 ++ { (case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_try") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then +@@ -5416,26 +5449,22 @@ + #include <$ac_header> + _ACEOF + rm -f conftest.$ac_objext +-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5 +- (eval $ac_compile) 2>conftest.er1 ++if { (ac_try="$ac_compile" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_compile") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest.$ac_objext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest.$ac_objext; then + ac_header_compiler=yes + else + echo "$as_me: failed program was:" >&5 +@@ -5444,7 +5473,7 @@ + ac_header_compiler=no + fi + +-rm -f conftest.err conftest.$ac_objext conftest.$ac_ext ++rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext + { echo "$as_me:$LINENO: result: $ac_header_compiler" >&5 + echo "${ECHO_T}$ac_header_compiler" >&6; } + +@@ -5459,24 +5488,22 @@ + /* end confdefs.h. */ + #include <$ac_header> + _ACEOF +-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5 +- (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ++if { (ac_try="$ac_cpp conftest.$ac_ext" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_cpp conftest.$ac_ext") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } >/dev/null; then +- if test -s conftest.err; then +- ac_cpp_err=$ac_c_preproc_warn_flag +- ac_cpp_err=$ac_cpp_err$ac_c_werror_flag +- else +- ac_cpp_err= +- fi +-else +- ac_cpp_err=yes +-fi +-if test -z "$ac_cpp_err"; then ++ (exit $ac_status); } >/dev/null && { ++ test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || ++ test ! -s conftest.err ++ }; then + ac_header_preproc=yes + else + echo "$as_me: failed program was:" >&5 +@@ -5554,7 +5581,7 @@ + cat confdefs.h >>conftest.$ac_ext + cat >>conftest.$ac_ext <<_ACEOF + /* end confdefs.h. */ +-#if STDC_HEADERS || HAVE_STDLIB_H ++#if defined STDC_HEADERS || defined HAVE_STDLIB_H + # include + #else + char *realloc (); +@@ -5569,13 +5596,22 @@ + } + _ACEOF + rm -f conftest$ac_exeext +-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 +- (eval $ac_link) 2>&5 ++if { (ac_try="$ac_link" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_link") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); } && { ac_try='./conftest$ac_exeext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 ++ { (case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_try") 2>&5 + ac_status=$? + echo "$as_me:$LINENO: \$? = $ac_status" >&5 + (exit $ac_status); }; }; then +@@ -5683,26 +5719,23 @@ + } + _ACEOF + rm -f conftest.$ac_objext conftest$ac_exeext +-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 +- (eval $ac_link) 2>conftest.er1 ++if { (ac_try="$ac_link" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + eval "$as_ac_var=yes" + else + echo "$as_me: failed program was:" >&5 +@@ -5711,7 +5744,7 @@ + eval "$as_ac_var=no" + fi + +-rm -f conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + fi + ac_res=`eval echo '${'$as_ac_var'}'` +@@ -5755,26 +5788,23 @@ + } + _ACEOF + rm -f conftest.$ac_objext conftest$ac_exeext +-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 +- (eval $ac_link) 2>conftest.er1 ++if { (ac_try="$ac_link" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_lib_dumb_dumb_exit=yes + else + echo "$as_me: failed program was:" >&5 +@@ -5783,7 +5813,7 @@ + ac_cv_lib_dumb_dumb_exit=no + fi + +-rm -f conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ac_check_lib_save_LIBS + fi +@@ -5816,26 +5846,23 @@ + END_OF_MAIN(); + _ACEOF + rm -f conftest.$ac_objext conftest$ac_exeext +-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 +- (eval $ac_link) 2>conftest.er1 ++if { (ac_try="$ac_link" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ax_cv_lib_aldmb=yes + else + echo "$as_me: failed program was:" >&5 +@@ -5844,7 +5871,7 @@ + ax_cv_lib_aldmb=no + fi + +-rm -f conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext conftest.$ac_ext + LIBS=$ax_check_lib_save_LIBS + fi +@@ -5894,26 +5921,23 @@ + LIBS="-l$ac_lib $ac_func_search_save_LIBS" + fi + rm -f conftest.$ac_objext conftest$ac_exeext +-if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5 +- (eval $ac_link) 2>conftest.er1 ++if { (ac_try="$ac_link" ++case "(($ac_try" in ++ *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; ++ *) ac_try_echo=$ac_try;; ++esac ++eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5 ++ (eval "$ac_link") 2>conftest.er1 + ac_status=$? + grep -v '^ *+' conftest.er1 >conftest.err + rm -f conftest.er1 + cat conftest.err >&5 + echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); } && +- { ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; } && +- { ac_try='test -s conftest$ac_exeext' +- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 +- (eval $ac_try) 2>&5 +- ac_status=$? +- echo "$as_me:$LINENO: \$? = $ac_status" >&5 +- (exit $ac_status); }; }; then ++ (exit $ac_status); } && { ++ test -z "$ac_c_werror_flag" || ++ test ! -s conftest.err ++ } && test -s conftest$ac_exeext && ++ $as_test_x conftest$ac_exeext; then + ac_cv_search_lua_open=$ac_res + else + echo "$as_me: failed program was:" >&5 +@@ -5922,7 +5946,7 @@ + + fi + +-rm -f conftest.err conftest.$ac_objext \ ++rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \ + conftest$ac_exeext + if test "${ac_cv_search_lua_open+set}" = set; then + break +@@ -5971,7 +5995,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -6014,7 +6038,7 @@ + IFS=$as_save_IFS + test -z "$as_dir" && as_dir=. + for ac_exec_ext in '' $ac_executable_extensions; do +- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_executable_p "$as_dir/$ac_word$ac_exec_ext"; }; then ++ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then + ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" + echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5 + break 2 +@@ -6170,12 +6194,11 @@ + + # host stuff + case ${host} in +- *-*-linux*) +- kq_extra_files='unix.$(OBJEXT)' +- +- kq_target_dir=unix ++ *-*-mingw32* | *-*-cygwin* | *-*-windows*) ++ kq_extra_files='win.$(OBJEXT)' + + bundle=no ++ #LIBS="-lwinmm ${LIBS}" + ;; + *-*-darwin*) + kq_extra_files='osx.$(OBJEXT)' +@@ -6184,16 +6207,15 @@ + + bundle=yes + ;; +- *-*-mingw32* | *-*-cygwin* | *-*-windows*) +- kq_extra_files='win.$(OBJEXT)' ++ *) # *-*-linux*|*-*-k*bsd*-gnu) ++ kq_extra_files='unix.$(OBJEXT)' ++ ++ kq_target_dir=unix + + bundle=no +- #LIBS="-lwinmm ${LIBS}" + ;; + esac +- +- +-if test x$bundle = xyes; then ++ if test x$bundle = xyes; then + BUNDLE_TRUE= + BUNDLE_FALSE='#' + else +@@ -6264,8 +6286,8 @@ + t end + s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ + :end' >>confcache +-if diff $cache_file confcache >/dev/null 2>&1; then :; else +- if test -w $cache_file; then ++if diff "$cache_file" confcache >/dev/null 2>&1; then :; else ++ if test -w "$cache_file"; then + test "x$cache_file" != "x/dev/null" && + { echo "$as_me:$LINENO: updating cache $cache_file" >&5 + echo "$as_me: updating cache $cache_file" >&6;} +@@ -6351,7 +6373,8 @@ + ## M4sh Initialization. ## + ## --------------------- ## + +-# Be Bourne compatible ++# Be more Bourne compatible ++DUALCASE=1; export DUALCASE # for MKS sh + if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then + emulate sh + NULLCMD=: +@@ -6360,10 +6383,13 @@ + alias -g '${1+"$@"}'='"$@"' + setopt NO_GLOB_SUBST + else +- case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac ++ case `(set -o) 2>/dev/null` in ++ *posix*) set -o posix ;; ++esac ++ + fi +-BIN_SH=xpg4; export BIN_SH # for Tru64 +-DUALCASE=1; export DUALCASE # for MKS sh ++ ++ + + + # PATH needs CR +@@ -6532,7 +6558,7 @@ + } + + +-if (dirname -- /) >/dev/null 2>&1; then ++if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then + as_dirname=dirname + else + as_dirname=false +@@ -6587,19 +6613,28 @@ + as_mkdir_p=false + fi + +-# Find out whether ``test -x'' works. Don't use a zero-byte file, as +-# systems may use methods other than mode bits to determine executability. +-cat >conf$$.file <<_ASEOF +-#! /bin/sh +-exit 0 +-_ASEOF +-chmod +x conf$$.file +-if test -x conf$$.file >/dev/null 2>&1; then +- as_executable_p="test -x" ++if test -x / >/dev/null 2>&1; then ++ as_test_x='test -x' + else +- as_executable_p=: ++ if ls -dL / >/dev/null 2>&1; then ++ as_ls_L_option=L ++ else ++ as_ls_L_option= ++ fi ++ as_test_x=' ++ eval sh -c '\'' ++ if test -d "$1"; then ++ test -d "$1/."; ++ else ++ case $1 in ++ -*)set "./$1";; ++ esac; ++ case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in ++ ???[sx]*):;;*)false;;esac;fi ++ '\'' sh ++ ' + fi +-rm -f conf$$.file ++as_executable_p=$as_test_x + + # Sed expression to map a string onto a valid CPP name. + as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" +@@ -6615,7 +6650,7 @@ + # values after options handling. + ac_log=" + This file was extended by KQ $as_me 0.99, which was +-generated by GNU Autoconf 2.59d. Invocation command line was ++generated by GNU Autoconf 2.61. Invocation command line was + + CONFIG_FILES = $CONFIG_FILES + CONFIG_HEADERS = $CONFIG_HEADERS +@@ -6644,7 +6679,7 @@ + Usage: $0 [OPTIONS] [FILE]... + + -h, --help print this help, then exit +- -V, --version print version number, then exit ++ -V, --version print version number and configuration settings, then exit + -q, --quiet do not print progress messages + -d, --debug don't remove temporary files + --recheck update $as_me by reconfiguring in the same conditions +@@ -6668,8 +6703,8 @@ + cat >>$CONFIG_STATUS <<_ACEOF + ac_cs_version="\\ + KQ config.status 0.99 +-configured by $0, generated by GNU Autoconf 2.59d, +- with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\" ++configured by $0, generated by GNU Autoconf 2.61, ++ with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\" + + Copyright (C) 2006 Free Software Foundation, Inc. + This config.status script is free software; the Free Software Foundation +@@ -6678,6 +6713,7 @@ + ac_pwd='$ac_pwd' + srcdir='$srcdir' + INSTALL='$INSTALL' ++MKDIR_P='$MKDIR_P' + _ACEOF + + cat >>$CONFIG_STATUS <<\_ACEOF +@@ -6748,10 +6784,10 @@ + _ACEOF + cat >>$CONFIG_STATUS <<_ACEOF + if \$ac_cs_recheck; then +- echo "running CONFIG_SHELL=$SHELL $SHELL $0 " $ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 ++ echo "running CONFIG_SHELL=$SHELL $SHELL $0 "$ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6 + CONFIG_SHELL=$SHELL + export CONFIG_SHELL +- exec $SHELL "$0" $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion ++ exec $SHELL "$0"$ac_configure_args \$ac_configure_extra_args --no-create --no-recursion + fi + + _ACEOF +@@ -6894,6 +6930,7 @@ + INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim + INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim + INSTALL_DATA!$INSTALL_DATA$ac_delim ++am__isrc!$am__isrc$ac_delim + CYGPATH_W!$CYGPATH_W$ac_delim + PACKAGE!$PACKAGE$ac_delim + VERSION!$VERSION$ac_delim +@@ -6942,10 +6979,9 @@ + LIBOBJS!$LIBOBJS$ac_delim + PKG_CONFIG!$PKG_CONFIG$ac_delim + GTK_CFLAGS!$GTK_CFLAGS$ac_delim +-GTK_LIBS!$GTK_LIBS$ac_delim + _ACEOF + +- if test `grep -c "$ac_delim\$" conf$$subs.sed` = 97; then ++ if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then + break + elif $ac_last_try; then + { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 +@@ -6956,10 +6992,10 @@ + fi + done + +-ac_eof= +-if grep '^CEOF$' conf$$subs.sed >/dev/null; then +- ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF//p' conf$$subs.sed | sort -nru | sed 1q` +- ac_eof=`expr 0$ac_eof + 1` ++ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` ++if test -n "$ac_eof"; then ++ ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` ++ ac_eof=`expr $ac_eof + 1` + fi + + cat >>$CONFIG_STATUS <<_ACEOF +@@ -6984,6 +7020,7 @@ + ac_delim='%!_!# ' + for ac_last_try in false false false false false :; do + cat >conf$$subs.sed <<_ACEOF ++GTK_LIBS!$GTK_LIBS$ac_delim + MAPDRAW2!$MAPDRAW2$ac_delim + kq_use_2xsai!$kq_use_2xsai$ac_delim + kq_use_profile!$kq_use_profile$ac_delim +@@ -6994,7 +7031,7 @@ + LTLIBOBJS!$LTLIBOBJS$ac_delim + _ACEOF + +- if test `grep -c "$ac_delim\$" conf$$subs.sed` = 8; then ++ if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 9; then + break + elif $ac_last_try; then + { { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5 +@@ -7005,10 +7042,10 @@ + fi + done + +-ac_eof= +-if grep '^CEOF$' conf$$subs.sed >/dev/null; then +- ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF//p' conf$$subs.sed | sort -nru | sed 1q` +- ac_eof=`expr 0$ac_eof + 1` ++ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed` ++if test -n "$ac_eof"; then ++ ac_eof=`echo "$ac_eof" | sort -nru | sed 1q` ++ ac_eof=`expr $ac_eof + 1` + fi + + cat >>$CONFIG_STATUS <<_ACEOF +@@ -7221,12 +7258,17 @@ + [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; + *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; + esac ++ ac_MKDIR_P=$MKDIR_P ++ case $MKDIR_P in ++ [\\/$]* | ?:[\\/]* ) ;; ++ */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; ++ esac + _ACEOF + + cat >>$CONFIG_STATUS <<\_ACEOF + # If the template does not know about datarootdir, expand it. + # FIXME: This hack should be removed a few years after 2.60. +-ac_datarootdir_hack= ++ac_datarootdir_hack=; ac_datarootdir_seen= + + case `sed -n '/datarootdir/ { + p +@@ -7238,7 +7280,7 @@ + /@localedir@/p + /@mandir@/p + ' $ac_file_inputs` in +-*datarootdir*) ;; ++*datarootdir*) ac_datarootdir_seen=yes;; + *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) + { echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 + echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} +@@ -7274,9 +7316,18 @@ + s&@abs_builddir@&$ac_abs_builddir&;t t + s&@abs_top_builddir@&$ac_abs_top_builddir&;t t + s&@INSTALL@&$ac_INSTALL&;t t ++s&@MKDIR_P@&$ac_MKDIR_P&;t t + $ac_datarootdir_hack + " $ac_file_inputs | sed -f "$tmp/subs-1.sed" | sed -f "$tmp/subs-2.sed" >$tmp/out + ++test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && ++ { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && ++ { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && ++ { echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir' ++which seems to be undefined. Please make sure it is defined." >&5 ++echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' ++which seems to be undefined. Please make sure it is defined." >&2;} ++ + rm -f "$tmp/stdin" + case $ac_file in + -) cat "$tmp/out"; rm -f "$tmp/out";; +@@ -7287,18 +7338,6 @@ + # + # CONFIG_HEADER + # +- +- # These sed commands are passed to sed as "A NAME B PARAMS C VALUE D", where +- # NAME is the cpp macro being defined, VALUE is the value it is being given. +- # PARAMS is the parameter list in the macro definition--in most cases, it's +- # just an empty string. +- # +- ac_dA='s,^\([ ]*#[ ]*\)[^ ]*\([ ][ ]*' +- ac_dB='\)[ (].*$,\1define\2' +- ac_dC=' ' +- ac_dD=' ,' +- +- ac_word_regexp=[_$as_cr_Letters][_$as_cr_alnum]* + _ACEOF + + # Transform confdefs.h into a sed script `conftest.defines', that +@@ -7312,6 +7351,15 @@ + # symbol, which is useless. But do not sort them, since the last + # AC_DEFINE must be honored. + ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* ++# These sed commands are passed to sed as "A NAME B PARAMS C VALUE D", where ++# NAME is the cpp macro being defined, VALUE is the value it is being given. ++# PARAMS is the parameter list in the macro definition--in most cases, it's ++# just an empty string. ++ac_dA='s,^\\([ #]*\\)[^ ]*\\([ ]*' ++ac_dB='\\)[ (].*,\\1define\\2' ++ac_dC=' ' ++ac_dD=' ,' ++ + uniq confdefs.h | + sed -n ' + t rset +@@ -7321,9 +7369,8 @@ + d + :ok + s/[\\&,]/\\&/g +- s/[\\$`]/\\&/g +- s/^\('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/${ac_dA}\1$ac_dB\2${ac_dC}\3$ac_dD/p +- s/^\('"$ac_word_re"'\)[ ]*\(.*\)/${ac_dA}\1$ac_dB${ac_dC}\2$ac_dD/p ++ s/^\('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/ '"$ac_dA"'\1'"$ac_dB"'\2'"${ac_dC}"'\3'"$ac_dD"'/p ++ s/^\('"$ac_word_re"'\)[ ]*\(.*\)/'"$ac_dA"'\1'"$ac_dB$ac_dC"'\2'"$ac_dD"'/p + ' >>conftest.defines + + # Remove the space that was appended to ease matching. +@@ -7335,7 +7382,7 @@ + s,^[ #]*u.*,/* & */,' >>conftest.defines + + # Break up conftest.defines: +-ac_max_sed_lines=96 ++ac_max_sed_lines=50 + + # First sed command is: sed -f defines.sed $ac_file_inputs >"$tmp/out1" + # Second one is: sed -f defines.sed "$tmp/out1" >"$tmp/out2" +@@ -7348,12 +7395,14 @@ + while : + do + # Write a here document: +- echo ' # First, check the format of the line: +- cat >"$tmp/defines.sed" <>$CONFIG_STATUS <<_ACEOF ++ # First, check the format of the line: ++ cat >"\$tmp/defines.sed" <<\\CEOF ++/^[ ]*#[ ]*undef[ ][ ]*$ac_word_re[ ]*\$/b def ++/^[ ]*#[ ]*define[ ][ ]*$ac_word_re[( ]/b def + b +-:def' >>$CONFIG_STATUS ++:def ++_ACEOF + sed ${ac_max_sed_lines}q conftest.defines >>$CONFIG_STATUS + echo 'CEOF + sed -f "$tmp/defines.sed"' "$ac_in >$ac_out" >>$CONFIG_STATUS +@@ -7432,8 +7481,9 @@ + # some people rename them; so instead we look at the file content. + # Grep'ing the first line is not enough: some people post-process + # each Makefile.in and add a new line on top of each file to say so. +- # So let's grep whole file. +- if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then ++ # Grep'ing the whole file is not good either: AIX grep has a line ++ # limit of 2048, but all sed's we know have understand at least 4000. ++ if sed 10q "$mf" | grep '^#.*generated by automake' > /dev/null 2>&1; then + dirpart=`$as_dirname -- "$mf" || + $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ + X"$mf" : 'X\(//\)[^/]' \| \ +Index: kq-0.99.cvs20060528/depcomp +=================================================================== +--- kq-0.99.cvs20060528.orig/depcomp 2007-02-09 15:14:39.000000000 +0100 ++++ kq-0.99.cvs20060528/depcomp 2007-02-09 15:15:32.000000000 +0100 +@@ -1,9 +1,10 @@ + #! /bin/sh + # depcomp - compile a program generating dependencies as side-effects + +-scriptversion=2005-07-09.11 ++scriptversion=2006-10-15.18 + +-# Copyright (C) 1999, 2000, 2003, 2004, 2005 Free Software Foundation, Inc. ++# Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006 Free Software ++# Foundation, Inc. + + # This program is free software; you can redistribute it and/or modify + # it under the terms of the GNU General Public License as published by +@@ -91,7 +92,20 @@ + ## gcc 3 implements dependency tracking that does exactly what + ## we want. Yay! Note: for some reason libtool 1.4 doesn't like + ## it if -MD -MP comes after the -MF stuff. Hmm. +- "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" ++## Unfortunately, FreeBSD c89 acceptance of flags depends upon ++## the command line argument order; so add the flags where they ++## appear in depend2.am. Note that the slowdown incurred here ++## affects only configure: in makefiles, %FASTDEP% shortcuts this. ++ for arg ++ do ++ case $arg in ++ -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; ++ *) set fnord "$@" "$arg" ;; ++ esac ++ shift # fnord ++ shift # $arg ++ done ++ "$@" + stat=$? + if test $stat -eq 0; then : + else +@@ -276,6 +290,46 @@ + rm -f "$tmpdepfile" + ;; + ++hp2) ++ # The "hp" stanza above does not work with aCC (C++) and HP's ia64 ++ # compilers, which have integrated preprocessors. The correct option ++ # to use with these is +Maked; it writes dependencies to a file named ++ # 'foo.d', which lands next to the object file, wherever that ++ # happens to be. ++ # Much of this is similar to the tru64 case; see comments there. ++ dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` ++ test "x$dir" = "x$object" && dir= ++ base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` ++ if test "$libtool" = yes; then ++ tmpdepfile1=$dir$base.d ++ tmpdepfile2=$dir.libs/$base.d ++ "$@" -Wc,+Maked ++ else ++ tmpdepfile1=$dir$base.d ++ tmpdepfile2=$dir$base.d ++ "$@" +Maked ++ fi ++ stat=$? ++ if test $stat -eq 0; then : ++ else ++ rm -f "$tmpdepfile1" "$tmpdepfile2" ++ exit $stat ++ fi ++ ++ for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" ++ do ++ test -f "$tmpdepfile" && break ++ done ++ if test -f "$tmpdepfile"; then ++ sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile" ++ # Add `dependent.h:' lines. ++ sed -ne '2,${; s/^ *//; s/ \\*$//; s/$/:/; p;}' "$tmpdepfile" >> "$depfile" ++ else ++ echo "#dummy" > "$depfile" ++ fi ++ rm -f "$tmpdepfile" "$tmpdepfile2" ++ ;; ++ + tru64) + # The Tru64 compiler uses -MD to generate dependencies as a side + # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'. +@@ -288,13 +342,13 @@ + + if test "$libtool" = yes; then + # With Tru64 cc, shared objects can also be used to make a +- # static library. This mecanism is used in libtool 1.4 series to ++ # static library. This mechanism is used in libtool 1.4 series to + # handle both shared and static libraries in a single compilation. + # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d. + # + # With libtool 1.5 this exception was removed, and libtool now + # generates 2 separate objects for the 2 libraries. These two +- # compilations output dependencies in in $dir.libs/$base.o.d and ++ # compilations output dependencies in $dir.libs/$base.o.d and + # in $dir$base.o.d. We have to check for both files, because + # one of the two compilations can be disabled. We should prefer + # $dir$base.o.d over $dir.libs/$base.o.d because the latter is +Index: kq-0.99.cvs20060528/install-sh +=================================================================== +--- kq-0.99.cvs20060528.orig/install-sh 2007-02-09 15:14:44.000000000 +0100 ++++ kq-0.99.cvs20060528/install-sh 2007-02-09 15:15:31.000000000 +0100 +@@ -1,7 +1,7 @@ + #!/bin/sh + # install - install a program, script, or datafile + +-scriptversion=2005-05-14.22 ++scriptversion=2006-10-14.15 + + # This originates from X11R5 (mit/util/scripts/install.sh), which was + # later released in X11R6 (xc/config/util/install.sh) with the +@@ -39,15 +39,24 @@ + # when there is no Makefile. + # + # This script is compatible with the BSD install script, but was written +-# from scratch. It can only install one file at a time, a restriction +-# shared with many OS's install programs. ++# from scratch. ++ ++nl=' ++' ++IFS=" "" $nl" + + # set DOITPROG to echo to test this script + + # Don't use :- since 4.3BSD and earlier shells don't like it. + doit="${DOITPROG-}" ++if test -z "$doit"; then ++ doit_exec=exec ++else ++ doit_exec=$doit ++fi + +-# put in absolute paths if you don't have them in your path; or use env. vars. ++# Put in absolute file names if you don't have them in your path; ++# or use environment vars. + + mvprog="${MVPROG-mv}" + cpprog="${CPPROG-cp}" +@@ -58,7 +67,13 @@ + rmprog="${RMPROG-rm}" + mkdirprog="${MKDIRPROG-mkdir}" + +-chmodcmd="$chmodprog 0755" ++posix_glob= ++posix_mkdir= ++ ++# Desired mode of installed file. ++mode=0755 ++ ++chmodcmd=$chmodprog + chowncmd= + chgrpcmd= + stripcmd= +@@ -95,7 +110,7 @@ + CHGRPPROG CHMODPROG CHOWNPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG + " + +-while test -n "$1"; do ++while test $# -ne 0; do + case $1 in + -c) shift + continue;; +@@ -111,9 +126,15 @@ + + --help) echo "$usage"; exit $?;; + +- -m) chmodcmd="$chmodprog $2" ++ -m) mode=$2 + shift + shift ++ case $mode in ++ *' '* | *' '* | *' ++'* | *'*'* | *'?'* | *'['*) ++ echo "$0: invalid mode: $mode" >&2 ++ exit 1;; ++ esac + continue;; + + -o) chowncmd="$chownprog $2" +@@ -136,25 +157,33 @@ + + --version) echo "$0 $scriptversion"; exit $?;; + +- *) # When -d is used, all remaining arguments are directories to create. +- # When -t is used, the destination is already specified. +- test -n "$dir_arg$dstarg" && break +- # Otherwise, the last argument is the destination. Remove it from $@. +- for arg +- do +- if test -n "$dstarg"; then +- # $@ is not empty: it contains at least $arg. +- set fnord "$@" "$dstarg" +- shift # fnord +- fi +- shift # arg +- dstarg=$arg +- done ++ --) shift + break;; ++ ++ -*) echo "$0: invalid option: $1" >&2 ++ exit 1;; ++ ++ *) break;; + esac + done + +-if test -z "$1"; then ++if test $# -ne 0 && test -z "$dir_arg$dstarg"; then ++ # When -d is used, all remaining arguments are directories to create. ++ # When -t is used, the destination is already specified. ++ # Otherwise, the last argument is the destination. Remove it from $@. ++ for arg ++ do ++ if test -n "$dstarg"; then ++ # $@ is not empty: it contains at least $arg. ++ set fnord "$@" "$dstarg" ++ shift # fnord ++ fi ++ shift # arg ++ dstarg=$arg ++ done ++fi ++ ++if test $# -eq 0; then + if test -z "$dir_arg"; then + echo "$0: no input file specified." >&2 + exit 1 +@@ -164,6 +193,33 @@ + exit 0 + fi + ++if test -z "$dir_arg"; then ++ trap '(exit $?); exit' 1 2 13 15 ++ ++ # Set umask so as not to create temps with too-generous modes. ++ # However, 'strip' requires both read and write access to temps. ++ case $mode in ++ # Optimize common cases. ++ *644) cp_umask=133;; ++ *755) cp_umask=22;; ++ ++ *[0-7]) ++ if test -z "$stripcmd"; then ++ u_plus_rw= ++ else ++ u_plus_rw='% 200' ++ fi ++ cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; ++ *) ++ if test -z "$stripcmd"; then ++ u_plus_rw= ++ else ++ u_plus_rw=,u+rw ++ fi ++ cp_umask=$mode$u_plus_rw;; ++ esac ++fi ++ + for src + do + # Protect names starting with `-'. +@@ -173,15 +229,11 @@ + + if test -n "$dir_arg"; then + dst=$src +- src= +- +- if test -d "$dst"; then +- mkdircmd=: +- chmodcmd= +- else +- mkdircmd=$mkdirprog +- fi ++ dstdir=$dst ++ test -d "$dstdir" ++ dstdir_status=$? + else ++ + # Waiting for this to be detected by the "$cpprog $src $dsttmp" command + # might cause directories to be created, which would be especially bad + # if $src (and thus $dsttmp) contains '*'. +@@ -208,53 +260,188 @@ + echo "$0: $dstarg: Is a directory" >&2 + exit 1 + fi +- dst=$dst/`basename "$src"` ++ dstdir=$dst ++ dst=$dstdir/`basename "$src"` ++ dstdir_status=0 ++ else ++ # Prefer dirname, but fall back on a substitute if dirname fails. ++ dstdir=` ++ (dirname "$dst") 2>/dev/null || ++ expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ ++ X"$dst" : 'X\(//\)[^/]' \| \ ++ X"$dst" : 'X\(//\)$' \| \ ++ X"$dst" : 'X\(/\)' \| . 2>/dev/null || ++ echo X"$dst" | ++ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\/\)[^/].*/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\/\)$/{ ++ s//\1/ ++ q ++ } ++ /^X\(\/\).*/{ ++ s//\1/ ++ q ++ } ++ s/.*/./; q' ++ ` ++ ++ test -d "$dstdir" ++ dstdir_status=$? + fi + fi + +- # This sed command emulates the dirname command. +- dstdir=`echo "$dst" | sed -e 's,/*$,,;s,[^/]*$,,;s,/*$,,;s,^$,.,'` +- +- # Make sure that the destination directory exists. ++ obsolete_mkdir_used=false + +- # Skip lots of stat calls in the usual case. +- if test ! -d "$dstdir"; then +- defaultIFS=' +- ' +- IFS="${IFS-$defaultIFS}" +- +- oIFS=$IFS +- # Some sh's can't handle IFS=/ for some reason. +- IFS='%' +- set x `echo "$dstdir" | sed -e 's@/@%@g' -e 's@^%@/@'` +- shift +- IFS=$oIFS ++ if test $dstdir_status != 0; then ++ case $posix_mkdir in ++ '') ++ # Create intermediate dirs using mode 755 as modified by the umask. ++ # This is like FreeBSD 'install' as of 1997-10-28. ++ umask=`umask` ++ case $stripcmd.$umask in ++ # Optimize common cases. ++ *[2367][2367]) mkdir_umask=$umask;; ++ .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; ++ ++ *[0-7]) ++ mkdir_umask=`expr $umask + 22 \ ++ - $umask % 100 % 40 + $umask % 20 \ ++ - $umask % 10 % 4 + $umask % 2 ++ `;; ++ *) mkdir_umask=$umask,go-w;; ++ esac ++ ++ # With -d, create the new directory with the user-specified mode. ++ # Otherwise, rely on $mkdir_umask. ++ if test -n "$dir_arg"; then ++ mkdir_mode=-m$mode ++ else ++ mkdir_mode= ++ fi ++ ++ posix_mkdir=false ++ case $umask in ++ *[123567][0-7][0-7]) ++ # POSIX mkdir -p sets u+wx bits regardless of umask, which ++ # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ++ ;; ++ *) ++ tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ ++ trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 ++ ++ if (umask $mkdir_umask && ++ exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 ++ then ++ if test -z "$dir_arg" || { ++ # Check for POSIX incompatibilities with -m. ++ # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or ++ # other-writeable bit of parent directory when it shouldn't. ++ # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. ++ ls_ld_tmpdir=`ls -ld "$tmpdir"` ++ case $ls_ld_tmpdir in ++ d????-?r-*) different_mode=700;; ++ d????-?--*) different_mode=755;; ++ *) false;; ++ esac && ++ $mkdirprog -m$different_mode -p -- "$tmpdir" && { ++ ls_ld_tmpdir_1=`ls -ld "$tmpdir"` ++ test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" ++ } ++ } ++ then posix_mkdir=: ++ fi ++ rmdir "$tmpdir/d" "$tmpdir" ++ else ++ # Remove any dirs left behind by ancient mkdir implementations. ++ rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null ++ fi ++ trap '' 0;; ++ esac;; ++ esac + +- pathcomp= ++ if ++ $posix_mkdir && ( ++ umask $mkdir_umask && ++ $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ++ ) ++ then : ++ else + +- while test $# -ne 0 ; do +- pathcomp=$pathcomp$1 ++ # The umask is ridiculous, or mkdir does not conform to POSIX, ++ # or it failed possibly due to a race condition. Create the ++ # directory the slow way, step by step, checking for races as we go. ++ ++ case $dstdir in ++ /*) prefix=/ ;; ++ -*) prefix=./ ;; ++ *) prefix= ;; ++ esac ++ ++ case $posix_glob in ++ '') ++ if (set -f) 2>/dev/null; then ++ posix_glob=true ++ else ++ posix_glob=false ++ fi ;; ++ esac ++ ++ oIFS=$IFS ++ IFS=/ ++ $posix_glob && set -f ++ set fnord $dstdir + shift +- if test ! -d "$pathcomp"; then +- $mkdirprog "$pathcomp" +- # mkdir can fail with a `File exist' error in case several +- # install-sh are creating the directory concurrently. This +- # is OK. +- test -d "$pathcomp" || exit ++ $posix_glob && set +f ++ IFS=$oIFS ++ ++ prefixes= ++ ++ for d ++ do ++ test -z "$d" && continue ++ ++ prefix=$prefix$d ++ if test -d "$prefix"; then ++ prefixes= ++ else ++ if $posix_mkdir; then ++ (umask=$mkdir_umask && ++ $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break ++ # Don't fail if two instances are running concurrently. ++ test -d "$prefix" || exit 1 ++ else ++ case $prefix in ++ *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; ++ *) qprefix=$prefix;; ++ esac ++ prefixes="$prefixes '$qprefix'" ++ fi ++ fi ++ prefix=$prefix/ ++ done ++ ++ if test -n "$prefixes"; then ++ # Don't fail if two instances are running concurrently. ++ (umask $mkdir_umask && ++ eval "\$doit_exec \$mkdirprog $prefixes") || ++ test -d "$dstdir" || exit 1 ++ obsolete_mkdir_used=true + fi +- pathcomp=$pathcomp/ +- done ++ fi + fi + + if test -n "$dir_arg"; then +- $doit $mkdircmd "$dst" \ +- && { test -z "$chowncmd" || $doit $chowncmd "$dst"; } \ +- && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } \ +- && { test -z "$stripcmd" || $doit $stripcmd "$dst"; } \ +- && { test -z "$chmodcmd" || $doit $chmodcmd "$dst"; } +- ++ { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && ++ { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && ++ { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || ++ test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 + else +- dstfile=`basename "$dst"` + + # Make a couple of temp file names in the proper directory. + dsttmp=$dstdir/_inst.$$_ +@@ -262,10 +449,9 @@ + + # Trap to clean up those temp files at exit. + trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 +- trap '(exit $?); exit' 1 2 13 15 + + # Copy the file name to the temp name. +- $doit $cpprog "$src" "$dsttmp" && ++ (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && + + # and set any options; do chmod last to preserve setuid bits. + # +@@ -276,10 +462,10 @@ + { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } \ + && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } \ + && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } \ +- && { test -z "$chmodcmd" || $doit $chmodcmd "$dsttmp"; } && ++ && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && + + # Now rename the file to the real destination. +- { $doit $mvcmd -f "$dsttmp" "$dstdir/$dstfile" 2>/dev/null \ ++ { $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null \ + || { + # The rename failed, perhaps because mv can't rename something else + # to itself, or perhaps because mv is so ancient that it does not +@@ -291,11 +477,12 @@ + # reasons. In this case, the final cleanup might fail but the new + # file should still install successfully. + { +- if test -f "$dstdir/$dstfile"; then +- $doit $rmcmd -f "$dstdir/$dstfile" 2>/dev/null \ +- || $doit $mvcmd -f "$dstdir/$dstfile" "$rmtmp" 2>/dev/null \ ++ if test -f "$dst"; then ++ $doit $rmcmd -f "$dst" 2>/dev/null \ ++ || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null \ ++ && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; }; }\ + || { +- echo "$0: cannot unlink or rename $dstdir/$dstfile" >&2 ++ echo "$0: cannot unlink or rename $dst" >&2 + (exit 1); exit 1 + } + else +@@ -304,16 +491,13 @@ + } && + + # Now rename the file to the real destination. +- $doit $mvcmd "$dsttmp" "$dstdir/$dstfile" ++ $doit $mvcmd "$dsttmp" "$dst" + } +- } +- fi || { (exit 1); exit 1; } +-done ++ } || exit 1 + +-# The final little trick to "correctly" pass the exit status to the exit trap. +-{ +- (exit 0); exit 0 +-} ++ trap '' 0 ++ fi ++done + + # Local variables: + # eval: (add-hook 'write-file-hooks 'time-stamp) +Index: kq-0.99.cvs20060528/missing +=================================================================== +--- kq-0.99.cvs20060528.orig/missing 2007-02-09 15:14:51.000000000 +0100 ++++ kq-0.99.cvs20060528/missing 2007-02-09 15:15:31.000000000 +0100 +@@ -1,9 +1,9 @@ + #! /bin/sh + # Common stub for a few missing GNU programs while installing. + +-scriptversion=2005-06-08.21 ++scriptversion=2006-05-10.23 + +-# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005 ++# Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006 + # Free Software Foundation, Inc. + # Originally by Fran,cois Pinard , 1996. + +@@ -33,6 +33,8 @@ + fi + + run=: ++sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p' ++sed_minuso='s/.* -o \([^ ]*\).*/\1/p' + + # In the cases where this matters, `missing' is being run in the + # srcdir already. +@@ -44,7 +46,7 @@ + + msg="missing on your system" + +-case "$1" in ++case $1 in + --run) + # Try to run requested program, and just exit if it succeeds. + run= +@@ -77,6 +79,7 @@ + aclocal touch file \`aclocal.m4' + autoconf touch file \`configure' + autoheader touch file \`config.h.in' ++ autom4te touch the output file, or create a stub one + automake touch all \`Makefile.in' files + bison create \`y.tab.[ch]', if possible, from existing .[ch] + flex create \`lex.yy.c', if possible, from existing .c +@@ -106,7 +109,7 @@ + # Now exit if we have it, but it failed. Also exit now if we + # don't have it and --version was passed (most likely to detect + # the program). +-case "$1" in ++case $1 in + lex|yacc) + # Not GNU programs, they don't have --version. + ;; +@@ -135,7 +138,7 @@ + + # If it does not exist, or fails to run (possibly an outdated version), + # try to emulate it. +-case "$1" in ++case $1 in + aclocal*) + echo 1>&2 "\ + WARNING: \`$1' is $msg. You should only need it if +@@ -164,7 +167,7 @@ + test -z "$files" && files="config.h" + touch_files= + for f in $files; do +- case "$f" in ++ case $f in + *:*) touch_files="$touch_files "`echo "$f" | + sed -e 's/^[^:]*://' -e 's/:.*//'`;; + *) touch_files="$touch_files $f.in";; +@@ -192,8 +195,8 @@ + You can get \`$1' as part of \`Autoconf' from any GNU + archive site." + +- file=`echo "$*" | sed -n 's/.*--output[ =]*\([^ ]*\).*/\1/p'` +- test -z "$file" && file=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'` ++ file=`echo "$*" | sed -n "$sed_output"` ++ test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` + if test -f "$file"; then + touch $file + else +@@ -214,25 +217,25 @@ + in order for those modifications to take effect. You can get + \`Bison' from any GNU archive site." + rm -f y.tab.c y.tab.h +- if [ $# -ne 1 ]; then ++ if test $# -ne 1; then + eval LASTARG="\${$#}" +- case "$LASTARG" in ++ case $LASTARG in + *.y) + SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` +- if [ -f "$SRCFILE" ]; then ++ if test -f "$SRCFILE"; then + cp "$SRCFILE" y.tab.c + fi + SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` +- if [ -f "$SRCFILE" ]; then ++ if test -f "$SRCFILE"; then + cp "$SRCFILE" y.tab.h + fi + ;; + esac + fi +- if [ ! -f y.tab.h ]; then ++ if test ! -f y.tab.h; then + echo >y.tab.h + fi +- if [ ! -f y.tab.c ]; then ++ if test ! -f y.tab.c; then + echo 'main() { return 0; }' >y.tab.c + fi + ;; +@@ -244,18 +247,18 @@ + in order for those modifications to take effect. You can get + \`Flex' from any GNU archive site." + rm -f lex.yy.c +- if [ $# -ne 1 ]; then ++ if test $# -ne 1; then + eval LASTARG="\${$#}" +- case "$LASTARG" in ++ case $LASTARG in + *.l) + SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` +- if [ -f "$SRCFILE" ]; then ++ if test -f "$SRCFILE"; then + cp "$SRCFILE" lex.yy.c + fi + ;; + esac + fi +- if [ ! -f lex.yy.c ]; then ++ if test ! -f lex.yy.c; then + echo 'main() { return 0; }' >lex.yy.c + fi + ;; +@@ -267,11 +270,9 @@ + \`Help2man' package in order for those modifications to take + effect. You can get \`Help2man' from any GNU archive site." + +- file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` +- if test -z "$file"; then +- file=`echo "$*" | sed -n 's/.*--output=\([^ ]*\).*/\1/p'` +- fi +- if [ -f "$file" ]; then ++ file=`echo "$*" | sed -n "$sed_output"` ++ test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` ++ if test -f "$file"; then + touch $file + else + test -z "$file" || exec >$file +@@ -289,11 +290,17 @@ + DU, IRIX). You might want to install the \`Texinfo' package or + the \`GNU make' package. Grab either from any GNU archive site." + # The file to touch is that specified with -o ... +- file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'` ++ file=`echo "$*" | sed -n "$sed_output"` ++ test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` + if test -z "$file"; then + # ... or it is the one specified with @setfilename ... + infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` +- file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $infile` ++ file=`sed -n ' ++ /^@setfilename/{ ++ s/.* \([^ ]*\) *$/\1/ ++ p ++ q ++ }' $infile` + # ... or it is derived from the source name (dir/f.texi becomes f.info) + test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info + fi +@@ -317,13 +324,13 @@ + fi + firstarg="$1" + if shift; then +- case "$firstarg" in ++ case $firstarg in + *o*) + firstarg=`echo "$firstarg" | sed s/o//` + tar "$firstarg" "$@" && exit 0 + ;; + esac +- case "$firstarg" in ++ case $firstarg in + *h*) + firstarg=`echo "$firstarg" | sed s/h//` + tar "$firstarg" "$@" && exit 0 --- kq-0.99.cvs20060528.orig/debian/patches/020_cosmetic_credits.diff +++ kq-0.99.cvs20060528/debian/patches/020_cosmetic_credits.diff @@ -0,0 +1,13 @@ +Index: kq-0.99.cvs20060528/src/credits.c +=================================================================== +--- kq-0.99.cvs20060528.orig/src/credits.c 2005-11-12 10:32:25.000000000 +0100 ++++ kq-0.99.cvs20060528/src/credits.c 2006-05-28 00:17:31.000000000 +0200 +@@ -131,7 +131,7 @@ + } + e = 320 - ticks; + if (e != last_e) { +- x0 = (320 - wk->w) / 2; ++ x0 = (320 - wk->w) / 2 + 8; + for (i = 0; i < wk->w; ++i) { + blit (wk, double_buffer, i, ease (i + e), i + x0, 185, 1, 32); + } --- kq-0.99.cvs20060528.orig/debian/patches/020_stretch_view.diff +++ kq-0.99.cvs20060528/debian/patches/020_stretch_view.diff @@ -0,0 +1,13 @@ +Index: kq-0.99.cvs20060528/src/kq.c +=================================================================== +--- kq-0.99.cvs20060528.orig/src/kq.c 2006-05-28 00:12:34.000000000 +0200 ++++ kq-0.99.cvs20060528/src/kq.c 2006-05-28 00:17:31.000000000 +0200 +@@ -162,7 +162,7 @@ + /*! True if the intro is to be skipped (the bit where the heroes learn of the quest) */ + unsigned char skip_intro = 0; + /*! Graphics mode settings */ +-unsigned char wait_retrace = 0, windowed = 0, stretch_view = 0, cpu_usage = 0; ++unsigned char wait_retrace = 0, windowed = 0, stretch_view = 1, cpu_usage = 0; + /*! Current sequence position of animated tiles */ + unsigned short tilex[MAX_TILES]; + /*! Current 'time' for animated tiles. When this increments to adata[].delay, --- kq-0.99.cvs20060528.orig/debian/patches/000_scripts_in_pkglibdir.diff +++ kq-0.99.cvs20060528/debian/patches/000_scripts_in_pkglibdir.diff @@ -0,0 +1,74 @@ +Index: kq-0.99.cvs20060528/Makefile.am +=================================================================== +--- kq-0.99.cvs20060528.orig/Makefile.am 2006-05-28 00:12:23.000000000 +0200 ++++ kq-0.99.cvs20060528/Makefile.am 2006-05-28 08:23:02.000000000 +0200 +@@ -82,7 +82,7 @@ + scripts/pass.lob scripts/tunnel.lob scripts/cult.lob \ + scripts/shrine.lob + MOSTLYCLEANFILES = $(cscripts_DATA) +-cscriptsdir = $(pkgdatadir)/scripts ++cscriptsdir = $(pkglibdir)/scripts + + EXTRA_DIST = scripts/bridge2.lua scripts/dville.lua \ + scripts/starting.lua scripts/bridge.lua scripts/estate.lua \ +@@ -115,7 +115,7 @@ + + dist_man_MANS = debian/kq.6 + +-AM_CFLAGS = -I$(top_srcdir)/include -DKQ_BIN=\"$(bindir)/KQ$(EXEEXT)\" -DKQ_DATA=\"$(pkgdatadir)\" ++AM_CFLAGS = -I$(top_srcdir)/include -DKQ_BIN=\"$(bindir)/kq$(EXEEXT)\" -DKQ_DATA=\"$(pkgdatadir)\" -DKQ_LIB=\"$(pkglibdir)\" + + if BUNDLE + all-local: KQ.app +Index: kq-0.99.cvs20060528/src/unix.c +=================================================================== +--- kq-0.99.cvs20060528.orig/src/unix.c 2006-05-28 00:12:35.000000000 +0200 ++++ kq-0.99.cvs20060528/src/unix.c 2006-05-28 07:43:17.000000000 +0200 +@@ -37,7 +37,8 @@ + + static int init_path = 0; + static char user_dir[PATH_MAX]; +-static char game_dir[PATH_MAX]; ++static char data_dir[PATH_MAX]; ++static char lib_dir[PATH_MAX]; + + + +@@ -78,29 +79,31 @@ + get_executable_name (exe, sizeof (exe)); + if (strcmp (exe, KQ_BIN) == 0) { + /* It's in its proper installed location */ +- strcpy (game_dir, KQ_DATA); ++ strcpy (data_dir, KQ_DATA); ++ strcpy (lib_dir, KQ_LIB); + } else { + /* Not installed, development version */ +- strcpy (game_dir, "."); ++ strcpy (data_dir, "."); ++ strcpy (lib_dir, "."); + } + init_path = 1; + } + switch (dir) { + case DATA_DIR: +- sprintf (ans, "%s/data/%s", game_dir, file); ++ sprintf (ans, "%s/data/%s", data_dir, file); + break; + case MUSIC_DIR: +- sprintf (ans, "%s/music/%s", game_dir, file); ++ sprintf (ans, "%s/music/%s", data_dir, file); + break; + case MAP_DIR: +- sprintf (ans, "%s/maps/%s", game_dir, file); ++ sprintf (ans, "%s/maps/%s", data_dir, file); + break; + case SAVE_DIR: + case SETTINGS_DIR: + sprintf (ans, "%s/%s", user_dir, file); + break; + case SCRIPT_DIR: +- sprintf (ans, "%s/scripts/%s", game_dir, file); ++ sprintf (ans, "%s/scripts/%s", lib_dir, file); + break; + default: + return NULL; --- kq-0.99.cvs20060528.orig/debian/patches/series +++ kq-0.99.cvs20060528/debian/patches/series @@ -0,0 +1,8 @@ +000_luac50.diff +000_scripts_in_pkglibdir.diff +001_kfreebsd_support.diff +010_rebootstrap.diff +020_alternate_keys.diff +020_cosmetic_credits.diff +020_stretch_view.diff +020_usr_share_games.diff --- kq-0.99.cvs20060528.orig/debian/rules +++ kq-0.99.cvs20060528/debian/rules @@ -0,0 +1,68 @@ +#!/usr/bin/make -f + +build: build-stamp +build-stamp: + dh_testdir + QUILT_PATCHES=debian/patches quilt push -a || test $$? = 2 + touch configure.ac + touch aclocal.m4 + touch configure + touch config.h.in + touch `find . -name Makefile.in` + ./configure --prefix=/usr --bindir=/usr/games --libdir=/usr/lib/games --datadir=/usr/share/games CFLAGS="-Wall -g -O2" + $(MAKE) + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + -$(MAKE) veryclean + rm -f `find maps -name '*.o' -o -name 'mapdraw'` + rm -f game.log #src/res.c + QUILT_PATCHES=debian/patches quilt pop -a -R || test $$? = 2 + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs -pkq usr/share/games/kq usr/share/doc + dh_installdirs -pkq-data usr/share/doc + $(MAKE) install DESTDIR=`pwd`/debian/tmp + dh_install --sourcedir=debian/tmp --list-missing + install -m 644 debian/kq.xpm debian/kq/usr/share/games/kq/ + ln -s kq-data `pwd`/debian/kq/usr/share/doc/kq + mkdir -p debian/kq/usr/share/applications + install -m 664 debian/kq.desktop debian/kq/usr/share/applications + +binary-indep: build install + dh_testdir -i + dh_testroot -i + dh_installdocs -i readme.txt + dh_installchangelogs -i ChangeLog + dh_compress -i + dh_fixperms -i + dh_installdeb -i + dh_shlibdeps -i + dh_gencontrol -i + dh_md5sums -i + dh_builddeb -i + +binary-arch: build install + dh_testdir -a + dh_testroot -a + dh_installmenu -a + dh_installman -a debian/kq.6 + dh_desktop -a + dh_strip -a + dh_compress -a + dh_fixperms -a + dh_installdeb -a + dh_shlibdeps -a + dh_gencontrol -a + dh_md5sums -a + dh_builddeb -a + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- kq-0.99.cvs20060528.orig/debian/kq.desktop +++ kq-0.99.cvs20060528/debian/kq.desktop @@ -0,0 +1,11 @@ +[Desktop Entry] +Encoding=UTF-8 +Type=Application +Version=1.4 +Name=KQ +Exec=kq +Terminal=false +Categories=Game;AdventureGame;RolePlaying; +Comment=RPG like Final Fantasy 1 +Comment[pt]=RPG (Estilo Final Fantasy 1) +Icon=/usr/share/games/kq/kq.xpm --- kq-0.99.cvs20060528.orig/debian/compat +++ kq-0.99.cvs20060528/debian/compat @@ -0,0 +1 @@ +4 --- kq-0.99.cvs20060528.orig/debian/kq.install +++ kq-0.99.cvs20060528/debian/kq.install @@ -0,0 +1,3 @@ +usr/games/kq +usr/lib/games +usr/share/man --- kq-0.99.cvs20060528.orig/debian/README.Debian +++ kq-0.99.cvs20060528/debian/README.Debian @@ -0,0 +1,12 @@ +Notes for the KQ package +======================== + +The story is currently unfinished, but you can expect to play between 5 +and 10 hours (depending on your skills) before reaching the end of the +current quest. + +Games can still be saved, so in your quest for the Opal Armor, if you +ever get a key to the mountain caves, save your game and wait for the +next release :-) + + -- Sam Hocevar Sat, 26 Apr 2003 10:31:06 +0200 --- kq-0.99.cvs20060528.orig/debian/changelog +++ kq-0.99.cvs20060528/debian/changelog @@ -0,0 +1,250 @@ +kq (0.99.cvs20060528-4) unstable; urgency=high + + * debian/patches/001_kfreebsd_support.diff: + + Fix a kFreeBSD FTBFS reported by Petr Salinger (Closes: #401626). + + * debian/control: + + Make package binNMUable by using ${source:Version}. + + Added XS-Vcs-Svn field. + + * debian/kq.desktop: + + Desktop file, courtesy of Lukas Fittl from the Ubuntu project + (Closes: #409869). + + -- Sam Hocevar (Debian packages) Fri, 9 Feb 2007 15:26:06 +0100 + +kq (0.99.cvs20060528-3) unstable; urgency=low + + * debian/control: + + Removed the kq/kq-data circular dependency. + + * debian/patches/000_scripts_in_pkglibdir.diff: + + New patch -- install scripts in pkglibdir instead of pkgdatadir. + + * debian/patches/010_rebootstrap.diff: + + New patch -- rebootstrap package in a separate patch. + + -- Sam Hocevar (Debian packages) Sun, 28 May 2006 07:54:39 +0200 + +kq (0.99.cvs20060528-2) unstable; urgency=low + + * debian/control: + + kq needs to depend on a newer version of kq-data because information + was added to the maps (markers). + + * debian/patches/020_usr_share_games.diff: + + Removed legacy useless addition of to include/kq.h from + this patch. + + -- Sam Hocevar (Debian packages) Sun, 28 May 2006 04:13:33 +0200 + +kq (0.99.cvs20060528-1) unstable; urgency=low + + * New CVS snapshot. + * Upstream greatly reduced CPU usage. + * Moving diagonally now works. + + * debian/control: + + Set policy to 3.7.2. + * debian/patches/020_misc.diff: Split patch. + + 020_cosmetic_credits.diff: slightly move the credits scrolling text. + + 020_alternate_keys.diff: add a set of more intuitive default keys. + + 020_usr_share_games.diff: allow installation of data in the standard + /usr/share/games directory. + + 020_stretch_view.diff: double-pixel window by default. + + -- Sam Hocevar (Debian packages) Sun, 28 May 2006 00:15:48 +0200 + +kq (0.99.cvs20060330-2) unstable; urgency=low + + * debian/control: + + Build-depend on liballegro4.2-dev (>= 2:4.2.0-4) to fix the missing + libxcursor-dev build-dependency (Closes: #360192). + + -- Sam Hocevar (Debian packages) Fri, 31 Mar 2006 11:19:58 +0200 + +kq (0.99.cvs20060330-1) unstable; urgency=low + + * Maintainer upload. + * Acknowledging previous NMU (Closes: #345246). Thanks to Luk Claes. + * New upstream CVS snapshot (Closes: #322677). + * This version asks for confirmation before quitting (Closes: #282446). + + * Moved development to Alioth. + * debian/rules + + Switched to quilt for patch handling. + * debian/control: + + Build-depend on quilt. + + Build-depend on lua50. + + -- Sam Hocevar (Debian packages) Thu, 30 Mar 2006 13:18:26 +0200 + +kq (0.98+cvs.20031006-6.1) unstable; urgency=high + + * Non-maintainer upload. + * Update dumb and aldmb build-deps to libdumb1-dev and libaldmb1-dev + (Closes: #345246). + * Make it build + + Change liblua41-dev build-deps to liblua40-dev. + + Change allegro build-deps to liballegro4.2-dev + + Use luac40 instead of luac + + -- Luk Claes Wed, 25 Jan 2006 19:15:29 +0100 + +kq (0.98+cvs.20031006-6) unstable; urgency=low + + * Rebuilt with a newer version of Allegro. A newer package of KQ will follow + but I first want to get rid of the old version of Allegro. + * debian/control: + + Set policy to 3.6.2.1. + * debian/copyright: + + Fixed the new FSF address. + + -- Sam Hocevar (Debian packages) Tue, 4 Oct 2005 01:37:52 +0200 + +kq (0.98+cvs.20031006-5) unstable; urgency=low + + * coliseum.lua: + + Applied missing part of previous patch. + (Closes: #225024). + + -- Sam Hocevar (Debian packages) Thu, 5 Aug 2004 23:47:31 +0200 + +kq (0.98+cvs.20031006-4) unstable; urgency=low + + * coliseum.lua: + + Applied patch from Peter Hull to fix a freeze after defeating Trayor + (Closes: #225024). + + -- Sam Hocevar (Debian packages) Tue, 3 Aug 2004 00:06:03 +0200 + +kq (0.98+cvs.20031006-3) unstable; urgency=low + + * debian/control: + + Set policy to 3.6.1.1. + * src/heroc.c: + + Display item description in battle item menu (Closes: #224973). + + -- Sam Hocevar (Debian packages) Sun, 25 Jul 2004 14:12:12 +0200 + +kq (0.98+cvs.20031006-2) unstable; urgency=low + + * scripts/tower.lua: + + Applied patch from that fixes the puzzle in the + tower (Closes: #217562). + + -- Sam Hocevar (Debian packages) Sun, 26 Oct 2003 15:03:23 +0100 + +kq (0.98+cvs.20031006-1) unstable; urgency=low + + * New CVS snapshot. As usual, lots of Debian fixes merged in HEAD. + * debian/rules: + + Moved platform-specific compiled scripts to /usr/lib/games. + + Clean using "make veryclean", not just "make clean". + * src/intrface.c: + + #include , not "lua.h", to fix "make depends" (Closes: #214283). + + -- Sam Hocevar (Debian packages) Mon, 6 Oct 2003 01:35:32 +0200 + +kq (0.98+cvs.20030615-2) unstable; urgency=low + + * debian/control: + + Set policy to 3.6.1.0. + + Wrote more meaningful long descriptions (Closes: #209866). + + -- Sam Hocevar (Debian packages) Thu, 2 Oct 2003 15:30:10 +0200 + +kq (0.98+cvs.20030615-1) unstable; urgency=low + + * New CVS snapshot. Upstream merged most Debian fixes in HEAD. + * debian/rules: + + Build the architecture-independant package in binary-arch instead of + doing everything in binary-indep (Closes: #197325). + + -- Sam Hocevar (Debian packages) Sun, 15 Jun 2003 02:34:13 +0200 + +kq (0.98+cvs.20030528-5) unstable; urgency=medium + + * Rebuilt with a version of liballegro that has a decent shlibs file, so + that we do not depend on an unavailable version (Closes: #197142). + + -- Sam Hocevar (Debian packages) Thu, 12 Jun 2003 15:14:30 +0200 + +kq (0.98+cvs.20030528-4) unstable; urgency=medium + + * Applied a patch from Steven Barker that hides the Invoke menu when no + suitable items are available (Closes: #196696). + * Fixed a bug in the SND_BAD sound effect that was blitting screen areas at + negative values during combats (Closes: #196700). + * Applied a patch from Robert Esplin that resets the gold counter when + creating a new game. + * Added a back buffer that gets used for special effects, so that we do + not clobber the other routines' back buffers. + + -- Sam Hocevar (Debian packages) Tue, 10 Jun 2003 03:11:37 +0200 + +kq (0.98+cvs.20030528-3) unstable; urgency=medium + + * Created an architecture-independant kq-data package (2.5MB) to save some + archive space. + + -- Sam Hocevar (Debian packages) Sun, 1 Jun 2003 15:53:49 +0200 + +kq (0.98+cvs.20030528-2) unstable; urgency=low + + * Fixed a bug in the stealing routine that prevented the enemy's inventory + from being updated. + + -- Sam Hocevar (Debian packages) Fri, 30 May 2003 13:26:24 +0200 + +kq (0.98+cvs.20030528-1) unstable; urgency=low + + * New CVS snapshot. + * Added overriding key bindings. Old bindings still work, and can still be + modified by the user, but the overriding ones are always active and are + more intuitive (see the manpage) (Closes: #194753, #193289). Also, it + avoids screwing the keybindings when loading a new game. + * F12 now properly saves screenshots to ~/.kq/ . + * Set policy to 3.5.10. + * Slightly reworked the icon colours because the 24-colour palette + limitation was dropped. + * Defaulted strech_view to 1 so that fullscreen works. + * Applied a patch from upstream to avoid potential partners becoming + unresponsive (Closes: #193896). + + -- Sam Hocevar (Debian packages) Wed, 28 May 2003 18:29:20 +0200 + +kq (0.98+cvs.20030512-2) unstable; urgency=low + + * Activated joystick button controls (Closes: #193363). + * Added a link to the KQ home page in the manual page. + * Fixed enemy.c so that fights do not become too easy (Closes: #193895). + + -- Samuel Hocevar Mon, 26 May 2003 11:06:29 +0200 + +kq (0.98+cvs.20030512-1) unstable; urgency=low + + * New CVS snapshot. + * Snapshot includes user-contributed patch for a crash on machines without + sound support (Closes: #192211). + * Fixed a bad index value in the inventory (Closes: #192946). + * Fixed a crash on exit due to combat.c messing around with bitmaps. + + -- Samuel Hocevar Mon, 12 May 2003 12:52:05 +0200 + +kq (0.98+cvs.20030503-1) unstable; urgency=low + + * New CVS snapshot. + * binary-arch now depends on the install rule (Closes: #191852). + + -- Samuel Hocevar Sun, 4 May 2003 14:51:02 +0200 + +kq (0.98+cvs.20030129-1) unstable; urgency=low + + * Initial Debian release (Closes: #190977). + * Created skeleton files for res.c generation. + * Added startup code to set ~/.kq/ as the working directory. + * Drew an icon for the KQ menu entry. + * Wrote a manpage for kq(6). + + -- Samuel Hocevar Sat, 26 Apr 2003 10:31:06 +0200 --- kq-0.99.cvs20060528.orig/debian/control +++ kq-0.99.cvs20060528/debian/control @@ -0,0 +1,30 @@ +Source: kq +Section: games +Priority: optional +Maintainer: Debian allegro packages maintainers +Uploaders: Sam Hocevar (Debian packages) +Standards-Version: 3.7.2 +Build-Depends: debhelper (>= 4.0), quilt, liballegro4.2-dev (>= 2:4.2.0-4), libaldmb1-dev, liblua50-dev, lua50 +XS-Vcs-Svn: svn://svn.debian.org/svn/pkg-allegro/unstable/kq/ + +Package: kq +Architecture: any +Depends: kq-data (= ${source:Version}), ${shlibs:Depends} +Description: adventure game in the spirit of Final Fantasy + KQ is an adventure game in the spirit of old console games such as Secret of + Mana, Final Fantasy or Zelda. + . + Choose your player amongst the eight different adventurers, visit towns, + buy weapons and equipment, learn magic, slash monsters, and maybe you will + eventually find the magical Staff of Xenarum! + +Package: kq-data +Architecture: all +Conflicts: kq (<< 0.98+cvs.20030528-3) +Replaces: kq (<< 0.98+cvs.20030528-3) +Description: graphics and audio data for kq + KQ is an adventure game in the spirit of old console games such as Secret of + Mana, Final Fantasy or Zelda. + . + This package contains the architecture-independent data for kq. For more + information, see the kq package. --- kq-0.99.cvs20060528.orig/debian/menu +++ kq-0.99.cvs20060528/debian/menu @@ -0,0 +1,3 @@ +?package(kq):needs="X11" section="Games/Adventure" \ + title="KQ" command="/usr/games/kq" \ + icon="/usr/share/games/kq/kq.xpm" --- kq-0.99.cvs20060528.orig/debian/kq-data.preinst +++ kq-0.99.cvs20060528/debian/kq-data.preinst @@ -0,0 +1,12 @@ +#!/bin/sh + +set -e + +DOCDIR="/usr/share/doc/kq-data" + +if [ -L "$DOCDIR" ]; then + rm -f "$DOCDIR" +fi + +#DEBHELPER# + --- kq-0.99.cvs20060528.orig/debian/kq.postinst +++ kq-0.99.cvs20060528/debian/kq.postinst @@ -0,0 +1,15 @@ +#!/bin/sh + +set -e + +DOCDIR="/usr/share/doc/kq" + +if [ -d "$DOCDIR" -a ! -L "$DOCDIR" ]; then + rmdir --ignore-fail-on-non-empty "$DOCDIR" + if [ ! -d "$DOCDIR" ]; then + ln -s kq-data "$DOCDIR" + fi +fi + +#DEBHELPER# +