--- exult-1.2.orig/audio/midi_drivers/fmopldrv.h +++ exult-1.2/audio/midi_drivers/fmopldrv.h @@ -76,7 +76,7 @@ /* output a packed midi command to the midi stream * valid only if mode is MO_SIMPLE */ - void OplDriver::send(uint32 b); + void send(uint32 b); /* retrieve a string representation of an error code */ static const char *get_error_name(int error_code); --- exult-1.2.orig/config.guess +++ exult-1.2/config.guess @@ -1,9 +1,9 @@ #! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002 Free Software Foundation, Inc. +# 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. -timestamp='2002-10-21' +timestamp='2004-11-12' # 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 @@ -53,7 +53,7 @@ GNU config.guess ($timestamp) Originally written by Per Bothner. -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO @@ -98,14 +98,18 @@ # Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still # use `HOST_CC' if defined, but it is deprecated. -# This shell variable is my proudest work .. or something. --bje +# Portable tmp directory creation inspired by the Autoconf team. -set_cc_for_build='tmpdir=${TMPDIR-/tmp}/config-guess-$$ ; -(old=`umask` && umask 077 && mkdir $tmpdir && umask $old && unset old) - || (echo "$me: cannot create $tmpdir" >&2 && exit 1) ; -dummy=$tmpdir/dummy ; -files="$dummy.c $dummy.o $dummy.rel $dummy" ; -trap '"'"'rm -f $files; rmdir $tmpdir; exit 1'"'"' 1 2 15 ; +set_cc_for_build=' +trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; +trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; +: ${TMPDIR=/tmp} ; + { tmp=`(umask 077 && mktemp -d -q "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || + { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || + { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || + { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; +dummy=$tmp/dummy ; +tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; case $CC_FOR_BUILD,$HOST_CC,$CC in ,,) echo "int x;" > $dummy.c ; for c in cc gcc c89 c99 ; do @@ -113,15 +117,13 @@ CC_FOR_BUILD="$c"; break ; fi ; done ; - rm -f $files ; if test x"$CC_FOR_BUILD" = x ; then CC_FOR_BUILD=no_compiler_found ; fi ;; ,,*) CC_FOR_BUILD=$CC ;; ,*,*) CC_FOR_BUILD=$HOST_CC ;; -esac ; -unset files' +esac ;' # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 1994-08-24) @@ -178,21 +180,38 @@ ;; esac # The OS release - release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` + # Debian GNU/NetBSD machines have a different userland, and + # thus, need a distinct triplet. However, they do not need + # kernel version information, so it can be replaced with a + # suitable tag, in the style of linux-gnu. + case "${UNAME_VERSION}" in + Debian*) + release='-gnu' + ;; + *) + release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` + ;; + esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. echo "${machine}-${os}${release}" exit 0 ;; + amd64:OpenBSD:*:*) + echo x86_64-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; amiga:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; - arc:OpenBSD:*:*) - echo mipsel-unknown-openbsd${UNAME_RELEASE} + cats:OpenBSD:*:*) + echo arm-unknown-openbsd${UNAME_RELEASE} exit 0 ;; hp300:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; + luna88k:OpenBSD:*:*) + echo m88k-unknown-openbsd${UNAME_RELEASE} + exit 0 ;; mac68k:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; @@ -208,86 +227,76 @@ mvmeppc:OpenBSD:*:*) echo powerpc-unknown-openbsd${UNAME_RELEASE} exit 0 ;; - pmax:OpenBSD:*:*) - echo mipsel-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; sgi:OpenBSD:*:*) - echo mipseb-unknown-openbsd${UNAME_RELEASE} + echo mips64-unknown-openbsd${UNAME_RELEASE} exit 0 ;; sun3:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} exit 0 ;; - wgrisc:OpenBSD:*:*) - echo mipsel-unknown-openbsd${UNAME_RELEASE} - exit 0 ;; *:OpenBSD:*:*) echo ${UNAME_MACHINE}-unknown-openbsd${UNAME_RELEASE} exit 0 ;; + *:ekkoBSD:*:*) + echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} + exit 0 ;; + macppc:MirBSD:*:*) + echo powerppc-unknown-mirbsd${UNAME_RELEASE} + exit 0 ;; + *:MirBSD:*:*) + echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} + exit 0 ;; alpha:OSF1:*:*) - if test $UNAME_RELEASE = "V4.0"; then + case $UNAME_RELEASE in + *4.0) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` - fi + ;; + *5.*) + UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` + ;; + esac + # According to Compaq, /usr/sbin/psrinfo has been available on + # OSF/1 and Tru64 systems produced since 1995. I hope that + # covers most systems running today. This code pipes the CPU + # types through head -n 1, so we only detect the type of CPU 0. + ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` + case "$ALPHA_CPU_TYPE" in + "EV4 (21064)") + UNAME_MACHINE="alpha" ;; + "EV4.5 (21064)") + UNAME_MACHINE="alpha" ;; + "LCA4 (21066/21068)") + UNAME_MACHINE="alpha" ;; + "EV5 (21164)") + UNAME_MACHINE="alphaev5" ;; + "EV5.6 (21164A)") + UNAME_MACHINE="alphaev56" ;; + "EV5.6 (21164PC)") + UNAME_MACHINE="alphapca56" ;; + "EV5.7 (21164PC)") + UNAME_MACHINE="alphapca57" ;; + "EV6 (21264)") + UNAME_MACHINE="alphaev6" ;; + "EV6.7 (21264A)") + UNAME_MACHINE="alphaev67" ;; + "EV6.8CB (21264C)") + UNAME_MACHINE="alphaev68" ;; + "EV6.8AL (21264B)") + UNAME_MACHINE="alphaev68" ;; + "EV6.8CX (21264D)") + UNAME_MACHINE="alphaev68" ;; + "EV6.9A (21264/EV69A)") + UNAME_MACHINE="alphaev69" ;; + "EV7 (21364)") + UNAME_MACHINE="alphaev7" ;; + "EV7.9 (21364A)") + UNAME_MACHINE="alphaev79" ;; + esac + # A Pn.n version is a patched version. # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. - eval $set_cc_for_build - cat <$dummy.s - .data -\$Lformat: - .byte 37,100,45,37,120,10,0 # "%d-%x\n" - - .text - .globl main - .align 4 - .ent main -main: - .frame \$30,16,\$26,0 - ldgp \$29,0(\$27) - .prologue 1 - .long 0x47e03d80 # implver \$0 - lda \$2,-1 - .long 0x47e20c21 # amask \$2,\$1 - lda \$16,\$Lformat - mov \$0,\$17 - not \$1,\$18 - jsr \$26,printf - ldgp \$29,0(\$26) - mov 0,\$16 - jsr \$26,exit - .end main -EOF - $CC_FOR_BUILD -o $dummy $dummy.s 2>/dev/null - if test "$?" = 0 ; then - case `$dummy` in - 0-0) - UNAME_MACHINE="alpha" - ;; - 1-0) - UNAME_MACHINE="alphaev5" - ;; - 1-1) - UNAME_MACHINE="alphaev56" - ;; - 1-101) - UNAME_MACHINE="alphapca56" - ;; - 2-303) - UNAME_MACHINE="alphaev6" - ;; - 2-307) - UNAME_MACHINE="alphaev67" - ;; - 2-1307) - UNAME_MACHINE="alphaev68" - ;; - 3-1307) - UNAME_MACHINE="alphaev7" - ;; - esac - fi - rm -f $dummy.s $dummy && rmdir $tmpdir - echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[VTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` + echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` exit 0 ;; Alpha\ *:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? @@ -310,6 +319,12 @@ *:OS/390:*:*) echo i370-ibm-openedition exit 0 ;; + *:z/VM:*:*) + echo s390-ibm-zvmoe + exit 0 ;; + *:OS400:*:*) + echo powerpc-ibm-os400 + exit 0 ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) echo arm-acorn-riscix${UNAME_RELEASE} exit 0;; @@ -327,7 +342,10 @@ NILE*:*:*:dcosx) echo pyramid-pyramid-svr4 exit 0 ;; - DRS?6000:UNIX_SV:4.2*:7*) + DRS?6000:unix:4.0:6*) + echo sparc-icl-nx6 + exit 0 ;; + DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) case `/usr/bin/uname -p` in sparc) echo sparc-icl-nx7 && exit 0 ;; esac ;; @@ -399,6 +417,9 @@ *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) echo m68k-unknown-mint${UNAME_RELEASE} exit 0 ;; + m68k:machten:*:*) + echo m68k-apple-machten${UNAME_RELEASE} + exit 0 ;; powerpc:machten:*:*) echo powerpc-apple-machten${UNAME_RELEASE} exit 0 ;; @@ -439,8 +460,7 @@ EOF $CC_FOR_BUILD -o $dummy $dummy.c \ && $dummy `echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` \ - && rm -f $dummy.c $dummy && rmdir $tmpdir && exit 0 - rm -f $dummy.c $dummy && rmdir $tmpdir + && exit 0 echo mips-mips-riscos${UNAME_RELEASE} exit 0 ;; Motorola:PowerMAX_OS:*:*) @@ -449,7 +469,7 @@ Motorola:*:4.3:PL8-*) echo powerpc-harris-powermax exit 0 ;; - Night_Hawk:*:*:PowerMAX_OS) + Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) echo powerpc-harris-powermax exit 0 ;; Night_Hawk:Power_UNIX:*:*) @@ -524,8 +544,7 @@ exit(0); } EOF - $CC_FOR_BUILD -o $dummy $dummy.c && $dummy && rm -f $dummy.c $dummy && rmdir $tmpdir && exit 0 - rm -f $dummy.c $dummy && rmdir $tmpdir + $CC_FOR_BUILD -o $dummy $dummy.c && $dummy && exit 0 echo rs6000-ibm-aix3.2.5 elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then echo rs6000-ibm-aix3.2.4 @@ -624,10 +643,20 @@ } EOF (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` - if test -z "$HP_ARCH"; then HP_ARCH=hppa; fi - rm -f $dummy.c $dummy && rmdir $tmpdir + test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac + if [ ${HP_ARCH} = "hppa2.0w" ] + then + # avoid double evaluation of $set_cc_for_build + test -n "$CC_FOR_BUILD" || eval $set_cc_for_build + if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E -) | grep __LP64__ >/dev/null + then + HP_ARCH="hppa2.0w" + else + HP_ARCH="hppa64" + fi + fi echo ${HP_ARCH}-hp-hpux${HPUX_REV} exit 0 ;; ia64:HP-UX:*:*) @@ -661,8 +690,7 @@ exit (0); } EOF - $CC_FOR_BUILD -o $dummy $dummy.c && $dummy && rm -f $dummy.c $dummy && rmdir $tmpdir && exit 0 - rm -f $dummy.c $dummy && rmdir $tmpdir + $CC_FOR_BUILD -o $dummy $dummy.c && $dummy && exit 0 echo unknown-hitachi-hiuxwe2 exit 0 ;; 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) @@ -720,21 +748,26 @@ CRAY*TS:*:*:*) echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit 0 ;; - CRAY*T3D:*:*:*) - echo alpha-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' - exit 0 ;; CRAY*T3E:*:*:*) echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit 0 ;; CRAY*SV1:*:*:*) echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit 0 ;; + *:UNICOS/mp:*:*) + echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' + exit 0 ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit 0 ;; + 5000:UNIX_System_V:4.*:*) + FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` + FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` + echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" + exit 0 ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} exit 0 ;; @@ -745,19 +778,7 @@ echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} exit 0 ;; *:FreeBSD:*:*) - # Determine whether the default compiler uses glibc. - eval $set_cc_for_build - sed 's/^ //' << EOF >$dummy.c - #include - #if __GLIBC__ >= 2 - LIBC=gnu - #else - LIBC= - #endif -EOF - eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=` - rm -f $dummy.c && rmdir $tmpdir - echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`${LIBC:+-$LIBC} + echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit 0 ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin @@ -768,14 +789,17 @@ i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit 0 ;; - x86:Interix*:3*) - echo i386-pc-interix3 + x86:Interix*:[34]*) + echo i586-pc-interix${UNAME_RELEASE}|sed -e 's/\..*//' + exit 0 ;; + [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) + echo i${UNAME_MACHINE}-pc-mks exit 0 ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we # UNAME_MACHINE based on the output of uname instead of i386? - echo i386-pc-interix + echo i586-pc-interix exit 0 ;; i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin @@ -787,17 +811,34 @@ echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit 0 ;; *:GNU:*:*) + # the GNU system echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit 0 ;; + *:GNU/*:*:*) + # other systems with GNU libc and userland + echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu + exit 0 ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit 0 ;; arm*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit 0 ;; + cris:Linux:*:*) + echo cris-axis-linux-gnu + exit 0 ;; + crisv32:Linux:*:*) + echo crisv32-axis-linux-gnu + exit 0 ;; + frv:Linux:*:*) + echo frv-unknown-linux-gnu + exit 0 ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit 0 ;; + m32r*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit 0 ;; m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit 0 ;; @@ -818,8 +859,26 @@ #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=` - rm -f $dummy.c && rmdir $tmpdir - test x"${CPU}" != x && echo "${CPU}-pc-linux-gnu" && exit 0 + test x"${CPU}" != x && echo "${CPU}-unknown-linux-gnu" && exit 0 + ;; + mips64:Linux:*:*) + eval $set_cc_for_build + sed 's/^ //' << EOF >$dummy.c + #undef CPU + #undef mips64 + #undef mips64el + #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) + CPU=mips64el + #else + #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) + CPU=mips64 + #else + CPU= + #endif + #endif +EOF + eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=` + test x"${CPU}" != x && echo "${CPU}-unknown-linux-gnu" && exit 0 ;; ppc:Linux:*:*) echo powerpc-unknown-linux-gnu @@ -855,6 +914,9 @@ s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux exit 0 ;; + sh64*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit 0 ;; sh*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit 0 ;; @@ -912,9 +974,11 @@ LIBC=gnuaout #endif #endif + #ifdef __dietlibc__ + LIBC=dietlibc + #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=` - rm -f $dummy.c && rmdir $tmpdir test x"${LIBC}" != x && echo "${UNAME_MACHINE}-pc-linux-${LIBC}" && exit 0 test x"${TENTATIVE}" != x && echo "${TENTATIVE}" && exit 0 ;; @@ -932,6 +996,26 @@ # Use sysv4.2uw... so that sysv4* matches it. echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} exit 0 ;; + i*86:OS/2:*:*) + # If we were able to find `uname', then EMX Unix compatibility + # is probably installed. + echo ${UNAME_MACHINE}-pc-os2-emx + exit 0 ;; + i*86:XTS-300:*:STOP) + echo ${UNAME_MACHINE}-unknown-stop + exit 0 ;; + i*86:atheos:*:*) + echo ${UNAME_MACHINE}-unknown-atheos + exit 0 ;; + i*86:syllable:*:*) + echo ${UNAME_MACHINE}-pc-syllable + exit 0 ;; + i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*) + echo i386-unknown-lynxos${UNAME_RELEASE} + exit 0 ;; + i*86:*DOS:*:*) + echo ${UNAME_MACHINE}-pc-msdosdjgpp + exit 0 ;; i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then @@ -966,9 +1050,6 @@ echo ${UNAME_MACHINE}-pc-sysv32 fi exit 0 ;; - i*86:*DOS:*:*) - echo ${UNAME_MACHINE}-pc-msdosdjgpp - exit 0 ;; pc:*:*:*) # Left here for compatibility: # uname -m prints for DJGPP always 'pc', but it prints nothing about @@ -995,9 +1076,12 @@ mc68k:UNIX:SYSTEM5:3.51m) echo m68k-convergent-sysv exit 0 ;; - M68*:*:R3V[567]*:*) + M680?0:D-NIX:5.3:*) + echo m68k-diab-dnix + exit 0 ;; + M68*:*:R3V[5678]*:*) test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;; - 3[34]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0) + 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` @@ -1014,9 +1098,6 @@ mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit 0 ;; - i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*) - echo i386-unknown-lynxos${UNAME_RELEASE} - exit 0 ;; TSUNAMI:LynxOS:2.*:*) echo sparc-unknown-lynxos${UNAME_RELEASE} exit 0 ;; @@ -1098,7 +1179,12 @@ echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} exit 0 ;; *:Darwin:*:*) - echo `uname -p`-apple-darwin${UNAME_RELEASE} + UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown + case $UNAME_PROCESSOR in + *86) UNAME_PROCESSOR=i686 ;; + unknown) UNAME_PROCESSOR=powerpc ;; + esac + echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} exit 0 ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` @@ -1111,7 +1197,7 @@ *:QNX:*:4*) echo i386-pc-qnx exit 0 ;; - NSR-[DGKLNPTVW]:NONSTOP_KERNEL:*:*) + NSR-?:NONSTOP_KERNEL:*:*) echo nsr-tandem-nsk${UNAME_RELEASE} exit 0 ;; *:NonStop-UX:*:*) @@ -1134,11 +1220,6 @@ fi echo ${UNAME_MACHINE}-unknown-plan9 exit 0 ;; - i*86:OS/2:*:*) - # If we were able to find `uname', then EMX Unix compatibility - # is probably installed. - echo ${UNAME_MACHINE}-pc-os2-emx - exit 0 ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 exit 0 ;; @@ -1157,11 +1238,21 @@ *:ITS:*:*) echo pdp10-unknown-its exit 0 ;; - i*86:XTS-300:*:STOP) - echo ${UNAME_MACHINE}-unknown-stop + SEI:*:*:SEIUX) + echo mips-sei-seiux${UNAME_RELEASE} exit 0 ;; - i*86:atheos:*:*) - echo ${UNAME_MACHINE}-unknown-atheos + *:DragonFly:*:*) + echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` + exit 0 ;; + *:*VMS:*:*) + UNAME_MACHINE=`(uname -p) 2>/dev/null` + case "${UNAME_MACHINE}" in + A*) echo alpha-dec-vms && exit 0 ;; + I*) echo ia64-dec-vms && exit 0 ;; + V*) echo vax-dec-vms && exit 0 ;; + esac ;; + *:XENIX:*:SysV) + echo i386-pc-xenix exit 0 ;; esac @@ -1283,8 +1374,7 @@ } EOF -$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && $dummy && rm -f $dummy.c $dummy && rmdir $tmpdir && exit 0 -rm -f $dummy.c $dummy && rmdir $tmpdir +$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && $dummy && exit 0 # Apollos put the system type in the environment. --- exult-1.2.orig/config.sub +++ exult-1.2/config.sub @@ -1,9 +1,9 @@ #! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, -# 2000, 2001, 2002 Free Software Foundation, Inc. +# 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. -timestamp='2002-09-05' +timestamp='2004-11-30' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software @@ -70,7 +70,7 @@ version="\ GNU config.sub ($timestamp) -Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 +Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO @@ -118,7 +118,8 @@ # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in - nto-qnx* | linux-gnu* | freebsd*-gnu* | storm-chaos* | os2-emx* | windows32-* | rtmk-nova*) + nto-qnx* | linux-gnu* | linux-dietlibc | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | \ + kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; @@ -144,7 +145,7 @@ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ - -apple | -axis) + -apple | -axis | -knuth | -cray) os= basic_machine=$1 ;; @@ -228,14 +229,15 @@ | a29k \ | 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 \ - | clipper \ + | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ - | ip2k \ - | m32r | m68000 | m68k | m88k | mcore \ + | ip2k | iq2000 \ + | m32r | m32rle | m68000 | m68k | m88k | mcore \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ @@ -245,24 +247,27 @@ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ | mipsisa32 | mipsisa32el \ + | mipsisa32r2 | mipsisa32r2el \ | mipsisa64 | mipsisa64el \ + | mipsisa64r2 | mipsisa64r2el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ + | msp430 \ | ns16k | ns32k \ | openrisc | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ - | sh | sh[1234] | sh3e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \ + | sh | sh[1234] | sh[23]e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ - | sparc | sparc64 | sparc86x | sparclet | sparclite | sparcv9 | sparcv9b \ + | sparc | sparc64 | sparc86x | sparclet | sparclite | sparcv8 | sparcv9 | sparcv9b \ | strongarm \ - | tahoe | thumb | tic80 | tron \ + | tahoe | thumb | tic4x | tic80 | tron \ | v850 | v850e \ | we32k \ - | x86 | xscale | xstormy16 | xtensa \ + | x86 | xscale | xscalee[bl] | xstormy16 | xtensa \ | z8k) basic_machine=$basic_machine-unknown ;; @@ -294,16 +299,16 @@ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* \ | bs2000-* \ - | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* \ - | clipper-* | cydra-* \ + | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ + | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ | f30[01]-* | f700-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | i*86-* | i860-* | i960-* | ia64-* \ - | ip2k-* \ - | m32r-* \ + | ip2k-* | iq2000-* \ + | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | mcore-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ @@ -315,25 +320,31 @@ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ | mipsisa32-* | mipsisa32el-* \ + | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa64-* | mipsisa64el-* \ + | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ - | mipstx39 | mipstx39el \ + | mipstx39-* | mipstx39el-* \ + | mmix-* \ + | msp430-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ | romp-* | rs6000-* \ - | sh-* | sh[1234]-* | sh3e-* | sh[34]eb-* | shbe-* \ + | sh-* | sh[1234]-* | sh[23]e-* | sh[34]eb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc86x-* | sparclet-* | sparclite-* \ - | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \ - | tahoe-* | thumb-* | tic30-* | tic4x-* | tic54x-* | tic80-* | tron-* \ + | sparcv8-* | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \ + | tahoe-* | thumb-* \ + | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ + | tron-* \ | v850-* | v850e-* | vax-* \ | we32k-* \ - | x86-* | x86_64-* | xps100-* | xscale-* | xstormy16-* \ - | xtensa-* \ + | x86-* | x86_64-* | xps100-* | xscale-* | xscalee[bl]-* \ + | xstormy16-* | xtensa-* \ | ymp-* \ | z8k-*) ;; @@ -353,6 +364,9 @@ basic_machine=a29k-amd os=-udi ;; + abacus) + basic_machine=abacus-unknown + ;; adobe68k) basic_machine=m68010-adobe os=-scout @@ -367,6 +381,12 @@ basic_machine=a29k-none os=-bsd ;; + amd64) + basic_machine=x86_64-pc + ;; + amd64-*) + basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; amdahl) basic_machine=580-amdahl os=-sysv @@ -426,12 +446,27 @@ basic_machine=j90-cray os=-unicos ;; + craynv) + basic_machine=craynv-cray + os=-unicosmp + ;; + cr16c) + basic_machine=cr16c-unknown + os=-elf + ;; crds | unos) basic_machine=m68k-crds ;; + crisv32 | crisv32-* | etraxfs*) + basic_machine=crisv32-axis + ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; + crx) + basic_machine=crx-unknown + os=-elf + ;; da30 | da30-*) basic_machine=m68k-da30 ;; @@ -454,6 +489,10 @@ basic_machine=m88k-motorola os=-sysv3 ;; + djgpp) + basic_machine=i586-pc + os=-msdosdjgpp + ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx @@ -632,10 +671,6 @@ mips3*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; - mmix*) - basic_machine=mmix-knuth - os=-mmixware - ;; monitor) basic_machine=m68k-rom68k os=-coff @@ -727,6 +762,10 @@ basic_machine=or32-unknown os=-coff ;; + os400) + basic_machine=powerpc-ibm + os=-os400 + ;; OSE68000 | ose68000) basic_machine=m68000-ericsson os=-ose @@ -758,18 +797,24 @@ pentiumpro | p6 | 6x86 | athlon | athlon_*) basic_machine=i686-pc ;; - pentiumii | pentium2) + pentiumii | pentium2 | pentiumiii | pentium3) basic_machine=i686-pc ;; + pentium4) + basic_machine=i786-pc + ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; - pentiumii-* | pentium2-*) + pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; + pentium4-*) + basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` + ;; pn) basic_machine=pn-gould ;; @@ -828,6 +873,10 @@ sb1el) basic_machine=mipsisa64sb1el-unknown ;; + sei) + basic_machine=mips-sei + os=-seiux + ;; sequent) basic_machine=i386-sequent ;; @@ -835,6 +884,9 @@ basic_machine=sh-hitachi os=-hms ;; + sh64) + basic_machine=sh64-unknown + ;; sparclite-wrs | simso-wrs) basic_machine=sparclite-wrs os=-vxworks @@ -901,10 +953,6 @@ basic_machine=i386-sequent os=-dynix ;; - t3d) - basic_machine=alpha-cray - os=-unicos - ;; t3e) basic_machine=alphaev5-cray os=-unicos @@ -913,14 +961,18 @@ basic_machine=t90-cray os=-unicos ;; - tic4x | c4x*) - basic_machine=tic4x-unknown - os=-coff - ;; tic54x | c54x*) basic_machine=tic54x-unknown os=-coff ;; + tic55x | c55x*) + basic_machine=tic55x-unknown + os=-coff + ;; + tic6x | c6x*) + basic_machine=tic6x-unknown + os=-coff + ;; tx39) basic_machine=mipstx39-unknown ;; @@ -934,6 +986,10 @@ tower | tower-32) basic_machine=m68k-ncr ;; + tpf) + basic_machine=s390x-ibm + os=-tpf + ;; udi29k) basic_machine=a29k-amd os=-udi @@ -977,9 +1033,9 @@ basic_machine=hppa1.1-winbond os=-proelf ;; - windows32) - basic_machine=i386-pc - os=-windows32-msvcrt + xbox) + basic_machine=i686-pc + os=-mingw32 ;; xps | xps100) basic_machine=xps100-honeywell @@ -1011,6 +1067,9 @@ romp) basic_machine=romp-ibm ;; + mmix) + basic_machine=mmix-knuth + ;; rs6000) basic_machine=rs6000-ibm ;; @@ -1027,13 +1086,13 @@ we32k) basic_machine=we32k-att ;; - sh3 | sh4 | sh3eb | sh4eb | sh[1234]le | sh3ele) + sh3 | sh4 | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; sh64) basic_machine=sh64-unknown ;; - sparc | sparcv9 | sparcv9b) + sparc | sparcv8 | sparcv9 | sparcv9b) basic_machine=sparc-sun ;; cydra) @@ -1106,18 +1165,20 @@ | -aos* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ - | -hiux* | -386bsd* | -netbsd* | -openbsd* | -freebsd* | -riscix* \ - | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ + | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* | -openbsd* \ + | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ + | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* \ | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ - | -mingw32* | -linux-gnu* | -uxpv* | -beos* | -mpeix* | -udk* \ - | -interix* | -uwin* | -rhapsody* | -darwin* | -opened* \ + | -mingw32* | -linux-gnu* | -linux-uclibc* | -uxpv* | -beos* | -mpeix* | -udk* \ + | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ - | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* | -powermax*) + | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ + | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) @@ -1129,8 +1190,10 @@ ;; esac ;; + -nto-qnx*) + ;; -nto*) - os=-nto-qnx + os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ | -windows* | -osx | -abug | -netware* | -os9* | -beos* \ @@ -1139,6 +1202,9 @@ -mac*) os=`echo $os | sed -e 's|mac|macos|'` ;; + -linux-dietlibc) + os=-linux-dietlibc + ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; @@ -1151,6 +1217,9 @@ -opened*) os=-openedition ;; + -os400*) + os=-os400 + ;; -wince*) os=-wince ;; @@ -1172,6 +1241,9 @@ -atheos*) os=-atheos ;; + -syllable*) + os=-syllable + ;; -386bsd) os=-bsd ;; @@ -1194,6 +1266,9 @@ -sinix*) os=-sysv4 ;; + -tpf*) + os=-tpf + ;; -triton*) os=-sysv3 ;; @@ -1224,6 +1299,15 @@ -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; + -aros*) + os=-aros + ;; + -kaos*) + os=-kaos + ;; + -zvmoe) + os=-zvmoe + ;; -none) ;; *) @@ -1255,6 +1339,9 @@ arm*-semi) os=-aout ;; + c4x-* | tic4x-*) + os=-coff + ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 @@ -1301,6 +1388,9 @@ *-ibm) os=-aix ;; + *-knuth) + os=-mmixware + ;; *-wec) os=-proelf ;; @@ -1433,9 +1523,15 @@ -mvs* | -opened*) vendor=ibm ;; + -os400*) + vendor=ibm + ;; -ptx*) vendor=sequent ;; + -tpf*) + vendor=ibm + ;; -vxsim* | -vxworks* | -windiss*) vendor=wrs ;; --- exult-1.2.orig/debian/dirs +++ exult-1.2/debian/dirs @@ -1,2 +1,5 @@ -/usr/games -/usr/share/games +usr/games +usr/share/games +usr/share/games/exult/estudio/new +usr/share/man/man1 +usr/share/man/man6 --- exult-1.2.orig/debian/control +++ exult-1.2/debian/control @@ -1,26 +1,31 @@ Source: exult Section: contrib/games Priority: extra -Maintainer: Michael Zinn -Build-Depends: debhelper (>> 3.0.0) -Standards-Version: 3.5.2 +Maintainer: Michael Banck +Build-Depends: debhelper (>= 4.1.16), dpatch, flex, bison, libsdl1.2-dev (>= 1.2.7+1.2.8cvs20041007-5.1), libsdl-mixer1.2-dev, libx11-dev, x-dev, timidity, libgimp2.0-dev (>= 2.2.8-11), libglade2-dev, zlib1g-dev, libpng12-dev, autoconf, automake1.4, libtool, libx11-dev +Standards-Version: 3.6.1.1 Package: exult Architecture: any -Depends: ${shlibs:Depends} -Recommends: timidity +Depends: debconf | debconf-2.0, ${shlibs:Depends}, timidity Description: An engine for Ultima VII (BG, FOV, SI, SS) Exult is an open source engine for playing Ultima VII on a variety of - modern operating systems and environments. + modern operating systems and environments. The Black Gate (including + Forge of Virtue) and Serpent Isle (plus Silver Seed) are both playable + to the end. Some differences to the original games exist; see sections + 5.3/5.4 of the FAQ. . - Visit the Exult homepage at http://exult.sourceforge.net/ + While it is possible to use the engine for other games, no such game has + been written yet. Therefore, Exult is useless unless you own a copy of one + of the Ultima VIIs. . - You must own Ultima VII in order to use this package. + Exult's homepage is at http://exult.sourceforge.net/. -Package: exult-tools +Package: exult-studio Architecture: any Depends: exult, ${shlibs:Depends} -Description: Tools for editting & viewing exult games; includes exult-studio +Recommends: gimp +Description: Tools for editing and viewing exult games Includes: . expack - Command line tool for creating and extracting Flex (.flx) @@ -39,5 +44,8 @@ . These are all works in progress. . + A GIMP plugin is provided, so that if you have the GIMP installed you can edit + and create game graphics with it. + . For more information, visit the Exult homepage at http://exult.sourceforge.net/. --- exult-1.2.orig/debian/rules +++ exult-1.2/debian/rules @@ -14,9 +14,6 @@ # For normal, everyday builds, you can leave DEB_BUILD_OPTIONS blank # or unset or whatever. # -# NOTE, as of now (2001-12-12), the gimp plugin is not included in exult-tools, -# as it requires a more recent version of gimp than is available in debian. -# # Based on: # Sample debian rules that uses debhelper # GNU copyright 1997 by Joey Hess. @@ -24,104 +21,105 @@ # Modified for exult and exult-tools by # Michael `Wumpus' Zinn +# Modified for the Debian GNU/Linux system by +# Carlos Laviola + # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 # This is the debhelper compatability version to use. export DH_COMPAT=3 +include /usr/share/dpatch/dpatch.make + ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS))) -CONFIGURE_DEBUG = --enable-debug + DEBUG := --enable-debug --disable-sdl-parachute +endif +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + export CFLAGS := $(CFLAGS) -O0 + export CXXFLAGS := $(CXXFLAGS) -O0 endif -configure: configure-stamp -configure-stamp: - dh_testdir +DEB_BUILD_GNU_TYPE := $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +DEB_HOST_GNU_TYPE := $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) - # Generate configure and various other things - sh autogen.sh +ifeq ($(DEB_BUILD_GNU_TYPE),$(DEB_HOST_GNU_TYPE)) + confopts := --build $(DEB_BUILD_GNU_TYPE) +else + confopts := --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE) +endif - # Run configure; at time of writing, libdir, sbindir, etc, are not used - ./configure $(CONFIGURE_DEBUG) --prefix=/usr --bindir=/usr/games --datadir=/usr/share/games --enable-exult-studio +CRUFT := data/exult_flx.h data/exult_bg_flx.h data/exult_si_flx.h - # Back to template land... +bin := debian/tmp/usr/bin +exult_pixmaps := debian/exult/usr/share/pixmaps +configure: patch configure-stamp +configure-stamp: + dh_testdir + + sh autogen.sh + ./configure $(CONFIGURE_DEBUG) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info $(DEBUG) --datadir=/usr/share/games --enable-exult-studio --enable-gimp-plugin $(confopts) + touch configure-stamp - -build: configure-stamp build-stamp + +build: configure build-stamp build-stamp: dh_testdir - - # Do the making :-) $(MAKE) - - # Back to template land... - touch build-stamp -clean: +clean: unpatch dh_testdir dh_testroot rm -f build-stamp configure-stamp - - # Clean up after ourselves - -$(MAKE) clean - - # Back to template land... - + -$(MAKE) distclean + dh_clean $(CRUFT) dh_clean - + install: DH_OPTIONS= install: build dh_testdir dh_testroot dh_clean -k dh_installdirs - + mkdir -p debian/tmp/usr/share/games/exult/estudio/new # Install the package into debian/tmp; dh_movefiles then puts # the files into debian/exult or debian/exult-tools as # required. $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp + dh_movefiles -Nexult + dh_movefiles -pexult + @if [ `find debian/tmp -type d -or -print | wc -l` -gt 0 ]; then \ + echo The following files are not accounted for:; \ + find debian/tmp -type d -or -print; \ + false; \ + fi + install -d $(exult_pixmaps) + install -m644 debian/exult.xpm $(exult_pixmaps) + # handle the exult binary + mv $(CURDIR)/debian/exult/usr/bin/exult \ + $(CURDIR)/debian/exult/usr/games/exult.bin + install -m755 debian/exult.wrapper $(CURDIR)/debian/exult/usr/games/exult - # Back to template land... - - dh_movefiles - -# Build architecture-independent files here. -# Pass -i to all debhelper commands in this target to reduce clutter. binary-indep: - # Nothing to do here (NB if there was, prerequisites of - # `build' and `install' should be included) - -# Build architecture-dependent files here. binary-arch: build install - dh_testdir -a - dh_testroot -a -# dh_installdebconf -a - dh_installdocs -a - dh_installexamples -a - dh_installmenu -a -# dh_installlogrotate -a -# dh_installemacsen -a -# dh_installpam -a -# dh_installmime -a -# dh_installinit -a - dh_installcron -a -# dh_installman -a - dh_installinfo -a -# dh_undocumented -a - dh_installchangelogs ChangeLog -a - dh_strip -a - dh_link -a - dh_compress -a - dh_fixperms -a -# dh_makeshlibs -a - dh_installdeb -a -# dh_perl -a - dh_shlibdeps -a - dh_gencontrol -a - dh_md5sums -a - dh_builddeb -a - + dh_testdir + dh_testroot + dh_installdocs + dh_installexamples + dh_installmenu + dh_installman -p exult-studio debian/exult_studio.1 debian/ucc.1 + dh_installchangelogs ChangeLog + dh_installdebconf + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install configure --- exult-1.2.orig/debian/changelog +++ exult-1.2/debian/changelog @@ -1,85 +1,384 @@ -exult (1:0.98rc1-1) unstable; urgency=low +exult (1.2-6.1ubuntu1) edgy; urgency=low - * Release candidate 1 + * Re-sync with Debian + * fmopldrv.h - Remove extra qualifier + * ucfunc.h - same - -- Tristan Tarrant Wed, 13 Mar 2002 10:32:11 +0100 + -- Barry deFreese Sat, 29 Jul 2006 11:52:41 -0400 -exult (1:0.97cvs-1) unstable; urgency=low +exult (1.2-6.1) unstable; urgency=low - * exult-tools updated for new tools, and included some extra - documentation, with corresponding update to README.Debian - * added stuff for building a debug package (the nostrip stuff comes - "for free" since dh_strip knows about it) + * Non-maintainer upload. + * Replace build-dependency on xlibs-dev with an explicit build-dependency + on each required package. (Closes: #346849) - -- Michael Zinn Wed, 12 Dec 2001 20:02:21 +1100 + -- Steinar H. Gunderson Sat, 21 Jan 2006 02:48:14 +0100 -exult (1:0.96beta1-1) unstable; urgency=low +exult (1.2-6) unstable; urgency=low - * New upstream release - * Corrected version numbering of Debian package - * Overhaul of debian/* (incidentally closes a bug filed against exult) - * Split into multiple packages - exult and exult-tools - * Moved to contrib/games (until such time as there are `free' games - built on this engine, which isn't likely to be anytime soon ;-p) + * debian/control (Build-Depends): Add versioned dependency >= 2.2.8-11 on + libgimp2.0-dev. (Closes: #332622) + * debian/rules (CRUFT): Removed usecode/compiler/uclex.cc, + usecode/compiler/ucparse.h and usecode/compiler/ucparse.cc. - -- Michael Zinn Sat, 1 Dec 2001 15:53:46 +1100 + -- Michael Banck Tue, 1 Nov 2005 12:04:22 +0100 -exult (0.99-cvs-1) unstable; urgency=low +exult (1.2-5) unstable; urgency=low - * Irregular synchronisation with source-tree + * Package transformed to dpatch: + + debian/patches/01_estudio_dir.patch: New file. + + debian/patches/02_gimp_plugin_dir.patch: New file. + + debian/rules (/usr/share/dpatch/dpatch.make): New include. + + (configure): Depend on patch rule. + + (clean): Depend on unpatch rule. + + (build): Depend on configure instead of configure-stamp. + + debian/control (Build-Depends): Added dpatch. + * debian/patches/03_gcc4_build_fix.patch: New patch by Andreas Jochens. + Fixes build failure on gcc4. (Closes: #295052) + * debian/control (Build-Depends): Modify libsdl1.2-dev build + dependency to the aalib and smpeg transitioned version. (Closes: #320873, + Closes: #322140) Switch from libpng2-dev to libpng12-dev. + (Closes: #328348) + * debian/po/cs.po: New file, by Martin Sin. (Closes: #319580). + * debian/exult.files: Updated. + * debian/control (exult): Add alternative Depends on debconf-2.0. + (Closes: #331819) + * debian/po/sv.po: New file, by Daniel Nylander. (Closes: #330388). - -- Dancer Fri, 23 Feb 2001 12:01:25 +1100 + -- Michael Banck Thu, 6 Oct 2005 01:42:41 +0200 -exult (0.90-alpha1-8) unstable; urgency=low +exult (1.2-4) unstable; urgency=low - * Incorporate the gnome desktop files - * Irregular synchronisation with source-tree + * Many thanks to Christian Perrier for handling the template + translation updates. + * debian/po/fr.po: Added French translation from Eric Madesclair. + (Closes: #268032) + * debian/po/de.po: Updated German translation from Helge Kreutzmann. + * debian/po/nl.po: Added Dutch translation from Luk Claes. + * debian/po/zh_TW.po: Added traditional chinese translation from + Asho Yeh. - -- Dancer Fri, 23 Feb 2001 12:01:25 +1100 + -- Michael Banck Tue, 8 Feb 2005 01:15:47 +0100 -exult (0.90-alpha1-7) unstable; urgency=low +exult (1.2-3) unstable; urgency=low - * Irregular synchronisation with source-tree + * debian/control (Maintainer): New Maintainer. (Closes: #275780) + * debian/files: Removed. + * debian/exult.wrapper: New file, handles copying of global + configuration file to user configuration file. (Closes: #192507) + * debian/rules: Trimmed comments and whitespace. + * debian/rules (configure): Use /usr/games as exec_prefix. + * debian/rules/exult.menu (command): Changed to /usr/games/exult. + * debian/rules/exult.dirs: New file, for /usr/games. + * debian/rules (install): Added call to dh_installdirs. - -- Dancer Vesperman Tue, 21 Nov 2000 08:39:28 +1100 + -- Michael Banck Wed, 13 Oct 2004 16:04:22 +0200 -exult (0.90-alpha1-6) unstable; urgency=low +exult (1.2-2) unstable; urgency=low - * Irregular synchronisation with source-tree + * Orphaned. Maintainer set to Debian QA Group . - -- Dancer Vesperman Fri, 17 Nov 2000 18:35:44 +1100 + -- Carlos Laviola Sun, 10 Oct 2004 04:14:06 -0300 -exult (0.90-alpha1-5) unstable; urgency=low +exult (1.2-1) unstable; urgency=medium - * Irregular CVS snapshot + * Uploading with medium urgency, because this version _really_ needs to + make it to sarge. + * New maintainer. (Closes: #260718) + * Added Michael Banck as a co-maintainer/uploader. + * New upstream release. (Closes: #256987) + * Acknowledging NMUs. (Closes: #218927, #201915, #244426) + * Bumped Standards-Version to 3.6.1.1. + * Applied a patch from Martin Quinson to switch exult to gettext-based + debconf templates. (Closes: #240857) + * - data/Makefile.am: Applied miscelaneous fixes for correct + installation. + - mapedit/Makefile.am: Applied miscelaneous fixes for correct + installation. + - Thanks to Michael Banck for the hand on finding and fixing these. + * Exult has been fixed upstream and should no longer FTBFS when built + with gcc-3.4. (Closes: #261057) - -- Dancer Vesperman Tue, 14 Nov 2000 14:14:56 +1100 + -- Carlos Laviola Tue, 17 Aug 2004 16:42:35 -0300 -exult (0.90-alpha1-4) unstable; urgency=low +exult (1.00-2.3) unstable; urgency=low - * Irregular CVS snapshot. Some egg bugs fixed. + * Non-maintainer upload during (another) Bug-Squashing-Party. + * control: Change Build-Depends from libgimp1.2-dev to + libgimp2.0-dev and exult-studio's Recommends from gimp1.2 to + gimp. + * Make configure.in aware of Gimp-2.0, adopted from upstream CVS. + * Port mapedit/u7shp.c to Gimp-2.0, adopted from upstream CVS. + * Move AM_PATH_SDL from aclocal.m4 to acinlude.m4. + * Add AM_MAINTAINER_MODE to configure.in. + * Rerun autotools. - -- Dancer Vesperman Mon, 13 Nov 2000 10:27:03 +1100 + -- Michael Banck Sun, 18 Apr 2004 12:14:19 +0200 -exult (0.90-alpha1-3) unstable; urgency=low +exult (1.00-2.2) unstable; urgency=low - * Added some documentation to the package. - * Daily snapshot of code-tree + * Non-maintainer upload during Bug-Squashing-Party. + * Updated libtool (Closes: #201915). + * rules: pass --build to confopts. + * configure.in: Strip $(DESTDIR) from GIMP_PLUGIN_PREFIX. + * Rerun aclocal and autoconf. - -- Dancer Vesperman Sat, 11 Nov 2000 11:29:59 +1100 + -- Michael Banck Sun, 21 Mar 2004 13:16:04 +0100 -exult (0.90-alpha1-2) unstable; urgency=low +exult (1.00-2.1) unstable; urgency=low - * Changed Suggests: timidity to Recommends: timidity + * Non-maintainer upload + * Added g++ 3.3 porting fixes thanks to John Lightsey (Closes: #218927) - -- Dancer Vesperman Fri, 10 Nov 2000 13:42:37 +1100 + -- Roland Stigge Fri, 21 Nov 2003 17:29:04 +0100 -exult (0.90-alpha1-1) unstable; urgency=low +exult (1.00-2) unstable; urgency=low - * Initial Alpha Release. + * The "fixdaemon" release. + * g++ 3.2 apparently broken on sparc, go back to the default compiler ... + * Update config.sub for s390 et al. - -- Dancer Vesperman Fri, 03 Nov 2000 18:11:55 +1000 + -- Robert Bihlmeyer Mon, 25 Nov 2002 23:22:34 +0100 -Local variables: -mode: debian-changelog -End: +exult (1.00-1) unstable; urgency=low + + * The "Happy birthday, J.R." release. + * Need to depend on a libpngX-dev. I'll use X=2 for now. + * data/Makefile.am: wanted to install to + /usr/share/exult/estudio/new/estudio/new. + * Include /usr/share/exult/estudio/ in exult-studio package. + * desktop/Makefile.am: install Gnome desktop file. + * rules: install needs dir /usr/share/exult/estudio/new -- create it. + * exult.docs: ReadMe.html and faq.html are no longer shipped. + * exult-studio.docs: exult_studio.html, exult_studio.txt, newgame.txt, + ucc.txt are no longer shipped. + * tools/*.1 went missing, reinstated. + + -- Robert Bihlmeyer Sun, 24 Nov 2002 13:17:38 +0100 + +exult (0.99.1rc2-2) unstable; urgency=low + + * The "In the Garden of Eden" release. + * Some of the last versions of libgnome-dev depended on broken libpng. + Build-depend on either a suitably old or recent version. Closes: #159102 + * Let's try g++ 3.2 this time, shall we? + * Support noopt in DEB_BUILD_OPTIONS. This moves us to Standards-Version + 3.5.7, so there! + + -- Robert Bihlmeyer Mon, 2 Sep 2002 22:34:37 +0200 + +exult (0.99.1rc2-1) unstable; urgency=low + + * The "Song 2" release. + * New upstream release candidate (see my previous entry for more info). + * More g++ 3 fixes did the salmon and have gone upstream. + + -- Robert Bihlmeyer Thu, 6 Jun 2002 20:15:27 +0200 + +exult (0.98rc1+20020601-1) unstable; urgency=low + + * The "Ever fought with dirty diapers?" release. + * New CVS snapshot, in preperation for rc2 -- mostly bugfixes, plus: + + a much improved Exult Studio, + + better support for conversations in ucc, + + 32-bit usecode (for those big games you're all itching to write). + * Upstream g++ 3 compliance improved, some of my patches became moot. + * Avoid deprecated c++ headers where easily possible (usage of strstream + remains). + * Fix g++ 3 problem in mapedit/shapefile.h. + * Include HTML versions of README and FAQ in the exult package. + * Put some useful documentation about ucc and the studio into the + exult-studio package. + * Manpages for ipack, shp2pcx, splitshp, textpack, and expack were + incorporated upstream, so no need for seperate copies anymore. + * Re-fix gimp plugin installation. + * Clean up usecode/ucxt/data/u7{bg,si}intrinsics.data. + * debconfiguration done right: values are now initialised from the + config file, and changes are only applied to the relevant parts of + this file. You can now edit exult.cfg to your heart's desire (or use + dpkg-reconfigure to change the most important settings). + * Remove the "don't edit" warning from exult.cfg. + * Config script now insists on the display of errors, even if they have + been seen before. This needs debconf 0.5 or higher to work. + + -- Robert Bihlmeyer Tue, 4 Jun 2002 20:42:18 +0200 + +exult (0.98rc1-2) unstable; urgency=low + + * Fix up once more for gcc-3.0. + + -- Robert Bihlmeyer Wed, 27 Mar 2002 23:34:17 +0100 + +exult (0.98rc1-1) unstable; urgency=low + + * New upstream release candidate: + + New bilinear scaler. + + Configurable combat difficulty. + + Many bugfixes, including incorporation of some of mine. + * New tools packaged with exult-studio: + + Flex file manipulators: expack, textpack, ipack. + + Shape manipulators: splitshp, shp2pcx. + + Usecode compiler and decompiler: ucc, ucxt. These two are + undocumented and only intended for the very adventurous. + * Zipped files are now supported via zlib -- adjust build-depends. + * Always call configure with the proper build and host triplets. + * Due to this config.guess is now largely irrelevant, so go with + upstream's old version. + * Resync config.sub with autotools-dev, though. + * Don't let configure and automake touch debian/. Hand-apply changes to + the generated files so that the diff is not needlessly bloated. + * Add russian debconf templates (thanks, Ilgiz Kalmetev). Closes: + #137641. + * Fixed bison is available, so remove workaround and build-conflict with + the buggy version. + + -- Robert Bihlmeyer Sun, 24 Mar 2002 18:42:18 +0100 + +exult (0.96beta1-4) unstable; urgency=low + + * Bison 1:1.31-1 is broken (see bug#129619). Work around that in + usecode/compiler/Makefile.am. + * usecode/compiler/ucparse.yy used sprintf() without including + . Fixed, reported upstream as SF bug #504923. + + -- Robert Bihlmeyer Thu, 17 Jan 2002 17:20:03 +0100 + +exult (0.96beta1-3) unstable; urgency=low + + * Fix assumptions about char-signedness (Thanks go to Gerhard Tonn for + the heads-up). Reported upstream as SF bug #503834. + + -- Robert Bihlmeyer Tue, 15 Jan 2002 14:57:05 +0100 + +exult (0.96beta1-2) unstable; urgency=low + + * Move along, nothing new to see, just using ye olde default gcc. + + -- Robert Bihlmeyer Wed, 12 Dec 2001 12:04:48 +0100 + +exult (0.96beta1-1) unstable; urgency=low + + * The "Seeking Employment" release. + * New upstream beta version: + + Compressed savegames + + Gameplay option dialog + + Better mouse support + * Best of all, Serpent Isle can be completed now -- change the package + description accordingly. + * configure.in, mapedit/Makefile.am: Use libglade-config --cflags to + determine correct -I switches. + * Regenerate some auto*-files due to above changes, but touch + configure.in into the past, so that the auto*-machinery won't rebuild + every noggin Makefile.in, aclocal.m4, and family. + * Some g++ 3 patches no longer necessary: + gamerend.cc, mapedit/chunklst.{h,cc}, mapedit/studio.h, objs/barge.cc + * Removed a GPG key that I have distributed by mistake. + * Disable shlibs hackery. Exult depends on newest g++ libs again. + + -- Robert Bihlmeyer Wed, 5 Dec 2001 14:03:29 +0100 + +exult (0.94alpha5-6) unstable; urgency=low + + * The "I'd rather have Tacos" release. + * When trying to please g++ 3, one should not forget about 2.95, either. + Two-timing is hard. + * Build-depend on libgnome-dev just to get at gnome-config. + * Include the resulting Gnome desktop entry in exult package. + + -- Robert Bihlmeyer Sun, 28 Oct 2001 21:40:35 +0100 + +exult (0.94alpha5-5) unstable; urgency=low + + * "The arm autobuilder doesn't love me anymore" release. + * Override libgcc1 and libstdc++ dependency to fit into testing. + * Enable studio and Gimp plugin, and put them into a new exult-studio + package. + * For this we need to build-depend on libgimp1.2-dev and libglade0-dev. + * The rules also had to be revamped a bit for the multi-package setup. + * Exult studio needed some C++ fixes to pacify g++ 3. + * It also tried to load its .glade UI from . -- kludged for now. + * The Gimp plugin would ignore $DESTDIR. Fixed. + * Standards-Version bumped to 3.5.6 -- no changes. + + -- Robert Bihlmeyer Fri, 7 Sep 2001 11:45:57 +0200 + +exult (0.94alpha5-4) unstable; urgency=low + + * I give up. g++-3 on arm or sparc still broken. Revert to older version + on these platforms. alpha, i386, powerpc seem to work fine; no words + from the other arches. + * Remove some autogenerated _flx.h files when cleaning. + + -- Robert Bihlmeyer Thu, 6 Sep 2001 17:35:54 +0200 + +exult (0.94alpha5-3) unstable; urgency=low + + * Using g++ 3.0 on arm & sparc will not work as long as they are + exempted from the g++-3.0 build-dependency. Silly me! + + -- Robert Bihlmeyer Wed, 5 Sep 2001 11:39:53 +0200 + +exult (0.94alpha5-2) unstable; urgency=low + + * The "Why did it work the last time?" release. + * Bitten by the dreaded "obsolete config.guess" bug. Fixed by + re-libtoolizing. + + -- Robert Bihlmeyer Tue, 4 Sep 2001 18:40:51 +0200 + +exult (0.94alpha5-1) unstable; urgency=low + + * The "Nach Diktat verreist" release. + * New upstream version: Better BG intro, hp (mana) bars overlay, in-game + video menu, improved graphics performance, etc. + * gcc 3.0 seems to be ok on arm, and sparc. Re-enable. + * Change text templates to notes (closes: bug#106336). + + -- Robert Bihlmeyer Sun, 26 Aug 2001 15:59:20 +0200 + +exult (0.93alpha4-3) unstable; urgency=low + + * The "Lapsang, too dark to drink" release. + * Add build-depends reported missing by James Troup (closes: bug#104545). + + -- Robert Bihlmeyer Fri, 13 Jul 2001 16:54:52 +0200 + +exult (0.93alpha4-2) unstable; urgency=low + + * Disable gcc 3.0 for: + - sparc (they still have an old version with borked dependencies, see + bug #103568) + - arm (build error which is possibly libstdc++3-dev's fault) + + -- Robert Bihlmeyer Thu, 12 Jul 2001 13:38:12 +0200 + +exult (0.93alpha4-1) unstable; urgency=low + + * New upstream version: New game control screen, nifty save game browser, + many SI improvements, and lots of bugfixes. + * Standards-Version bumped to 3.5.5 -- no changes. + * Added german debconf template contributed by Sebastian Feltel + (closes: bug#100589). + * Put a warning into exult.cfg that it is a generated file. + * copyright: Made license of the packaging explicit, plus minor + touchups. + * Try to clean without root. + * Use gcc 3.0. (Had to add some "using" directives to usecode/keyring.cc.) + * Support DEB_BUILD_OPTIONS=debug. + + -- Robert Bihlmeyer Sun, 8 Jul 2001 23:32:00 +0200 + +exult (0.92alpha3-1) unstable; urgency=low + + * New upstream alpha version. + * Create a site-wide config file that gets used when the starting user + has none. The file contains path settings that are inquired via + debconf. + + -- Robert Bihlmeyer Mon, 23 Apr 2001 00:23:56 +0200 + +exult (0.91alpha2-1) unstable; urgency=low + + * Initial Release. + + -- Robert Bihlmeyer Mon, 9 Apr 2001 22:03:34 +0200 --- exult-1.2.orig/debian/exult.docs +++ exult-1.2/debian/exult.docs @@ -1,5 +1,4 @@ FAQ -MidiInfo.txt NEWS README README.1ST --- exult-1.2.orig/debian/copyright +++ exult-1.2/debian/copyright @@ -1,9 +1,9 @@ -This package was debianized by Michael Zinn on -Sat, 1 Dec 2001 15:53:46 +1100. +This package was debianized by Carlos Laviola on +Wed, 18 Aug 2004 00:34:51 -0300. It was downloaded from http://exult.sourceforge.net/ -Upstream Author(s): The Exult Team +Upstream Authors: The Exult Team Copyright: --- exult-1.2.orig/debian/exult.files +++ exult-1.2/debian/exult.files @@ -1,3 +1,5 @@ usr/share/games/exult/*.flx -usr/man/man6/exult.6 -usr/games/exult +usr/share/games/exult/*.txt +usr/share/games/exult/*.data +usr/share/man/man6/exult.6 +usr/bin/exult --- exult-1.2.orig/debian/patches/01_estudio_dir.patch +++ exult-1.2/debian/patches/01_estudio_dir.patch @@ -0,0 +1,21 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 01_estudio_dir.patch.dpatch by Michael Banck +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Adjust Exult Studio's directory for Debian + +@DPATCH@ + +--- exult-1.2.orig/data/Makefile.am ++++ exult-1.2/data/Makefile.am +@@ -101,7 +101,9 @@ + estudio/new/pointers.shp + + flexdir = $(datadir)/exult +-estudionewdir = $(datadir)/exult/estudio/new ++# Changed for Debian GNU/Linux. ++# estudionewdir = $(datadir)/exult/estudio/new ++estudionewdir = $(datadir)/exult + + if DATA_FILES + EXULT_FLX = exult.flx --- exult-1.2.orig/debian/patches/00list +++ exult-1.2/debian/patches/00list @@ -0,0 +1,3 @@ +01_estudio_dir.patch +02_gimp_plugin_dir.patch +03_gcc4_build_fix.patch --- exult-1.2.orig/debian/patches/02_gimp_plugin_dir.patch +++ exult-1.2/debian/patches/02_gimp_plugin_dir.patch @@ -0,0 +1,19 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 02_gimp_plugin_dir.patch.dpatch by Michael Banck +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Install Gimp plugin at the proper place + +@DPATCH@ + +--- exult-1.2.orig/mapedit/Makefile.am ++++ exult-1.2/mapedit/Makefile.am +@@ -79,7 +79,7 @@ + if GIMP_PLUGIN + install-exec-local: + install -d $(DESTDIR)$(GIMP_PLUGIN_PREFIX) +- install -c $(DESTDIR)$(GIMP_PLUGINS) $(GIMP_PLUGIN_PREFIX) ++ install -c $(GIMP_PLUGINS) $(DESTDIR)$(GIMP_PLUGIN_PREFIX) + else + install-exec-local: + endif --- exult-1.2.orig/debian/patches/03_gcc4_build_fix.patch +++ exult-1.2/debian/patches/03_gcc4_build_fix.patch @@ -0,0 +1,103 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 03_gcc4_build_fix.patch.dpatch by Andreas Jochens +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Build fixes for gcc4 + +@DPATCH@ +diff -urN ../tmp-orig/exult-1.2/hash_utils.h ./hash_utils.h +--- ../tmp-orig/exult-1.2/hash_utils.h 2003-08-31 19:32:24.000000000 +0200 ++++ ./hash_utils.h 2005-06-17 12:30:38.000000000 +0200 +@@ -26,7 +26,7 @@ + #else + #if HAVE_EXT_HASH_MAP + # include +-# if (defined(__GNUC__) && (__GNUC__ == 3) && ( __GNUC_MINOR__ > 0)) ++# if (defined(__GNUC__) && (((__GNUC__ == 3) && ( __GNUC_MINOR__ > 0)) || __GNUC__ >= 4)) + using __gnu_cxx::hash_map; + # else + using std::hash_map; +@@ -44,7 +44,7 @@ + #else + #if HAVE_EXT_HASH_SET + # include +-# if (defined(__GNUC__) && (__GNUC__ == 3) && ( __GNUC_MINOR__ > 0)) ++# if (defined(__GNUC__) && (((__GNUC__ == 3) && ( __GNUC_MINOR__ > 0)) || __GNUC__ >= 4)) + using __gnu_cxx::hash_set; + # else + using std::hash_set; +diff -urN ../tmp-orig/exult-1.2/mapedit/npcedit.cc ./mapedit/npcedit.cc +--- ../tmp-orig/exult-1.2/mapedit/npcedit.cc 2004-04-26 06:59:14.000000000 +0200 ++++ ./mapedit/npcedit.cc 2005-06-17 12:30:38.000000000 +0200 +@@ -234,7 +234,7 @@ + GtkLabel *label = GTK_LABEL(glade_xml_get_widget(app_xml, lname)); + g_free(lname); + // User data = schedule #. +- sched.type = (int) gtk_object_get_user_data(GTK_OBJECT(label)); ++ sched.type = (long) gtk_object_get_user_data(GTK_OBJECT(label)); + if (sched.type < 0 || sched.type > 31) + return false; + // Get location. +@@ -600,7 +600,7 @@ + int shape = get_num_entry("npc_shape"); + int frame = get_num_entry("npc_frame"); + GtkWidget *fw = glade_xml_get_widget(app_xml, "npc_face_frame"); +- int face = (int) gtk_object_get_user_data(GTK_OBJECT(fw)); ++ long face = (long) gtk_object_get_user_data(GTK_OBJECT(fw)); + int usecode = get_num_entry("npc_usecode_entry"); + short attack_mode = get_optmenu("npc_attack_mode"); + short alignment = get_optmenu("npc_alignment"); +@@ -723,7 +723,7 @@ + return; + npc_face_draw->configure(); + GtkWidget *frame = glade_xml_get_widget(app_xml, "npc_face_frame"); +- int shnum = (int) gtk_object_get_user_data(GTK_OBJECT(frame)); ++ long shnum = (long) gtk_object_get_user_data(GTK_OBJECT(frame)); + npc_face_draw->draw_shape_centered(shnum, 0); + if (w != -1) + npc_face_draw->show(x, y, w, h); +diff -urN ../tmp-orig/exult-1.2/mapedit/studio.cc ./mapedit/studio.cc +--- ../tmp-orig/exult-1.2/mapedit/studio.cc 2004-04-26 06:32:13.000000000 +0200 ++++ ./mapedit/studio.cc 2005-06-17 12:30:38.000000000 +0200 +@@ -2009,7 +2009,7 @@ + gpointer data + ) + { +- guint32 color = (guint32) gtk_object_get_user_data(GTK_OBJECT(widget)); ++ guint32 color = (long) gtk_object_get_user_data(GTK_OBJECT(widget)); + GdkGC *gc = (GdkGC *) + gtk_object_get_data(GTK_OBJECT(widget), "color_gc"); + if (!gc) +@@ -2071,7 +2071,7 @@ + config->set("config/estudio/default_game", default_game, true); + GtkWidget *backgrnd = glade_xml_get_widget(app_xml, + "prefs_background"); +- background_color = (guint32) gtk_object_get_user_data( ++ background_color = (long) gtk_object_get_user_data( + GTK_OBJECT(backgrnd)); + config->set("config/estudio/background_color", background_color, true); + // Set background color. +diff -urN ../tmp-orig/exult-1.2/mouse.h ./mouse.h +--- ../tmp-orig/exult-1.2/mouse.h 2003-08-31 19:32:24.000000000 +0200 ++++ ./mouse.h 2005-06-17 12:35:29.000000000 +0200 +@@ -27,6 +27,8 @@ + #include "vgafile.h" + #include "glshape.h" + ++class Game_window; ++ + /* + * Handle custom mouse pointers. + */ +diff -urN ../tmp-orig/exult-1.2/usecode/useval.cc ./usecode/useval.cc +--- ../tmp-orig/exult-1.2/usecode/useval.cc 2004-05-23 07:07:11.000000000 +0200 ++++ ./usecode/useval.cc 2005-06-17 12:30:38.000000000 +0200 +@@ -464,7 +464,7 @@ + if (buflen < 5) + return -1; + *ptr++ = type; +- Write4(ptr, (int)value.ptr); ++ Write4(ptr, (long)value.ptr); + break; + case string_type: + { --- exult-1.2.orig/debian/exult_studio.1 +++ exult-1.2/debian/exult_studio.1 @@ -0,0 +1,89 @@ +.\" -*- nroff -*- +.TH exult 1 + +.SH NAME +exult_studio \- a world editor for Exult + +.SH SYNOPSIS +.B exult_studio +.RI [ options ] + +.SH DESCRIPTION +.B exult_studio +can be used to view graphics and map snippets of Exult games. Used in +conjunction with \fBexult\fP the map can be changed as well. + +Currently it is not feasable to create a game from scratch. You must +point \fBexult_studio\fP at an existing game instead, either via the +\fB-d\fP commandline option (see below), or by selecting \fIOpen +static...\fP in the \fIFile\fP menu. The latter will pop up a file +requester, where you can choose an appropriate directory. + +Once an appropriate directory has been located, a tree of game files +is displayed to the left of the main window, while the currently +selected file is viewed in detail to the right. At the moment, the +following types of files are supported: + +.SS Shape files +\fIShapes\fP are the basic graphical elements of the game. Each shape has +one or more frames that typically represent different states or angles +of the same thing. E.g. a button shape could have frames for pressed, +and released; a character could have frames depicting her sitting, +standing up facing one way, or another, swinging a punch, etc. + +When a shape file is selected, the right part of the main window will +show frame zero of the shapes contained therein. Shapes can be +selected by clicking, which will show there number, number of frames, +and name if known. Other frames can be viewed by changing the frame +number. + +.SS Map files +These files contain so called \fIchunks\fP that serve as templates in +the final map. The chunks of the selected map file are shown to the +right of the main window. + +.SH OPTIONS +.TP +\fB-d\fP \fIDIRECTORY\fP +specifies \fIDIRECTORY\fP as the game base directory. +.TP +\fB-x\fP \fIDIRECTORY\fP +tells \fBexult_studio\fR to look in DIRECTORY for its user-interface +specification. This option is only useful to developers. + +.SH FILES +.TP +.B /usr/share/exult/exult_studio.glade +Default location of the user-interface specification. + +.SH NOTES +For more help and information with \fBexult_studio\fP go to: +.IP http://exult.sourceforge.net/ +.IP http://sourceforge.net/projects/exult/ +.PP +Editing a copyrighted game may or may not be allowed. Please exercise caution. + +.SH BUGS +Closing the directory selector (via Ok or Cancel) induces a crash. +Double clicking the directory works, just move the selector out of the +way after that. + +Invalid arguments to commandline options will not be taken lightly. +Avoid that for now. + +More bugs? Surely! Please report them at: +.ce +http://sourceforge.net/bugs/?group_id=2335 +(Be sure to mention information about your operating system, and which +version of \fBexult_studio\fP you are running!) + +.SH AUTHORS +The Exult Team + +.SH HISTORY +\fBexult_studio\fP started it's life as a map-browser for Ultima VII +and has evolved from there, thanks to the open source-model, and +contributions of time and code from many people. + +.SH SEE ALSO +.BR exult (6) --- exult-1.2.orig/debian/exult.wrapper +++ exult-1.2/debian/exult.wrapper @@ -0,0 +1,11 @@ +#!/bin/sh + +# exult wrapper for the Debian package, by Michael Banck + +# Check whether ~/.exult.cfg exits +if ! [ -e ~/.exult.cfg ]; then + # Copy the global configuration file over + cp /etc/exult.cfg ~/.exult.cfg +fi + +/usr/games/exult.bin $@ --- exult-1.2.orig/debian/exult.xpm +++ exult-1.2/debian/exult.xpm @@ -0,0 +1,48 @@ +/* XPM */ +static char *exult[] = { +/* columns rows colors chars-per-pixel */ +"32 32 10 1", +" c black", +". c gray20", +"X c #4c4c4c", +"o c #666666", +"O c gray50", +"+ c gray60", +"@ c #b2b2b2", +"# c gray80", +"$ c gray90", +"% c none", +/* pixels */ +"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%", +"%%%%%%%%%%%%% %%%%%%%%%%%%%%", +"%%%%%%%%%%%% o+@+O %%%%%%%%%%%%%", +"%%%%%%%%%%% +@@@#@+ %%%%%%%%%%%%", +"%%%%%%%%%% +#@OXO@#+ %%%%%%%%%%%", +"%%%%%%%%%% @@+. .+#@ %%%%%%%%%%%", +"%%%%%%%%% o@@o % X@#o %%%%%%%%%%", +"%%%%%%%%% +#@ %%% +#+ %%%%%%%%%%", +"%%%%%%%%% O#@ %%% +#+ %%%%%%%%%%", +"%%%%%%%%% o@@ %%% +#+ %%%%%%%%%%", +"%%%%%%%%% o@@ %%% +#o %%%%%%%%%%", +"%%%%%%%%%% @@X % .@@ %%%%%%%%%%%", +"%%%%%%%%%%% #o % o@ %%%%%%%%%%%%", +"%%%%%%%%%%% @@X .@@ %%%%%%%%%%%%", +"%%%%%%% . #@X+@ . %%%%%%%%", +"%%%%%% O@@@+@@@@#@@@@@@+ %%%%%%%", +"%%%%%%% +@++oo+@@oo++@@ %%%%%%%%", +"%%%%%%% O#+ %%%%%%%%", +"%%%%%%%%%%%%% O#+ %%%%%%%%%%%%%%", +"%%%%%%%%%%%%% +#+ %%%%%%%%%%%%%%", +"%%%%%%%%%%%%% +#@ %%%%%%%%%%%%%%", +"%%%%%%%%%%%%% +#@ %%%%%%%%%%%%%%", +"%%%%%%%%%%%%% +#@ %%%%%%%%%%%%%%", +"%%%%%%%%%%%%% @#@ %%%%%%%%%%%%%%", +"%%%%%%%%%%%%% @#@ %%%%%%%%%%%%%%", +"%%%%%%%%%%%%% ### %%%%%%%%%%%%%%", +"%%%%%%%%%%%% O#$#+ %%%%%%%%%%%%%", +"%%%%%%%%%%%% @$$$@ %%%%%%%%%%%%%", +"%%%%%%%%%%%% +#$#+ %%%%%%%%%%%%%", +"%%%%%%%%%%%%% +#+ %%%%%%%%%%%%%%", +"%%%%%%%%%%%%%% + %%%%%%%%%%%%%%%", +"%%%%%%%%%%%%%% %%%%%%%%%%%%%%%" +}; --- exult-1.2.orig/debian/exult.dirs +++ exult-1.2/debian/exult.dirs @@ -0,0 +1 @@ +/usr/games --- exult-1.2.orig/debian/ucc.1 +++ exult-1.2/debian/ucc.1 @@ -0,0 +1,27 @@ +.\" -*- nroff -*- +.TH ucc 1 2002-03-24 Exult + +.SH NAME +ucc \- UseCode Compiler for Exult + +.SH SYNOPSIS +.B ucc +.RI [ FILE ] + +.SH DESCRIPTION +Games supported by Exult (\fIUltima 7\fR, for example) consist in +large part of Usecode. +.BR exult (1) +basically implements a virtual machine the machine language of which +is Usecode. + +.B ucc +is a compiler that targets this machine language. + +.SH AUTHOR +This manpage was written by Robert Bihlmeyer. It may be freely +redistributed and modified under the terms of the GNU General Public +License version 2 or higher. + +.SH SEE ALSO +.BR exult (6) --- exult-1.2.orig/debian/exult.menu +++ exult-1.2/debian/exult.menu @@ -0,0 +1,6 @@ +?package(exult):needs="X11"\ + title="Exult"\ + section="Games/Adventure"\ + hints="Fantasy,Roleplaying"\ + icon="/usr/share/pixmaps/exult.xpm"\ + command="/usr/games/exult" --- exult-1.2.orig/debian/config +++ exult-1.2/debian/config @@ -0,0 +1,36 @@ +#!/bin/sh -e + +. /usr/share/debconf/confmodule + +getkey='BEGIN { $k = shift } if (m||) { $p =~ s|/$1$|| or die "line $.: unexpected\n"; next } m|<(.*?)>| and $p .= "/$1", next; $p eq $k && s/^\s*// && s/\s*$/\n/ and print;' + +for game in blackgate serpent; do + case $game in + blackgate) key=/config/disk/game/blackgate/path;; + serpent) key=/config/disk/game/serpentisle/path;; + esac + val=`perl -ne "$getkey" $key /etc/exult.cfg` + [ "$val" ] && db_set exult/$game $val + + while true; do + set +e + db_input high exult/$game + [ $? -eq 30 ] && break # question was skipped, don't validate answer + set -e + db_go + + db_get exult/$game + [ -z "$RET" ] && break + if [ -d "$RET" ]; then + if ls "$RET" | grep -qi '^static$'; then # '; then + break + else + db_fset exult/no_static seen false + db_input high exult/no_static || true + fi + else + db_fset exult/not_a_dir seen false + db_input high exult/not_a_dir || true + fi + done +done --- exult-1.2.orig/debian/postinst +++ exult-1.2/debian/postinst @@ -0,0 +1,81 @@ +#!/bin/sh -e + +config=/etc/exult.cfg + +setkeys='%d = ("/config/debian-warning" => 0); +%k = @ARGV; +while () { + if (m||) { + $p =~ s|/$1$|| or die "line $.: unexpected\n"; + print if $skip < 2; + $skip = 0; + next + } + next if $skip; + if (m|(\s*)<(.*?)>|) { + $i = $1; + $p .= "/$2"; + exists $d{$p} and $skip = 2, next; + print; + exists $k{$p} and $skip = 1, print "$i$k{$p}\n"; + next; + } + print; +}' + +case "$1" in + configure) + . /usr/share/debconf/confmodule + db_get exult/blackgate + blackgate="${RET:-.}" + db_get exult/serpent + serpent="${RET:-.}" + if [ -e $config ]; then + perl -e "$setkeys" \ + /config/disk/game/blackgate/path $blackgate \ + /config/disk/game/serpentisle/path $serpent \ + <$config >$config.dpkg-new + mv $config.dpkg-new $config + else + cat <$config + + + + + + blackgate + + + $blackgate + + + + + serpentisle + + + $serpent + + + + + +EOF + fi + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +#DEBHELPER# + +exit 0 + + --- exult-1.2.orig/debian/exult-studio.docs +++ exult-1.2/debian/exult-studio.docs @@ -0,0 +1 @@ +tools/expack.txt --- exult-1.2.orig/debian/exult-studio.menu +++ exult-1.2/debian/exult-studio.menu @@ -0,0 +1,5 @@ +?package(exult-studio):needs="X11"\ + title="Exult Studio"\ + section="Games/Adventure"\ + hints="Fantasy,Roleplaying,Development"\ + command="/usr/bin/exult_studio" --- exult-1.2.orig/debian/po/cs.po +++ exult-1.2/debian/po/cs.po @@ -0,0 +1,90 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: exult 1.2-4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2004-03-29 09:01-0800\n" +"PO-Revision-Date: 2005-07-22 16:33+0200\n" +"Last-Translator: Martin Sin \n" +"Language-Team: Czech \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: string +#. Description +#: ../templates:3 +msgid "Path to \"The Black Gate\":" +msgstr "Cesta k \"The Black Gate\":" + +#. Type: string +#. Description +#: ../templates:3 +msgid "" +"Exult needs to know where your copy of Ultima VII: The Black Gate is " +"located. You need to give the path where the game's top directory can be " +"found." +msgstr "" +"Exult potÅ™ebuje vÄ›dÄ›t, kde se nachází kopie Ultima VII: The Black Gate. " +"Je nutné zadat cestu do hlavního adresáře této hry." + +#. Type: string +#. Description +#: ../templates:3 +msgid "If you don't have BG, just leave the field blank." +msgstr "Pokud BG nemáte, nechte toto políÄko prázdné." + +#. Type: string +#. Description +#: ../templates:12 +msgid "Path to \"Serpent Isle\":" +msgstr "Cesta k \"Serpent Isle\":" + +#. Type: string +#. Description +#: ../templates:12 +msgid "" +"Exult needs to know where your copy of Ultima VII: Serpent Isle is located. " +"You need to give the path where the game's top directory can be found." +msgstr "" +"Exult potÅ™ebuje vÄ›dÄ›t, kde se nachází kopie Ultima VII: Serpent Isle. " +"Je nutné zadat cestu do hlavního adresáře této hry." + +#. Type: string +#. Description +#: ../templates:12 +msgid "If you don't have SI, just leave the field blank." +msgstr "Pokud SI nemáte, nechte toto políÄko prázdné." + +#. Type: note +#. Description +#: ../templates:21 +msgid "The entered path is not a directory." +msgstr "Zadaná cesta není adresářem." + +#. Type: note +#. Description +#: ../templates:25 +msgid "This does not look like a top directory of one of the Ultimas." +msgstr "Toto nevypadá jako cesta do hlavního adresáře jedné z her Ultima." + +#. Type: note +#. Description +#: ../templates:25 +msgid "" +"(Specifically, I was looking for a subdirectory named \"static\", which did " +"not exist.)" +msgstr "" +"(KonkrétnÄ› jsem se díval po podadresáři \"static\", který neexistuje.)" --- exult-1.2.orig/debian/po/de.po +++ exult-1.2/debian/po/de.po @@ -0,0 +1,99 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: exult\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2004-03-29 09:01-0800\n" +"PO-Revision-Date: 2004-03-29 09:01-0800\n" +"Last-Translator: Helge Kreutzmann \n" +"Language-Team: German \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: string +#. Description +#: ../templates:3 +msgid "Path to \"The Black Gate\":" +msgstr "Pfad zu »The Black Gate«:" + +#. Type: string +#. Description +#: ../templates:3 +msgid "" +"Exult needs to know where your copy of Ultima VII: The Black Gate is " +"located. You need to give the path where the game's top directory can be " +"found." +msgstr "" +"Exult muss wissen, wo sich Ihre Kopie von Ultima VII: The Black Gate " +"befindet. Sie müssen den Pfad zu dem obersten Verzeichnis des Spiels eingeben." + +#. Type: string +#. Description +#: ../templates:3 +msgid "If you don't have BG, just leave the field blank." +msgstr "Falls Sie BG nicht besitzen, lassen Sie das Feld leer." + +#. Type: string +#. Description +#: ../templates:12 +msgid "Path to \"Serpent Isle\":" +msgstr "Pfad zu »Sperpent Isle«:" + +#. Type: string +#. Description +#: ../templates:12 +msgid "" +"Exult needs to know where your copy of Ultima VII: Serpent Isle is located. " +"You need to give the path where the game's top directory can be found." +msgstr "" +"Exult muss wissen, wo sich Ihre Kopie von Ultima VII: Serpent Isle " +"befindet. Sie müssen den Pfad zu dem obersten Verzeichnis des Spiels eingeben." + +#. Type: string +#. Description +#: ../templates:12 +msgid "If you don't have SI, just leave the field blank." +msgstr "Falls Sie SI nicht besitzen, lassen Sie das Feld leer" + +#. Type: note +#. Description +#: ../templates:21 +msgid "The entered path is not a directory." +msgstr "Der angegebene Pfad ist kein Verzeichnis." + +#. Type: note +#. Description +#: ../templates:25 +msgid "This does not look like a top directory of one of the Ultimas." +msgstr +"Das Verzeichnis sieht nicht wie das oberste Verzeichnis eines Ultima-Spieles " +"aus." + +#. Type: note +#. Description +#: ../templates:25 +msgid "" +"(Specifically, I was looking for a subdirectory named \"static\", which did " +"not exist.)" +msgstr "" +"(Insbesondere wurde nach einem Unterverzeichnis namens »static« gesucht, " +"welches nicht existiert.)" + +#~ msgid "Where is The Black Gate installed?" +#~ msgstr "Wo ist The Black Gate installiert?" + +#~ msgid "Where is Serpent Isle installed?" +#~ msgstr "Wo ist Serpent Isle installiert?" --- exult-1.2.orig/debian/po/fr.po +++ exult-1.2/debian/po/fr.po @@ -0,0 +1,95 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: exult\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2004-03-29 09:01-0800\n" +"PO-Revision-Date: 2004-08-20 07:00+0200\n" +"Last-Translator: Eric Madesclair \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: string +#. Description +#: ../templates:3 +msgid "Path to \"The Black Gate\":" +msgstr "Chemin d'accès au jeu « The Black Gate » :" + +#. Type: string +#. Description +#: ../templates:3 +msgid "" +"Exult needs to know where your copy of Ultima VII: The Black Gate is " +"located. You need to give the path where the game's top directory can be " +"found." +msgstr "" +"Exult a besoin de connaître où est situé votre copie du jeu « Ultima VII: " +"The Black Gate ». Vous devez indiquer le chemin d'accès au répertoire racine " +"du jeu." + +#. Type: string +#. Description +#: ../templates:3 +msgid "If you don't have BG, just leave the field blank." +msgstr "Si vous n'avez pas « The Black Gate », laissez ce champ vide." + +#. Type: string +#. Description +#: ../templates:12 +msgid "Path to \"Serpent Isle\":" +msgstr "Chemin d'accès au jeu « Serpent Isle » :" + +#. Type: string +#. Description +#: ../templates:12 +msgid "" +"Exult needs to know where your copy of Ultima VII: Serpent Isle is located. " +"You need to give the path where the game's top directory can be found." +msgstr "" +"Exult a besoin de connaître où est situé votre copie du jeu « Ultima VII: " +"Serpent Isle ». Vous devez indiquer le chemin d'accès au répertoire racine " +"du jeu." + +#. Type: string +#. Description +#: ../templates:12 +msgid "If you don't have SI, just leave the field blank." +msgstr "Si vous n'avez pas « Serpent Isle », laissez ce champ vide." + +#. Type: note +#. Description +#: ../templates:21 +msgid "The entered path is not a directory." +msgstr "Le chemin indiqué n'est pas un répertoire." + +#. Type: note +#. Description +#: ../templates:25 +msgid "This does not look like a top directory of one of the Ultimas." +msgstr "" +"Le chemin indiqué ne semble pas être le répertoire racine de l'un des jeux " +"de la série « Ultimas »." + +#. Type: note +#. Description +#: ../templates:25 +msgid "" +"(Specifically, I was looking for a subdirectory named \"static\", which did " +"not exist.)" +msgstr "" +"Plus précisément, un sous-répertoire nommé « static » est recherché, et n'a " +"pas pu être trouvé." --- exult-1.2.orig/debian/po/nl.po +++ exult-1.2/debian/po/nl.po @@ -0,0 +1,89 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: exult 1.2-3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2004-03-29 09:01-0800\n" +"PO-Revision-Date: 2005-01-31 19:27+0100\n" +"Last-Translator: Luk Claes \n" +"Language-Team: Debian l10n Dutch \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: string +#. Description +#: ../templates:3 +msgid "Path to \"The Black Gate\":" +msgstr "Pad naar \"The Black Gate\":" + +#. Type: string +#. Description +#: ../templates:3 +msgid "" +"Exult needs to know where your copy of Ultima VII: The Black Gate is " +"located. You need to give the path where the game's top directory can be " +"found." +msgstr "" +"Exult heeft het pad naar uw kopie van Ultima VII: The Black Gate nodig. Geef " +"het pad naar de topmap van het spel." + +#. Type: string +#. Description +#: ../templates:3 +msgid "If you don't have BG, just leave the field blank." +msgstr "Als u BG niet heeft, laat dit veld dan blanco." + +#. Type: string +#. Description +#: ../templates:12 +msgid "Path to \"Serpent Isle\":" +msgstr "Pad naar \"Serpent Isle\":" + +#. Type: string +#. Description +#: ../templates:12 +msgid "" +"Exult needs to know where your copy of Ultima VII: Serpent Isle is located. " +"You need to give the path where the game's top directory can be found." +msgstr "" +"Exult heeft het pad naar uw kopie van Ultima VII: Serpent Isle nodig. Geef " +"het pad naar de topmap van het spel." + +#. Type: string +#. Description +#: ../templates:12 +msgid "If you don't have SI, just leave the field blank." +msgstr "Als u SI niet heeft, laat dit veld dan blanco." + +#. Type: note +#. Description +#: ../templates:21 +msgid "The entered path is not a directory." +msgstr "Het opgegeven pad is geen map." + +#. Type: note +#. Description +#: ../templates:25 +msgid "This does not look like a top directory of one of the Ultimas." +msgstr "Dit lijkt niet op een topmap van één van de Ultima's." + +#. Type: note +#. Description +#: ../templates:25 +msgid "" +"(Specifically, I was looking for a subdirectory named \"static\", which did " +"not exist.)" +msgstr "(Specifiek is er een submap \"static\" vereist die niet bestaat.)" --- exult-1.2.orig/debian/po/ru.po +++ exult-1.2/debian/po/ru.po @@ -0,0 +1,95 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: exult\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2004-03-29 09:01-0800\n" +"PO-Revision-Date: 2004-03-29 09:01-0800\n" +"Last-Translator: Ilgiz Kalmetev \n" +"Language-Team: Russian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=KOI8-R\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: string +#. Description +#: ../templates:3 +msgid "Path to \"The Black Gate\":" +msgstr "" + +#. Type: string +#. Description +#: ../templates:3 +msgid "" +"Exult needs to know where your copy of Ultima VII: The Black Gate is " +"located. You need to give the path where the game's top directory can be " +"found." +msgstr "" +"Exult ÎÕÖÎÏ ÚÎÁÔØ, ÇÄÅ ÒÁÚÍÅÝÅÎÁ ×ÁÛ Ultima VII: Black Gate. ÷ÁÍ ÎÕÖÎÏ " +"ÚÁÄÁÔØ ÐÕÔØ, ÇÄÅ ÎÁÈÏÄÉÔÓÑ ËÁÔÁÌÏÇ ×ÅÒÈÎÅÇÏ ÕÒÏ×ÎÑ ÉÇÒÙ." + +#. Type: string +#. Description +#: ../templates:3 +msgid "If you don't have BG, just leave the field blank." +msgstr "åÓÌÉ Õ ×ÁÓ ÎÅÔ BG, ÔÏ ÏÓÔÁ×ØÔÅ ÐÏÌÅ ÐÕÓÔÙÍ." + +#. Type: string +#. Description +#: ../templates:12 +msgid "Path to \"Serpent Isle\":" +msgstr "" + +#. Type: string +#. Description +#: ../templates:12 +msgid "" +"Exult needs to know where your copy of Ultima VII: Serpent Isle is located. " +"You need to give the path where the game's top directory can be found." +msgstr "" +"Exult ÎÕÖÎÏ ÚÎÁÔØ, ÇÄÅ ÒÁÚÍÅÝÅÎ ×ÁÛ Ultima VII: Serpent Isle. ÷ÁÍ ÎÕÖÎÏ " +"ÚÁÄÁÔØ ÐÕÔØ, ÇÄÅ ÎÁÈÏÄÉÔÓÑ ËÁÔÁÌÏÇ ×ÅÒÈÎÅÇÏ ÕÒÏ×ÎÑ ÉÇÒÙ." + +#. Type: string +#. Description +#: ../templates:12 +msgid "If you don't have SI, just leave the field blank." +msgstr "åÓÌÉ Õ ×ÁÓ ÎÅÔ SI, ÔÏ ÏÓÔÁ×ØÔÅ ÐÏÌÅ ÐÕÓÔÙÍ." + +#. Type: note +#. Description +#: ../templates:21 +msgid "The entered path is not a directory." +msgstr "÷×ÅÄÅÎÎÙÊ ÐÕÔØ ÎÅ Ñ×ÌÑÅÔÓÑ ËÁÔÁÌÏÇÏÍ." + +#. Type: note +#. Description +#: ../templates:25 +msgid "This does not look like a top directory of one of the Ultimas." +msgstr "üÔÏ ÎÅ ÐÏÈÏÖÅ ÎÁ ËÁÔÁÌÏÇ ×ÅÒÈÎÅÇÏ ÕÒÏ×ÎÑ ÏÄÎÏÇÏ ÉÚ Ultimas." + +#. Type: note +#. Description +#: ../templates:25 +msgid "" +"(Specifically, I was looking for a subdirectory named \"static\", which did " +"not exist.)" +msgstr "(ëÏÎËÒÅÔÎÏ, Ñ ÉÓËÁÌ ÐÏËÁÔÁÌÏÇ \"static\" É ÎÅ ÎÁÛÅÌ ÅÇÏ.)" + +#~ msgid "Where is The Black Gate installed?" +#~ msgstr "çÄÅ ÕÓÔÁÎÏ×ÌÅÎ Black Gate?" + +#~ msgid "Where is Serpent Isle installed?" +#~ msgstr "çÄÅ ÕÓÔÁÎÏ×ÌÅÎ Serpent Isle?" --- exult-1.2.orig/debian/po/POTFILES.in +++ exult-1.2/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] templates --- exult-1.2.orig/debian/po/zh_TW.po +++ exult-1.2/debian/po/zh_TW.po @@ -0,0 +1,91 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: exult 1.2-3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2004-03-29 09:01-0800\n" +"PO-Revision-Date: 2005-02-01 19:59+0800\n" +"Last-Translator: Asho Yeh \n" +"Language-Team: Chinese (traditional) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: Chinese\n" +"X-Poedit-Country: TAIWAN\n" + +#. Type: string +#. Description +#: ../templates:3 +msgid "Path to \"The Black Gate\":" +msgstr "\"The Black Gate\" 路徑:" + +#. Type: string +#. Description +#: ../templates:3 +msgid "" +"Exult needs to know where your copy of Ultima VII: The Black Gate is " +"located. You need to give the path where the game's top directory can be " +"found." +msgstr "" +"Exult 需è¦çŸ¥é“複製到ç£ç¢Ÿçš„ Ultima VII :The Black Gate 的檔案路徑。您必須輸" +"å…¥éŠæˆ²çš„最上層目錄。" + +#. Type: string +#. Description +#: ../templates:3 +msgid "If you don't have BG, just leave the field blank." +msgstr "如果您沒有 BG,請留下空白。" + +#. Type: string +#. Description +#: ../templates:12 +msgid "Path to \"Serpent Isle\":" +msgstr "\"Serpent Isle\" 路徑:" + +#. Type: string +#. Description +#: ../templates:12 +msgid "" +"Exult needs to know where your copy of Ultima VII: Serpent Isle is located. " +"You need to give the path where the game's top directory can be found." +msgstr "" +"Exult 需è¦çŸ¥é“複製到ç£ç¢Ÿçš„ Ultima VII :Serpent Isle 的檔案路徑。您必須輸入" +"éŠæˆ²çš„最上層目錄。" + +#. Type: string +#. Description +#: ../templates:12 +msgid "If you don't have SI, just leave the field blank." +msgstr "如果您沒有 SI,請留下空白。" + +#. Type: note +#. Description +#: ../templates:21 +msgid "The entered path is not a directory." +msgstr "輸入的路徑ä¸æ˜¯ç›®éŒ„。" + +#. Type: note +#. Description +#: ../templates:25 +msgid "This does not look like a top directory of one of the Ultimas." +msgstr "該目錄ä¸åƒæ˜¯ Ultimas 其中一個最上層的目錄。" + +#. Type: note +#. Description +#: ../templates:25 +msgid "" +"(Specifically, I was looking for a subdirectory named \"static\", which did " +"not exist.)" +msgstr "(尋找的 \"static\" å­ç›®éŒ„ä¸å­˜åœ¨ã€‚)" --- exult-1.2.orig/debian/po/templates.pot +++ exult-1.2/debian/po/templates.pot @@ -0,0 +1,86 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2004-03-29 09:01-0800\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: string +#. Description +#: ../templates:3 +msgid "Path to \"The Black Gate\":" +msgstr "" + +#. Type: string +#. Description +#: ../templates:3 +msgid "" +"Exult needs to know where your copy of Ultima VII: The Black Gate is " +"located. You need to give the path where the game's top directory can be " +"found." +msgstr "" + +#. Type: string +#. Description +#: ../templates:3 +msgid "If you don't have BG, just leave the field blank." +msgstr "" + +#. Type: string +#. Description +#: ../templates:12 +msgid "Path to \"Serpent Isle\":" +msgstr "" + +#. Type: string +#. Description +#: ../templates:12 +msgid "" +"Exult needs to know where your copy of Ultima VII: Serpent Isle is located. " +"You need to give the path where the game's top directory can be found." +msgstr "" + +#. Type: string +#. Description +#: ../templates:12 +msgid "If you don't have SI, just leave the field blank." +msgstr "" + +#. Type: note +#. Description +#: ../templates:21 +msgid "The entered path is not a directory." +msgstr "" + +#. Type: note +#. Description +#: ../templates:25 +msgid "This does not look like a top directory of one of the Ultimas." +msgstr "" + +#. Type: note +#. Description +#: ../templates:25 +msgid "" +"(Specifically, I was looking for a subdirectory named \"static\", which did " +"not exist.)" +msgstr "" --- exult-1.2.orig/debian/po/sv.po +++ exult-1.2/debian/po/sv.po @@ -0,0 +1,88 @@ +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# Developers do not need to manually edit POT or PO files. +# , fuzzy +# +# +msgid "" +msgstr "" +"Project-Id-Version: exult 1.2-4\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2004-03-29 09:01-0800\n" +"PO-Revision-Date: 2005-09-27 22:31-0700\n" +"Last-Translator: Daniel Nylander \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8bit" + +#. Type: string +#. Description +#: ../templates:3 +msgid "Path to \"The Black Gate\":" +msgstr "Sökväg till \"The Black Gate\":" + +#. Type: string +#. Description +#: ../templates:3 +msgid "" +"Exult needs to know where your copy of Ultima VII: The Black Gate is " +"located. You need to give the path where the game's top directory can be " +"found." +msgstr "" +"Exult behöver veta var du har din kopia av Ultima VII: The Black Gate finns någonstans. Du behöver ange sökvägen till var spelet's huvudmapp kan hittas." + +#. Type: string +#. Description +#: ../templates:3 +msgid "If you don't have BG, just leave the field blank." +msgstr "Om du inte har BG, lämna då detta fält tomt." + +#. Type: string +#. Description +#: ../templates:12 +msgid "Path to \"Serpent Isle\":" +msgstr "Sökväg till \"Serpent Isle\":" + +#. Type: string +#. Description +#: ../templates:12 +msgid "" +"Exult needs to know where your copy of Ultima VII: Serpent Isle is located. " +"You need to give the path where the game's top directory can be found." +msgstr "" +"Exult behöver veta var du har din kopia av Ultima VII: Serpent Isle finns någonstans. Du behöver ange sökvägen till var spelet's huvudmapp kan hittas." + +#. Type: string +#. Description +#: ../templates:12 +msgid "If you don't have SI, just leave the field blank." +msgstr "Om du inte har SI, lämna då detta fält tomt." + +#. Type: note +#. Description +#: ../templates:21 +msgid "The entered path is not a directory." +msgstr "Den angivna sökvägen är inte en mapp." + +#. Type: note +#. Description +#: ../templates:25 +msgid "This does not look like a top directory of one of the Ultimas." +msgstr "Detta ser inte ut att vara huvudmappen av någon av Ultima-spelen." + +#. Type: note +#. Description +#: ../templates:25 +msgid "" +"(Specifically, I was looking for a subdirectory named \"static\", which did " +"not exist.)" +msgstr "" +"(Letade specifikt efter en undermapp kallad \"static\", men den hittades inte.)" + --- exult-1.2.orig/debian/templates +++ exult-1.2/debian/templates @@ -0,0 +1,27 @@ +Template: exult/blackgate +Type: string +_Description: Path to "The Black Gate": + Exult needs to know where your copy of Ultima VII: The Black Gate is + located. You need to give the path where the game's top directory can be + found. + . + If you don't have BG, just leave the field blank. + +Template: exult/serpent +Type: string +_Description: Path to "Serpent Isle": + Exult needs to know where your copy of Ultima VII: Serpent Isle is + located. You need to give the path where the game's top directory can be + found. + . + If you don't have SI, just leave the field blank. + +Template: exult/not_a_dir +Type: note +_Description: The entered path is not a directory. + +Template: exult/no_static +Type: note +_Description: This does not look like a top directory of one of the Ultimas. + (Specifically, I was looking for a subdirectory named "static", which did + not exist.) --- exult-1.2.orig/debian/exult-studio.files +++ exult-1.2/debian/exult-studio.files @@ -0,0 +1,18 @@ +usr/bin/expack +usr/bin/ipack +usr/bin/textpack +usr/bin/splitshp +usr/bin/shp2pcx +usr/bin/ucxt +usr/bin/ucc +usr/bin/exult_studio +usr/share/games/exult/u7opcodes.data +usr/share/games/exult/u7misc.data +usr/share/games/exult/exult_studio.glade +usr/share/games/exult/estudio/new/* +usr/share/man/man1/expack.1 +usr/share/man/man1/ipack.1 +usr/share/man/man1/shp2pcx.1 +usr/share/man/man1/splitshp.1 +usr/share/man/man1/textpack.1 +usr/lib/gimp/2.0/plug-ins/u7shp --- exult-1.2.orig/debian/exult-studio.README.Debian +++ exult-1.2/debian/exult-studio.README.Debian @@ -0,0 +1,23 @@ +exult-studio meta-documentation + +Updated 2001-12-12 by Michael Zinn +Revised 2004-08-17 by Carlos Laviola + + +First, you'll want to checkout the docs that came with exult itself, +in /usr/share/doc/exult; a lot of stuff for the tools is amongst the +main documentation. + +In this directory are some other documents relevant to particular +tools: + + expack.txt - documentation for expack. Go figure :) + + Potentially useful for playing with exult_studio: + + u7eggs.txt - rough description of what the various egg + types do. + + serpentsfx.txt - listing of the sound effect numbers + in SI. (again, for egg editing or + whatever) --- exult-1.2.orig/Makefile.in +++ exult-1.2/Makefile.in @@ -1,7 +1,8 @@ -# Makefile.in generated automatically by automake 1.5 from Makefile.am. +# Makefile.in generated by automake 1.8.5 from Makefile.am. +# @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004 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. @@ -13,60 +14,137 @@ @SET_MAKE@ -SHELL = @SHELL@ + +SOURCES = $(exult_SOURCES) srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ -prefix = @prefix@ -exec_prefix = @exec_prefix@ - -bindir = @bindir@ -sbindir = @sbindir@ -libexecdir = @libexecdir@ -datadir = @datadir@ -sysconfdir = @sysconfdir@ -sharedstatedir = @sharedstatedir@ -localstatedir = @localstatedir@ -libdir = @libdir@ -infodir = @infodir@ -mandir = @mandir@ -includedir = @includedir@ -oldincludedir = /usr/include pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = . - -ACLOCAL = @ACLOCAL@ -AUTOCONF = @AUTOCONF@ -AUTOMAKE = @AUTOMAKE@ -AUTOHEADER = @AUTOHEADER@ - +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) -transform = @program_transform_name@ +transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : -host_alias = @host_alias@ host_triplet = @host@ -AMTAR = @AMTAR@ -AS = @AS@ +bin_PROGRAMS = exult$(EXEEXT) +DIST_COMMON = README $(am__configure_deps) $(noinst_HEADERS) \ + $(srcdir)/Info.plist.in $(srcdir)/Makefile.am \ + $(srcdir)/Makefile.in $(srcdir)/exult.spec.in \ + $(top_srcdir)/configure $(top_srcdir)/debian/Makefile.in \ + AUTHORS COPYING ChangeLog INSTALL NEWS config.guess config.sub \ + depcomp install-sh missing +subdir = . +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) +am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ + configure.lineno configure.status.lineno +mkinstalldirs = $(mkdir_p) +CONFIG_CLEAN_FILES = exult.spec Info.plist debian/Makefile +am__installdirs = "$(DESTDIR)$(bindir)" +binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) +PROGRAMS = $(bin_PROGRAMS) +am_exult_OBJECTS = actions.$(OBJEXT) actorio.$(OBJEXT) \ + actors.$(OBJEXT) alloc.$(OBJEXT) args.$(OBJEXT) \ + bggame.$(OBJEXT) browser.$(OBJEXT) cheat.$(OBJEXT) \ + cheat_screen.$(OBJEXT) combat.$(OBJEXT) delobjs.$(OBJEXT) \ + devgame.$(OBJEXT) dir.$(OBJEXT) drag.$(OBJEXT) \ + effects.$(OBJEXT) exult.$(OBJEXT) exultmenu.$(OBJEXT) \ + game.$(OBJEXT) gameclk.$(OBJEXT) gamedat.$(OBJEXT) \ + gamemap.$(OBJEXT) gamerend.$(OBJEXT) gamewin.$(OBJEXT) \ + keys.$(OBJEXT) keyactions.$(OBJEXT) menulist.$(OBJEXT) \ + monsters.$(OBJEXT) mouse.$(OBJEXT) npcnear.$(OBJEXT) \ + npctime.$(OBJEXT) palette.$(OBJEXT) party.$(OBJEXT) \ + paths.$(OBJEXT) readnpcs.$(OBJEXT) schedule.$(OBJEXT) \ + segfile.$(OBJEXT) shapeid.$(OBJEXT) sigame.$(OBJEXT) \ + tqueue.$(OBJEXT) txtscroll.$(OBJEXT) version.$(OBJEXT) \ + xdrag.$(OBJEXT) +exult_OBJECTS = $(am_exult_OBJECTS) +am__DEPENDENCIES_1 = pathfinder/libpathfinder.la audio/libaudio.la \ + audio/midi_drivers/libmididrv.la flic/libflic.la \ + conf/libconf.la imagewin/libimagewin.la server/libserver.la \ + usecode/libusecode.la shapes/libshapes.la objs/libobjs.la \ + gumps/libgumps.la files/libu7file.la files/zip/libminizip.la +am__DEPENDENCIES_2 = +DEFAULT_INCLUDES = -I. -I$(srcdir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/actions.Po ./$(DEPDIR)/actorio.Po \ +@AMDEP_TRUE@ ./$(DEPDIR)/actors.Po ./$(DEPDIR)/alloc.Po \ +@AMDEP_TRUE@ ./$(DEPDIR)/args.Po ./$(DEPDIR)/bggame.Po \ +@AMDEP_TRUE@ ./$(DEPDIR)/browser.Po ./$(DEPDIR)/cheat.Po \ +@AMDEP_TRUE@ ./$(DEPDIR)/cheat_screen.Po ./$(DEPDIR)/combat.Po \ +@AMDEP_TRUE@ ./$(DEPDIR)/delobjs.Po ./$(DEPDIR)/devgame.Po \ +@AMDEP_TRUE@ ./$(DEPDIR)/dir.Po ./$(DEPDIR)/drag.Po \ +@AMDEP_TRUE@ ./$(DEPDIR)/effects.Po ./$(DEPDIR)/exult.Po \ +@AMDEP_TRUE@ ./$(DEPDIR)/exultmenu.Po ./$(DEPDIR)/game.Po \ +@AMDEP_TRUE@ ./$(DEPDIR)/gameclk.Po ./$(DEPDIR)/gamedat.Po \ +@AMDEP_TRUE@ ./$(DEPDIR)/gamemap.Po ./$(DEPDIR)/gamerend.Po \ +@AMDEP_TRUE@ ./$(DEPDIR)/gamewin.Po ./$(DEPDIR)/keyactions.Po \ +@AMDEP_TRUE@ ./$(DEPDIR)/keys.Po ./$(DEPDIR)/menulist.Po \ +@AMDEP_TRUE@ ./$(DEPDIR)/monsters.Po ./$(DEPDIR)/mouse.Po \ +@AMDEP_TRUE@ ./$(DEPDIR)/npcnear.Po ./$(DEPDIR)/npctime.Po \ +@AMDEP_TRUE@ ./$(DEPDIR)/palette.Po ./$(DEPDIR)/party.Po \ +@AMDEP_TRUE@ ./$(DEPDIR)/paths.Po ./$(DEPDIR)/readnpcs.Po \ +@AMDEP_TRUE@ ./$(DEPDIR)/schedule.Po ./$(DEPDIR)/segfile.Po \ +@AMDEP_TRUE@ ./$(DEPDIR)/shapeid.Po ./$(DEPDIR)/sigame.Po \ +@AMDEP_TRUE@ ./$(DEPDIR)/tqueue.Po ./$(DEPDIR)/txtscroll.Po \ +@AMDEP_TRUE@ ./$(DEPDIR)/version.Po ./$(DEPDIR)/xdrag.Po +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(exult_SOURCES) +DIST_SOURCES = $(exult_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 +HEADERS = $(noinst_HEADERS) +ETAGS = etags +CTAGS = ctags +DIST_SUBDIRS = $(SUBDIRS) +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +distdir = $(PACKAGE)-$(VERSION) +top_distdir = $(distdir) +am__remove_distdir = \ + { test ! -d $(distdir) \ + || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \ + && rm -fr $(distdir); }; } +DIST_ARCHIVES = $(distdir).tar.gz +GZIP_ENV = --best +distuninstallcheck_listfiles = find . -type f -print +distcleancheck_listfiles = find . -type f -print AWK = @AWK@ CC = @CC@ +CFLAGS = @CFLAGS@ CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXFLAGS = @CXXFLAGS@ DEBUG_FLAGS = @DEBUG_FLAGS@ -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -ECHO = @ECHO@ +DEFS = @DEFS@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ EXEEXT = @EXEEXT@ EXE_TARGET = @EXE_TARGET@ EXULT_DATADIR = @EXULT_DATADIR@ @@ -81,33 +159,65 @@ GLADE_LIBS = @GLADE_LIBS@ HAVE_TIMIDITY_BIN = @HAVE_TIMIDITY_BIN@ ICON_FILE = @ICON_FILE@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ KMID_INCLUDES = @KMID_INCLUDES@ KMID_LIBS = @KMID_LIBS@ -LEX = @LEX@ -LIBTOOL = @LIBTOOL@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ LIBTOOL_DEPS = @LIBTOOL_DEPS@ -LN_S = @LN_S@ -OBJDUMP = @OBJDUMP@ +LTLIBOBJS = @LTLIBOBJS@ OBJEXT = @OBJEXT@ OPENGL_LIBS = @OPENGL_LIBS@ -PACKAGE = @PACKAGE@ -RANLIB = @RANLIB@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ SDL_CFLAGS = @SDL_CFLAGS@ -SDL_CONFIG = @SDL_CONFIG@ SDL_LIBS = @SDL_LIBS@ -STRIP = @STRIP@ +SHELL = @SHELL@ SYSLIBS = @SYSLIBS@ -VERSION = @VERSION@ WARNINGS = @WARNINGS@ WINDOWING_SYSTEM = @WINDOWING_SYSTEM@ YACC = @YACC@ ZLIB_LIBS = @ZLIB_LIBS@ -am__include = @am__include@ -am__quote = @am__quote@ -install_sh = @install_sh@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +datadir = @datadir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +includedir = @includedir@ +infodir = @infodir@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +oldincludedir = @oldincludedir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +sysconfdir = @sysconfdir@ +target = @target@ +target_alias = @target_alias@ +target_cpu = @target_cpu@ +target_os = @target_os@ +target_vendor = @target_vendor@ x_libraries = @x_libraries@ - INCLUDES = -I$(srcdir) -I$(srcdir)/headers -I$(srcdir)/imagewin -I$(srcdir)/shapes \ -I$(srcdir)/server -I$(srcdir)/data \ -I$(srcdir)/objs -I$(srcdir)/conf -I$(srcdir)/files -I$(srcdir)/gumps \ @@ -115,15 +225,10 @@ $(SDL_CFLAGS) $(INCDIRS) $(WINDOWING_SYSTEM) \ $(DEBUG_FLAGS) $(CPPFLAGS) -DEXULT_DATADIR=\"$(EXULT_DATADIR)\" - CXXLINK = $(LIBTOOL) --mode=link $(CXXLD) $(AM_CXXFLAGS) $(DEBUG_FLAGS) $(CXXFLAGS) $(LDFLAGS) -o $(EXE_TARGET) - SUBDIRS = files conf shapes imagewin tools data flic audio pathfinder gumps \ usecode objs server mapedit debian desktop docs - -bin_PROGRAMS = exult - exult_SOURCES = \ actions.cc \ actions.h \ @@ -221,7 +326,6 @@ xdrag.cc \ xdrag.h - EXULTLIBS = \ pathfinder/libpathfinder.la \ audio/libaudio.la \ @@ -237,19 +341,15 @@ files/libu7file.la \ files/zip/libminizip.la - exult_LDADD = \ $(EXULTLIBS) \ $(SDL_LIBS) $(KMID_LIBS) $(SYSLIBS) $(x_libraries) $(ICON_FILE) \ $(ZLIB_LIBS) $(OPENGL_LIBS) - exult_DEPENDENCIES = $(ICON_FILE) $(EXULTLIBS) - noinst_HEADERS = \ alpha_kludges.h - EXTRA_DIST = \ autogen.sh \ README.1ST \ @@ -314,171 +414,68 @@ server/servewin32.cc \ server/servewin32.h - CLEANFILES = *~ - @MACOSX_TRUE@bundle_name = Exult.app -subdir = . -ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = config.h -CONFIG_CLEAN_FILES = exult.spec Info.plist -bin_PROGRAMS = exult$(EXEEXT) -PROGRAMS = $(bin_PROGRAMS) - -am_exult_OBJECTS = actions.$(OBJEXT) actorio.$(OBJEXT) actors.$(OBJEXT) \ - alloc.$(OBJEXT) args.$(OBJEXT) bggame.$(OBJEXT) \ - browser.$(OBJEXT) cheat.$(OBJEXT) cheat_screen.$(OBJEXT) \ - combat.$(OBJEXT) delobjs.$(OBJEXT) devgame.$(OBJEXT) \ - dir.$(OBJEXT) drag.$(OBJEXT) effects.$(OBJEXT) exult.$(OBJEXT) \ - exultmenu.$(OBJEXT) game.$(OBJEXT) gameclk.$(OBJEXT) \ - gamedat.$(OBJEXT) gamemap.$(OBJEXT) gamerend.$(OBJEXT) \ - gamewin.$(OBJEXT) keys.$(OBJEXT) keyactions.$(OBJEXT) \ - menulist.$(OBJEXT) monsters.$(OBJEXT) mouse.$(OBJEXT) \ - npcnear.$(OBJEXT) npctime.$(OBJEXT) palette.$(OBJEXT) \ - party.$(OBJEXT) paths.$(OBJEXT) readnpcs.$(OBJEXT) \ - schedule.$(OBJEXT) segfile.$(OBJEXT) shapeid.$(OBJEXT) \ - sigame.$(OBJEXT) tqueue.$(OBJEXT) txtscroll.$(OBJEXT) \ - version.$(OBJEXT) xdrag.$(OBJEXT) -exult_OBJECTS = $(am_exult_OBJECTS) -exult_LDFLAGS = - -DEFS = @DEFS@ -DEFAULT_INCLUDES = -I. -I$(srcdir) -I. -CPPFLAGS = @CPPFLAGS@ -LDFLAGS = @LDFLAGS@ -LIBS = @LIBS@ -depcomp = $(SHELL) $(top_srcdir)/depcomp -@AMDEP_TRUE@DEP_FILES = $(DEPDIR)/actions.Po $(DEPDIR)/actorio.Po \ -@AMDEP_TRUE@ $(DEPDIR)/actors.Po $(DEPDIR)/alloc.Po \ -@AMDEP_TRUE@ $(DEPDIR)/args.Po $(DEPDIR)/bggame.Po \ -@AMDEP_TRUE@ $(DEPDIR)/browser.Po $(DEPDIR)/cheat.Po \ -@AMDEP_TRUE@ $(DEPDIR)/cheat_screen.Po $(DEPDIR)/combat.Po \ -@AMDEP_TRUE@ $(DEPDIR)/delobjs.Po $(DEPDIR)/devgame.Po \ -@AMDEP_TRUE@ $(DEPDIR)/dir.Po $(DEPDIR)/drag.Po \ -@AMDEP_TRUE@ $(DEPDIR)/effects.Po $(DEPDIR)/exult.Po \ -@AMDEP_TRUE@ $(DEPDIR)/exultmenu.Po $(DEPDIR)/game.Po \ -@AMDEP_TRUE@ $(DEPDIR)/gameclk.Po $(DEPDIR)/gamedat.Po \ -@AMDEP_TRUE@ $(DEPDIR)/gamemap.Po $(DEPDIR)/gamerend.Po \ -@AMDEP_TRUE@ $(DEPDIR)/gamewin.Po $(DEPDIR)/keyactions.Po \ -@AMDEP_TRUE@ $(DEPDIR)/keys.Po $(DEPDIR)/menulist.Po \ -@AMDEP_TRUE@ $(DEPDIR)/monsters.Po $(DEPDIR)/mouse.Po \ -@AMDEP_TRUE@ $(DEPDIR)/npcnear.Po $(DEPDIR)/npctime.Po \ -@AMDEP_TRUE@ $(DEPDIR)/palette.Po $(DEPDIR)/party.Po \ -@AMDEP_TRUE@ $(DEPDIR)/paths.Po $(DEPDIR)/readnpcs.Po \ -@AMDEP_TRUE@ $(DEPDIR)/schedule.Po $(DEPDIR)/segfile.Po \ -@AMDEP_TRUE@ $(DEPDIR)/shapeid.Po $(DEPDIR)/sigame.Po \ -@AMDEP_TRUE@ $(DEPDIR)/tqueue.Po $(DEPDIR)/txtscroll.Po \ -@AMDEP_TRUE@ $(DEPDIR)/version.Po $(DEPDIR)/xdrag.Po -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --mode=compile $(CXX) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXFLAGS = @CXXFLAGS@ -CFLAGS = @CFLAGS@ -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(exult_SOURCES) -HEADERS = $(noinst_HEADERS) - - -RECURSIVE_TARGETS = info-recursive dvi-recursive install-info-recursive \ - uninstall-info-recursive all-recursive install-data-recursive \ - install-exec-recursive installdirs-recursive install-recursive \ - uninstall-recursive check-recursive installcheck-recursive -DIST_COMMON = README $(noinst_HEADERS) ./stamp-h.in AUTHORS COPYING \ - ChangeLog INSTALL Info.plist.in Makefile.am Makefile.in NEWS \ - aclocal.m4 config.guess config.h.in config.sub configure \ - configure.ac depcomp exult.spec.in install-sh ltmain.sh missing \ - mkinstalldirs -DIST_SUBDIRS = $(SUBDIRS) -SOURCES = $(exult_SOURCES) - -all: config.h - $(MAKE) $(AM_MAKEFLAGS) all-recursive +all: all-recursive .SUFFIXES: -.SUFFIXES: .cc .lo .o .obj - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -distclean-libtool: - -rm -f libtool -$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4) +.SUFFIXES: .cc .o .obj +am--refresh: + @: +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + echo ' cd $(srcdir) && $(AUTOMAKE) --gnu '; \ + cd $(srcdir) && $(AUTOMAKE) --gnu \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && \ - CONFIG_HEADERS= CONFIG_LINKS= \ - CONFIG_FILES=$@ $(SHELL) ./config.status +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + echo ' $(SHELL) ./config.status'; \ + $(SHELL) ./config.status;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ + esac; -$(top_builddir)/config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck -$(srcdir)/configure: $(srcdir)/configure.ac $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES) - cd $(srcdir) && $(AUTOCONF) -$(ACLOCAL_M4): configure.ac - cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) -config.h: stamp-h - @if test ! -f $@; then \ - rm -f stamp-h; \ - $(MAKE) stamp-h; \ - else :; fi -stamp-h: $(srcdir)/config.h.in $(top_builddir)/config.status - @rm -f stamp-h stamp-hT - @echo timestamp > stamp-hT 2> /dev/null - cd $(top_builddir) \ - && CONFIG_FILES= CONFIG_HEADERS=config.h \ - $(SHELL) ./config.status - @mv stamp-hT stamp-h -$(srcdir)/config.h.in: $(srcdir)/./stamp-h.in - @if test ! -f $@; then \ - rm -f $(srcdir)/./stamp-h.in; \ - $(MAKE) $(srcdir)/./stamp-h.in; \ - else :; fi -$(srcdir)/./stamp-h.in: $(top_srcdir)/configure.ac $(ACLOCAL_M4) - @rm -f $(srcdir)/./stamp-h.in $(srcdir)/./stamp-h.inT - @echo timestamp > $(srcdir)/./stamp-h.inT 2> /dev/null - cd $(top_srcdir) && $(AUTOHEADER) - @mv $(srcdir)/./stamp-h.inT $(srcdir)/./stamp-h.in - -distclean-hdr: - -rm -f config.h -exult.spec: $(top_builddir)/config.status exult.spec.in - cd $(top_builddir) && CONFIG_FILES=$@ CONFIG_HEADERS= CONFIG_LINKS= $(SHELL) ./config.status -Info.plist: $(top_builddir)/config.status Info.plist.in - cd $(top_builddir) && CONFIG_FILES=$@ CONFIG_HEADERS= CONFIG_LINKS= $(SHELL) ./config.status +$(top_srcdir)/configure: $(am__configure_deps) + cd $(srcdir) && $(AUTOCONF) +exult.spec: $(top_builddir)/config.status $(srcdir)/exult.spec.in + cd $(top_builddir) && $(SHELL) ./config.status $@ +Info.plist: $(top_builddir)/config.status $(srcdir)/Info.plist.in + cd $(top_builddir) && $(SHELL) ./config.status $@ +debian/Makefile: $(top_builddir)/config.status $(top_srcdir)/debian/Makefile.in + cd $(top_builddir) && $(SHELL) ./config.status $@ install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) - $(mkinstalldirs) $(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 \ - || test -f $$p1 \ ; then \ - f=`echo $$p1|sed '$(transform);s/$$/$(EXEEXT)/'`; \ - echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/$$f"; \ - $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/$$f; \ + f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ + echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \ + $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \ else :; fi; \ done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; for p in $$list; do \ - f=`echo $$p|sed 's/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ - echo " rm -f $(DESTDIR)$(bindir)/$$f"; \ - rm -f $(DESTDIR)$(bindir)/$$f; \ + f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ + echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \ + rm -f "$(DESTDIR)$(bindir)/$$f"; \ done clean-binPROGRAMS: @@ -488,75 +485,69 @@ $(CXXLINK) $(exult_LDFLAGS) $(exult_OBJECTS) $(exult_LDADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/actions.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/actorio.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/actors.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/alloc.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/args.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/bggame.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/browser.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/cheat.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/cheat_screen.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/combat.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/delobjs.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/devgame.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/dir.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/drag.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/effects.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/exult.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/exultmenu.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/game.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/gameclk.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/gamedat.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/gamemap.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/gamerend.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/gamewin.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/keyactions.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/keys.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/menulist.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/monsters.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/mouse.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/npcnear.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/npctime.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/palette.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/party.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/paths.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/readnpcs.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/schedule.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/segfile.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/shapeid.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/sigame.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/tqueue.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/txtscroll.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/version.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/xdrag.Po@am__quote@ - -distclean-depend: - -rm -rf $(DEPDIR) +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/actions.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/actorio.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/actors.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/alloc.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/args.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bggame.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/browser.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cheat.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cheat_screen.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/combat.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/delobjs.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/devgame.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dir.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/drag.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/effects.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exult.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exultmenu.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/game.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gameclk.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gamedat.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gamemap.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gamerend.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gamewin.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/keyactions.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/keys.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/menulist.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/monsters.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mouse.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/npcnear.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/npctime.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/palette.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/party.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/paths.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/readnpcs.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/schedule.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/segfile.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/shapeid.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sigame.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tqueue.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/txtscroll.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/version.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xdrag.Po@am__quote@ .cc.o: -@AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ - $(CXXCOMPILE) -c -o $@ `test -f $< || echo '$(srcdir)/'`$< +@am__fastdepCXX_TRUE@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< .cc.obj: -@AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ - $(CXXCOMPILE) -c -o $@ `cygpath -w $<` - -.cc.lo: -@AMDEP_TRUE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ - $(LTCXXCOMPILE) -c -o $@ `test -f $< || echo '$(srcdir)/'`$< -CXXDEPMODE = @CXXDEPMODE@ +@am__fastdepCXX_TRUE@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` uninstall-info-am: # This directory's subdirectories are mostly independent; you can cd @@ -566,7 +557,7 @@ # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): - @set fnord $(MAKEFLAGS); amf=$$2; \ + @set fnord $$MAKEFLAGS; amf=$$2; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ @@ -586,7 +577,7 @@ mostlyclean-recursive clean-recursive distclean-recursive \ maintainer-clean-recursive: - @set fnord $(MAKEFLAGS); amf=$$2; \ + @set fnord $$MAKEFLAGS; amf=$$2; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ @@ -613,80 +604,111 @@ list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done - -tags: TAGS +ctags-recursive: + list='$(SUBDIRS)'; for subdir in $$list; do \ + test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ + done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(TAGS_FILES)'; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - mkid -fID $$unique $(LISP) + mkid -fID $$unique +tags: TAGS -TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ +TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ + if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + empty_fix=.; \ + else \ + include_option=--include; \ + empty_fix=; \ + fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \ + test ! -f $$subdir/TAGS || \ + tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ - list='$(SOURCES) $(HEADERS) $(TAGS_FILES)'; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi +ctags: CTAGS +CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)config.h.in$$unique$(LISP)$$tags" \ - || etags $(ETAGS_ARGS) $$tags config.h.in $$unique $(LISP) + test -z "$(CTAGS_ARGS)$$tags$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$tags $$unique GTAGS: - here=`CDPATH=: && cd $(top_builddir) && pwd` \ + here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH - -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = . -# Avoid unsightly `./'. -distdir = $(PACKAGE)-$(VERSION) - -GZIP_ENV = --best + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) - -chmod -R a+w $(distdir) >/dev/null 2>&1; rm -rf $(distdir) + $(am__remove_distdir) mkdir $(distdir) - $(mkinstalldirs) $(distdir)/. $(distdir)/beos $(distdir)/headers $(distdir)/mac $(distdir)/macosx $(distdir)/msvcstuff $(distdir)/msvcstuff/exconfig $(distdir)/server $(distdir)/win32 - @for file in $(DISTFILES); do \ - if test -f $$file; then d=.; else d=$(srcdir); fi; \ + $(mkdir_p) $(distdir)/. $(distdir)/beos $(distdir)/debian $(distdir)/headers $(distdir)/mac $(distdir)/macosx $(distdir)/msvcstuff $(distdir)/msvcstuff/exconfig $(distdir)/server $(distdir)/win32 + @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; \ + 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 \ - $(mkinstalldirs) "$(distdir)/$$dir"; \ + dir="/$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ + else \ + dir=''; \ fi; \ if test -d $$d/$$file; then \ - cp -pR $$d/$$file $(distdir) \ - || exit 1; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ || exit 1; \ fi; \ done - for subdir in $(SUBDIRS); do \ + list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ - test -d $(distdir)/$$subdir \ - || mkdir $(distdir)/$$subdir \ + test -d "$(distdir)/$$subdir" \ + || mkdir "$(distdir)/$$subdir" \ || exit 1; \ (cd $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ - top_distdir="$(top_distdir)" \ - distdir=../$(distdir)/$$subdir \ + top_distdir="../$(top_distdir)" \ + distdir="../$(distdir)/$$subdir" \ distdir) \ || exit 1; \ fi; \ @@ -696,48 +718,106 @@ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r $(distdir) -dist: distdir +dist-gzip: distdir + $(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz + $(am__remove_distdir) + +dist-bzip2: distdir + $(AMTAR) chof - $(distdir) | bzip2 -9 -c >$(distdir).tar.bz2 + $(am__remove_distdir) + +dist-tarZ: distdir + $(AMTAR) chof - $(distdir) | compress -c >$(distdir).tar.Z + $(am__remove_distdir) + +dist-shar: distdir + shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz + $(am__remove_distdir) + +dist-zip: distdir + -rm -f $(distdir).zip + zip -rq $(distdir).zip $(distdir) + $(am__remove_distdir) + +dist dist-all: distdir $(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz - -chmod -R a+w $(distdir) >/dev/null 2>&1; rm -rf $(distdir) + $(am__remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist - -chmod -R a+w $(distdir) > /dev/null 2>&1; rm -rf $(distdir) - GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(AMTAR) xf - + case '$(DIST_ARCHIVES)' in \ + *.tar.gz*) \ + GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(AMTAR) xf - ;;\ + *.tar.bz2*) \ + bunzip2 -c $(distdir).tar.bz2 | $(AMTAR) xf - ;;\ + *.tar.Z*) \ + uncompress -c $(distdir).tar.Z | $(AMTAR) xf - ;;\ + *.shar.gz*) \ + GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\ + *.zip*) \ + unzip $(distdir).zip ;;\ + esac chmod -R a-w $(distdir); chmod a+w $(distdir) - mkdir $(distdir)/=build - mkdir $(distdir)/=inst + mkdir $(distdir)/_build + mkdir $(distdir)/_inst chmod a-w $(distdir) - dc_install_base=`CDPATH=: && cd $(distdir)/=inst && pwd` \ - && cd $(distdir)/=build \ - && ../configure --srcdir=.. --prefix=$$dc_install_base \ + dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ + && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ + && cd $(distdir)/_build \ + && ../configure --srcdir=.. --prefix="$$dc_install_base" \ + $(DISTCHECK_CONFIGURE_FLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ - && (test `find $$dc_install_base -type f -print | wc -l` -le 1 \ - || (echo "Error: files left after uninstall" 1>&2; \ - exit 1) ) \ + && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ + distuninstallcheck \ + && chmod -R a-w "$$dc_install_base" \ + && ({ \ + (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ + && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ + distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ + } || { rm -rf "$$dc_destdir"; exit 1; }) \ + && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ - && $(MAKE) $(AM_MAKEFLAGS) distclean \ - && rm -f $(distdir).tar.gz \ - && (test `find . -type f -print | wc -l` -eq 0 \ - || (echo "Error: files left after distclean" 1>&2; \ - exit 1) ) - -chmod -R a+w $(distdir) > /dev/null 2>&1; rm -rf $(distdir) - @echo "$(distdir).tar.gz is ready for distribution" | \ - sed 'h;s/./=/g;p;x;p;x' + && rm -rf $(DIST_ARCHIVES) \ + && $(MAKE) $(AM_MAKEFLAGS) distcleancheck + $(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;}' +distuninstallcheck: + @cd $(distuninstallcheck_dir) \ + && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ + || { echo "ERROR: files left after uninstall:" ; \ + if test -n "$(DESTDIR)"; then \ + echo " (check DESTDIR support)"; \ + fi ; \ + $(distuninstallcheck_listfiles) ; \ + exit 1; } >&2 +distcleancheck: distclean + @if test '$(srcdir)' = . ; then \ + echo "ERROR: distcleancheck can only run from a VPATH build" ; \ + exit 1 ; \ + fi + @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ + || { echo "ERROR: files left in build directory after distclean:" ; \ + $(distcleancheck_listfiles) ; \ + exit 1; } >&2 check-am: all-am check: check-recursive -all-am: Makefile $(PROGRAMS) $(HEADERS) config.h +all-am: Makefile $(PROGRAMS) $(HEADERS) installdirs: installdirs-recursive installdirs-am: - $(mkinstalldirs) $(DESTDIR)$(bindir) - + for dir in "$(DESTDIR)$(bindir)"; do \ + test -z "$$dir" || $(mkdir_p) "$$dir"; \ + done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive @@ -749,6 +829,7 @@ installcheck: installcheck-recursive install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: @@ -757,28 +838,28 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f Makefile $(CONFIG_CLEAN_FILES) stamp-h stamp-h[0-9]* + -rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive -clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am +clean-am: clean-binPROGRAMS clean-generic mostlyclean-am -dist-all: distdir - $(AMTAR) chof - $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz - -chmod -R a+w $(distdir) >/dev/null 2>&1; rm -rf $(distdir) distclean: distclean-recursive - -rm -f config.status config.cache config.log -distclean-am: clean-am distclean-compile distclean-depend \ - distclean-generic distclean-hdr distclean-libtool \ + -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-recursive dvi-am: +html: html-recursive + info: info-recursive info-am: @@ -794,36 +875,43 @@ installcheck-am: maintainer-clean: maintainer-clean-recursive - + -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -rf $(top_srcdir)/autom4te.cache + -rm -rf ./$(DEPDIR) + -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool +mostlyclean-am: mostlyclean-compile mostlyclean-generic + +pdf: pdf-recursive + +pdf-am: + +ps: ps-recursive + +ps-am: uninstall-am: uninstall-binPROGRAMS uninstall-info-am uninstall-info: uninstall-info-recursive -.PHONY: $(RECURSIVE_TARGETS) GTAGS all all-am check check-am clean \ - clean-binPROGRAMS clean-generic clean-libtool clean-recursive \ - dist dist-all distcheck distclean distclean-compile \ - distclean-depend distclean-generic distclean-hdr \ - distclean-libtool distclean-recursive distclean-tags distdir \ - dvi dvi-am dvi-recursive info info-am info-recursive install \ - install-am install-binPROGRAMS install-data install-data-am \ - install-data-recursive install-exec install-exec-am \ - install-exec-local install-exec-recursive install-info \ - install-info-am install-info-recursive install-man \ - install-recursive install-strip installcheck installcheck-am \ - installdirs installdirs-am installdirs-recursive \ - maintainer-clean maintainer-clean-generic \ - maintainer-clean-recursive mostlyclean mostlyclean-compile \ - mostlyclean-generic mostlyclean-libtool mostlyclean-recursive \ - tags tags-recursive uninstall uninstall-am \ - uninstall-binPROGRAMS uninstall-info-am \ - uninstall-info-recursive uninstall-recursive +.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am am--refresh check \ + check-am clean clean-binPROGRAMS clean-generic clean-recursive \ + ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \ + dist-shar dist-tarZ dist-zip distcheck distclean \ + distclean-compile distclean-generic distclean-recursive \ + distclean-tags distcleancheck distdir distuninstallcheck dvi \ + dvi-am html html-am info info-am install install-am \ + install-binPROGRAMS install-data install-data-am install-exec \ + install-exec-am install-exec-local install-info \ + install-info-am install-man 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-info-am win32/exultico.o: $(srcdir)/win32/exultico.rc $(srcdir)/win32/exult.ico --- exult-1.2.orig/imagewin/Makefile.in +++ exult-1.2/imagewin/Makefile.in @@ -1,7 +1,8 @@ -# Makefile.in generated automatically by automake 1.5 from Makefile.am. +# Makefile.in generated by automake 1.8.5 from Makefile.am. +# @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004 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. @@ -13,60 +14,75 @@ @SET_MAKE@ -SHELL = @SHELL@ +SOURCES = $(libimagewin_la_SOURCES) srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ -prefix = @prefix@ -exec_prefix = @exec_prefix@ - -bindir = @bindir@ -sbindir = @sbindir@ -libexecdir = @libexecdir@ -datadir = @datadir@ -sysconfdir = @sysconfdir@ -sharedstatedir = @sharedstatedir@ -localstatedir = @localstatedir@ -libdir = @libdir@ -infodir = @infodir@ -mandir = @mandir@ -includedir = @includedir@ -oldincludedir = /usr/include pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. - -ACLOCAL = @ACLOCAL@ -AUTOCONF = @AUTOCONF@ -AUTOMAKE = @AUTOMAKE@ -AUTOHEADER = @AUTOHEADER@ - +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) -transform = @program_transform_name@ +transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : -host_alias = @host_alias@ host_triplet = @host@ -AMTAR = @AMTAR@ -AS = @AS@ +subdir = imagewin +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) +mkinstalldirs = $(mkdir_p) +CONFIG_CLEAN_FILES = +LTLIBRARIES = $(noinst_LTLIBRARIES) +libimagewin_la_LIBADD = +am_libimagewin_la_OBJECTS = ibuf16.lo ibuf8.lo imagebuf.lo imagescl.lo \ + imagewin.lo iwin8.lo savepcx.lo +libimagewin_la_OBJECTS = $(am_libimagewin_la_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/ibuf16.Plo ./$(DEPDIR)/ibuf8.Plo \ +@AMDEP_TRUE@ ./$(DEPDIR)/imagebuf.Plo ./$(DEPDIR)/imagescl.Plo \ +@AMDEP_TRUE@ ./$(DEPDIR)/imagewin.Plo ./$(DEPDIR)/iwin8.Plo \ +@AMDEP_TRUE@ ./$(DEPDIR)/savepcx.Plo +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ + -o $@ +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libimagewin_la_SOURCES) +DIST_SOURCES = $(libimagewin_la_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AWK = @AWK@ CC = @CC@ +CFLAGS = @CFLAGS@ CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXFLAGS = @CXXFLAGS@ DEBUG_FLAGS = @DEBUG_FLAGS@ -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -ECHO = @ECHO@ +DEFS = @DEFS@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ EXEEXT = @EXEEXT@ EXE_TARGET = @EXE_TARGET@ EXULT_DATADIR = @EXULT_DATADIR@ @@ -81,39 +97,69 @@ GLADE_LIBS = @GLADE_LIBS@ HAVE_TIMIDITY_BIN = @HAVE_TIMIDITY_BIN@ ICON_FILE = @ICON_FILE@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ KMID_INCLUDES = @KMID_INCLUDES@ KMID_LIBS = @KMID_LIBS@ -LEX = @LEX@ -LIBTOOL = @LIBTOOL@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ LIBTOOL_DEPS = @LIBTOOL_DEPS@ -LN_S = @LN_S@ -OBJDUMP = @OBJDUMP@ +LTLIBOBJS = @LTLIBOBJS@ OBJEXT = @OBJEXT@ OPENGL_LIBS = @OPENGL_LIBS@ -PACKAGE = @PACKAGE@ -RANLIB = @RANLIB@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ SDL_CFLAGS = @SDL_CFLAGS@ -SDL_CONFIG = @SDL_CONFIG@ SDL_LIBS = @SDL_LIBS@ -STRIP = @STRIP@ +SHELL = @SHELL@ SYSLIBS = @SYSLIBS@ -VERSION = @VERSION@ WARNINGS = @WARNINGS@ WINDOWING_SYSTEM = @WINDOWING_SYSTEM@ YACC = @YACC@ ZLIB_LIBS = @ZLIB_LIBS@ -am__include = @am__include@ -am__quote = @am__quote@ -install_sh = @install_sh@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +datadir = @datadir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +includedir = @includedir@ +infodir = @infodir@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +oldincludedir = @oldincludedir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +sysconfdir = @sysconfdir@ +target = @target@ +target_alias = @target_alias@ +target_cpu = @target_cpu@ +target_os = @target_os@ +target_vendor = @target_vendor@ x_libraries = @x_libraries@ - INCLUDES = -I$(srcdir)/../headers -I$(srcdir)/.. -I$(srcdir)/../files $(SDL_CFLAGS) $(INCDIRS) $(WINDOWING_SYSTEM) \ $(DEBUG_FLAGS) $(CPPFLAGS) - noinst_LTLIBRARIES = libimagewin.la - libimagewin_la_SOURCES = \ ibuf16.cc \ ibuf16.h \ @@ -129,163 +175,152 @@ scale.h \ savepcx.cc - EXTRA_DIST = \ scale.cc -subdir = imagewin -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LTLIBRARIES = $(noinst_LTLIBRARIES) - -libimagewin_la_LDFLAGS = -libimagewin_la_LIBADD = -am_libimagewin_la_OBJECTS = ibuf16.lo ibuf8.lo imagebuf.lo imagescl.lo \ - imagewin.lo iwin8.lo savepcx.lo -libimagewin_la_OBJECTS = $(am_libimagewin_la_OBJECTS) - -DEFS = @DEFS@ -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -CPPFLAGS = @CPPFLAGS@ -LDFLAGS = @LDFLAGS@ -LIBS = @LIBS@ -depcomp = $(SHELL) $(top_srcdir)/depcomp -@AMDEP_TRUE@DEP_FILES = $(DEPDIR)/ibuf16.Plo $(DEPDIR)/ibuf8.Plo \ -@AMDEP_TRUE@ $(DEPDIR)/imagebuf.Plo $(DEPDIR)/imagescl.Plo \ -@AMDEP_TRUE@ $(DEPDIR)/imagewin.Plo $(DEPDIR)/iwin8.Plo \ -@AMDEP_TRUE@ $(DEPDIR)/savepcx.Plo -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --mode=compile $(CXX) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -CXXFLAGS = @CXXFLAGS@ -CFLAGS = @CFLAGS@ -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libimagewin_la_SOURCES) -DIST_COMMON = Makefile.am Makefile.in -SOURCES = $(libimagewin_la_SOURCES) - all: all-am .SUFFIXES: -.SUFFIXES: .cc .lo .o .obj - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -distclean-libtool: - -rm -f libtool -$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4) +.SUFFIXES: .cc .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu imagewin/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu imagewin/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && \ - CONFIG_HEADERS= CONFIG_LINKS= \ - CONFIG_FILES=$(subdir)/$@ $(SHELL) ./config.status +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) + @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ + test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done libimagewin.la: $(libimagewin_la_OBJECTS) $(libimagewin_la_DEPENDENCIES) $(CXXLINK) $(libimagewin_la_LDFLAGS) $(libimagewin_la_OBJECTS) $(libimagewin_la_LIBADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/ibuf16.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/ibuf8.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/imagebuf.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/imagescl.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/imagewin.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/iwin8.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/savepcx.Plo@am__quote@ - -distclean-depend: - -rm -rf $(DEPDIR) +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ibuf16.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ibuf8.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/imagebuf.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/imagescl.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/imagewin.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/iwin8.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/savepcx.Plo@am__quote@ .cc.o: -@AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ - $(CXXCOMPILE) -c -o $@ `test -f $< || echo '$(srcdir)/'`$< +@am__fastdepCXX_TRUE@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< .cc.obj: -@AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ - $(CXXCOMPILE) -c -o $@ `cygpath -w $<` - -.cc.lo: -@AMDEP_TRUE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ - $(LTCXXCOMPILE) -c -o $@ `test -f $< || echo '$(srcdir)/'`$< -CXXDEPMODE = @CXXDEPMODE@ +@am__fastdepCXX_TRUE@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` uninstall-info-am: -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(TAGS_FILES)'; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - mkid -fID $$unique $(LISP) + mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(TAGS_FILES)'; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \ - || etags $(ETAGS_ARGS) $$tags $$unique $(LISP) + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ + test -z "$(CTAGS_ARGS)$$tags$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$tags $$unique GTAGS: - here=`CDPATH=: && cd $(top_builddir) && pwd` \ + here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH - -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = .. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) - @for file in $(DISTFILES); do \ - if test -f $$file; then d=.; else d=$(srcdir); fi; \ + @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; \ + 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 \ - $(mkinstalldirs) "$(distdir)/$$dir"; \ + dir="/$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ + else \ + dir=''; \ fi; \ if test -d $$d/$$file; then \ - cp -pR $$d/$$file $(distdir) \ - || exit 1; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ @@ -295,9 +330,7 @@ check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) - installdirs: - install: install-am install-exec: install-exec-am install-data: install-data-am @@ -309,6 +342,7 @@ installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: @@ -316,25 +350,27 @@ clean-generic: distclean-generic: - -rm -f Makefile $(CONFIG_CLEAN_FILES) stamp-h stamp-h[0-9]* + -rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am -clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ - mostlyclean-am +clean-am: clean-generic clean-noinstLTLIBRARIES mostlyclean-am distclean: distclean-am - -distclean-am: clean-am distclean-compile distclean-depend \ - distclean-generic distclean-libtool distclean-tags + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags dvi: dvi-am dvi-am: +html: html-am + info: info-am info-am: @@ -350,27 +386,34 @@ installcheck-am: maintainer-clean: maintainer-clean-am - + -rm -rf ./$(DEPDIR) + -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool +mostlyclean-am: mostlyclean-compile mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: uninstall-am: uninstall-info-am -.PHONY: GTAGS all all-am check check-am clean clean-generic \ - clean-libtool clean-noinstLTLIBRARIES distclean \ - distclean-compile distclean-depend distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-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-strip installcheck installcheck-am \ - installdirs maintainer-clean maintainer-clean-generic \ - mostlyclean mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool tags uninstall uninstall-am \ - uninstall-info-am +.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ + clean-noinstLTLIBRARIES ctags distclean distclean-compile \ + distclean-generic distclean-tags 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-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \ + uninstall-am uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- exult-1.2.orig/server/Makefile.in +++ exult-1.2/server/Makefile.in @@ -1,7 +1,8 @@ -# Makefile.in generated automatically by automake 1.5 from Makefile.am. +# Makefile.in generated by automake 1.8.5 from Makefile.am. +# @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004 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. @@ -13,60 +14,74 @@ @SET_MAKE@ -SHELL = @SHELL@ +SOURCES = $(libserver_la_SOURCES) srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ -prefix = @prefix@ -exec_prefix = @exec_prefix@ - -bindir = @bindir@ -sbindir = @sbindir@ -libexecdir = @libexecdir@ -datadir = @datadir@ -sysconfdir = @sysconfdir@ -sharedstatedir = @sharedstatedir@ -localstatedir = @localstatedir@ -libdir = @libdir@ -infodir = @infodir@ -mandir = @mandir@ -includedir = @includedir@ -oldincludedir = /usr/include pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. - -ACLOCAL = @ACLOCAL@ -AUTOCONF = @AUTOCONF@ -AUTOMAKE = @AUTOMAKE@ -AUTOHEADER = @AUTOHEADER@ - +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) -transform = @program_transform_name@ +transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : -host_alias = @host_alias@ host_triplet = @host@ -AMTAR = @AMTAR@ -AS = @AS@ +subdir = server +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) +mkinstalldirs = $(mkdir_p) +CONFIG_CLEAN_FILES = +LTLIBRARIES = $(noinst_LTLIBRARIES) +libserver_la_LIBADD = +am_libserver_la_OBJECTS = objserial.lo servemsg.lo server.lo \ + servewin32.lo +libserver_la_OBJECTS = $(am_libserver_la_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/objserial.Plo \ +@AMDEP_TRUE@ ./$(DEPDIR)/servemsg.Plo ./$(DEPDIR)/server.Plo \ +@AMDEP_TRUE@ ./$(DEPDIR)/servewin32.Plo +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ + -o $@ +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libserver_la_SOURCES) +DIST_SOURCES = $(libserver_la_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AWK = @AWK@ CC = @CC@ +CFLAGS = @CFLAGS@ CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXFLAGS = @CXXFLAGS@ DEBUG_FLAGS = @DEBUG_FLAGS@ -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -ECHO = @ECHO@ +DEFS = @DEFS@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ EXEEXT = @EXEEXT@ EXE_TARGET = @EXE_TARGET@ EXULT_DATADIR = @EXULT_DATADIR@ @@ -81,41 +96,71 @@ GLADE_LIBS = @GLADE_LIBS@ HAVE_TIMIDITY_BIN = @HAVE_TIMIDITY_BIN@ ICON_FILE = @ICON_FILE@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ KMID_INCLUDES = @KMID_INCLUDES@ KMID_LIBS = @KMID_LIBS@ -LEX = @LEX@ -LIBTOOL = @LIBTOOL@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ LIBTOOL_DEPS = @LIBTOOL_DEPS@ -LN_S = @LN_S@ -OBJDUMP = @OBJDUMP@ +LTLIBOBJS = @LTLIBOBJS@ OBJEXT = @OBJEXT@ OPENGL_LIBS = @OPENGL_LIBS@ -PACKAGE = @PACKAGE@ -RANLIB = @RANLIB@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ SDL_CFLAGS = @SDL_CFLAGS@ -SDL_CONFIG = @SDL_CONFIG@ SDL_LIBS = @SDL_LIBS@ -STRIP = @STRIP@ +SHELL = @SHELL@ SYSLIBS = @SYSLIBS@ -VERSION = @VERSION@ WARNINGS = @WARNINGS@ WINDOWING_SYSTEM = @WINDOWING_SYSTEM@ YACC = @YACC@ ZLIB_LIBS = @ZLIB_LIBS@ -am__include = @am__include@ -am__quote = @am__quote@ -install_sh = @install_sh@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +datadir = @datadir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +includedir = @includedir@ +infodir = @infodir@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +oldincludedir = @oldincludedir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +sysconfdir = @sysconfdir@ +target = @target@ +target_alias = @target_alias@ +target_cpu = @target_cpu@ +target_os = @target_os@ +target_vendor = @target_vendor@ x_libraries = @x_libraries@ - INCLUDES = -I$(srcdir)/../headers -I$(srcdir)/.. -I$(srcdir)/../files \ -I$(srcdir)/../objs -I$(srcdir)/../imagewin -I$(srcdir)/../shapes \ -I$(srcdir)/../usecode \ $(INCDIRS) $(WINDOWING_SYSTEM) $(DEBUG_FLAGS) $(CPPFLAGS) - noinst_LTLIBRARIES = libserver.la - libserver_la_SOURCES = \ objserial.cc \ objserial.h \ @@ -126,156 +171,147 @@ servewin32.cc \ servewin32.h - CLEANFILES = *~ -subdir = server -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LTLIBRARIES = $(noinst_LTLIBRARIES) - -libserver_la_LDFLAGS = -libserver_la_LIBADD = -am_libserver_la_OBJECTS = objserial.lo servemsg.lo server.lo \ - servewin32.lo -libserver_la_OBJECTS = $(am_libserver_la_OBJECTS) - -DEFS = @DEFS@ -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -CPPFLAGS = @CPPFLAGS@ -LDFLAGS = @LDFLAGS@ -LIBS = @LIBS@ -depcomp = $(SHELL) $(top_srcdir)/depcomp -@AMDEP_TRUE@DEP_FILES = $(DEPDIR)/objserial.Plo $(DEPDIR)/servemsg.Plo \ -@AMDEP_TRUE@ $(DEPDIR)/server.Plo $(DEPDIR)/servewin32.Plo -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --mode=compile $(CXX) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -CXXFLAGS = @CXXFLAGS@ -CFLAGS = @CFLAGS@ -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libserver_la_SOURCES) -DIST_COMMON = Makefile.am Makefile.in -SOURCES = $(libserver_la_SOURCES) - all: all-am .SUFFIXES: -.SUFFIXES: .cc .lo .o .obj - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -distclean-libtool: - -rm -f libtool -$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4) +.SUFFIXES: .cc .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu server/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu server/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && \ - CONFIG_HEADERS= CONFIG_LINKS= \ - CONFIG_FILES=$(subdir)/$@ $(SHELL) ./config.status +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) + @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ + test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done libserver.la: $(libserver_la_OBJECTS) $(libserver_la_DEPENDENCIES) $(CXXLINK) $(libserver_la_LDFLAGS) $(libserver_la_OBJECTS) $(libserver_la_LIBADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/objserial.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/servemsg.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/server.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/servewin32.Plo@am__quote@ - -distclean-depend: - -rm -rf $(DEPDIR) +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/objserial.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/servemsg.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/server.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/servewin32.Plo@am__quote@ .cc.o: -@AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ - $(CXXCOMPILE) -c -o $@ `test -f $< || echo '$(srcdir)/'`$< +@am__fastdepCXX_TRUE@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< .cc.obj: -@AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ - $(CXXCOMPILE) -c -o $@ `cygpath -w $<` - -.cc.lo: -@AMDEP_TRUE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ - $(LTCXXCOMPILE) -c -o $@ `test -f $< || echo '$(srcdir)/'`$< -CXXDEPMODE = @CXXDEPMODE@ +@am__fastdepCXX_TRUE@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` uninstall-info-am: -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(TAGS_FILES)'; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - mkid -fID $$unique $(LISP) + mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(TAGS_FILES)'; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \ - || etags $(ETAGS_ARGS) $$tags $$unique $(LISP) + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ + test -z "$(CTAGS_ARGS)$$tags$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$tags $$unique GTAGS: - here=`CDPATH=: && cd $(top_builddir) && pwd` \ + here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH - -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = .. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) - @for file in $(DISTFILES); do \ - if test -f $$file; then d=.; else d=$(srcdir); fi; \ + @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; \ + 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 \ - $(mkinstalldirs) "$(distdir)/$$dir"; \ + dir="/$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ + else \ + dir=''; \ fi; \ if test -d $$d/$$file; then \ - cp -pR $$d/$$file $(distdir) \ - || exit 1; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ @@ -285,9 +321,7 @@ check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) - installdirs: - install: install-am install-exec: install-exec-am install-data: install-data-am @@ -299,6 +333,7 @@ installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: @@ -307,25 +342,27 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f Makefile $(CONFIG_CLEAN_FILES) stamp-h stamp-h[0-9]* + -rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am -clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ - mostlyclean-am +clean-am: clean-generic clean-noinstLTLIBRARIES mostlyclean-am distclean: distclean-am - -distclean-am: clean-am distclean-compile distclean-depend \ - distclean-generic distclean-libtool distclean-tags + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags dvi: dvi-am dvi-am: +html: html-am + info: info-am info-am: @@ -341,27 +378,34 @@ installcheck-am: maintainer-clean: maintainer-clean-am - + -rm -rf ./$(DEPDIR) + -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool +mostlyclean-am: mostlyclean-compile mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: uninstall-am: uninstall-info-am -.PHONY: GTAGS all all-am check check-am clean clean-generic \ - clean-libtool clean-noinstLTLIBRARIES distclean \ - distclean-compile distclean-depend distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-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-strip installcheck installcheck-am \ - installdirs maintainer-clean maintainer-clean-generic \ - mostlyclean mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool tags uninstall uninstall-am \ - uninstall-info-am +.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ + clean-noinstLTLIBRARIES ctags distclean distclean-compile \ + distclean-generic distclean-tags 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-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \ + uninstall-am uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- exult-1.2.orig/shapes/Makefile.in +++ exult-1.2/shapes/Makefile.in @@ -1,7 +1,8 @@ -# Makefile.in generated automatically by automake 1.5 from Makefile.am. +# Makefile.in generated by automake 1.8.5 from Makefile.am. +# @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004 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. @@ -13,60 +14,79 @@ @SET_MAKE@ -SHELL = @SHELL@ +SOURCES = $(libshapes_la_SOURCES) srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ -prefix = @prefix@ -exec_prefix = @exec_prefix@ - -bindir = @bindir@ -sbindir = @sbindir@ -libexecdir = @libexecdir@ -datadir = @datadir@ -sysconfdir = @sysconfdir@ -sharedstatedir = @sharedstatedir@ -localstatedir = @localstatedir@ -libdir = @libdir@ -infodir = @infodir@ -mandir = @mandir@ -includedir = @includedir@ -oldincludedir = /usr/include pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. - -ACLOCAL = @ACLOCAL@ -AUTOCONF = @AUTOCONF@ -AUTOMAKE = @AUTOMAKE@ -AUTOHEADER = @AUTOHEADER@ - +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) -transform = @program_transform_name@ +transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : -host_alias = @host_alias@ host_triplet = @host@ -AMTAR = @AMTAR@ -AS = @AS@ +subdir = shapes +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) +mkinstalldirs = $(mkdir_p) +CONFIG_CLEAN_FILES = +LTLIBRARIES = $(noinst_LTLIBRARIES) +libshapes_la_LIBADD = +am_libshapes_la_OBJECTS = bodies.lo font.lo fontgen.lo fontvga.lo \ + glshape.lo items.lo monstinf.lo pngio.lo shapeinf.lo \ + shapevga.lo shapewrite.lo u7drag.lo vgafile.lo +libshapes_la_OBJECTS = $(am_libshapes_la_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/bodies.Plo ./$(DEPDIR)/font.Plo \ +@AMDEP_TRUE@ ./$(DEPDIR)/fontgen.Plo ./$(DEPDIR)/fontvga.Plo \ +@AMDEP_TRUE@ ./$(DEPDIR)/glshape.Plo ./$(DEPDIR)/items.Plo \ +@AMDEP_TRUE@ ./$(DEPDIR)/monstinf.Plo ./$(DEPDIR)/pngio.Plo \ +@AMDEP_TRUE@ ./$(DEPDIR)/shapeinf.Plo ./$(DEPDIR)/shapevga.Plo \ +@AMDEP_TRUE@ ./$(DEPDIR)/shapewrite.Plo ./$(DEPDIR)/u7drag.Plo \ +@AMDEP_TRUE@ ./$(DEPDIR)/vgafile.Plo +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ + -o $@ +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libshapes_la_SOURCES) +DIST_SOURCES = $(libshapes_la_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AWK = @AWK@ CC = @CC@ +CFLAGS = @CFLAGS@ CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXFLAGS = @CXXFLAGS@ DEBUG_FLAGS = @DEBUG_FLAGS@ -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -ECHO = @ECHO@ +DEFS = @DEFS@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ EXEEXT = @EXEEXT@ EXE_TARGET = @EXE_TARGET@ EXULT_DATADIR = @EXULT_DATADIR@ @@ -81,40 +101,70 @@ GLADE_LIBS = @GLADE_LIBS@ HAVE_TIMIDITY_BIN = @HAVE_TIMIDITY_BIN@ ICON_FILE = @ICON_FILE@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ KMID_INCLUDES = @KMID_INCLUDES@ KMID_LIBS = @KMID_LIBS@ -LEX = @LEX@ -LIBTOOL = @LIBTOOL@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ LIBTOOL_DEPS = @LIBTOOL_DEPS@ -LN_S = @LN_S@ -OBJDUMP = @OBJDUMP@ +LTLIBOBJS = @LTLIBOBJS@ OBJEXT = @OBJEXT@ OPENGL_LIBS = @OPENGL_LIBS@ -PACKAGE = @PACKAGE@ -RANLIB = @RANLIB@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ SDL_CFLAGS = @SDL_CFLAGS@ -SDL_CONFIG = @SDL_CONFIG@ SDL_LIBS = @SDL_LIBS@ -STRIP = @STRIP@ +SHELL = @SHELL@ SYSLIBS = @SYSLIBS@ -VERSION = @VERSION@ WARNINGS = @WARNINGS@ WINDOWING_SYSTEM = @WINDOWING_SYSTEM@ YACC = @YACC@ ZLIB_LIBS = @ZLIB_LIBS@ -am__include = @am__include@ -am__quote = @am__quote@ -install_sh = @install_sh@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +datadir = @datadir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +includedir = @includedir@ +infodir = @infodir@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +oldincludedir = @oldincludedir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +sysconfdir = @sysconfdir@ +target = @target@ +target_alias = @target_alias@ +target_cpu = @target_cpu@ +target_os = @target_os@ +target_vendor = @target_vendor@ x_libraries = @x_libraries@ - INCLUDES = -I$(srcdir)/../headers -I$(srcdir)/.. -I$(srcdir)/../files -I$(srcdir)/../imagewin \ $(SDL_CFLAGS) $(FREETYPE2_INCLUDES) \ $(INCDIRS) $(WINDOWING_SYSTEM) $(DEBUG_FLAGS) $(CPPFLAGS) - noinst_LTLIBRARIES = libshapes.la - libshapes_la_SOURCES = \ bodies.cc \ bodies.h \ @@ -142,171 +192,156 @@ vgafile.cc \ vgafile.h - CLEANFILES = *~ -subdir = shapes -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LTLIBRARIES = $(noinst_LTLIBRARIES) - -libshapes_la_LDFLAGS = -libshapes_la_LIBADD = -am_libshapes_la_OBJECTS = bodies.lo font.lo fontgen.lo fontvga.lo \ - glshape.lo items.lo monstinf.lo pngio.lo shapeinf.lo \ - shapevga.lo shapewrite.lo u7drag.lo vgafile.lo -libshapes_la_OBJECTS = $(am_libshapes_la_OBJECTS) - -DEFS = @DEFS@ -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -CPPFLAGS = @CPPFLAGS@ -LDFLAGS = @LDFLAGS@ -LIBS = @LIBS@ -depcomp = $(SHELL) $(top_srcdir)/depcomp -@AMDEP_TRUE@DEP_FILES = $(DEPDIR)/bodies.Plo $(DEPDIR)/font.Plo \ -@AMDEP_TRUE@ $(DEPDIR)/fontgen.Plo $(DEPDIR)/fontvga.Plo \ -@AMDEP_TRUE@ $(DEPDIR)/glshape.Plo $(DEPDIR)/items.Plo \ -@AMDEP_TRUE@ $(DEPDIR)/monstinf.Plo $(DEPDIR)/pngio.Plo \ -@AMDEP_TRUE@ $(DEPDIR)/shapeinf.Plo $(DEPDIR)/shapevga.Plo \ -@AMDEP_TRUE@ $(DEPDIR)/shapewrite.Plo $(DEPDIR)/u7drag.Plo \ -@AMDEP_TRUE@ $(DEPDIR)/vgafile.Plo -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --mode=compile $(CXX) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -CXXFLAGS = @CXXFLAGS@ -CFLAGS = @CFLAGS@ -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libshapes_la_SOURCES) -DIST_COMMON = Makefile.am Makefile.in -SOURCES = $(libshapes_la_SOURCES) - all: all-am .SUFFIXES: -.SUFFIXES: .cc .lo .o .obj - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -distclean-libtool: - -rm -f libtool -$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4) +.SUFFIXES: .cc .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu shapes/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu shapes/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && \ - CONFIG_HEADERS= CONFIG_LINKS= \ - CONFIG_FILES=$(subdir)/$@ $(SHELL) ./config.status +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) + @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ + test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done libshapes.la: $(libshapes_la_OBJECTS) $(libshapes_la_DEPENDENCIES) $(CXXLINK) $(libshapes_la_LDFLAGS) $(libshapes_la_OBJECTS) $(libshapes_la_LIBADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/bodies.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/font.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/fontgen.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/fontvga.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/glshape.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/items.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/monstinf.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/pngio.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/shapeinf.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/shapevga.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/shapewrite.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/u7drag.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/vgafile.Plo@am__quote@ - -distclean-depend: - -rm -rf $(DEPDIR) +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bodies.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/font.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fontgen.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fontvga.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/glshape.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/items.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/monstinf.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pngio.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/shapeinf.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/shapevga.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/shapewrite.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/u7drag.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vgafile.Plo@am__quote@ .cc.o: -@AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ - $(CXXCOMPILE) -c -o $@ `test -f $< || echo '$(srcdir)/'`$< +@am__fastdepCXX_TRUE@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< .cc.obj: -@AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ - $(CXXCOMPILE) -c -o $@ `cygpath -w $<` - -.cc.lo: -@AMDEP_TRUE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ - $(LTCXXCOMPILE) -c -o $@ `test -f $< || echo '$(srcdir)/'`$< -CXXDEPMODE = @CXXDEPMODE@ +@am__fastdepCXX_TRUE@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` uninstall-info-am: -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(TAGS_FILES)'; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - mkid -fID $$unique $(LISP) + mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(TAGS_FILES)'; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \ - || etags $(ETAGS_ARGS) $$tags $$unique $(LISP) + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ + test -z "$(CTAGS_ARGS)$$tags$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$tags $$unique GTAGS: - here=`CDPATH=: && cd $(top_builddir) && pwd` \ + here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH - -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = .. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) - @for file in $(DISTFILES); do \ - if test -f $$file; then d=.; else d=$(srcdir); fi; \ + @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; \ + 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 \ - $(mkinstalldirs) "$(distdir)/$$dir"; \ + dir="/$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ + else \ + dir=''; \ fi; \ if test -d $$d/$$file; then \ - cp -pR $$d/$$file $(distdir) \ - || exit 1; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ @@ -316,9 +351,7 @@ check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) - installdirs: - install: install-am install-exec: install-exec-am install-data: install-data-am @@ -330,6 +363,7 @@ installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: @@ -338,25 +372,27 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f Makefile $(CONFIG_CLEAN_FILES) stamp-h stamp-h[0-9]* + -rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am -clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ - mostlyclean-am +clean-am: clean-generic clean-noinstLTLIBRARIES mostlyclean-am distclean: distclean-am - -distclean-am: clean-am distclean-compile distclean-depend \ - distclean-generic distclean-libtool distclean-tags + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags dvi: dvi-am dvi-am: +html: html-am + info: info-am info-am: @@ -372,27 +408,34 @@ installcheck-am: maintainer-clean: maintainer-clean-am - + -rm -rf ./$(DEPDIR) + -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool +mostlyclean-am: mostlyclean-compile mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: uninstall-am: uninstall-info-am -.PHONY: GTAGS all all-am check check-am clean clean-generic \ - clean-libtool clean-noinstLTLIBRARIES distclean \ - distclean-compile distclean-depend distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-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-strip installcheck installcheck-am \ - installdirs maintainer-clean maintainer-clean-generic \ - mostlyclean mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool tags uninstall uninstall-am \ - uninstall-info-am +.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ + clean-noinstLTLIBRARIES ctags distclean distclean-compile \ + distclean-generic distclean-tags 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-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \ + uninstall-am uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. --- exult-1.2.orig/usecode/ucxt/include/ucfunc.h +++ exult-1.2/usecode/ucxt/include/ucfunc.h @@ -206,7 +206,7 @@ bool output_list(std::ostream &o, unsigned int funcno, const UCOptions &options); bool output_ucs(std::ostream &o, const FuncMap &funcmap, const std::map &intrinsics, const UCOptions &options); - std::ostream &UCFunc::output_ucs_funcname(std::ostream &o, const FuncMap &funcmap); + std::ostream &output_ucs_funcname(std::ostream &o, const FuncMap &funcmap); std::ostream &output_ucs_funcname(std::ostream &o, const FuncMap &funcmap, unsigned int funcid, unsigned int numargs, bool return_var); --- exult-1.2.orig/pathfinder/Makefile.in +++ exult-1.2/pathfinder/Makefile.in @@ -1,7 +1,8 @@ -# Makefile.in generated automatically by automake 1.5 from Makefile.am. +# Makefile.in generated by automake 1.8.5 from Makefile.am. +# @configure_input@ -# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001 -# Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, +# 2003, 2004 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. @@ -13,60 +14,73 @@ @SET_MAKE@ -SHELL = @SHELL@ +SOURCES = $(libpathfinder_la_SOURCES) srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ -prefix = @prefix@ -exec_prefix = @exec_prefix@ - -bindir = @bindir@ -sbindir = @sbindir@ -libexecdir = @libexecdir@ -datadir = @datadir@ -sysconfdir = @sysconfdir@ -sharedstatedir = @sharedstatedir@ -localstatedir = @localstatedir@ -libdir = @libdir@ -infodir = @infodir@ -mandir = @mandir@ -includedir = @includedir@ -oldincludedir = /usr/include pkgdatadir = $(datadir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ top_builddir = .. - -ACLOCAL = @ACLOCAL@ -AUTOCONF = @AUTOCONF@ -AUTOMAKE = @AUTOMAKE@ -AUTOHEADER = @AUTOHEADER@ - +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd INSTALL = @INSTALL@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_DATA = @INSTALL_DATA@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) -transform = @program_transform_name@ +transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : -host_alias = @host_alias@ host_triplet = @host@ -AMTAR = @AMTAR@ -AS = @AS@ +subdir = pathfinder +DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in +am__aclocal_m4_deps = $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) +mkinstalldirs = $(mkdir_p) +CONFIG_CLEAN_FILES = +LTLIBRARIES = $(noinst_LTLIBRARIES) +libpathfinder_la_LIBADD = +am_libpathfinder_la_OBJECTS = Astar.lo PathFinder.lo Zombie.lo path.lo +libpathfinder_la_OBJECTS = $(am_libpathfinder_la_OBJECTS) +DEFAULT_INCLUDES = -I. -I$(srcdir) +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__depfiles_maybe = depfiles +@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/Astar.Plo \ +@AMDEP_TRUE@ ./$(DEPDIR)/PathFinder.Plo ./$(DEPDIR)/Zombie.Plo \ +@AMDEP_TRUE@ ./$(DEPDIR)/path.Plo +CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ + $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) +CXXLD = $(CXX) +CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ + -o $@ +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +CCLD = $(CC) +LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ +SOURCES = $(libpathfinder_la_SOURCES) +DIST_SOURCES = $(libpathfinder_la_SOURCES) +ETAGS = etags +CTAGS = ctags +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) AWK = @AWK@ CC = @CC@ +CFLAGS = @CFLAGS@ CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ +CXXCPP = @CXXCPP@ +CXXFLAGS = @CXXFLAGS@ DEBUG_FLAGS = @DEBUG_FLAGS@ -DEPDIR = @DEPDIR@ -DLLTOOL = @DLLTOOL@ -ECHO = @ECHO@ +DEFS = @DEFS@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ EXEEXT = @EXEEXT@ EXE_TARGET = @EXE_TARGET@ EXULT_DATADIR = @EXULT_DATADIR@ @@ -81,39 +95,69 @@ GLADE_LIBS = @GLADE_LIBS@ HAVE_TIMIDITY_BIN = @HAVE_TIMIDITY_BIN@ ICON_FILE = @ICON_FILE@ -INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ KMID_INCLUDES = @KMID_INCLUDES@ KMID_LIBS = @KMID_LIBS@ -LEX = @LEX@ -LIBTOOL = @LIBTOOL@ +LDFLAGS = @LDFLAGS@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ LIBTOOL_DEPS = @LIBTOOL_DEPS@ -LN_S = @LN_S@ -OBJDUMP = @OBJDUMP@ +LTLIBOBJS = @LTLIBOBJS@ OBJEXT = @OBJEXT@ OPENGL_LIBS = @OPENGL_LIBS@ -PACKAGE = @PACKAGE@ -RANLIB = @RANLIB@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ SDL_CFLAGS = @SDL_CFLAGS@ -SDL_CONFIG = @SDL_CONFIG@ SDL_LIBS = @SDL_LIBS@ -STRIP = @STRIP@ +SHELL = @SHELL@ SYSLIBS = @SYSLIBS@ -VERSION = @VERSION@ WARNINGS = @WARNINGS@ WINDOWING_SYSTEM = @WINDOWING_SYSTEM@ YACC = @YACC@ ZLIB_LIBS = @ZLIB_LIBS@ -am__include = @am__include@ -am__quote = @am__quote@ -install_sh = @install_sh@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_CXX = @ac_ct_CXX@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +datadir = @datadir@ +exec_prefix = @exec_prefix@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +includedir = @includedir@ +infodir = @infodir@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +oldincludedir = @oldincludedir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +sysconfdir = @sysconfdir@ +target = @target@ +target_alias = @target_alias@ +target_cpu = @target_cpu@ +target_os = @target_os@ +target_vendor = @target_vendor@ x_libraries = @x_libraries@ - INCLUDES = -I$(srcdir)/.. -I$(srcdir)/../objs $(SDL_CFLAGS) $(INCDIRS) \ $(WINDOWING_SYSTEM) $(DEBUG_FLAGS) $(CPPFLAGS) - noinst_LTLIBRARIES = libpathfinder.la - libpathfinder_la_SOURCES = \ Astar.cc \ Astar.h \ @@ -123,155 +167,147 @@ Zombie.h \ path.cc - CLEANFILES = *~ -subdir = pathfinder -mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs -CONFIG_HEADER = $(top_builddir)/config.h -CONFIG_CLEAN_FILES = -LTLIBRARIES = $(noinst_LTLIBRARIES) - -libpathfinder_la_LDFLAGS = -libpathfinder_la_LIBADD = -am_libpathfinder_la_OBJECTS = Astar.lo PathFinder.lo Zombie.lo path.lo -libpathfinder_la_OBJECTS = $(am_libpathfinder_la_OBJECTS) - -DEFS = @DEFS@ -DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) -CPPFLAGS = @CPPFLAGS@ -LDFLAGS = @LDFLAGS@ -LIBS = @LIBS@ -depcomp = $(SHELL) $(top_srcdir)/depcomp -@AMDEP_TRUE@DEP_FILES = $(DEPDIR)/Astar.Plo $(DEPDIR)/PathFinder.Plo \ -@AMDEP_TRUE@ $(DEPDIR)/Zombie.Plo $(DEPDIR)/path.Plo -CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ - $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -LTCXXCOMPILE = $(LIBTOOL) --mode=compile $(CXX) $(DEFS) \ - $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ - $(AM_CXXFLAGS) $(CXXFLAGS) -CXXLD = $(CXX) -CXXLINK = $(LIBTOOL) --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -CXXFLAGS = @CXXFLAGS@ -CFLAGS = @CFLAGS@ -COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ - $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) \ - $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -CCLD = $(CC) -LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ - $(AM_LDFLAGS) $(LDFLAGS) -o $@ -DIST_SOURCES = $(libpathfinder_la_SOURCES) -DIST_COMMON = Makefile.am Makefile.in -SOURCES = $(libpathfinder_la_SOURCES) - all: all-am .SUFFIXES: -.SUFFIXES: .cc .lo .o .obj - -mostlyclean-libtool: - -rm -f *.lo - -clean-libtool: - -rm -rf .libs _libs - -distclean-libtool: - -rm -f libtool -$(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.ac $(ACLOCAL_M4) +.SUFFIXES: .cc .o .obj +$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) + @for dep in $?; do \ + case '$(am__configure_deps)' in \ + *$$dep*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh \ + && exit 0; \ + exit 1;; \ + esac; \ + done; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu pathfinder/Makefile'; \ cd $(top_srcdir) && \ $(AUTOMAKE) --gnu pathfinder/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status - cd $(top_builddir) && \ - CONFIG_HEADERS= CONFIG_LINKS= \ - CONFIG_FILES=$(subdir)/$@ $(SHELL) ./config.status +.PRECIOUS: Makefile +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status + @case '$?' in \ + *config.status*) \ + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ + *) \ + echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ + cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ + esac; + +$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh + +$(top_srcdir)/configure: $(am__configure_deps) + cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) + @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \ + dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \ + test "$$dir" != "$$p" || dir=.; \ + echo "rm -f \"$${dir}/so_locations\""; \ + rm -f "$${dir}/so_locations"; \ + done libpathfinder.la: $(libpathfinder_la_OBJECTS) $(libpathfinder_la_DEPENDENCIES) $(CXXLINK) $(libpathfinder_la_LDFLAGS) $(libpathfinder_la_OBJECTS) $(libpathfinder_la_LIBADD) $(LIBS) mostlyclean-compile: - -rm -f *.$(OBJEXT) core *.core + -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/Astar.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/PathFinder.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/Zombie.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/path.Plo@am__quote@ - -distclean-depend: - -rm -rf $(DEPDIR) +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Astar.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/PathFinder.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Zombie.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/path.Plo@am__quote@ .cc.o: -@AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ - $(CXXCOMPILE) -c -o $@ `test -f $< || echo '$(srcdir)/'`$< +@am__fastdepCXX_TRUE@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< .cc.obj: -@AMDEP_TRUE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ - $(CXXCOMPILE) -c -o $@ `cygpath -w $<` - -.cc.lo: -@AMDEP_TRUE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@ depfile='$(DEPDIR)/$*.Plo' tmpdepfile='$(DEPDIR)/$*.TPlo' @AMDEPBACKSLASH@ -@AMDEP_TRUE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ - $(LTCXXCOMPILE) -c -o $@ `test -f $< || echo '$(srcdir)/'`$< -CXXDEPMODE = @CXXDEPMODE@ +@am__fastdepCXX_TRUE@ if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \ +@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` uninstall-info-am: -tags: TAGS - ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) - list='$(SOURCES) $(HEADERS) $(TAGS_FILES)'; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - mkid -fID $$unique $(LISP) + mkid -fID $$unique +tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) tags=; \ here=`pwd`; \ - list='$(SOURCES) $(HEADERS) $(TAGS_FILES)'; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | \ + $(AWK) ' { files[$$0] = 1; } \ + END { for (i in files) print i; }'`; \ + if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ + test -n "$$unique" || unique=$$empty_fix; \ + $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ + $$tags $$unique; \ + fi +ctags: CTAGS +CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ + $(TAGS_FILES) $(LISP) + tags=; \ + here=`pwd`; \ + list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) ' { files[$$0] = 1; } \ END { for (i in files) print i; }'`; \ - test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \ - || etags $(ETAGS_ARGS) $$tags $$unique $(LISP) + test -z "$(CTAGS_ARGS)$$tags$$unique" \ + || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ + $$tags $$unique GTAGS: - here=`CDPATH=: && cd $(top_builddir) && pwd` \ + here=`$(am__cd) $(top_builddir) && pwd` \ && cd $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) $$here distclean-tags: - -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH - -DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) - -top_distdir = .. -distdir = $(top_distdir)/$(PACKAGE)-$(VERSION) + -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) - @for file in $(DISTFILES); do \ - if test -f $$file; then d=.; else d=$(srcdir); fi; \ + @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; \ + 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 \ - $(mkinstalldirs) "$(distdir)/$$dir"; \ + dir="/$$dir"; \ + $(mkdir_p) "$(distdir)$$dir"; \ + else \ + dir=''; \ fi; \ if test -d $$d/$$file; then \ - cp -pR $$d/$$file $(distdir) \ - || exit 1; \ + if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ + cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \ + fi; \ + cp -pR $$d/$$file $(distdir)$$dir || exit 1; \ else \ test -f $(distdir)/$$file \ || cp -p $$d/$$file $(distdir)/$$file \ @@ -281,9 +317,7 @@ check-am: all-am check: check-am all-am: Makefile $(LTLIBRARIES) - installdirs: - install: install-am install-exec: install-exec-am install-data: install-data-am @@ -295,6 +329,7 @@ installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ + install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: @@ -303,25 +338,27 @@ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) distclean-generic: - -rm -f Makefile $(CONFIG_CLEAN_FILES) stamp-h stamp-h[0-9]* + -rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am -clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ - mostlyclean-am +clean-am: clean-generic clean-noinstLTLIBRARIES mostlyclean-am distclean: distclean-am - -distclean-am: clean-am distclean-compile distclean-depend \ - distclean-generic distclean-libtool distclean-tags + -rm -rf ./$(DEPDIR) + -rm -f Makefile +distclean-am: clean-am distclean-compile distclean-generic \ + distclean-tags dvi: dvi-am dvi-am: +html: html-am + info: info-am info-am: @@ -337,27 +374,34 @@ installcheck-am: maintainer-clean: maintainer-clean-am - + -rm -rf ./$(DEPDIR) + -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am -mostlyclean-am: mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool +mostlyclean-am: mostlyclean-compile mostlyclean-generic + +pdf: pdf-am + +pdf-am: + +ps: ps-am + +ps-am: uninstall-am: uninstall-info-am -.PHONY: GTAGS all all-am check check-am clean clean-generic \ - clean-libtool clean-noinstLTLIBRARIES distclean \ - distclean-compile distclean-depend distclean-generic \ - distclean-libtool distclean-tags distdir dvi dvi-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-strip installcheck installcheck-am \ - installdirs maintainer-clean maintainer-clean-generic \ - mostlyclean mostlyclean-compile mostlyclean-generic \ - mostlyclean-libtool tags uninstall uninstall-am \ - uninstall-info-am +.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \ + clean-noinstLTLIBRARIES ctags distclean distclean-compile \ + distclean-generic distclean-tags 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-strip installcheck \ + installcheck-am installdirs maintainer-clean \ + maintainer-clean-generic mostlyclean mostlyclean-compile \ + mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \ + uninstall-am uninstall-info-am # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded.