source:
scripts/untested/blfs-patches/libmikmod-3.1.11-a.patch@
7ed0e05
Last change on this file since 7ed0e05 was fd5b1fe, checked in by , 19 years ago | |
---|---|
|
|
File size: 66.6 KB |
-
libmikmod-3.1.
Submitted By: Ryan Oliver <ryan.oliver@pha.com.au> Date: 2005-08-06 Initial Package Version: 3.1.11 Upstream Status: From Upstream Origin: Upstream Description: Patch release update diff --recursive --unified libmikmod-3.1.11/NEWS libmikmod-3.1.11-a/NEWS
old new 1 Summary of changes between libmikmod 3.1.11 and libmikmod 3.1.11-a 2 ======================================================================== 3 libmikmod-3.1.11-a was released on 05/03/2004 4 5 Most of my work and attention goes on the 3.2.x series, but I still receive 6 occasional bug reports and patchs for the 3.1.11 version. There are not enough 7 changes to make a full release, but many people may find this patch useful. 8 9 BUGFIXES 10 - libmikmod playback now works correcly on amd64 (type size problem) 11 - fixed warning issued by automake >= 1.8 12 - config.sub and config.guess updated 13 14 1 15 Summary of changes between libmikmod 3.1.10 and libmikmod 3.1.11 (Thiers): 2 16 ========================================================================== 3 17 -
libmikmod-3.1.
diff --recursive --unified libmikmod-3.1.11/config.guess libmikmod-3.1.11-a/config.guess
old new 1 1 #! /bin/sh 2 2 # Attempt to guess a canonical system name. 3 3 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 4 # 2000, 2001, 2002 Free Software Foundation, Inc.4 # 2000, 2001, 2002, 2003 Free Software Foundation, Inc. 5 5 6 timestamp='200 2-01-02'6 timestamp='2004-03-03' 7 7 8 8 # This file is free software; you can redistribute it and/or modify it 9 9 # under the terms of the GNU General Public License as published by … … 24 24 # configuration script generated by Autoconf, you may include it under 25 25 # the same distribution terms that you use for the rest of that program. 26 26 27 # Originally written by Per Bothner < bothner@cygnus.com>.27 # Originally written by Per Bothner <per@bothner.com>. 28 28 # Please send patches to <config-patches@gnu.org>. Submit a context 29 29 # diff and a properly formatted ChangeLog entry. 30 30 # … … 88 88 exit 1 89 89 fi 90 90 91 trap 'exit 1' 1 2 15 91 92 92 dummy=dummy-$$ 93 trap 'rm -f $dummy.c $dummy.o $dummy.rel $dummy; exit 1' 1 2 15 93 # CC_FOR_BUILD -- compiler used by this script. Note that the use of a 94 # compiler to aid in system detection is discouraged as it requires 95 # temporary files to be created and, as you can see below, it is a 96 # headache to deal with in a portable fashion. 94 97 95 # CC_FOR_BUILD -- compiler used by this script.96 98 # Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still 97 99 # use `HOST_CC' if defined, but it is deprecated. 98 100 99 set_cc_for_build='case $CC_FOR_BUILD,$HOST_CC,$CC in 100 ,,) echo "int dummy(){}" > $dummy.c ; 101 for c in cc gcc c89 ; do 102 ($c $dummy.c -c -o $dummy.o) >/dev/null 2>&1 ; 103 if test $? = 0 ; then 101 # Portable tmp directory creation inspired by the Autoconf team. 102 103 set_cc_for_build=' 104 trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; 105 trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; 106 : ${TMPDIR=/tmp} ; 107 { tmp=`(umask 077 && mktemp -d -q "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || 108 { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || 109 { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || 110 { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; 111 dummy=$tmp/dummy ; 112 tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; 113 case $CC_FOR_BUILD,$HOST_CC,$CC in 114 ,,) echo "int x;" > $dummy.c ; 115 for c in cc gcc c89 c99 ; do 116 if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then 104 117 CC_FOR_BUILD="$c"; break ; 105 118 fi ; 106 119 done ; 107 rm -f $dummy.c $dummy.o $dummy.rel ;108 120 if test x"$CC_FOR_BUILD" = x ; then 109 121 CC_FOR_BUILD=no_compiler_found ; 110 122 fi 111 123 ;; 112 124 ,,*) CC_FOR_BUILD=$CC ;; 113 125 ,*,*) CC_FOR_BUILD=$HOST_CC ;; 114 esac '126 esac ;' 115 127 116 128 # This is needed to find uname on a Pyramid OSx when run in the BSD universe. 117 129 # (ghazi@noc.rutgers.edu 1994-08-24) … … 138 150 # 139 151 # Note: NetBSD doesn't particularly care about the vendor 140 152 # portion of the name. We always set it to "unknown". 141 UNAME_MACHINE_ARCH=`(uname -p) 2>/dev/null` || \ 142 UNAME_MACHINE_ARCH=unknown 153 sysctl="sysctl -n hw.machine_arch" 154 UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ 155 /usr/sbin/$sysctl 2>/dev/null || echo unknown)` 143 156 case "${UNAME_MACHINE_ARCH}" in 157 armeb) machine=armeb-unknown ;; 144 158 arm*) machine=arm-unknown ;; 145 159 sh3el) machine=shl-unknown ;; 146 160 sh3eb) machine=sh-unknown ;; … … 166 180 ;; 167 181 esac 168 182 # The OS release 169 release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` 183 # Debian GNU/NetBSD machines have a different userland, and 184 # thus, need a distinct triplet. However, they do not need 185 # kernel version information, so it can be replaced with a 186 # suitable tag, in the style of linux-gnu. 187 case "${UNAME_VERSION}" in 188 Debian*) 189 release='-gnu' 190 ;; 191 *) 192 release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` 193 ;; 194 esac 170 195 # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: 171 196 # contains redundant information, the shorter form: 172 197 # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. 173 198 echo "${machine}-${os}${release}" 174 199 exit 0 ;; 200 amd64:OpenBSD:*:*) 201 echo x86_64-unknown-openbsd${UNAME_RELEASE} 202 exit 0 ;; 175 203 amiga:OpenBSD:*:*) 176 204 echo m68k-unknown-openbsd${UNAME_RELEASE} 177 205 exit 0 ;; 178 206 arc:OpenBSD:*:*) 179 207 echo mipsel-unknown-openbsd${UNAME_RELEASE} 180 208 exit 0 ;; 209 cats:OpenBSD:*:*) 210 echo arm-unknown-openbsd${UNAME_RELEASE} 211 exit 0 ;; 181 212 hp300:OpenBSD:*:*) 182 213 echo m68k-unknown-openbsd${UNAME_RELEASE} 183 214 exit 0 ;; … … 196 227 mvmeppc:OpenBSD:*:*) 197 228 echo powerpc-unknown-openbsd${UNAME_RELEASE} 198 229 exit 0 ;; 230 pegasos:OpenBSD:*:*) 231 echo powerpc-unknown-openbsd${UNAME_RELEASE} 232 exit 0 ;; 199 233 pmax:OpenBSD:*:*) 200 234 echo mipsel-unknown-openbsd${UNAME_RELEASE} 201 235 exit 0 ;; … … 211 245 *:OpenBSD:*:*) 212 246 echo ${UNAME_MACHINE}-unknown-openbsd${UNAME_RELEASE} 213 247 exit 0 ;; 248 *:ekkoBSD:*:*) 249 echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} 250 exit 0 ;; 251 macppc:MirBSD:*:*) 252 echo powerppc-unknown-mirbsd${UNAME_RELEASE} 253 exit 0 ;; 254 *:MirBSD:*:*) 255 echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} 256 exit 0 ;; 214 257 alpha:OSF1:*:*) 215 if test $UNAME_RELEASE = "V4.0"; then 258 case $UNAME_RELEASE in 259 *4.0) 216 260 UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` 217 fi 261 ;; 262 *5.*) 263 UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` 264 ;; 265 esac 266 # According to Compaq, /usr/sbin/psrinfo has been available on 267 # OSF/1 and Tru64 systems produced since 1995. I hope that 268 # covers most systems running today. This code pipes the CPU 269 # types through head -n 1, so we only detect the type of CPU 0. 270 ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` 271 case "$ALPHA_CPU_TYPE" in 272 "EV4 (21064)") 273 UNAME_MACHINE="alpha" ;; 274 "EV4.5 (21064)") 275 UNAME_MACHINE="alpha" ;; 276 "LCA4 (21066/21068)") 277 UNAME_MACHINE="alpha" ;; 278 "EV5 (21164)") 279 UNAME_MACHINE="alphaev5" ;; 280 "EV5.6 (21164A)") 281 UNAME_MACHINE="alphaev56" ;; 282 "EV5.6 (21164PC)") 283 UNAME_MACHINE="alphapca56" ;; 284 "EV5.7 (21164PC)") 285 UNAME_MACHINE="alphapca57" ;; 286 "EV6 (21264)") 287 UNAME_MACHINE="alphaev6" ;; 288 "EV6.7 (21264A)") 289 UNAME_MACHINE="alphaev67" ;; 290 "EV6.8CB (21264C)") 291 UNAME_MACHINE="alphaev68" ;; 292 "EV6.8AL (21264B)") 293 UNAME_MACHINE="alphaev68" ;; 294 "EV6.8CX (21264D)") 295 UNAME_MACHINE="alphaev68" ;; 296 "EV6.9A (21264/EV69A)") 297 UNAME_MACHINE="alphaev69" ;; 298 "EV7 (21364)") 299 UNAME_MACHINE="alphaev7" ;; 300 "EV7.9 (21364A)") 301 UNAME_MACHINE="alphaev79" ;; 302 esac 303 # A Pn.n version is a patched version. 218 304 # A Vn.n version is a released version. 219 305 # A Tn.n version is a released field test version. 220 306 # A Xn.n version is an unreleased experimental baselevel. 221 307 # 1.2 uses "1.2" for uname -r. 222 cat <<EOF >$dummy.s 223 .data 224 \$Lformat: 225 .byte 37,100,45,37,120,10,0 # "%d-%x\n" 226 227 .text 228 .globl main 229 .align 4 230 .ent main 231 main: 232 .frame \$30,16,\$26,0 233 ldgp \$29,0(\$27) 234 .prologue 1 235 .long 0x47e03d80 # implver \$0 236 lda \$2,-1 237 .long 0x47e20c21 # amask \$2,\$1 238 lda \$16,\$Lformat 239 mov \$0,\$17 240 not \$1,\$18 241 jsr \$26,printf 242 ldgp \$29,0(\$26) 243 mov 0,\$16 244 jsr \$26,exit 245 .end main 246 EOF 247 eval $set_cc_for_build 248 $CC_FOR_BUILD $dummy.s -o $dummy 2>/dev/null 249 if test "$?" = 0 ; then 250 case `./$dummy` in 251 0-0) 252 UNAME_MACHINE="alpha" 253 ;; 254 1-0) 255 UNAME_MACHINE="alphaev5" 256 ;; 257 1-1) 258 UNAME_MACHINE="alphaev56" 259 ;; 260 1-101) 261 UNAME_MACHINE="alphapca56" 262 ;; 263 2-303) 264 UNAME_MACHINE="alphaev6" 265 ;; 266 2-307) 267 UNAME_MACHINE="alphaev67" 268 ;; 269 2-1307) 270 UNAME_MACHINE="alphaev68" 271 ;; 272 esac 273 fi 274 rm -f $dummy.s $dummy 275 echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[VTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` 308 echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` 309 exit 0 ;; 310 Alpha*:OpenVMS:*:*) 311 echo alpha-hp-vms 276 312 exit 0 ;; 277 313 Alpha\ *:Windows_NT*:*) 278 314 # How do we know it's Interix rather than the generic POSIX subsystem? … … 295 331 *:OS/390:*:*) 296 332 echo i370-ibm-openedition 297 333 exit 0 ;; 334 *:OS400:*:*) 335 echo powerpc-ibm-os400 336 exit 0 ;; 298 337 arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) 299 338 echo arm-acorn-riscix${UNAME_RELEASE} 300 339 exit 0;; … … 312 351 NILE*:*:*:dcosx) 313 352 echo pyramid-pyramid-svr4 314 353 exit 0 ;; 354 DRS?6000:unix:4.0:6*) 355 echo sparc-icl-nx6 356 exit 0 ;; 357 DRS?6000:UNIX_SV:4.2*:7*) 358 case `/usr/bin/uname -p` in 359 sparc) echo sparc-icl-nx7 && exit 0 ;; 360 esac ;; 315 361 sun4H:SunOS:5.*:*) 316 362 echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` 317 363 exit 0 ;; … … 340 386 echo m68k-sun-sunos${UNAME_RELEASE} 341 387 exit 0 ;; 342 388 sun*:*:4.2BSD:*) 343 UNAME_RELEASE=`( head -1/etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`389 UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` 344 390 test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 345 391 case "`/bin/arch`" in 346 392 sun3) … … 380 426 *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) 381 427 echo m68k-unknown-mint${UNAME_RELEASE} 382 428 exit 0 ;; 429 m68k:machten:*:*) 430 echo m68k-apple-machten${UNAME_RELEASE} 431 exit 0 ;; 383 432 powerpc:machten:*:*) 384 433 echo powerpc-apple-machten${UNAME_RELEASE} 385 434 exit 0 ;; … … 418 467 exit (-1); 419 468 } 420 469 EOF 421 $CC_FOR_BUILD $dummy.c -o $dummy \ 422 && ./$dummy `echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` \ 423 && rm -f $dummy.c $dummy && exit 0 424 rm -f $dummy.c $dummy 470 $CC_FOR_BUILD -o $dummy $dummy.c \ 471 && $dummy `echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` \ 472 && exit 0 425 473 echo mips-mips-riscos${UNAME_RELEASE} 426 474 exit 0 ;; 427 475 Motorola:PowerMAX_OS:*:*) 428 476 echo powerpc-motorola-powermax 429 477 exit 0 ;; 478 Motorola:*:4.3:PL8-*) 479 echo powerpc-harris-powermax 480 exit 0 ;; 481 Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) 482 echo powerpc-harris-powermax 483 exit 0 ;; 430 484 Night_Hawk:Power_UNIX:*:*) 431 485 echo powerpc-harris-powerunix 432 486 exit 0 ;; … … 499 553 exit(0); 500 554 } 501 555 EOF 502 $CC_FOR_BUILD $dummy.c -o $dummy && ./$dummy && rm -f $dummy.c $dummy && exit 0 503 rm -f $dummy.c $dummy 556 $CC_FOR_BUILD -o $dummy $dummy.c && $dummy && exit 0 504 557 echo rs6000-ibm-aix3.2.5 505 558 elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then 506 559 echo rs6000-ibm-aix3.2.4 … … 509 562 fi 510 563 exit 0 ;; 511 564 *:AIX:*:[45]) 512 IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | head -1| awk '{ print $1 }'`565 IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` 513 566 if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then 514 567 IBM_ARCH=rs6000 515 568 else … … 598 651 exit (0); 599 652 } 600 653 EOF 601 (CCOPTS= $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null) && HP_ARCH=`./$dummy` 602 if test -z "$HP_ARCH"; then HP_ARCH=hppa; fi 603 rm -f $dummy.c $dummy 654 (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` 655 test -z "$HP_ARCH" && HP_ARCH=hppa 604 656 fi ;; 605 657 esac 658 if [ ${HP_ARCH} = "hppa2.0w" ] 659 then 660 # avoid double evaluation of $set_cc_for_build 661 test -n "$CC_FOR_BUILD" || eval $set_cc_for_build 662 if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E -) | grep __LP64__ >/dev/null 663 then 664 HP_ARCH="hppa2.0w" 665 else 666 HP_ARCH="hppa64" 667 fi 668 fi 606 669 echo ${HP_ARCH}-hp-hpux${HPUX_REV} 607 670 exit 0 ;; 608 671 ia64:HP-UX:*:*) … … 636 699 exit (0); 637 700 } 638 701 EOF 639 $CC_FOR_BUILD $dummy.c -o $dummy && ./$dummy && rm -f $dummy.c $dummy && exit 0 640 rm -f $dummy.c $dummy 702 $CC_FOR_BUILD -o $dummy $dummy.c && $dummy && exit 0 641 703 echo unknown-hitachi-hiuxwe2 642 704 exit 0 ;; 643 705 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) … … 683 745 C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) 684 746 echo c4-convex-bsd 685 747 exit 0 ;; 686 CRAY*X-MP:*:*:*)687 echo xmp-cray-unicos688 exit 0 ;;689 748 CRAY*Y-MP:*:*:*) 690 749 echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' 691 750 exit 0 ;; … … 698 757 CRAY*TS:*:*:*) 699 758 echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' 700 759 exit 0 ;; 701 CRAY*T3D:*:*:*)702 echo alpha-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/'703 exit 0 ;;704 760 CRAY*T3E:*:*:*) 705 761 echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' 706 762 exit 0 ;; 707 763 CRAY*SV1:*:*:*) 708 764 echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' 709 765 exit 0 ;; 710 CRAY-2:*:*:*)711 echo cray2-cray-unicos712 766 *:UNICOS/mp:*:*) 767 echo nv1-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' 768 exit 0 ;; 713 769 F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) 714 770 FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` 715 771 FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` 716 772 FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` 717 773 echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" 718 774 exit 0 ;; 775 5000:UNIX_System_V:4.*:*) 776 FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` 777 FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` 778 echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" 779 exit 0 ;; 719 780 i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) 720 781 echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} 721 782 exit 0 ;; … … 726 787 echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} 727 788 exit 0 ;; 728 789 *:FreeBSD:*:*) 729 echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` 790 # Determine whether the default compiler uses glibc. 791 eval $set_cc_for_build 792 sed 's/^ //' << EOF >$dummy.c 793 #include <features.h> 794 #if __GLIBC__ >= 2 795 LIBC=gnu 796 #else 797 LIBC= 798 #endif 799 EOF 800 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=` 801 # GNU/KFreeBSD systems have a "k" prefix to indicate we are using 802 # FreeBSD's kernel, but not the complete OS. 803 case ${LIBC} in gnu) kernel_only='k' ;; esac 804 echo ${UNAME_MACHINE}-unknown-${kernel_only}freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`${LIBC:+-$LIBC} 730 805 exit 0 ;; 731 806 i*:CYGWIN*:*) 732 807 echo ${UNAME_MACHINE}-pc-cygwin … … 737 812 i*:PW*:*) 738 813 echo ${UNAME_MACHINE}-pc-pw32 739 814 exit 0 ;; 740 x86:Interix*:3*) 741 echo i386-pc-interix3 815 x86:Interix*:[34]*) 816 echo i586-pc-interix${UNAME_RELEASE}|sed -e 's/\..*//' 817 exit 0 ;; 818 [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) 819 echo i${UNAME_MACHINE}-pc-mks 742 820 exit 0 ;; 743 821 i*:Windows_NT*:* | Pentium*:Windows_NT*:*) 744 822 # How do we know it's Interix rather than the generic POSIX subsystem? 745 823 # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we 746 824 # UNAME_MACHINE based on the output of uname instead of i386? 747 echo i 386-pc-interix825 echo i586-pc-interix 748 826 exit 0 ;; 749 827 i*:UWIN*:*) 750 828 echo ${UNAME_MACHINE}-pc-uwin … … 756 834 echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` 757 835 exit 0 ;; 758 836 *:GNU:*:*) 837 # the GNU system 759 838 echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` 760 839 exit 0 ;; 840 *:GNU/*:*:*) 841 # other systems with GNU libc and userland 842 echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu 843 exit 0 ;; 761 844 i*86:Minix:*:*) 762 845 echo ${UNAME_MACHINE}-pc-minix 763 846 exit 0 ;; 764 847 arm*:Linux:*:*) 765 848 echo ${UNAME_MACHINE}-unknown-linux-gnu 766 849 exit 0 ;; 850 cris:Linux:*:*) 851 echo cris-axis-linux-gnu 852 exit 0 ;; 767 853 ia64:Linux:*:*) 768 echo ${UNAME_MACHINE}-unknown-linux 854 echo ${UNAME_MACHINE}-unknown-linux-gnu 769 855 exit 0 ;; 770 856 m68*:Linux:*:*) 771 857 echo ${UNAME_MACHINE}-unknown-linux-gnu … … 776 862 #undef CPU 777 863 #undef mips 778 864 #undef mipsel 779 #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) 780 CPU=mipsel 865 #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) 866 CPU=mipsel 781 867 #else 782 #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) 868 #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) 783 869 CPU=mips 784 870 #else 785 871 CPU= 786 872 #endif 787 #endif 873 #endif 874 EOF 875 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=` 876 test x"${CPU}" != x && echo "${CPU}-unknown-linux-gnu" && exit 0 877 ;; 878 mips64:Linux:*:*) 879 eval $set_cc_for_build 880 sed 's/^ //' << EOF >$dummy.c 881 #undef CPU 882 #undef mips64 883 #undef mips64el 884 #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) 885 CPU=mips64el 886 #else 887 #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) 888 CPU=mips64 889 #else 890 CPU= 891 #endif 892 #endif 788 893 EOF 789 894 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=` 790 rm -f $dummy.c 791 test x"${CPU}" != x && echo "${CPU}-pc-linux-gnu" && exit 0 895 test x"${CPU}" != x && echo "${CPU}-unknown-linux-gnu" && exit 0 792 896 ;; 793 897 ppc:Linux:*:*) 794 898 echo powerpc-unknown-linux-gnu … … 824 928 s390:Linux:*:* | s390x:Linux:*:*) 825 929 echo ${UNAME_MACHINE}-ibm-linux 826 930 exit 0 ;; 931 sh64*:Linux:*:*) 932 echo ${UNAME_MACHINE}-unknown-linux-gnu 933 exit 0 ;; 827 934 sh*:Linux:*:*) 828 935 echo ${UNAME_MACHINE}-unknown-linux-gnu 829 936 exit 0 ;; … … 837 944 # The BFD linker knows what the default object file format is, so 838 945 # first see if it will tell us. cd to the root directory to prevent 839 946 # problems with other programs or directories called `ld' in the path. 840 ld_supported_targets=`cd /; ld --help 2>&1 \ 947 # Set LC_ALL=C to ensure ld outputs messages in English. 948 ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \ 841 949 | sed -ne '/supported targets:/!d 842 950 s/[ ][ ]*/ /g 843 951 s/.*supported targets: *// … … 849 957 ;; 850 958 a.out-i386-linux) 851 959 echo "${UNAME_MACHINE}-pc-linux-gnuaout" 852 exit 0 ;; 960 exit 0 ;; 853 961 coff-i386) 854 962 echo "${UNAME_MACHINE}-pc-linux-gnucoff" 855 963 exit 0 ;; … … 874 982 LIBC=gnulibc1 875 983 # endif 876 984 #else 985 #ifdef __INTEL_COMPILER 986 LIBC=gnu 987 #else 877 988 LIBC=gnuaout 878 989 #endif 990 #endif 991 #ifdef __dietlibc__ 992 LIBC=dietlibc 993 #endif 879 994 EOF 880 995 eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=` 881 rm -f $dummy.c882 996 test x"${LIBC}" != x && echo "${UNAME_MACHINE}-pc-linux-${LIBC}" && exit 0 883 997 test x"${TENTATIVE}" != x && echo "${TENTATIVE}" && exit 0 884 998 ;; … … 896 1010 # Use sysv4.2uw... so that sysv4* matches it. 897 1011 echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} 898 1012 exit 0 ;; 1013 i*86:OS/2:*:*) 1014 # If we were able to find `uname', then EMX Unix compatibility 1015 # is probably installed. 1016 echo ${UNAME_MACHINE}-pc-os2-emx 1017 exit 0 ;; 1018 i*86:XTS-300:*:STOP) 1019 echo ${UNAME_MACHINE}-unknown-stop 1020 exit 0 ;; 1021 i*86:atheos:*:*) 1022 echo ${UNAME_MACHINE}-unknown-atheos 1023 exit 0 ;; 1024 i*86:syllable:*:*) 1025 echo ${UNAME_MACHINE}-pc-syllable 1026 exit 0 ;; 1027 i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*) 1028 echo i386-unknown-lynxos${UNAME_RELEASE} 1029 exit 0 ;; 1030 i*86:*DOS:*:*) 1031 echo ${UNAME_MACHINE}-pc-msdosdjgpp 1032 exit 0 ;; 899 1033 i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) 900 1034 UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` 901 1035 if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then … … 917 1051 UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name` 918 1052 echo ${UNAME_MACHINE}-pc-isc$UNAME_REL 919 1053 elif /bin/uname -X 2>/dev/null >/dev/null ; then 920 UNAME_REL=`(/bin/uname -X| egrep Release|sed -e 's/.*= //')`921 (/bin/uname -X| egrep i80486 >/dev/null) && UNAME_MACHINE=i486922 (/bin/uname -X| egrep '^Machine.*Pentium' >/dev/null) \1054 UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` 1055 (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 1056 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ 923 1057 && UNAME_MACHINE=i586 924 (/bin/uname -X| egrep '^Machine.*Pent ?II' >/dev/null) \1058 (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ 925 1059 && UNAME_MACHINE=i686 926 (/bin/uname -X| egrep '^Machine.*Pentium Pro' >/dev/null) \1060 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ 927 1061 && UNAME_MACHINE=i686 928 1062 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL 929 1063 else 930 1064 echo ${UNAME_MACHINE}-pc-sysv32 931 1065 fi 932 1066 exit 0 ;; 933 i*86:*DOS:*:*)934 echo ${UNAME_MACHINE}-pc-msdosdjgpp935 exit 0 ;;936 1067 pc:*:*:*) 937 1068 # Left here for compatibility: 938 1069 # uname -m prints for DJGPP always 'pc', but it prints nothing about … … 956 1087 # "miniframe" 957 1088 echo m68010-convergent-sysv 958 1089 exit 0 ;; 1090 mc68k:UNIX:SYSTEM5:3.51m) 1091 echo m68k-convergent-sysv 1092 exit 0 ;; 1093 M680?0:D-NIX:5.3:*) 1094 echo m68k-diab-dnix 1095 exit 0 ;; 959 1096 M68*:*:R3V[567]*:*) 960 1097 test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;; 961 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 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0)1098 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) 962 1099 OS_REL='' 963 1100 test -r /etc/.relid \ 964 1101 && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` … … 975 1112 mc68030:UNIX_System_V:4.*:*) 976 1113 echo m68k-atari-sysv4 977 1114 exit 0 ;; 978 i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*)979 echo i386-unknown-lynxos${UNAME_RELEASE}980 exit 0 ;;981 1115 TSUNAMI:LynxOS:2.*:*) 982 1116 echo sparc-unknown-lynxos${UNAME_RELEASE} 983 1117 exit 0 ;; … … 1049 1183 SX-5:SUPER-UX:*:*) 1050 1184 echo sx5-nec-superux${UNAME_RELEASE} 1051 1185 exit 0 ;; 1186 SX-6:SUPER-UX:*:*) 1187 echo sx6-nec-superux${UNAME_RELEASE} 1188 exit 0 ;; 1052 1189 Power*:Rhapsody:*:*) 1053 1190 echo powerpc-apple-rhapsody${UNAME_RELEASE} 1054 1191 exit 0 ;; … … 1056 1193 echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} 1057 1194 exit 0 ;; 1058 1195 *:Darwin:*:*) 1059 echo `uname -p`-apple-darwin${UNAME_RELEASE} 1196 case `uname -p` in 1197 *86) UNAME_PROCESSOR=i686 ;; 1198 powerpc) UNAME_PROCESSOR=powerpc ;; 1199 esac 1200 echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} 1060 1201 exit 0 ;; 1061 1202 *:procnto*:*:* | *:QNX:[0123456789]*:*) 1062 if test "${UNAME_MACHINE}" = "x86pc"; then 1203 UNAME_PROCESSOR=`uname -p` 1204 if test "$UNAME_PROCESSOR" = "x86"; then 1205 UNAME_PROCESSOR=i386 1063 1206 UNAME_MACHINE=pc 1064 1207 fi 1065 echo `uname -p`-${UNAME_MACHINE}-nto-qnx1208 echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} 1066 1209 exit 0 ;; 1067 1210 *:QNX:*:4*) 1068 1211 echo i386-pc-qnx 1069 1212 exit 0 ;; 1070 NSR- [GKLNPTVW]:NONSTOP_KERNEL:*:*)1213 NSR-?:NONSTOP_KERNEL:*:*) 1071 1214 echo nsr-tandem-nsk${UNAME_RELEASE} 1072 1215 exit 0 ;; 1073 1216 *:NonStop-UX:*:*) … … 1090 1233 fi 1091 1234 echo ${UNAME_MACHINE}-unknown-plan9 1092 1235 exit 0 ;; 1093 i*86:OS/2:*:*)1094 # If we were able to find `uname', then EMX Unix compatibility1095 # is probably installed.1096 echo ${UNAME_MACHINE}-pc-os2-emx1097 exit 0 ;;1098 1236 *:TOPS-10:*:*) 1099 1237 echo pdp10-unknown-tops10 1100 1238 exit 0 ;; … … 1113 1251 *:ITS:*:*) 1114 1252 echo pdp10-unknown-its 1115 1253 exit 0 ;; 1116 i*86:XTS-300:*:STOP)1117 echo ${UNAME_MACHINE}-unknown-stop 1254 SEI:*:*:SEIUX) 1255 echo mips-sei-seiux${UNAME_RELEASE} 1118 1256 exit 0 ;; 1119 i*86:atheos:*:*)1120 echo ${UNAME_MACHINE}-unknown- atheos1257 *:DragonFly:*:*) 1258 echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` 1121 1259 exit 0 ;; 1122 1260 esac 1123 1261 … … 1239 1377 } 1240 1378 EOF 1241 1379 1242 $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null && ./$dummy && rm -f $dummy.c $dummy && exit 0 1243 rm -f $dummy.c $dummy 1380 $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && $dummy && exit 0 1244 1381 1245 1382 # Apollos put the system type in the environment. 1246 1383 -
libmikmod-3.1.
diff --recursive --unified libmikmod-3.1.11/config.sub libmikmod-3.1.11-a/config.sub
old new 3 3 # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 4 4 # 2000, 2001, 2002 Free Software Foundation, Inc. 5 5 6 timestamp='2002-0 1-02'6 timestamp='2002-07-03' 7 7 8 8 # This file is (in principle) common to ALL GNU software. 9 9 # The presence of a machine in this file suggests that SOME GNU software … … 118 118 # Here we must recognize all the valid KERNEL-OS combinations. 119 119 maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` 120 120 case $maybe_os in 121 nto-qnx* | linux-gnu* | storm-chaos* | os2-emx* | windows32-*)121 nto-qnx* | linux-gnu* | freebsd*-gnu* | storm-chaos* | os2-emx* | windows32-* | rtmk-nova*) 122 122 os=-$maybe_os 123 123 basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` 124 124 ;; … … 230 230 | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ 231 231 | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr \ 232 232 | c4x | clipper \ 233 | d10v | d30v | d sp16xx \234 | fr30 \233 | d10v | d30v | dlx | dsp16xx \ 234 | fr30 | frv \ 235 235 | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ 236 236 | i370 | i860 | i960 | ia64 \ 237 | ip2k \ 237 238 | m32r | m68000 | m68k | m88k | mcore \ 238 | mips16 | mips64 | mips64el | mips64orion | mips64orionel \ 239 | mips64vr4100 | mips64vr4100el | mips64vr4300 \ 240 | mips64vr4300el | mips64vr5000 | mips64vr5000el \ 241 | mipsbe | mipseb | mipsel | mipsle | mipstx39 | mipstx39el \ 242 | mipsisa32 \ 239 | mips | mipsbe | mipseb | mipsel | mipsle \ 240 | mips16 \ 241 | mips64 | mips64el \ 242 | mips64orion | mips64orionel \ 243 | mips64vr4100 | mips64vr4100el \ 244 | mips64vr4300 | mips64vr4300el \ 245 | mips64vr5000 | mips64vr5000el \ 246 | mipsisa32 | mipsisa32el \ 247 | mipsisa64 | mipsisa64el \ 248 | mipsisa64sb1 | mipsisa64sb1el \ 249 | mipstx39 | mipstx39el \ 243 250 | mn10200 | mn10300 \ 244 251 | ns16k | ns32k \ 245 | openrisc \252 | openrisc | or32 \ 246 253 | pdp10 | pdp11 | pj | pjl \ 247 254 | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ 248 255 | pyramid \ 249 | sh | sh[34] | sh[34]eb | shbe | shle \ 250 | sparc | sparc64 | sparclet | sparclite | sparcv9 | sparcv9b \ 256 | sh | sh[1234] | sh3e | sh[34]eb | shbe | shle | sh[1234]le | sh3ele \ 257 | sh64 | sh64le \ 258 | sparc | sparc64 | sparc86x | sparclet | sparclite | sparcv9 | sparcv9b \ 251 259 | strongarm \ 252 260 | tahoe | thumb | tic80 | tron \ 253 261 | v850 | v850e \ … … 281 289 | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ 282 290 | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ 283 291 | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ 284 | arm-* | armbe-* | armle-* | arm v*-* \292 | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ 285 293 | avr-* \ 286 294 | bs2000-* \ 287 295 | c[123]* | c30-* | [cjt]90-* | c54x-* \ 288 | clipper-* | c ray2-* | cydra-* \289 | d10v-* | d30v-* \296 | clipper-* | cydra-* \ 297 | d10v-* | d30v-* | dlx-* \ 290 298 | elxsi-* \ 291 | f30[01]-* | f700-* | fr30-* | f x80-* \299 | f30[01]-* | f700-* | fr30-* | frv-* | fx80-* \ 292 300 | h8300-* | h8500-* \ 293 301 | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ 294 302 | i*86-* | i860-* | i960-* | ia64-* \ 303 | ip2k-* \ 295 304 | m32r-* \ 296 | m68000-* | m680[01234 ]0-* | m68360-* | m683?2-* | m68k-* \305 | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ 297 306 | m88110-* | m88k-* | mcore-* \ 298 | mips-* | mips16-* | mips64-* | mips64el-* | mips64orion-* \ 299 | mips64orionel-* | mips64vr4100-* | mips64vr4100el-* \ 300 | mips64vr4300-* | mips64vr4300el-* | mipsbe-* | mipseb-* \ 301 | mipsle-* | mipsel-* | mipstx39-* | mipstx39el-* \ 307 | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ 308 | mips16-* \ 309 | mips64-* | mips64el-* \ 310 | mips64orion-* | mips64orionel-* \ 311 | mips64vr4100-* | mips64vr4100el-* \ 312 | mips64vr4300-* | mips64vr4300el-* \ 313 | mips64vr5000-* | mips64vr5000el-* \ 314 | mipsisa32-* | mipsisa32el-* \ 315 | mipsisa64-* | mipsisa64el-* \ 316 | mipsisa64sb1-* | mipsisa64sb1el-* \ 317 | mipstx39 | mipstx39el \ 302 318 | none-* | np1-* | ns16k-* | ns32k-* \ 303 319 | orion-* \ 304 320 | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ 305 321 | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ 306 322 | pyramid-* \ 307 323 | romp-* | rs6000-* \ 308 | sh-* | sh[34]-* | sh[34]eb-* | shbe-* | shle-* \ 309 | sparc-* | sparc64-* | sparc86x-* | sparclite-* \ 310 | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* \ 311 | t3e-* | tahoe-* | thumb-* | tic30-* | tic54x-* | tic80-* | tron-* \ 324 | sh-* | sh[1234]-* | sh3e-* | sh[34]eb-* | shbe-* \ 325 | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ 326 | sparc-* | sparc64-* | sparc86x-* | sparclet-* | sparclite-* \ 327 | sparcv9-* | sparcv9b-* | strongarm-* | sv1-* | sx?-* \ 328 | tahoe-* | thumb-* | tic30-* | tic54x-* | tic80-* | tron-* \ 312 329 | v850-* | v850e-* | vax-* \ 313 330 | we32k-* \ 314 | x86-* | x86_64-* | x mp-* | xps100-* | xscale-* | xstormy16-* \331 | x86-* | x86_64-* | xps100-* | xscale-* | xstormy16-* \ 315 332 | xtensa-* \ 316 333 | ymp-* \ 317 334 | z8k-*) … … 377 394 basic_machine=ns32k-sequent 378 395 os=-dynix 379 396 ;; 397 c90) 398 basic_machine=c90-cray 399 os=-unicos 400 ;; 380 401 convex-c1) 381 402 basic_machine=c1-convex 382 403 os=-bsd … … 397 418 basic_machine=c38-convex 398 419 os=-bsd 399 420 ;; 400 cray | ymp) 401 basic_machine=ymp-cray 402 os=-unicos 403 ;; 404 cray2) 405 basic_machine=cray2-cray 406 os=-unicos 407 ;; 408 [cjt]90) 409 basic_machine=${basic_machine}-cray 421 cray | j90) 422 basic_machine=j90-cray 410 423 os=-unicos 411 424 ;; 412 425 crds | unos) … … 609 622 basic_machine=m68k-atari 610 623 os=-mint 611 624 ;; 612 mipsel*-linux*)613 basic_machine=mipsel-unknown614 os=-linux-gnu615 ;;616 mips*-linux*)617 basic_machine=mips-unknown618 os=-linux-gnu619 ;;620 625 mips3*-*) 621 626 basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` 622 627 ;; … … 714 719 basic_machine=hppa1.1-oki 715 720 os=-proelf 716 721 ;; 722 or32 | or32-*) 723 basic_machine=or32-unknown 724 os=-coff 725 ;; 717 726 OSE68000 | ose68000) 718 727 basic_machine=m68000-ericsson 719 728 os=-ose … … 874 883 sun386 | sun386i | roadrunner) 875 884 basic_machine=i386-sun 876 885 ;; 877 886 sv1) 878 887 basic_machine=sv1-cray 879 888 os=-unicos 880 889 ;; … … 882 891 basic_machine=i386-sequent 883 892 os=-dynix 884 893 ;; 894 t3d) 895 basic_machine=alpha-cray 896 os=-unicos 897 ;; 885 898 t3e) 886 basic_machine=t3e-cray 899 basic_machine=alphaev5-cray 900 os=-unicos 901 ;; 902 t90) 903 basic_machine=t90-cray 887 904 os=-unicos 888 905 ;; 889 906 tic54x | c54x*) … … 950 967 basic_machine=i386-pc 951 968 os=-windows32-msvcrt 952 969 ;; 953 xmp)954 basic_machine=xmp-cray955 os=-unicos956 ;;957 970 xps | xps100) 958 971 basic_machine=xps100-honeywell 959 972 ;; 973 ymp) 974 basic_machine=ymp-cray 975 os=-unicos 976 ;; 960 977 z8k-*-coff) 961 978 basic_machine=z8k-unknown 962 979 os=-sim … … 977 994 op60c) 978 995 basic_machine=hppa1.1-oki 979 996 ;; 980 mips)981 if [ x$os = x-linux-gnu ]; then982 basic_machine=mips-unknown983 else984 basic_machine=mips-mips985 fi986 ;;987 997 romp) 988 998 basic_machine=romp-ibm 989 999 ;; … … 1003 1013 we32k) 1004 1014 basic_machine=we32k-att 1005 1015 ;; 1006 sh3 | sh4 | sh3eb | sh4eb )1016 sh3 | sh4 | sh3eb | sh4eb | sh[1234]le | sh3ele) 1007 1017 basic_machine=sh-unknown 1008 1018 ;; 1019 sh64) 1020 basic_machine=sh64-unknown 1021 ;; 1009 1022 sparc | sparcv9 | sparcv9b) 1010 1023 basic_machine=sparc-sun 1011 1024 ;; … … 1093 1106 | -interix* | -uwin* | -rhapsody* | -darwin* | -opened* \ 1094 1107 | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ 1095 1108 | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ 1096 | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* | -morphos*) 1109 | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ 1110 | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* | -powermax*) 1097 1111 # Remember, each alternative MUST END IN *, to match a version number. 1098 1112 ;; 1099 1113 -qnx*) … … 1154 1168 -ctix* | -uts*) 1155 1169 os=-sysv 1156 1170 ;; 1171 -nova*) 1172 os=-rtmk-nova 1173 ;; 1157 1174 -ns2 ) 1158 1175 os=-nextstep2 1159 1176 ;; … … 1259 1276 mips*-*) 1260 1277 os=-elf 1261 1278 ;; 1279 or32-*) 1280 os=-coff 1281 ;; 1262 1282 *-tti) # must be before sparc entry or we get the wrong os. 1263 1283 os=-sysv3 1264 1284 ;; … … 1406 1426 -ptx*) 1407 1427 vendor=sequent 1408 1428 ;; 1409 -vxsim* | -vxworks* )1429 -vxsim* | -vxworks* | -windiss*) 1410 1430 vendor=wrs 1411 1431 ;; 1412 1432 -aux*) -
libmikmod-3.1.
diff --recursive --unified libmikmod-3.1.11/configure.in libmikmod-3.1.11-a/configure.in
old new 1 1 dnl Process this file with autoconf to produce a configure script. 2 2 dnl 3 dnl $Id: configure.in,v 1. 2 2004/01/21 01:41:49raph Exp $3 dnl $Id: configure.in,v 1.1.1.1 2004/06/01 12:16:16 raph Exp $ 4 4 5 5 AC_INIT(include/mikmod.h.in) 6 6 -
dlapi/dl_hpux.c
diff --recursive --unified libmikmod-3.1.11/dlapi/dl_hpux.c libmikmod-3.1.11-a/dlapi/dl_hpux.c
old new 1 1 /*============================================================================== 2 2 3 $Id: dl_hpux.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $3 $Id: dl_hpux.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 4 4 5 5 simple dlopen()-like implementation above HP-UX shl_xxx() API 6 6 -
docs/mikmod.texi
diff --recursive --unified libmikmod-3.1.11/docs/mikmod.texi libmikmod-3.1.11-a/docs/mikmod.texi
old new 7 7 8 8 MikMod Sound Library Documentation 9 9 10 $Id: mikmod.texi,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $10 $Id: mikmod.texi,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 11 11 12 12 @end ignore 13 13 @c comment this during modifications -
drivers/drv_AF.c
diff --recursive --unified libmikmod-3.1.11/drivers/drv_AF.c libmikmod-3.1.11-a/drivers/drv_AF.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: drv_AF.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: drv_AF.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Driver for output on AF audio server. 26 26 -
drivers/drv_aix.c
diff --recursive --unified libmikmod-3.1.11/drivers/drv_aix.c libmikmod-3.1.11-a/drivers/drv_aix.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: drv_aix.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: drv_aix.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Driver for output to AIX series audio device 26 26 -
drivers/drv_alsa.c
diff --recursive --unified libmikmod-3.1.11/drivers/drv_alsa.c libmikmod-3.1.11-a/drivers/drv_alsa.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: drv_alsa.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: drv_alsa.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Driver for Advanced Linux Sound Architecture (ALSA) 26 26 -
drivers/drv_dart.c
diff --recursive --unified libmikmod-3.1.11/drivers/drv_dart.c libmikmod-3.1.11-a/drivers/drv_dart.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: drv_dart.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: drv_dart.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Driver for output on OS/2 MMPM/2 using direct audio (DART) 26 26 -
drivers/drv_ds.c
diff --recursive --unified libmikmod-3.1.11/drivers/drv_ds.c libmikmod-3.1.11-a/drivers/drv_ds.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: drv_ds.c,v 1. 2 2004/01/21 17:29:32raph Exp $23 $Id: drv_ds.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Driver for output on win32 platforms using DirectSound 26 26 -
drivers/drv_esd.c
diff --recursive --unified libmikmod-3.1.11/drivers/drv_esd.c libmikmod-3.1.11-a/drivers/drv_esd.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: drv_esd.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: drv_esd.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Driver for the Enlightened sound daemon (EsounD) 26 26 -
drivers/drv_hp.c
diff --recursive --unified libmikmod-3.1.11/drivers/drv_hp.c libmikmod-3.1.11-a/drivers/drv_hp.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: drv_hp.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: drv_hp.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Driver for output to HP 9000 series /dev/audio 26 26 -
drivers/drv_mac.c
diff --recursive --unified libmikmod-3.1.11/drivers/drv_mac.c libmikmod-3.1.11-a/drivers/drv_mac.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: drv_mac.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: drv_mac.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Driver for output to the Macintosh Sound Manager 26 26 -
drivers/drv_nos.c
diff --recursive --unified libmikmod-3.1.11/drivers/drv_nos.c libmikmod-3.1.11-a/drivers/drv_nos.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: drv_nos.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: drv_nos.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Driver for no output 26 26 -
drivers/drv_os2.c
diff --recursive --unified libmikmod-3.1.11/drivers/drv_os2.c libmikmod-3.1.11-a/drivers/drv_os2.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: drv_os2.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: drv_os2.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Driver for output on OS/2 using MMPM/2 MCI interface 26 26 -
drivers/drv_oss.c
diff --recursive --unified libmikmod-3.1.11/drivers/drv_oss.c libmikmod-3.1.11-a/drivers/drv_oss.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: drv_oss.c,v 1. 2 2004/01/21 01:41:53raph Exp $23 $Id: drv_oss.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Driver for output on Linux and FreeBSD Open Sound System (OSS) (/dev/dsp) 26 26 -
drivers/drv_pipe.c
diff --recursive --unified libmikmod-3.1.11/drivers/drv_pipe.c libmikmod-3.1.11-a/drivers/drv_pipe.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: drv_pipe.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: drv_pipe.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Driver for output via a pipe to another command 26 26 -
drivers/drv_raw.c
diff --recursive --unified libmikmod-3.1.11/drivers/drv_raw.c libmikmod-3.1.11-a/drivers/drv_raw.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: drv_raw.c,v 1. 2 2004/01/21 17:29:32raph Exp $23 $Id: drv_raw.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Driver for output to a file called MUSIC.RAW 26 26 -
drivers/drv_sam9407.c
diff --recursive --unified libmikmod-3.1.11/drivers/drv_sam9407.c libmikmod-3.1.11-a/drivers/drv_sam9407.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: drv_sam9407.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: drv_sam9407.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Driver for the Linux sam9407 driver 26 26 -
drivers/drv_sgi.c
diff --recursive --unified libmikmod-3.1.11/drivers/drv_sgi.c libmikmod-3.1.11-a/drivers/drv_sgi.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: drv_sgi.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: drv_sgi.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Driver for output on SGI audio system (needs libaudio from the dmedia 26 26 package). -
drivers/drv_stdout.c
diff --recursive --unified libmikmod-3.1.11/drivers/drv_stdout.c libmikmod-3.1.11-a/drivers/drv_stdout.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: drv_stdout.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: drv_stdout.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Output data to stdout 26 26 -
drivers/drv_sun.c
diff --recursive --unified libmikmod-3.1.11/drivers/drv_sun.c libmikmod-3.1.11-a/drivers/drv_sun.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: drv_sun.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: drv_sun.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Driver for output on the Sun audio device (/dev/audio). 26 26 Also works under NetBSD and OpenBSD -
drivers/drv_ultra.c
diff --recursive --unified libmikmod-3.1.11/drivers/drv_ultra.c libmikmod-3.1.11-a/drivers/drv_ultra.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: drv_ultra.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: drv_ultra.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Driver for the Linux Ultrasound driver 26 26 -
drivers/drv_wav.c
diff --recursive --unified libmikmod-3.1.11/drivers/drv_wav.c libmikmod-3.1.11-a/drivers/drv_wav.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: drv_wav.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: drv_wav.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Driver for output to a file called MUSIC.WAV 26 26 -
drivers/drv_win.c
diff --recursive --unified libmikmod-3.1.11/drivers/drv_win.c libmikmod-3.1.11-a/drivers/drv_win.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: drv_win.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: drv_win.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Driver for output on win32 platforms using the multimedia API 26 26 -
include/mikmod.h.in
diff --recursive --unified libmikmod-3.1.11/include/mikmod.h.in libmikmod-3.1.11-a/include/mikmod.h.in
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: mikmod.h.in,v 1. 1.1.1 2004/01/21 01:36:35 raph Exp $23 $Id: mikmod.h.in,v 1.2 2004/06/01 16:43:45 raph Exp $ 24 24 25 25 MikMod sound library include file 26 26 … … 85 85 86 86 @DOES_NOT_HAVE_SIGNED@ 87 87 88 #if defined(__arch64__) || defined(__alpha) 88 #if defined(__arch64__) || defined(__alpha) || defined(__x86_64) 89 89 /* 64 bit architectures */ 90 90 91 91 typedef signed char SBYTE; /* 1 byte, signed */ -
include/mikmod_internals.h
diff --recursive --unified libmikmod-3.1.11/include/mikmod_internals.h libmikmod-3.1.11-a/include/mikmod_internals.h
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: mikmod_internals.h,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: mikmod_internals.h,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 MikMod sound library internal definitions 26 26 -
libmikmod-3.1.
diff --recursive --unified libmikmod-3.1.11/libmikmod.m4 libmikmod-3.1.11-a/libmikmod.m4
old new 8 8 dnl Test for libmikmod, and define LIBMIKMOD_CFLAGS, LIBMIKMOD_LIBS and 9 9 dnl LIBMIKMOD_LDADD 10 10 dnl 11 AC_DEFUN( AM_PATH_LIBMIKMOD,11 AC_DEFUN([AM_PATH_LIBMIKMOD], 12 12 [dnl 13 13 dnl Get the cflags and libraries from the libmikmod-config script 14 14 dnl -
loaders/load_669.c
diff --recursive --unified libmikmod-3.1.11/loaders/load_669.c libmikmod-3.1.11-a/loaders/load_669.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: load_669.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: load_669.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Composer 669 module loader 26 26 -
loaders/load_amf.c
diff --recursive --unified libmikmod-3.1.11/loaders/load_amf.c libmikmod-3.1.11-a/loaders/load_amf.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: load_amf.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: load_amf.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 DMP Advanced Module Format loader 26 26 -
loaders/load_dsm.c
diff --recursive --unified libmikmod-3.1.11/loaders/load_dsm.c libmikmod-3.1.11-a/loaders/load_dsm.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: load_dsm.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: load_dsm.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 DSIK internal format (DSM) module loader 26 26 -
loaders/load_far.c
diff --recursive --unified libmikmod-3.1.11/loaders/load_far.c libmikmod-3.1.11-a/loaders/load_far.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: load_far.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: load_far.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Farandole (FAR) module loader 26 26 -
loaders/load_gdm.c
diff --recursive --unified libmikmod-3.1.11/loaders/load_gdm.c libmikmod-3.1.11-a/loaders/load_gdm.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: load_gdm.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: load_gdm.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 General DigiMusic (GDM) module loader 26 26 -
loaders/load_imf.c
diff --recursive --unified libmikmod-3.1.11/loaders/load_imf.c libmikmod-3.1.11-a/loaders/load_imf.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: load_imf.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: load_imf.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Imago Orpheus (IMF) module loader 26 26 -
loaders/load_it.c
diff --recursive --unified libmikmod-3.1.11/loaders/load_it.c libmikmod-3.1.11-a/loaders/load_it.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: load_it.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: load_it.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Impulse tracker (IT) module loader 26 26 -
loaders/load_m15.c
diff --recursive --unified libmikmod-3.1.11/loaders/load_m15.c libmikmod-3.1.11-a/loaders/load_m15.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: load_m15.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: load_m15.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 15 instrument MOD loader 26 26 Also supports Ultimate Sound Tracker (old M15 format) -
loaders/load_med.c
diff --recursive --unified libmikmod-3.1.11/loaders/load_med.c libmikmod-3.1.11-a/loaders/load_med.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: load_med.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: load_med.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Amiga MED module loader 26 26 -
loaders/load_mod.c
diff --recursive --unified libmikmod-3.1.11/loaders/load_mod.c libmikmod-3.1.11-a/loaders/load_mod.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: load_mod.c,v 1. 2 2004/01/21 13:33:11raph Exp $23 $Id: load_mod.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Generic MOD loader (Protracker, StarTracker, FastTracker, etc) 26 26 -
loaders/load_mtm.c
diff --recursive --unified libmikmod-3.1.11/loaders/load_mtm.c libmikmod-3.1.11-a/loaders/load_mtm.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: load_mtm.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: load_mtm.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 MTM module loader 26 26 -
loaders/load_okt.c
diff --recursive --unified libmikmod-3.1.11/loaders/load_okt.c libmikmod-3.1.11-a/loaders/load_okt.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: load_okt.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: load_okt.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Oktalyzer (OKT) module loader 26 26 -
loaders/load_s3m.c
diff --recursive --unified libmikmod-3.1.11/loaders/load_s3m.c libmikmod-3.1.11-a/loaders/load_s3m.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: load_s3m.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: load_s3m.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Screamtracker (S3M) module loader 26 26 -
loaders/load_stm.c
diff --recursive --unified libmikmod-3.1.11/loaders/load_stm.c libmikmod-3.1.11-a/loaders/load_stm.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: load_stm.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: load_stm.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Screamtracker 2 (STM) module loader 26 26 -
loaders/load_stx.c
diff --recursive --unified libmikmod-3.1.11/loaders/load_stx.c libmikmod-3.1.11-a/loaders/load_stx.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: load_stx.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: load_stx.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 STMIK 0.2 (STX) module loader 26 26 -
loaders/load_ult.c
diff --recursive --unified libmikmod-3.1.11/loaders/load_ult.c libmikmod-3.1.11-a/loaders/load_ult.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: load_ult.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: load_ult.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Ultratracker (ULT) module loader 26 26 -
loaders/load_uni.c
diff --recursive --unified libmikmod-3.1.11/loaders/load_uni.c libmikmod-3.1.11-a/loaders/load_uni.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: load_uni.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: load_uni.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 UNIMOD (libmikmod's and APlayer's internal module format) loader 26 26 -
loaders/load_xm.c
diff --recursive --unified libmikmod-3.1.11/loaders/load_xm.c libmikmod-3.1.11-a/loaders/load_xm.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: load_xm.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: load_xm.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Fasttracker (XM) module loader 26 26 -
macintosh/mikmod.h
diff --recursive --unified libmikmod-3.1.11/macintosh/mikmod.h libmikmod-3.1.11-a/macintosh/mikmod.h
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: mikmod.h,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: mikmod.h,v 1.1.1.1 2004/06/01 12:16:18 raph Exp $ 24 24 25 25 MikMod sound library include file 26 26 -
mkinstalldirs
diff --recursive --unified libmikmod-3.1.11/mkinstalldirs libmikmod-3.1.11-a/mkinstalldirs
old new 4 4 # Created: 1993-05-16 5 5 # Public domain 6 6 7 # $Id: mkinstalldirs,v 1.1.1.1 2004/0 1/21 01:36:34raph Exp $7 # $Id: mkinstalldirs,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 8 8 9 9 errstatus=0 10 10 -
mmio/mmalloc.c
diff --recursive --unified libmikmod-3.1.11/mmio/mmalloc.c libmikmod-3.1.11-a/mmio/mmalloc.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: mmalloc.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: mmalloc.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Dynamic memory routines 26 26 -
mmio/mmerror.c
diff --recursive --unified libmikmod-3.1.11/mmio/mmerror.c libmikmod-3.1.11-a/mmio/mmerror.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: mmerror.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: mmerror.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Error handling functions. 26 26 Register an error handler with _mm_RegisterErrorHandler() and you're all set. -
libmikmod-3.1.
diff --recursive --unified libmikmod-3.1.11/mmio/mmio.c libmikmod-3.1.11-a/mmio/mmio.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: mmio.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: mmio.c,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 Portable file I/O routines 26 26 -
os2/configure.cmd
diff --recursive --unified libmikmod-3.1.11/os2/configure.cmd libmikmod-3.1.11-a/os2/configure.cmd
old new 22 22 23 23 /*============================================================================== 24 24 25 $Id: configure.cmd,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $25 $Id: configure.cmd,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 26 26 27 27 Configuration script for libmikmod under OS/2 28 28 -
playercode/mdreg.c
diff --recursive --unified libmikmod-3.1.11/playercode/mdreg.c libmikmod-3.1.11-a/playercode/mdreg.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: mdreg.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: mdreg.c,v 1.1.1.1 2004/06/01 12:16:18 raph Exp $ 24 24 25 25 Routine for registering all drivers in libmikmod for the current platform. 26 26 -
playercode/mdriver.c
diff --recursive --unified libmikmod-3.1.11/playercode/mdriver.c libmikmod-3.1.11-a/playercode/mdriver.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: mdriver.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: mdriver.c,v 1.1.1.1 2004/06/01 12:16:18 raph Exp $ 24 24 25 25 These routines are used to access the available soundcard drivers. 26 26 -
playercode/mdulaw.c
diff --recursive --unified libmikmod-3.1.11/playercode/mdulaw.c libmikmod-3.1.11-a/playercode/mdulaw.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: mdulaw.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: mdulaw.c,v 1.1.1.1 2004/06/01 12:16:18 raph Exp $ 24 24 25 25 Mu-law routines 26 26 -
playercode/mloader.c
diff --recursive --unified libmikmod-3.1.11/playercode/mloader.c libmikmod-3.1.11-a/playercode/mloader.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: mloader.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: mloader.c,v 1.1.1.1 2004/06/01 12:16:18 raph Exp $ 24 24 25 25 These routines are used to access the available module loaders 26 26 -
playercode/mlreg.c
diff --recursive --unified libmikmod-3.1.11/playercode/mlreg.c libmikmod-3.1.11-a/playercode/mlreg.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: mlreg.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: mlreg.c,v 1.1.1.1 2004/06/01 12:16:18 raph Exp $ 24 24 25 25 Routine for registering all loaders in libmikmod for the current platform. 26 26 -
playercode/mlutil.c
diff --recursive --unified libmikmod-3.1.11/playercode/mlutil.c libmikmod-3.1.11-a/playercode/mlutil.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: mlutil.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: mlutil.c,v 1.1.1.1 2004/06/01 12:16:18 raph Exp $ 24 24 25 25 Utility functions for the module loader 26 26 -
playercode/mplayer.c
diff --recursive --unified libmikmod-3.1.11/playercode/mplayer.c libmikmod-3.1.11-a/playercode/mplayer.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: mplayer.c,v 1. 2 2004/01/21 01:41:55raph Exp $23 $Id: mplayer.c,v 1.1.1.1 2004/06/01 12:16:18 raph Exp $ 24 24 25 25 The Protracker Player Driver 26 26 -
playercode/munitrk.c
diff --recursive --unified libmikmod-3.1.11/playercode/munitrk.c libmikmod-3.1.11-a/playercode/munitrk.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: munitrk.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: munitrk.c,v 1.1.1.1 2004/06/01 12:16:18 raph Exp $ 24 24 25 25 All routines dealing with the manipulation of UNITRK streams 26 26 -
playercode/mwav.c
diff --recursive --unified libmikmod-3.1.11/playercode/mwav.c libmikmod-3.1.11-a/playercode/mwav.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: mwav.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: mwav.c,v 1.1.1.1 2004/06/01 12:16:18 raph Exp $ 24 24 25 25 WAV sample loader 26 26 -
playercode/npertab.c
diff --recursive --unified libmikmod-3.1.11/playercode/npertab.c libmikmod-3.1.11-a/playercode/npertab.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: npertab.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: npertab.c,v 1.1.1.1 2004/06/01 12:16:18 raph Exp $ 24 24 25 25 MOD format period table. Used by both the MOD and M15 (15-inst mod) Loaders. 26 26 -
playercode/sloader.c
diff --recursive --unified libmikmod-3.1.11/playercode/sloader.c libmikmod-3.1.11-a/playercode/sloader.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: sloader.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: sloader.c,v 1.1.1.1 2004/06/01 12:16:18 raph Exp $ 24 24 25 25 Routines for loading samples. The sample loader utilizes the routines 26 26 provided by the "registered" sample loader. -
playercode/virtch.c
diff --recursive --unified libmikmod-3.1.11/playercode/virtch.c libmikmod-3.1.11-a/playercode/virtch.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: virtch.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: virtch.c,v 1.1.1.1 2004/06/01 12:16:18 raph Exp $ 24 24 25 25 Sample mixing routines, using a 32 bits mixing buffer. 26 26 -
playercode/virtch2.c
diff --recursive --unified libmikmod-3.1.11/playercode/virtch2.c libmikmod-3.1.11-a/playercode/virtch2.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: virtch2.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: virtch2.c,v 1.1.1.1 2004/06/01 12:16:18 raph Exp $ 24 24 25 25 High-quality sample mixing routines, using a 32 bits mixing buffer, 26 26 interpolation, and sample smoothing to improve sound quality and remove -
playercode/virtch_common.c
diff --recursive --unified libmikmod-3.1.11/playercode/virtch_common.c libmikmod-3.1.11-a/playercode/virtch_common.c
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: virtch_common.c,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: virtch_common.c,v 1.1.1.1 2004/06/01 12:16:18 raph Exp $ 24 24 25 25 Common source parts between the two software mixers. 26 26 This file is probably the ugliest part of libmikmod... -
win32/mikmod_build.h
diff --recursive --unified libmikmod-3.1.11/win32/mikmod_build.h libmikmod-3.1.11-a/win32/mikmod_build.h
old new 20 20 21 21 /*============================================================================== 22 22 23 $Id: mikmod_build.h,v 1.1.1.1 2004/0 1/21 01:36:35raph Exp $23 $Id: mikmod_build.h,v 1.1.1.1 2004/06/01 12:16:17 raph Exp $ 24 24 25 25 MikMod sound library include file 26 26
Note:
See TracBrowser
for help on using the repository browser.