/* Copyright (C) 1991-1994,96,97,98,99,2000,2001 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. The GNU C Library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with the GNU C Library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ #ifndef _SYS_TIME_H #define _SYS_TIME_H 1 #include #include #define __need_time_t #include #define __need_timeval #include #include #ifndef __suseconds_t_defined typedef __suseconds_t suseconds_t; # define __suseconds_t_defined #endif __BEGIN_DECLS #ifdef __USE_GNU /* Macros for converting between `struct timeval' and `struct timespec'. */ # define TIMEVAL_TO_TIMESPEC(tv, ts) { \ (ts)->tv_sec = (tv)->tv_sec; \ (ts)->tv_nsec = (tv)->tv_usec * 1000; \ } # define TIMESPEC_TO_TIMEVAL(tv, ts) { \ (tv)->tv_sec = (ts)->tv_sec; \ (tv)->tv_usec = (ts)->tv_nsec / 1000; \ } #endif #ifdef __USE_BSD /* Structure crudely representing a timezone. This is obsolete and should never be used. */ struct timezone { int tz_minuteswest; /* Minutes west of GMT. */ int tz_dsttime; /* Nonzero if DST is ever in effect. */ }; typedef struct timezone *__restrict __timezone_ptr_t; #else typedef void *__restrict __timezone_ptr_t; #endif /* Get the current time of day and timezone information, putting it into *TV and *TZ. If TZ is NULL, *TZ is not filled. Returns 0 on success, -1 on errors. NOTE: This form of timezone information is obsolete. Use the functions and variables declared in instead. */ extern int gettimeofday (struct timeval *__restrict __tv, __timezone_ptr_t __tz) __THROW; #ifdef __USE_BSD /* Set the current time of day and timezone information. This call is restricted to the super-user. */ extern int settimeofday (__const struct timeval *__tv, __const struct timezone *__tz) __THROW; /* Adjust the current time of day by the amount in DELTA. If OLDDELTA is not NULL, it is filled in with the amount of time adjustment remaining to be done from the last `adjtime' call. This call is restricted to the super-user. */ extern int adjtime (__const struct timeval *__delta, struct timeval *__olddelta) __THROW; #endif /* Values for the first argument to `getitimer' and `setitimer'. */ enum __itimer_which { /* Timers run in real time. */ ITIMER_REAL = 0, #define ITIMER_REAL ITIMER_REAL /* Timers run only when the process is executing. */ ITIMER_VIRTUAL = 1, #define ITIMER_VIRTUAL ITIMER_VIRTUAL /* Timers run when the process is executing and when the system is executing on behalf of the process. */ ITIMER_PROF = 2 #define ITIMER_PROF ITIMER_PROF }; /* Type of the second argument to `getitimer' and the second and third arguments `setitimer'. */ struct itimerval { /* Value to put into `it_value' when the timer expires. */ struct timeval it_interval; /* Time to the next timer expiration. */ struct timeval it_value; }; #if defined __USE_GNU && !defined __cplusplus /* Use the nicer parameter type only in GNU mode and not for C++ since the strict C++ rules prevent the automatic promotion. */ typedef enum __itimer_which __itimer_which_t; #else typedef int __itimer_which_t; #endif /* Set *VALUE to the current setting of timer WHICH. Return 0 on success, -1 on errors. */ extern int getitimer (__itimer_which_t __which, struct itimerval *__value) __THROW; /* Set the timer WHICH to *NEW. If OLD is not NULL, set *OLD to the old value of timer WHICH. Returns 0 on success, -1 on errors. */ extern int setitimer (__itimer_which_t __which, __const struct itimerval *__restrict __new, struct itimerval *__restrict __old) __THROW; /* Change the access time of FILE to TVP[0] and the modification time of FILE to TVP[1]. */ extern int utimes (__const char *__file, __const struct timeval __tvp[2]) __THROW; #ifdef __USE_BSD /* Convenience macros for operations on timevals. NOTE: `timercmp' does not work for >= or <=. */ # define timerisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec) # define timerclear(tvp) ((tvp)->tv_sec = (tvp)->tv_usec = 0) # define timercmp(a, b, CMP) \ (((a)->tv_sec == (b)->tv_sec) ? \ ((a)->tv_usec CMP (b)->tv_usec) : \ ((a)->tv_sec CMP (b)->tv_sec)) # define timeradd(a, b, result) \ do { \ (result)->tv_sec = (a)->tv_sec + (b)->tv_sec; \ (result)->tv_usec = (a)->tv_usec + (b)->tv_usec; \ if ((result)->tv_usec >= 1000000) \ { \ ++(result)->tv_sec; \ (result)->tv_usec -= 1000000; \ } \ } while (0) # define timersub(a, b, result) \ do { \ (result)->tv_sec = (a)->tv_sec - (b)->tv_sec; \ (result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \ if ((result)->tv_usec < 0) { \ --(result)->tv_sec; \ (result)->tv_usec += 1000000; \ } \ } while (0) #endif /* BSD */ __END_DECLS #endif /* sys/time.h */ ectFB/Makefile?id=3b76e79f14e279a6526809e630e45e4f760d77de'>package/DirectFB/Makefile55
-rw-r--r--package/DirectFB/files/DirectFB.conffiles1
-rw-r--r--package/DirectFB/files/directfbrc4
-rw-r--r--package/MesaLib/Makefile42
-rw-r--r--package/MesaLib/patches/000-mesalib-xdemos.patch14774
-rw-r--r--package/MesaLib/patches/patch-include_GL_internal_sarea_h12
-rw-r--r--package/adkinstall/Makefile9
-rw-r--r--package/adkinstall/src/adkinstall155
-rw-r--r--package/aircrack-ng/Makefile4
-rw-r--r--package/alix-switch/Makefile35
-rw-r--r--package/alix-switch/files/alix-switch19
-rw-r--r--package/alix-switch/files/alix-switch.init27
-rw-r--r--package/alix-switch/files/alix-switch.postinst3
-rw-r--r--package/alix-switch/src/alix-switchd.c108
-rw-r--r--package/alsa-utils/Makefile17
-rw-r--r--package/apr-util/Makefile10
-rw-r--r--package/apr-util/patches/patch-uri_Makefile_in19
-rw-r--r--package/apr-util/patches/uri_delim.patch21
-rw-r--r--package/apr/Makefile27
-rw-r--r--package/apr/patches/patch-include_apr_want_h16
-rw-r--r--package/asterisk/Makefile12
-rw-r--r--package/asterisk/patches/patch-Makefile13
-rw-r--r--package/asterisk/patches/patch-apps_app_followme_c26
-rw-r--r--package/b43-firmware/Makefile26
-rw-r--r--package/base-files/Makefile18
-rw-r--r--package/base-files/src/etc/ipkg.conf2
-rwxr-xr-xpackage/base-files/src/etc/network/if-pre-up.d/04-wireless24
-rw-r--r--package/base-files/src/etc/profile1
-rw-r--r--package/base-files/src/etc/shadow3
-rwxr-xr-xpackage/base-files/src/init3
-rwxr-xr-xpackage/base-files/src/sbin/adkupdate3
-rw-r--r--package/busybox/Makefile18
-rw-r--r--package/busybox/config/archival/Config.in1
-rw-r--r--package/busybox/config/editors/Config.in1
-rw-r--r--package/busybox/files/busybox.config665
-rw-r--r--package/busybox/files/crond.init2
-rw-r--r--package/busybox/patches/001-ipkg.patch222
-rw-r--r--package/cfgfs/Makefile2
-rw-r--r--package/collectd/Makefile4
-rw-r--r--package/collectd/patches/patch-configure56
-rw-r--r--package/collectd/patches/patch-src_libcollectdclient_Makefile_in6
-rw-r--r--package/conntrack-tools/Makefile2
-rw-r--r--package/coreutils/Makefile27
-rw-r--r--package/cpio/Makefile4
-rw-r--r--package/cpio/patches/patch-src_filetypes_h8
-rw-r--r--package/curl/Makefile4
-rw-r--r--package/davfs2/Makefile18
-rw-r--r--package/davfs2/patches/patch-src_cache_c11
-rw-r--r--package/davfs2/patches/patch-src_dav_coda2_c11
-rw-r--r--package/davfs2/patches/patch-src_dav_coda3_c11
-rw-r--r--package/davfs2/patches/patch-src_dav_fuse5_c11
-rw-r--r--package/davfs2/patches/patch-src_dav_fuse7_c11
-rw-r--r--package/davfs2/patches/patch-src_kernel_interface_c31
-rw-r--r--package/davfs2/patches/patch-src_mount_davfs_c62
-rw-r--r--package/davfs2/patches/patch-src_umount_davfs_c11
-rw-r--r--package/davfs2/patches/patch-src_webdav_c62
-rw-r--r--package/dillo/Makefile31
-rw-r--r--package/dropbear/Makefile8
-rw-r--r--package/e2fsprogs/Makefile6
-rw-r--r--package/fetchmail/Makefile2
-rw-r--r--package/ffmpeg/Makefile8
-rw-r--r--package/ffmpeg/patches/patch-configure63
-rw-r--r--package/firefox/Makefile17
-rw-r--r--package/firefox/patches/patch-content_media_nsAudioStream_cpp11
-rw-r--r--package/fltk/Makefile27
-rw-r--r--package/fltk/patches/patch-makeinclude_in11
-rw-r--r--package/fltk/patches/patch-makeinclude_in.orig11
-rw-r--r--package/fluxbox/Makefile40
-rw-r--r--package/font-misc-misc/Makefile2
-rw-r--r--package/font-misc-misc/patches/patch-configure11
-rw-r--r--package/font-util/Makefile12
-rw-r--r--package/freeglut/Makefile23
-rw-r--r--package/git/Makefile4
-rw-r--r--package/gpm/files/gpm.init28
-rw-r--r--package/gpm/files/gpm.postinst4
-rw-r--r--package/grub-bin/Makefile12
-rw-r--r--package/grub/Makefile9
-rw-r--r--package/grub/patches/patch-conf_common_mk11
-rw-r--r--package/grub/patches/patch-include_grub_i18n_h11
-rw-r--r--package/grub/patches/patch-include_grub_misc_h6
-rw-r--r--package/grub/patches/patch-kern_misc_c26
-rw-r--r--package/grub/patches/patch-kern_misc_c.orig26
-rw-r--r--package/grub/patches/patch-lib_libgcrypt-grub_cipher_camellia_c29
-rw-r--r--package/grub/patches/patch-lib_libgcrypt-grub_cipher_camellia_c.orig21
-rw-r--r--package/grub/patches/patch-lib_libgcrypt-grub_cipher_des_c11
-rw-r--r--package/grub/patches/patch-lib_libgcrypt-grub_cipher_dsa_c29
-rw-r--r--package/grub/patches/patch-lib_libgcrypt-grub_cipher_elgamal_c20
-rw-r--r--package/grub/patches/patch-lib_libgcrypt-grub_cipher_md4_c11
-rw-r--r--package/grub/patches/patch-lib_libgcrypt-grub_cipher_md5_c11
-rw-r--r--package/grub/patches/patch-lib_libgcrypt-grub_cipher_primegen_c38
-rw-r--r--package/grub/patches/patch-lib_libgcrypt-grub_cipher_rijndael_c53
-rw-r--r--package/grub/patches/patch-lib_libgcrypt-grub_cipher_rmd160_c11
-rw-r--r--package/grub/patches/patch-lib_libgcrypt-grub_cipher_serpent_c20
-rw-r--r--package/grub/patches/patch-lib_libgcrypt-grub_cipher_sha1_c11
-rw-r--r--package/grub/patches/patch-lib_libgcrypt-grub_cipher_sha256_c11
-rw-r--r--package/grub/patches/patch-lib_libgcrypt-grub_cipher_sha512_c11
-rw-r--r--package/grub/patches/patch-lib_libgcrypt-grub_cipher_tiger_c11
-rw-r--r--package/grub/patches/patch-lib_libgcrypt-grub_cipher_twofish_c20
-rw-r--r--package/grub/patches/patch-lib_libgcrypt-grub_cipher_whirlpool_c11
-rw-r--r--package/grub/patches/patch-util_grub-install_in11
-rw-r--r--package/grub/patches/patch-util_grub-mkconfig_lib_in11
-rw-r--r--package/grub/patches/patch-util_grub_d_10_linux_in20
-rw-r--r--package/gtk+/Makefile2
-rw-r--r--package/hostapd/Makefile4
-rw-r--r--package/igmpproxy/Makefile2
-rw-r--r--package/igmpproxy/files/igmpproxy.init2
-rw-r--r--package/imlib2/Makefile29
-rw-r--r--package/iproute2/Makefile8
-rw-r--r--package/iptables/Makefile4
-rw-r--r--package/irssi/Makefile2
-rw-r--r--package/kismet/Makefile1
-rw-r--r--package/kismet/files/kismet-client.conffiles4
-rw-r--r--package/kismet/files/kismet-drone.conffiles1
-rw-r--r--package/kismet/files/kismet-server.conffiles3
-rw-r--r--package/krb5/Makefile8
-rw-r--r--package/krb5/patches/patch-src_Makefile_in10
-rw-r--r--package/krb5/patches/patch-src_include_osconf_hin50
-rw-r--r--package/krb5/patches/patch-src_util_profile_prof_int_h11
-rw-r--r--package/libXScrnSaver/Makefile27
-rw-r--r--package/libXaw/Makefile2
-rw-r--r--package/libXdamage/Makefile2
-rw-r--r--package/libXfixes/Makefile4
-rw-r--r--package/libXi/Makefile27
-rw-r--r--package/libXxf86vm/Makefile4
-rw-r--r--package/libdrm/patches/patch-include_drm_drm_sarea_h12
-rw-r--r--package/libdrm/patches/patch-xf86drm_h42
-rw-r--r--package/libgpg-error/Makefile6
-rw-r--r--package/libnetfilter_conntrack/Makefile2
-rw-r--r--package/libnetfilter_log/Makefile2
-rw-r--r--package/libnetfilter_queue/Makefile2
-rw-r--r--package/libpng/Makefile4
-rw-r--r--package/libstdcxx/Makefile8
-rw-r--r--package/libthread_db/Makefile4
-rw-r--r--package/libtiff/Makefile4
-rw-r--r--package/libtool/Makefile6
-rw-r--r--package/mpd/Makefile35
-rw-r--r--package/mpd/patches/autotool.patch9293
-rw-r--r--package/mpd/patches/patch-configure11
-rw-r--r--package/mpg123/Makefile7
-rw-r--r--package/mplayer/Makefile41
-rw-r--r--package/mplayer/patches/patch-configure18
-rw-r--r--package/mplayer/patches/patch-libao2_ao_alsa_c11
-rw-r--r--package/mplayer/patches/patch-loader_win32_c10
-rw-r--r--package/mutt/patches/patch-Makefile_in11
-rw-r--r--package/mutt/patches/patch-mutt_ssl_c20
-rw-r--r--package/nano/Makefile7
-rw-r--r--package/neon/Makefile12
-rw-r--r--package/nfs-utils/Makefile11
-rw-r--r--package/nut/Makefile6
-rw-r--r--package/openldap/Makefile4
-rw-r--r--package/openntpd/patches/patch-ntpd_c27
-rw-r--r--package/openntpd/patches/patch-ntpd_h12
-rw-r--r--package/openntpd/patches/patch-server_c40
-rw-r--r--package/openssh/Makefile8
-rw-r--r--package/openssl/Makefile11
-rw-r--r--package/openssl/patches/ocf.patch1197
-rw-r--r--package/openssl/patches/patch-Configure13
-rw-r--r--package/openssl/patches/patch-Makefile_shared19
-rw-r--r--package/openssl/patches/patch-apps_speed_c16
-rw-r--r--package/openssl/patches/patch-util_shlib_wrap_sh17
-rw-r--r--package/openswan/Makefile4
-rw-r--r--package/openvpn/Makefile69
-rw-r--r--package/openvpn/files/openvpn.conffiles1
-rw-r--r--package/pcre/Makefile4
-rw-r--r--package/php/Makefile2
-rw-r--r--package/pkg-config/Makefile29
-rw-r--r--package/pkgmaker36
-rw-r--r--package/postgresql/Makefile11
-rw-r--r--package/postgresql/patches/patch-src_include_Makefile19
-rwxr-xr-xpackage/ppp/files/ppp.pre-up72
-rw-r--r--package/pptpd/Makefile2
-rw-r--r--package/pptpd/patches/patch-Makefile_in4
-rw-r--r--package/pptpd/patches/patch-ctrlpacket_c4
-rw-r--r--package/pptpd/patches/patch-plugins_Makefile11
-rw-r--r--package/qingy/Makefile40
-rw-r--r--package/qingy/files/post_GUI.sh10
-rw-r--r--package/qingy/files/pre_GUI.sh11
-rw-r--r--package/qingy/files/qingy.conffiles4
-rw-r--r--package/qingy/files/qingy.postinst12
-rw-r--r--package/qingy/files/settings90
-rw-r--r--package/qingy/files/welcomes1
-rw-r--r--package/ruby/Makefile7
-rw-r--r--package/ruby/patches/patch-Makefile_in10
-rw-r--r--package/ruby/patches/patch-common_mk11
-rw-r--r--package/ruby/patches/patch-ext_openssl_ossl_c29
-rw-r--r--package/ruby/patches/patch-ext_openssl_ossl_h19
-rw-r--r--package/ruby/patches/patch-ext_openssl_ossl_pkcs7_c12
-rw-r--r--package/rxvt-unicode/Makefile7
-rw-r--r--package/samba/Makefile6
-rw-r--r--package/samba/patches/patch-client_mount_cifs_c19
-rw-r--r--package/samba/patches/patch-source3_client_mtab_c10
-rw-r--r--package/samba/patches/patch-source3_configure196
-rw-r--r--package/samba/patches/patch-source3_registry_reg_perfcount_c6
-rw-r--r--package/scanlogd/files/scanlogd.postinst36
-rw-r--r--package/squid/Makefile27
-rw-r--r--package/squid/patches/autotool.patch239031
-rw-r--r--package/squid/patches/patch-include_squid_types_h26
-rw-r--r--package/squid/patches/patch-src_HttpHeaderTools_cc11
-rw-r--r--package/strace/Makefile4
-rw-r--r--package/strace/patches/patch-syscall_c13
-rw-r--r--package/subversion/Makefile6
-rw-r--r--package/tor/files/tor.postinst18
-rw-r--r--package/trafshow/Makefile2
-rw-r--r--package/twm/Makefile29
-rw-r--r--package/uclibc++/Makefile2
-rw-r--r--package/ulogd/Makefile2
-rw-r--r--package/ulogd/files/ulogd.conffiles1
-rw-r--r--package/util-linux-ng/Makefile10
-rw-r--r--package/uvd/Makefile31
-rw-r--r--package/uvd/files/uvd.init27
-rw-r--r--package/uvd/files/uvd.postinst3
-rw-r--r--package/uvd/src/uvd.c237
-rw-r--r--package/wget/Makefile4
-rw-r--r--package/wireless-tools/Makefile37
-rw-r--r--package/wpa_supplicant/Makefile21
-rw-r--r--package/wpa_supplicant/files/config5
-rw-r--r--package/xf86-video-siliconmotion/patches/xf86-video-siliconmotion-1.7.3-fix-loongson.patch182
-rw-r--r--package/xinit/Makefile29
-rw-r--r--package/xorg-server/Makefile14
-rw-r--r--package/xorg-server/patches/patch-fb_fb_h13
-rw-r--r--package/xorg-server/patches/patch-hw_xfree86_common_compiler_h55
-rw-r--r--package/xorg-server/patches/patch-hw_xfree86_os-support_linux_lnx_video_c72
-rw-r--r--package/xterm/Makefile30
-rw-r--r--package/xterm/patches/patch-Makefile_in22
-rw-r--r--package/xvinfo/Makefile26
226 files changed, 233190 insertions, 36324 deletions
diff --git a/package/Config.in b/package/Config.in
index 80717c15b..dd70babe0 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -16,6 +16,7 @@ config ADK_ENABLE_IPV6
exception proves the rule. ;)
menu "Basesystem"
+source "package/alix-switch/Config.in"
source "package/adkinstall/Config.in"
source "package/base-files/Config.in"
source "package/base-files/Config.in.manual"
@@ -29,6 +30,7 @@ source "package/libc/Config.in.manual"
source "package/grub/Config.in"
source "package/grub-bin/Config.in"
source "package/rpm/Config.in"
+source "package/uvd/Config.in"
endmenu
menu "Bluetooth"
@@ -174,13 +176,19 @@ source "package/cxxtools/Config.in"
source "package/dbus/Config.in"
source "package/dbus-glib/Config.in"
source "package/dbus-glib/Config.in.lib"
+source "package/DirectFB/Config.in"
+source "package/DirectFB/Config.in.lib"
source "package/e2fsprogs/Config.in.lib"
+source "package/fltk/Config.in"
+source "package/fltk/Config.in.lib"
source "package/fontconfig/Config.in"
+source "package/freeglut/Config.in"
source "package/gettext/Config.in"
source "package/glib/Config.in"
source "package/gtk+/Config.in"
source "package/heimdal/Config.in.lib"
source "package/id3lib/Config.in"
+source "package/imlib2/Config.in"
source "package/libao/Config.in"
source "package/libao/Config.in.lib"
source "package/libaudiofile/Config.in"
@@ -536,6 +544,7 @@ source "package/make/Config.in"
source "package/microperl/Config.in"
source "package/perl/Config.in"
source "package/php/Config.in"
+source "package/pkg-config/Config.in"
source "package/python/Config.in"
source "package/python2/Config.in"
source "package/ruby/Config.in"
@@ -572,6 +581,7 @@ endmenu
menu "Utilities"
source "package/bc/Config.in"
source "package/comgt/Config.in"
+source "package/coreutils/Config.in"
source "package/cpufrequtils/Config.in"
source "package/fbset/Config.in"
source "package/file/Config.in"
@@ -593,6 +603,7 @@ endmenu
menu "Wireless"
source "package/aircrack-ng/Config.in"
+source "package/b43-firmware/Config.in"
source "package/chillispot/Config.in"
source "package/hostapd/Config.in"
source "package/iw/Config.in"
@@ -601,6 +612,7 @@ source "package/olsrd/Config.in"
source "package/p54-firmware/Config.in"
source "package/rt61-firmware/Config.in"
source "package/wifidog/Config.in"
+source "package/wireless-tools/Config.in"
source "package/wpa_supplicant/Config.in"
endmenu
@@ -617,12 +629,19 @@ source "package/xf86-input-evtouch/Config.in"
endmenu
menu "X applications"
+source "package/dillo/Config.in"
source "package/evilwm/Config.in"
source "package/firefox/Config.in"
+source "package/fluxbox/Config.in"
source "package/font-util/Config.in"
+source "package/qingy/Config.in"
source "package/rxvt-unicode/Config.in"
+source "package/twm/Config.in"
source "package/xauth/Config.in"
+source "package/xinit/Config.in"
source "package/xlsfonts/Config.in"
+source "package/xterm/Config.in"
+source "package/xvinfo/Config.in"
endmenu
menu "X fonts"
@@ -672,12 +691,16 @@ source "package/libXdamage/Config.in"
source "package/libXdamage/Config.in.lib"
source "package/libXfixes/Config.in"
source "package/libXfixes/Config.in.lib"
+source "package/libXi/Config.in"
+source "package/libXi/Config.in.lib"
source "package/libXmu/Config.in"
source "package/libXmu/Config.in.lib"
source "package/libXpm/Config.in"
source "package/libXpm/Config.in.lib"
source "package/libXrender/Config.in"
source "package/libXrender/Config.in.lib"
+source "package/libXScrnSaver/Config.in"
+source "package/libXScrnSaver/Config.in.lib"
source "package/libXt/Config.in"
source "package/libXt/Config.in.lib"
source "package/libXft/Config.in"
diff --git a/package/DirectFB/Makefile b/package/DirectFB/Makefile
new file mode 100644
index 000000000..35e57f24f
--- /dev/null
+++ b/package/DirectFB/Makefile
@@ -0,0 +1,55 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:= DirectFB
+PKG_VERSION:= 1.4.3
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 223e036da906ceb4bd44708026839ff1
+PKG_DESCR:= Thin library on top of the Linux framebuffer devices
+PKG_SECTION:= libs
+PKG_BUILDDEP:= libpng
+PKG_DEPENDS:= libpng
+PKG_URL:= http://www.directfb.org/
+PKG_SITES:= http://directfb.org/downloads/Core/DirectFB-1.4/
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,DIRECTFB,directfb,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+CONFIGURE_ARGS+= --with-inputdrivers=linuxinput,keyboard,ps2mouse \
+ --with-gfxdrivers=none \
+ --disable-osx
+
+# This is to overcome libtool fuckup - when building without,
+# libtool calls (the correct) ld directly without parameters,
+# which then chooses the wrong default emulation (which is
+# probably the real problem here). LDEMULATION overrides ld's
+# wrong choice.
+ifeq (${ADK_LINUX_MIPS64_LEMOTE},y)
+XAKE_FLAGS+= LDEMULATION=elf64ltsmip
+endif
+
+post-install:
+ ${INSTALL_DIR} ${IDIR_DIRECTFB}/etc
+ ${INSTALL_DATA} ./files/directfbrc ${IDIR_DIRECTFB}/etc/
+ $(INSTALL_DIR) $(IDIR_DIRECTFB)/usr/lib/directfb-1.4-0/{inputdrivers,systems,wm}
+ ${CP} $(WRKINST)/usr/lib/lib{direct,fusion}*.so* \
+ $(IDIR_DIRECTFB)/usr/lib/
+ ${CP} ${WRKINST}/usr/lib/directfb-1.4-0/inputdrivers/libdirectfb_linux_input.so \
+ ${IDIR_DIRECTFB}/usr/lib/directfb-1.4-0/inputdrivers/
+ ${CP} ${WRKINST}/usr/lib/directfb-1.4-0/systems/*.so \
+ ${IDIR_DIRECTFB}/usr/lib/directfb-1.4-0/systems/
+ ${CP} ${WRKINST}/usr/lib/directfb-1.4-0/wm/*.so \
+ ${IDIR_DIRECTFB}/usr/lib/directfb-1.4-0/wm/
+ $(INSTALL_DIR) $(IDIR_DIRECTFB)/usr/lib/directfb-1.4-0/interfaces/IDirectFB{Font,ImageProvider,VideoProvider}
+ ${CP} ${WRKINST}/usr/lib/directfb-1.4-0/interfaces/IDirectFBFont/*.so \
+ ${IDIR_DIRECTFB}/usr/lib/directfb-1.4-0/interfaces/IDirectFBFont/
+ ${CP} ${WRKINST}/usr/lib/directfb-1.4-0/interfaces/IDirectFBImageProvider/*.so \
+ ${IDIR_DIRECTFB}/usr/lib/directfb-1.4-0/interfaces/IDirectFBImageProvider/
+ ${CP} ${WRKINST}/usr/lib/directfb-1.4-0/interfaces/IDirectFBVideoProvider/*.so \
+ ${IDIR_DIRECTFB}/usr/lib/directfb-1.4-0/interfaces/IDirectFBVideoProvider/
+
+
+include ${TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/DirectFB/files/DirectFB.conffiles b/package/DirectFB/files/DirectFB.conffiles
new file mode 100644
index 000000000..d4d8e0024
--- /dev/null
+++ b/package/DirectFB/files/DirectFB.conffiles
@@ -0,0 +1 @@
+/etc/directfbrc
diff --git a/package/DirectFB/files/directfbrc b/package/DirectFB/files/directfbrc
new file mode 100644
index 000000000..c0e563e86
--- /dev/null
+++ b/package/DirectFB/files/directfbrc
@@ -0,0 +1,4 @@
+#mode=1024x600
+#depth=16
+mouse-protocol=IMPS/2
+mouse-source=/dev/psaux
diff --git a/package/MesaLib/Makefile b/package/MesaLib/Makefile
index d5ce04b77..caaa9552c 100644
--- a/package/MesaLib/Makefile
+++ b/package/MesaLib/Makefile
@@ -15,21 +15,40 @@ PKG_BUILDDEP+= dri2proto glproto expat
PKG_URL:= http://www.mesa3d.org/
PKG_SITES:= ftp://ftp.freedesktop.org/pub/mesa/7.8.1/
+PKG_DESCR_GLXINFO:= Display various GLX information
+PKG_SECT_GLXINFO:= x11
+PKG_DESCR_GLXGEARS:= Nice little OpenGL demo application
+PKG_SECT_GLXGEARS:= x11
+
WRKDIST= ${WRKDIR}/Mesa-${PKG_VERSION}
-PKG_TARGET_DEPENDS:= ibmx40
+PKG_TARGET_DEPENDS:= ibmx40 lemote
include $(TOPDIR)/mk/package.mk
$(eval $(call PKG_template,MESALIB,mesalib,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+$(eval $(call PKG_template,GLXINFO,glxinfo,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR_GLXINFO},${PKG_SECT_GLXINFO}))
+$(eval $(call PKG_template,GLXGEARS,glxgears,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR_GLXGEARS},${PKG_SECT_GLXGEARS}))
+
+ifeq (${ADK_LINUX_X86_IBMX40},y)
+DRI_DRIVERS:=i810
+endif
+
+# Lemote's SMI712 is not directly supported by Mesa,
+# and at least some SIS driver fails to build when
+# keeping the driver auto-selection intact.
+ifeq (${ADK_LINUX_MIPS64_LEMOTE},y)
+DRI_DRIVERS:=swrast
+endif
CONFIGURE_ARGS+= --disable-static \
--disable-gallium \
--disable-glw \
--with-driver=dri \
- --without-demos
+ --with-dri-drivers=${DRI_DRIVERS} \
+ --with-demos=xdemos
-XAKE_FLAGS+= APP_CC=${HOSTCC} HOST_CC=${HOSTCC}
+XAKE_FLAGS+= HOST_CC=${HOSTCC}
pre-configure:
(cd ${WRKBUILD}; rm -rf config.{cache,status}; \
@@ -38,17 +57,26 @@ pre-configure:
--disable-glw \
--disable-gallium \
--with-driver=xlib \
- --without-demos \
);
${MAKE} -C ${WRKBUILD}/src/glsl
${MAKE} -C ${WRKBUILD}/src/glsl/apps
- cp ${WRKBUILD}/src/glsl/apps/compile \
+ ${CP} ${WRKBUILD}/src/glsl/apps/compile \
${STAGING_TOOLS}/bin
${MAKE} -C ${WRKBUILD}/src/glsl clean
post-install:
- $(INSTALL_DIR) $(IDIR_MESALIB)/usr/lib
- $(INSTALL_BIN) $(WRKINST)/usr/lib/libGL*.so* \
+ $(INSTALL_DIR) $(IDIR_MESALIB)/usr/lib/dri
+ $(CP) $(WRKINST)/usr/lib/libGL*.so* \
$(IDIR_MESALIB)/usr/lib
+ifeq (${ADK_LINUX_MIPS64_LEMOTE},y)
+ ${CP} $(WRKINST)/usr/lib/dri/swrast_dri.so \
+ ${IDIR_MESALIB}/usr/lib/dri/
+endif
+ ${INSTALL_DIR} ${IDIR_GLXINFO}/usr/bin
+ ${INSTALL_BIN} ${WRKBUILD}/progs/xdemos/glxinfo \
+ ${IDIR_GLXINFO}/usr/bin/
+ ${INSTALL_DIR} ${IDIR_GLXGEARS}/usr/bin
+ ${INSTALL_BIN} ${WRKBUILD}/progs/xdemos/glxgears \
+ ${IDIR_GLXGEARS}/usr/bin/
include ${TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/MesaLib/patches/000-mesalib-xdemos.patch b/package/MesaLib/patches/000-mesalib-xdemos.patch
new file mode 100644
index 000000000..866e68c2e
--- /dev/null
+++ b/package/MesaLib/patches/000-mesalib-xdemos.patch
@@ -0,0 +1,14774 @@
+diff -Naurp Mesa-7.8.1/progs/xdemos/corender.c Mesa-7.8.1.patched/progs/xdemos/corender.c
+--- Mesa-7.8.1/progs/xdemos/corender.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/corender.c 2010-06-13 13:45:06.789793146 +0200
+@@ -0,0 +1,400 @@
++/**
++ * Example of cooperative rendering into one window by two processes.
++ * The first instance of the program creates the GLX window.
++ * The second instance of the program gets the window ID from the first
++ * and draws into it.
++ * Socket IPC is used for synchronization.
++ *
++ * Usage:
++ * 1. run 'corender &'
++ * 2. run 'corender 2' (any arg will do)
++ *
++ * Brian Paul
++ * 11 Oct 2007
++ */
++
++
++#include <GL/gl.h>
++#include <GL/glx.h>
++#include <assert.h>
++#include <math.h>
++#include <stdio.h>
++#include <stdlib.h>
++#include <X11/keysym.h>
++#include <unistd.h>
++#include "ipc.h"
++
++
++#ifndef M_PI
++#define M_PI 3.14159265358979323846
++#endif
++
++static int MyID = 0; /* 0 or 1 */
++static int WindowID = 0;
++static GLXContext Context = 0;
++static int Width = 700, Height = 350;
++static int Rot = 0;
++static int Sock = 0;
++
++static GLfloat Red[4] = {1.0, 0.2, 0.2, 1.0};
++static GLfloat Blue[4] = {0.2, 0.2, 1.0, 1.0};
++
++static int Sync = 1; /** synchronized rendering? */
++
++
++static void
++setup_ipc(void)
++{
++ int k, port = 10001;
++
++ if (MyID == 0) {
++ /* I'm the first one, wait for connection from second */
++ k = CreatePort(&port);
++ assert(k != -1);
++
++ printf("Waiting for connection from another 'corender'\n");
++ Sock = AcceptConnection(k);
++ assert(Sock != -1);
++
++ printf("Got connection, sending windowID\n");
++
++ /* send windowID */
++ SendData(Sock, &WindowID, sizeof(WindowID));
++ }
++ else {
++ /* I'm the second one, connect to first */
++ char hostname[1000];
++
++ MyHostName(hostname, 1000);
++ Sock = Connect(hostname, port);
++ assert(Sock != -1);
++
++ /* get windowID */
++ ReceiveData(Sock, &WindowID, sizeof(WindowID));
++ printf("Contacted first 'corender', getting WindowID\n");
++ }
++}
++
++
++
++/** from GLUT */
++static void
++doughnut(GLfloat r, GLfloat R, GLint nsides, GLint rings)
++{
++ int i, j;
++ GLfloat theta, phi, theta1;
++ GLfloat cosTheta, sinTheta;
++ GLfloat cosTheta1, sinTheta1;
++ GLfloat ringDelta, sideDelta;
++
++ ringDelta = 2.0 * M_PI / rings;
++ sideDelta = 2.0 * M_PI / nsides;
++
++ theta = 0.0;
++ cosTheta = 1.0;
++ sinTheta = 0.0;
++ for (i = rings - 1; i >= 0; i--) {
++ theta1 = theta + ringDelta;
++ cosTheta1 = cos(theta1);
++ sinTheta1 = sin(theta1);
++ glBegin(GL_QUAD_STRIP);
++ phi = 0.0;
++ for (j = nsides; j >= 0; j--) {
++ GLfloat cosPhi, sinPhi, dist;
++
++ phi += sideDelta;
++ cosPhi = cos(phi);
++ sinPhi = sin(phi);
++ dist = R + r * cosPhi;
++
++ glNormal3f(cosTheta1 * cosPhi, -sinTheta1 * cosPhi, sinPhi);
++ glVertex3f(cosTheta1 * dist, -sinTheta1 * dist, r * sinPhi);
++ glNormal3f(cosTheta * cosPhi, -sinTheta * cosPhi, sinPhi);
++ glVertex3f(cosTheta * dist, -sinTheta * dist, r * sinPhi);
++ }
++ glEnd();
++ theta = theta1;
++ cosTheta = cosTheta1;
++ sinTheta = sinTheta1;
++ }
++}
++
++
++static void
++redraw(Display *dpy)
++{
++ int dbg = 0;
++
++ glXMakeCurrent(dpy, WindowID, Context);
++ glEnable(GL_LIGHTING);
++ glEnable(GL_LIGHT0);
++ glEnable(GL_DEPTH_TEST);
++ glClearColor(0.5, 0.5, 0.5, 0.0);
++
++ if (MyID == 0) {
++ /* First process */
++
++ glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
++
++ glPushMatrix();
++ glTranslatef(-1, 0, 0);
++ glRotatef(Rot, 1, 0, 0);
++ glMaterialfv(GL_FRONT_AND_BACK, GL_AMBIENT_AND_DIFFUSE, Red);
++ doughnut(0.5, 2.0, 20, 30);
++ glPopMatrix();
++
++ glFinish();
++ if (!Sync) {
++ usleep(1000*10);
++ }
++
++ /* signal second process to render */
++ if (Sync) {
++ int code = 1;
++ if (dbg) printf("0: send signal\n");
++ SendData(Sock, &code, sizeof(code));
++ SendData(Sock, &Rot, sizeof(Rot));
++ }
++
++ /* wait for second process to finish rendering */
++ if (Sync) {
++ int code = 0;
++ if (dbg) printf("0: wait signal\n");
++ ReceiveData(Sock, &code, sizeof(code));
++ if (dbg) printf("0: got signal\n");
++ assert(code == 2);
++ }
++
++ }
++ else {
++ /* Second process */
++
++ /* wait for first process's signal for me to render */
++ if (Sync) {
++ int code = 0;
++ if (dbg) printf("1: wait signal\n");
++ ReceiveData(Sock, &code, sizeof(code));
++ ReceiveData(Sock, &Rot, sizeof(Rot));
++
++ if (dbg) printf("1: got signal\n");
++ assert(code == 1);
++ }
++
++ /* XXX this clear should not be here, but for some reason, it
++ * makes things _mostly_ work correctly w/ NVIDIA's driver.
++ * There's only occasional glitches.
++ * Without this glClear(), depth buffer for the second process
++ * is pretty much broken.
++ */
++ /* glClear(GL_DEPTH_BUFFER_BIT); */
++
++ glPushMatrix();
++ glTranslatef(1, 0, 0);
++ glRotatef(Rot + 90 , 1, 0, 0);
++ glMaterialfv(GL_FRONT_AND_BACK, GL_AMBIENT_AND_DIFFUSE, Blue);
++ doughnut(0.5, 2.0, 20, 30);
++ glPopMatrix();
++ glFinish();
++
++ glXSwapBuffers(dpy, WindowID);
++ usleep(1000*10);
++
++ /* signal first process that I'm done rendering */
++ if (Sync) {
++ int code = 2;
++ if (dbg) printf("1: send signal\n");
++ SendData(Sock, &code, sizeof(code));
++ }
++ }
++}
++
++
++static void
++resize(Display *dpy, int width, int height)
++{
++ float ar = (float) width / height;
++
++ glXMakeCurrent(dpy, WindowID, Context);
++
++ glViewport(0, 0, width, height);
++ glMatrixMode(GL_PROJECTION);
++ glLoadIdentity();
++ glFrustum(-ar, ar, 1.0, -1.0, 5.0, 200.0);
++ glMatrixMode(GL_MODELVIEW);
++ glLoadIdentity();
++ glTranslatef(0, 0, -15);
++
++ Width = width;
++ Height = height;
++}
++
++
++
++static void
++set_window_title(Display *dpy, Window win, const char *title)
++{
++ XSizeHints sizehints;
++ sizehints.flags = 0;
++ XSetStandardProperties(dpy, win, title, title,
++ None, (char **)NULL, 0, &sizehints);
++}
++
++
++static Window
++make_gl_window(Display *dpy, XVisualInfo *visinfo, int width, int height)
++{
++ int scrnum;
++ XSetWindowAttributes attr;
++ unsigned long mask;
++ Window root;
++ Window win;
++ int x = 0, y = 0;
++ char *name = NULL;
++
++ scrnum = DefaultScreen( dpy );
++ root = RootWindow( dpy, scrnum );
++
++ /* window attributes */
++ attr.background_pixel = 0;
++ attr.border_pixel = 0;
++ attr.colormap = XCreateColormap( dpy, root, visinfo->visual, AllocNone);
++ attr.event_mask = StructureNotifyMask | ExposureMask | KeyPressMask;
++ mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
++
++ win = XCreateWindow( dpy, root, x, y, width, height,
++ 0, visinfo->depth, InputOutput,
++ visinfo->visual, mask, &attr );
++
++ /* set hints and properties */
++ {
++ XSizeHints sizehints;
++ sizehints.x = x;
++ sizehints.y = y;
++ sizehints.width = width;
++ sizehints.height = height;
++ sizehints.flags = USSize | USPosition;
++ XSetNormalHints(dpy, win, &sizehints);
++ XSetStandardProperties(dpy, win, name, name,
++ None, (char **)NULL, 0, &sizehints);
++ }
++
++ return win;
++}
++
++
++static void
++set_event_mask(Display *dpy, Window win)
++{
++ XSetWindowAttributes attr;
++ attr.event_mask = StructureNotifyMask | ExposureMask | KeyPressMask;
++ XChangeWindowAttributes(dpy, win, CWEventMask, &attr);
++}
++
++
++static void
++event_loop(Display *dpy)
++{
++ while (1) {
++ while (XPending(dpy) > 0) {
++ XEvent event;
++ XNextEvent(dpy, &event);
++
++ switch (event.type) {
++ case Expose:
++ redraw(dpy);
++ break;
++ case ConfigureNotify:
++ resize(dpy, event.xconfigure.width, event.xconfigure.height);
++ break;
++ case KeyPress:
++ {
++ char buffer[10];
++ int r, code;
++ code = XLookupKeysym(&event.xkey, 0);
++ if (code == XK_Left) {
++ }
++ else {
++ r = XLookupString(&event.xkey, buffer, sizeof(buffer),
++ NULL, NULL);
++ if (buffer[0] == 27) {
++ exit(0);
++ }
++ }
++ }
++ default:
++ /* nothing */
++ ;
++ }
++ }
++
++ if (MyID == 0 || !Sync)
++ Rot += 1;
++ redraw(dpy);
++ }
++}
++
++
++static XVisualInfo *
++choose_visual(Display *dpy)
++{
++ int attribs[] = { GLX_RGBA,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DOUBLEBUFFER,
++ GLX_DEPTH_SIZE, 1,
++ None };
++ int scrnum = DefaultScreen( dpy );
++ return glXChooseVisual(dpy, scrnum, attribs);
++}
++
++
++static void
++parse_opts(int argc, char *argv[])
++{
++ if (argc > 1) {
++ MyID = 1;
++ }
++}
++
++
++int
++main( int argc, char *argv[] )
++{
++ Display *dpy;
++ XVisualInfo *visinfo;
++
++ parse_opts(argc, argv);
++
++ dpy = XOpenDisplay(NULL);
++
++ visinfo = choose_visual(dpy);
++
++ Context = glXCreateContext( dpy, visinfo, NULL, True );
++ if (!Context) {
++ printf("Error: glXCreateContext failed\n");
++ exit(1);
++ }
++
++ if (MyID == 0) {
++ WindowID = make_gl_window(dpy, visinfo, Width, Height);
++ set_window_title(dpy, WindowID, "corender");
++ XMapWindow(dpy, WindowID);
++ /*printf("WindowID 0x%x\n", (int) WindowID);*/
++ }
++
++ /* do ipc hand-shake here */
++ setup_ipc();
++ assert(Sock);
++ assert(WindowID);
++
++ if (MyID == 1) {
++ set_event_mask(dpy, WindowID);
++ }
++
++ resize(dpy, Width, Height);
++
++ event_loop(dpy);
++
++ return 0;
++}
+diff -Naurp Mesa-7.8.1/progs/xdemos/glsync.c Mesa-7.8.1.patched/progs/xdemos/glsync.c
+--- Mesa-7.8.1/progs/xdemos/glsync.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/glsync.c 2010-06-13 13:45:06.789793146 +0200
+@@ -0,0 +1,295 @@
++/*
++ * Copyright © 2007 Intel Corporation
++ *
++ * Permission is hereby granted, free of charge, to any person obtaining a
++ * copy of this software and associated documentation files (the "Software"),
++ * to deal in the Software without restriction, including without limitation
++ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
++ * and/or sell copies of the Software, and to permit persons to whom the
++ * Software is furnished to do so, subject to the following conditions:
++ *
++ * The above copyright notice and this permission notice (including the next
++ * paragraph) shall be included in all copies or substantial portions of the
++ * Software.
++ *
++ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
++ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
++ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
++ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
++ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
++ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
++ * IN THE SOFTWARE.
++ *
++ * Authors:
++ * Jesse Barnes <jesse.barnes@intel.com>
++ *
++ */
++
++/** @file glsync.c
++ * The program is simple: it paints a window alternating colors (red &
++ * white) either as fast as possible or synchronized to vblank events
++ *
++ * If run normally, the program should display a window that exhibits
++ * significant tearing between red and white colors (e.g. you might get
++ * a "waterfall" effect of red and white horizontal bars).
++ *
++ * If run with the '-s b' option, the program should synchronize the
++ * window color changes with the vertical blank period, resulting in a
++ * window that looks orangish with a high frequency flicker (which may
++ * be invisible). If the window is moved to another screen, this
++ * property should be preserved. If the window spans two screens, it
++ * shouldn't tear on whichever screen most of the window is on; the
++ * portion on the other screen may show some tearing (like the
++ * waterfall effect above).
++ *
++ * Other options include '-w <width>' and '-h <height' to set the
++ * window size.
++ */
++#include <stdio.h>
++#include <stdlib.h>
++#include <string.h>
++#include <unistd.h>
++#include <GL/gl.h>
++#include <GL/glu.h>
++#include <GL/glx.h>
++#include <GL/glxext.h>
++#include <X11/X.h>
++#include <X11/Xlib.h>
++#include <X11/Xutil.h>
++
++void (*video_sync_get)();
++void (*video_sync)();
++void (*swap_interval)();
++
++static int GLXExtensionSupported(Display *dpy, const char *extension)
++{
++ const char *extensionsString, *pos;
++
++ extensionsString = glXQueryExtensionsString(dpy, DefaultScreen(dpy));
++
++ pos = strstr(extensionsString, extension);
++
++ if (pos != NULL && (pos == extensionsString || pos[-1] == ' ') &&
++ (pos[strlen(extension)] == ' ' || pos[strlen(extension)] == '\0'))
++ return 1;
++
++ return 0;
++}
++
++extern char *optarg;
++extern int optind, opterr, optopt;
++static char optstr[] = "w:h:s:vi:";
++
++enum sync_type {
++ none = 0,
++ sgi_video_sync,
++ buffer_swap
++};
++
++static void usage(char *name)
++{
++ printf("usage: %s [-w <width>] [-h <height>] [-s<sync method>] "
++ "[-v]\n", name);
++ printf("\t-s<sync method>:\n");
++ printf("\t\tn: none\n");
++ printf("\t\ts: SGI video sync extension\n");
++ printf("\t\tb: buffer swap\n");
++ printf("\t-i<swap interval>\n");
++ printf("\t-v: verbose (print count)\n");
++ exit(-1);
++}
++
++int main(int argc, char *argv[])
++{
++ Display *disp;
++ XVisualInfo *pvi;
++ XSetWindowAttributes swa;
++ GLint last_val = -1, count = 0;
++ Window winGL;
++ GLXContext context;
++ int dummy;
++ Atom wmDelete;
++ enum sync_type waitforsync = none;
++ int width = 500, height = 500, verbose = 0, interval = 1;
++ int c, i = 1;
++ int ret;
++ int attribs[] = { GLX_RGBA,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ None };
++ int db_attribs[] = { GLX_RGBA,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DOUBLEBUFFER,
++ GLX_DEPTH_SIZE, 1,
++ None };
++ XSizeHints sizehints;
++
++ opterr = 0;
++ while ((c = getopt(argc, argv, optstr)) != -1) {
++ switch (c) {
++ case 'w':
++ width = atoi(optarg);
++ break;
++ case 'h':
++ height = atoi(optarg);
++ break;
++ case 's':
++ switch (optarg[0]) {
++ case 'n':
++ waitforsync = none;
++ break;
++ case 's':
++ waitforsync = sgi_video_sync;
++ break;
++ case 'b':
++ waitforsync = buffer_swap;
++ break;
++ default:
++ usage(argv[0]);
++ break;
++ }
++ break;
++ case 'v':
++ verbose = 1;
++ break;
++ case 'i':
++ interval = atoi(optarg);
++ break;
++ default:
++ usage(argv[0]);
++ break;
++ }
++ }
++
++ disp = XOpenDisplay(NULL);
++ if (!disp) {
++ fprintf(stderr, "failed to open display\n");
++ return -1;
++ }
++
++ if (!glXQueryExtension(disp, &dummy, &dummy)) {
++ fprintf(stderr, "glXQueryExtension failed\n");
++ return -1;
++ }
++
++ if (!GLXExtensionSupported(disp, "GLX_SGI_video_sync")) {
++ fprintf(stderr, "GLX_SGI_video_sync not supported, exiting\n");
++ return -1;
++ }
++
++ if (waitforsync != buffer_swap) {
++ pvi = glXChooseVisual(disp, DefaultScreen(disp), attribs);
++ } else {
++ pvi = glXChooseVisual(disp, DefaultScreen(disp), db_attribs);
++ }
++
++ if (!pvi) {
++ fprintf(stderr, "failed to choose visual, exiting\n");
++ return -1;
++ }
++
++ pvi->screen = DefaultScreen(disp);
++
++ swa.colormap = XCreateColormap(disp, RootWindow(disp, pvi->screen),
++ pvi->visual, AllocNone);
++ swa.border_pixel = 0;
++ swa.event_mask = ExposureMask | KeyPressMask | ButtonPressMask |
++ StructureNotifyMask;
++ winGL = XCreateWindow(disp, RootWindow(disp, pvi->screen),
++ 0, 0,
++ width, height,
++ 0, pvi->depth, InputOutput, pvi->visual,
++ CWBorderPixel | CWColormap | CWEventMask, &swa);
++ if (!winGL) {
++ fprintf(stderr, "window creation failed\n");
++ return -1;
++ }
++ wmDelete = XInternAtom(disp, "WM_DELETE_WINDOW", True);
++ XSetWMProtocols(disp, winGL, &wmDelete, 1);
++
++ sizehints.x = 0;
++ sizehints.y = 0;
++ sizehints.width = width;
++ sizehints.height = height;
++ sizehints.flags = USSize | USPosition;
++
++ XSetNormalHints(disp, winGL, &sizehints);
++ XSetStandardProperties(disp, winGL, "glsync test", "glsync text",
++ None, NULL, 0, &sizehints);
++
++ context = glXCreateContext(disp, pvi, NULL, GL_TRUE);
++ if (!context) {
++ fprintf(stderr, "failed to create glx context\n");
++ return -1;
++ }
++
++ XMapWindow(disp, winGL);
++ ret = glXMakeCurrent(disp, winGL, context);
++ if (!ret) {
++ fprintf(stderr, "failed to make context current: %d\n", ret);
++ }
++
++ video_sync_get = glXGetProcAddress((unsigned char *)"glXGetVideoSyncSGI");
++ video_sync = glXGetProcAddress((unsigned char *)"glXWaitVideoSyncSGI");
++
++ swap_interval = glXGetProcAddress((unsigned char *)"glXSwapIntervalSGI");
++
++ if (!video_sync_get || !video_sync || !swap_interval) {
++ fprintf(stderr, "failed to get sync functions\n");
++ return -1;
++ }
++
++ if (waitforsync == buffer_swap) {
++ swap_interval(interval);
++ fprintf(stderr, "set swap interval to %d\n", interval);
++ }
++ video_sync_get(&count);
++ count++;
++ glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
++ while (i++) {
++ /* Alternate colors to make tearing obvious */
++ if (i & 1) {
++ glClearColor(1.0f, 1.0f, 1.0f, 1.0f);
++ glColor3f(1.0f, 1.0f, 1.0f);
++ } else {
++ glClearColor(1.0f, 0.0f, 0.0f, 0.0f);
++ glColor3f(1.0f, 0.0f, 0.0f);
++ }
++
++ glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
++ glRectf(0, 0, width, height);
++
++ /* Wait for vsync */
++ if (waitforsync == sgi_video_sync) {
++ if (verbose)
++ fprintf(stderr, "waiting on count %d\n", count);
++ video_sync(2, (count + 1) % 2, &count);
++ if (count < last_val)
++ fprintf(stderr, "error: vblank count went backwards: %d -> %d\n", last_val, count);
++ if (count == last_val)
++ fprintf(stderr, "error: count didn't change: %d\n", count);
++ last_val = count;
++ glFlush();
++ } else if (waitforsync == buffer_swap) {
++ glXSwapBuffers(disp, winGL);
++ } else {
++ video_sync_get(&count);
++ sleep(1);
++ glFinish();
++ }
++
++ if (verbose) {
++ video_sync_get(&count);
++ fprintf(stderr, "current count: %d\n", count);
++ }
++ }
++
++ XDestroyWindow(disp, winGL);
++ glXDestroyContext(disp, context);
++ XCloseDisplay(disp);
++
++ return 0;
++}
+diff -Naurp Mesa-7.8.1/progs/xdemos/glthreads.c Mesa-7.8.1.patched/progs/xdemos/glthreads.c
+--- Mesa-7.8.1/progs/xdemos/glthreads.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/glthreads.c 2010-06-13 13:45:06.789793146 +0200
+@@ -0,0 +1,716 @@
++/*
++ * Copyright (C) 2000 Brian Paul All Rights Reserved.
++ *
++ * Permission is hereby granted, free of charge, to any person obtaining a
++ * copy of this software and associated documentation files (the "Software"),
++ * to deal in the Software without restriction, including without limitation
++ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
++ * and/or sell copies of the Software, and to permit persons to whom the
++ * Software is furnished to do so, subject to the following conditions:
++ *
++ * The above copyright notice and this permission notice shall be included
++ * in all copies or substantial portions of the Software.
++ *
++ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
++ * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
++ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
++ * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
++ * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
++ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
++ */
++
++
++/*
++ * This program tests GLX thread safety.
++ * Command line options:
++ * -p Open a display connection for each thread
++ * -l Enable application-side locking
++ * -n <num threads> Number of threads to create (default is 2)
++ * -display <display name> Specify X display (default is $DISPLAY)
++ * -t Use texture mapping
++ *
++ * Brian Paul 20 July 2000
++ */
++
++
++/*
++ * Notes:
++ * - Each thread gets its own GLX context.
++ *
++ * - The GLX contexts share texture objects.
++ *
++ * - When 't' is pressed to update the texture image, the window/thread which
++ * has input focus is signalled to change the texture. The other threads
++ * should see the updated texture the next time they call glBindTexture.
++ */
++
++
++#if defined(PTHREADS) /* defined by Mesa on Linux and other platforms */
++
++#include <assert.h>
++#include <GL/gl.h>
++#include <GL/glx.h>
++#include <math.h>
++#include <stdio.h>
++#include <stdlib.h>
++#include <string.h>
++#include <unistd.h>
++#include <pthread.h>
++
++
++/*
++ * Each window/thread/context:
++ */
++struct winthread {
++ Display *Dpy;
++ int Index;
++ pthread_t Thread;
++ Window Win;
++ GLXContext Context;
++ float Angle;
++ int WinWidth, WinHeight;
++ GLboolean NewSize;
++ GLboolean Initialized;
++ GLboolean MakeNewTexture;
++};
++
++
++#define MAX_WINTHREADS 100
++static struct winthread WinThreads[MAX_WINTHREADS];
++static int NumWinThreads = 0;
++static volatile GLboolean ExitFlag = GL_FALSE;
++
++static GLboolean MultiDisplays = 0;
++static GLboolean Locking = 0;
++static GLboolean Texture = GL_FALSE;
++static GLuint TexObj = 12;
++static GLboolean Animate = GL_TRUE;
++
++static pthread_mutex_t Mutex;
++static pthread_cond_t CondVar;
++static pthread_mutex_t CondMutex;
++
++
++static void
++Error(const char *msg)
++{
++ fprintf(stderr, "Error: %s\n", msg);
++ exit(1);
++}
++
++
++static void
++signal_redraw(void)
++{
++ pthread_mutex_lock(&CondMutex);
++ pthread_cond_broadcast(&CondVar);
++ pthread_mutex_unlock(&CondMutex);
++}
++
++
++static void
++MakeNewTexture(struct winthread *wt)
++{
++#define TEX_SIZE 128
++ static float step = 0.0;
++ GLfloat image[TEX_SIZE][TEX_SIZE][4];
++ GLint width;
++ int i, j;
++
++ for (j = 0; j < TEX_SIZE; j++) {
++ for (i = 0; i < TEX_SIZE; i++) {
++ float dt = 5.0 * (j - 0.5 * TEX_SIZE) / TEX_SIZE;
++ float ds = 5.0 * (i - 0.5 * TEX_SIZE) / TEX_SIZE;
++ float r = dt * dt + ds * ds + step;
++ image[j][i][0] =
++ image[j][i][1] =
++ image[j][i][2] = 0.75 + 0.25 * cos(r);
++ image[j][i][3] = 1.0;
++ }
++ }
++
++ step += 0.5;
++
++ glBindTexture(GL_TEXTURE_2D, TexObj);
++
++ glGetTexLevelParameteriv(GL_TEXTURE_2D, 0, GL_TEXTURE_WIDTH, &width);
++ if (width) {
++ assert(width == TEX_SIZE);
++ /* sub-tex replace */
++ glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, TEX_SIZE, TEX_SIZE,
++ GL_RGBA, GL_FLOAT, image);
++ }
++ else {
++ /* create new */
++ glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
++ glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
++
++ glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, TEX_SIZE, TEX_SIZE, 0,
++ GL_RGBA, GL_FLOAT, image);
++ }
++}
++
++
++
++/* draw a colored cube */
++static void
++draw_object(void)
++{
++ glPushMatrix();
++ glScalef(0.75, 0.75, 0.75);
++
++ glColor3f(1, 0, 0);
++
++ if (Texture) {
++ glBindTexture(GL_TEXTURE_2D, TexObj);
++ glEnable(GL_TEXTURE_2D);
++ }
++ else {
++ glDisable(GL_TEXTURE_2D);
++ }
++
++ glBegin(GL_QUADS);
++
++ /* -X */
++ glColor3f(0, 1, 1);
++ glTexCoord2f(0, 0); glVertex3f(-1, -1, -1);
++ glTexCoord2f(1, 0); glVertex3f(-1, 1, -1);
++ glTexCoord2f(1, 1); glVertex3f(-1, 1, 1);
++ glTexCoord2f(0, 1); glVertex3f(-1, -1, 1);
++
++ /* +X */
++ glColor3f(1, 0, 0);
++ glTexCoord2f(0, 0); glVertex3f(1, -1, -1);
++ glTexCoord2f(1, 0); glVertex3f(1, 1, -1);
++ glTexCoord2f(1, 1); glVertex3f(1, 1, 1);
++ glTexCoord2f(0, 1); glVertex3f(1, -1, 1);
++
++ /* -Y */
++ glColor3f(1, 0, 1);
++ glTexCoord2f(0, 0); glVertex3f(-1, -1, -1);
++ glTexCoord2f(1, 0); glVertex3f( 1, -1, -1);
++ glTexCoord2f(1, 1); glVertex3f( 1, -1, 1);
++ glTexCoord2f(0, 1); glVertex3f(-1, -1, 1);
++
++ /* +Y */
++ glColor3f(0, 1, 0);
++ glTexCoord2f(0, 0); glVertex3f(-1, 1, -1);
++ glTexCoord2f(1, 0); glVertex3f( 1, 1, -1);
++ glTexCoord2f(1, 1); glVertex3f( 1, 1, 1);
++ glTexCoord2f(0, 1); glVertex3f(-1, 1, 1);
++
++ /* -Z */
++ glColor3f(1, 1, 0);
++ glTexCoord2f(0, 0); glVertex3f(-1, -1, -1);
++ glTexCoord2f(1, 0); glVertex3f( 1, -1, -1);
++ glTexCoord2f(1, 1); glVertex3f( 1, 1, -1);
++ glTexCoord2f(0, 1); glVertex3f(-1, 1, -1);
++
++ /* +Y */
++ glColor3f(0, 0, 1);
++ glTexCoord2f(0, 0); glVertex3f(-1, -1, 1);
++ glTexCoord2f(1, 0); glVertex3f( 1, -1, 1);
++ glTexCoord2f(1, 1); glVertex3f( 1, 1, 1);
++ glTexCoord2f(0, 1); glVertex3f(-1, 1, 1);
++
++ glEnd();
++
++ glPopMatrix();
++}
++
++
++/* signal resize of given window */
++static void
++resize(struct winthread *wt, int w, int h)
++{
++ wt->NewSize = GL_TRUE;
++ wt->WinWidth = w;
++ wt->WinHeight = h;
++ if (!Animate)
++ signal_redraw();
++}
++
++
++/*
++ * We have an instance of this for each thread.
++ */
++static void
++draw_loop(struct winthread *wt)
++{
++ while (!ExitFlag) {
++
++ if (Locking)
++ pthread_mutex_lock(&Mutex);
++
++ glXMakeCurrent(wt->Dpy, wt->Win, wt->Context);
++ if (!wt->Initialized) {
++ printf("glthreads: %d: GL_RENDERER = %s\n", wt->Index,
++ (char *) glGetString(GL_RENDERER));
++ if (Texture /*&& wt->Index == 0*/) {
++ MakeNewTexture(wt);
++ }
++ wt->Initialized = GL_TRUE;
++ }
++
++ if (Locking)
++ pthread_mutex_unlock(&Mutex);
++
++ glEnable(GL_DEPTH_TEST);
++
++ if (wt->NewSize) {
++ GLfloat w = (float) wt->WinWidth / (float) wt->WinHeight;
++ glViewport(0, 0, wt->WinWidth, wt->WinHeight);
++ glMatrixMode(GL_PROJECTION);
++ glLoadIdentity();
++ glFrustum(-w, w, -1.0, 1.0, 1.5, 10);
++ glMatrixMode(GL_MODELVIEW);
++ glLoadIdentity();
++ glTranslatef(0, 0, -2.5);
++ wt->NewSize = GL_FALSE;
++ }
++
++ if (wt->MakeNewTexture) {
++ MakeNewTexture(wt);
++ wt->MakeNewTexture = GL_FALSE;
++ }
++
++ glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
++
++ glPushMatrix();
++ glRotatef(wt->Angle, 0, 1, 0);
++ glRotatef(wt->Angle, 1, 0, 0);
++ glScalef(0.7, 0.7, 0.7);
++ draw_object();
++ glPopMatrix();
++
++ if (Locking)
++ pthread_mutex_lock(&Mutex);
++
++ glXSwapBuffers(wt->Dpy, wt->Win);
++
++ if (Locking)
++ pthread_mutex_unlock(&Mutex);
++
++ if (Animate) {
++ usleep(5000);
++ }
++ else {
++ /* wait for signal to draw */
++ pthread_mutex_lock(&CondMutex);
++ pthread_cond_wait(&CondVar, &CondMutex);
++ pthread_mutex_unlock(&CondMutex);
++ }
++ wt->Angle += 1.0;
++ }
++}
++
++
++static void
++keypress(XEvent *event, struct winthread *wt)
++{
++ char buf[100];
++ KeySym keySym;
++ XComposeStatus stat;
++
++ XLookupString(&event->xkey, buf, sizeof(buf), &keySym, &stat);
++
++ switch (keySym) {
++ case XK_Escape:
++ /* tell all threads to exit */
++ if (!Animate) {
++ signal_redraw();
++ }
++ ExitFlag = GL_TRUE;
++ /*printf("exit draw_loop %d\n", wt->Index);*/
++ return;
++ case XK_t:
++ case XK_T:
++ if (Texture) {
++ wt->MakeNewTexture = GL_TRUE;
++ if (!Animate)
++ signal_redraw();
++ }
++ break;
++ case XK_a:
++ case XK_A:
++ Animate = !Animate;
++ if (Animate) /* yes, prev Animate state! */
++ signal_redraw();
++ break;
++ case XK_s:
++ case XK_S:
++ if (!Animate)
++ signal_redraw();
++ break;
++ default:
++ ; /* nop */
++ }
++}
++
++
++/*
++ * The main process thread runs this loop.
++ * Single display connection for all threads.
++ */
++static void
++event_loop(Display *dpy)
++{
++ XEvent event;
++ int i;
++
++ assert(!MultiDisplays);
++
++ while (!ExitFlag) {
++
++ if (Locking) {
++ while (1) {
++ int k;
++ pthread_mutex_lock(&Mutex);
++ k = XPending(dpy);
++ if (k) {
++ XNextEvent(dpy, &event);
++ pthread_mutex_unlock(&Mutex);
++ break;
++ }
++ pthread_mutex_unlock(&Mutex);
++ usleep(5000);
++ }
++ }
++ else {
++ XNextEvent(dpy, &event);
++ }
++
++ switch (event.type) {
++ case ConfigureNotify:
++ /* Find winthread for this event's window */
++ for (i = 0; i < NumWinThreads; i++) {
++ struct winthread *wt = &WinThreads[i];
++ if (event.xconfigure.window == wt->Win) {
++ resize(wt, event.xconfigure.width,
++ event.xconfigure.height);
++ break;
++ }
++ }
++ break;
++ case KeyPress:
++ for (i = 0; i < NumWinThreads; i++) {
++ struct winthread *wt = &WinThreads[i];
++ if (event.xkey.window == wt->Win) {
++ keypress(&event, wt);
++ break;
++ }
++ }
++ break;
++ default:
++ /*no-op*/ ;
++ }
++ }
++}
++
++
++/*
++ * Separate display connection for each thread.
++ */
++static void
++event_loop_multi(void)
++{
++ XEvent event;
++ int w = 0;
++
++ assert(MultiDisplays);
++
++ while (!ExitFlag) {
++ struct winthread *wt = &WinThreads[w];
++ if (XPending(wt->Dpy)) {
++ XNextEvent(wt->Dpy, &event);
++ switch (event.type) {
++ case ConfigureNotify:
++ resize(wt, event.xconfigure.width, event.xconfigure.height);
++ break;
++ case KeyPress:
++ keypress(&event, wt);
++ break;
++ default:
++ ; /* nop */
++ }
++ }
++ w = (w + 1) % NumWinThreads;
++ usleep(5000);
++ }
++}
++
++
++
++/*
++ * we'll call this once for each thread, before the threads are created.
++ */
++static void
++create_window(struct winthread *wt, GLXContext shareCtx)
++{
++ Window win;
++ GLXContext ctx;
++ int attrib[] = { GLX_RGBA,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DEPTH_SIZE, 1,
++ GLX_DOUBLEBUFFER,
++ None };
++ int scrnum;
++ XSetWindowAttributes attr;
++ unsigned long mask;
++ Window root;
++ XVisualInfo *visinfo;
++ int width = 160, height = 160;
++ int xpos = (wt->Index % 8) * (width + 10);
++ int ypos = (wt->Index / 8) * (width + 20);
++
++ scrnum = DefaultScreen(wt->Dpy);
++ root = RootWindow(wt->Dpy, scrnum);
++
++ visinfo = glXChooseVisual(wt->Dpy, scrnum, attrib);
++ if (!visinfo) {
++ Error("Unable to find RGB, Z, double-buffered visual");
++ }
++
++ /* window attributes */
++ attr.background_pixel = 0;
++ attr.border_pixel = 0;
++ attr.colormap = XCreateColormap(wt->Dpy, root, visinfo->visual, AllocNone);
++ attr.event_mask = StructureNotifyMask | ExposureMask | KeyPressMask;
++ mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
++
++ win = XCreateWindow(wt->Dpy, root, xpos, ypos, width, height,
++ 0, visinfo->depth, InputOutput,
++ visinfo->visual, mask, &attr);
++ if (!win) {
++ Error("Couldn't create window");
++ }
++
++ {
++ XSizeHints sizehints;
++ sizehints.x = xpos;
++ sizehints.y = ypos;
++ sizehints.width = width;
++ sizehints.height = height;
++ sizehints.flags = USSize | USPosition;
++ XSetNormalHints(wt->Dpy, win, &sizehints);
++ XSetStandardProperties(wt->Dpy, win, "glthreads", "glthreads",
++ None, (char **)NULL, 0, &sizehints);
++ }
++
++
++ ctx = glXCreateContext(wt->Dpy, visinfo, shareCtx, True);
++ if (!ctx) {
++ Error("Couldn't create GLX context");
++ }
++
++ XMapWindow(wt->Dpy, win);
++ XSync(wt->Dpy, 0);
++
++ /* save the info for this window/context */
++ wt->Win = win;
++ wt->Context = ctx;
++ wt->Angle = 0.0;
++ wt->WinWidth = width;
++ wt->WinHeight = height;
++ wt->NewSize = GL_TRUE;
++}
++
++
++/*
++ * Called by pthread_create()
++ */
++static void *
++thread_function(void *p)
++{
++ struct winthread *wt = (struct winthread *) p;
++ draw_loop(wt);
++ return NULL;
++}
++
++
++/*
++ * called before exit to wait for all threads to finish
++ */
++static void
++clean_up(void)
++{
++ int i;
++
++ /* wait for threads to finish */
++ for (i = 0; i < NumWinThreads; i++) {
++ pthread_join(WinThreads[i].Thread, NULL);
++ }
++
++ for (i = 0; i < NumWinThreads; i++) {
++ glXDestroyContext(WinThreads[i].Dpy, WinThreads[i].Context);
++ XDestroyWindow(WinThreads[i].Dpy, WinThreads[i].Win);
++ }
++}
++
++
++static void
++usage(void)
++{
++ printf("glthreads: test of GL thread safety (any key = exit)\n");
++ printf("Usage:\n");
++ printf(" glthreads [options]\n");
++ printf("Options:\n");
++ printf(" -display DISPLAYNAME Specify display string\n");
++ printf(" -n NUMTHREADS Number of threads to create\n");
++ printf(" -p Use a separate display connection for each thread\n");
++ printf(" -l Use application-side locking\n");
++ printf(" -t Enable texturing\n");
++ printf("Keyboard:\n");
++ printf(" Esc Exit\n");
++ printf(" t Change texture image (requires -t option)\n");
++ printf(" a Toggle animation\n");
++ printf(" s Step rotation (when not animating)\n");
++}
++
++
++int
++main(int argc, char *argv[])
++{
++ char *displayName = NULL;
++ int numThreads = 2;
++ Display *dpy = NULL;
++ int i;
++ Status threadStat;
++
++ if (argc == 1) {
++ usage();
++ }
++ else {
++ int i;
++ for (i = 1; i < argc; i++) {
++ if (strcmp(argv[i], "-display") == 0 && i + 1 < argc) {
++ displayName = argv[i + 1];
++ i++;
++ }
++ else if (strcmp(argv[i], "-p") == 0) {
++ MultiDisplays = 1;
++ }
++ else if (strcmp(argv[i], "-l") == 0) {
++ Locking = 1;
++ }
++ else if (strcmp(argv[i], "-t") == 0) {
++ Texture = 1;
++ }
++ else if (strcmp(argv[i], "-n") == 0 && i + 1 < argc) {
++ numThreads = atoi(argv[i + 1]);
++ if (numThreads < 1)
++ numThreads = 1;
++ else if (numThreads > MAX_WINTHREADS)
++ numThreads = MAX_WINTHREADS;
++ i++;
++ }
++ else {
++ usage();
++ exit(1);
++ }
++ }
++ }
++
++ if (Locking)
++ printf("glthreads: Using explicit locks around Xlib calls.\n");
++ else
++ printf("glthreads: No explict locking.\n");
++
++ if (MultiDisplays)
++ printf("glthreads: Per-thread display connections.\n");
++ else
++ printf("glthreads: Single display connection.\n");
++
++ /*
++ * VERY IMPORTANT: call XInitThreads() before any other Xlib functions.
++ */
++ if (!MultiDisplays) {
++ if (!Locking) {
++ threadStat = XInitThreads();
++ if (threadStat) {
++ printf("XInitThreads() returned %d (success)\n", (int) threadStat);
++ }
++ else {
++ printf("XInitThreads() returned 0 (failure- this program may fail)\n");
++ }
++ }
++
++ dpy = XOpenDisplay(displayName);
++ if (!dpy) {
++ fprintf(stderr, "Unable to open display %s\n", XDisplayName(displayName));
++ return -1;
++ }
++ }
++
++ pthread_mutex_init(&Mutex, NULL);
++ pthread_mutex_init(&CondMutex, NULL);
++ pthread_cond_init(&CondVar, NULL);
++
++ printf("glthreads: creating windows\n");
++
++ NumWinThreads = numThreads;
++
++ /* Create the GLX windows and contexts */
++ for (i = 0; i < numThreads; i++) {
++ GLXContext share;
++
++ if (MultiDisplays) {
++ WinThreads[i].Dpy = XOpenDisplay(displayName);
++ assert(WinThreads[i].Dpy);
++ }
++ else {
++ WinThreads[i].Dpy = dpy;
++ }
++ WinThreads[i].Index = i;
++ WinThreads[i].Initialized = GL_FALSE;
++
++ share = (Texture && i > 0) ? WinThreads[0].Context : 0;
++
++ create_window(&WinThreads[i], share);
++ }
++
++ printf("glthreads: creating threads\n");
++
++ /* Create the threads */
++ for (i = 0; i < numThreads; i++) {
++ pthread_create(&WinThreads[i].Thread, NULL, thread_function,
++ (void*) &WinThreads[i]);
++ printf("glthreads: Created thread %p\n", (void *) WinThreads[i].Thread);
++ }
++
++ if (MultiDisplays)
++ event_loop_multi();
++ else
++ event_loop(dpy);
++
++ clean_up();
++
++ if (MultiDisplays) {
++ for (i = 0; i < numThreads; i++) {
++ XCloseDisplay(WinThreads[i].Dpy);
++ }
++ }
++ else {
++ XCloseDisplay(dpy);
++ }
++
++ return 0;
++}
++
++
++#else /* PTHREADS */
++
++
++#include <stdio.h>
++
++int
++main(int argc, char *argv[])
++{
++ printf("Sorry, this program wasn't compiled with PTHREADS defined.\n");
++ return 0;
++}
++
++
++#endif /* PTHREADS */
+diff -Naurp Mesa-7.8.1/progs/xdemos/glxcontexts.c Mesa-7.8.1.patched/progs/xdemos/glxcontexts.c
+--- Mesa-7.8.1/progs/xdemos/glxcontexts.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/glxcontexts.c 2010-06-13 13:45:06.789793146 +0200
+@@ -0,0 +1,548 @@
++/*
++ * Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
++ *
++ * Permission is hereby granted, free of charge, to any person obtaining a
++ * copy of this software and associated documentation files (the "Software"),
++ * to deal in the Software without restriction, including without limitation
++ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
++ * and/or sell copies of the Software, and to permit persons to whom the
++ * Software is furnished to do so, subject to the following conditions:
++ *
++ * The above copyright notice and this permission notice shall be included
++ * in all copies or substantial portions of the Software.
++ *
++ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
++ * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
++ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
++ * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
++ * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
++ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
++ */
++
++/*
++ * Version of glxgears that creates/destroys the rendering context for each
++ * frame. Also periodically destroy/recreate the window.
++ * Good for finding memory leaks, etc.
++ *
++ * Command line options:
++ * -info print GL implementation information
++ *
++ */
++
++
++#include <assert.h>
++#include <math.h>
++#include <stdlib.h>
++#include <stdio.h>
++#include <string.h>
++#include <X11/Xlib.h>
++#include <X11/keysym.h>
++#include <GL/gl.h>
++#include <GL/glx.h>
++
++
++#define BENCHMARK
++
++#ifdef BENCHMARK
++
++/* XXX this probably isn't very portable */
++
++#include <sys/time.h>
++#include <unistd.h>
++
++/* return current time (in seconds) */
++static double
++current_time(void)
++{
++ struct timeval tv;
++#ifdef __VMS
++ (void) gettimeofday(&tv, NULL );
++#else
++ struct timezone tz;
++ (void) gettimeofday(&tv, &tz);
++#endif
++ return (double) tv.tv_sec + tv.tv_usec / 1000000.0;
++}
++
++#else /*BENCHMARK*/
++
++/* dummy */
++static double
++current_time(void)
++{
++ /* update this function for other platforms! */
++ static double t = 0.0;
++ static int warn = 1;
++ if (warn) {
++ fprintf(stderr, "Warning: current_time() not implemented!!\n");
++ warn = 0;
++ }
++ return t += 1.0;
++}
++
++#endif /*BENCHMARK*/
++
++
++
++#ifndef M_PI
++#define M_PI 3.14159265
++#endif
++
++
++static GLfloat view_rotx = 20.0, view_roty = 30.0, view_rotz = 0.0;
++static GLint gear1, gear2, gear3;
++static GLfloat angle = 0.0;
++
++static XVisualInfo *visinfo = NULL;
++static int WinWidth = 300, WinHeight = 300;
++
++
++/*
++ *
++ * Draw a gear wheel. You'll probably want to call this function when
++ * building a display list since we do a lot of trig here.
++ *
++ * Input: inner_radius - radius of hole at center
++ * outer_radius - radius at center of teeth
++ * width - width of gear
++ * teeth - number of teeth
++ * tooth_depth - depth of tooth
++ */
++static void
++gear(GLfloat inner_radius, GLfloat outer_radius, GLfloat width,
++ GLint teeth, GLfloat tooth_depth)
++{
++ GLint i;
++ GLfloat r0, r1, r2;
++ GLfloat angle, da;
++ GLfloat u, v, len;
++
++ r0 = inner_radius;
++ r1 = outer_radius - tooth_depth / 2.0;
++ r2 = outer_radius + tooth_depth / 2.0;
++
++ da = 2.0 * M_PI / teeth / 4.0;
++
++ glShadeModel(GL_FLAT);
++
++ glNormal3f(0.0, 0.0, 1.0);
++
++ /* draw front face */
++ glBegin(GL_QUAD_STRIP);
++ for (i = 0; i <= teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), width * 0.5);
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), width * 0.5);
++ if (i < teeth) {
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), width * 0.5);
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ width * 0.5);
++ }
++ }
++ glEnd();
++
++ /* draw front sides of teeth */
++ glBegin(GL_QUADS);
++ da = 2.0 * M_PI / teeth / 4.0;
++ for (i = 0; i < teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), width * 0.5);
++ glVertex3f(r2 * cos(angle + da), r2 * sin(angle + da), width * 0.5);
++ glVertex3f(r2 * cos(angle + 2 * da), r2 * sin(angle + 2 * da),
++ width * 0.5);
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ width * 0.5);
++ }
++ glEnd();
++
++ glNormal3f(0.0, 0.0, -1.0);
++
++ /* draw back face */
++ glBegin(GL_QUAD_STRIP);
++ for (i = 0; i <= teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), -width * 0.5);
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), -width * 0.5);
++ if (i < teeth) {
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ -width * 0.5);
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), -width * 0.5);
++ }
++ }
++ glEnd();
++
++ /* draw back sides of teeth */
++ glBegin(GL_QUADS);
++ da = 2.0 * M_PI / teeth / 4.0;
++ for (i = 0; i < teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ -width * 0.5);
++ glVertex3f(r2 * cos(angle + 2 * da), r2 * sin(angle + 2 * da),
++ -width * 0.5);
++ glVertex3f(r2 * cos(angle + da), r2 * sin(angle + da), -width * 0.5);
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), -width * 0.5);
++ }
++ glEnd();
++
++ /* draw outward faces of teeth */
++ glBegin(GL_QUAD_STRIP);
++ for (i = 0; i < teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), width * 0.5);
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), -width * 0.5);
++ u = r2 * cos(angle + da) - r1 * cos(angle);
++ v = r2 * sin(angle + da) - r1 * sin(angle);
++ len = sqrt(u * u + v * v);
++ u /= len;
++ v /= len;
++ glNormal3f(v, -u, 0.0);
++ glVertex3f(r2 * cos(angle + da), r2 * sin(angle + da), width * 0.5);
++ glVertex3f(r2 * cos(angle + da), r2 * sin(angle + da), -width * 0.5);
++ glNormal3f(cos(angle), sin(angle), 0.0);
++ glVertex3f(r2 * cos(angle + 2 * da), r2 * sin(angle + 2 * da),
++ width * 0.5);
++ glVertex3f(r2 * cos(angle + 2 * da), r2 * sin(angle + 2 * da),
++ -width * 0.5);
++ u = r1 * cos(angle + 3 * da) - r2 * cos(angle + 2 * da);
++ v = r1 * sin(angle + 3 * da) - r2 * sin(angle + 2 * da);
++ glNormal3f(v, -u, 0.0);
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ width * 0.5);
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ -width * 0.5);
++ glNormal3f(cos(angle), sin(angle), 0.0);
++ }
++
++ glVertex3f(r1 * cos(0), r1 * sin(0), width * 0.5);
++ glVertex3f(r1 * cos(0), r1 * sin(0), -width * 0.5);
++
++ glEnd();
++
++ glShadeModel(GL_SMOOTH);
++
++ /* draw inside radius cylinder */
++ glBegin(GL_QUAD_STRIP);
++ for (i = 0; i <= teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++ glNormal3f(-cos(angle), -sin(angle), 0.0);
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), -width * 0.5);
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), width * 0.5);
++ }
++ glEnd();
++}
++
++
++static void
++do_draw(void)
++{
++ glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
++
++ glPushMatrix();
++ glRotatef(view_rotx, 1.0, 0.0, 0.0);
++ glRotatef(view_roty, 0.0, 1.0, 0.0);
++ glRotatef(view_rotz, 0.0, 0.0, 1.0);
++
++ glPushMatrix();
++ glTranslatef(-3.0, -2.0, 0.0);
++ glRotatef(angle, 0.0, 0.0, 1.0);
++ glCallList(gear1);
++ glPopMatrix();
++
++ glPushMatrix();
++ glTranslatef(3.1, -2.0, 0.0);
++ glRotatef(-2.0 * angle - 9.0, 0.0, 0.0, 1.0);
++ glCallList(gear2);
++ glPopMatrix();
++
++ glPushMatrix();
++ glTranslatef(-3.1, 4.2, 0.0);
++ glRotatef(-2.0 * angle - 25.0, 0.0, 0.0, 1.0);
++ glCallList(gear3);
++ glPopMatrix();
++
++ glPopMatrix();
++}
++
++
++/* new window size or exposure */
++static void
++reshape(int width, int height)
++{
++ glViewport(0, 0, (GLint) width, (GLint) height);
++
++ {
++ GLfloat h = (GLfloat) height / (GLfloat) width;
++
++ glMatrixMode(GL_PROJECTION);
++ glLoadIdentity();
++ glFrustum(-1.0, 1.0, -h, h, 5.0, 60.0);
++ }
++
++ glMatrixMode(GL_MODELVIEW);
++ glLoadIdentity();
++ glTranslatef(0.0, 0.0, -40.0);
++}
++
++
++static void
++init(void)
++{
++ static GLfloat pos[4] = { 5.0, 5.0, 10.0, 0.0 };
++ static GLfloat red[4] = { 0.8, 0.1, 0.0, 1.0 };
++ static GLfloat green[4] = { 0.0, 0.8, 0.2, 1.0 };
++ static GLfloat blue[4] = { 0.2, 0.2, 1.0, 1.0 };
++
++ glLightfv(GL_LIGHT0, GL_POSITION, pos);
++ glEnable(GL_CULL_FACE);
++ glEnable(GL_LIGHTING);
++ glEnable(GL_LIGHT0);
++ glEnable(GL_DEPTH_TEST);
++
++ /* make the gears */
++ gear1 = glGenLists(1);
++ glNewList(gear1, GL_COMPILE);
++ glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, red);
++ gear(1.0, 4.0, 1.0, 20, 0.7);
++ glEndList();
++
++ gear2 = glGenLists(1);
++ glNewList(gear2, GL_COMPILE);
++ glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, green);
++ gear(0.5, 2.0, 2.0, 10, 0.7);
++ glEndList();
++
++ gear3 = glGenLists(1);
++ glNewList(gear3, GL_COMPILE);
++ glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, blue);
++ gear(1.3, 2.0, 0.5, 10, 0.7);
++ glEndList();
++
++ glEnable(GL_NORMALIZE);
++}
++
++
++static void
++draw( Display *dpy, Window win )
++{
++ GLXContext ctx;
++
++ ctx = glXCreateContext( dpy, visinfo, NULL, True );
++ if (!ctx) {
++ printf("Error: glXCreateContext failed\n");
++ exit(1);
++ }
++
++ glXMakeCurrent(dpy, win, ctx);
++
++ init();
++
++ reshape(WinWidth, WinHeight);
++
++ do_draw();
++
++ glDeleteLists(gear1, 1);
++ glDeleteLists(gear2, 1);
++ glDeleteLists(gear3, 1);
++
++ glXSwapBuffers(dpy, win);
++ glXDestroyContext(dpy, ctx);
++}
++
++
++/*
++ * Create an RGB, double-buffered window.
++ * Return the window and context handles.
++ */
++static void
++make_window( Display *dpy, const char *name,
++ int x, int y, int width, int height,
++ Window *winRet)
++{
++ int attribs[] = { GLX_RGBA,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DOUBLEBUFFER,
++ GLX_DEPTH_SIZE, 1,
++ None };
++ int scrnum;
++ XSetWindowAttributes attr;
++ unsigned long mask;
++ Window root;
++ Window win;
++
++ scrnum = DefaultScreen( dpy );
++ root = RootWindow( dpy, scrnum );
++
++ if (visinfo)
++ XFree(visinfo);
++
++ visinfo = glXChooseVisual( dpy, scrnum, attribs );
++ if (!visinfo) {
++ printf("Error: couldn't get an RGB, Double-buffered visual\n");
++ exit(1);
++ }
++
++ /* window attributes */
++ attr.background_pixel = 0;
++ attr.border_pixel = 0;
++ attr.colormap = XCreateColormap( dpy, root, visinfo->visual, AllocNone);
++ attr.event_mask = StructureNotifyMask | ExposureMask | KeyPressMask;
++ attr.override_redirect = 0;
++ mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask | CWOverrideRedirect;
++
++ win = XCreateWindow( dpy, root, x, y, width, height,
++ 0, visinfo->depth, InputOutput,
++ visinfo->visual, mask, &attr );
++
++ /* set hints and properties */
++ {
++ XSizeHints sizehints;
++ sizehints.x = x;
++ sizehints.y = y;
++ sizehints.width = width;
++ sizehints.height = height;
++ sizehints.flags = USSize | USPosition;
++ XSetNormalHints(dpy, win, &sizehints);
++ XSetStandardProperties(dpy, win, name, name,
++ None, (char **)NULL, 0, &sizehints);
++ }
++
++ *winRet = win;
++}
++
++
++static void
++event_loop(Display *dpy)
++{
++ Window win;
++ make_window(dpy, "glxgears", 0, 0, WinWidth, WinHeight, &win);
++ XMapWindow(dpy, win);
++
++ while (1) {
++ while (XPending(dpy) > 0) {
++ XEvent event;
++ XNextEvent(dpy, &event);
++ switch (event.type) {
++ case Expose:
++ /* we'll redraw below */
++ break;
++ case ConfigureNotify:
++ WinWidth = event.xconfigure.width;
++ WinHeight = event.xconfigure.height;
++ break;
++ case KeyPress:
++ {
++ char buffer[10];
++ int r, code;
++ code = XLookupKeysym(&event.xkey, 0);
++ if (code == XK_Left) {
++ view_roty += 5.0;
++ }
++ else if (code == XK_Right) {
++ view_roty -= 5.0;
++ }
++ else if (code == XK_Up) {
++ view_rotx += 5.0;
++ }
++ else if (code == XK_Down) {
++ view_rotx -= 5.0;
++ }
++ else {
++ r = XLookupString(&event.xkey, buffer, sizeof(buffer),
++ NULL, NULL);
++ if (buffer[0] == 27) {
++ /* escape */
++ return;
++ }
++ }
++ }
++ }
++ }
++
++ {
++ static int frames = 0;
++ static double tRot0 = -1.0, tRate0 = -1.0;
++ double dt, t = current_time();
++ if (tRot0 < 0.0)
++ tRot0 = t;
++ dt = t - tRot0;
++ tRot0 = t;
++
++ /* advance rotation for next frame */
++ angle += 70.0 * dt; /* 70 degrees per second */
++ if (angle > 3600.0)
++ angle -= 3600.0;
++
++ draw( dpy, win );
++
++ frames++;
++
++ if (tRate0 < 0.0)
++ tRate0 = t;
++
++ if (t - tRate0 >= 1.0) {
++ GLfloat seconds = t - tRate0;
++ GLfloat fps = frames / seconds;
++ printf("%d frames in %3.1f seconds = %6.3f FPS\n", frames, seconds,
++ fps);
++ tRate0 = t;
++
++ /* Destroy window and create new one */
++ XDestroyWindow(dpy, win);
++ make_window(dpy, "glxgears",
++ (int)(fps * 100) % 100, (int)(fps * 100) % 100, /* x,y */
++ WinWidth, WinHeight, &win);
++ XMapWindow(dpy, win);
++
++ frames = 0;
++ }
++ }
++ }
++}
++
++
++int
++main(int argc, char *argv[])
++{
++ Display *dpy;
++ char *dpyName = NULL;
++ GLboolean printInfo = GL_FALSE;
++ int i;
++
++ for (i = 1; i < argc; i++) {
++ if (strcmp(argv[i], "-display") == 0) {
++ dpyName = argv[i+1];
++ i++;
++ }
++ else if (strcmp(argv[i], "-info") == 0) {
++ printInfo = GL_TRUE;
++ }
++ else
++ printf("Warrning: unknown parameter: %s\n", argv[i]);
++ }
++
++ dpy = XOpenDisplay(dpyName);
++ if (!dpy) {
++ fprintf(stderr, "Error: couldn't open display %s\n",
++ XDisplayName(dpyName));
++ return -1;
++ }
++
++ if (printInfo) {
++ printf("GL_RENDERER = %s\n", (char *) glGetString(GL_RENDERER));
++ printf("GL_VERSION = %s\n", (char *) glGetString(GL_VERSION));
++ printf("GL_VENDOR = %s\n", (char *) glGetString(GL_VENDOR));
++ printf("GL_EXTENSIONS = %s\n", (char *) glGetString(GL_EXTENSIONS));
++ }
++
++ event_loop(dpy);
++
++ XCloseDisplay(dpy);
++
++ return 0;
++}
+diff -Naurp Mesa-7.8.1/progs/xdemos/glxdemo.c Mesa-7.8.1.patched/progs/xdemos/glxdemo.c
+--- Mesa-7.8.1/progs/xdemos/glxdemo.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/glxdemo.c 2010-06-13 13:45:06.789793146 +0200
+@@ -0,0 +1,127 @@
++
++
++/*
++ * A demonstration of using the GLX functions. This program is in the
++ * public domain.
++ *
++ * Brian Paul
++ */
++
++#include <GL/gl.h>
++#include <GL/glx.h>
++#include <stdio.h>
++#include <stdlib.h>
++
++
++
++static void redraw( Display *dpy, Window w )
++{
++ printf("Redraw event\n");
++
++ glClear( GL_COLOR_BUFFER_BIT );
++
++ glColor3f( 1.0, 1.0, 0.0 );
++ glRectf( -0.8, -0.8, 0.8, 0.8 );
++
++ glXSwapBuffers( dpy, w );
++}
++
++
++
++static void resize( unsigned int width, unsigned int height )
++{
++ printf("Resize event\n");
++ glViewport( 0, 0, width, height );
++ glMatrixMode( GL_PROJECTION );
++ glLoadIdentity();
++ glOrtho( -1.0, 1.0, -1.0, 1.0, -1.0, 1.0 );
++}
++
++
++
++static Window make_rgb_db_window( Display *dpy,
++ unsigned int width, unsigned int height )
++{
++ int attrib[] = { GLX_RGBA,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DOUBLEBUFFER,
++ None };
++ int scrnum;
++ XSetWindowAttributes attr;
++ unsigned long mask;
++ Window root;
++ Window win;
++ GLXContext ctx;
++ XVisualInfo *visinfo;
++
++ scrnum = DefaultScreen( dpy );
++ root = RootWindow( dpy, scrnum );
++
++ visinfo = glXChooseVisual( dpy, scrnum, attrib );
++ if (!visinfo) {
++ printf("Error: couldn't get an RGB, Double-buffered visual\n");
++ exit(1);
++ }
++
++ /* window attributes */
++ attr.background_pixel = 0;
++ attr.border_pixel = 0;
++ attr.colormap = XCreateColormap( dpy, root, visinfo->visual, AllocNone);
++ attr.event_mask = StructureNotifyMask | ExposureMask;
++ mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
++
++ win = XCreateWindow( dpy, root, 0, 0, width, height,
++ 0, visinfo->depth, InputOutput,
++ visinfo->visual, mask, &attr );
++
++ ctx = glXCreateContext( dpy, visinfo, NULL, True );
++ if (!ctx) {
++ printf("Error: glXCreateContext failed\n");
++ exit(1);
++ }
++
++ glXMakeCurrent( dpy, win, ctx );
++
++ return win;
++}
++
++
++static void event_loop( Display *dpy )
++{
++ XEvent event;
++
++ while (1) {
++ XNextEvent( dpy, &event );
++
++ switch (event.type) {
++ case Expose:
++ redraw( dpy, event.xany.window );
++ break;
++ case ConfigureNotify:
++ resize( event.xconfigure.width, event.xconfigure.height );
++ break;
++ }
++ }
++}
++
++
++
++int main( int argc, char *argv[] )
++{
++ Display *dpy;
++ Window win;
++
++ dpy = XOpenDisplay(NULL);
++
++ win = make_rgb_db_window( dpy, 300, 300 );
++
++ glShadeModel( GL_FLAT );
++ glClearColor( 0.5, 0.5, 0.5, 1.0 );
++
++ XMapWindow( dpy, win );
++
++ event_loop( dpy );
++ return 0;
++}
+diff -Naurp Mesa-7.8.1/progs/xdemos/glxgears.c Mesa-7.8.1.patched/progs/xdemos/glxgears.c
+--- Mesa-7.8.1/progs/xdemos/glxgears.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/glxgears.c 2010-06-13 13:45:06.789793146 +0200
+@@ -0,0 +1,787 @@
++/*
++ * Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
++ *
++ * Permission is hereby granted, free of charge, to any person obtaining a
++ * copy of this software and associated documentation files (the "Software"),
++ * to deal in the Software without restriction, including without limitation
++ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
++ * and/or sell copies of the Software, and to permit persons to whom the
++ * Software is furnished to do so, subject to the following conditions:
++ *
++ * The above copyright notice and this permission notice shall be included
++ * in all copies or substantial portions of the Software.
++ *
++ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
++ * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
++ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
++ * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
++ * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
++ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
++ */
++
++/*
++ * This is a port of the infamous "gears" demo to straight GLX (i.e. no GLUT)
++ * Port by Brian Paul 23 March 2001
++ *
++ * See usage() below for command line options.
++ */
++
++
++#include <math.h>
++#include <stdlib.h>
++#include <stdio.h>
++#include <string.h>
++#include <X11/Xlib.h>
++#include <X11/keysym.h>
++#include <GL/gl.h>
++#include <GL/glx.h>
++#include <GL/glxext.h>
++
++#ifndef GLX_MESA_swap_control
++#define GLX_MESA_swap_control 1
++typedef int (*PFNGLXGETSWAPINTERVALMESAPROC)(void);
++#endif
++
++
++#define BENCHMARK
++
++#ifdef BENCHMARK
++
++/* XXX this probably isn't very portable */
++
++#include <sys/time.h>
++#include <unistd.h>
++
++/* return current time (in seconds) */
++static double
++current_time(void)
++{
++ struct timeval tv;
++#ifdef __VMS
++ (void) gettimeofday(&tv, NULL );
++#else
++ struct timezone tz;
++ (void) gettimeofday(&tv, &tz);
++#endif
++ return (double) tv.tv_sec + tv.tv_usec / 1000000.0;
++}
++
++#else /*BENCHMARK*/
++
++/* dummy */
++static double
++current_time(void)
++{
++ /* update this function for other platforms! */
++ static double t = 0.0;
++ static int warn = 1;
++ if (warn) {
++ fprintf(stderr, "Warning: current_time() not implemented!!\n");
++ warn = 0;
++ }
++ return t += 1.0;
++}
++
++#endif /*BENCHMARK*/
++
++
++
++#ifndef M_PI
++#define M_PI 3.14159265
++#endif
++
++
++/** Event handler results: */
++#define NOP 0
++#define EXIT 1
++#define DRAW 2
++
++static GLfloat view_rotx = 20.0, view_roty = 30.0, view_rotz = 0.0;
++static GLint gear1, gear2, gear3;
++static GLfloat angle = 0.0;
++
++static GLboolean fullscreen = GL_FALSE; /* Create a single fullscreen window */
++static GLboolean stereo = GL_FALSE; /* Enable stereo. */
++static GLboolean animate = GL_TRUE; /* Animation */
++static GLfloat eyesep = 5.0; /* Eye separation. */
++static GLfloat fix_point = 40.0; /* Fixation point distance. */
++static GLfloat left, right, asp; /* Stereo frustum params. */
++
++
++/*
++ *
++ * Draw a gear wheel. You'll probably want to call this function when
++ * building a display list since we do a lot of trig here.
++ *
++ * Input: inner_radius - radius of hole at center
++ * outer_radius - radius at center of teeth
++ * width - width of gear
++ * teeth - number of teeth
++ * tooth_depth - depth of tooth
++ */
++static void
++gear(GLfloat inner_radius, GLfloat outer_radius, GLfloat width,
++ GLint teeth, GLfloat tooth_depth)
++{
++ GLint i;
++ GLfloat r0, r1, r2;
++ GLfloat angle, da;
++ GLfloat u, v, len;
++
++ r0 = inner_radius;
++ r1 = outer_radius - tooth_depth / 2.0;
++ r2 = outer_radius + tooth_depth / 2.0;
++
++ da = 2.0 * M_PI / teeth / 4.0;
++
++ glShadeModel(GL_FLAT);
++
++ glNormal3f(0.0, 0.0, 1.0);
++
++ /* draw front face */
++ glBegin(GL_QUAD_STRIP);
++ for (i = 0; i <= teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), width * 0.5);
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), width * 0.5);
++ if (i < teeth) {
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), width * 0.5);
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ width * 0.5);
++ }
++ }
++ glEnd();
++
++ /* draw front sides of teeth */
++ glBegin(GL_QUADS);
++ da = 2.0 * M_PI / teeth / 4.0;
++ for (i = 0; i < teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), width * 0.5);
++ glVertex3f(r2 * cos(angle + da), r2 * sin(angle + da), width * 0.5);
++ glVertex3f(r2 * cos(angle + 2 * da), r2 * sin(angle + 2 * da),
++ width * 0.5);
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ width * 0.5);
++ }
++ glEnd();
++
++ glNormal3f(0.0, 0.0, -1.0);
++
++ /* draw back face */
++ glBegin(GL_QUAD_STRIP);
++ for (i = 0; i <= teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), -width * 0.5);
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), -width * 0.5);
++ if (i < teeth) {
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ -width * 0.5);
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), -width * 0.5);
++ }
++ }
++ glEnd();
++
++ /* draw back sides of teeth */
++ glBegin(GL_QUADS);
++ da = 2.0 * M_PI / teeth / 4.0;
++ for (i = 0; i < teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ -width * 0.5);
++ glVertex3f(r2 * cos(angle + 2 * da), r2 * sin(angle + 2 * da),
++ -width * 0.5);
++ glVertex3f(r2 * cos(angle + da), r2 * sin(angle + da), -width * 0.5);
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), -width * 0.5);
++ }
++ glEnd();
++
++ /* draw outward faces of teeth */
++ glBegin(GL_QUAD_STRIP);
++ for (i = 0; i < teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), width * 0.5);
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), -width * 0.5);
++ u = r2 * cos(angle + da) - r1 * cos(angle);
++ v = r2 * sin(angle + da) - r1 * sin(angle);
++ len = sqrt(u * u + v * v);
++ u /= len;
++ v /= len;
++ glNormal3f(v, -u, 0.0);
++ glVertex3f(r2 * cos(angle + da), r2 * sin(angle + da), width * 0.5);
++ glVertex3f(r2 * cos(angle + da), r2 * sin(angle + da), -width * 0.5);
++ glNormal3f(cos(angle), sin(angle), 0.0);
++ glVertex3f(r2 * cos(angle + 2 * da), r2 * sin(angle + 2 * da),
++ width * 0.5);
++ glVertex3f(r2 * cos(angle + 2 * da), r2 * sin(angle + 2 * da),
++ -width * 0.5);
++ u = r1 * cos(angle + 3 * da) - r2 * cos(angle + 2 * da);
++ v = r1 * sin(angle + 3 * da) - r2 * sin(angle + 2 * da);
++ glNormal3f(v, -u, 0.0);
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ width * 0.5);
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ -width * 0.5);
++ glNormal3f(cos(angle), sin(angle), 0.0);
++ }
++
++ glVertex3f(r1 * cos(0), r1 * sin(0), width * 0.5);
++ glVertex3f(r1 * cos(0), r1 * sin(0), -width * 0.5);
++
++ glEnd();
++
++ glShadeModel(GL_SMOOTH);
++
++ /* draw inside radius cylinder */
++ glBegin(GL_QUAD_STRIP);
++ for (i = 0; i <= teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++ glNormal3f(-cos(angle), -sin(angle), 0.0);
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), -width * 0.5);
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), width * 0.5);
++ }
++ glEnd();
++}
++
++
++static void
++draw(void)
++{
++ glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
++
++ glPushMatrix();
++ glRotatef(view_rotx, 1.0, 0.0, 0.0);
++ glRotatef(view_roty, 0.0, 1.0, 0.0);
++ glRotatef(view_rotz, 0.0, 0.0, 1.0);
++
++ glPushMatrix();
++ glTranslatef(-3.0, -2.0, 0.0);
++ glRotatef(angle, 0.0, 0.0, 1.0);
++ glCallList(gear1);
++ glPopMatrix();
++
++ glPushMatrix();
++ glTranslatef(3.1, -2.0, 0.0);
++ glRotatef(-2.0 * angle - 9.0, 0.0, 0.0, 1.0);
++ glCallList(gear2);
++ glPopMatrix();
++
++ glPushMatrix();
++ glTranslatef(-3.1, 4.2, 0.0);
++ glRotatef(-2.0 * angle - 25.0, 0.0, 0.0, 1.0);
++ glCallList(gear3);
++ glPopMatrix();
++
++ glPopMatrix();
++}
++
++
++static void
++draw_gears(void)
++{
++ if (stereo) {
++ /* First left eye. */
++ glDrawBuffer(GL_BACK_LEFT);
++
++ glMatrixMode(GL_PROJECTION);
++ glLoadIdentity();
++ glFrustum(left, right, -asp, asp, 5.0, 60.0);
++
++ glMatrixMode(GL_MODELVIEW);
++
++ glPushMatrix();
++ glTranslated(+0.5 * eyesep, 0.0, 0.0);
++ draw();
++ glPopMatrix();
++
++ /* Then right eye. */
++ glDrawBuffer(GL_BACK_RIGHT);
++
++ glMatrixMode(GL_PROJECTION);
++ glLoadIdentity();
++ glFrustum(-right, -left, -asp, asp, 5.0, 60.0);
++
++ glMatrixMode(GL_MODELVIEW);
++
++ glPushMatrix();
++ glTranslated(-0.5 * eyesep, 0.0, 0.0);
++ draw();
++ glPopMatrix();
++ }
++ else {
++ draw();
++ }
++}
++
++
++/** Draw single frame, do SwapBuffers, compute FPS */
++static void
++draw_frame(Display *dpy, Window win)
++{
++ static int frames = 0;
++ static double tRot0 = -1.0, tRate0 = -1.0;
++ double dt, t = current_time();
++
++ if (tRot0 < 0.0)
++ tRot0 = t;
++ dt = t - tRot0;
++ tRot0 = t;
++
++ if (animate) {
++ /* advance rotation for next frame */
++ angle += 70.0 * dt; /* 70 degrees per second */
++ if (angle > 3600.0)
++ angle -= 3600.0;
++ }
++
++ draw_gears();
++ glXSwapBuffers(dpy, win);
++
++ frames++;
++
++ if (tRate0 < 0.0)
++ tRate0 = t;
++ if (t - tRate0 >= 5.0) {
++ GLfloat seconds = t - tRate0;
++ GLfloat fps = frames / seconds;
++ printf("%d frames in %3.1f seconds = %6.3f FPS\n", frames, seconds,
++ fps);
++ tRate0 = t;
++ frames = 0;
++ }
++}
++
++
++/* new window size or exposure */
++static void
++reshape(int width, int height)
++{
++ glViewport(0, 0, (GLint) width, (GLint) height);
++
++ if (stereo) {
++ GLfloat w;
++
++ asp = (GLfloat) height / (GLfloat) width;
++ w = fix_point * (1.0 / 5.0);
++
++ left = -5.0 * ((w - 0.5 * eyesep) / fix_point);
++ right = 5.0 * ((w + 0.5 * eyesep) / fix_point);
++ }
++ else {
++ GLfloat h = (GLfloat) height / (GLfloat) width;
++
++ glMatrixMode(GL_PROJECTION);
++ glLoadIdentity();
++ glFrustum(-1.0, 1.0, -h, h, 5.0, 60.0);
++ }
++
++ glMatrixMode(GL_MODELVIEW);
++ glLoadIdentity();
++ glTranslatef(0.0, 0.0, -40.0);
++}
++
++
++
++static void
++init(void)
++{
++ static GLfloat pos[4] = { 5.0, 5.0, 10.0, 0.0 };
++ static GLfloat red[4] = { 0.8, 0.1, 0.0, 1.0 };
++ static GLfloat green[4] = { 0.0, 0.8, 0.2, 1.0 };
++ static GLfloat blue[4] = { 0.2, 0.2, 1.0, 1.0 };
++
++ glLightfv(GL_LIGHT0, GL_POSITION, pos);
++ glEnable(GL_CULL_FACE);
++ glEnable(GL_LIGHTING);
++ glEnable(GL_LIGHT0);
++ glEnable(GL_DEPTH_TEST);
++
++ /* make the gears */
++ gear1 = glGenLists(1);
++ glNewList(gear1, GL_COMPILE);
++ glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, red);
++ gear(1.0, 4.0, 1.0, 20, 0.7);
++ glEndList();
++
++ gear2 = glGenLists(1);
++ glNewList(gear2, GL_COMPILE);
++ glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, green);
++ gear(0.5, 2.0, 2.0, 10, 0.7);
++ glEndList();
++
++ gear3 = glGenLists(1);
++ glNewList(gear3, GL_COMPILE);
++ glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, blue);
++ gear(1.3, 2.0, 0.5, 10, 0.7);
++ glEndList();
++
++ glEnable(GL_NORMALIZE);
++}
++
++
++/**
++ * Remove window border/decorations.
++ */
++static void
++no_border( Display *dpy, Window w)
++{
++ static const unsigned MWM_HINTS_DECORATIONS = (1 << 1);
++ static const int PROP_MOTIF_WM_HINTS_ELEMENTS = 5;
++
++ typedef struct
++ {
++ unsigned long flags;
++ unsigned long functions;
++ unsigned long decorations;
++ long inputMode;
++ unsigned long status;
++ } PropMotifWmHints;
++
++ PropMotifWmHints motif_hints;
++ Atom prop, proptype;
++ unsigned long flags = 0;
++
++ /* setup the property */
++ motif_hints.flags = MWM_HINTS_DECORATIONS;
++ motif_hints.decorations = flags;
++
++ /* get the atom for the property */
++ prop = XInternAtom( dpy, "_MOTIF_WM_HINTS", True );
++ if (!prop) {
++ /* something went wrong! */
++ return;
++ }
++
++ /* not sure this is correct, seems to work, XA_WM_HINTS didn't work */
++ proptype = prop;
++
++ XChangeProperty( dpy, w, /* display, window */
++ prop, proptype, /* property, type */
++ 32, /* format: 32-bit datums */
++ PropModeReplace, /* mode */
++ (unsigned char *) &motif_hints, /* data */
++ PROP_MOTIF_WM_HINTS_ELEMENTS /* nelements */
++ );
++}
++
++
++/*
++ * Create an RGB, double-buffered window.
++ * Return the window and context handles.
++ */
++static void
++make_window( Display *dpy, const char *name,
++ int x, int y, int width, int height,
++ Window *winRet, GLXContext *ctxRet)
++{
++ int attribs[] = { GLX_RGBA,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DOUBLEBUFFER,
++ GLX_DEPTH_SIZE, 1,
++ None };
++ int stereoAttribs[] = { GLX_RGBA,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DOUBLEBUFFER,
++ GLX_DEPTH_SIZE, 1,
++ GLX_STEREO,
++ None };
++ int scrnum;
++ XSetWindowAttributes attr;
++ unsigned long mask;
++ Window root;
++ Window win;
++ GLXContext ctx;
++ XVisualInfo *visinfo;
++
++ scrnum = DefaultScreen( dpy );
++ root = RootWindow( dpy, scrnum );
++
++ if (fullscreen) {
++ x = 0; y = 0;
++ width = DisplayWidth( dpy, scrnum );
++ height = DisplayHeight( dpy, scrnum );
++ }
++
++ if (stereo)
++ visinfo = glXChooseVisual( dpy, scrnum, stereoAttribs );
++ else
++ visinfo = glXChooseVisual( dpy, scrnum, attribs );
++ if (!visinfo) {
++ if (stereo) {
++ printf("Error: couldn't get an RGB, "
++ "Double-buffered, Stereo visual\n");
++ } else
++ printf("Error: couldn't get an RGB, Double-buffered visual\n");
++ exit(1);
++ }
++
++ /* window attributes */
++ attr.background_pixel = 0;
++ attr.border_pixel = 0;
++ attr.colormap = XCreateColormap( dpy, root, visinfo->visual, AllocNone);
++ attr.event_mask = StructureNotifyMask | ExposureMask | KeyPressMask;
++ /* XXX this is a bad way to get a borderless window! */
++ mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
++
++ win = XCreateWindow( dpy, root, x, y, width, height,
++ 0, visinfo->depth, InputOutput,
++ visinfo->visual, mask, &attr );
++
++ if (fullscreen)
++ no_border(dpy, win);
++
++ /* set hints and properties */
++ {
++ XSizeHints sizehints;
++ sizehints.x = x;
++ sizehints.y = y;
++ sizehints.width = width;
++ sizehints.height = height;
++ sizehints.flags = USSize | USPosition;
++ XSetNormalHints(dpy, win, &sizehints);
++ XSetStandardProperties(dpy, win, name, name,
++ None, (char **)NULL, 0, &sizehints);
++ }
++
++ ctx = glXCreateContext( dpy, visinfo, NULL, True );
++ if (!ctx) {
++ printf("Error: glXCreateContext failed\n");
++ exit(1);
++ }
++
++ XFree(visinfo);
++
++ *winRet = win;
++ *ctxRet = ctx;
++}
++
++
++/**
++ * Determine whether or not a GLX extension is supported.
++ */
++static int
++is_glx_extension_supported(Display *dpy, const char *query)
++{
++ const int scrnum = DefaultScreen(dpy);
++ const char *glx_extensions = NULL;
++ const size_t len = strlen(query);
++ const char *ptr;
++
++ if (glx_extensions == NULL) {
++ glx_extensions = glXQueryExtensionsString(dpy, scrnum);
++ }
++
++ ptr = strstr(glx_extensions, query);
++ return ((ptr != NULL) && ((ptr[len] == ' ') || (ptr[len] == '\0')));
++}
++
++
++/**
++ * Attempt to determine whether or not the display is synched to vblank.
++ */
++static void
++query_vsync(Display *dpy, GLXDrawable drawable)
++{
++ int interval = 0;
++
++#if defined(GLX_EXT_swap_control)
++ if (is_glx_extension_supported(dpy, "GLX_EXT_swap_control")) {
++ unsigned int tmp = -1;
++ glXQueryDrawable(dpy, drawable, GLX_SWAP_INTERVAL_EXT, &tmp);
++ interval = tmp;
++ } else
++#endif
++ if (is_glx_extension_supported(dpy, "GLX_MESA_swap_control")) {
++ PFNGLXGETSWAPINTERVALMESAPROC pglXGetSwapIntervalMESA =
++ (PFNGLXGETSWAPINTERVALMESAPROC)
++ glXGetProcAddressARB((const GLubyte *) "glXGetSwapIntervalMESA");
++
++ interval = (*pglXGetSwapIntervalMESA)();
++ } else if (is_glx_extension_supported(dpy, "GLX_SGI_swap_control")) {
++ /* The default swap interval with this extension is 1. Assume that it
++ * is set to the default.
++ *
++ * Many Mesa-based drivers default to 0, but all of these drivers also
++ * export GLX_MESA_swap_control. In that case, this branch will never
++ * be taken, and the correct result should be reported.
++ */
++ interval = 1;
++ }
++
++
++ if (interval > 0) {
++ printf("Running synchronized to the vertical refresh. The framerate should be\n");
++ if (interval == 1) {
++ printf("approximately the same as the monitor refresh rate.\n");
++ } else if (interval > 1) {
++ printf("approximately 1/%d the monitor refresh rate.\n",
++ interval);
++ }
++ }
++}
++
++/**
++ * Handle one X event.
++ * \return NOP, EXIT or DRAW
++ */
++static int
++handle_event(Display *dpy, Window win, XEvent *event)
++{
++ (void) dpy;
++ (void) win;
++
++ switch (event->type) {
++ case Expose:
++ return DRAW;
++ case ConfigureNotify:
++ reshape(event->xconfigure.width, event->xconfigure.height);
++ break;
++ case KeyPress:
++ {
++ char buffer[10];
++ int r, code;
++ code = XLookupKeysym(&event->xkey, 0);
++ if (code == XK_Left) {
++ view_roty += 5.0;
++ }
++ else if (code == XK_Right) {
++ view_roty -= 5.0;
++ }
++ else if (code == XK_Up) {
++ view_rotx += 5.0;
++ }
++ else if (code == XK_Down) {
++ view_rotx -= 5.0;
++ }
++ else {
++ r = XLookupString(&event->xkey, buffer, sizeof(buffer),
++ NULL, NULL);
++ if (buffer[0] == 27) {
++ /* escape */
++ return EXIT;
++ }
++ else if (buffer[0] == 'a' || buffer[0] == 'A') {
++ animate = !animate;
++ }
++ }
++ return DRAW;
++ }
++ }
++ return NOP;
++}
++
++
++static void
++event_loop(Display *dpy, Window win)
++{
++ while (1) {
++ int op;
++ while (!animate || XPending(dpy) > 0) {
++ XEvent event;
++ XNextEvent(dpy, &event);
++ op = handle_event(dpy, win, &event);
++ if (op == EXIT)
++ return;
++ else if (op == DRAW)
++ break;
++ }
++
++ draw_frame(dpy, win);
++ }
++}
++
++
++static void
++usage(void)
++{
++ printf("Usage:\n");
++ printf(" -display <displayname> set the display to run on\n");
++ printf(" -stereo run in stereo mode\n");
++ printf(" -fullscreen run in fullscreen mode\n");
++ printf(" -info display OpenGL renderer info\n");
++ printf(" -geometry WxH+X+Y window geometry\n");
++}
++
++
++int
++main(int argc, char *argv[])
++{
++ unsigned int winWidth = 300, winHeight = 300;
++ int x = 0, y = 0;
++ Display *dpy;
++ Window win;
++ GLXContext ctx;
++ char *dpyName = NULL;
++ GLboolean printInfo = GL_FALSE;
++ int i;
++
++ for (i = 1; i < argc; i++) {
++ if (strcmp(argv[i], "-display") == 0) {
++ dpyName = argv[i+1];
++ i++;
++ }
++ else if (strcmp(argv[i], "-info") == 0) {
++ printInfo = GL_TRUE;
++ }
++ else if (strcmp(argv[i], "-stereo") == 0) {
++ stereo = GL_TRUE;
++ }
++ else if (strcmp(argv[i], "-fullscreen") == 0) {
++ fullscreen = GL_TRUE;
++ }
++ else if (i < argc-1 && strcmp(argv[i], "-geometry") == 0) {
++ XParseGeometry(argv[i+1], &x, &y, &winWidth, &winHeight);
++ i++;
++ }
++ else {
++ usage();
++ return -1;
++ }
++ }
++
++ dpy = XOpenDisplay(dpyName);
++ if (!dpy) {
++ printf("Error: couldn't open display %s\n",
++ dpyName ? dpyName : getenv("DISPLAY"));
++ return -1;
++ }
++
++ make_window(dpy, "glxgears", x, y, winWidth, winHeight, &win, &ctx);
++ XMapWindow(dpy, win);
++ glXMakeCurrent(dpy, win, ctx);
++ query_vsync(dpy, win);
++
++ if (printInfo) {
++ printf("GL_RENDERER = %s\n", (char *) glGetString(GL_RENDERER));
++ printf("GL_VERSION = %s\n", (char *) glGetString(GL_VERSION));
++ printf("GL_VENDOR = %s\n", (char *) glGetString(GL_VENDOR));
++ printf("GL_EXTENSIONS = %s\n", (char *) glGetString(GL_EXTENSIONS));
++ }
++
++ init();
++
++ /* Set initial projection/viewing transformation.
++ * We can't be sure we'll get a ConfigureNotify event when the window
++ * first appears.
++ */
++ reshape(winWidth, winHeight);
++
++ event_loop(dpy, win);
++
++ glDeleteLists(gear1, 1);
++ glDeleteLists(gear2, 1);
++ glDeleteLists(gear3, 1);
++ glXMakeCurrent(dpy, None, NULL);
++ glXDestroyContext(dpy, ctx);
++ XDestroyWindow(dpy, win);
++ XCloseDisplay(dpy);
++
++ return 0;
++}
+diff -Naurp Mesa-7.8.1/progs/xdemos/glxgears_fbconfig.c Mesa-7.8.1.patched/progs/xdemos/glxgears_fbconfig.c
+--- Mesa-7.8.1/progs/xdemos/glxgears_fbconfig.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/glxgears_fbconfig.c 2010-06-13 13:45:06.788792936 +0200
+@@ -0,0 +1,632 @@
++/*
++ * Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
++ *
++ * Permission is hereby granted, free of charge, to any person obtaining a
++ * copy of this software and associated documentation files (the "Software"),
++ * to deal in the Software without restriction, including without limitation
++ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
++ * and/or sell copies of the Software, and to permit persons to whom the
++ * Software is furnished to do so, subject to the following conditions:
++ *
++ * The above copyright notice and this permission notice shall be included
++ * in all copies or substantial portions of the Software.
++ *
++ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
++ * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
++ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
++ * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
++ * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
++ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
++ */
++
++/**
++ * \file glxgears_fbconfig.c
++ * Yet-another-version of gears. Originally ported to GLX by Brian Paul on
++ * 23 March 2001. Modified to use fbconfigs by Ian Romanick on 10 Feb 2004.
++ *
++ * Command line options:
++ * -info print GL implementation information
++ *
++ * \author Brian Paul
++ * \author Ian Romanick <idr@us.ibm.com>
++ */
++
++
++#define GLX_GLXEXT_PROTOTYPES
++
++#include <math.h>
++#include <stdlib.h>
++#include <stdio.h>
++#include <string.h>
++#include <X11/Xlib.h>
++#include <X11/keysym.h>
++#include <GL/gl.h>
++#include <GL/glx.h>
++#include <GL/glxext.h>
++#include <assert.h>
++#include "pbutil.h"
++
++static PFNGLXCHOOSEFBCONFIGPROC choose_fbconfig = NULL;
++static PFNGLXGETVISUALFROMFBCONFIGPROC get_visual_from_fbconfig = NULL;
++static PFNGLXCREATENEWCONTEXTPROC create_new_context = NULL;
++static PFNGLXCREATEWINDOWPROC create_window = NULL;
++static PFNGLXDESTROYWINDOWPROC destroy_window = NULL;
++
++#define BENCHMARK
++
++#ifdef BENCHMARK
++
++/* XXX this probably isn't very portable */
++
++#include <sys/time.h>
++#include <unistd.h>
++
++/* return current time (in seconds) */
++static int
++current_time(void)
++{
++ struct timeval tv;
++#ifdef __VMS
++ (void) gettimeofday(&tv, NULL );
++#else
++ struct timezone tz;
++ (void) gettimeofday(&tv, &tz);
++#endif
++ return (int) tv.tv_sec;
++}
++
++#else /*BENCHMARK*/
++
++/* dummy */
++static int
++current_time(void)
++{
++ return 0;
++}
++
++#endif /*BENCHMARK*/
++
++
++
++#ifndef M_PI
++#define M_PI 3.14159265
++#endif
++
++
++static GLfloat view_rotx = 20.0, view_roty = 30.0, view_rotz = 0.0;
++static GLint gear1, gear2, gear3;
++static GLfloat angle = 0.0;
++
++
++/*
++ *
++ * Draw a gear wheel. You'll probably want to call this function when
++ * building a display list since we do a lot of trig here.
++ *
++ * Input: inner_radius - radius of hole at center
++ * outer_radius - radius at center of teeth
++ * width - width of gear
++ * teeth - number of teeth
++ * tooth_depth - depth of tooth
++ */
++static void
++gear(GLfloat inner_radius, GLfloat outer_radius, GLfloat width,
++ GLint teeth, GLfloat tooth_depth)
++{
++ GLint i;
++ GLfloat r0, r1, r2;
++ GLfloat angle, da;
++ GLfloat u, v, len;
++
++ r0 = inner_radius;
++ r1 = outer_radius - tooth_depth / 2.0;
++ r2 = outer_radius + tooth_depth / 2.0;
++
++ da = 2.0 * M_PI / teeth / 4.0;
++
++ glShadeModel(GL_FLAT);
++
++ glNormal3f(0.0, 0.0, 1.0);
++
++ /* draw front face */
++ glBegin(GL_QUAD_STRIP);
++ for (i = 0; i <= teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), width * 0.5);
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), width * 0.5);
++ if (i < teeth) {
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), width * 0.5);
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ width * 0.5);
++ }
++ }
++ glEnd();
++
++ /* draw front sides of teeth */
++ glBegin(GL_QUADS);
++ da = 2.0 * M_PI / teeth / 4.0;
++ for (i = 0; i < teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), width * 0.5);
++ glVertex3f(r2 * cos(angle + da), r2 * sin(angle + da), width * 0.5);
++ glVertex3f(r2 * cos(angle + 2 * da), r2 * sin(angle + 2 * da),
++ width * 0.5);
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ width * 0.5);
++ }
++ glEnd();
++
++ glNormal3f(0.0, 0.0, -1.0);
++
++ /* draw back face */
++ glBegin(GL_QUAD_STRIP);
++ for (i = 0; i <= teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), -width * 0.5);
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), -width * 0.5);
++ if (i < teeth) {
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ -width * 0.5);
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), -width * 0.5);
++ }
++ }
++ glEnd();
++
++ /* draw back sides of teeth */
++ glBegin(GL_QUADS);
++ da = 2.0 * M_PI / teeth / 4.0;
++ for (i = 0; i < teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ -width * 0.5);
++ glVertex3f(r2 * cos(angle + 2 * da), r2 * sin(angle + 2 * da),
++ -width * 0.5);
++ glVertex3f(r2 * cos(angle + da), r2 * sin(angle + da), -width * 0.5);
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), -width * 0.5);
++ }
++ glEnd();
++
++ /* draw outward faces of teeth */
++ glBegin(GL_QUAD_STRIP);
++ for (i = 0; i < teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), width * 0.5);
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), -width * 0.5);
++ u = r2 * cos(angle + da) - r1 * cos(angle);
++ v = r2 * sin(angle + da) - r1 * sin(angle);
++ len = sqrt(u * u + v * v);
++ u /= len;
++ v /= len;
++ glNormal3f(v, -u, 0.0);
++ glVertex3f(r2 * cos(angle + da), r2 * sin(angle + da), width * 0.5);
++ glVertex3f(r2 * cos(angle + da), r2 * sin(angle + da), -width * 0.5);
++ glNormal3f(cos(angle), sin(angle), 0.0);
++ glVertex3f(r2 * cos(angle + 2 * da), r2 * sin(angle + 2 * da),
++ width * 0.5);
++ glVertex3f(r2 * cos(angle + 2 * da), r2 * sin(angle + 2 * da),
++ -width * 0.5);
++ u = r1 * cos(angle + 3 * da) - r2 * cos(angle + 2 * da);
++ v = r1 * sin(angle + 3 * da) - r2 * sin(angle + 2 * da);
++ glNormal3f(v, -u, 0.0);
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ width * 0.5);
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ -width * 0.5);
++ glNormal3f(cos(angle), sin(angle), 0.0);
++ }
++
++ glVertex3f(r1 * cos(0), r1 * sin(0), width * 0.5);
++ glVertex3f(r1 * cos(0), r1 * sin(0), -width * 0.5);
++
++ glEnd();
++
++ glShadeModel(GL_SMOOTH);
++
++ /* draw inside radius cylinder */
++ glBegin(GL_QUAD_STRIP);
++ for (i = 0; i <= teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++ glNormal3f(-cos(angle), -sin(angle), 0.0);
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), -width * 0.5);
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), width * 0.5);
++ }
++ glEnd();
++}
++
++
++static void
++draw(void)
++{
++ glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
++
++ glPushMatrix();
++ glRotatef(view_rotx, 1.0, 0.0, 0.0);
++ glRotatef(view_roty, 0.0, 1.0, 0.0);
++ glRotatef(view_rotz, 0.0, 0.0, 1.0);
++
++ glPushMatrix();
++ glTranslatef(-3.0, -2.0, 0.0);
++ glRotatef(angle, 0.0, 0.0, 1.0);
++ glCallList(gear1);
++ glPopMatrix();
++
++ glPushMatrix();
++ glTranslatef(3.1, -2.0, 0.0);
++ glRotatef(-2.0 * angle - 9.0, 0.0, 0.0, 1.0);
++ glCallList(gear2);
++ glPopMatrix();
++
++ glPushMatrix();
++ glTranslatef(-3.1, 4.2, 0.0);
++ glRotatef(-2.0 * angle - 25.0, 0.0, 0.0, 1.0);
++ glCallList(gear3);
++ glPopMatrix();
++
++ glPopMatrix();
++}
++
++
++/* new window size or exposure */
++static void
++reshape(int width, int height)
++{
++ GLfloat h = (GLfloat) height / (GLfloat) width;
++
++ glViewport(0, 0, (GLint) width, (GLint) height);
++ glMatrixMode(GL_PROJECTION);
++ glLoadIdentity();
++ glFrustum(-1.0, 1.0, -h, h, 5.0, 60.0);
++ glMatrixMode(GL_MODELVIEW);
++ glLoadIdentity();
++ glTranslatef(0.0, 0.0, -40.0);
++}
++
++
++static void
++init(void)
++{
++ static GLfloat pos[4] = { 5.0, 5.0, 10.0, 0.0 };
++ static GLfloat red[4] = { 0.8, 0.1, 0.0, 1.0 };
++ static GLfloat green[4] = { 0.0, 0.8, 0.2, 1.0 };
++ static GLfloat blue[4] = { 0.2, 0.2, 1.0, 1.0 };
++
++ glLightfv(GL_LIGHT0, GL_POSITION, pos);
++ glEnable(GL_CULL_FACE);
++ glEnable(GL_LIGHTING);
++ glEnable(GL_LIGHT0);
++ glEnable(GL_DEPTH_TEST);
++
++ /* make the gears */
++ gear1 = glGenLists(1);
++ glNewList(gear1, GL_COMPILE);
++ glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, red);
++ gear(1.0, 4.0, 1.0, 20, 0.7);
++ glEndList();
++
++ gear2 = glGenLists(1);
++ glNewList(gear2, GL_COMPILE);
++ glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, green);
++ gear(0.5, 2.0, 2.0, 10, 0.7);
++ glEndList();
++
++ gear3 = glGenLists(1);
++ glNewList(gear3, GL_COMPILE);
++ glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, blue);
++ gear(1.3, 2.0, 0.5, 10, 0.7);
++ glEndList();
++
++ glEnable(GL_NORMALIZE);
++}
++
++
++static GLXWindow
++dummy_create_window(Display *dpy, GLXFBConfig config, Window win,
++ const int *attrib_list)
++{
++ (void) dpy;
++ (void) config;
++ (void) attrib_list;
++
++ return (GLXWindow) win;
++}
++
++
++static void
++dummy_destroy_window(Display *dpy, GLXWindow win)
++{
++ (void) dpy;
++ (void) win;
++}
++
++
++/**
++ * Initialize fbconfig related function pointers.
++ */
++static void
++init_fbconfig_functions(Display *dpy, int scrnum)
++{
++ const char * glx_extensions;
++ const char * match;
++ static const char ext_name[] = "GLX_SGIX_fbconfig";
++ const size_t len = strlen( ext_name );
++ int major;
++ int minor;
++ GLboolean ext_version_supported;
++ GLboolean glx_1_3_supported;
++
++
++ /* Determine if GLX 1.3 or greater is supported.
++ */
++ glXQueryVersion(dpy, & major, & minor);
++ glx_1_3_supported = (major == 1) && (minor >= 3);
++
++ /* Determine if GLX_SGIX_fbconfig is supported.
++ */
++ glx_extensions = glXQueryExtensionsString(dpy, scrnum);
++ match = strstr( glx_extensions, ext_name );
++
++ ext_version_supported = (match != NULL)
++ && ((match[len] == '\0') || (match[len] == ' '));
++
++ printf( "GLX 1.3 is %ssupported.\n",
++ (glx_1_3_supported) ? "" : "not " );
++ printf( "%s is %ssupported.\n",
++ ext_name, (ext_version_supported) ? "" : "not " );
++
++ if ( glx_1_3_supported ) {
++ choose_fbconfig = (PFNGLXCHOOSEFBCONFIGPROC)
++ glXGetProcAddressARB((GLubyte *) "glXChooseFBConfig");
++ get_visual_from_fbconfig = (PFNGLXGETVISUALFROMFBCONFIGPROC)
++ glXGetProcAddressARB((GLubyte *) "glXGetVisualFromFBConfig");
++ create_new_context = (PFNGLXCREATENEWCONTEXTPROC)
++ glXGetProcAddressARB((GLubyte *) "glXCreateNewContext");
++ create_window = (PFNGLXCREATEWINDOWPROC)
++ glXGetProcAddressARB((GLubyte *) "glXCreateWindow");
++ destroy_window = (PFNGLXDESTROYWINDOWPROC)
++ glXGetProcAddressARB((GLubyte *) "glXDestroyWindow");
++ }
++ else if ( ext_version_supported ) {
++ choose_fbconfig = (PFNGLXCHOOSEFBCONFIGPROC)
++ glXGetProcAddressARB((GLubyte *) "glXChooseFBConfigSGIX");
++ get_visual_from_fbconfig = (PFNGLXGETVISUALFROMFBCONFIGPROC)
++ glXGetProcAddressARB((GLubyte *) "glXGetVisualFromFBConfigSGIX");
++ create_new_context = (PFNGLXCREATENEWCONTEXTPROC)
++ glXGetProcAddressARB((GLubyte *) "glXCreateContextWithConfigSGIX");
++ create_window = dummy_create_window;
++ destroy_window = dummy_destroy_window;
++ }
++ else {
++ printf( "This demo requires either GLX 1.3 or %s be supported.\n",
++ ext_name );
++ exit(1);
++ }
++
++ if ( choose_fbconfig == NULL ) {
++ printf( "glXChooseFBConfig not found!\n" );
++ exit(1);
++ }
++
++ if ( get_visual_from_fbconfig == NULL ) {
++ printf( "glXGetVisualFromFBConfig not found!\n" );
++ exit(1);
++ }
++
++ if ( create_new_context == NULL ) {
++ printf( "glXCreateNewContext not found!\n" );
++ exit(1);
++ }
++}
++
++
++/*
++ * Create an RGB, double-buffered window.
++ * Return the window and context handles.
++ */
++static void
++make_window( Display *dpy, const char *name,
++ int x, int y, int width, int height,
++ Window *winRet, GLXWindow *glxWinRet, GLXContext *ctxRet)
++{
++ int attrib[] = { GLX_DRAWABLE_TYPE, GLX_WINDOW_BIT,
++ GLX_RENDER_TYPE, GLX_RGBA_BIT,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DOUBLEBUFFER, GL_TRUE,
++ GLX_DEPTH_SIZE, 1,
++ None };
++ GLXFBConfig * fbconfig;
++ int num_configs;
++ int scrnum;
++ int i;
++ XSetWindowAttributes attr;
++ unsigned long mask;
++ Window root;
++ Window win;
++ GLXWindow glxWin;
++ GLXContext ctx;
++ XVisualInfo *visinfo;
++
++ scrnum = DefaultScreen( dpy );
++ root = RootWindow( dpy, scrnum );
++
++ init_fbconfig_functions(dpy, scrnum);
++ fbconfig = (*choose_fbconfig)(dpy, scrnum, attrib, & num_configs);
++ if (fbconfig == NULL) {
++ printf("Error: couldn't get an RGB, Double-buffered visual\n");
++ exit(1);
++ }
++
++ printf("\nThe following fbconfigs meet the requirements. The first one "
++ "will be used.\n\n");
++ for ( i = 0 ; i < num_configs ; i++ ) {
++ PrintFBConfigInfo(dpy, scrnum, fbconfig[i], GL_TRUE);
++ }
++
++ /* window attributes */
++ visinfo = (*get_visual_from_fbconfig)(dpy, fbconfig[0]);
++ assert(visinfo != NULL);
++ attr.background_pixel = 0;
++ attr.border_pixel = 0;
++ attr.colormap = XCreateColormap( dpy, root, visinfo->visual, AllocNone);
++ attr.event_mask = StructureNotifyMask | ExposureMask | KeyPressMask;
++ mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
++
++ win = XCreateWindow( dpy, root, 0, 0, width, height,
++ 0, visinfo->depth, InputOutput,
++ visinfo->visual, mask, &attr );
++
++ /* set hints and properties */
++ {
++ XSizeHints sizehints;
++ sizehints.x = x;
++ sizehints.y = y;
++ sizehints.width = width;
++ sizehints.height = height;
++ sizehints.flags = USSize | USPosition;
++ XSetNormalHints(dpy, win, &sizehints);
++ XSetStandardProperties(dpy, win, name, name,
++ None, (char **)NULL, 0, &sizehints);
++ }
++
++ glxWin = (*create_window)(dpy, fbconfig[0], win, NULL);
++
++ ctx = (*create_new_context)(dpy, fbconfig[0], GLX_RGBA_TYPE, NULL, GL_TRUE);
++ if (!ctx) {
++ printf("Error: glXCreateNewContext failed\n");
++ exit(1);
++ }
++
++ XFree(fbconfig);
++
++ *glxWinRet = glxWin;
++ *winRet = win;
++ *ctxRet = ctx;
++}
++
++
++static void
++event_loop(Display *dpy, GLXWindow win)
++{
++ while (1) {
++ while (XPending(dpy) > 0) {
++ XEvent event;
++ XNextEvent(dpy, &event);
++ switch (event.type) {
++ case Expose:
++ /* we'll redraw below */
++ break;
++ case ConfigureNotify:
++ reshape(event.xconfigure.width, event.xconfigure.height);
++ break;
++ case KeyPress:
++ {
++ char buffer[10];
++ int r, code;
++ code = XLookupKeysym(&event.xkey, 0);
++ if (code == XK_Left) {
++ view_roty += 5.0;
++ }
++ else if (code == XK_Right) {
++ view_roty -= 5.0;
++ }
++ else if (code == XK_Up) {
++ view_rotx += 5.0;
++ }
++ else if (code == XK_Down) {
++ view_rotx -= 5.0;
++ }
++ else {
++ r = XLookupString(&event.xkey, buffer, sizeof(buffer),
++ NULL, NULL);
++ if (buffer[0] == 27) {
++ /* escape */
++ return;
++ }
++ }
++ }
++ }
++ }
++
++ /* next frame */
++ angle += 2.0;
++
++ draw();
++ glXSwapBuffers(dpy, win);
++
++ /* calc framerate */
++ {
++ static int t0 = -1;
++ static int frames = 0;
++ int t = current_time();
++
++ if (t0 < 0)
++ t0 = t;
++
++ frames++;
++
++ if (t - t0 >= 5.0) {
++ GLfloat seconds = t - t0;
++ GLfloat fps = frames / seconds;
++ printf("%d frames in %3.1f seconds = %6.3f FPS\n", frames, seconds,
++ fps);
++ t0 = t;
++ frames = 0;
++ }
++ }
++ }
++}
++
++
++int
++main(int argc, char *argv[])
++{
++ Display *dpy;
++ Window win;
++ GLXWindow glxWin;
++ GLXContext ctx;
++ const char *dpyName = NULL;
++ GLboolean printInfo = GL_FALSE;
++ int i;
++
++ for (i = 1; i < argc; i++) {
++ if (strcmp(argv[i], "-display") == 0) {
++ dpyName = argv[i+1];
++ i++;
++ }
++ else if (strcmp(argv[i], "-info") == 0) {
++ printInfo = GL_TRUE;
++ }
++ }
++
++ dpy = XOpenDisplay(dpyName);
++ if (!dpy) {
++ printf("Error: couldn't open display %s\n", XDisplayName(dpyName));
++ return -1;
++ }
++
++ make_window(dpy, "glxgears", 0, 0, 300, 300, &win, &glxWin, &ctx);
++ XMapWindow(dpy, win);
++ glXMakeCurrent(dpy, glxWin, ctx);
++
++ if (printInfo) {
++ printf("GL_RENDERER = %s\n", (char *) glGetString(GL_RENDERER));
++ printf("GL_VERSION = %s\n", (char *) glGetString(GL_VERSION));
++ printf("GL_VENDOR = %s\n", (char *) glGetString(GL_VENDOR));
++ printf("GL_EXTENSIONS = %s\n", (char *) glGetString(GL_EXTENSIONS));
++ }
++
++ init();
++
++ event_loop(dpy, glxWin);
++
++ glXDestroyContext(dpy, ctx);
++ destroy_window(dpy, glxWin);
++ XDestroyWindow(dpy, win);
++ XCloseDisplay(dpy);
++
++ return 0;
++}
+diff -Naurp Mesa-7.8.1/progs/xdemos/glxgears_pixmap.c Mesa-7.8.1.patched/progs/xdemos/glxgears_pixmap.c
+--- Mesa-7.8.1/progs/xdemos/glxgears_pixmap.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/glxgears_pixmap.c 2010-06-13 13:45:06.789793146 +0200
+@@ -0,0 +1,547 @@
++/*
++ * Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
++ * Copyright (C) 2008 Red Hat, Inc All Rights Reserved.
++ *
++ * Permission is hereby granted, free of charge, to any person obtaining a
++ * copy of this software and associated documentation files (the "Software"),
++ * to deal in the Software without restriction, including without limitation
++ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
++ * and/or sell copies of the Software, and to permit persons to whom the
++ * Software is furnished to do so, subject to the following conditions:
++ *
++ * The above copyright notice and this permission notice shall be included
++ * in all copies or substantial portions of the Software.
++ *
++ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
++ * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
++ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
++ * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
++ * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
++ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
++ */
++
++/**
++ * \file glxgears_pixmap.c
++ * Yet-another-version of gears. Originally ported to GLX by Brian Paul on
++ * 23 March 2001. Modified to use fbconfigs by Ian Romanick on 10 Feb 2004.
++ *
++ * Command line options:
++ * -info print GL implementation information
++ *
++ * \author Brian Paul
++ * \author Ian Romanick <idr@us.ibm.com>
++ * \author Kristian Hoegsberg <krh@redhat.com>
++ */
++
++
++#define GLX_GLXEXT_PROTOTYPES
++
++#include <math.h>
++#include <stdlib.h>
++#include <stdio.h>
++#include <string.h>
++#include <X11/Xlib.h>
++#include <X11/keysym.h>
++#include <GL/gl.h>
++#include <GL/glx.h>
++#include <GL/glxext.h>
++#include <assert.h>
++#include "pbutil.h"
++
++#define BENCHMARK
++
++#ifdef BENCHMARK
++
++/* XXX this probably isn't very portable */
++
++#include <sys/time.h>
++#include <unistd.h>
++
++/* return current time (in seconds) */
++static int
++current_time(void)
++{
++ struct timeval tv;
++#ifdef __VMS
++ (void) gettimeofday(&tv, NULL );
++#else
++ struct timezone tz;
++ (void) gettimeofday(&tv, &tz);
++#endif
++ return (int) tv.tv_sec;
++}
++
++#else /*BENCHMARK*/
++
++/* dummy */
++static int
++current_time(void)
++{
++ return 0;
++}
++
++#endif /*BENCHMARK*/
++
++
++
++#ifndef M_PI
++#define M_PI 3.14159265
++#endif
++
++
++static GLfloat view_rotx = 20.0, view_roty = 30.0, view_rotz = 0.0;
++static GLint gear1, gear2, gear3;
++static GLfloat angle = 0.0;
++
++
++/*
++ *
++ * Draw a gear wheel. You'll probably want to call this function when
++ * building a display list since we do a lot of trig here.
++ *
++ * Input: inner_radius - radius of hole at center
++ * outer_radius - radius at center of teeth
++ * width - width of gear
++ * teeth - number of teeth
++ * tooth_depth - depth of tooth
++ */
++static void
++gear(GLfloat inner_radius, GLfloat outer_radius, GLfloat width,
++ GLint teeth, GLfloat tooth_depth)
++{
++ GLint i;
++ GLfloat r0, r1, r2;
++ GLfloat angle, da;
++ GLfloat u, v, len;
++
++ r0 = inner_radius;
++ r1 = outer_radius - tooth_depth / 2.0;
++ r2 = outer_radius + tooth_depth / 2.0;
++
++ da = 2.0 * M_PI / teeth / 4.0;
++
++ glShadeModel(GL_FLAT);
++
++ glNormal3f(0.0, 0.0, 1.0);
++
++ /* draw front face */
++ glBegin(GL_QUAD_STRIP);
++ for (i = 0; i <= teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), width * 0.5);
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), width * 0.5);
++ if (i < teeth) {
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), width * 0.5);
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ width * 0.5);
++ }
++ }
++ glEnd();
++
++ /* draw front sides of teeth */
++ glBegin(GL_QUADS);
++ da = 2.0 * M_PI / teeth / 4.0;
++ for (i = 0; i < teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), width * 0.5);
++ glVertex3f(r2 * cos(angle + da), r2 * sin(angle + da), width * 0.5);
++ glVertex3f(r2 * cos(angle + 2 * da), r2 * sin(angle + 2 * da),
++ width * 0.5);
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ width * 0.5);
++ }
++ glEnd();
++
++ glNormal3f(0.0, 0.0, -1.0);
++
++ /* draw back face */
++ glBegin(GL_QUAD_STRIP);
++ for (i = 0; i <= teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), -width * 0.5);
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), -width * 0.5);
++ if (i < teeth) {
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ -width * 0.5);
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), -width * 0.5);
++ }
++ }
++ glEnd();
++
++ /* draw back sides of teeth */
++ glBegin(GL_QUADS);
++ da = 2.0 * M_PI / teeth / 4.0;
++ for (i = 0; i < teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ -width * 0.5);
++ glVertex3f(r2 * cos(angle + 2 * da), r2 * sin(angle + 2 * da),
++ -width * 0.5);
++ glVertex3f(r2 * cos(angle + da), r2 * sin(angle + da), -width * 0.5);
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), -width * 0.5);
++ }
++ glEnd();
++
++ /* draw outward faces of teeth */
++ glBegin(GL_QUAD_STRIP);
++ for (i = 0; i < teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), width * 0.5);
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), -width * 0.5);
++ u = r2 * cos(angle + da) - r1 * cos(angle);
++ v = r2 * sin(angle + da) - r1 * sin(angle);
++ len = sqrt(u * u + v * v);
++ u /= len;
++ v /= len;
++ glNormal3f(v, -u, 0.0);
++ glVertex3f(r2 * cos(angle + da), r2 * sin(angle + da), width * 0.5);
++ glVertex3f(r2 * cos(angle + da), r2 * sin(angle + da), -width * 0.5);
++ glNormal3f(cos(angle), sin(angle), 0.0);
++ glVertex3f(r2 * cos(angle + 2 * da), r2 * sin(angle + 2 * da),
++ width * 0.5);
++ glVertex3f(r2 * cos(angle + 2 * da), r2 * sin(angle + 2 * da),
++ -width * 0.5);
++ u = r1 * cos(angle + 3 * da) - r2 * cos(angle + 2 * da);
++ v = r1 * sin(angle + 3 * da) - r2 * sin(angle + 2 * da);
++ glNormal3f(v, -u, 0.0);
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ width * 0.5);
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ -width * 0.5);
++ glNormal3f(cos(angle), sin(angle), 0.0);
++ }
++
++ glVertex3f(r1 * cos(0), r1 * sin(0), width * 0.5);
++ glVertex3f(r1 * cos(0), r1 * sin(0), -width * 0.5);
++
++ glEnd();
++
++ glShadeModel(GL_SMOOTH);
++
++ /* draw inside radius cylinder */
++ glBegin(GL_QUAD_STRIP);
++ for (i = 0; i <= teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++ glNormal3f(-cos(angle), -sin(angle), 0.0);
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), -width * 0.5);
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), width * 0.5);
++ }
++ glEnd();
++}
++
++
++static void
++draw(void)
++{
++ glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
++
++ glPushMatrix();
++ glRotatef(view_rotx, 1.0, 0.0, 0.0);
++ glRotatef(view_roty, 0.0, 1.0, 0.0);
++ glRotatef(view_rotz, 0.0, 0.0, 1.0);
++
++ glPushMatrix();
++ glTranslatef(-3.0, -2.0, 0.0);
++ glRotatef(angle, 0.0, 0.0, 1.0);
++ glCallList(gear1);
++ glPopMatrix();
++
++ glPushMatrix();
++ glTranslatef(3.1, -2.0, 0.0);
++ glRotatef(-2.0 * angle - 9.0, 0.0, 0.0, 1.0);
++ glCallList(gear2);
++ glPopMatrix();
++
++ glPushMatrix();
++ glTranslatef(-3.1, 4.2, 0.0);
++ glRotatef(-2.0 * angle - 25.0, 0.0, 0.0, 1.0);
++ glCallList(gear3);
++ glPopMatrix();
++
++ glPopMatrix();
++}
++
++
++struct gears {
++ Window win;
++ GLXContext ctx;
++ Pixmap pixmap;
++ GLXPixmap glxpixmap;
++ GC gc;
++ int width, height;
++};
++
++
++/* new window size or exposure */
++static void
++reshape(struct gears *gears, int width, int height)
++{
++ gears->width = width;
++ gears->height = height;
++}
++
++
++static void
++init(int width, int height)
++{
++ static GLfloat pos[4] = { 5.0, 5.0, 10.0, 0.0 };
++ static GLfloat red[4] = { 0.8, 0.1, 0.0, 1.0 };
++ static GLfloat green[4] = { 0.0, 0.8, 0.2, 1.0 };
++ static GLfloat blue[4] = { 0.2, 0.2, 1.0, 1.0 };
++ GLfloat h = (GLfloat) height / (GLfloat) width;
++
++ glLightfv(GL_LIGHT0, GL_POSITION, pos);
++ glEnable(GL_CULL_FACE);
++ glEnable(GL_LIGHTING);
++ glEnable(GL_LIGHT0);
++ glEnable(GL_DEPTH_TEST);
++
++ /* make the gears */
++ gear1 = glGenLists(1);
++ glNewList(gear1, GL_COMPILE);
++ glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, red);
++ gear(1.0, 4.0, 1.0, 20, 0.7);
++ glEndList();
++
++ gear2 = glGenLists(1);
++ glNewList(gear2, GL_COMPILE);
++ glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, green);
++ gear(0.5, 2.0, 2.0, 10, 0.7);
++ glEndList();
++
++ gear3 = glGenLists(1);
++ glNewList(gear3, GL_COMPILE);
++ glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, blue);
++ gear(1.3, 2.0, 0.5, 10, 0.7);
++ glEndList();
++
++ glEnable(GL_NORMALIZE);
++
++ glViewport(0, 0, (GLint) width, (GLint) height);
++ glMatrixMode(GL_PROJECTION);
++ glLoadIdentity();
++ glFrustum(-1.0, 1.0, -h, h, 5.0, 60.0);
++ glMatrixMode(GL_MODELVIEW);
++ glLoadIdentity();
++ glTranslatef(0.0, 0.0, -40.0);
++}
++
++/*
++ * Create an RGB, double-buffered window.
++ * Return the window and context handles.
++ */
++static void
++make_window( Display *dpy, const char *name,
++ int x, int y, int width, int height, struct gears *gears)
++{
++ int attrib[] = { GLX_DRAWABLE_TYPE, GLX_WINDOW_BIT,
++ GLX_RENDER_TYPE, GLX_RGBA_BIT,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DOUBLEBUFFER, GL_FALSE,
++ GLX_DEPTH_SIZE, 1,
++ None };
++ GLXFBConfig * fbconfig;
++ int num_configs;
++ int scrnum;
++ XSetWindowAttributes attr;
++ unsigned long mask;
++ Window root;
++ XVisualInfo *visinfo;
++
++ gears->width = width;
++ gears->height = height;
++
++ scrnum = DefaultScreen( dpy );
++ root = RootWindow( dpy, scrnum );
++
++ fbconfig = glXChooseFBConfig(dpy, scrnum, attrib, & num_configs);
++ if (fbconfig == NULL) {
++ printf("Error: couldn't get an RGB, Double-buffered visual\n");
++ exit(1);
++ }
++
++ /* window attributes */
++ visinfo = glXGetVisualFromFBConfig(dpy, fbconfig[0]);
++ assert(visinfo != NULL);
++ attr.background_pixel = 0;
++ attr.border_pixel = 0;
++ attr.colormap = XCreateColormap( dpy, root, visinfo->visual, AllocNone);
++ attr.event_mask = StructureNotifyMask | ExposureMask | KeyPressMask;
++ mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
++
++ gears->win = XCreateWindow( dpy, root, 0, 0, width, height,
++ 0, visinfo->depth, InputOutput,
++ visinfo->visual, mask, &attr );
++
++ /* set hints and properties */
++ {
++ XSizeHints sizehints;
++ sizehints.x = x;
++ sizehints.y = y;
++ sizehints.width = width;
++ sizehints.height = height;
++ sizehints.flags = USSize | USPosition;
++ XSetNormalHints(dpy, gears->win, &sizehints);
++ XSetStandardProperties(dpy, gears->win, name, name,
++ None, (char **)NULL, 0, &sizehints);
++ }
++
++ gears->gc = XCreateGC(dpy, gears->win, 0, NULL);
++
++ gears->pixmap = XCreatePixmap(dpy, gears->win,
++ width, height, visinfo->depth);
++ if (!gears->pixmap) {
++ printf("Error: XCreatePixmap failed\n");
++ exit(-1);
++ }
++
++ gears->glxpixmap = glXCreatePixmap(dpy, fbconfig[0], gears->pixmap, NULL);
++ if (!gears->glxpixmap) {
++ printf("Error: glXCreatePixmap failed\n");
++ exit(-1);
++ }
++
++ gears->ctx = glXCreateNewContext(dpy, fbconfig[0],
++ GLX_RGBA_TYPE, NULL, GL_TRUE);
++ if (!gears->ctx) {
++ printf("Error: glXCreateNewContext failed\n");
++ exit(1);
++ }
++
++ XFree(fbconfig);
++}
++
++
++static void
++event_loop(Display *dpy, struct gears *gears)
++{
++ int x, y;
++
++ while (1) {
++ while (XPending(dpy) > 0) {
++ XEvent event;
++ XNextEvent(dpy, &event);
++ switch (event.type) {
++ case Expose:
++ /* we'll redraw below */
++ break;
++ case ConfigureNotify:
++ reshape(gears, event.xconfigure.width, event.xconfigure.height);
++ break;
++ case KeyPress:
++ {
++ char buffer[10];
++ int r, code;
++ code = XLookupKeysym(&event.xkey, 0);
++ if (code == XK_Left) {
++ view_roty += 5.0;
++ }
++ else if (code == XK_Right) {
++ view_roty -= 5.0;
++ }
++ else if (code == XK_Up) {
++ view_rotx += 5.0;
++ }
++ else if (code == XK_Down) {
++ view_rotx -= 5.0;
++ }
++ else {
++ r = XLookupString(&event.xkey, buffer, sizeof(buffer),
++ NULL, NULL);
++ if (buffer[0] == 27) {
++ /* escape */
++ return;
++ }
++ }
++ }
++ }
++ }
++
++ /* next frame */
++ angle += 2.0;
++
++ draw();
++ glFinish();
++
++ for (x = 0; x < gears->width; x += 100)
++ for (y = 0; y < gears->width; y += 100)
++ XCopyArea(dpy, gears->pixmap, gears->win, gears->gc,
++ 50, 50, 100, 100, x, y);
++
++ /* calc framerate */
++ {
++ static int t0 = -1;
++ static int frames = 0;
++ int t = current_time();
++
++ if (t0 < 0)
++ t0 = t;
++
++ frames++;
++
++ if (t - t0 >= 5.0) {
++ GLfloat seconds = t - t0;
++ GLfloat fps = frames / seconds;
++ printf("%d frames in %3.1f seconds = %6.3f FPS\n", frames, seconds,
++ fps);
++ t0 = t;
++ frames = 0;
++ }
++ }
++ }
++}
++
++
++int
++main(int argc, char *argv[])
++{
++ Display *dpy;
++ const char *dpyName = NULL;
++ GLboolean printInfo = GL_FALSE;
++ struct gears gears;
++ int i, width = 200, height = 200;
++
++ for (i = 1; i < argc; i++) {
++ if (strcmp(argv[i], "-display") == 0) {
++ dpyName = argv[i+1];
++ i++;
++ }
++ else if (strcmp(argv[i], "-info") == 0) {
++ printInfo = GL_TRUE;
++ }
++ }
++
++ dpy = XOpenDisplay(dpyName);
++ if (!dpy) {
++ printf("Error: couldn't open display %s\n", XDisplayName(dpyName));
++ return -1;
++ }
++
++ make_window(dpy, "glxgears", 0, 0, width, height, &gears);
++ XMapWindow(dpy, gears.win);
++ glXMakeCurrent(dpy, gears.glxpixmap, gears.ctx);
++
++ if (printInfo) {
++ printf("GL_RENDERER = %s\n", (char *) glGetString(GL_RENDERER));
++ printf("GL_VERSION = %s\n", (char *) glGetString(GL_VERSION));
++ printf("GL_VENDOR = %s\n", (char *) glGetString(GL_VENDOR));
++ printf("GL_EXTENSIONS = %s\n", (char *) glGetString(GL_EXTENSIONS));
++ }
++
++ init(width, height);
++
++ event_loop(dpy, &gears);
++
++ glXDestroyContext(dpy, gears.ctx);
++ XDestroyWindow(dpy, gears.win);
++ glXDestroyPixmap(dpy, gears.pixmap);
++ XFreePixmap(dpy, gears.pixmap);
++ XCloseDisplay(dpy);
++
++ return 0;
++}
+diff -Naurp Mesa-7.8.1/progs/xdemos/glxheads.c Mesa-7.8.1.patched/progs/xdemos/glxheads.c
+--- Mesa-7.8.1/progs/xdemos/glxheads.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/glxheads.c 2010-06-13 13:45:06.789793146 +0200
+@@ -0,0 +1,313 @@
++
++/*
++ * Exercise multiple GLX connections on multiple X displays.
++ * Direct GLX contexts are attempted first, then indirect.
++ * Each window will display a spinning green triangle.
++ *
++ * Copyright (C) 2000 Brian Paul All Rights Reserved.
++ *
++ * Permission is hereby granted, free of charge, to any person obtaining a
++ * copy of this software and associated documentation files (the "Software"),
++ * to deal in the Software without restriction, including without limitation
++ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
++ * and/or sell copies of the Software, and to permit persons to whom the
++ * Software is furnished to do so, subject to the following conditions:
++ *
++ * The above copyright notice and this permission notice shall be included
++ * in all copies or substantial portions of the Software.
++ *
++ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
++ * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
++ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
++ * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
++ * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
++ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
++ */
++
++
++#include <GL/gl.h>
++#include <GL/glx.h>
++#include <stdio.h>
++#include <stdlib.h>
++#include <string.h>
++#include <unistd.h>
++
++
++
++/*
++ * Each display/window/context:
++ */
++struct head {
++ char DisplayName[1000];
++ Display *Dpy;
++ Window Win;
++ GLXContext Context;
++ float Angle;
++ char Renderer[1000];
++ char Vendor[1000];
++ char Version[1000];
++};
++
++
++#define MAX_HEADS 20
++static struct head Heads[MAX_HEADS];
++static int NumHeads = 0;
++
++
++static void
++Error(const char *display, const char *msg)
++{
++ fprintf(stderr, "Error on display %s - %s\n", XDisplayName(display), msg);
++ exit(1);
++}
++
++
++static struct head *
++AddHead(const char *displayName)
++{
++ Display *dpy;
++ Window win;
++ GLXContext ctx;
++ int attrib[] = { GLX_RGBA,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DOUBLEBUFFER,
++ None };
++ int scrnum;
++ XSetWindowAttributes attr;
++ unsigned long mask;
++ Window root;
++ XVisualInfo *visinfo;
++ int width = 300, height = 300;
++ int xpos = 10, ypos = 10;
++
++ if (NumHeads >= MAX_HEADS)
++ return NULL;
++
++ dpy = XOpenDisplay(displayName);
++ if (!dpy) {
++ Error(displayName, "Unable to open display");
++ return NULL;
++ }
++
++ scrnum = DefaultScreen(dpy);
++ root = RootWindow(dpy, scrnum);
++
++ visinfo = glXChooseVisual(dpy, scrnum, attrib);
++ if (!visinfo) {
++ Error(displayName, "Unable to find RGB, double-buffered visual");
++ return NULL;
++ }
++
++ /* window attributes */
++ attr.background_pixel = 0;
++ attr.border_pixel = 0;
++ attr.colormap = XCreateColormap(dpy, root, visinfo->visual, AllocNone);
++ attr.event_mask = StructureNotifyMask | ExposureMask | KeyPressMask;
++ mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
++
++ win = XCreateWindow(dpy, root, 0, 0, width, height,
++ 0, visinfo->depth, InputOutput,
++ visinfo->visual, mask, &attr);
++ if (!win) {
++ Error(displayName, "Couldn't create window");
++ return NULL;
++ }
++
++ {
++ XSizeHints sizehints;
++ sizehints.x = xpos;
++ sizehints.y = ypos;
++ sizehints.width = width;
++ sizehints.height = height;
++ sizehints.flags = USSize | USPosition;
++ XSetNormalHints(dpy, win, &sizehints);
++ XSetStandardProperties(dpy, win, displayName, displayName,
++ None, (char **)NULL, 0, &sizehints);
++ }
++
++
++ ctx = glXCreateContext(dpy, visinfo, NULL, True);
++ if (!ctx) {
++ Error(displayName, "Couldn't create GLX context");
++ return NULL;
++ }
++
++ XMapWindow(dpy, win);
++
++ if (!glXMakeCurrent(dpy, win, ctx)) {
++ Error(displayName, "glXMakeCurrent failed");
++ printf("glXMakeCurrent failed in Redraw()\n");
++ return NULL;
++ }
++
++ /* save the info for this head */
++ {
++ struct head *h = &Heads[NumHeads];
++ const char * tmp;
++
++ if (strlen(displayName) + 1 > sizeof(h->DisplayName)) {
++ Error(displayName, "displayName string length overflow");
++ return NULL;
++ }
++ strcpy(h->DisplayName, displayName);
++
++ h->Dpy = dpy;
++ h->Win = win;
++ h->Context = ctx;
++ h->Angle = 0.0;
++
++ tmp = (char *) glGetString(GL_VERSION);
++ if (strlen(tmp) + 1 > sizeof(h->Version)) {
++ Error(displayName, "GL_VERSION string length overflow");
++ return NULL;
++ }
++ strcpy(h->Version, tmp);
++
++ tmp = (char *) glGetString(GL_VENDOR);
++ if (strlen(tmp) + 1 > sizeof(h->Vendor)) {
++ Error(displayName, "GL_VENDOR string length overflow");
++ return NULL;
++ }
++ strcpy(h->Vendor, tmp);
++
++ tmp = (char *) glGetString(GL_RENDERER);
++ if (strlen(tmp) + 1 > sizeof(h->Renderer)) {
++ Error(displayName, "GL_RENDERER string length overflow");
++ return NULL;
++ }
++ strcpy(h->Renderer, tmp);
++
++ NumHeads++;
++ return &Heads[NumHeads-1];
++ }
++
++}
++
++
++static void
++Redraw(struct head *h)
++{
++ if (!glXMakeCurrent(h->Dpy, h->Win, h->Context)) {
++ Error(h->DisplayName, "glXMakeCurrent failed");
++ printf("glXMakeCurrent failed in Redraw()\n");
++ return;
++ }
++
++ h->Angle += 1.0;
++
++ glShadeModel(GL_FLAT);
++ glClearColor(0.5, 0.5, 0.5, 1.0);
++ glClear(GL_COLOR_BUFFER_BIT);
++
++ /* draw green triangle */
++ glColor3f(0.0, 1.0, 0.0);
++ glPushMatrix();
++ glRotatef(h->Angle, 0, 0, 1);
++ glBegin(GL_TRIANGLES);
++ glVertex2f(0, 0.8);
++ glVertex2f(-0.8, -0.7);
++ glVertex2f(0.8, -0.7);
++ glEnd();
++ glPopMatrix();
++
++ glXSwapBuffers(h->Dpy, h->Win);
++}
++
++
++
++static void
++Resize(const struct head *h, unsigned int width, unsigned int height)
++{
++ if (!glXMakeCurrent(h->Dpy, h->Win, h->Context)) {
++ Error(h->DisplayName, "glXMakeCurrent failed in Resize()");
++ return;
++ }
++ glFlush();
++ glViewport(0, 0, width, height);
++ glMatrixMode(GL_PROJECTION);
++ glLoadIdentity();
++ glOrtho(-1.0, 1.0, -1.0, 1.0, -1.0, 1.0);
++}
++
++
++
++static void
++EventLoop(void)
++{
++ while (1) {
++ int i;
++ for (i = 0; i < NumHeads; i++) {
++ struct head *h = &Heads[i];
++ while (XPending(h->Dpy) > 0) {
++ XEvent event;
++ XNextEvent(h->Dpy, &event);
++ if (event.xany.window == h->Win) {
++ switch (event.type) {
++ case Expose:
++ Redraw(h);
++ break;
++ case ConfigureNotify:
++ Resize(h, event.xconfigure.width, event.xconfigure.height);
++ break;
++ case KeyPress:
++ return;
++ default:
++ /*no-op*/ ;
++ }
++ }
++ else {
++ printf("window mismatch\n");
++ }
++ }
++ Redraw(h);
++ }
++ usleep(1);
++ }
++}
++
++
++
++static void
++PrintInfo(const struct head *h)
++{
++ printf("Name: %s\n", h->DisplayName);
++ printf(" Display: %p\n", (void *) h->Dpy);
++ printf(" Window: 0x%x\n", (int) h->Win);
++ printf(" Context: 0x%lx\n", (long) h->Context);
++ printf(" GL_VERSION: %s\n", h->Version);
++ printf(" GL_VENDOR: %s\n", h->Vendor);
++ printf(" GL_RENDERER: %s\n", h->Renderer);
++}
++
++
++int
++main(int argc, char *argv[])
++{
++ int i;
++ if (argc == 1) {
++ struct head *h;
++ printf("glxheads: exercise multiple GLX connections (any key = exit)\n");
++ printf("Usage:\n");
++ printf(" glxheads xdisplayname ...\n");
++ printf("Example:\n");
++ printf(" glxheads :0 mars:0 venus:1\n");
++
++ h = AddHead(XDisplayName(NULL));
++ if (h)
++ PrintInfo(h);
++ }
++ else {
++ for (i = 1; i < argc; i++) {
++ const char *name = argv[i];
++ struct head *h = AddHead(name);
++ if (h) {
++ PrintInfo(h);
++ }
++ }
++ }
++
++ EventLoop();
++ return 0;
++}
+diff -Naurp Mesa-7.8.1/progs/xdemos/glxinfo.c Mesa-7.8.1.patched/progs/xdemos/glxinfo.c
+--- Mesa-7.8.1/progs/xdemos/glxinfo.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/glxinfo.c 2010-06-13 13:45:06.788792936 +0200
+@@ -0,0 +1,1195 @@
++/*
++ * Copyright (C) 1999-2006 Brian Paul All Rights Reserved.
++ *
++ * Permission is hereby granted, free of charge, to any person obtaining a
++ * copy of this software and associated documentation files (the "Software"),
++ * to deal in the Software without restriction, including without limitation
++ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
++ * and/or sell copies of the Software, and to permit persons to whom the
++ * Software is furnished to do so, subject to the following conditions:
++ *
++ * The above copyright notice and this permission notice shall be included
++ * in all copies or substantial portions of the Software.
++ *
++ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
++ * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
++ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
++ * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
++ * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
++ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
++ */
++
++
++/*
++ * This program is a work-alike of the IRIX glxinfo program.
++ * Command line options:
++ * -t print wide table
++ * -v print verbose information
++ * -display DisplayName specify the X display to interogate
++ * -b only print ID of "best" visual on screen 0
++ * -i use indirect rendering connection only
++ * -l print interesting OpenGL limits (added 5 Sep 2002)
++ *
++ * Brian Paul 26 January 2000
++ */
++
++#define GLX_GLXEXT_PROTOTYPES
++
++#include <X11/Xlib.h>
++#include <X11/Xutil.h>
++#include <GL/gl.h>
++#include <GL/glx.h>
++#include <stdio.h>
++#include <string.h>
++#include <stdlib.h>
++
++
++#ifndef GLX_NONE_EXT
++#define GLX_NONE_EXT 0x8000
++#endif
++
++#ifndef GLX_TRANSPARENT_RGB
++#define GLX_TRANSPARENT_RGB 0x8008
++#endif
++
++#ifndef GLX_RGBA_BIT
++#define GLX_RGBA_BIT 0x00000001
++#endif
++
++#ifndef GLX_COLOR_INDEX_BIT
++#define GLX_COLOR_INDEX_BIT 0x00000002
++#endif
++
++typedef enum
++{
++ Normal,
++ Wide,
++ Verbose
++} InfoMode;
++
++
++struct visual_attribs
++{
++ /* X visual attribs */
++ int id;
++ int klass;
++ int depth;
++ int redMask, greenMask, blueMask;
++ int colormapSize;
++ int bitsPerRGB;
++
++ /* GL visual attribs */
++ int supportsGL;
++ int transparentType;
++ int transparentRedValue;
++ int transparentGreenValue;
++ int transparentBlueValue;
++ int transparentAlphaValue;
++ int transparentIndexValue;
++ int bufferSize;
++ int level;
++ int render_type;
++ int doubleBuffer;
++ int stereo;
++ int auxBuffers;
++ int redSize, greenSize, blueSize, alphaSize;
++ int depthSize;
++ int stencilSize;
++ int accumRedSize, accumGreenSize, accumBlueSize, accumAlphaSize;
++ int numSamples, numMultisample;
++ int visualCaveat;
++};
++
++
++/*
++ * Print a list of extensions, with word-wrapping.
++ */
++static void
++print_extension_list(const char *ext)
++{
++ const char *indentString = " ";
++ const int indent = 4;
++ const int max = 79;
++ int width, i, j;
++
++ if (!ext || !ext[0])
++ return;
++
++ width = indent;
++ printf("%s", indentString);
++ i = j = 0;
++ while (1) {
++ if (ext[j] == ' ' || ext[j] == 0) {
++ /* found end of an extension name */
++ const int len = j - i;
++ if (width + len > max) {
++ /* start a new line */
++ printf("\n");
++ width = indent;
++ printf("%s", indentString);
++ }
++ /* print the extension name between ext[i] and ext[j] */
++ while (i < j) {
++ printf("%c", ext[i]);
++ i++;
++ }
++ /* either we're all done, or we'll continue with next extension */
++ width += len + 1;
++ if (ext[j] == 0) {
++ break;
++ }
++ else {
++ i++;
++ j++;
++ if (ext[j] == 0)
++ break;
++ printf(", ");
++ width += 2;
++ }
++ }
++ j++;
++ }
++ printf("\n");
++}
++
++
++static void
++print_display_info(Display *dpy)
++{
++ printf("name of display: %s\n", DisplayString(dpy));
++}
++
++
++/**
++ * Print interesting limits for vertex/fragment programs.
++ */
++static void
++print_program_limits(GLenum target)
++{
++#if defined(GL_ARB_vertex_program) || defined(GL_ARB_fragment_program)
++ struct token_name {
++ GLenum token;
++ const char *name;
++ };
++ static const struct token_name common_limits[] = {
++ { GL_MAX_PROGRAM_INSTRUCTIONS_ARB, "GL_MAX_PROGRAM_INSTRUCTIONS_ARB" },
++ { GL_MAX_PROGRAM_NATIVE_INSTRUCTIONS_ARB, "GL_MAX_PROGRAM_NATIVE_INSTRUCTIONS_ARB" },
++ { GL_MAX_PROGRAM_TEMPORARIES_ARB, "GL_MAX_PROGRAM_TEMPORARIES_ARB" },
++ { GL_MAX_PROGRAM_NATIVE_TEMPORARIES_ARB, "GL_MAX_PROGRAM_NATIVE_TEMPORARIES_ARB" },
++ { GL_MAX_PROGRAM_PARAMETERS_ARB, "GL_MAX_PROGRAM_PARAMETERS_ARB" },
++ { GL_MAX_PROGRAM_NATIVE_PARAMETERS_ARB, "GL_MAX_PROGRAM_NATIVE_PARAMETERS_ARB" },
++ { GL_MAX_PROGRAM_ATTRIBS_ARB, "GL_MAX_PROGRAM_ATTRIBS_ARB" },
++ { GL_MAX_PROGRAM_NATIVE_ATTRIBS_ARB, "GL_MAX_PROGRAM_NATIVE_ATTRIBS_ARB" },
++ { GL_MAX_PROGRAM_ADDRESS_REGISTERS_ARB, "GL_MAX_PROGRAM_ADDRESS_REGISTERS_ARB" },
++ { GL_MAX_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB, "GL_MAX_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB" },
++ { GL_MAX_PROGRAM_LOCAL_PARAMETERS_ARB, "GL_MAX_PROGRAM_LOCAL_PARAMETERS_ARB" },
++ { GL_MAX_PROGRAM_ENV_PARAMETERS_ARB, "GL_MAX_PROGRAM_ENV_PARAMETERS_ARB" },
++ { (GLenum) 0, NULL }
++ };
++ static const struct token_name fragment_limits[] = {
++ { GL_MAX_PROGRAM_ALU_INSTRUCTIONS_ARB, "GL_MAX_PROGRAM_ALU_INSTRUCTIONS_ARB" },
++ { GL_MAX_PROGRAM_TEX_INSTRUCTIONS_ARB, "GL_MAX_PROGRAM_TEX_INSTRUCTIONS_ARB" },
++ { GL_MAX_PROGRAM_TEX_INDIRECTIONS_ARB, "GL_MAX_PROGRAM_TEX_INDIRECTIONS_ARB" },
++ { GL_MAX_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB, "GL_MAX_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB" },
++ { GL_MAX_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB, "GL_MAX_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB" },
++ { GL_MAX_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB, "GL_MAX_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB" },
++ { (GLenum) 0, NULL }
++ };
++
++ PFNGLGETPROGRAMIVARBPROC GetProgramivARB_func = (PFNGLGETPROGRAMIVARBPROC)
++ glXGetProcAddressARB((GLubyte *) "glGetProgramivARB");
++
++ GLint max[1];
++ int i;
++
++ if (target == GL_VERTEX_PROGRAM_ARB) {
++ printf(" GL_VERTEX_PROGRAM_ARB:\n");
++ }
++ else if (target == GL_FRAGMENT_PROGRAM_ARB) {
++ printf(" GL_FRAGMENT_PROGRAM_ARB:\n");
++ }
++ else {
++ return; /* something's wrong */
++ }
++
++ for (i = 0; common_limits[i].token; i++) {
++ GetProgramivARB_func(target, common_limits[i].token, max);
++ if (glGetError() == GL_NO_ERROR) {
++ printf(" %s = %d\n", common_limits[i].name, max[0]);
++ }
++ }
++ if (target == GL_FRAGMENT_PROGRAM_ARB) {
++ for (i = 0; fragment_limits[i].token; i++) {
++ GetProgramivARB_func(target, fragment_limits[i].token, max);
++ if (glGetError() == GL_NO_ERROR) {
++ printf(" %s = %d\n", fragment_limits[i].name, max[0]);
++ }
++ }
++ }
++#endif /* GL_ARB_vertex_program / GL_ARB_fragment_program */
++}
++
++
++/**
++ * Print interesting limits for vertex/fragment shaders.
++ */
++static void
++print_shader_limits(GLenum target)
++{
++ struct token_name {
++ GLenum token;
++ const char *name;
++ };
++#if defined(GL_ARB_vertex_shader)
++ static const struct token_name vertex_limits[] = {
++ { GL_MAX_VERTEX_UNIFORM_COMPONENTS_ARB, "GL_MAX_VERTEX_UNIFORM_COMPONENTS_ARB" },
++ { GL_MAX_VARYING_FLOATS_ARB, "GL_MAX_VARYING_FLOATS_ARB" },
++ { GL_MAX_VERTEX_ATTRIBS_ARB, "GL_MAX_VERTEX_ATTRIBS_ARB" },
++ { GL_MAX_TEXTURE_IMAGE_UNITS_ARB, "GL_MAX_TEXTURE_IMAGE_UNITS_ARB" },
++ { GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB, "GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB" },
++ { GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS_ARB, "GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS_ARB" },
++ { GL_MAX_TEXTURE_COORDS_ARB, "GL_MAX_TEXTURE_COORDS_ARB" },
++ { (GLenum) 0, NULL }
++ };
++#endif
++#if defined(GL_ARB_fragment_shader)
++ static const struct token_name fragment_limits[] = {
++ { GL_MAX_FRAGMENT_UNIFORM_COMPONENTS_ARB, "GL_MAX_FRAGMENT_UNIFORM_COMPONENTS_ARB" },
++ { GL_MAX_TEXTURE_COORDS_ARB, "GL_MAX_TEXTURE_COORDS_ARB" },
++ { GL_MAX_TEXTURE_IMAGE_UNITS_ARB, "GL_MAX_TEXTURE_IMAGE_UNITS_ARB" },
++ { (GLenum) 0, NULL }
++ };
++#endif
++ GLint max[1];
++ int i;
++
++#if defined(GL_ARB_vertex_shader)
++ if (target == GL_VERTEX_SHADER_ARB) {
++ printf(" GL_VERTEX_SHADER_ARB:\n");
++ for (i = 0; vertex_limits[i].token; i++) {
++ glGetIntegerv(vertex_limits[i].token, max);
++ if (glGetError() == GL_NO_ERROR) {
++ printf(" %s = %d\n", vertex_limits[i].name, max[0]);
++ }
++ }
++ }
++#endif
++#if defined(GL_ARB_fragment_shader)
++ if (target == GL_FRAGMENT_SHADER_ARB) {
++ printf(" GL_FRAGMENT_SHADER_ARB:\n");
++ for (i = 0; fragment_limits[i].token; i++) {
++ glGetIntegerv(fragment_limits[i].token, max);
++ if (glGetError() == GL_NO_ERROR) {
++ printf(" %s = %d\n", fragment_limits[i].name, max[0]);
++ }
++ }
++ }
++#endif
++}
++
++
++/**
++ * Print interesting OpenGL implementation limits.
++ */
++static void
++print_limits(const char *extensions)
++{
++ struct token_name {
++ GLuint count;
++ GLenum token;
++ const char *name;
++ };
++ static const struct token_name limits[] = {
++ { 1, GL_MAX_ATTRIB_STACK_DEPTH, "GL_MAX_ATTRIB_STACK_DEPTH" },
++ { 1, GL_MAX_CLIENT_ATTRIB_STACK_DEPTH, "GL_MAX_CLIENT_ATTRIB_STACK_DEPTH" },
++ { 1, GL_MAX_CLIP_PLANES, "GL_MAX_CLIP_PLANES" },
++ { 1, GL_MAX_COLOR_MATRIX_STACK_DEPTH, "GL_MAX_COLOR_MATRIX_STACK_DEPTH" },
++ { 1, GL_MAX_ELEMENTS_VERTICES, "GL_MAX_ELEMENTS_VERTICES" },
++ { 1, GL_MAX_ELEMENTS_INDICES, "GL_MAX_ELEMENTS_INDICES" },
++ { 1, GL_MAX_EVAL_ORDER, "GL_MAX_EVAL_ORDER" },
++ { 1, GL_MAX_LIGHTS, "GL_MAX_LIGHTS" },
++ { 1, GL_MAX_LIST_NESTING, "GL_MAX_LIST_NESTING" },
++ { 1, GL_MAX_MODELVIEW_STACK_DEPTH, "GL_MAX_MODELVIEW_STACK_DEPTH" },
++ { 1, GL_MAX_NAME_STACK_DEPTH, "GL_MAX_NAME_STACK_DEPTH" },
++ { 1, GL_MAX_PIXEL_MAP_TABLE, "GL_MAX_PIXEL_MAP_TABLE" },
++ { 1, GL_MAX_PROJECTION_STACK_DEPTH, "GL_MAX_PROJECTION_STACK_DEPTH" },
++ { 1, GL_MAX_TEXTURE_STACK_DEPTH, "GL_MAX_TEXTURE_STACK_DEPTH" },
++ { 1, GL_MAX_TEXTURE_SIZE, "GL_MAX_TEXTURE_SIZE" },
++ { 1, GL_MAX_3D_TEXTURE_SIZE, "GL_MAX_3D_TEXTURE_SIZE" },
++ { 2, GL_MAX_VIEWPORT_DIMS, "GL_MAX_VIEWPORT_DIMS" },
++ { 2, GL_ALIASED_LINE_WIDTH_RANGE, "GL_ALIASED_LINE_WIDTH_RANGE" },
++ { 2, GL_SMOOTH_LINE_WIDTH_RANGE, "GL_SMOOTH_LINE_WIDTH_RANGE" },
++ { 2, GL_ALIASED_POINT_SIZE_RANGE, "GL_ALIASED_POINT_SIZE_RANGE" },
++ { 2, GL_SMOOTH_POINT_SIZE_RANGE, "GL_SMOOTH_POINT_SIZE_RANGE" },
++#if defined(GL_ARB_texture_cube_map)
++ { 1, GL_MAX_CUBE_MAP_TEXTURE_SIZE_ARB, "GL_MAX_CUBE_MAP_TEXTURE_SIZE_ARB" },
++#endif
++#if defined(GLX_NV_texture_rectangle)
++ { 1, GL_MAX_RECTANGLE_TEXTURE_SIZE_NV, "GL_MAX_RECTANGLE_TEXTURE_SIZE_NV" },
++#endif
++#if defined(GL_ARB_texture_compression)
++ { 1, GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB, "GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB" },
++#endif
++#if defined(GL_ARB_multitexture)
++ { 1, GL_MAX_TEXTURE_UNITS_ARB, "GL_MAX_TEXTURE_UNITS_ARB" },
++#endif
++#if defined(GL_EXT_texture_lod_bias)
++ { 1, GL_MAX_TEXTURE_LOD_BIAS_EXT, "GL_MAX_TEXTURE_LOD_BIAS_EXT" },
++#endif
++#if defined(GL_EXT_texture_filter_anisotropic)
++ { 1, GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT, "GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT" },
++#endif
++#if defined(GL_ARB_draw_buffers)
++ { 1, GL_MAX_DRAW_BUFFERS_ARB, "GL_MAX_DRAW_BUFFERS_ARB" },
++#endif
++ { 0, (GLenum) 0, NULL }
++ };
++ GLint i, max[2];
++
++ printf("OpenGL limits:\n");
++ for (i = 0; limits[i].count; i++) {
++ glGetIntegerv(limits[i].token, max);
++ if (glGetError() == GL_NO_ERROR) {
++ if (limits[i].count == 1)
++ printf(" %s = %d\n", limits[i].name, max[0]);
++ else /* XXX fix if we ever query something with more than 2 values */
++ printf(" %s = %d, %d\n", limits[i].name, max[0], max[1]);
++ }
++ }
++
++ /* these don't fit into the above mechanism, unfortunately */
++ glGetConvolutionParameteriv(GL_CONVOLUTION_2D, GL_MAX_CONVOLUTION_WIDTH, max);
++ glGetConvolutionParameteriv(GL_CONVOLUTION_2D, GL_MAX_CONVOLUTION_HEIGHT, max+1);
++ if (glGetError() == GL_NONE) {
++ printf(" GL_MAX_CONVOLUTION_WIDTH/HEIGHT = %d, %d\n", max[0], max[1]);
++ }
++
++#if defined(GL_ARB_vertex_program)
++ if (strstr(extensions, "GL_ARB_vertex_program")) {
++ print_program_limits(GL_VERTEX_PROGRAM_ARB);
++ }
++#endif
++#if defined(GL_ARB_fragment_program)
++ if (strstr(extensions, "GL_ARB_fragment_program")) {
++ print_program_limits(GL_FRAGMENT_PROGRAM_ARB);
++ }
++#endif
++#if defined(GL_ARB_vertex_shader)
++ if (strstr(extensions, "GL_ARB_vertex_shader")) {
++ print_shader_limits(GL_VERTEX_SHADER_ARB);
++ }
++#endif
++#if defined(GL_ARB_fragment_shader)
++ if (strstr(extensions, "GL_ARB_fragment_shader")) {
++ print_shader_limits(GL_FRAGMENT_SHADER_ARB);
++ }
++#endif
++}
++
++
++static void
++print_screen_info(Display *dpy, int scrnum, Bool allowDirect, GLboolean limits)
++{
++ Window win;
++ int attribSingle[] = {
++ GLX_RGBA,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ None };
++ int attribDouble[] = {
++ GLX_RGBA,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DOUBLEBUFFER,
++ None };
++
++ XSetWindowAttributes attr;
++ unsigned long mask;
++ Window root;
++ GLXContext ctx = NULL;
++ XVisualInfo *visinfo;
++ int width = 100, height = 100;
++
++ root = RootWindow(dpy, scrnum);
++
++ /*
++ * Find a basic GLX visual. We'll then create a rendering context and
++ * query various info strings.
++ */
++ visinfo = glXChooseVisual(dpy, scrnum, attribSingle);
++ if (!visinfo)
++ visinfo = glXChooseVisual(dpy, scrnum, attribDouble);
++
++ if (visinfo)
++ ctx = glXCreateContext( dpy, visinfo, NULL, allowDirect );
++
++#ifdef GLX_VERSION_1_3
++ /* Try glXChooseFBConfig() if glXChooseVisual didn't work.
++ * XXX when would that happen?
++ */
++ if (!visinfo) {
++ int fbAttribSingle[] = {
++ GLX_RENDER_TYPE, GLX_RGBA_BIT,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DOUBLEBUFFER, GL_FALSE,
++ None };
++ int fbAttribDouble[] = {
++ GLX_RENDER_TYPE, GLX_RGBA_BIT,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DOUBLEBUFFER, GL_TRUE,
++ None };
++ GLXFBConfig *configs = NULL;
++ int nConfigs;
++
++ configs = glXChooseFBConfig(dpy, scrnum, fbAttribSingle, &nConfigs);
++ if (!configs)
++ configs = glXChooseFBConfig(dpy, scrnum, fbAttribDouble, &nConfigs);
++
++ if (configs) {
++ visinfo = glXGetVisualFromFBConfig(dpy, configs[0]);
++ ctx = glXCreateNewContext(dpy, configs[0], GLX_RGBA_TYPE, NULL, allowDirect);
++ XFree(configs);
++ }
++ }
++#endif
++
++ if (!visinfo) {
++ fprintf(stderr, "Error: couldn't find RGB GLX visual or fbconfig\n");
++ return;
++ }
++
++ if (!ctx) {
++ fprintf(stderr, "Error: glXCreateContext failed\n");
++ XFree(visinfo);
++ return;
++ }
++
++ attr.background_pixel = 0;
++ attr.border_pixel = 0;
++ attr.colormap = XCreateColormap(dpy, root, visinfo->visual, AllocNone);
++ attr.event_mask = StructureNotifyMask | ExposureMask;
++ mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
++ win = XCreateWindow(dpy, root, 0, 0, width, height,
++ 0, visinfo->depth, InputOutput,
++ visinfo->visual, mask, &attr);
++
++ if (glXMakeCurrent(dpy, win, ctx)) {
++ const char *serverVendor = glXQueryServerString(dpy, scrnum, GLX_VENDOR);
++ const char *serverVersion = glXQueryServerString(dpy, scrnum, GLX_VERSION);
++ const char *serverExtensions = glXQueryServerString(dpy, scrnum, GLX_EXTENSIONS);
++ const char *clientVendor = glXGetClientString(dpy, GLX_VENDOR);
++ const char *clientVersion = glXGetClientString(dpy, GLX_VERSION);
++ const char *clientExtensions = glXGetClientString(dpy, GLX_EXTENSIONS);
++ const char *glxExtensions = glXQueryExtensionsString(dpy, scrnum);
++ const char *glVendor = (const char *) glGetString(GL_VENDOR);
++ const char *glRenderer = (const char *) glGetString(GL_RENDERER);
++ const char *glVersion = (const char *) glGetString(GL_VERSION);
++ const char *glExtensions = (const char *) glGetString(GL_EXTENSIONS);
++ int glxVersionMajor;
++ int glxVersionMinor;
++ char *displayName = NULL;
++ char *colon = NULL, *period = NULL;
++
++ if (! glXQueryVersion( dpy, & glxVersionMajor, & glxVersionMinor )) {
++ fprintf(stderr, "Error: glXQueryVersion failed\n");
++ exit(1);
++ }
++
++ /* Strip the screen number from the display name, if present. */
++ if (!(displayName = (char *) malloc(strlen(DisplayString(dpy)) + 1))) {
++ fprintf(stderr, "Error: malloc() failed\n");
++ exit(1);
++ }
++ strcpy(displayName, DisplayString(dpy));
++ colon = strrchr(displayName, ':');
++ if (colon) {
++ period = strchr(colon, '.');
++ if (period)
++ *period = '\0';
++ }
++ printf("display: %s screen: %d\n", displayName, scrnum);
++ free(displayName);
++ printf("direct rendering: ");
++ if (glXIsDirect(dpy, ctx)) {
++ printf("Yes\n");
++ } else {
++ if (!allowDirect) {
++ printf("No (-i specified)\n");
++ } else if (getenv("LIBGL_ALWAYS_INDIRECT")) {
++ printf("No (LIBGL_ALWAYS_INDIRECT set)\n");
++ } else {
++ printf("No (If you want to find out why, try setting "
++ "LIBGL_DEBUG=verbose)\n");
++ }
++ }
++ printf("server glx vendor string: %s\n", serverVendor);
++ printf("server glx version string: %s\n", serverVersion);
++ printf("server glx extensions:\n");
++ print_extension_list(serverExtensions);
++ printf("client glx vendor string: %s\n", clientVendor);
++ printf("client glx version string: %s\n", clientVersion);
++ printf("client glx extensions:\n");
++ print_extension_list(clientExtensions);
++ printf("GLX version: %u.%u\n", glxVersionMajor, glxVersionMinor);
++ printf("GLX extensions:\n");
++ print_extension_list(glxExtensions);
++ printf("OpenGL vendor string: %s\n", glVendor);
++ printf("OpenGL renderer string: %s\n", glRenderer);
++ printf("OpenGL version string: %s\n", glVersion);
++#ifdef GL_VERSION_2_0
++ if (glVersion[0] >= '2' && glVersion[1] == '.') {
++ char *v = (char *) glGetString(GL_SHADING_LANGUAGE_VERSION);
++ printf("OpenGL shading language version string: %s\n", v);
++ }
++#endif
++
++ printf("OpenGL extensions:\n");
++ print_extension_list(glExtensions);
++ if (limits)
++ print_limits(glExtensions);
++ }
++ else {
++ fprintf(stderr, "Error: glXMakeCurrent failed\n");
++ }
++
++ glXDestroyContext(dpy, ctx);
++ XFree(visinfo);
++ XDestroyWindow(dpy, win);
++}
++
++
++static const char *
++visual_class_name(int cls)
++{
++ switch (cls) {
++ case StaticColor:
++ return "StaticColor";
++ case PseudoColor:
++ return "PseudoColor";
++ case StaticGray:
++ return "StaticGray";
++ case GrayScale:
++ return "GrayScale";
++ case TrueColor:
++ return "TrueColor";
++ case DirectColor:
++ return "DirectColor";
++ default:
++ return "";
++ }
++}
++
++
++static const char *
++visual_class_abbrev(int cls)
++{
++ switch (cls) {
++ case StaticColor:
++ return "sc";
++ case PseudoColor:
++ return "pc";
++ case StaticGray:
++ return "sg";
++ case GrayScale:
++ return "gs";
++ case TrueColor:
++ return "tc";
++ case DirectColor:
++ return "dc";
++ default:
++ return "";
++ }
++}
++
++static const char *
++visual_render_type_name(int type)
++{
++ switch (type) {
++ case GLX_RGBA_BIT:
++ return "rgba";
++ case GLX_COLOR_INDEX_BIT:
++ return "ci";
++ case GLX_RGBA_BIT | GLX_COLOR_INDEX_BIT:
++ return "rgba|ci";
++ default:
++ return "";
++ }
++}
++
++static GLboolean
++get_visual_attribs(Display *dpy, XVisualInfo *vInfo,
++ struct visual_attribs *attribs)
++{
++ const char *ext = glXQueryExtensionsString(dpy, vInfo->screen);
++ int rgba;
++
++ memset(attribs, 0, sizeof(struct visual_attribs));
++
++ attribs->id = vInfo->visualid;
++#if defined(__cplusplus) || defined(c_plusplus)
++ attribs->klass = vInfo->c_class;
++#else
++ attribs->klass = vInfo->class;
++#endif
++ attribs->depth = vInfo->depth;
++ attribs->redMask = vInfo->red_mask;
++ attribs->greenMask = vInfo->green_mask;
++ attribs->blueMask = vInfo->blue_mask;
++ attribs->colormapSize = vInfo->colormap_size;
++ attribs->bitsPerRGB = vInfo->bits_per_rgb;
++
++ if (glXGetConfig(dpy, vInfo, GLX_USE_GL, &attribs->supportsGL) != 0 ||
++ !attribs->supportsGL)
++ return GL_FALSE;
++ glXGetConfig(dpy, vInfo, GLX_BUFFER_SIZE, &attribs->bufferSize);
++ glXGetConfig(dpy, vInfo, GLX_LEVEL, &attribs->level);
++ glXGetConfig(dpy, vInfo, GLX_RGBA, &rgba);
++ if (rgba)
++ attribs->render_type = GLX_RGBA_BIT;
++ else
++ attribs->render_type = GLX_COLOR_INDEX_BIT;
++
++ glXGetConfig(dpy, vInfo, GLX_DOUBLEBUFFER, &attribs->doubleBuffer);
++ glXGetConfig(dpy, vInfo, GLX_STEREO, &attribs->stereo);
++ glXGetConfig(dpy, vInfo, GLX_AUX_BUFFERS, &attribs->auxBuffers);
++ glXGetConfig(dpy, vInfo, GLX_RED_SIZE, &attribs->redSize);
++ glXGetConfig(dpy, vInfo, GLX_GREEN_SIZE, &attribs->greenSize);
++ glXGetConfig(dpy, vInfo, GLX_BLUE_SIZE, &attribs->blueSize);
++ glXGetConfig(dpy, vInfo, GLX_ALPHA_SIZE, &attribs->alphaSize);
++ glXGetConfig(dpy, vInfo, GLX_DEPTH_SIZE, &attribs->depthSize);
++ glXGetConfig(dpy, vInfo, GLX_STENCIL_SIZE, &attribs->stencilSize);
++ glXGetConfig(dpy, vInfo, GLX_ACCUM_RED_SIZE, &attribs->accumRedSize);
++ glXGetConfig(dpy, vInfo, GLX_ACCUM_GREEN_SIZE, &attribs->accumGreenSize);
++ glXGetConfig(dpy, vInfo, GLX_ACCUM_BLUE_SIZE, &attribs->accumBlueSize);
++ glXGetConfig(dpy, vInfo, GLX_ACCUM_ALPHA_SIZE, &attribs->accumAlphaSize);
++
++ /* get transparent pixel stuff */
++ glXGetConfig(dpy, vInfo,GLX_TRANSPARENT_TYPE, &attribs->transparentType);
++ if (attribs->transparentType == GLX_TRANSPARENT_RGB) {
++ glXGetConfig(dpy, vInfo, GLX_TRANSPARENT_RED_VALUE, &attribs->transparentRedValue);
++ glXGetConfig(dpy, vInfo, GLX_TRANSPARENT_GREEN_VALUE, &attribs->transparentGreenValue);
++ glXGetConfig(dpy, vInfo, GLX_TRANSPARENT_BLUE_VALUE, &attribs->transparentBlueValue);
++ glXGetConfig(dpy, vInfo, GLX_TRANSPARENT_ALPHA_VALUE, &attribs->transparentAlphaValue);
++ }
++ else if (attribs->transparentType == GLX_TRANSPARENT_INDEX) {
++ glXGetConfig(dpy, vInfo, GLX_TRANSPARENT_INDEX_VALUE, &attribs->transparentIndexValue);
++ }
++
++ /* multisample attribs */
++#ifdef GLX_ARB_multisample
++ if (ext && strstr(ext, "GLX_ARB_multisample")) {
++ glXGetConfig(dpy, vInfo, GLX_SAMPLE_BUFFERS_ARB, &attribs->numMultisample);
++ glXGetConfig(dpy, vInfo, GLX_SAMPLES_ARB, &attribs->numSamples);
++ }
++#endif
++ else {
++ attribs->numSamples = 0;
++ attribs->numMultisample = 0;
++ }
++
++#if defined(GLX_EXT_visual_rating)
++ if (ext && strstr(ext, "GLX_EXT_visual_rating")) {
++ glXGetConfig(dpy, vInfo, GLX_VISUAL_CAVEAT_EXT, &attribs->visualCaveat);
++ }
++ else {
++ attribs->visualCaveat = GLX_NONE_EXT;
++ }
++#else
++ attribs->visualCaveat = 0;
++#endif
++
++ return GL_TRUE;
++}
++
++#ifdef GLX_VERSION_1_3
++
++static int
++glx_token_to_visual_class(int visual_type)
++{
++ switch (visual_type) {
++ case GLX_TRUE_COLOR:
++ return TrueColor;
++ case GLX_DIRECT_COLOR:
++ return DirectColor;
++ case GLX_PSEUDO_COLOR:
++ return PseudoColor;
++ case GLX_STATIC_COLOR:
++ return StaticColor;
++ case GLX_GRAY_SCALE:
++ return GrayScale;
++ case GLX_STATIC_GRAY:
++ return StaticGray;
++ case GLX_NONE:
++ default:
++ return None;
++ }
++}
++
++static GLboolean
++get_fbconfig_attribs(Display *dpy, GLXFBConfig fbconfig,
++ struct visual_attribs *attribs)
++{
++ int visual_type;
++
++ memset(attribs, 0, sizeof(struct visual_attribs));
++
++ glXGetFBConfigAttrib(dpy, fbconfig, GLX_FBCONFIG_ID, &attribs->id);
++
++#if 0
++ attribs->depth = vInfo->depth;
++ attribs->redMask = vInfo->red_mask;
++ attribs->greenMask = vInfo->green_mask;
++ attribs->blueMask = vInfo->blue_mask;
++ attribs->colormapSize = vInfo->colormap_size;
++ attribs->bitsPerRGB = vInfo->bits_per_rgb;
++#endif
++
++ glXGetFBConfigAttrib(dpy, fbconfig, GLX_X_VISUAL_TYPE, &visual_type);
++ attribs->klass = glx_token_to_visual_class(visual_type);
++
++ glXGetFBConfigAttrib(dpy, fbconfig, GLX_BUFFER_SIZE, &attribs->bufferSize);
++ glXGetFBConfigAttrib(dpy, fbconfig, GLX_LEVEL, &attribs->level);
++ glXGetFBConfigAttrib(dpy, fbconfig, GLX_RENDER_TYPE, &attribs->render_type);
++ glXGetFBConfigAttrib(dpy, fbconfig, GLX_DOUBLEBUFFER, &attribs->doubleBuffer);
++ glXGetFBConfigAttrib(dpy, fbconfig, GLX_STEREO, &attribs->stereo);
++ glXGetFBConfigAttrib(dpy, fbconfig, GLX_AUX_BUFFERS, &attribs->auxBuffers);
++
++ glXGetFBConfigAttrib(dpy, fbconfig, GLX_RED_SIZE, &attribs->redSize);
++ glXGetFBConfigAttrib(dpy, fbconfig, GLX_GREEN_SIZE, &attribs->greenSize);
++ glXGetFBConfigAttrib(dpy, fbconfig, GLX_BLUE_SIZE, &attribs->blueSize);
++ glXGetFBConfigAttrib(dpy, fbconfig, GLX_ALPHA_SIZE, &attribs->alphaSize);
++ glXGetFBConfigAttrib(dpy, fbconfig, GLX_DEPTH_SIZE, &attribs->depthSize);
++ glXGetFBConfigAttrib(dpy, fbconfig, GLX_STENCIL_SIZE, &attribs->stencilSize);
++
++ glXGetFBConfigAttrib(dpy, fbconfig, GLX_ACCUM_RED_SIZE, &attribs->accumRedSize);
++ glXGetFBConfigAttrib(dpy, fbconfig, GLX_ACCUM_GREEN_SIZE, &attribs->accumGreenSize);
++ glXGetFBConfigAttrib(dpy, fbconfig, GLX_ACCUM_BLUE_SIZE, &attribs->accumBlueSize);
++ glXGetFBConfigAttrib(dpy, fbconfig, GLX_ACCUM_ALPHA_SIZE, &attribs->accumAlphaSize);
++
++ /* get transparent pixel stuff */
++ glXGetFBConfigAttrib(dpy, fbconfig,GLX_TRANSPARENT_TYPE, &attribs->transparentType);
++ if (attribs->transparentType == GLX_TRANSPARENT_RGB) {
++ glXGetFBConfigAttrib(dpy, fbconfig, GLX_TRANSPARENT_RED_VALUE, &attribs->transparentRedValue);
++ glXGetFBConfigAttrib(dpy, fbconfig, GLX_TRANSPARENT_GREEN_VALUE, &attribs->transparentGreenValue);
++ glXGetFBConfigAttrib(dpy, fbconfig, GLX_TRANSPARENT_BLUE_VALUE, &attribs->transparentBlueValue);
++ glXGetFBConfigAttrib(dpy, fbconfig, GLX_TRANSPARENT_ALPHA_VALUE, &attribs->transparentAlphaValue);
++ }
++ else if (attribs->transparentType == GLX_TRANSPARENT_INDEX) {
++ glXGetFBConfigAttrib(dpy, fbconfig, GLX_TRANSPARENT_INDEX_VALUE, &attribs->transparentIndexValue);
++ }
++
++ glXGetFBConfigAttrib(dpy, fbconfig, GLX_SAMPLE_BUFFERS, &attribs->numMultisample);
++ glXGetFBConfigAttrib(dpy, fbconfig, GLX_SAMPLES, &attribs->numSamples);
++ glXGetFBConfigAttrib(dpy, fbconfig, GLX_CONFIG_CAVEAT, &attribs->visualCaveat);
++
++ return GL_TRUE;
++}
++
++#endif
++
++
++
++static void
++print_visual_attribs_verbose(const struct visual_attribs *attribs)
++{
++ printf("Visual ID: %x depth=%d class=%s\n",
++ attribs->id, attribs->depth, visual_class_name(attribs->klass));
++ printf(" bufferSize=%d level=%d renderType=%s doubleBuffer=%d stereo=%d\n",
++ attribs->bufferSize, attribs->level,
++ visual_render_type_name(attribs->render_type),
++ attribs->doubleBuffer, attribs->stereo);
++ printf(" rgba: redSize=%d greenSize=%d blueSize=%d alphaSize=%d\n",
++ attribs->redSize, attribs->greenSize,
++ attribs->blueSize, attribs->alphaSize);
++ printf(" auxBuffers=%d depthSize=%d stencilSize=%d\n",
++ attribs->auxBuffers, attribs->depthSize, attribs->stencilSize);
++ printf(" accum: redSize=%d greenSize=%d blueSize=%d alphaSize=%d\n",
++ attribs->accumRedSize, attribs->accumGreenSize,
++ attribs->accumBlueSize, attribs->accumAlphaSize);
++ printf(" multiSample=%d multiSampleBuffers=%d\n",
++ attribs->numSamples, attribs->numMultisample);
++#ifdef GLX_EXT_visual_rating
++ if (attribs->visualCaveat == GLX_NONE_EXT || attribs->visualCaveat == 0)
++ printf(" visualCaveat=None\n");
++ else if (attribs->visualCaveat == GLX_SLOW_VISUAL_EXT)
++ printf(" visualCaveat=Slow\n");
++ else if (attribs->visualCaveat == GLX_NON_CONFORMANT_VISUAL_EXT)
++ printf(" visualCaveat=Nonconformant\n");
++#endif
++ if (attribs->transparentType == GLX_NONE) {
++ printf(" Opaque.\n");
++ }
++ else if (attribs->transparentType == GLX_TRANSPARENT_RGB) {
++ printf(" Transparent RGB: Red=%d Green=%d Blue=%d Alpha=%d\n",attribs->transparentRedValue,attribs->transparentGreenValue,attribs->transparentBlueValue,attribs->transparentAlphaValue);
++ }
++ else if (attribs->transparentType == GLX_TRANSPARENT_INDEX) {
++ printf(" Transparent index=%d\n",attribs->transparentIndexValue);
++ }
++}
++
++
++static void
++print_visual_attribs_short_header(void)
++{
++ printf(" visual x bf lv rg d st colorbuffer ax dp st accumbuffer ms cav\n");
++ printf(" id dep cl sp sz l ci b ro r g b a bf th cl r g b a ns b eat\n");
++ printf("----------------------------------------------------------------------\n");
++}
++
++
++static void
++print_visual_attribs_short(const struct visual_attribs *attribs)
++{
++ char *caveat = NULL;
++#ifdef GLX_EXT_visual_rating
++ if (attribs->visualCaveat == GLX_NONE_EXT || attribs->visualCaveat == 0)
++ caveat = "None";
++ else if (attribs->visualCaveat == GLX_SLOW_VISUAL_EXT)
++ caveat = "Slow";
++ else if (attribs->visualCaveat == GLX_NON_CONFORMANT_VISUAL_EXT)
++ caveat = "Ncon";
++ else
++ caveat = "None";
++#else
++ caveat = "None";
++#endif
++
++ printf("0x%02x %2d %2s %2d %2d %2d %c%c %c %c %2d %2d %2d %2d %2d %2d %2d",
++ attribs->id,
++ attribs->depth,
++ visual_class_abbrev(attribs->klass),
++ attribs->transparentType != GLX_NONE,
++ attribs->bufferSize,
++ attribs->level,
++ (attribs->render_type & GLX_RGBA_BIT) ? 'r' : ' ',
++ (attribs->render_type & GLX_COLOR_INDEX_BIT) ? 'c' : ' ',
++ attribs->doubleBuffer ? 'y' : '.',
++ attribs->stereo ? 'y' : '.',
++ attribs->redSize, attribs->greenSize,
++ attribs->blueSize, attribs->alphaSize,
++ attribs->auxBuffers,
++ attribs->depthSize,
++ attribs->stencilSize
++ );
++
++ printf(" %2d %2d %2d %2d %2d %1d %s\n",
++ attribs->accumRedSize, attribs->accumGreenSize,
++ attribs->accumBlueSize, attribs->accumAlphaSize,
++ attribs->numSamples, attribs->numMultisample,
++ caveat
++ );
++}
++
++
++static void
++print_visual_attribs_long_header(void)
++{
++ printf("Vis Vis Visual Trans buff lev render DB ste r g b a aux dep ste accum buffers MS MS\n");
++ printf(" ID Depth Type parent size el type reo sz sz sz sz buf th ncl r g b a num bufs\n");
++ printf("----------------------------------------------------------------------------------------------------\n");
++}
++
++
++static void
++print_visual_attribs_long(const struct visual_attribs *attribs)
++{
++ printf("0x%2x %2d %-11s %2d %2d %2d %4s %3d %3d %3d %3d %3d %3d",
++ attribs->id,
++ attribs->depth,
++ visual_class_name(attribs->klass),
++ attribs->transparentType != GLX_NONE,
++ attribs->bufferSize,
++ attribs->level,
++ visual_render_type_name(attribs->render_type),
++ attribs->doubleBuffer,
++ attribs->stereo,
++ attribs->redSize, attribs->greenSize,
++ attribs->blueSize, attribs->alphaSize
++ );
++
++ printf(" %3d %4d %2d %3d %3d %3d %3d %2d %2d\n",
++ attribs->auxBuffers,
++ attribs->depthSize,
++ attribs->stencilSize,
++ attribs->accumRedSize, attribs->accumGreenSize,
++ attribs->accumBlueSize, attribs->accumAlphaSize,
++ attribs->numSamples, attribs->numMultisample
++ );
++}
++
++
++static void
++print_visual_info(Display *dpy, int scrnum, InfoMode mode)
++{
++ XVisualInfo theTemplate;
++ XVisualInfo *visuals;
++ int numVisuals, numGlxVisuals;
++ long mask;
++ int i;
++ struct visual_attribs attribs;
++
++ /* get list of all visuals on this screen */
++ theTemplate.screen = scrnum;
++ mask = VisualScreenMask;
++ visuals = XGetVisualInfo(dpy, mask, &theTemplate, &numVisuals);
++
++ numGlxVisuals = 0;
++ for (i = 0; i < numVisuals; i++) {
++ if (get_visual_attribs(dpy, &visuals[i], &attribs))
++ numGlxVisuals++;
++ }
++
++ if (numGlxVisuals == 0)
++ return;
++
++ printf("%d GLX Visuals\n", numGlxVisuals);
++
++ if (mode == Normal)
++ print_visual_attribs_short_header();
++ else if (mode == Wide)
++ print_visual_attribs_long_header();
++
++ for (i = 0; i < numVisuals; i++) {
++ if (!get_visual_attribs(dpy, &visuals[i], &attribs))
++ continue;
++
++ if (mode == Verbose)
++ print_visual_attribs_verbose(&attribs);
++ else if (mode == Normal)
++ print_visual_attribs_short(&attribs);
++ else if (mode == Wide)
++ print_visual_attribs_long(&attribs);
++ }
++ printf("\n");
++
++ XFree(visuals);
++}
++
++#ifdef GLX_VERSION_1_3
++
++static void
++print_fbconfig_info(Display *dpy, int scrnum, InfoMode mode)
++{
++ int numFBConfigs = 0;
++ struct visual_attribs attribs;
++ GLXFBConfig *fbconfigs;
++ int i;
++
++ /* get list of all fbconfigs on this screen */
++ fbconfigs = glXGetFBConfigs(dpy, scrnum, &numFBConfigs);
++
++ if (numFBConfigs == 0) {
++ XFree(fbconfigs);
++ return;
++ }
++
++ printf("%d GLXFBConfigs:\n", numFBConfigs);
++ if (mode == Normal)
++ print_visual_attribs_short_header();
++ else if (mode == Wide)
++ print_visual_attribs_long_header();
++
++ for (i = 0; i < numFBConfigs; i++) {
++ get_fbconfig_attribs(dpy, fbconfigs[i], &attribs);
++
++ if (mode == Verbose)
++ print_visual_attribs_verbose(&attribs);
++ else if (mode == Normal)
++ print_visual_attribs_short(&attribs);
++ else if (mode == Wide)
++ print_visual_attribs_long(&attribs);
++ }
++ printf("\n");
++
++ XFree(fbconfigs);
++}
++
++#endif
++
++/*
++ * Stand-alone Mesa doesn't really implement the GLX protocol so it
++ * doesn't really know the GLX attributes associated with an X visual.
++ * The first time a visual is presented to Mesa's pseudo-GLX it
++ * attaches ancilliary buffers to it (like depth and stencil).
++ * But that usually only works if glXChooseVisual is used.
++ * This function calls glXChooseVisual() to sort of "prime the pump"
++ * for Mesa's GLX so that the visuals that get reported actually
++ * reflect what applications will see.
++ * This has no effect when using true GLX.
++ */
++static void
++mesa_hack(Display *dpy, int scrnum)
++{
++ static int attribs[] = {
++ GLX_RGBA,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DEPTH_SIZE, 1,
++ GLX_STENCIL_SIZE, 1,
++ GLX_ACCUM_RED_SIZE, 1,
++ GLX_ACCUM_GREEN_SIZE, 1,
++ GLX_ACCUM_BLUE_SIZE, 1,
++ GLX_ACCUM_ALPHA_SIZE, 1,
++ GLX_DOUBLEBUFFER,
++ None
++ };
++ XVisualInfo *visinfo;
++
++ visinfo = glXChooseVisual(dpy, scrnum, attribs);
++ if (visinfo)
++ XFree(visinfo);
++}
++
++
++/*
++ * Examine all visuals to find the so-called best one.
++ * We prefer deepest RGBA buffer with depth, stencil and accum
++ * that has no caveats.
++ */
++static int
++find_best_visual(Display *dpy, int scrnum)
++{
++ XVisualInfo theTemplate;
++ XVisualInfo *visuals;
++ int numVisuals;
++ long mask;
++ int i;
++ struct visual_attribs bestVis;
++
++ /* get list of all visuals on this screen */
++ theTemplate.screen = scrnum;
++ mask = VisualScreenMask;
++ visuals = XGetVisualInfo(dpy, mask, &theTemplate, &numVisuals);
++
++ /* init bestVis with first visual info */
++ get_visual_attribs(dpy, &visuals[0], &bestVis);
++
++ /* try to find a "better" visual */
++ for (i = 1; i < numVisuals; i++) {
++ struct visual_attribs vis;
++
++ get_visual_attribs(dpy, &visuals[i], &vis);
++
++ /* always skip visuals with caveats */
++ if (vis.visualCaveat != GLX_NONE_EXT)
++ continue;
++
++ /* see if this vis is better than bestVis */
++ if ((!bestVis.supportsGL && vis.supportsGL) ||
++ (bestVis.visualCaveat != GLX_NONE_EXT) ||
++ (!(bestVis.render_type & GLX_RGBA_BIT) && (vis.render_type & GLX_RGBA_BIT)) ||
++ (!bestVis.doubleBuffer && vis.doubleBuffer) ||
++ (bestVis.redSize < vis.redSize) ||
++ (bestVis.greenSize < vis.greenSize) ||
++ (bestVis.blueSize < vis.blueSize) ||
++ (bestVis.alphaSize < vis.alphaSize) ||
++ (bestVis.depthSize < vis.depthSize) ||
++ (bestVis.stencilSize < vis.stencilSize) ||
++ (bestVis.accumRedSize < vis.accumRedSize)) {
++ /* found a better visual */
++ bestVis = vis;
++ }
++ }
++
++ XFree(visuals);
++
++ return bestVis.id;
++}
++
++
++static void
++usage(void)
++{
++ printf("Usage: glxinfo [-v] [-t] [-h] [-i] [-b] [-display <dname>]\n");
++ printf("\t-v: Print visuals info in verbose form.\n");
++ printf("\t-t: Print verbose table.\n");
++ printf("\t-display <dname>: Print GLX visuals on specified server.\n");
++ printf("\t-h: This information.\n");
++ printf("\t-i: Force an indirect rendering context.\n");
++ printf("\t-b: Find the 'best' visual and print its number.\n");
++ printf("\t-l: Print interesting OpenGL limits.\n");
++}
++
++
++int
++main(int argc, char *argv[])
++{
++ char *displayName = NULL;
++ Display *dpy;
++ int numScreens, scrnum;
++ InfoMode mode = Normal;
++ GLboolean findBest = GL_FALSE;
++ GLboolean limits = GL_FALSE;
++ Bool allowDirect = True;
++ int i;
++
++ for (i = 1; i < argc; i++) {
++ if (strcmp(argv[i], "-display") == 0 && i + 1 < argc) {
++ displayName = argv[i + 1];
++ i++;
++ }
++ else if (strcmp(argv[i], "-t") == 0) {
++ mode = Wide;
++ }
++ else if (strcmp(argv[i], "-v") == 0) {
++ mode = Verbose;
++ }
++ else if (strcmp(argv[i], "-b") == 0) {
++ findBest = GL_TRUE;
++ }
++ else if (strcmp(argv[i], "-i") == 0) {
++ allowDirect = False;
++ }
++ else if (strcmp(argv[i], "-l") == 0) {
++ limits = GL_TRUE;
++ }
++ else if (strcmp(argv[i], "-h") == 0) {
++ usage();
++ return 0;
++ }
++ else {
++ printf("Unknown option `%s'\n", argv[i]);
++ usage();
++ return 0;
++ }
++ }
++
++ dpy = XOpenDisplay(displayName);
++ if (!dpy) {
++ fprintf(stderr, "Error: unable to open display %s\n", XDisplayName(displayName));
++ return -1;
++ }
++
++ if (findBest) {
++ int b;
++ mesa_hack(dpy, 0);
++ b = find_best_visual(dpy, 0);
++ printf("%d\n", b);
++ }
++ else {
++ numScreens = ScreenCount(dpy);
++ print_display_info(dpy);
++ for (scrnum = 0; scrnum < numScreens; scrnum++) {
++ mesa_hack(dpy, scrnum);
++ print_screen_info(dpy, scrnum, allowDirect, limits);
++ printf("\n");
++ print_visual_info(dpy, scrnum, mode);
++#ifdef GLX_VERSION_1_3
++ print_fbconfig_info(dpy, scrnum, mode);
++#endif
++ if (scrnum + 1 < numScreens)
++ printf("\n\n");
++ }
++ }
++
++ XCloseDisplay(dpy);
++
++ return 0;
++}
+diff -Naurp Mesa-7.8.1/progs/xdemos/glxpbdemo.c Mesa-7.8.1.patched/progs/xdemos/glxpbdemo.c
+--- Mesa-7.8.1/progs/xdemos/glxpbdemo.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/glxpbdemo.c 2010-06-13 13:45:06.789793146 +0200
+@@ -0,0 +1,431 @@
++
++/*
++ * This program demonstrates how to do "off-screen" rendering using
++ * the GLX pixel buffer extension.
++ *
++ * Written by Brian Paul for the "OpenGL and Window System Integration"
++ * course presented at SIGGRAPH '97. Updated on 5 October 2002.
++ *
++ * Updated on 31 January 2004 to use native GLX by
++ * Andrew P. Lentvorski, Jr. <bsder@allcaps.org>
++ *
++ * Usage:
++ * glxpbdemo width height imgfile
++ * Where:
++ * width is the width, in pixels, of the image to generate.
++ * height is the height, in pixels, of the image to generate.
++ * imgfile is the name of the PPM image file to write.
++ *
++ *
++ * This demo draws 3-D boxes with random orientation.
++ *
++ * On machines such as the SGI Indigo you may have to reconfigure your
++ * display/X server to enable pbuffers. Look in the /usr/gfx/ucode/MGRAS/vof/
++ * directory for display configurations with the _pbuf suffix. Use
++ * setmon -x <vof> to configure your X server and display for pbuffers.
++ *
++ * O2 systems seem to support pbuffers well.
++ *
++ */
++
++#include <string.h>
++#include <stdio.h>
++#include <stdlib.h>
++#include <X11/Xlib.h>
++#include <GL/glx.h>
++
++/* Some ugly global vars */
++static GLXFBConfig gFBconfig = 0;
++static Display *gDpy = NULL;
++static int gScreen = 0;
++static GLXPbuffer gPBuffer = 0;
++static int gWidth, gHeight;
++
++
++/*
++ * Test for appropriate version of GLX to run this program
++ * Input: dpy - the X display
++ * screen - screen number
++ * Return: 0 = GLX not available.
++ * 1 = GLX available.
++ */
++static int
++RuntimeQueryGLXVersion(Display *dpy, int screen)
++{
++#if defined(GLX_VERSION_1_3) || defined(GLX_VERSION_1_4)
++ char *glxversion;
++
++ glxversion = (char *) glXGetClientString(dpy, GLX_VERSION);
++ if (!(strstr(glxversion, "1.3") || strstr(glxversion, "1.4")))
++ return 0;
++
++ glxversion = (char *) glXQueryServerString(dpy, screen, GLX_VERSION);
++ if (!(strstr(glxversion, "1.3") || strstr(glxversion, "1.4")))
++ return 0;
++
++ return 1;
++#else
++ return 0;
++#endif
++}
++
++
++
++/*
++ * Create the pbuffer and return a GLXPbuffer handle.
++ */
++static GLXPbuffer
++MakePbuffer( Display *dpy, int screen, int width, int height )
++{
++ GLXFBConfig *fbConfigs;
++ GLXFBConfig chosenFBConfig;
++ GLXPbuffer pBuffer = None;
++
++ int nConfigs;
++ int fbconfigid;
++
++ int fbAttribs[] = {
++ GLX_RENDER_TYPE, GLX_RGBA_BIT,
++ GLX_DEPTH_SIZE, 1,
++ GLX_DRAWABLE_TYPE, GLX_PIXMAP_BIT | GLX_PBUFFER_BIT,
++ None
++ };
++
++ int pbAttribs[] = {
++ GLX_PBUFFER_WIDTH, 0,
++ GLX_PBUFFER_HEIGHT, 0,
++ GLX_LARGEST_PBUFFER, False,
++ GLX_PRESERVED_CONTENTS, False,
++ None
++ };
++
++ pbAttribs[1] = width;
++ pbAttribs[3] = height;
++
++ fbConfigs = glXChooseFBConfig(dpy, screen, fbAttribs, &nConfigs);
++
++ if (0 == nConfigs || !fbConfigs) {
++ printf("Error: glxChooseFBConfig failed\n");
++ XFree(fbConfigs);
++ XCloseDisplay(dpy);
++ return 0;
++ }
++
++ chosenFBConfig = fbConfigs[0];
++
++ glXGetFBConfigAttrib(dpy, chosenFBConfig, GLX_FBCONFIG_ID, &fbconfigid);
++ printf("Chose 0x%x as fbconfigid\n", fbconfigid);
++
++ /* Create the pbuffer using first fbConfig in the list that works. */
++ pBuffer = glXCreatePbuffer(dpy, chosenFBConfig, pbAttribs);
++
++ if (pBuffer) {
++ gFBconfig = chosenFBConfig;
++ gWidth = width;
++ gHeight = height;
++ }
++
++ XFree(fbConfigs);
++
++ return pBuffer;
++}
++
++
++
++/*
++ * Do all the X / GLX setup stuff.
++ */
++static int
++Setup(int width, int height)
++{
++#if defined(GLX_VERSION_1_3) || defined(GLX_VERSION_1_4)
++ GLXContext glCtx;
++
++ /* Open the X display */
++ gDpy = XOpenDisplay(NULL);
++ if (!gDpy) {
++ printf("Error: couldn't open default X display.\n");
++ return 0;
++ }
++
++ /* Get default screen */
++ gScreen = DefaultScreen(gDpy);
++
++ /* Test that GLX is available */
++ if (!RuntimeQueryGLXVersion(gDpy, gScreen)) {
++ printf("Error: GLX 1.3 or 1.4 not available\n");
++ XCloseDisplay(gDpy);
++ return 0;
++ }
++
++ /* Create Pbuffer */
++ gPBuffer = MakePbuffer( gDpy, gScreen, width, height );
++ if (gPBuffer==None) {
++ printf("Error: couldn't create pbuffer\n");
++ XCloseDisplay(gDpy);
++ return 0;
++ }
++
++ /* Create GLX context */
++ glCtx = glXCreateNewContext(gDpy, gFBconfig, GLX_RGBA_TYPE, NULL, True);
++ if (glCtx) {
++ if (!glXIsDirect(gDpy, glCtx)) {
++ printf("Warning: using indirect GLXContext\n");
++ }
++ }
++ else {
++ printf("Error: Couldn't create GLXContext\n");
++ XCloseDisplay(gDpy);
++ return 0;
++ }
++
++ /* Bind context to pbuffer */
++ if (!glXMakeCurrent(gDpy, gPBuffer, glCtx)) {
++ printf("Error: glXMakeCurrent failed\n");
++ XCloseDisplay(gDpy);
++ return 0;
++ }
++
++ return 1; /* Success!! */
++#else
++ printf("Error: GLX version 1.3 or 1.4 not available at compile time\n");
++ return 0;
++#endif
++}
++
++
++
++/* One-time GL setup */
++static void
++InitGL(void)
++{
++ static GLfloat pos[4] = {0.0, 0.0, 10.0, 0.0};
++ glEnable(GL_LIGHTING);
++ glEnable(GL_LIGHT0);
++ glLightfv(GL_LIGHT0, GL_POSITION, pos);
++ glEnable(GL_NORMALIZE);
++ glEnable(GL_DEPTH_TEST);
++ glEnable(GL_CULL_FACE);
++
++ glViewport(0, 0, gWidth, gHeight);
++ glMatrixMode( GL_PROJECTION );
++ glLoadIdentity();
++ glFrustum( -1.0, 1.0, -1.0, 1.0, 5.0, 25.0 );
++ glMatrixMode( GL_MODELVIEW );
++ glLoadIdentity();
++ glTranslatef( 0.0, 0.0, -15.0 );
++
++}
++
++
++/* Return random float in [0,1] */
++static float
++Random(void)
++{
++ int i = rand();
++ return (float) (i % 1000) / 1000.0;
++}
++
++
++static void
++RandomColor(void)
++{
++ GLfloat c[4];
++ c[0] = Random();
++ c[1] = Random();
++ c[2] = Random();
++ c[3] = 1.0;
++ glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, c);
++}
++
++
++/* This function borrowed from Mark Kilgard's GLUT */
++static void
++drawBox(GLfloat x0, GLfloat x1, GLfloat y0, GLfloat y1,
++ GLfloat z0, GLfloat z1, GLenum type)
++{
++ static GLfloat n[6][3] =
++ {
++ {-1.0, 0.0, 0.0},
++ {0.0, 1.0, 0.0},
++ {1.0, 0.0, 0.0},
++ {0.0, -1.0, 0.0},
++ {0.0, 0.0, 1.0},
++ {0.0, 0.0, -1.0}
++ };
++ static GLint faces[6][4] =
++ {
++ {0, 1, 2, 3},
++ {3, 2, 6, 7},
++ {7, 6, 5, 4},
++ {4, 5, 1, 0},
++ {5, 6, 2, 1},
++ {7, 4, 0, 3}
++ };
++ GLfloat v[8][3], tmp;
++ GLint i;
++
++ if (x0 > x1) {
++ tmp = x0;
++ x0 = x1;
++ x1 = tmp;
++ }
++ if (y0 > y1) {
++ tmp = y0;
++ y0 = y1;
++ y1 = tmp;
++ }
++ if (z0 > z1) {
++ tmp = z0;
++ z0 = z1;
++ z1 = tmp;
++ }
++ v[0][0] = v[1][0] = v[2][0] = v[3][0] = x0;
++ v[4][0] = v[5][0] = v[6][0] = v[7][0] = x1;
++ v[0][1] = v[1][1] = v[4][1] = v[5][1] = y0;
++ v[2][1] = v[3][1] = v[6][1] = v[7][1] = y1;
++ v[0][2] = v[3][2] = v[4][2] = v[7][2] = z0;
++ v[1][2] = v[2][2] = v[5][2] = v[6][2] = z1;
++
++ for (i = 0; i < 6; i++) {
++ glBegin(type);
++ glNormal3fv(&n[i][0]);
++ glVertex3fv(&v[faces[i][0]][0]);
++ glVertex3fv(&v[faces[i][1]][0]);
++ glVertex3fv(&v[faces[i][2]][0]);
++ glVertex3fv(&v[faces[i][3]][0]);
++ glEnd();
++ }
++}
++
++
++
++/* Render a scene */
++static void
++Render(void)
++{
++ int NumBoxes = 100;
++ int i;
++
++ InitGL();
++ glClearColor(0.2, 0.2, 0.9, 0.0);
++ glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
++
++ for (i=0;i<NumBoxes;i++) {
++ float tx = -2.0 + 4.0 * Random();
++ float ty = -2.0 + 4.0 * Random();
++ float tz = 4.0 - 16.0 * Random();
++ float sx = 0.1 + Random() * 0.4;
++ float sy = 0.1 + Random() * 0.4;
++ float sz = 0.1 + Random() * 0.4;
++ float rx = Random();
++ float ry = Random();
++ float rz = Random();
++ float ra = Random() * 360.0;
++ glPushMatrix();
++ glTranslatef(tx, ty, tz);
++ glRotatef(ra, rx, ry, rz);
++ glScalef(sx, sy, sz);
++ RandomColor();
++ drawBox(-1.0, 1.0, -1.0, 1.0, -1.0, 1.0, GL_POLYGON);
++ glPopMatrix();
++ }
++
++ glFinish();
++}
++
++
++
++static void
++WriteFile(const char *filename)
++{
++ FILE *f;
++ GLubyte *image;
++ int i;
++
++ image = malloc(gWidth * gHeight * 3 * sizeof(GLubyte));
++ if (!image) {
++ printf("Error: couldn't allocate image buffer\n");
++ return;
++ }
++
++ glPixelStorei(GL_PACK_ALIGNMENT, 1);
++ glReadPixels(0, 0, gWidth, gHeight, GL_RGB, GL_UNSIGNED_BYTE, image);
++
++ f = fopen(filename, "w");
++ if (!f) {
++ printf("Couldn't open image file: %s\n", filename);
++ return;
++ }
++ fprintf(f,"P6\n");
++ fprintf(f,"# ppm-file created by %s\n", "trdemo2");
++ fprintf(f,"%i %i\n", gWidth, gHeight);
++ fprintf(f,"255\n");
++ fclose(f);
++ f = fopen(filename, "ab"); /* now append binary data */
++ if (!f) {
++ printf("Couldn't append to image file: %s\n", filename);
++ return;
++ }
++
++ for (i=0;i<gHeight;i++) {
++ GLubyte *rowPtr;
++ /* Remember, OpenGL images are bottom to top. Have to reverse. */
++ rowPtr = image + (gHeight-1-i) * gWidth*3;
++ fwrite(rowPtr, 1, gWidth*3, f);
++ }
++
++ fclose(f);
++ free(image);
++
++ printf("Wrote %d by %d image file: %s\n", gWidth, gHeight, filename);
++}
++
++
++
++/*
++ * Print message describing command line parameters.
++ */
++static void
++Usage(const char *appName)
++{
++ printf("Usage:\n");
++ printf(" %s width height imgfile\n", appName);
++ printf("Where imgfile is a ppm file\n");
++}
++
++
++
++int
++main(int argc, char *argv[])
++{
++ if (argc!=4) {
++ Usage(argv[0]);
++ }
++ else {
++ int width = atoi(argv[1]);
++ int height = atoi(argv[2]);
++ char *fileName = argv[3];
++ if (width<=0) {
++ printf("Error: width parameter must be at least 1.\n");
++ return 1;
++ }
++ if (height<=0) {
++ printf("Error: height parameter must be at least 1.\n");
++ return 1;
++ }
++ if (!Setup(width, height)) {
++ return 1;
++ }
++
++ printf("Setup completed\n");
++ Render();
++ printf("Render completed.\n");
++ WriteFile(fileName);
++ printf("File write completed.\n");
++
++ glXDestroyPbuffer( gDpy, gPBuffer );
++ }
++ return 0;
++}
++
+diff -Naurp Mesa-7.8.1/progs/xdemos/glxpixmap.c Mesa-7.8.1.patched/progs/xdemos/glxpixmap.c
+--- Mesa-7.8.1/progs/xdemos/glxpixmap.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/glxpixmap.c 2010-06-13 13:45:06.788792936 +0200
+@@ -0,0 +1,187 @@
++
++
++/*
++ * A demonstration of using the GLXPixmap functions. This program is in
++ * the public domain.
++ *
++ * Brian Paul
++ */
++
++
++#include <GL/gl.h>
++#define GLX_GLXEXT_PROTOTYPES
++#include <GL/glx.h>
++#include <stdio.h>
++#include <stdlib.h>
++#include <string.h>
++
++
++static GLXContext ctx;
++static XVisualInfo *visinfo;
++static GC gc;
++
++
++
++static Window make_rgb_window( Display *dpy,
++ unsigned int width, unsigned int height )
++{
++ const int sbAttrib[] = { GLX_RGBA,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ None };
++ const int dbAttrib[] = { GLX_RGBA,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DOUBLEBUFFER,
++ None };
++ int scrnum;
++ XSetWindowAttributes attr;
++ unsigned long mask;
++ Window root;
++ Window win;
++
++ scrnum = DefaultScreen( dpy );
++ root = RootWindow( dpy, scrnum );
++
++ visinfo = glXChooseVisual( dpy, scrnum, (int *) sbAttrib );
++ if (!visinfo) {
++ visinfo = glXChooseVisual( dpy, scrnum, (int *) dbAttrib );
++ if (!visinfo) {
++ printf("Error: couldn't get an RGB visual\n");
++ exit(1);
++ }
++ }
++
++ /* window attributes */
++ attr.background_pixel = 0;
++ attr.border_pixel = 0;
++ /* TODO: share root colormap if possible */
++ attr.colormap = XCreateColormap( dpy, root, visinfo->visual, AllocNone);
++ attr.event_mask = StructureNotifyMask | ExposureMask;
++ mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
++
++ win = XCreateWindow( dpy, root, 0, 0, width, height,
++ 0, visinfo->depth, InputOutput,
++ visinfo->visual, mask, &attr );
++
++ /* make an X GC so we can do XCopyArea later */
++ gc = XCreateGC( dpy, win, 0, NULL );
++
++ /* need indirect context */
++ ctx = glXCreateContext( dpy, visinfo, NULL, False );
++ if (!ctx) {
++ printf("Error: glXCreateContext failed\n");
++ exit(-1);
++ }
++
++ printf("Direct rendering: %s\n", glXIsDirect(dpy, ctx) ? "Yes" : "No");
++
++ return win;
++}
++
++
++static GLXPixmap make_pixmap( Display *dpy, Window win,
++ unsigned int width, unsigned int height,
++ Pixmap *pixmap)
++{
++ Pixmap pm;
++ GLXPixmap glxpm;
++ XWindowAttributes attr;
++
++ pm = XCreatePixmap( dpy, win, width, height, visinfo->depth );
++ if (!pm) {
++ printf("Error: XCreatePixmap failed\n");
++ exit(-1);
++ }
++
++ XGetWindowAttributes( dpy, win, &attr );
++
++ /*
++ * IMPORTANT:
++ * Use the glXCreateGLXPixmapMESA funtion when using Mesa because
++ * Mesa needs to know the colormap associated with a pixmap in order
++ * to render correctly. This is because Mesa allows RGB rendering
++ * into any kind of visual, not just TrueColor or DirectColor.
++ */
++#ifdef GLX_MESA_pixmap_colormap
++ if (strstr(glXQueryExtensionsString(dpy, 0), "GLX_MESA_pixmap_colormap")) {
++ /* stand-alone Mesa, specify the colormap */
++ glxpm = glXCreateGLXPixmapMESA( dpy, visinfo, pm, attr.colormap );
++ }
++ else {
++ glxpm = glXCreateGLXPixmap( dpy, visinfo, pm );
++ }
++#else
++ /* This will work with Mesa too if the visual is TrueColor or DirectColor */
++ glxpm = glXCreateGLXPixmap( dpy, visinfo, pm );
++#endif
++
++ if (!glxpm) {
++ printf("Error: GLXCreateGLXPixmap failed\n");
++ exit(-1);
++ }
++
++ *pixmap = pm;
++
++ return glxpm;
++}
++
++
++
++static void event_loop( Display *dpy, GLXPixmap pm )
++{
++ XEvent event;
++
++ while (1) {
++ XNextEvent( dpy, &event );
++
++ switch (event.type) {
++ case Expose:
++ printf("Redraw\n");
++ /* copy the image from GLXPixmap to window */
++ XCopyArea( dpy, pm, event.xany.window, /* src, dest */
++ gc, 0, 0, 300, 300, /* gc, src pos, size */
++ 0, 0 ); /* dest pos */
++ break;
++ case ConfigureNotify:
++ /* nothing */
++ break;
++ }
++ }
++}
++
++
++
++int main( int argc, char *argv[] )
++{
++ Display *dpy;
++ Window win;
++ Pixmap pm;
++ GLXPixmap glxpm;
++
++ dpy = XOpenDisplay(NULL);
++
++ win = make_rgb_window( dpy, 300, 300 );
++ glxpm = make_pixmap( dpy, win, 300, 300, &pm );
++
++ glXMakeCurrent( dpy, glxpm, ctx );
++ printf("GL_RENDERER = %s\n", (char *) glGetString(GL_RENDERER));
++
++ /* Render an image into the pixmap */
++ glShadeModel( GL_FLAT );
++ glClearColor( 0.5, 0.5, 0.5, 1.0 );
++ glClear( GL_COLOR_BUFFER_BIT );
++ glViewport( 0, 0, 300, 300 );
++ glOrtho( -1.0, 1.0, -1.0, 1.0, -1.0, 1.0 );
++ glColor3f( 0.0, 1.0, 1.0 );
++ glRectf( -0.75, -0.75, 0.75, 0.75 );
++ glFlush();
++ glXWaitGL();
++
++ XMapWindow( dpy, win );
++
++ event_loop( dpy, pm );
++ return 0;
++}
+diff -Naurp Mesa-7.8.1/progs/xdemos/glxsnoop.c Mesa-7.8.1.patched/progs/xdemos/glxsnoop.c
+--- Mesa-7.8.1/progs/xdemos/glxsnoop.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/glxsnoop.c 2010-06-13 13:45:06.788792936 +0200
+@@ -0,0 +1,377 @@
++/**
++ * Display/snoop the z/stencil/back/front buffers of another app's window.
++ * Also, an example of the need for shared ancillary renderbuffers.
++ *
++ * Hint: use 'xwininfo' to get a window's ID.
++ *
++ * Brian Paul
++ * 11 Oct 2007
++ */
++
++#define GL_GLEXT_PROTOTYPES
++
++#include <GL/gl.h>
++#include <GL/glx.h>
++#include <stdio.h>
++#include <stdlib.h>
++#include <string.h>
++#include <X11/keysym.h>
++
++
++#define Z_BUFFER 1
++#define STENCIL_BUFFER 2
++#define BACK_BUFFER 3
++#define FRONT_BUFFER 4
++
++
++static int Buffer = BACK_BUFFER;
++static int WindowID = 0;
++static const char *DisplayName = NULL;
++static GLXContext Context = 0;
++static int Width, Height;
++
++
++/**
++ * Grab the z/stencil/back/front image from the srcWin and display it
++ * (possibly converted to grayscale) in the dstWin.
++ */
++static void
++redraw(Display *dpy, Window srcWin, Window dstWin )
++{
++ GLubyte *image = malloc(Width * Height * 4);
++
++ glXMakeCurrent(dpy, srcWin, Context);
++ glPixelStorei(GL_PACK_ALIGNMENT, 1);
++ if (Buffer == BACK_BUFFER) {
++ glReadBuffer(GL_BACK);
++ glReadPixels(0, 0, Width, Height, GL_RGBA, GL_UNSIGNED_BYTE, image);
++ }
++ else if (Buffer == FRONT_BUFFER) {
++ glReadBuffer(GL_FRONT);
++ glReadPixels(0, 0, Width, Height, GL_RGBA, GL_UNSIGNED_BYTE, image);
++ }
++ else if (Buffer == Z_BUFFER) {
++ GLfloat *z = malloc(Width * Height * sizeof(GLfloat));
++ int i;
++ glReadPixels(0, 0, Width, Height, GL_DEPTH_COMPONENT, GL_FLOAT, z);
++ for (i = 0; i < Width * Height; i++) {
++ image[i*4+0] =
++ image[i*4+1] =
++ image[i*4+2] = (GLint) (255.0 * z[i]);
++ image[i*4+3] = 255;
++ }
++ free(z);
++ }
++ else if (Buffer == STENCIL_BUFFER) {
++ GLubyte *sten = malloc(Width * Height * sizeof(GLubyte));
++ int i, min = 100, max = -1;
++ float step;
++ int sz;
++ glGetIntegerv(GL_STENCIL_BITS, &sz);
++ glReadPixels(0, 0, Width, Height,
++ GL_STENCIL_INDEX, GL_UNSIGNED_BYTE, sten);
++ /* find min/max for converting stencil to grayscale */
++ for (i = 0; i < Width * Height; i++) {
++ if (sten[i] < min)
++ min = sten[i];
++ if (sten[i] > max)
++ max = sten[i];
++ }
++ if (min == max)
++ step = 0;
++ else
++ step = 255.0 / (float) (max - min);
++ for (i = 0; i < Width * Height; i++) {
++ image[i*4+0] =
++ image[i*4+1] =
++ image[i*4+2] = (GLint) ((sten[i] - min) * step);
++ image[i*4+3] = 255;
++ }
++ free(sten);
++ }
++
++ glXMakeCurrent(dpy, dstWin, Context);
++ glWindowPos2iARB(0, 0);
++ glDrawBuffer(GL_FRONT);
++ glDrawPixels(Width, Height, GL_RGBA, GL_UNSIGNED_BYTE, image);
++ glFlush();
++
++ free(image);
++}
++
++
++static void
++set_window_title(Display *dpy, Window win, const char *title)
++{
++ XSizeHints sizehints;
++ sizehints.flags = 0;
++ XSetStandardProperties(dpy, win, title, title,
++ None, (char **)NULL, 0, &sizehints);
++}
++
++
++static Window
++make_gl_window(Display *dpy, XVisualInfo *visinfo, int width, int height)
++{
++ int scrnum;
++ XSetWindowAttributes attr;
++ unsigned long mask;
++ Window root;
++ Window win;
++ int x = 0, y = 0;
++ char *name = NULL;
++
++ scrnum = DefaultScreen( dpy );
++ root = RootWindow( dpy, scrnum );
++
++ /* window attributes */
++ attr.background_pixel = 0;
++ attr.border_pixel = 0;
++ attr.colormap = XCreateColormap( dpy, root, visinfo->visual, AllocNone);
++ attr.event_mask = StructureNotifyMask | ExposureMask | KeyPressMask;
++ mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
++
++ win = XCreateWindow( dpy, root, x, y, width, height,
++ 0, visinfo->depth, InputOutput,
++ visinfo->visual, mask, &attr );
++
++ /* set hints and properties */
++ {
++ XSizeHints sizehints;
++ sizehints.x = x;
++ sizehints.y = y;
++ sizehints.width = width;
++ sizehints.height = height;
++ sizehints.flags = USSize | USPosition;
++ XSetNormalHints(dpy, win, &sizehints);
++ XSetStandardProperties(dpy, win, name, name,
++ None, (char **)NULL, 0, &sizehints);
++ }
++
++ return win;
++}
++
++
++static void
++update_window_title(Display *dpy, Window win)
++{
++ char title[1000], *buf;
++
++ switch (Buffer) {
++ case Z_BUFFER:
++ buf = "Z";
++ break;
++ case STENCIL_BUFFER:
++ buf = "Stencil";
++ break;
++ case BACK_BUFFER:
++ buf = "Back";
++ break;
++ case FRONT_BUFFER:
++ buf = "Front";
++ break;
++ default:
++ buf = "";
++ }
++
++ sprintf(title, "glxsnoop window 0x%x (%s buffer)", (int) WindowID, buf);
++
++ set_window_title(dpy, win, title);
++}
++
++
++static void
++keypress(Display *dpy, Window win, char key)
++{
++ switch (key) {
++ case 27:
++ /* escape */
++ exit(0);
++ break;
++ case 's':
++ Buffer = STENCIL_BUFFER;
++ break;
++ case 'z':
++ Buffer = Z_BUFFER;
++ break;
++ case 'f':
++ Buffer = FRONT_BUFFER;
++ break;
++ case 'b':
++ Buffer = BACK_BUFFER;
++ break;
++ default:
++ return;
++ }
++
++ update_window_title(dpy, win);
++ redraw(dpy, WindowID, win);
++}
++
++
++static void
++event_loop(Display *dpy, Window win)
++{
++ XEvent event;
++
++ while (1) {
++ XNextEvent( dpy, &event );
++
++ switch (event.type) {
++ case Expose:
++ redraw(dpy, WindowID, win);
++ break;
++ case ConfigureNotify:
++ /*resize( event.xconfigure.width, event.xconfigure.height );*/
++ break;
++ case KeyPress:
++ {
++ char buffer[10];
++ int r, code;
++ code = XLookupKeysym(&event.xkey, 0);
++ if (code == XK_Left) {
++ }
++ else {
++ r = XLookupString(&event.xkey, buffer, sizeof(buffer),
++ NULL, NULL);
++ keypress(dpy, win, buffer[0]);
++ }
++ }
++ default:
++ /* nothing */
++ ;
++ }
++ }
++}
++
++
++static VisualID
++get_window_visualid(Display *dpy, Window win)
++{
++ XWindowAttributes attr;
++
++ if (XGetWindowAttributes(dpy, win, &attr)) {
++ return attr.visual->visualid;
++ }
++ else {
++ return 0;
++ }
++}
++
++
++static void
++get_window_size(Display *dpy, Window win, int *w, int *h)
++{
++ XWindowAttributes attr;
++
++ if (XGetWindowAttributes(dpy, win, &attr)) {
++ *w = attr.width;
++ *h = attr.height;
++ }
++ else {
++ *w = *h = 0;
++ }
++}
++
++
++static XVisualInfo *
++visualid_to_visualinfo(Display *dpy, VisualID vid)
++{
++ XVisualInfo *vinfo, templ;
++ long mask;
++ int n;
++
++ templ.visualid = vid;
++ mask = VisualIDMask;
++
++ vinfo = XGetVisualInfo(dpy, mask, &templ, &n);
++ return vinfo;
++}
++
++
++static void
++key_usage(void)
++{
++ printf("Keyboard:\n");
++ printf(" z - display Z buffer\n");
++ printf(" s - display stencil buffer\n");
++ printf(" f - display front color buffer\n");
++ printf(" b - display back buffer\n");
++}
++
++
++static void
++usage(void)
++{
++ printf("Usage: glxsnoop [-display dpy] windowID\n");
++ key_usage();
++}
++
++
++static void
++parse_opts(int argc, char *argv[])
++{
++ int i;
++
++ for (i = 1; i < argc; i++) {
++ if (strcmp(argv[i], "-h") == 0) {
++ usage();
++ exit(0);
++ }
++ else if (strcmp(argv[i], "-display") == 0) {
++ DisplayName = argv[i + 1];
++ i++;
++ }
++ else {
++ if (argv[i][0] == '0' && argv[i][1] == 'x') {
++ /* hex */
++ WindowID = strtol(argv[i], NULL, 16);
++ }
++ else {
++ WindowID = atoi(argv[i]);
++ }
++ break;
++ }
++ }
++
++ if (!WindowID) {
++ usage();
++ exit(0);
++ }
++}
++
++
++int
++main( int argc, char *argv[] )
++{
++ Display *dpy;
++ VisualID vid;
++ XVisualInfo *visinfo;
++ Window win;
++
++ parse_opts(argc, argv);
++
++ key_usage();
++
++ dpy = XOpenDisplay(DisplayName);
++
++ /* find the VisualID for the named window */
++ vid = get_window_visualid(dpy, WindowID);
++ get_window_size(dpy, WindowID, &Width, &Height);
++
++ visinfo = visualid_to_visualinfo(dpy, vid);
++
++ Context = glXCreateContext( dpy, visinfo, NULL, True );
++ if (!Context) {
++ printf("Error: glXCreateContext failed\n");
++ exit(1);
++ }
++
++ win = make_gl_window(dpy, visinfo, Width, Height);
++ XMapWindow(dpy, win);
++ update_window_title(dpy, win);
++
++ event_loop( dpy, win );
++
++ return 0;
++}
+diff -Naurp Mesa-7.8.1/progs/xdemos/glxswapcontrol.c Mesa-7.8.1.patched/progs/xdemos/glxswapcontrol.c
+--- Mesa-7.8.1/progs/xdemos/glxswapcontrol.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/glxswapcontrol.c 2010-06-13 13:45:06.788792936 +0200
+@@ -0,0 +1,893 @@
++/*
++ * Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
++ *
++ * Permission is hereby granted, free of charge, to any person obtaining a
++ * copy of this software and associated documentation files (the "Software"),
++ * to deal in the Software without restriction, including without limitation
++ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
++ * and/or sell copies of the Software, and to permit persons to whom the
++ * Software is furnished to do so, subject to the following conditions:
++ *
++ * The above copyright notice and this permission notice shall be included
++ * in all copies or substantial portions of the Software.
++ *
++ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
++ * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
++ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
++ * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
++ * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
++ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
++ */
++
++/*
++ * This is a port of the infamous "gears" demo to straight GLX (i.e. no GLUT)
++ * Port by Brian Paul 23 March 2001
++ *
++ * Modified by Ian Romanick <idr@us.ibm.com> 09 April 2003 to support
++ * GLX_{MESA,SGI}_swap_control and GLX_OML_sync_control.
++ *
++ * Command line options:
++ * -display Name of the display to use.
++ * -info print GL implementation information
++ * -swap N Attempt to set the swap interval to 1/N second
++ * -forcegetrate Get the display refresh rate even if the required GLX
++ * extension is not supported.
++ */
++
++
++#include <math.h>
++#include <stdlib.h>
++#include <stdio.h>
++#include <string.h>
++#include <X11/Xlib.h>
++#include <X11/keysym.h>
++#ifndef __VMS
++/*# include <stdint.h>*/
++#endif
++# define GLX_GLXEXT_PROTOTYPES
++#include <GL/gl.h>
++#include <GL/glx.h>
++
++#ifndef GLX_MESA_swap_control
++typedef GLint ( * PFNGLXSWAPINTERVALMESAPROC) (unsigned interval);
++typedef GLint ( * PFNGLXGETSWAPINTERVALMESAPROC) ( void );
++#endif
++
++#if !defined( GLX_OML_sync_control ) && defined( _STDINT_H )
++#define GLX_OML_sync_control 1
++typedef Bool ( * PFNGLXGETMSCRATEOMLPROC) (Display *dpy, GLXDrawable drawable, int32_t *numerator, int32_t *denominator);
++#endif
++
++#ifndef GLX_MESA_swap_frame_usage
++#define GLX_MESA_swap_frame_usage 1
++typedef int ( * PFNGLXGETFRAMEUSAGEMESAPROC) (Display *dpy, GLXDrawable drawable, float * usage );
++#endif
++
++#define BENCHMARK
++
++PFNGLXGETFRAMEUSAGEMESAPROC get_frame_usage = NULL;
++
++#ifdef BENCHMARK
++
++/* XXX this probably isn't very portable */
++
++#include <sys/time.h>
++#include <unistd.h>
++
++#define NUL '\0'
++
++/* return current time (in seconds) */
++static int
++current_time(void)
++{
++ struct timeval tv;
++#ifdef __VMS
++ (void) gettimeofday(&tv, NULL );
++#else
++ struct timezone tz;
++ (void) gettimeofday(&tv, &tz);
++#endif
++ return (int) tv.tv_sec;
++}
++
++#else /*BENCHMARK*/
++
++/* dummy */
++static int
++current_time(void)
++{
++ return 0;
++}
++
++#endif /*BENCHMARK*/
++
++
++
++#ifndef M_PI
++#define M_PI 3.14159265
++#endif
++
++
++static GLfloat view_rotx = 20.0, view_roty = 30.0, view_rotz = 0.0;
++static GLint gear1, gear2, gear3;
++static GLfloat angle = 0.0;
++
++static GLboolean has_OML_sync_control = GL_FALSE;
++static GLboolean has_SGI_swap_control = GL_FALSE;
++static GLboolean has_MESA_swap_control = GL_FALSE;
++static GLboolean has_MESA_swap_frame_usage = GL_FALSE;
++
++static char ** extension_table = NULL;
++static unsigned num_extensions;
++
++static GLboolean use_ztrick = GL_FALSE;
++static GLfloat aspectX = 1.0f, aspectY = 1.0f;
++
++/*
++ *
++ * Draw a gear wheel. You'll probably want to call this function when
++ * building a display list since we do a lot of trig here.
++ *
++ * Input: inner_radius - radius of hole at center
++ * outer_radius - radius at center of teeth
++ * width - width of gear
++ * teeth - number of teeth
++ * tooth_depth - depth of tooth
++ */
++static void
++gear(GLfloat inner_radius, GLfloat outer_radius, GLfloat width,
++ GLint teeth, GLfloat tooth_depth)
++{
++ GLint i;
++ GLfloat r0, r1, r2;
++ GLfloat angle, da;
++ GLfloat u, v, len;
++
++ r0 = inner_radius;
++ r1 = outer_radius - tooth_depth / 2.0;
++ r2 = outer_radius + tooth_depth / 2.0;
++
++ da = 2.0 * M_PI / teeth / 4.0;
++
++ glShadeModel(GL_FLAT);
++
++ glNormal3f(0.0, 0.0, 1.0);
++
++ /* draw front face */
++ glBegin(GL_QUAD_STRIP);
++ for (i = 0; i <= teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), width * 0.5);
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), width * 0.5);
++ if (i < teeth) {
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), width * 0.5);
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ width * 0.5);
++ }
++ }
++ glEnd();
++
++ /* draw front sides of teeth */
++ glBegin(GL_QUADS);
++ da = 2.0 * M_PI / teeth / 4.0;
++ for (i = 0; i < teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), width * 0.5);
++ glVertex3f(r2 * cos(angle + da), r2 * sin(angle + da), width * 0.5);
++ glVertex3f(r2 * cos(angle + 2 * da), r2 * sin(angle + 2 * da),
++ width * 0.5);
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ width * 0.5);
++ }
++ glEnd();
++
++ glNormal3f(0.0, 0.0, -1.0);
++
++ /* draw back face */
++ glBegin(GL_QUAD_STRIP);
++ for (i = 0; i <= teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), -width * 0.5);
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), -width * 0.5);
++ if (i < teeth) {
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ -width * 0.5);
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), -width * 0.5);
++ }
++ }
++ glEnd();
++
++ /* draw back sides of teeth */
++ glBegin(GL_QUADS);
++ da = 2.0 * M_PI / teeth / 4.0;
++ for (i = 0; i < teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ -width * 0.5);
++ glVertex3f(r2 * cos(angle + 2 * da), r2 * sin(angle + 2 * da),
++ -width * 0.5);
++ glVertex3f(r2 * cos(angle + da), r2 * sin(angle + da), -width * 0.5);
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), -width * 0.5);
++ }
++ glEnd();
++
++ /* draw outward faces of teeth */
++ glBegin(GL_QUAD_STRIP);
++ for (i = 0; i < teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), width * 0.5);
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), -width * 0.5);
++ u = r2 * cos(angle + da) - r1 * cos(angle);
++ v = r2 * sin(angle + da) - r1 * sin(angle);
++ len = sqrt(u * u + v * v);
++ u /= len;
++ v /= len;
++ glNormal3f(v, -u, 0.0);
++ glVertex3f(r2 * cos(angle + da), r2 * sin(angle + da), width * 0.5);
++ glVertex3f(r2 * cos(angle + da), r2 * sin(angle + da), -width * 0.5);
++ glNormal3f(cos(angle), sin(angle), 0.0);
++ glVertex3f(r2 * cos(angle + 2 * da), r2 * sin(angle + 2 * da),
++ width * 0.5);
++ glVertex3f(r2 * cos(angle + 2 * da), r2 * sin(angle + 2 * da),
++ -width * 0.5);
++ u = r1 * cos(angle + 3 * da) - r2 * cos(angle + 2 * da);
++ v = r1 * sin(angle + 3 * da) - r2 * sin(angle + 2 * da);
++ glNormal3f(v, -u, 0.0);
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ width * 0.5);
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ -width * 0.5);
++ glNormal3f(cos(angle), sin(angle), 0.0);
++ }
++
++ glVertex3f(r1 * cos(0), r1 * sin(0), width * 0.5);
++ glVertex3f(r1 * cos(0), r1 * sin(0), -width * 0.5);
++
++ glEnd();
++
++ glShadeModel(GL_SMOOTH);
++
++ /* draw inside radius cylinder */
++ glBegin(GL_QUAD_STRIP);
++ for (i = 0; i <= teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++ glNormal3f(-cos(angle), -sin(angle), 0.0);
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), -width * 0.5);
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), width * 0.5);
++ }
++ glEnd();
++}
++
++
++static void
++draw(void)
++{
++ if ( use_ztrick ) {
++ static GLboolean flip = GL_FALSE;
++ static const GLfloat vert[4][3] = {
++ { -1, -1, -0.999 },
++ { 1, -1, -0.999 },
++ { 1, 1, -0.999 },
++ { -1, 1, -0.999 }
++ };
++ static const GLfloat col[4][3] = {
++ { 1.0, 0.6, 0.0 },
++ { 1.0, 0.6, 0.0 },
++ { 0.0, 0.0, 0.0 },
++ { 0.0, 0.0, 0.0 },
++ };
++
++ if ( flip ) {
++ glDepthRange(0, 0.5);
++ glDepthFunc(GL_LEQUAL);
++ }
++ else {
++ glDepthRange(1.0, 0.4999);
++ glDepthFunc(GL_GEQUAL);
++ }
++
++ flip = !flip;
++
++ /* The famous Quake "Z trick" only works when the whole screen is
++ * re-drawn each frame.
++ */
++
++ glMatrixMode(GL_MODELVIEW);
++ glLoadIdentity();
++ glMatrixMode(GL_PROJECTION);
++ glLoadIdentity();
++ glOrtho(-1, 1, -1, 1, -1, 1);
++ glDisable(GL_LIGHTING);
++ glShadeModel(GL_SMOOTH);
++
++ glEnableClientState( GL_VERTEX_ARRAY );
++ glEnableClientState( GL_COLOR_ARRAY );
++ glVertexPointer( 3, GL_FLOAT, 0, vert );
++ glColorPointer( 3, GL_FLOAT, 0, col );
++ glDrawArrays( GL_POLYGON, 0, 4 );
++ glDisableClientState( GL_COLOR_ARRAY );
++ glDisableClientState( GL_VERTEX_ARRAY );
++
++ glMatrixMode(GL_PROJECTION);
++ glLoadIdentity();
++ glFrustum(-aspectX, aspectX, -aspectY, aspectY, 5.0, 60.0);
++
++ glEnable(GL_LIGHTING);
++
++ glMatrixMode(GL_MODELVIEW);
++ glLoadIdentity();
++ glTranslatef(0.0, 0.0, -45.0);
++ }
++ else {
++ glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
++ }
++
++ glPushMatrix();
++ glRotatef(view_rotx, 1.0, 0.0, 0.0);
++ glRotatef(view_roty, 0.0, 1.0, 0.0);
++ glRotatef(view_rotz, 0.0, 0.0, 1.0);
++
++ glPushMatrix();
++ glTranslatef(-3.0, -2.0, 0.0);
++ glRotatef(angle, 0.0, 0.0, 1.0);
++ glCallList(gear1);
++ glPopMatrix();
++
++ glPushMatrix();
++ glTranslatef(3.1, -2.0, 0.0);
++ glRotatef(-2.0 * angle - 9.0, 0.0, 0.0, 1.0);
++ glCallList(gear2);
++ glPopMatrix();
++
++ glPushMatrix();
++ glTranslatef(-3.1, 4.2, 0.0);
++ glRotatef(-2.0 * angle - 25.0, 0.0, 0.0, 1.0);
++ glCallList(gear3);
++ glPopMatrix();
++
++ glPopMatrix();
++}
++
++
++/* new window size or exposure */
++static void
++reshape(int width, int height)
++{
++ if (width > height) {
++ aspectX = (GLfloat) width / (GLfloat) height;
++ aspectY = 1.0;
++ }
++ else {
++ aspectX = 1.0;
++ aspectY = (GLfloat) height / (GLfloat) width;
++ }
++
++ glViewport(0, 0, (GLint) width, (GLint) height);
++ glMatrixMode(GL_PROJECTION);
++ glLoadIdentity();
++
++ glFrustum(-aspectX, aspectX, -aspectY, aspectY, 5.0, 60.0);
++ glMatrixMode(GL_MODELVIEW);
++ glLoadIdentity();
++ glTranslatef(0.0, 0.0, -45.0);
++}
++
++
++static void
++init(void)
++{
++ static GLfloat pos[4] = { 5.0, 5.0, 10.0, 0.0 };
++ static GLfloat red[4] = { 0.8, 0.1, 0.0, 1.0 };
++ static GLfloat green[4] = { 0.0, 0.8, 0.2, 1.0 };
++ static GLfloat blue[4] = { 0.2, 0.2, 1.0, 1.0 };
++
++ glLightfv(GL_LIGHT0, GL_POSITION, pos);
++ glEnable(GL_CULL_FACE);
++ glEnable(GL_LIGHTING);
++ glEnable(GL_LIGHT0);
++ glEnable(GL_DEPTH_TEST);
++
++ /* make the gears */
++ gear1 = glGenLists(1);
++ glNewList(gear1, GL_COMPILE);
++ glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, red);
++ gear(1.0, 4.0, 1.0, 20, 0.7);
++ glEndList();
++
++ gear2 = glGenLists(1);
++ glNewList(gear2, GL_COMPILE);
++ glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, green);
++ gear(0.5, 2.0, 2.0, 10, 0.7);
++ glEndList();
++
++ gear3 = glGenLists(1);
++ glNewList(gear3, GL_COMPILE);
++ glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, blue);
++ gear(1.3, 2.0, 0.5, 10, 0.7);
++ glEndList();
++
++ glEnable(GL_NORMALIZE);
++}
++
++
++/**
++ * Remove window border/decorations.
++ */
++static void
++no_border( Display *dpy, Window w)
++{
++ static const unsigned MWM_HINTS_DECORATIONS = (1 << 1);
++ static const int PROP_MOTIF_WM_HINTS_ELEMENTS = 5;
++
++ typedef struct
++ {
++ unsigned long flags;
++ unsigned long functions;
++ unsigned long decorations;
++ long inputMode;
++ unsigned long status;
++ } PropMotifWmHints;
++
++ PropMotifWmHints motif_hints;
++ Atom prop, proptype;
++ unsigned long flags = 0;
++
++ /* setup the property */
++ motif_hints.flags = MWM_HINTS_DECORATIONS;
++ motif_hints.decorations = flags;
++
++ /* get the atom for the property */
++ prop = XInternAtom( dpy, "_MOTIF_WM_HINTS", True );
++ if (!prop) {
++ /* something went wrong! */
++ return;
++ }
++
++ /* not sure this is correct, seems to work, XA_WM_HINTS didn't work */
++ proptype = prop;
++
++ XChangeProperty( dpy, w, /* display, window */
++ prop, proptype, /* property, type */
++ 32, /* format: 32-bit datums */
++ PropModeReplace, /* mode */
++ (unsigned char *) &motif_hints, /* data */
++ PROP_MOTIF_WM_HINTS_ELEMENTS /* nelements */
++ );
++}
++
++
++/*
++ * Create an RGB, double-buffered window.
++ * Return the window and context handles.
++ */
++static void
++make_window( Display *dpy, const char *name,
++ int x, int y, int width, int height, GLboolean fullscreen,
++ Window *winRet, GLXContext *ctxRet)
++{
++ int attrib[] = { GLX_RGBA,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DOUBLEBUFFER,
++ GLX_DEPTH_SIZE, 1,
++ None };
++ int scrnum;
++ XSetWindowAttributes attr;
++ unsigned long mask;
++ Window root;
++ Window win;
++ GLXContext ctx;
++ XVisualInfo *visinfo;
++
++ scrnum = DefaultScreen( dpy );
++ root = RootWindow( dpy, scrnum );
++
++ if (fullscreen) {
++ x = y = 0;
++ width = DisplayWidth( dpy, scrnum );
++ height = DisplayHeight( dpy, scrnum );
++ }
++
++ visinfo = glXChooseVisual( dpy, scrnum, attrib );
++ if (!visinfo) {
++ printf("Error: couldn't get an RGB, Double-buffered visual\n");
++ exit(1);
++ }
++
++ /* window attributes */
++ attr.background_pixel = 0;
++ attr.border_pixel = 0;
++ attr.colormap = XCreateColormap( dpy, root, visinfo->visual, AllocNone);
++ attr.event_mask = StructureNotifyMask | ExposureMask | KeyPressMask;
++ mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
++
++ win = XCreateWindow( dpy, root, 0, 0, width, height,
++ 0, visinfo->depth, InputOutput,
++ visinfo->visual, mask, &attr );
++
++ /* set hints and properties */
++ {
++ XSizeHints sizehints;
++ sizehints.x = x;
++ sizehints.y = y;
++ sizehints.width = width;
++ sizehints.height = height;
++ sizehints.flags = USSize | USPosition;
++ XSetNormalHints(dpy, win, &sizehints);
++ XSetStandardProperties(dpy, win, name, name,
++ None, (char **)NULL, 0, &sizehints);
++ }
++
++ if (fullscreen)
++ no_border(dpy, win);
++
++ ctx = glXCreateContext( dpy, visinfo, NULL, True );
++ if (!ctx) {
++ printf("Error: glXCreateContext failed\n");
++ exit(1);
++ }
++
++ XFree(visinfo);
++
++ *winRet = win;
++ *ctxRet = ctx;
++}
++
++
++static void
++event_loop(Display *dpy, Window win)
++{
++ float frame_usage = 0.0;
++
++ while (1) {
++ while (XPending(dpy) > 0) {
++ XEvent event;
++ XNextEvent(dpy, &event);
++ switch (event.type) {
++ case Expose:
++ /* we'll redraw below */
++ break;
++ case ConfigureNotify:
++ reshape(event.xconfigure.width, event.xconfigure.height);
++ break;
++ case KeyPress:
++ {
++ char buffer[10];
++ int r, code;
++ code = XLookupKeysym(&event.xkey, 0);
++ if (code == XK_Left) {
++ view_roty += 5.0;
++ }
++ else if (code == XK_Right) {
++ view_roty -= 5.0;
++ }
++ else if (code == XK_Up) {
++ view_rotx += 5.0;
++ }
++ else if (code == XK_Down) {
++ view_rotx -= 5.0;
++ }
++ else {
++ r = XLookupString(&event.xkey, buffer, sizeof(buffer),
++ NULL, NULL);
++ if (buffer[0] == 27) {
++ /* escape */
++ return;
++ }
++ }
++ }
++ }
++ }
++
++ /* next frame */
++ angle += 2.0;
++
++ draw();
++
++ glXSwapBuffers(dpy, win);
++
++ if ( get_frame_usage != NULL ) {
++ GLfloat temp;
++
++ (*get_frame_usage)( dpy, win, & temp );
++ frame_usage += temp;
++ }
++
++ /* calc framerate */
++ {
++ static int t0 = -1;
++ static int frames = 0;
++ int t = current_time();
++
++ if (t0 < 0)
++ t0 = t;
++
++ frames++;
++
++ if (t - t0 >= 5.0) {
++ GLfloat seconds = t - t0;
++ GLfloat fps = frames / seconds;
++ if ( get_frame_usage != NULL ) {
++ printf("%d frames in %3.1f seconds = %6.3f FPS (%3.1f%% usage)\n",
++ frames, seconds, fps,
++ (frame_usage * 100.0) / (float) frames );
++ }
++ else {
++ printf("%d frames in %3.1f seconds = %6.3f FPS\n",
++ frames, seconds, fps);
++ }
++
++ t0 = t;
++ frames = 0;
++ frame_usage = 0.0;
++ }
++ }
++ }
++}
++
++
++/**
++ * Display the refresh rate of the display using the GLX_OML_sync_control
++ * extension.
++ */
++static void
++show_refresh_rate( Display * dpy )
++{
++#if defined(GLX_OML_sync_control) && defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)
++ PFNGLXGETMSCRATEOMLPROC get_msc_rate;
++ int32_t n;
++ int32_t d;
++
++ get_msc_rate = (PFNGLXGETMSCRATEOMLPROC) glXGetProcAddressARB( (const GLubyte *) "glXGetMscRateOML" );
++ if ( get_msc_rate != NULL ) {
++ (*get_msc_rate)( dpy, glXGetCurrentDrawable(), &n, &d );
++ printf( "refresh rate: %.1fHz\n", (float) n / d );
++ return;
++ }
++#endif
++ printf( "glXGetMscRateOML not supported.\n" );
++}
++
++
++/**
++ * Fill in the table of extension strings from a supplied extensions string
++ * (as returned by glXQueryExtensionsString).
++ *
++ * \param string String of GLX extensions.
++ * \sa is_extension_supported
++ */
++static void
++make_extension_table( const char * string )
++{
++ char ** string_tab;
++ unsigned num_strings;
++ unsigned base;
++ unsigned idx;
++ unsigned i;
++
++ /* Count the number of spaces in the string. That gives a base-line
++ * figure for the number of extension in the string.
++ */
++
++ num_strings = 1;
++ for ( i = 0 ; string[i] != NUL ; i++ ) {
++ if ( string[i] == ' ' ) {
++ num_strings++;
++ }
++ }
++
++ string_tab = (char **) malloc( sizeof( char * ) * num_strings );
++ if ( string_tab == NULL ) {
++ return;
++ }
++
++ base = 0;
++ idx = 0;
++
++ while ( string[ base ] != NUL ) {
++ /* Determine the length of the next extension string.
++ */
++
++ for ( i = 0
++ ; (string[ base + i ] != NUL) && (string[ base + i ] != ' ')
++ ; i++ ) {
++ /* empty */ ;
++ }
++
++ if ( i > 0 ) {
++ /* If the string was non-zero length, add it to the table. We
++ * can get zero length strings if there is a space at the end of
++ * the string or if there are two (or more) spaces next to each
++ * other in the string.
++ */
++
++ string_tab[ idx ] = malloc( sizeof( char ) * (i + 1) );
++ if ( string_tab[ idx ] == NULL ) {
++ return;
++ }
++
++ (void) memcpy( string_tab[ idx ], & string[ base ], i );
++ string_tab[ idx ][i] = NUL;
++ idx++;
++ }
++
++
++ /* Skip to the start of the next extension string.
++ */
++
++ for ( base += i
++ ; (string[ base ] == ' ') && (string[ base ] != NUL)
++ ; base++ ) {
++ /* empty */ ;
++ }
++ }
++
++ extension_table = string_tab;
++ num_extensions = idx;
++}
++
++
++/**
++ * Determine of an extension is supported. The extension string table
++ * must have already be initialized by calling \c make_extension_table.
++ *
++ * \praram ext Extension to be tested.
++ * \return GL_TRUE of the extension is supported, GL_FALSE otherwise.
++ * \sa make_extension_table
++ */
++static GLboolean
++is_extension_supported( const char * ext )
++{
++ unsigned i;
++
++ for ( i = 0 ; i < num_extensions ; i++ ) {
++ if ( strcmp( ext, extension_table[i] ) == 0 ) {
++ return GL_TRUE;
++ }
++ }
++
++ return GL_FALSE;
++}
++
++
++int
++main(int argc, char *argv[])
++{
++ Display *dpy;
++ Window win;
++ GLXContext ctx;
++ char *dpyName = NULL;
++ int swap_interval = 1;
++ GLboolean do_swap_interval = GL_FALSE;
++ GLboolean force_get_rate = GL_FALSE;
++ GLboolean fullscreen = GL_FALSE;
++ GLboolean printInfo = GL_FALSE;
++ int i;
++ PFNGLXSWAPINTERVALMESAPROC set_swap_interval = NULL;
++ PFNGLXGETSWAPINTERVALMESAPROC get_swap_interval = NULL;
++ int width = 300, height = 300;
++
++ for (i = 1; i < argc; i++) {
++ if (strcmp(argv[i], "-display") == 0 && i + 1 < argc) {
++ dpyName = argv[i+1];
++ i++;
++ }
++ else if (strcmp(argv[i], "-info") == 0) {
++ printInfo = GL_TRUE;
++ }
++ else if (strcmp(argv[i], "-swap") == 0 && i + 1 < argc) {
++ swap_interval = atoi( argv[i+1] );
++ do_swap_interval = GL_TRUE;
++ i++;
++ }
++ else if (strcmp(argv[i], "-forcegetrate") == 0) {
++ /* This option was put in because some DRI drivers don't support the
++ * full GLX_OML_sync_control extension, but they do support
++ * glXGetMscRateOML.
++ */
++ force_get_rate = GL_TRUE;
++ }
++ else if (strcmp(argv[i], "-fullscreen") == 0) {
++ fullscreen = GL_TRUE;
++ }
++ else if (strcmp(argv[i], "-ztrick") == 0) {
++ use_ztrick = GL_TRUE;
++ }
++ else if (strcmp(argv[i], "-help") == 0) {
++ printf("Usage:\n");
++ printf(" gears [options]\n");
++ printf("Options:\n");
++ printf(" -help Print this information\n");
++ printf(" -display displayName Specify X display\n");
++ printf(" -info Display GL information\n");
++ printf(" -swap N Swap no more than once per N vertical refreshes\n");
++ printf(" -forcegetrate Try to use glXGetMscRateOML function\n");
++ printf(" -fullscreen Full-screen window\n");
++ return 0;
++ }
++ }
++
++ dpy = XOpenDisplay(dpyName);
++ if (!dpy) {
++ printf("Error: couldn't open display %s\n", XDisplayName(dpyName));
++ return -1;
++ }
++
++ make_window(dpy, "glxgears", 0, 0, width, height, fullscreen, &win, &ctx);
++ XMapWindow(dpy, win);
++ glXMakeCurrent(dpy, win, ctx);
++
++ make_extension_table( (char *) glXQueryExtensionsString(dpy,DefaultScreen(dpy)) );
++ has_OML_sync_control = is_extension_supported( "GLX_OML_sync_control" );
++ has_SGI_swap_control = is_extension_supported( "GLX_SGI_swap_control" );
++ has_MESA_swap_control = is_extension_supported( "GLX_MESA_swap_control" );
++ has_MESA_swap_frame_usage = is_extension_supported( "GLX_MESA_swap_frame_usage" );
++
++ if ( has_MESA_swap_control ) {
++ set_swap_interval = (PFNGLXSWAPINTERVALMESAPROC) glXGetProcAddressARB( (const GLubyte *) "glXSwapIntervalMESA" );
++ get_swap_interval = (PFNGLXGETSWAPINTERVALMESAPROC) glXGetProcAddressARB( (const GLubyte *) "glXGetSwapIntervalMESA" );
++ }
++ else if ( has_SGI_swap_control ) {
++ set_swap_interval = (PFNGLXSWAPINTERVALMESAPROC) glXGetProcAddressARB( (const GLubyte *) "glXSwapIntervalSGI" );
++ }
++
++
++ if ( has_MESA_swap_frame_usage ) {
++ get_frame_usage = (PFNGLXGETFRAMEUSAGEMESAPROC) glXGetProcAddressARB( (const GLubyte *) "glXGetFrameUsageMESA" );
++ }
++
++
++ if (printInfo) {
++ printf("GL_RENDERER = %s\n", (char *) glGetString(GL_RENDERER));
++ printf("GL_VERSION = %s\n", (char *) glGetString(GL_VERSION));
++ printf("GL_VENDOR = %s\n", (char *) glGetString(GL_VENDOR));
++ printf("GL_EXTENSIONS = %s\n", (char *) glGetString(GL_EXTENSIONS));
++ if ( has_OML_sync_control || force_get_rate ) {
++ show_refresh_rate( dpy );
++ }
++
++ if ( get_swap_interval != NULL ) {
++ printf("Default swap interval = %d\n", (*get_swap_interval)() );
++ }
++ }
++
++ if ( do_swap_interval ) {
++ if ( set_swap_interval != NULL ) {
++ if ( ((swap_interval == 0) && !has_MESA_swap_control)
++ || (swap_interval < 0) ) {
++ printf( "Swap interval must be non-negative or greater than zero "
++ "if GLX_MESA_swap_control is not supported.\n" );
++ }
++ else {
++ (*set_swap_interval)( swap_interval );
++ }
++
++ if ( printInfo && (get_swap_interval != NULL) ) {
++ printf("Current swap interval = %d\n", (*get_swap_interval)() );
++ }
++ }
++ else {
++ printf("Unable to set swap-interval. Neither GLX_SGI_swap_control "
++ "nor GLX_MESA_swap_control are supported.\n" );
++ }
++ }
++
++ init();
++
++ /* Set initial projection/viewing transformation.
++ * same as glxgears.c
++ */
++ reshape(width, height);
++
++ event_loop(dpy, win);
++
++ glXDestroyContext(dpy, ctx);
++ XDestroyWindow(dpy, win);
++ XCloseDisplay(dpy);
++
++ return 0;
++}
+diff -Naurp Mesa-7.8.1/progs/xdemos/ipc.c Mesa-7.8.1.patched/progs/xdemos/ipc.c
+--- Mesa-7.8.1/progs/xdemos/ipc.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/ipc.c 2010-06-13 13:45:06.789793146 +0200
+@@ -0,0 +1,264 @@
++/* Copyright (c) 2003 Tungsten Graphics, Inc.
++ *
++ * Permission is hereby granted, free of charge, to any person obtaining
++ * a copy of this software and associated documentation files ("the
++ * Software"), to deal in the Software without restriction, including
++ * without limitation the rights to use, copy, modify, merge, publish,
++ * distribute, sublicense, and/or sell copies of the Software, and to
++ * permit persons to whom the Software is furnished to do so, subject to
++ * the following conditions: The above copyright notice, the Tungsten
++ * Graphics splash screen, and this permission notice shall be included
++ * in all copies or substantial portions of the Software. THE SOFTWARE
++ * IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
++ * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
++ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
++ * SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
++ * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
++ * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
++ * THE USE OR OTHER DEALINGS IN THE SOFTWARE.
++ */
++
++/*
++ * Simple IPC API
++ * Brian Paul
++ */
++
++
++#include <assert.h>
++#include <stdio.h>
++#include <string.h>
++#include <sys/types.h>
++#include <netinet/in.h>
++#include <netinet/tcp.h>
++#include <arpa/inet.h>
++#include <netdb.h>
++#include <unistd.h>
++#include <sys/socket.h>
++#include "ipc.h"
++
++#if defined(IRIX) || defined(irix)
++typedef int socklen_t;
++#endif
++
++#define NO_DELAY 1
++
++#define DEFAULT_MASTER_PORT 7011
++
++
++/*
++ * Return my hostname in <nameOut>.
++ * Return 1 for success, 0 for error.
++ */
++int
++MyHostName(char *nameOut, int maxNameLength)
++{
++ int k = gethostname(nameOut, maxNameLength);
++ return k==0;
++}
++
++
++/*
++ * Create a socket attached to a port. Later, we can call AcceptConnection
++ * on the socket returned from this function.
++ * Return the new socket number or -1 if error.
++ */
++int
++CreatePort(int *port)
++{
++ char hostname[1000];
++ struct sockaddr_in servaddr;
++ struct hostent *hp;
++ int so_reuseaddr = 1;
++ int tcp_nodelay = 1;
++ int sock, k;
++
++ /* create socket */
++ sock = socket(AF_INET, SOCK_STREAM, 0);
++ assert(sock > 2);
++
++ /* get my host name */
++ k = gethostname(hostname, 1000);
++ assert(k == 0);
++
++ /* get hostent info */
++ hp = gethostbyname(hostname);
++ assert(hp);
++
++ /* initialize the servaddr struct */
++ memset(&servaddr, 0, sizeof(servaddr) );
++ servaddr.sin_family = AF_INET;
++ servaddr.sin_port = htons((unsigned short) (*port));
++ memcpy((char *) &servaddr.sin_addr, hp->h_addr,
++ sizeof(servaddr.sin_addr));
++
++ /* deallocate when we exit */
++ k = setsockopt(sock, SOL_SOCKET, SO_REUSEADDR,
++ (char *) &so_reuseaddr, sizeof(so_reuseaddr));
++ assert(k==0);
++
++ /* send packets immediately */
++#if NO_DELAY
++ k = setsockopt(sock, IPPROTO_TCP, TCP_NODELAY,
++ (char *) &tcp_nodelay, sizeof(tcp_nodelay));
++ assert(k==0);
++#endif
++
++ if (*port == 0)
++ *port = DEFAULT_MASTER_PORT;
++
++ k = 1;
++ while (k && (*port < 65534)) {
++ /* bind our address to the socket */
++ servaddr.sin_port = htons((unsigned short) (*port));
++ k = bind(sock, (struct sockaddr *) &servaddr, sizeof(servaddr));
++ if (k)
++ *port = *port + 1;
++ }
++
++#if 0
++ printf("###### Real Port: %d\n", *port);
++#endif
++
++ /* listen for connections */
++ k = listen(sock, 100);
++ assert(k == 0);
++
++ return sock;
++}
++
++
++/*
++ * Accept a connection on the named socket.
++ * Return a new socket for the new connection, or -1 if error.
++ */
++int
++AcceptConnection(int socket)
++{
++ struct sockaddr addr;
++ socklen_t addrLen;
++ int newSock;
++
++ addrLen = sizeof(addr);
++ newSock = accept(socket, &addr, &addrLen);
++ if (newSock == 1)
++ return -1;
++ else
++ return newSock;
++}
++
++
++/*
++ * Contact the server running on the given host on the named port.
++ * Return socket number or -1 if error.
++ */
++int
++Connect(const char *hostname, int port)
++{
++ struct sockaddr_in servaddr;
++ struct hostent *hp;
++ int sock, k;
++ int tcp_nodelay = 1;
++
++ assert(port);
++
++ sock = socket(AF_INET, SOCK_STREAM, 0);
++ assert(sock >= 0);
++
++ hp = gethostbyname(hostname);
++ assert(hp);
++
++ memset(&servaddr, 0, sizeof(servaddr));
++ servaddr.sin_family = AF_INET;
++ servaddr.sin_port = htons((unsigned short) port);
++ memcpy((char *) &servaddr.sin_addr, hp->h_addr, sizeof(servaddr.sin_addr));
++
++ k = connect(sock, (struct sockaddr *) &servaddr, sizeof(servaddr));
++ if (k != 0) {
++ perror("Connect:");
++ return -1;
++ }
++
++#if NO_DELAY
++ /* send packets immediately */
++ k = setsockopt(sock, IPPROTO_TCP, TCP_NODELAY,
++ (char *) &tcp_nodelay, sizeof(tcp_nodelay));
++ assert(k==0);
++#endif
++
++ return sock;
++}
++
++
++void
++CloseSocket(int socket)
++{
++ close(socket);
++}
++
++
++int
++SendData(int socket, const void *data, int bytes)
++{
++ int sent = 0;
++ int b;
++
++ while (sent < bytes) {
++ b = write(socket, (char *) data + sent, bytes - sent);
++ if (b <= 0)
++ return -1; /* something broke */
++ sent += b;
++ }
++ return sent;
++}
++
++
++int
++ReceiveData(int socket, void *data, int bytes)
++{
++ int received = 0, b;
++
++ while (received < bytes) {
++ b = read(socket, (char *) data + received, bytes - received);
++ if (b <= 0)
++ return -1;
++ received += b;
++ }
++ return received;
++}
++
++
++int
++SendString(int socket, const char *str)
++{
++ const int len = strlen(str);
++ int sent, b;
++
++ /* first, send a 4-byte length indicator */
++ b = write(socket, &len, sizeof(len));
++ if (b <= 0)
++ return -1;
++
++ sent = SendData(socket, str, len);
++ assert(sent == len);
++ return sent;
++}
++
++
++int
++ReceiveString(int socket, char *str, int maxLen)
++{
++ int len, received, b;
++
++ /* first, read 4 bytes to see how long of string to receive */
++ b = read(socket, &len, sizeof(len));
++ if (b <= 0)
++ return -1;
++
++ assert(len <= maxLen); /* XXX fix someday */
++ assert(len >= 0);
++ received = ReceiveData(socket, str, len);
++ assert(received != -1);
++ assert(received == len);
++ str[len] = 0;
++ return received;
++}
+diff -Naurp Mesa-7.8.1/progs/xdemos/ipc.h Mesa-7.8.1.patched/progs/xdemos/ipc.h
+--- Mesa-7.8.1/progs/xdemos/ipc.h 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/ipc.h 2010-06-13 13:45:06.789793146 +0200
+@@ -0,0 +1,16 @@
++#ifndef IPC_H
++#define IPC_H
++
++
++extern int MyHostName(char *nameOut, int maxNameLength);
++extern int CreatePort(int *port);
++extern int AcceptConnection(int socket);
++extern int Connect(const char *hostname, int port);
++extern void CloseSocket(int socket);
++extern int SendData(int socket, const void *data, int bytes);
++extern int ReceiveData(int socket, void *data, int bytes);
++extern int SendString(int socket, const char *str);
++extern int ReceiveString(int socket, char *str, int maxLen);
++
++
++#endif /* IPC_H */
+diff -Naurp Mesa-7.8.1/progs/xdemos/Makefile Mesa-7.8.1.patched/progs/xdemos/Makefile
+--- Mesa-7.8.1/progs/xdemos/Makefile 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/Makefile 2010-06-13 13:45:06.788792936 +0200
+@@ -0,0 +1,103 @@
++# progs/xdemos/Makefile
++
++TOP = ../..
++include $(TOP)/configs/current
++
++
++INCDIR = $(TOP)/include
++
++LIB_DEP = $(TOP)/$(LIB_DIR)/$(GL_LIB_NAME)
++
++# Add X11 and pthread libs to satisfy GNU gold.
++APP_LIB_DEPS += -lX11 -lpthread
++
++LIBS = -L$(TOP)/$(LIB_DIR) -l$(GL_LIB) -L$(libdir) $(APP_LIB_DEPS)
++
++PROGS = \
++ corender \
++ glsync \
++ glthreads \
++ glxdemo \
++ glxgears \
++ glxgears_fbconfig \
++ glxgears_pixmap \
++ glxcontexts \
++ glxheads \
++ glxinfo \
++ glxpixmap \
++ glxpbdemo \
++ glxsnoop \
++ glxswapcontrol \
++ manywin \
++ msctest \
++ multictx \
++ offset \
++ omlsync \
++ overlay \
++ pbinfo \
++ pbdemo \
++ sharedtex \
++ sharedtex_mt \
++ texture_from_pixmap \
++ wincopy \
++ xfont \
++ xrotfontdemo
++
++# Don't build these by default because of extra library dependencies
++EXTRA_PROGS = \
++ shape \
++ yuvrect_client \
++ xdemo
++
++
++
++##### RULES #####
++
++.o: $(LIB_DEP)
++ $(APP_CC) $(CFLAGS) $(LDFLAGS) $< $(LIBS) -o $@
++
++.c.o:
++ $(APP_CC) -I$(INCDIR) $(X11_INCLUDES) $(CFLAGS) $< -c -o $@
++
++
++##### TARGETS #####
++
++default: $(PROGS)
++
++$(PROGS): $(PROGS:%=%.o)
++
++extra: $(EXTRA_PROGS)
++
++
++clean:
++ -rm -f $(PROGS) $(EXTRA_PROGS)
++ -rm -f *.o *~
++
++
++# special cases
++pbutil.o: pbutil.h
++pbinfo.o: pbutil.h
++pbinfo: pbinfo.o pbutil.o
++ $(APP_CC) $(CFLAGS) $(LDFLAGS) pbinfo.o pbutil.o $(LIBS) -o $@
++
++pbdemo.o: pbutil.h
++pbdemo: pbdemo.o pbutil.o
++ $(APP_CC) $(CFLAGS) $(LDFLAGS) pbdemo.o pbutil.o $(LIBS) -o $@
++
++glxgears_fbconfig.o: pbutil.h
++glxgears_fbconfig: glxgears_fbconfig.o pbutil.o
++ $(APP_CC) $(CFLAGS) $(LDFLAGS) glxgears_fbconfig.o pbutil.o $(LIBS) -o $@
++
++xuserotfont.o: xuserotfont.h
++xrotfontdemo.o: xuserotfont.h
++xrotfontdemo: xrotfontdemo.o xuserotfont.o
++ $(APP_CC) $(CFLAGS) $(LDFLAGS) xrotfontdemo.o xuserotfont.o $(LIBS) -o $@
++
++ipc.o: ipc.h
++corender.o: ipc.h
++corender: corender.o ipc.o
++ $(APP_CC) $(CFLAGS) $(LDFLAGS) corender.o ipc.o $(LIBS) -o $@
++
++yuvrect_client: yuvrect_client.o
++ $(APP_CC) $(CFLAGS) $< $(LDFLAGS) $(LIBS) -l$(GLU_LIB) -o $@
++
+diff -Naurp Mesa-7.8.1/progs/xdemos/manywin.c Mesa-7.8.1.patched/progs/xdemos/manywin.c
+--- Mesa-7.8.1/progs/xdemos/manywin.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/manywin.c 2010-06-13 13:45:06.789793146 +0200
+@@ -0,0 +1,421 @@
++/*
++ * Create N GLX windows/contexts and render to them in round-robin order.
++ * Also, have the contexts share all texture objects.
++ * Press 'd' to delete a texture, 'u' to unbind it.
++ *
++ * Copyright (C) 2000 Brian Paul All Rights Reserved.
++ *
++ * Permission is hereby granted, free of charge, to any person obtaining a
++ * copy of this software and associated documentation files (the "Software"),
++ * to deal in the Software without restriction, including without limitation
++ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
++ * and/or sell copies of the Software, and to permit persons to whom the
++ * Software is furnished to do so, subject to the following conditions:
++ *
++ * The above copyright notice and this permission notice shall be included
++ * in all copies or substantial portions of the Software.
++ *
++ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
++ * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
++ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
++ * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
++ * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
++ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
++ */
++
++
++#include <GL/gl.h>
++#include <GL/glx.h>
++#include <assert.h>
++#include <stdio.h>
++#include <stdlib.h>
++#include <string.h>
++#include <unistd.h>
++#include <X11/keysym.h>
++
++
++/*
++ * Each display/window/context:
++ */
++struct head {
++ char DisplayName[1000];
++ Display *Dpy;
++ Window Win;
++ GLXContext Context;
++ float Angle;
++ char Renderer[1000];
++ char Vendor[1000];
++ char Version[1000];
++};
++
++
++#define MAX_HEADS 200
++static struct head Heads[MAX_HEADS];
++static int NumHeads = 0;
++static GLboolean SwapSeparate = GL_TRUE;
++static GLuint TexObj = 0;
++
++
++static void
++Error(const char *display, const char *msg)
++{
++ fprintf(stderr, "Error on display %s - %s\n", XDisplayName(display), msg);
++ exit(1);
++}
++
++
++static struct head *
++AddHead(const char *displayName, const char *name)
++{
++ Display *dpy;
++ Window win;
++ GLXContext ctx;
++ int attrib[] = { GLX_RGBA,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DOUBLEBUFFER,
++ None };
++ int scrnum;
++ XSetWindowAttributes attr;
++ unsigned long mask;
++ Window root;
++ XVisualInfo *visinfo;
++ int width = 90, height = 90;
++ int xpos = 0, ypos = 0;
++
++ if (NumHeads >= MAX_HEADS)
++ return NULL;
++
++ dpy = XOpenDisplay(displayName);
++ if (!dpy) {
++ Error(displayName, "Unable to open display");
++ return NULL;
++ }
++
++ scrnum = DefaultScreen(dpy);
++ root = RootWindow(dpy, scrnum);
++
++ visinfo = glXChooseVisual(dpy, scrnum, attrib);
++ if (!visinfo) {
++ Error(displayName, "Unable to find RGB, double-buffered visual");
++ return NULL;
++ }
++
++ /* window attributes */
++ xpos = (NumHeads % 10) * 100;
++ ypos = (NumHeads / 10) * 100;
++ printf("%d, %d\n", xpos, ypos);
++ attr.background_pixel = 0;
++ attr.border_pixel = 0;
++ attr.colormap = XCreateColormap(dpy, root, visinfo->visual, AllocNone);
++ attr.event_mask = StructureNotifyMask | ExposureMask | KeyPressMask;
++ mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
++
++ win = XCreateWindow(dpy, root, xpos, ypos, width, height,
++ 0, visinfo->depth, InputOutput,
++ visinfo->visual, mask, &attr);
++ if (!win) {
++ Error(displayName, "Couldn't create window");
++ return NULL;
++ }
++
++ {
++ XSizeHints sizehints;
++ sizehints.x = xpos;
++ sizehints.y = ypos;
++ sizehints.width = width;
++ sizehints.height = height;
++ sizehints.flags = USSize | USPosition;
++ XSetNormalHints(dpy, win, &sizehints);
++ XSetStandardProperties(dpy, win, name, name,
++ None, (char **)NULL, 0, &sizehints);
++ }
++
++ if (NumHeads == 0) {
++ ctx = glXCreateContext(dpy, visinfo, NULL, True);
++ }
++ else {
++ /* share textures & dlists with 0th context */
++ printf("sharing\n");
++ ctx = glXCreateContext(dpy, visinfo, Heads[0].Context, True);
++ }
++ if (!ctx) {
++ Error(displayName, "Couldn't create GLX context");
++ return NULL;
++ }
++
++ XMapWindow(dpy, win);
++
++ if (!glXMakeCurrent(dpy, win, ctx)) {
++ Error(displayName, "glXMakeCurrent failed");
++ printf("glXMakeCurrent failed in Redraw()\n");
++ return NULL;
++ }
++
++ if (NumHeads == 0) {
++ /* create texture object now */
++ static const GLubyte checker[2][2][4] = {
++ { {255, 255, 255, 255}, { 0, 0, 0, 255} },
++ { { 0, 0, 0, 0}, {255, 255, 255, 255} }
++ };
++ glGenTextures(1, &TexObj);
++ assert(TexObj);
++ glBindTexture(GL_TEXTURE_2D, TexObj);
++ glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, 2, 2, 0, GL_RGB,
++ GL_UNSIGNED_BYTE, checker);
++ glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
++ glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
++ }
++ else {
++ /* bind 0th context's texture in this context too */
++ assert(TexObj);
++ glBindTexture(GL_TEXTURE_2D, TexObj);
++ }
++ glEnable(GL_TEXTURE_2D);
++
++ /* save the info for this head */
++ {
++ struct head *h = &Heads[NumHeads];
++ const char * tmp;
++
++ if (strlen(name) + 1 > sizeof(h->DisplayName)) {
++ Error(displayName, "name string overflow");
++ return NULL;
++ }
++ strcpy(h->DisplayName, name);
++
++ h->Dpy = dpy;
++ h->Win = win;
++ h->Context = ctx;
++ h->Angle = 0.0;
++
++ tmp = (char *) glGetString(GL_VERSION);
++ if (strlen(tmp) + 1 > sizeof(h->Version)) {
++ Error(displayName, "GL_VERSION string overflow");
++ return NULL;
++ }
++ strcpy(h->Version, tmp);
++
++ tmp = (char *) glGetString(GL_VENDOR);
++ if (strlen(tmp) + 1 > sizeof(h->Vendor)) {
++ Error(displayName, "GL_VENDOR string overflow");
++ return NULL;
++ }
++ strcpy(h->Vendor, tmp);
++
++ tmp = (char *) glGetString(GL_RENDERER);
++ if (strlen(tmp) + 1 > sizeof(h->Renderer)) {
++ Error(displayName, "GL_RENDERER string overflow");
++ return NULL;
++ }
++ strcpy(h->Renderer, tmp);
++
++ NumHeads++;
++ return &Heads[NumHeads-1];
++ }
++
++}
++
++
++static void
++DestroyHeads(void)
++{
++ int i;
++ for (i = 0; i < NumHeads; i++) {
++ XDestroyWindow(Heads[i].Dpy, Heads[i].Win);
++ glXDestroyContext(Heads[i].Dpy, Heads[i].Context);
++ XCloseDisplay(Heads[i].Dpy);
++ }
++}
++
++
++static void
++Redraw(struct head *h)
++{
++ if (!glXMakeCurrent(h->Dpy, h->Win, h->Context)) {
++ Error(h->DisplayName, "glXMakeCurrent failed");
++ printf("glXMakeCurrent failed in Redraw()\n");
++ return;
++ }
++
++ h->Angle += 1.0;
++
++ glShadeModel(GL_FLAT);
++ glClearColor(0.5, 0.5, 0.5, 1.0);
++ glClear(GL_COLOR_BUFFER_BIT);
++
++ /* draw green triangle */
++ glColor3f(0.0, 1.0, 0.0);
++ glPushMatrix();
++ glRotatef(h->Angle, 0, 0, 1);
++ glBegin(GL_TRIANGLES);
++ glTexCoord2f(0.5, 1.0); glVertex2f(0, 0.8);
++ glTexCoord2f(0.0, 0.0); glVertex2f(-0.8, -0.7);
++ glTexCoord2f(1.0, 0.0); glVertex2f(0.8, -0.7);
++ glEnd();
++ glPopMatrix();
++
++ if (!SwapSeparate)
++ glXSwapBuffers(h->Dpy, h->Win);
++}
++
++
++static void
++Swap(struct head *h)
++{
++ glXSwapBuffers(h->Dpy, h->Win);
++}
++
++
++static void
++Resize(const struct head *h, unsigned int width, unsigned int height)
++{
++ if (!glXMakeCurrent(h->Dpy, h->Win, h->Context)) {
++ Error(h->DisplayName, "glXMakeCurrent failed in Resize()");
++ return;
++ }
++ glFlush();
++ glViewport(0, 0, width, height);
++ glMatrixMode(GL_PROJECTION);
++ glLoadIdentity();
++ glOrtho(-1.0, 1.0, -1.0, 1.0, -1.0, 1.0);
++}
++
++
++
++static void
++EventLoop(void)
++{
++ while (1) {
++ int i;
++ for (i = 0; i < NumHeads; i++) {
++ struct head *h = &Heads[i];
++ while (XPending(h->Dpy) > 0) {
++ XEvent event;
++ XNextEvent(h->Dpy, &event);
++ if (event.xany.window == h->Win) {
++ switch (event.type) {
++ case Expose:
++ Redraw(h);
++ if (SwapSeparate)
++ Swap(h);
++ break;
++ case ConfigureNotify:
++ Resize(h, event.xconfigure.width, event.xconfigure.height);
++ break;
++ case KeyPress:
++ {
++ char buf[100];
++ KeySym keySym;
++ XComposeStatus stat;
++ XLookupString(&event.xkey, buf, sizeof(buf), &keySym, &stat);
++ switch (keySym) {
++ case XK_Escape:
++ return;
++ break;
++ case XK_d:
++ case XK_D:
++ printf("Delete Texture in window %d\n", i);
++ glXMakeCurrent(h->Dpy, h->Win, h->Context);
++ glDeleteTextures(1, &TexObj);
++ break;
++ case XK_u:
++ case XK_U:
++ printf("Unbind Texture in window %d\n", i);
++ glXMakeCurrent(h->Dpy, h->Win, h->Context);
++ glBindTexture(GL_TEXTURE_2D, 0);
++ break;
++ }
++ }
++ break;
++ default:
++ /*no-op*/ ;
++ }
++ }
++ else {
++ printf("window mismatch\n");
++ }
++ }
++ }
++
++ /* redraw all windows */
++ for (i = 0; i < NumHeads; i++) {
++ Redraw(&Heads[i]);
++ }
++ /* swapbuffers on all windows, if not already done */
++ if (SwapSeparate) {
++ for (i = 0; i < NumHeads; i++) {
++ Swap(&Heads[i]);
++ }
++ }
++ usleep(1);
++ }
++}
++
++
++
++static void
++PrintInfo(const struct head *h)
++{
++ printf("Name: %s\n", h->DisplayName);
++ printf(" Display: %p\n", (void *) h->Dpy);
++ printf(" Window: 0x%x\n", (int) h->Win);
++ printf(" Context: 0x%lx\n", (long) h->Context);
++ printf(" GL_VERSION: %s\n", h->Version);
++ printf(" GL_VENDOR: %s\n", h->Vendor);
++ printf(" GL_RENDERER: %s\n", h->Renderer);
++}
++
++
++int
++main(int argc, char *argv[])
++{
++ char *dpyName = NULL;
++ int i;
++
++ if (argc == 1) {
++ printf("manywin: open N simultaneous glx windows\n");
++ printf("Usage:\n");
++ printf(" manywin [-s] numWindows\n");
++ printf("Options:\n");
++ printf(" -s = swap immediately after drawing (see src code)\n");
++ printf("Example:\n");
++ printf(" manywin 10\n");
++ return 0;
++ }
++ else {
++ int n = 3;
++ for (i = 1; i < argc; i++) {
++ if (strcmp(argv[i], "-s") == 0) {
++ SwapSeparate = GL_FALSE;
++ }
++ else if (strcmp(argv[i], "-display") == 0 && i < argc) {
++ dpyName = argv[i+1];
++ i++;
++ }
++ else {
++ n = atoi(argv[i]);
++ }
++ }
++ if (n < 1)
++ n = 1;
++ if (n > MAX_HEADS)
++ n = MAX_HEADS;
++
++ printf("%d windows\n", n);
++ for (i = 0; i < n; i++) {
++ char name[100];
++ struct head *h;
++ sprintf(name, "%d", i);
++ h = AddHead(dpyName, name);
++ if (h) {
++ PrintInfo(h);
++ }
++ }
++ }
++
++ EventLoop();
++ DestroyHeads();
++ return 0;
++}
+diff -Naurp Mesa-7.8.1/progs/xdemos/msctest.c Mesa-7.8.1.patched/progs/xdemos/msctest.c
+--- Mesa-7.8.1/progs/xdemos/msctest.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/msctest.c 2010-06-13 13:45:06.789793146 +0200
+@@ -0,0 +1,195 @@
++/*
++ * Copyright © 2009 Intel Corporation
++ *
++ * Permission is hereby granted, free of charge, to any person obtaining a
++ * copy of this software and associated documentation files (the "Software"),
++ * to deal in the Software without restriction, including without limitation
++ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
++ * and/or sell copies of the Software, and to permit persons to whom the
++ * Software is furnished to do so, subject to the following conditions:
++ *
++ * The above copyright notice and this permission notice (including the next
++ * paragraph) shall be included in all copies or substantial portions of the
++ * Software.
++ *
++ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
++ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
++ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
++ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
++ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
++ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
++ * IN THE SOFTWARE.
++ *
++ * Authors:
++ * Jesse Barnes <jesse.barnes@intel.com>
++ *
++ */
++
++/** @file msctest.c
++ * Simple test for MSC functionality.
++ */
++#include <stdio.h>
++#include <stdlib.h>
++#include <string.h>
++#include <unistd.h>
++#include <GL/gl.h>
++#include <GL/glu.h>
++#include <GL/glx.h>
++#include <GL/glxext.h>
++#include <X11/X.h>
++#include <X11/Xlib.h>
++#include <X11/Xutil.h>
++
++void (*get_sync_values)(Display *dpy, Window winGL, int64_t *ust, int64_t *msc, int64_t *sbc);
++void (*wait_sync)(Display *dpy, Window winGL, int64_t target_msc, int64_t divisor, int64_t remainder, int64_t *ust, int64_t *msc, int64_t *sbc);
++
++static int GLXExtensionSupported(Display *dpy, const char *extension)
++{
++ const char *extensionsString, *pos;
++
++ extensionsString = glXQueryExtensionsString(dpy, DefaultScreen(dpy));
++
++ pos = strstr(extensionsString, extension);
++
++ if (pos != NULL && (pos == extensionsString || pos[-1] == ' ') &&
++ (pos[strlen(extension)] == ' ' || pos[strlen(extension)] == '\0'))
++ return 1;
++
++ return 0;
++}
++
++extern char *optarg;
++extern int optind, opterr, optopt;
++static char optstr[] = "v";
++
++static void usage(char *name)
++{
++ printf("usage: %s\n", name);
++ exit(-1);
++}
++
++int main(int argc, char *argv[])
++{
++ Display *disp;
++ XVisualInfo *pvi;
++ XSetWindowAttributes swa;
++ int attrib[14];
++ Window winGL;
++ GLXContext context;
++ int dummy;
++ Atom wmDelete;
++ int verbose = 0, width = 200, height = 200;
++ int c, i = 1;
++ int64_t ust, msc, sbc;
++
++ opterr = 0;
++ while ((c = getopt(argc, argv, optstr)) != -1) {
++ switch (c) {
++ case 'v':
++ verbose = 1;
++ break;
++ default:
++ usage(argv[0]);
++ break;
++ }
++ }
++
++ disp = XOpenDisplay(NULL);
++ if (!disp) {
++ fprintf(stderr, "failed to open display\n");
++ return -1;
++ }
++
++ if (!glXQueryExtension(disp, &dummy, &dummy)) {
++ fprintf(stderr, "glXQueryExtension failed\n");
++ return -1;
++ }
++
++ if (!GLXExtensionSupported(disp, "GLX_OML_sync_control")) {
++ fprintf(stderr, "GLX_OML_sync_control not supported, exiting\n");
++ return -1;
++ }
++
++ attrib[0] = GLX_RGBA;
++ attrib[1] = 1;
++ attrib[2] = GLX_RED_SIZE;
++ attrib[3] = 1;
++ attrib[4] = GLX_GREEN_SIZE;
++ attrib[5] = 1;
++ attrib[6] = GLX_BLUE_SIZE;
++ attrib[7] = 1;
++ attrib[8] = GLX_DOUBLEBUFFER;
++ attrib[9] = 1;
++ attrib[10] = None;
++
++ pvi = glXChooseVisual(disp, DefaultScreen(disp), attrib);
++ if (!pvi) {
++ fprintf(stderr, "failed to choose visual, exiting\n");
++ return -1;
++ }
++
++ context = glXCreateContext(disp, pvi, None, GL_TRUE);
++ if (!context) {
++ fprintf(stderr, "failed to create glx context\n");
++ return -1;
++ }
++
++ pvi->screen = DefaultScreen(disp);
++
++ swa.colormap = XCreateColormap(disp, RootWindow(disp, pvi->screen),
++ pvi->visual, AllocNone);
++ swa.border_pixel = 0;
++ swa.event_mask = ExposureMask | KeyPressMask | ButtonPressMask |
++ StructureNotifyMask;
++ winGL = XCreateWindow(disp, RootWindow(disp, pvi->screen),
++ 0, 0,
++ width, height,
++ 0, pvi->depth, InputOutput, pvi->visual,
++ CWBorderPixel | CWColormap | CWEventMask, &swa);
++ if (!winGL) {
++ fprintf(stderr, "window creation failed\n");
++ return -1;
++ }
++ wmDelete = XInternAtom(disp, "WM_DELETE_WINDOW", True);
++ XSetWMProtocols(disp, winGL, &wmDelete, 1);
++
++ XSetStandardProperties(disp, winGL, "msc test", "msc text",
++ None, NULL, 0, NULL);
++
++ XMapRaised(disp, winGL);
++
++ glXMakeCurrent(disp, winGL, context);
++
++ get_sync_values = (void *)glXGetProcAddress((unsigned char *)"glXGetSyncValuesOML");
++ wait_sync = (void *)glXGetProcAddress((unsigned char *)"glXWaitForMscOML");
++
++ if (!get_sync_values || !wait_sync) {
++ fprintf(stderr, "failed to get sync values function\n");
++ return -1;
++ }
++
++ while (i++) {
++ get_sync_values(disp, winGL, &ust, &msc, &sbc);
++ fprintf(stderr, "ust: %llu, msc: %llu, sbc: %llu\n", ust, msc,
++ sbc);
++
++ /* Alternate colors to make tearing obvious */
++ if (i & 1)
++ glClearColor(1.0f, 1.0f, 1.0f, 1.0f);
++ else
++ glClearColor(1.0f, 0.0f, 0.0f, 0.0f);
++ glClear(GL_COLOR_BUFFER_BIT);
++ glXSwapBuffers(disp, winGL);
++ wait_sync(disp, winGL, 0, 60, 0, &ust, &msc, &sbc);
++ fprintf(stderr,
++ "wait returned ust: %llu, msc: %llu, sbc: %llu\n",
++ ust, msc, sbc);
++ sleep(1);
++ }
++
++ XDestroyWindow(disp, winGL);
++ glXDestroyContext(disp, context);
++ XCloseDisplay(disp);
++
++ return 0;
++}
+diff -Naurp Mesa-7.8.1/progs/xdemos/multictx.c Mesa-7.8.1.patched/progs/xdemos/multictx.c
+--- Mesa-7.8.1/progs/xdemos/multictx.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/multictx.c 2010-06-13 13:45:06.789793146 +0200
+@@ -0,0 +1,585 @@
++/*
++ * Copyright (C) 2009 VMware, Inc. All Rights Reserved.
++ *
++ * Permission is hereby granted, free of charge, to any person obtaining a
++ * copy of this software and associated documentation files (the "Software"),
++ * to deal in the Software without restriction, including without limitation
++ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
++ * and/or sell copies of the Software, and to permit persons to whom the
++ * Software is furnished to do so, subject to the following conditions:
++ *
++ * The above copyright notice and this permission notice shall be included
++ * in all copies or substantial portions of the Software.
++ *
++ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
++ * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
++ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
++ * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
++ * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
++ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
++ */
++
++/*
++ * Test rendering with two contexts into one window.
++ * Setup different rendering state for each context to check that
++ * context switching is handled properly.
++ *
++ * Brian Paul
++ * 6 Aug 2009
++ */
++
++
++#include <math.h>
++#include <stdlib.h>
++#include <stdio.h>
++#include <string.h>
++#include <sys/time.h>
++#include <unistd.h>
++#include <X11/Xlib.h>
++#include <X11/keysym.h>
++#include <GL/gl.h>
++#include <GL/glx.h>
++
++
++
++#ifndef M_PI
++#define M_PI 3.14159265
++#endif
++
++
++/** Event handler results: */
++#define NOP 0
++#define EXIT 1
++#define DRAW 2
++
++static GLfloat view_rotx = 0.0, view_roty = 210.0, view_rotz = 0.0;
++static GLint gear1, gear2;
++static GLfloat angle = 0.0;
++
++static GLboolean animate = GL_TRUE; /* Animation */
++
++
++static double
++current_time(void)
++{
++ struct timeval tv;
++#ifdef __VMS
++ (void) gettimeofday(&tv, NULL );
++#else
++ struct timezone tz;
++ (void) gettimeofday(&tv, &tz);
++#endif
++ return (double) tv.tv_sec + tv.tv_usec / 1000000.0;
++}
++
++
++/*
++ *
++ * Draw a gear wheel. You'll probably want to call this function when
++ * building a display list since we do a lot of trig here.
++ *
++ * Input: inner_radius - radius of hole at center
++ * outer_radius - radius at center of teeth
++ * width - width of gear
++ * teeth - number of teeth
++ * tooth_depth - depth of tooth
++ */
++static void
++gear(GLfloat inner_radius, GLfloat outer_radius, GLfloat width,
++ GLint teeth, GLfloat tooth_depth)
++{
++ GLint i;
++ GLfloat r0, r1, r2;
++ GLfloat angle, da;
++ GLfloat u, v, len;
++
++ r0 = inner_radius;
++ r1 = outer_radius - tooth_depth / 2.0;
++ r2 = outer_radius + tooth_depth / 2.0;
++
++ da = 2.0 * M_PI / teeth / 4.0;
++
++ glShadeModel(GL_FLAT);
++
++ glNormal3f(0.0, 0.0, 1.0);
++
++ /* draw front face */
++ glBegin(GL_QUAD_STRIP);
++ for (i = 0; i <= teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), width * 0.5);
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), width * 0.5);
++ if (i < teeth) {
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), width * 0.5);
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ width * 0.5);
++ }
++ }
++ glEnd();
++
++ /* draw front sides of teeth */
++ glBegin(GL_QUADS);
++ da = 2.0 * M_PI / teeth / 4.0;
++ for (i = 0; i < teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), width * 0.5);
++ glVertex3f(r2 * cos(angle + da), r2 * sin(angle + da), width * 0.5);
++ glVertex3f(r2 * cos(angle + 2 * da), r2 * sin(angle + 2 * da),
++ width * 0.5);
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ width * 0.5);
++ }
++ glEnd();
++
++ glNormal3f(0.0, 0.0, -1.0);
++
++ /* draw back face */
++ glBegin(GL_QUAD_STRIP);
++ for (i = 0; i <= teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), -width * 0.5);
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), -width * 0.5);
++ if (i < teeth) {
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ -width * 0.5);
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), -width * 0.5);
++ }
++ }
++ glEnd();
++
++ /* draw back sides of teeth */
++ glBegin(GL_QUADS);
++ da = 2.0 * M_PI / teeth / 4.0;
++ for (i = 0; i < teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ -width * 0.5);
++ glVertex3f(r2 * cos(angle + 2 * da), r2 * sin(angle + 2 * da),
++ -width * 0.5);
++ glVertex3f(r2 * cos(angle + da), r2 * sin(angle + da), -width * 0.5);
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), -width * 0.5);
++ }
++ glEnd();
++
++ /* draw outward faces of teeth */
++ glBegin(GL_QUAD_STRIP);
++ for (i = 0; i < teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), width * 0.5);
++ glVertex3f(r1 * cos(angle), r1 * sin(angle), -width * 0.5);
++ u = r2 * cos(angle + da) - r1 * cos(angle);
++ v = r2 * sin(angle + da) - r1 * sin(angle);
++ len = sqrt(u * u + v * v);
++ u /= len;
++ v /= len;
++ glNormal3f(v, -u, 0.0);
++ glVertex3f(r2 * cos(angle + da), r2 * sin(angle + da), width * 0.5);
++ glVertex3f(r2 * cos(angle + da), r2 * sin(angle + da), -width * 0.5);
++ glNormal3f(cos(angle), sin(angle), 0.0);
++ glVertex3f(r2 * cos(angle + 2 * da), r2 * sin(angle + 2 * da),
++ width * 0.5);
++ glVertex3f(r2 * cos(angle + 2 * da), r2 * sin(angle + 2 * da),
++ -width * 0.5);
++ u = r1 * cos(angle + 3 * da) - r2 * cos(angle + 2 * da);
++ v = r1 * sin(angle + 3 * da) - r2 * sin(angle + 2 * da);
++ glNormal3f(v, -u, 0.0);
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ width * 0.5);
++ glVertex3f(r1 * cos(angle + 3 * da), r1 * sin(angle + 3 * da),
++ -width * 0.5);
++ glNormal3f(cos(angle), sin(angle), 0.0);
++ }
++
++ glVertex3f(r1 * cos(0), r1 * sin(0), width * 0.5);
++ glVertex3f(r1 * cos(0), r1 * sin(0), -width * 0.5);
++
++ glEnd();
++
++ glShadeModel(GL_SMOOTH);
++
++ /* draw inside radius cylinder */
++ glBegin(GL_QUAD_STRIP);
++ for (i = 0; i <= teeth; i++) {
++ angle = i * 2.0 * M_PI / teeth;
++ glNormal3f(-cos(angle), -sin(angle), 0.0);
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), -width * 0.5);
++ glVertex3f(r0 * cos(angle), r0 * sin(angle), width * 0.5);
++ }
++ glEnd();
++}
++
++
++static void
++draw(int ctx)
++{
++ glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
++
++ glPushMatrix();
++ glRotatef(view_rotx, 1.0, 0.0, 0.0);
++ glRotatef(view_roty + angle, 0.0, 1.0, 0.0);
++ glRotatef(view_rotz, 0.0, 0.0, 1.0);
++
++ if (ctx == 0) {
++ glDisable(GL_CULL_FACE);
++ glPushMatrix();
++ glRotatef(angle, 0.0, 0.0, 1.0);
++ glCallList(gear1);
++ glPopMatrix();
++ /* This should not effect the other context's rendering */
++ glEnable(GL_CULL_FACE);
++ glCullFace(GL_FRONT_AND_BACK);
++ }
++ else {
++ glPushMatrix();
++ glRotatef(-2.0 * angle - 9.0, 0.0, 0.0, 1.0);
++ glCallList(gear2);
++ glPopMatrix();
++ }
++
++ glPopMatrix();
++
++ /* this flush is important since we'll be switching contexts next */
++ glFlush();
++}
++
++
++
++static void
++draw_frame(Display *dpy, Window win, GLXContext ctx1, GLXContext ctx2)
++{
++ static double tRot0 = -1.0;
++ double dt, t = current_time();
++
++ if (tRot0 < 0.0)
++ tRot0 = t;
++ dt = t - tRot0;
++ tRot0 = t;
++
++ if (animate) {
++ /* advance rotation for next frame */
++ angle += 70.0 * dt; /* 70 degrees per second */
++ if (angle > 3600.0)
++ angle -= 3600.0;
++ }
++
++ glXMakeCurrent(dpy, (GLXDrawable) win, ctx1);
++ draw(0);
++
++ glXMakeCurrent(dpy, (GLXDrawable) win, ctx2);
++ draw(1);
++
++ glXSwapBuffers(dpy, win);
++}
++
++
++/* new window size or exposure */
++static void
++reshape(Display *dpy, Window win,
++ GLXContext ctx1, GLXContext ctx2, int width, int height)
++{
++ int i;
++
++ width /= 2;
++
++ /* loop: left half of window, right half of window */
++ for (i = 0; i < 2; i++) {
++ if (i == 0)
++ glXMakeCurrent(dpy, win, ctx1);
++ else
++ glXMakeCurrent(dpy, win, ctx2);
++
++ glViewport(width * i, 0, width, height);
++ glScissor(width * i, 0, width, height);
++
++ {
++ GLfloat h = (GLfloat) height / (GLfloat) width;
++
++ glMatrixMode(GL_PROJECTION);
++ glLoadIdentity();
++ glFrustum(-1.0, 1.0, -h, h, 5.0, 60.0);
++ }
++
++ glMatrixMode(GL_MODELVIEW);
++ glLoadIdentity();
++ glTranslatef(0.0, 0.0, -30.0);
++ }
++}
++
++
++
++static void
++init(Display *dpy, Window win, GLXContext ctx1, GLXContext ctx2)
++{
++ static GLfloat pos[4] = { 5.0, 5.0, 10.0, 0.0 };
++ static GLfloat red[4] = { 0.8, 0.1, 0.0, 1.0 };
++ static GLfloat green[4] = { 0.0, 0.8, 0.2, 0.5 };
++ /*static GLfloat blue[4] = { 0.2, 0.2, 1.0, 1.0 };*/
++
++ /* first ctx */
++ {
++ static GLuint stipple[32] = {
++ 0x00ff00ff, 0x00ff00ff, 0x00ff00ff, 0x00ff00ff,
++ 0x00ff00ff, 0x00ff00ff, 0x00ff00ff, 0x00ff00ff,
++
++ 0xff00ff00, 0xff00ff00, 0xff00ff00, 0xff00ff00,
++ 0xff00ff00, 0xff00ff00, 0xff00ff00, 0xff00ff00,
++
++ 0x00ff00ff, 0x00ff00ff, 0x00ff00ff, 0x00ff00ff,
++ 0x00ff00ff, 0x00ff00ff, 0x00ff00ff, 0x00ff00ff,
++
++ 0xff00ff00, 0xff00ff00, 0xff00ff00, 0xff00ff00,
++ 0xff00ff00, 0xff00ff00, 0xff00ff00, 0xff00ff00
++ };
++
++ glXMakeCurrent(dpy, win, ctx1);
++
++ glLightfv(GL_LIGHT0, GL_POSITION, pos);
++ glEnable(GL_LIGHTING);
++ glEnable(GL_LIGHT0);
++ glEnable(GL_DEPTH_TEST);
++
++ gear1 = glGenLists(1);
++ glNewList(gear1, GL_COMPILE);
++ glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, red);
++ gear(1.0, 4.0, 1.0, 20, 0.7);
++ glEndList();
++
++ glEnable(GL_NORMALIZE);
++ glEnable(GL_SCISSOR_TEST);
++ glClearColor(0.4, 0.4, 0.4, 1.0);
++
++ glPolygonStipple((GLubyte *) stipple);
++ glEnable(GL_POLYGON_STIPPLE);
++ }
++
++ /* second ctx */
++ {
++ glXMakeCurrent(dpy, win, ctx2);
++
++ glLightfv(GL_LIGHT0, GL_POSITION, pos);
++ glEnable(GL_LIGHTING);
++ glEnable(GL_LIGHT0);
++ glEnable(GL_DEPTH_TEST);
++
++ gear2 = glGenLists(1);
++ glNewList(gear2, GL_COMPILE);
++ glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, green);
++ gear(1.5, 3.0, 1.5, 16, 0.7);
++ glEndList();
++
++ glEnable(GL_NORMALIZE);
++ glEnable(GL_SCISSOR_TEST);
++ glClearColor(0.6, 0.6, 0.6, 1.0);
++
++ glEnable(GL_BLEND);
++ glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
++ }
++}
++
++
++/**
++ * Create an RGB, double-buffered window.
++ * Return the window and two context handles.
++ */
++static void
++make_window_and_contexts( Display *dpy, const char *name,
++ int x, int y, int width, int height,
++ Window *winRet,
++ GLXContext *ctxRet1,
++ GLXContext *ctxRet2)
++{
++ int attribs[] = { GLX_RGBA,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DOUBLEBUFFER,
++ GLX_DEPTH_SIZE, 1,
++ None };
++ int scrnum;
++ XSetWindowAttributes attr;
++ unsigned long mask;
++ Window root;
++ Window win;
++ XVisualInfo *visinfo;
++
++ scrnum = DefaultScreen( dpy );
++ root = RootWindow( dpy, scrnum );
++
++ visinfo = glXChooseVisual( dpy, scrnum, attribs );
++ if (!visinfo) {
++ printf("Error: couldn't get an RGB, Double-buffered visual\n");
++ exit(1);
++ }
++
++ /* window attributes */
++ attr.background_pixel = 0;
++ attr.border_pixel = 0;
++ attr.colormap = XCreateColormap( dpy, root, visinfo->visual, AllocNone);
++ attr.event_mask = StructureNotifyMask | ExposureMask | KeyPressMask;
++ mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
++
++ win = XCreateWindow( dpy, root, x, y, width, height,
++ 0, visinfo->depth, InputOutput,
++ visinfo->visual, mask, &attr );
++
++ /* set hints and properties */
++ {
++ XSizeHints sizehints;
++ sizehints.x = x;
++ sizehints.y = y;
++ sizehints.width = width;
++ sizehints.height = height;
++ sizehints.flags = USSize | USPosition;
++ XSetNormalHints(dpy, win, &sizehints);
++ XSetStandardProperties(dpy, win, name, name,
++ None, (char **)NULL, 0, &sizehints);
++ }
++
++ *winRet = win;
++ *ctxRet1 = glXCreateContext( dpy, visinfo, NULL, True );
++ *ctxRet2 = glXCreateContext( dpy, visinfo, NULL, True );
++
++ if (!*ctxRet1 || !*ctxRet2) {
++ printf("Error: glXCreateContext failed\n");
++ exit(1);
++ }
++
++ XFree(visinfo);
++}
++
++
++/**
++ * Handle one X event.
++ * \return NOP, EXIT or DRAW
++ */
++static int
++handle_event(Display *dpy, Window win, GLXContext ctx1, GLXContext ctx2,
++ XEvent *event)
++{
++ (void) dpy;
++ (void) win;
++
++ switch (event->type) {
++ case Expose:
++ return DRAW;
++ case ConfigureNotify:
++ reshape(dpy, win, ctx1, ctx2,
++ event->xconfigure.width, event->xconfigure.height);
++ break;
++ case KeyPress:
++ {
++ char buffer[10];
++ int r, code;
++ code = XLookupKeysym(&event->xkey, 0);
++ if (code == XK_Left) {
++ view_roty += 5.0;
++ }
++ else if (code == XK_Right) {
++ view_roty -= 5.0;
++ }
++ else if (code == XK_Up) {
++ view_rotx += 5.0;
++ }
++ else if (code == XK_Down) {
++ view_rotx -= 5.0;
++ }
++ else {
++ r = XLookupString(&event->xkey, buffer, sizeof(buffer),
++ NULL, NULL);
++ if (buffer[0] == 27) {
++ /* escape */
++ return EXIT;
++ }
++ else if (buffer[0] == 'a' || buffer[0] == 'A') {
++ animate = !animate;
++ }
++ }
++ return DRAW;
++ }
++ }
++ return NOP;
++}
++
++
++static void
++event_loop(Display *dpy, Window win, GLXContext ctx1, GLXContext ctx2)
++{
++ while (1) {
++ int op;
++ while (!animate || XPending(dpy) > 0) {
++ XEvent event;
++ XNextEvent(dpy, &event);
++ op = handle_event(dpy, win, ctx1, ctx2, &event);
++ if (op == EXIT)
++ return;
++ else if (op == DRAW)
++ break;
++ }
++
++ draw_frame(dpy, win, ctx1, ctx2);
++ }
++}
++
++
++int
++main(int argc, char *argv[])
++{
++ unsigned int winWidth = 800, winHeight = 400;
++ int x = 0, y = 0;
++ Display *dpy;
++ Window win;
++ GLXContext ctx1, ctx2;
++ char *dpyName = NULL;
++ GLboolean printInfo = GL_FALSE;
++ int i;
++
++ for (i = 1; i < argc; i++) {
++ if (strcmp(argv[i], "-display") == 0) {
++ dpyName = argv[i+1];
++ i++;
++ }
++ else {
++ return 1;
++ }
++ }
++
++ dpy = XOpenDisplay(dpyName);
++ if (!dpy) {
++ printf("Error: couldn't open display %s\n",
++ dpyName ? dpyName : getenv("DISPLAY"));
++ return -1;
++ }
++
++ make_window_and_contexts(dpy, "multictx", x, y, winWidth, winHeight,
++ &win, &ctx1, &ctx2);
++ XMapWindow(dpy, win);
++
++ if (printInfo) {
++ printf("GL_RENDERER = %s\n", (char *) glGetString(GL_RENDERER));
++ printf("GL_VERSION = %s\n", (char *) glGetString(GL_VERSION));
++ printf("GL_VENDOR = %s\n", (char *) glGetString(GL_VENDOR));
++ printf("GL_EXTENSIONS = %s\n", (char *) glGetString(GL_EXTENSIONS));
++ }
++
++ init(dpy, win, ctx1, ctx2);
++
++ /* Set initial projection/viewing transformation.
++ * We can't be sure we'll get a ConfigureNotify event when the window
++ * first appears.
++ */
++ reshape(dpy, win, ctx1, ctx2, winWidth, winHeight);
++
++ event_loop(dpy, win, ctx1, ctx2);
++
++ glDeleteLists(gear1, 1);
++ glDeleteLists(gear2, 1);
++ glXDestroyContext(dpy, ctx1);
++ glXDestroyContext(dpy, ctx2);
++ XDestroyWindow(dpy, win);
++ XCloseDisplay(dpy);
++
++ return 0;
++}
+diff -Naurp Mesa-7.8.1/progs/xdemos/offset.c Mesa-7.8.1.patched/progs/xdemos/offset.c
+--- Mesa-7.8.1/progs/xdemos/offset.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/offset.c 2010-06-13 13:45:06.789793146 +0200
+@@ -0,0 +1,343 @@
++/****************************************************************************
++Copyright 1995 by Silicon Graphics Incorporated, Mountain View, California.
++
++ All Rights Reserved
++
++Permission to use, copy, modify, and distribute this software and its
++documentation for any purpose and without fee is hereby granted,
++provided that the above copyright notice appear in all copies and that
++both that copyright notice and this permission notice appear in
++supporting documentation, and that the name of Silicon Graphics not be
++used in advertising or publicity pertaining to distribution of the
++software without specific, written prior permission.
++
++SILICON GRAPHICS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
++INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
++EVENT SHALL SILICON GRAPHICS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
++CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
++USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
++OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
++PERFORMANCE OF THIS SOFTWARE.
++
++****************************************************************************/
++
++/*
++ * Derived from code written by Kurt Akeley, November 1992
++ *
++ * Uses PolygonOffset to draw hidden-line images. PolygonOffset
++ * shifts the z values of polygons an amount that is
++ * proportional to their slope in screen z. This keeps
++ * the lines, which are drawn without displacement, from
++ * interacting with their respective polygons, and
++ * thus eliminates line dropouts.
++ *
++ * The left image shows an ordinary antialiased wireframe image.
++ * The center image shows an antialiased hidden-line image without
++ * PolygonOffset.
++ * The right image shows an antialiased hidden-line image using
++ * PolygonOffset to reduce artifacts.
++ *
++ * Drag with a mouse button pressed to rotate the models.
++ * Press the escape key to exit.
++ */
++
++/*
++ * Modified for OpenGL 1.1 glPolygonOffset() conventions
++ */
++
++
++#include <GL/glx.h>
++#include <X11/keysym.h>
++#include <stdlib.h>
++#include <stdio.h>
++#include <string.h>
++
++#undef GL_EXT_polygon_offset /* use GL 1.1 version instead of extension */
++
++
++#ifndef EXIT_FAILURE
++# define EXIT_FAILURE 1
++#endif
++#ifndef EXIT_SUCCESS
++# define EXIT_SUCCESS 0
++#endif
++
++#define MAXQUAD 6
++
++typedef float Vertex[3];
++
++typedef Vertex Quad[4];
++
++/* data to define the six faces of a unit cube */
++Quad quads[MAXQUAD] = {
++ { {0,0,0}, {0,0,1}, {0,1,1}, {0,1,0} }, /* x = 0 */
++ { {0,0,0}, {1,0,0}, {1,0,1}, {0,0,1} }, /* y = 0 */
++ { {0,0,0}, {1,0,0}, {1,1,0}, {0,1,0} }, /* z = 0 */
++ { {1,0,0}, {1,0,1}, {1,1,1}, {1,1,0} }, /* x = 1 */
++ { {0,1,0}, {1,1,0}, {1,1,1}, {0,1,1} }, /* y = 1 */
++ { {0,0,1}, {1,0,1}, {1,1,1}, {0,1,1} } /* z = 1 */
++};
++
++#define WIREFRAME 0
++#define HIDDEN_LINE 1
++
++static void error(const char* prog, const char* msg);
++static void cubes(int mx, int my, int mode);
++static void fill(Quad quad);
++static void outline(Quad quad);
++static void draw_hidden(Quad quad, int mode, int face);
++static void process_input(Display *dpy, Window win);
++static int query_extension(char* extName);
++
++static int attributeList[] = { GLX_RGBA, GLX_RED_SIZE, 1, GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1, GLX_DOUBLEBUFFER, GLX_DEPTH_SIZE, 1, None };
++
++static int dimension = 3;
++
++static float Scale = 1.0;
++
++
++int main(int argc, char** argv) {
++ Display *dpy;
++ XVisualInfo *vi;
++ XSetWindowAttributes swa;
++ Window win;
++ GLXContext cx;
++ GLint z;
++
++ dpy = XOpenDisplay(0);
++ if (!dpy) error(argv[0], "can't open display");
++
++ vi = glXChooseVisual(dpy, DefaultScreen(dpy), attributeList);
++ if (!vi) error(argv[0], "no suitable visual");
++
++ cx = glXCreateContext(dpy, vi, 0, GL_TRUE);
++
++ swa.colormap = XCreateColormap(dpy, RootWindow(dpy, vi->screen),
++ vi->visual, AllocNone);
++
++ swa.border_pixel = 0;
++ swa.event_mask = ExposureMask | StructureNotifyMask | KeyPressMask |
++ ButtonPressMask | ButtonMotionMask;
++ win = XCreateWindow(dpy, RootWindow(dpy, vi->screen), 0, 0, 900, 300,
++ 0, vi->depth, InputOutput, vi->visual,
++ CWBorderPixel|CWColormap|CWEventMask, &swa);
++ XStoreName(dpy, win, "hiddenline");
++ XMapWindow(dpy, win);
++
++ glXMakeCurrent(dpy, win, cx);
++
++ /* check for the polygon offset extension */
++#ifndef GL_VERSION_1_1
++ if (!query_extension("GL_EXT_polygon_offset"))
++ error(argv[0], "polygon_offset extension is not available");
++#else
++ (void) query_extension;
++#endif
++
++ /* set up viewing parameters */
++ glMatrixMode(GL_PROJECTION);
++ glFrustum(-1, 1, -1, 1, 6, 20);
++ glMatrixMode(GL_MODELVIEW);
++ glTranslatef(0, 0, -15);
++
++ /* set other relevant state information */
++ glEnable(GL_DEPTH_TEST);
++
++ glGetIntegerv(GL_DEPTH_BITS, &z);
++ printf("GL_DEPTH_BITS = %d\n", z);
++
++#ifdef GL_EXT_polygon_offset
++ printf("using 1.0 offset extension\n");
++ glPolygonOffsetEXT( 1.0, 0.00001 );
++#else
++ printf("using 1.1 offset\n");
++ glPolygonOffset( 1.0, 0.5 );
++#endif
++
++ glShadeModel( GL_FLAT );
++ glDisable( GL_DITHER );
++
++ /* process events until the user presses ESC */
++ while (1) process_input(dpy, win);
++
++ return 0;
++}
++
++static void
++draw_scene(int mx, int my) {
++ glClearColor(0.25, 0.25, 0.25, 0);
++ glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
++
++ glPushMatrix();
++ glTranslatef(-1.7, 0.0, 0.0);
++ cubes(mx, my, WIREFRAME);
++ glPopMatrix();
++
++ glPushMatrix();
++ cubes(mx, my, HIDDEN_LINE);
++ glPopMatrix();
++
++ glPushMatrix();
++ glTranslatef(1.7, 0.0, 0.0);
++#ifdef GL_EXT_polygon_offset
++ glEnable(GL_POLYGON_OFFSET_EXT);
++#else
++ glEnable(GL_POLYGON_OFFSET_FILL);
++#endif
++ glScalef(Scale, Scale, Scale);
++ cubes(mx, my, HIDDEN_LINE);
++#ifdef GL_EXT_polygon_offset
++ glDisable(GL_POLYGON_OFFSET_EXT);
++#else
++ glDisable(GL_POLYGON_OFFSET_FILL);
++#endif
++ glPopMatrix();
++}
++
++
++static void
++cubes(int mx, int my, int mode) {
++ int x, y, z, i;
++
++ /* track the mouse */
++ glRotatef(mx / 2.0, 0, 1, 0);
++ glRotatef(my / 2.0, 1, 0, 0);
++
++ /* draw the lines as hidden polygons */
++ glTranslatef(-0.5, -0.5, -0.5);
++ glScalef(1.0/dimension, 1.0/dimension, 1.0/dimension);
++ for (z = 0; z < dimension; z++) {
++ for (y = 0; y < dimension; y++) {
++ for (x = 0; x < dimension; x++) {
++ glPushMatrix();
++ glTranslatef(x, y, z);
++ glScalef(0.8, 0.8, 0.8);
++ for (i = 0; i < MAXQUAD; i++)
++ draw_hidden(quads[i], mode, i);
++ glPopMatrix();
++ }
++ }
++ }
++}
++
++static void
++fill(Quad quad) {
++ /* draw a filled polygon */
++ glBegin(GL_QUADS);
++ glVertex3fv(quad[0]);
++ glVertex3fv(quad[1]);
++ glVertex3fv(quad[2]);
++ glVertex3fv(quad[3]);
++ glEnd();
++}
++
++static void
++outline(Quad quad) {
++ /* draw an outlined polygon */
++ glBegin(GL_LINE_LOOP);
++ glVertex3fv(quad[0]);
++ glVertex3fv(quad[1]);
++ glVertex3fv(quad[2]);
++ glVertex3fv(quad[3]);
++ glEnd();
++}
++
++static void
++draw_hidden(Quad quad, int mode, int face) {
++ static const GLfloat colors[3][3] = {
++ {0.5, 0.5, 0.0},
++ {0.8, 0.5, 0.0},
++ {0.0, 0.5, 0.8}
++ };
++ if (mode == HIDDEN_LINE) {
++ glColor3fv(colors[face % 3]);
++ fill(quad);
++ }
++
++ /* draw the outline using white */
++ glColor3f(1, 1, 1);
++ outline(quad);
++}
++
++static void
++process_input(Display *dpy, Window win) {
++ XEvent event;
++ static int prevx, prevy;
++ static int deltax = 90, deltay = 40;
++
++ do {
++ char buf[31];
++ KeySym keysym;
++
++ XNextEvent(dpy, &event);
++ switch(event.type) {
++ case Expose:
++ break;
++ case ConfigureNotify: {
++ /* this approach preserves a 1:1 viewport aspect ratio */
++ int vX, vY, vW, vH;
++ int eW = event.xconfigure.width, eH = event.xconfigure.height;
++ if (eW >= eH) {
++ vX = 0;
++ vY = (eH - eW) >> 1;
++ vW = vH = eW;
++ } else {
++ vX = (eW - eH) >> 1;
++ vY = 0;
++ vW = vH = eH;
++ }
++ glViewport(vX, vY, vW, vH);
++ }
++ break;
++ case KeyPress:
++ (void) XLookupString(&event.xkey, buf, sizeof(buf), &keysym, NULL);
++ switch (keysym) {
++ case 'Z':
++ Scale *= 1.1;
++ break;
++ case 'z':
++ Scale *= 0.9;
++ break;
++ case XK_Escape:
++ exit(EXIT_SUCCESS);
++ default:
++ break;
++ }
++ break;
++ case ButtonPress:
++ prevx = event.xbutton.x;
++ prevy = event.xbutton.y;
++ break;
++ case MotionNotify:
++ deltax += (event.xbutton.x - prevx); prevx = event.xbutton.x;
++ deltay += (event.xbutton.y - prevy); prevy = event.xbutton.y;
++ break;
++ default:
++ break;
++ }
++ } while (XPending(dpy));
++
++ draw_scene(deltax, deltay);
++ glXSwapBuffers(dpy, win);
++}
++
++static void
++error(const char *prog, const char *msg) {
++ fprintf(stderr, "%s: %s\n", prog, msg);
++ exit(EXIT_FAILURE);
++}
++
++static int
++query_extension(char* extName) {
++ char *p = (char *) glGetString(GL_EXTENSIONS);
++ char *end = p + strlen(p);
++ while (p < end) {
++ int n = strcspn(p, " ");
++ if ((strlen(extName) == n) && (strncmp(extName, p, n) == 0))
++ return GL_TRUE;
++ p += (n + 1);
++ }
++ return GL_FALSE;
++}
++
+diff -Naurp Mesa-7.8.1/progs/xdemos/omlsync.c Mesa-7.8.1.patched/progs/xdemos/omlsync.c
+--- Mesa-7.8.1/progs/xdemos/omlsync.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/omlsync.c 2010-06-13 13:45:06.788792936 +0200
+@@ -0,0 +1,265 @@
++/*
++ * Copyright © 2007-2010 Intel Corporation
++ *
++ * Permission is hereby granted, free of charge, to any person obtaining a
++ * copy of this software and associated documentation files (the "Software"),
++ * to deal in the Software without restriction, including without limitation
++ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
++ * and/or sell copies of the Software, and to permit persons to whom the
++ * Software is furnished to do so, subject to the following conditions:
++ *
++ * The above copyright notice and this permission notice (including the next
++ * paragraph) shall be included in all copies or substantial portions of the
++ * Software.
++ *
++ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
++ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
++ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
++ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
++ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
++ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
++ * IN THE SOFTWARE.
++ *
++ * Authors:
++ * Jesse Barnes <jesse.barnes@intel.com>
++ *
++ */
++
++/** @file omlsync.c
++ * The program is simple: it paints a window alternating colors (red &
++ * white) either as fast as possible or synchronized to vblank events
++ *
++ * If run normally, the program should display a window that exhibits
++ * significant tearing between red and white colors (e.g. you might get
++ * a "waterfall" effect of red and white horizontal bars).
++ *
++ * If run with the '-s b' option, the program should synchronize the
++ * window color changes with the vertical blank period, resulting in a
++ * window that looks orangish with a high frequency flicker (which may
++ * be invisible). If the window is moved to another screen, this
++ * property should be preserved. If the window spans two screens, it
++ * shouldn't tear on whichever screen most of the window is on; the
++ * portion on the other screen may show some tearing (like the
++ * waterfall effect above).
++ *
++ * Other options include '-w <width>' and '-h <height>' to set the
++ * window size.
++ */
++#include <stdio.h>
++#include <stdlib.h>
++#include <string.h>
++#include <unistd.h>
++#include <GL/gl.h>
++#include <GL/glu.h>
++#include <GL/glx.h>
++#include <GL/glxext.h>
++#include <X11/X.h>
++#include <X11/Xlib.h>
++#include <X11/Xutil.h>
++
++Bool (*glXGetSyncValuesOML)(Display *dpy, GLXDrawable drawable,
++ int64_t *ust, int64_t *msc, int64_t *sbc);
++Bool (*glXGetMscRateOML)(Display *dpy, GLXDrawable drawable, int32_t *numerator,
++ int32_t *denominator);
++int64_t (*glXSwapBuffersMscOML)(Display *dpy, GLXDrawable drawable,
++ int64_t target_msc, int64_t divisor,
++ int64_t remainder);
++Bool (*glXWaitForMscOML)(Display *dpy, GLXDrawable drawable, int64_t target_msc,
++ int64_t divisor, int64_t remainder, int64_t *ust,
++ int64_t *msc, int64_t *sbc);
++Bool (*glXWaitForSbcOML)(Display *dpy, GLXDrawable drawable, int64_t target_sbc,
++ int64_t *ust, int64_t *msc, int64_t *sbc);
++int (*glXSwapInterval)(int interval);
++
++static int GLXExtensionSupported(Display *dpy, const char *extension)
++{
++ const char *extensionsString, *pos;
++
++ extensionsString = glXQueryExtensionsString(dpy, DefaultScreen(dpy));
++
++ pos = strstr(extensionsString, extension);
++
++ if (pos != NULL && (pos == extensionsString || pos[-1] == ' ') &&
++ (pos[strlen(extension)] == ' ' || pos[strlen(extension)] == '\0'))
++ return 1;
++
++ return 0;
++}
++
++extern char *optarg;
++extern int optind, opterr, optopt;
++static char optstr[] = "w:h:vd:r:n:i:";
++
++static void usage(char *name)
++{
++ printf("usage: %s [-w <width>] [-h <height>] ...\n", name);
++ printf("\t-d<divisor> - divisor for OML swap\n");
++ printf("\t-r<remainder> - remainder for OML swap\n");
++ printf("\t-n<interval> - wait interval for OML WaitMSC\n");
++ printf("\t-i<swap interval> - swap at most once every n frames\n");
++ printf("\t-v: verbose (print count)\n");
++ exit(-1);
++}
++
++int main(int argc, char *argv[])
++{
++ Display *disp;
++ XVisualInfo *pvi;
++ XSetWindowAttributes swa;
++ Window winGL;
++ GLXContext context;
++ int dummy;
++ Atom wmDelete;
++ int64_t ust, msc, sbc;
++ int width = 500, height = 500, verbose = 0, divisor = 0, remainder = 0,
++ wait_interval = 0, swap_interval = 1;
++ int c, i = 1;
++ int ret;
++ int db_attribs[] = { GLX_RGBA,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DOUBLEBUFFER,
++ GLX_DEPTH_SIZE, 1,
++ None };
++ XSizeHints sizehints;
++
++ opterr = 0;
++ while ((c = getopt(argc, argv, optstr)) != -1) {
++ switch (c) {
++ case 'w':
++ width = atoi(optarg);
++ break;
++ case 'h':
++ height = atoi(optarg);
++ break;
++ case 'v':
++ verbose = 1;
++ break;
++ case 'd':
++ divisor = atoi(optarg);
++ break;
++ case 'r':
++ remainder = atoi(optarg);
++ break;
++ case 'n':
++ wait_interval = atoi(optarg);
++ break;
++ case 'i':
++ swap_interval = atoi(optarg);
++ break;
++ default:
++ usage(argv[0]);
++ break;
++ }
++ }
++
++ disp = XOpenDisplay(NULL);
++ if (!disp) {
++ fprintf(stderr, "failed to open display\n");
++ return -1;
++ }
++
++ if (!glXQueryExtension(disp, &dummy, &dummy)) {
++ fprintf(stderr, "glXQueryExtension failed\n");
++ return -1;
++ }
++
++ if (!GLXExtensionSupported(disp, "GLX_OML_sync_control")) {
++ fprintf(stderr, "GLX_OML_sync_control not supported\n");
++ return -1;
++ }
++
++ if (!GLXExtensionSupported(disp, "GLX_MESA_swap_control")) {
++ fprintf(stderr, "GLX_MESA_swap_control not supported\n");
++ return -1;
++ }
++
++ pvi = glXChooseVisual(disp, DefaultScreen(disp), db_attribs);
++
++ if (!pvi) {
++ fprintf(stderr, "failed to choose visual, exiting\n");
++ return -1;
++ }
++
++ pvi->screen = DefaultScreen(disp);
++
++ swa.colormap = XCreateColormap(disp, RootWindow(disp, pvi->screen),
++ pvi->visual, AllocNone);
++ swa.border_pixel = 0;
++ swa.event_mask = ExposureMask | KeyPressMask | ButtonPressMask |
++ StructureNotifyMask;
++ winGL = XCreateWindow(disp, RootWindow(disp, pvi->screen),
++ 0, 0,
++ width, height,
++ 0, pvi->depth, InputOutput, pvi->visual,
++ CWBorderPixel | CWColormap | CWEventMask, &swa);
++ if (!winGL) {
++ fprintf(stderr, "window creation failed\n");
++ return -1;
++ }
++ wmDelete = XInternAtom(disp, "WM_DELETE_WINDOW", True);
++ XSetWMProtocols(disp, winGL, &wmDelete, 1);
++
++ sizehints.x = 0;
++ sizehints.y = 0;
++ sizehints.width = width;
++ sizehints.height = height;
++ sizehints.flags = USSize | USPosition;
++
++ XSetNormalHints(disp, winGL, &sizehints);
++ XSetStandardProperties(disp, winGL, "glsync test", "glsync text",
++ None, NULL, 0, &sizehints);
++
++ context = glXCreateContext(disp, pvi, NULL, GL_TRUE);
++ if (!context) {
++ fprintf(stderr, "failed to create glx context\n");
++ return -1;
++ }
++
++ XMapWindow(disp, winGL);
++ ret = glXMakeCurrent(disp, winGL, context);
++ if (!ret) {
++ fprintf(stderr, "failed to make context current: %d\n", ret);
++ }
++
++ glXGetSyncValuesOML = (void *)glXGetProcAddress((unsigned char *)"glXGetSyncValuesOML");
++ glXGetMscRateOML = (void *)glXGetProcAddress((unsigned char *)"glXGetMscRateOML");
++ glXSwapBuffersMscOML = (void *)glXGetProcAddress((unsigned char *)"glXSwapBuffersMscOML");
++ glXWaitForMscOML = (void *)glXGetProcAddress((unsigned char *)"glXWaitForMscOML");
++ glXWaitForSbcOML = (void *)glXGetProcAddress((unsigned char *)"glXWaitForSbcOML");
++ glXSwapInterval = (void *)glXGetProcAddress((unsigned char *)"glXSwapIntervalMESA");
++
++ glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
++
++ glXSwapInterval(swap_interval);
++ fprintf(stderr, "set swap interval to %d\n", swap_interval);
++
++ glXGetSyncValuesOML(disp, winGL, &ust, &msc, &sbc);
++ while (i++) {
++ /* Alternate colors to make tearing obvious */
++ if (i & 1) {
++ glClearColor(1.0f, 1.0f, 1.0f, 1.0f);
++ glColor3f(1.0f, 1.0f, 1.0f);
++ } else {
++ glClearColor(1.0f, 0.0f, 0.0f, 0.0f);
++ glColor3f(1.0f, 0.0f, 0.0f);
++ }
++
++ glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
++ glRectf(0, 0, width, height);
++
++ glXSwapBuffersMscOML(disp, winGL, 0, divisor, remainder);
++
++ if (wait_interval) {
++ glXWaitForMscOML(disp, winGL, msc + wait_interval,
++ 0, 0, &ust, &msc, &sbc);
++ }
++ }
++
++ XDestroyWindow(disp, winGL);
++ glXDestroyContext(disp, context);
++ XCloseDisplay(disp);
++
++ return 0;
++}
+diff -Naurp Mesa-7.8.1/progs/xdemos/opencloseopen.c Mesa-7.8.1.patched/progs/xdemos/opencloseopen.c
+--- Mesa-7.8.1/progs/xdemos/opencloseopen.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/opencloseopen.c 2010-06-13 13:45:06.788792936 +0200
+@@ -0,0 +1,189 @@
++/*
++ * Copyright (C) 1999-2001 Brian Paul All Rights Reserved.
++ * (C) Copyright IBM Corporation 2003
++ *
++ * Permission is hereby granted, free of charge, to any person obtaining a
++ * copy of this software and associated documentation files (the "Software"),
++ * to deal in the Software without restriction, including without limitation
++ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
++ * and/or sell copies of the Software, and to permit persons to whom the
++ * Software is furnished to do so, subject to the following conditions:
++ *
++ * The above copyright notice and this permission notice shall be included
++ * in all copies or substantial portions of the Software.
++ *
++ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
++ * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
++ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
++ * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
++ * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
++ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
++ */
++
++#include <stdlib.h>
++#include <stdio.h>
++#include <unistd.h>
++#include <string.h>
++#include <X11/Xlib.h>
++#include <GL/gl.h>
++#include <GL/glx.h>
++
++/** \file opencloseopen.c
++ * Simple test for Mesa bug #508473. Create a window and rendering context.
++ * Draw a single frame. Close the window, destroy the context, and close
++ * the display. Re-open the display, create a new window and context. This
++ * should work, but, at least as of Mesa 5.1, it segfaults. See the bug
++ * report for more details.
++ *
++ * Most of the code here was lifed from various other Mesa xdemos.
++ */
++
++static void
++draw(void)
++{
++ glViewport(0, 0, 300, 300);
++ glMatrixMode(GL_PROJECTION);
++ glLoadIdentity();
++ glOrtho(-1.0, 1.0, -1.0, 1.0, -1.0, 1.0);
++ glMatrixMode(GL_MODELVIEW);
++
++ glShadeModel(GL_FLAT);
++ glClearColor(0.5, 0.5, 0.5, 1.0);
++ glClear(GL_COLOR_BUFFER_BIT);
++
++ /* draw blue quad */
++ glLoadIdentity();
++ glColor3f(0.3, 0.3, 1.0);
++ glPushMatrix();
++ glRotatef(0, 0, 0, 1);
++ glBegin(GL_POLYGON);
++ glVertex2f(-0.5, -0.25);
++ glVertex2f( 0.5, -0.25);
++ glVertex2f( 0.5, 0.25);
++ glVertex2f(-0.5, 0.25);
++ glEnd();
++ glPopMatrix();}
++
++
++/*
++ * Create an RGB, double-buffered window.
++ * Return the window and context handles.
++ */
++static void
++make_window( const char * dpyName, const char *name,
++ int x, int y, int width, int height,
++ Display **dpyRet, Window *winRet, GLXContext *ctxRet)
++{
++ int attrib[] = { GLX_RGBA,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DOUBLEBUFFER,
++ None };
++ int scrnum;
++ XSetWindowAttributes attr;
++ unsigned long mask;
++ Window root;
++ Window win;
++ GLXContext ctx;
++ XVisualInfo *visinfo;
++ Display *dpy;
++
++ dpy = XOpenDisplay(dpyName);
++ if (!dpy) {
++ printf("Error: couldn't open display %s\n", XDisplayName(dpyName));
++ exit(1);
++ }
++
++ *dpyRet = dpy;
++ scrnum = DefaultScreen( dpy );
++ root = RootWindow( dpy, scrnum );
++
++ visinfo = glXChooseVisual( dpy, scrnum, attrib );
++ if (!visinfo) {
++ printf("Error: couldn't get an RGB, Double-buffered visual\n");
++ exit(1);
++ }
++
++ /* window attributes */
++ attr.background_pixel = 0;
++ attr.border_pixel = 0;
++ attr.colormap = XCreateColormap( dpy, root, visinfo->visual, AllocNone);
++ attr.event_mask = StructureNotifyMask | ExposureMask | KeyPressMask;
++ mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
++
++ win = XCreateWindow( dpy, root, 0, 0, width, height,
++ 0, visinfo->depth, InputOutput,
++ visinfo->visual, mask, &attr );
++
++ /* set hints and properties */
++ {
++ XSizeHints sizehints;
++ sizehints.x = x;
++ sizehints.y = y;
++ sizehints.width = width;
++ sizehints.height = height;
++ sizehints.flags = USSize | USPosition;
++ XSetNormalHints(dpy, win, &sizehints);
++ XSetStandardProperties(dpy, win, name, name,
++ None, (char **)NULL, 0, &sizehints);
++ }
++
++ ctx = glXCreateContext( dpy, visinfo, NULL, True );
++ if (!ctx) {
++ printf("Error: glXCreateContext failed\n");
++ exit(1);
++ }
++
++ XFree(visinfo);
++
++ *winRet = win;
++ *ctxRet = ctx;
++}
++
++
++static void
++destroy_window( Display *dpy, Window win, GLXContext ctx )
++{
++ glXMakeCurrent(dpy, None, NULL);
++ glXDestroyContext(dpy, ctx);
++ XDestroyWindow(dpy, win);
++ XCloseDisplay(dpy);
++}
++
++
++int
++main(int argc, char *argv[])
++{
++ Display *dpy;
++ Window win;
++ GLXContext ctx;
++ char *dpyName = NULL;
++ int i;
++
++ for (i = 1; i < argc; i++) {
++ if (strcmp(argv[i], "-display") == 0) {
++ dpyName = argv[i+1];
++ i++;
++ }
++ }
++
++ printf("If this program segfaults, then Mesa bug #508473 is probably "
++ "back.\n");
++ make_window(dpyName, "Open-close-open", 0, 0, 300, 300, &dpy, &win, &ctx);
++ XMapWindow(dpy, win);
++ glXMakeCurrent(dpy, win, ctx);
++
++ draw();
++ glXSwapBuffers(dpy, win);
++ sleep(2);
++
++ destroy_window(dpy, win, ctx);
++
++ make_window(dpyName, "Open-close-open", 0, 0, 300, 300, &dpy, &win, &ctx);
++ XMapWindow(dpy, win);
++ glXMakeCurrent(dpy, win, ctx);
++ destroy_window(dpy, win, ctx);
++
++ return 0;
++}
+diff -Naurp Mesa-7.8.1/progs/xdemos/overlay.c Mesa-7.8.1.patched/progs/xdemos/overlay.c
+--- Mesa-7.8.1/progs/xdemos/overlay.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/overlay.c 2010-06-13 13:45:06.789793146 +0200
+@@ -0,0 +1,246 @@
++/*
++ * GLX overlay test/demo.
++ *
++ * Brian Paul
++ * 18 July 2005
++ */
++
++#include <GL/gl.h>
++#include <GL/glx.h>
++#include <X11/keysym.h>
++#include <assert.h>
++#include <stdio.h>
++#include <stdlib.h>
++
++static int WinWidth = 300, WinHeight = 300;
++static Window NormalWindow = 0;
++static Window OverlayWindow = 0;
++static GLXContext NormalContext = 0;
++static GLXContext OverlayContext = 0;
++static GLboolean RGBOverlay = GL_FALSE;
++static GLfloat Angle = 0.0;
++
++
++static void
++RedrawNormal(Display *dpy)
++{
++ glXMakeCurrent(dpy, NormalWindow, NormalContext);
++ glViewport(0, 0, WinWidth, WinHeight);
++ glMatrixMode(GL_PROJECTION);
++ glLoadIdentity();
++ glOrtho(-1.0, 1.0, -1.0, 1.0, -1.0, 1.0);
++ glMatrixMode(GL_MODELVIEW);
++ glClearColor(0.5, 0.5, 0.5, 1.0);
++ glClear(GL_COLOR_BUFFER_BIT);
++ glColor3f(1.0, 1.0, 0.0);
++ glPushMatrix();
++ glRotatef(Angle, 0, 0, 1);
++ glRectf(-0.8, -0.8, 0.8, 0.8);
++ glPopMatrix();
++ glXSwapBuffers(dpy, NormalWindow);
++}
++
++
++static void
++RedrawOverlay(Display *dpy)
++{
++ glXMakeCurrent(dpy, OverlayWindow, OverlayContext);
++ glViewport(0, 0, WinWidth, WinHeight);
++ glMatrixMode(GL_PROJECTION);
++ glLoadIdentity();
++ glOrtho(-1.0, 1.0, -1.0, 1.0, -1.0, 1.0);
++ glMatrixMode(GL_MODELVIEW);
++ glClear(GL_COLOR_BUFFER_BIT);
++ if (RGBOverlay) {
++ glColor3f(0.0, 1.0, 1.0);
++ }
++ else {
++ glIndexi(2);
++ }
++ glBegin(GL_LINES);
++ glVertex2f(-1, -1);
++ glVertex2f(1, 1);
++ glVertex2f(1, -1);
++ glVertex2f(-1, 1);
++ glEnd();
++ glXSwapBuffers(dpy, OverlayWindow);
++}
++
++
++static Window
++MakeWindow(Display *dpy, XVisualInfo *visinfo, Window parent,
++ unsigned int width, unsigned int height)
++{
++ int scrnum;
++ XSetWindowAttributes attr;
++ unsigned long mask;
++ Window root;
++ Window win;
++
++ scrnum = DefaultScreen(dpy);
++ root = RootWindow(dpy, scrnum);
++
++ /* window attributes */
++ attr.background_pixel = 0;
++ attr.border_pixel = 0;
++ attr.colormap = XCreateColormap(dpy, root, visinfo->visual, AllocNone);
++ attr.event_mask = StructureNotifyMask | ExposureMask | KeyPressMask;
++ mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
++
++ win = XCreateWindow(dpy, parent, 0, 0, width, height,
++ 0, visinfo->depth, InputOutput,
++ visinfo->visual, mask, &attr);
++ return win;
++}
++
++
++static void
++MakeNormalWindow(Display *dpy)
++{
++ int attrib[] = { GLX_RGBA,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DOUBLEBUFFER,
++ None };
++ int scrnum;
++ Window root;
++ XVisualInfo *visinfo;
++
++ scrnum = DefaultScreen(dpy);
++ root = RootWindow(dpy, scrnum);
++
++ visinfo = glXChooseVisual(dpy, scrnum, attrib);
++ if (!visinfo) {
++ printf("Error: couldn't get an RGB, Double-buffered visual\n");
++ exit(1);
++ }
++
++ NormalWindow = MakeWindow(dpy, visinfo, root, WinWidth, WinHeight);
++ assert(NormalWindow);
++
++ NormalContext = glXCreateContext(dpy, visinfo, NULL, True);
++ assert(NormalContext);
++}
++
++
++static void
++MakeOverlayWindow(Display *dpy)
++{
++ int rgbAttribs[] = {
++ GLX_RGBA,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DOUBLEBUFFER,
++ GLX_LEVEL, 1,
++ None
++ };
++ int indexAttribs[] = {
++ /*GLX_RGBA, leave this out */
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DOUBLEBUFFER,
++ GLX_LEVEL, 1,
++ None
++ };
++ int scrnum;
++ Window root;
++ XVisualInfo *visinfo;
++
++ scrnum = DefaultScreen(dpy);
++ root = RootWindow(dpy, scrnum);
++
++ visinfo = glXChooseVisual(dpy, scrnum, rgbAttribs);
++ if (visinfo) {
++ printf("Found RGB overlay visual 0x%x\n", (int) visinfo->visualid);
++ RGBOverlay = GL_TRUE;
++ }
++ else {
++ visinfo = glXChooseVisual(dpy, scrnum, indexAttribs);
++ if (visinfo) {
++ printf("Found Color Index overlay visual 0x%x\n",
++ (int) visinfo->visualid);
++ /* XXX setup the colormap entries! */
++ }
++ else {
++ printf("Couldn't get an overlay visual.\n");
++ printf("Your hardware probably doesn't support framebuffer overlay planes.\n");
++ exit(1);
++ }
++ }
++
++ OverlayWindow = MakeWindow(dpy, visinfo, NormalWindow, WinWidth, WinHeight);
++ assert(OverlayWindow);
++
++ OverlayContext = glXCreateContext(dpy, visinfo, NULL, True);
++ assert(OverlayContext);
++}
++
++
++static void
++EventLoop(Display *dpy)
++{
++ XEvent event;
++
++ while (1) {
++ XNextEvent(dpy, &event);
++
++ switch (event.type) {
++ case Expose:
++ RedrawNormal(dpy);
++ RedrawOverlay(dpy);
++ break;
++ case ConfigureNotify:
++ WinWidth = event.xconfigure.width;
++ WinHeight = event.xconfigure.height;
++ if (event.xconfigure.window == NormalWindow)
++ XResizeWindow(dpy, OverlayWindow, WinWidth, WinHeight);
++ break;
++ case KeyPress:
++ {
++ char buffer[10];
++ int r, code;
++ code = XLookupKeysym(&event.xkey, 0);
++ r = XLookupString(&event.xkey, buffer, sizeof(buffer),
++ NULL, NULL);
++ if (buffer[0] == 27) {
++ /* escape */
++ return;
++ }
++ else if (buffer[0] == ' ') {
++ Angle += 5.0;
++ RedrawNormal(dpy);
++ }
++ }
++ break;
++ default:
++ ; /* nothing */
++ }
++ }
++}
++
++
++int
++main(int argc, char *argv[])
++{
++ Display *dpy = XOpenDisplay(NULL);
++
++ assert(dpy);
++
++ MakeNormalWindow(dpy);
++ MakeOverlayWindow(dpy);
++
++ XMapWindow(dpy, NormalWindow);
++ XMapWindow(dpy, OverlayWindow);
++
++ EventLoop(dpy);
++
++ glXDestroyContext(dpy, OverlayContext);
++ glXDestroyContext(dpy, NormalContext);
++ XDestroyWindow(dpy, OverlayWindow);
++ XDestroyWindow(dpy, NormalWindow);
++
++ return 0;
++}
+diff -Naurp Mesa-7.8.1/progs/xdemos/pbdemo.c Mesa-7.8.1.patched/progs/xdemos/pbdemo.c
+--- Mesa-7.8.1/progs/xdemos/pbdemo.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/pbdemo.c 2010-06-13 13:45:06.789793146 +0200
+@@ -0,0 +1,493 @@
++
++/*
++ * This program demonstrates how to do "off-screen" rendering using
++ * the GLX pixel buffer extension.
++ *
++ * Written by Brian Paul for the "OpenGL and Window System Integration"
++ * course presented at SIGGRAPH '97. Updated on 5 October 2002.
++ *
++ * Usage:
++ * pbuffers width height imgfile
++ * Where:
++ * width is the width, in pixels, of the image to generate.
++ * height is the height, in pixels, of the image to generate.
++ * imgfile is the name of the PPM image file to write.
++ *
++ *
++ * This demo draws 3-D boxes with random orientation. A pbuffer with
++ * a depth (Z) buffer is prefered but if such a pbuffer can't be created
++ * we use a non-depth-buffered config.
++ *
++ * On machines such as the SGI Indigo you may have to reconfigure your
++ * display/X server to enable pbuffers. Look in the /usr/gfx/ucode/MGRAS/vof/
++ * directory for display configurationswith the _pbuf suffix. Use
++ * setmon -x <vof> to configure your X server and display for pbuffers.
++ *
++ * O2 systems seem to support pbuffers well.
++ *
++ * IR systems (at least 1RM systems) don't have single-buffered, RGBA,
++ * Z-buffered pbuffer configs. BUT, they DO have DOUBLE-buffered, RGBA,
++ * Z-buffered pbuffers. Note how we try four different fbconfig attribute
++ * lists below!
++ */
++
++
++#include <assert.h>
++#include <string.h>
++#include <stdio.h>
++#include <stdlib.h>
++#include <X11/Xlib.h>
++#include "pbutil.h"
++
++
++/* Some ugly global vars */
++static Display *gDpy = NULL;
++static int gScreen = 0;
++static FBCONFIG gFBconfig = 0;
++static PBUFFER gPBuffer = 0;
++static int gWidth, gHeight;
++static GLXContext glCtx;
++
++
++
++/*
++ * Create the pbuffer and return a GLXPbuffer handle.
++ *
++ * We loop over a list of fbconfigs trying to create
++ * a pixel buffer. We return the first pixel buffer which we successfully
++ * create.
++ */
++static PBUFFER
++MakePbuffer( Display *dpy, int screen, int width, int height )
++{
++#define NUM_FB_CONFIGS 4
++ const char fbString[NUM_FB_CONFIGS][100] = {
++ "Single Buffered, depth buffer",
++ "Double Buffered, depth buffer",
++ "Single Buffered, no depth buffer",
++ "Double Buffered, no depth buffer"
++ };
++ int fbAttribs[NUM_FB_CONFIGS][100] = {
++ {
++ /* Single buffered, with depth buffer */
++ GLX_RENDER_TYPE, GLX_RGBA_BIT,
++ GLX_DRAWABLE_TYPE, GLX_PBUFFER_BIT,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DEPTH_SIZE, 1,
++ GLX_DOUBLEBUFFER, 0,
++ GLX_STENCIL_SIZE, 0,
++ None
++ },
++ {
++ /* Double buffered, with depth buffer */
++ GLX_RENDER_TYPE, GLX_RGBA_BIT,
++ GLX_DRAWABLE_TYPE, GLX_PBUFFER_BIT,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DEPTH_SIZE, 1,
++ GLX_DOUBLEBUFFER, 1,
++ GLX_STENCIL_SIZE, 0,
++ None
++ },
++ {
++ /* Single buffered, without depth buffer */
++ GLX_RENDER_TYPE, GLX_RGBA_BIT,
++ GLX_DRAWABLE_TYPE, GLX_PBUFFER_BIT,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DEPTH_SIZE, 0,
++ GLX_DOUBLEBUFFER, 0,
++ GLX_STENCIL_SIZE, 0,
++ None
++ },
++ {
++ /* Double buffered, without depth buffer */
++ GLX_RENDER_TYPE, GLX_RGBA_BIT,
++ GLX_DRAWABLE_TYPE, GLX_PBUFFER_BIT,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DEPTH_SIZE, 0,
++ GLX_DOUBLEBUFFER, 1,
++ GLX_STENCIL_SIZE, 0,
++ None
++ }
++ };
++ Bool largest = True;
++ Bool preserve = False;
++ FBCONFIG *fbConfigs;
++ PBUFFER pBuffer = None;
++ int nConfigs;
++ int i;
++ int attempt;
++
++ for (attempt=0; attempt<NUM_FB_CONFIGS; attempt++) {
++
++ /* Get list of possible frame buffer configurations */
++ fbConfigs = ChooseFBConfig(dpy, screen, fbAttribs[attempt], &nConfigs);
++ if (nConfigs==0 || !fbConfigs) {
++ printf("Note: glXChooseFBConfig(%s) failed\n", fbString[attempt]);
++ XFree(fbConfigs);
++ continue;
++ }
++
++#if 0 /*DEBUG*/
++ for (i=0;i<nConfigs;i++) {
++ printf("Config %d\n", i);
++ PrintFBConfigInfo(dpy, screen, fbConfigs[i], 0);
++ }
++#endif
++
++ /* Create the pbuffer using first fbConfig in the list that works. */
++ for (i=0;i<nConfigs;i++) {
++ pBuffer = CreatePbuffer(dpy, screen, fbConfigs[i], width, height, largest, preserve);
++ if (pBuffer) {
++ gFBconfig = fbConfigs[i];
++ gWidth = width;
++ gHeight = height;
++ break;
++ }
++ }
++
++ if (pBuffer!=None) {
++ break;
++ }
++ }
++
++ if (pBuffer) {
++ printf("Using: %s\n", fbString[attempt]);
++ }
++
++ XFree(fbConfigs);
++
++ return pBuffer;
++#undef NUM_FB_CONFIGS
++}
++
++
++
++/*
++ * Do all the X / GLX setup stuff.
++ */
++static int
++Setup(int width, int height)
++{
++ int pbSupport;
++ XVisualInfo *visInfo;
++
++ /* Open the X display */
++ gDpy = XOpenDisplay(NULL);
++ if (!gDpy) {
++ printf("Error: couldn't open default X display.\n");
++ return 0;
++ }
++
++ /* Get default screen */
++ gScreen = DefaultScreen(gDpy);
++
++ /* Test that pbuffers are available */
++ pbSupport = QueryPbuffers(gDpy, gScreen);
++ if (pbSupport == 1) {
++ printf("Using GLX 1.3 Pbuffers\n");
++ }
++ else if (pbSupport == 2) {
++ printf("Using SGIX Pbuffers\n");
++ }
++ else {
++ printf("Error: pbuffers not available on this screen\n");
++ XCloseDisplay(gDpy);
++ return 0;
++ }
++
++ /* Create Pbuffer */
++ gPBuffer = MakePbuffer( gDpy, gScreen, width, height );
++ if (gPBuffer==None) {
++ printf("Error: couldn't create pbuffer\n");
++ XCloseDisplay(gDpy);
++ return 0;
++ }
++
++ /* Test drawable queries */
++ {
++ unsigned int v;
++ glXQueryDrawable( gDpy, gPBuffer, GLX_WIDTH, &v);
++ printf("GLX_WIDTH = %u\n", v);
++ glXQueryDrawable( gDpy, gPBuffer, GLX_HEIGHT, &v);
++ printf("GLX_HEIGHT = %u\n", v);
++ glXQueryDrawable( gDpy, gPBuffer, GLX_PRESERVED_CONTENTS, &v);
++ printf("GLX_PRESERVED_CONTENTS = %u\n", v);
++ glXQueryDrawable( gDpy, gPBuffer, GLX_LARGEST_PBUFFER, &v);
++ printf("GLX_LARGEST_PBUFFER = %u\n", v);
++ glXQueryDrawable( gDpy, gPBuffer, GLX_FBCONFIG_ID, &v);
++ printf("GLX_FBCONFIG_ID = %u\n", v);
++ }
++
++ /* Get corresponding XVisualInfo */
++ visInfo = GetVisualFromFBConfig(gDpy, gScreen, gFBconfig);
++ if (!visInfo) {
++ printf("Error: can't get XVisualInfo from FBconfig\n");
++ XCloseDisplay(gDpy);
++ return 0;
++ }
++
++ /* Create GLX context */
++ glCtx = glXCreateContext(gDpy, visInfo, NULL, True);
++ if (!glCtx) {
++ /* try indirect */
++ glCtx = glXCreateContext(gDpy, visInfo, NULL, False);
++ if (!glCtx) {
++ printf("Error: Couldn't create GLXContext\n");
++ XFree(visInfo);
++ XCloseDisplay(gDpy);
++ return 0;
++ }
++ else {
++ printf("Warning: using indirect GLXContext\n");
++ }
++ }
++
++ /* Bind context to pbuffer */
++ if (!glXMakeCurrent(gDpy, gPBuffer, glCtx)) {
++ printf("Error: glXMakeCurrent failed\n");
++ XFree(visInfo);
++ XCloseDisplay(gDpy);
++ return 0;
++ }
++
++ return 1; /* Success!! */
++}
++
++
++
++/* One-time GL setup */
++static void
++InitGL(void)
++{
++ static GLfloat pos[4] = {0.0, 0.0, 10.0, 0.0};
++ glEnable(GL_LIGHTING);
++ glEnable(GL_LIGHT0);
++ glLightfv(GL_LIGHT0, GL_POSITION, pos);
++ glEnable(GL_NORMALIZE);
++ glEnable(GL_DEPTH_TEST);
++ glEnable(GL_CULL_FACE);
++
++ glViewport(0, 0, gWidth, gHeight);
++ glMatrixMode( GL_PROJECTION );
++ glLoadIdentity();
++ glFrustum( -1.0, 1.0, -1.0, 1.0, 5.0, 25.0 );
++ glMatrixMode( GL_MODELVIEW );
++ glLoadIdentity();
++ glTranslatef( 0.0, 0.0, -15.0 );
++}
++
++
++/* Return random float in [0,1] */
++static float
++Random(void)
++{
++ int i = rand();
++ return (float) (i % 1000) / 1000.0;
++}
++
++
++static void
++RandomColor(void)
++{
++ GLfloat c[4];
++ c[0] = Random();
++ c[1] = Random();
++ c[2] = Random();
++ c[3] = 1.0;
++ glMaterialfv(GL_FRONT, GL_AMBIENT_AND_DIFFUSE, c);
++}
++
++
++/* This function borrowed from Mark Kilgard's GLUT */
++static void
++drawBox(GLfloat x0, GLfloat x1, GLfloat y0, GLfloat y1,
++ GLfloat z0, GLfloat z1, GLenum type)
++{
++ static GLfloat n[6][3] =
++ {
++ {-1.0, 0.0, 0.0},
++ {0.0, 1.0, 0.0},
++ {1.0, 0.0, 0.0},
++ {0.0, -1.0, 0.0},
++ {0.0, 0.0, 1.0},
++ {0.0, 0.0, -1.0}
++ };
++ static GLint faces[6][4] =
++ {
++ {0, 1, 2, 3},
++ {3, 2, 6, 7},
++ {7, 6, 5, 4},
++ {4, 5, 1, 0},
++ {5, 6, 2, 1},
++ {7, 4, 0, 3}
++ };
++ GLfloat v[8][3], tmp;
++ GLint i;
++
++ if (x0 > x1) {
++ tmp = x0;
++ x0 = x1;
++ x1 = tmp;
++ }
++ if (y0 > y1) {
++ tmp = y0;
++ y0 = y1;
++ y1 = tmp;
++ }
++ if (z0 > z1) {
++ tmp = z0;
++ z0 = z1;
++ z1 = tmp;
++ }
++ v[0][0] = v[1][0] = v[2][0] = v[3][0] = x0;
++ v[4][0] = v[5][0] = v[6][0] = v[7][0] = x1;
++ v[0][1] = v[1][1] = v[4][1] = v[5][1] = y0;
++ v[2][1] = v[3][1] = v[6][1] = v[7][1] = y1;
++ v[0][2] = v[3][2] = v[4][2] = v[7][2] = z0;
++ v[1][2] = v[2][2] = v[5][2] = v[6][2] = z1;
++
++ for (i = 0; i < 6; i++) {
++ glBegin(type);
++ glNormal3fv(&n[i][0]);
++ glVertex3fv(&v[faces[i][0]][0]);
++ glVertex3fv(&v[faces[i][1]][0]);
++ glVertex3fv(&v[faces[i][2]][0]);
++ glVertex3fv(&v[faces[i][3]][0]);
++ glEnd();
++ }
++}
++
++
++
++/* Render a scene */
++static void
++Render(void)
++{
++ int NumBoxes = 100;
++ int i;
++
++ glClearColor(0.2, 0.2, 0.9, 0.0);
++ glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
++
++ for (i=0;i<NumBoxes;i++) {
++ float tx = -2.0 + 4.0 * Random();
++ float ty = -2.0 + 4.0 * Random();
++ float tz = 4.0 - 16.0 * Random();
++ float sx = 0.1 + Random() * 0.4;
++ float sy = 0.1 + Random() * 0.4;
++ float sz = 0.1 + Random() * 0.4;
++ float rx = Random();
++ float ry = Random();
++ float rz = Random();
++ float ra = Random() * 360.0;
++ glPushMatrix();
++ glTranslatef(tx, ty, tz);
++ glRotatef(ra, rx, ry, rz);
++ glScalef(sx, sy, sz);
++ RandomColor();
++ drawBox(-1.0, 1.0, -1.0, 1.0, -1.0, 1.0, GL_POLYGON);
++ glPopMatrix();
++ }
++
++ glFinish();
++}
++
++
++
++static void
++WriteFile(const char *filename)
++{
++ FILE *f;
++ GLubyte *image;
++ int i;
++
++ image = malloc(gWidth * gHeight * 3 * sizeof(GLubyte));
++ if (!image) {
++ printf("Error: couldn't allocate image buffer\n");
++ return;
++ }
++
++ glPixelStorei(GL_PACK_ALIGNMENT, 1);
++ glReadPixels(0, 0, gWidth, gHeight, GL_RGB, GL_UNSIGNED_BYTE, image);
++
++ f = fopen(filename, "w");
++ if (!f) {
++ printf("Couldn't open image file: %s\n", filename);
++ return;
++ }
++ fprintf(f,"P6\n");
++ fprintf(f,"# ppm-file created by %s\n", "trdemo2");
++ fprintf(f,"%i %i\n", gWidth, gHeight);
++ fprintf(f,"255\n");
++ fclose(f);
++ f = fopen(filename, "ab"); /* now append binary data */
++ if (!f) {
++ printf("Couldn't append to image file: %s\n", filename);
++ return;
++ }
++
++ for (i=0;i<gHeight;i++) {
++ GLubyte *rowPtr;
++ /* Remember, OpenGL images are bottom to top. Have to reverse. */
++ rowPtr = image + (gHeight-1-i) * gWidth*3;
++ fwrite(rowPtr, 1, gWidth*3, f);
++ }
++
++ fclose(f);
++ free(image);
++
++ printf("Wrote %d by %d image file: %s\n", gWidth, gHeight, filename);
++}
++
++
++
++/*
++ * Print message describing command line parameters.
++ */
++static void
++Usage(const char *appName)
++{
++ printf("Usage:\n");
++ printf(" %s width height imgfile\n", appName);
++ printf("Where imgfile is a ppm file\n");
++}
++
++
++
++int
++main(int argc, char *argv[])
++{
++ if (argc!=4) {
++ Usage(argv[0]);
++ }
++ else {
++ int width = atoi(argv[1]);
++ int height = atoi(argv[2]);
++ char *fileName = argv[3];
++ if (width<=0) {
++ printf("Error: width parameter must be at least 1.\n");
++ return 1;
++ }
++ if (height<=0) {
++ printf("Error: height parameter must be at least 1.\n");
++ return 1;
++ }
++ if (!Setup(width, height)) {
++ return 1;
++ }
++ InitGL();
++ Render();
++ WriteFile(fileName);
++ DestroyPbuffer(gDpy, gScreen, gPBuffer);
++ }
++ return 0;
++}
++
+diff -Naurp Mesa-7.8.1/progs/xdemos/pbinfo.c Mesa-7.8.1.patched/progs/xdemos/pbinfo.c
+--- Mesa-7.8.1/progs/xdemos/pbinfo.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/pbinfo.c 2010-06-13 13:45:06.789793146 +0200
+@@ -0,0 +1,107 @@
++
++/*
++ * Print list of fbconfigs and test each to see if a pbuffer can be created
++ * for that config.
++ *
++ * Brian Paul
++ * April 1997
++ * Updated on 5 October 2002.
++ */
++
++
++#include <X11/Xlib.h>
++#include <stdio.h>
++#include <string.h>
++#include "pbutil.h"
++
++
++
++
++static void
++PrintConfigs(Display *dpy, int screen, Bool horizFormat)
++{
++ FBCONFIG *fbConfigs;
++ int nConfigs;
++ int i;
++
++ fbConfigs = GetAllFBConfigs(dpy, screen, &nConfigs);
++ if (!nConfigs || !fbConfigs) {
++ printf("Error: glxGetFBConfigs failed\n");
++ XFree(fbConfigs);
++ return;
++ }
++
++ printf("Number of fbconfigs: %d\n", nConfigs);
++
++ if (horizFormat) {
++ printf(" ID VisualType Depth Lvl RGB CI DB Stereo R G B A");
++ printf(" Z S AR AG AB AA MSbufs MSnum Pbuffer Float\n");
++ }
++
++ /* Print config info */
++ for (i = 0; i < nConfigs; i++) {
++ PrintFBConfigInfo(dpy, screen, fbConfigs[i], horizFormat);
++ }
++
++ /* free the list */
++ XFree(fbConfigs);
++}
++
++
++
++static void
++PrintUsage(void)
++{
++ printf("Options:\n");
++ printf(" -display <display-name> specify X display name\n");
++ printf(" -t print in tabular format\n");
++ printf(" -v print in verbose format\n");
++ printf(" -help print this information\n");
++}
++
++
++int
++main(int argc, char *argv[])
++{
++ Display *dpy;
++ int scrn;
++ char *dpyName = NULL;
++ Bool horizFormat = True;
++ int i;
++
++ for (i=1; i<argc; i++) {
++ if (strcmp(argv[i],"-display")==0) {
++ if (i+1<argc) {
++ dpyName = argv[i+1];
++ i++;
++ }
++ }
++ else if (strcmp(argv[i],"-t")==0) {
++ /* tabular format */
++ horizFormat = True;
++ }
++ else if (strcmp(argv[i],"-v")==0) {
++ /* verbose format */
++ horizFormat = False;
++ }
++ else if (strcmp(argv[i],"-help")==0) {
++ PrintUsage();
++ return 0;
++ }
++ else {
++ printf("Unknown option: %s\n", argv[i]);
++ }
++ }
++
++ dpy = XOpenDisplay(dpyName);
++
++ if (!dpy) {
++ printf("Error: couldn't open display %s\n", XDisplayName(dpyName));
++ return 1;
++ }
++
++ scrn = DefaultScreen(dpy);
++ PrintConfigs(dpy, scrn, horizFormat);
++ XCloseDisplay(dpy);
++ return 0;
++}
+diff -Naurp Mesa-7.8.1/progs/xdemos/pbutil.c Mesa-7.8.1.patched/progs/xdemos/pbutil.c
+--- Mesa-7.8.1/progs/xdemos/pbutil.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/pbutil.c 2010-06-13 13:45:06.789793146 +0200
+@@ -0,0 +1,446 @@
++
++/*
++ * OpenGL pbuffers utility functions.
++ *
++ * Brian Paul
++ * Original code: April 1997
++ * Updated on 5 October 2002
++ * Updated again on 3 January 2005 to use GLX 1.3 functions in preference
++ * to the GLX_SGIX_fbconfig/pbuffer extensions.
++ */
++
++#include <stdio.h>
++#include <string.h>
++#include "pbutil.h"
++
++
++/**
++ * Test if we pixel buffers are available for a particular X screen.
++ * Input: dpy - the X display
++ * screen - screen number
++ * Return: 0 = fbconfigs not available.
++ * 1 = fbconfigs are available via GLX 1.3.
++ * 2 = fbconfigs and pbuffers are available via GLX_SGIX_fbconfig
++ */
++int
++QueryFBConfig(Display *dpy, int screen)
++{
++#if defined(GLX_VERSION_1_3)
++ {
++ /* GLX 1.3 supports pbuffers */
++ int glxVersionMajor, glxVersionMinor;
++ if (!glXQueryVersion(dpy, &glxVersionMajor, &glxVersionMinor)) {
++ /* GLX not available! */
++ return 0;
++ }
++ if (glxVersionMajor * 100 + glxVersionMinor >= 103) {
++ return 1;
++ }
++ /* fall-through */
++ }
++#endif
++
++ /* Try the SGIX extensions */
++ {
++ char *extensions;
++ extensions = (char *) glXQueryServerString(dpy, screen, GLX_EXTENSIONS);
++ if (extensions && strstr(extensions,"GLX_SGIX_fbconfig")) {
++ return 2;
++ }
++ }
++
++ return 0;
++}
++
++/**
++ * Test if we pixel buffers are available for a particular X screen.
++ * Input: dpy - the X display
++ * screen - screen number
++ * Return: 0 = pixel buffers not available.
++ * 1 = pixel buffers are available via GLX 1.3.
++ * 2 = pixel buffers are available via GLX_SGIX_fbconfig/pbuffer.
++ */
++int
++QueryPbuffers(Display *dpy, int screen)
++{
++ int ret;
++
++ ret = QueryFBConfig(dpy, screen);
++ if (ret == 2) {
++ char *extensions;
++ extensions = (char *) glXQueryServerString(dpy, screen, GLX_EXTENSIONS);
++ if (extensions && strstr(extensions, "GLX_SGIX_pbuffer"))
++ return 2;
++ else
++ return 0;
++ }
++ else
++ return ret;
++}
++
++FBCONFIG *
++ChooseFBConfig(Display *dpy, int screen, const int attribs[], int *nConfigs)
++{
++ int fbcSupport = QueryPbuffers(dpy, screen);
++#if defined(GLX_VERSION_1_3)
++ if (fbcSupport == 1) {
++ return glXChooseFBConfig(dpy, screen, attribs, nConfigs);
++ }
++#endif
++#if defined(GLX_SGIX_fbconfig) && defined(GLX_SGIX_pbuffer)
++ if (fbcSupport == 2) {
++ return glXChooseFBConfigSGIX(dpy, screen, (int *) attribs, nConfigs);
++ }
++#endif
++ return NULL;
++}
++
++
++FBCONFIG *
++GetAllFBConfigs(Display *dpy, int screen, int *nConfigs)
++{
++ int fbcSupport = QueryFBConfig(dpy, screen);
++#if defined(GLX_VERSION_1_3)
++ if (fbcSupport == 1) {
++ return glXGetFBConfigs(dpy, screen, nConfigs);
++ }
++#endif
++#if defined(GLX_SGIX_fbconfig) && defined(GLX_SGIX_pbuffer)
++ if (fbcSupport == 2) {
++ /* The GLX_SGIX_fbconfig extensions says to pass NULL to get list
++ * of all available configurations.
++ */
++ return glXChooseFBConfigSGIX(dpy, screen, NULL, nConfigs);
++ }
++#endif
++ return NULL;
++}
++
++
++XVisualInfo *
++GetVisualFromFBConfig(Display *dpy, int screen, FBCONFIG config)
++{
++ int fbcSupport = QueryFBConfig(dpy, screen);
++#if defined(GLX_VERSION_1_3)
++ if (fbcSupport == 1) {
++ return glXGetVisualFromFBConfig(dpy, config);
++ }
++#endif
++#if defined(GLX_SGIX_fbconfig) && defined(GLX_SGIX_pbuffer)
++ if (fbcSupport == 2) {
++ return glXGetVisualFromFBConfigSGIX(dpy, config);
++ }
++#endif
++ return NULL;
++}
++
++
++/**
++ * Either use glXGetFBConfigAttrib() or glXGetFBConfigAttribSGIX()
++ * to query an fbconfig attribute.
++ */
++static int
++GetFBConfigAttrib(Display *dpy, int screen,
++#if defined(GLX_VERSION_1_3)
++ const GLXFBConfig config,
++#elif defined(GLX_SGIX_fbconfig)
++ const GLXFBConfigSGIX config,
++#endif
++ int attrib
++ )
++{
++ int fbcSupport = QueryFBConfig(dpy, screen);
++ int value = 0;
++
++#if defined(GLX_VERSION_1_3)
++ if (fbcSupport == 1) {
++ /* ok */
++ if (glXGetFBConfigAttrib(dpy, config, attrib, &value) != 0) {
++ value = 0;
++ }
++ return value;
++ }
++ /* fall-through */
++#endif
++
++#if defined(GLX_SGIX_fbconfig) && defined(GLX_SGIX_pbuffer)
++ if (fbcSupport == 2) {
++ if (glXGetFBConfigAttribSGIX(dpy, config, attrib, &value) != 0) {
++ value = 0;
++ }
++ return value;
++ }
++#endif
++
++ return value;
++}
++
++
++
++/**
++ * Print parameters for a GLXFBConfig to stdout.
++ * Input: dpy - the X display
++ * screen - the X screen number
++ * fbConfig - the fbconfig handle
++ * horizFormat - if true, print in horizontal format
++ */
++void
++PrintFBConfigInfo(Display *dpy, int screen, FBCONFIG config, Bool horizFormat)
++{
++ PBUFFER pBuffer;
++ int width=2, height=2;
++ int bufferSize, level, doubleBuffer, stereo, auxBuffers;
++ int redSize, greenSize, blueSize, alphaSize;
++ int depthSize, stencilSize;
++ int accumRedSize, accumBlueSize, accumGreenSize, accumAlphaSize;
++ int sampleBuffers, samples;
++ int drawableType, renderType, xRenderable, xVisual, id;
++ int maxWidth, maxHeight, maxPixels;
++ int optWidth, optHeight;
++ int floatComponents = 0;
++
++ /* do queries using the GLX 1.3 tokens (same as the SGIX tokens) */
++ bufferSize = GetFBConfigAttrib(dpy, screen, config, GLX_BUFFER_SIZE);
++ level = GetFBConfigAttrib(dpy, screen, config, GLX_LEVEL);
++ doubleBuffer = GetFBConfigAttrib(dpy, screen, config, GLX_DOUBLEBUFFER);
++ stereo = GetFBConfigAttrib(dpy, screen, config, GLX_STEREO);
++ auxBuffers = GetFBConfigAttrib(dpy, screen, config, GLX_AUX_BUFFERS);
++ redSize = GetFBConfigAttrib(dpy, screen, config, GLX_RED_SIZE);
++ greenSize = GetFBConfigAttrib(dpy, screen, config, GLX_GREEN_SIZE);
++ blueSize = GetFBConfigAttrib(dpy, screen, config, GLX_BLUE_SIZE);
++ alphaSize = GetFBConfigAttrib(dpy, screen, config, GLX_ALPHA_SIZE);
++ depthSize = GetFBConfigAttrib(dpy, screen, config, GLX_DEPTH_SIZE);
++ stencilSize = GetFBConfigAttrib(dpy, screen, config, GLX_STENCIL_SIZE);
++ accumRedSize = GetFBConfigAttrib(dpy, screen, config, GLX_ACCUM_RED_SIZE);
++ accumGreenSize = GetFBConfigAttrib(dpy, screen, config, GLX_ACCUM_GREEN_SIZE);
++ accumBlueSize = GetFBConfigAttrib(dpy, screen, config, GLX_ACCUM_BLUE_SIZE);
++ accumAlphaSize = GetFBConfigAttrib(dpy, screen, config, GLX_ACCUM_ALPHA_SIZE);
++ sampleBuffers = GetFBConfigAttrib(dpy, screen, config, GLX_SAMPLE_BUFFERS);
++ samples = GetFBConfigAttrib(dpy, screen, config, GLX_SAMPLES);
++ drawableType = GetFBConfigAttrib(dpy, screen, config, GLX_DRAWABLE_TYPE);
++ renderType = GetFBConfigAttrib(dpy, screen, config, GLX_RENDER_TYPE);
++ xRenderable = GetFBConfigAttrib(dpy, screen, config, GLX_X_RENDERABLE);
++ xVisual = GetFBConfigAttrib(dpy, screen, config, GLX_X_VISUAL_TYPE);
++ if (!xRenderable || !(drawableType & GLX_WINDOW_BIT_SGIX))
++ xVisual = -1;
++
++ id = GetFBConfigAttrib(dpy, screen, config, GLX_FBCONFIG_ID);
++ maxWidth = GetFBConfigAttrib(dpy, screen, config, GLX_MAX_PBUFFER_WIDTH);
++ maxHeight = GetFBConfigAttrib(dpy, screen, config, GLX_MAX_PBUFFER_HEIGHT);
++ maxPixels = GetFBConfigAttrib(dpy, screen, config, GLX_MAX_PBUFFER_PIXELS);
++#if defined(GLX_SGIX_pbuffer)
++ optWidth = GetFBConfigAttrib(dpy, screen, config, GLX_OPTIMAL_PBUFFER_WIDTH_SGIX);
++ optHeight = GetFBConfigAttrib(dpy, screen, config, GLX_OPTIMAL_PBUFFER_HEIGHT_SGIX);
++#else
++ optWidth = optHeight = 0;
++#endif
++#if defined(GLX_NV_float_buffer)
++ floatComponents = GetFBConfigAttrib(dpy, screen, config, GLX_FLOAT_COMPONENTS_NV);
++#endif
++
++ /* See if we can create a pbuffer with this config */
++ pBuffer = CreatePbuffer(dpy, screen, config, width, height, False, False);
++
++ if (horizFormat) {
++ printf("0x%-9x ", id);
++ if (xVisual==GLX_STATIC_GRAY) printf("StaticGray ");
++ else if (xVisual==GLX_GRAY_SCALE) printf("GrayScale ");
++ else if (xVisual==GLX_STATIC_COLOR) printf("StaticColor ");
++ else if (xVisual==GLX_PSEUDO_COLOR) printf("PseudoColor ");
++ else if (xVisual==GLX_TRUE_COLOR) printf("TrueColor ");
++ else if (xVisual==GLX_DIRECT_COLOR) printf("DirectColor ");
++ else printf(" -none- ");
++ printf(" %3d %3d %s %s %s %2s ", bufferSize, level,
++ (renderType & GLX_RGBA_BIT_SGIX) ? "y" : ".",
++ (renderType & GLX_COLOR_INDEX_BIT_SGIX) ? "y" : ".",
++ doubleBuffer ? "y" : ".",
++ stereo ? "y" : ".");
++ printf("%2d %2d %2d %2d ", redSize, greenSize, blueSize, alphaSize);
++ printf("%2d %2d ", depthSize, stencilSize);
++ printf("%2d %2d %2d %2d", accumRedSize, accumGreenSize, accumBlueSize,
++ accumAlphaSize);
++ printf(" %2d %2d", sampleBuffers, samples);
++ printf(" %s %c", pBuffer ? "y" : ".",
++ ".y"[floatComponents]);
++ printf("\n");
++ }
++ else {
++ printf("Id 0x%x\n", id);
++ printf(" Buffer Size: %d\n", bufferSize);
++ printf(" Level: %d\n", level);
++ printf(" Double Buffer: %s\n", doubleBuffer ? "yes" : "no");
++ printf(" Stereo: %s\n", stereo ? "yes" : "no");
++ printf(" Aux Buffers: %d\n", auxBuffers);
++ printf(" Red Size: %d\n", redSize);
++ printf(" Green Size: %d\n", greenSize);
++ printf(" Blue Size: %d\n", blueSize);
++ printf(" Alpha Size: %d\n", alphaSize);
++ printf(" Depth Size: %d\n", depthSize);
++ printf(" Stencil Size: %d\n", stencilSize);
++ printf(" Accum Red Size: %d\n", accumRedSize);
++ printf(" Accum Green Size: %d\n", accumGreenSize);
++ printf(" Accum Blue Size: %d\n", accumBlueSize);
++ printf(" Accum Alpha Size: %d\n", accumAlphaSize);
++ printf(" Sample Buffers: %d\n", sampleBuffers);
++ printf(" Samples/Pixel: %d\n", samples);
++ printf(" Drawable Types: ");
++ if (drawableType & GLX_WINDOW_BIT) printf("Window ");
++ if (drawableType & GLX_PIXMAP_BIT) printf("Pixmap ");
++ if (drawableType & GLX_PBUFFER_BIT) printf("PBuffer");
++ printf("\n");
++ printf(" Render Types: ");
++ if (renderType & GLX_RGBA_BIT_SGIX) printf("RGBA ");
++ if (renderType & GLX_COLOR_INDEX_BIT_SGIX) printf("CI ");
++ printf("\n");
++ printf(" X Renderable: %s\n", xRenderable ? "yes" : "no");
++
++ printf(" Pbuffer: %s\n", pBuffer ? "yes" : "no");
++ printf(" Max Pbuffer width: %d\n", maxWidth);
++ printf(" Max Pbuffer height: %d\n", maxHeight);
++ printf(" Max Pbuffer pixels: %d\n", maxPixels);
++ printf(" Optimum Pbuffer width: %d\n", optWidth);
++ printf(" Optimum Pbuffer height: %d\n", optHeight);
++
++ printf(" Float Components: %s\n", floatComponents ? "yes" : "no");
++ }
++
++ if (pBuffer) {
++ DestroyPbuffer(dpy, screen, pBuffer);
++ }
++}
++
++
++
++GLXContext
++CreateContext(Display *dpy, int screen, FBCONFIG config)
++{
++ int fbcSupport = QueryFBConfig(dpy, screen);
++#if defined(GLX_VERSION_1_3)
++ if (fbcSupport == 1) {
++ /* GLX 1.3 */
++ GLXContext c;
++ c = glXCreateNewContext(dpy, config, GLX_RGBA_TYPE, NULL, True);
++ if (!c) {
++ /* try indirect */
++ c = glXCreateNewContext(dpy, config, GLX_RGBA_TYPE, NULL, False);
++ }
++ return c;
++ }
++#endif
++#if defined(GLX_SGIX_fbconfig) && defined(GLX_SGIX_pbuffer)
++ if (fbcSupport == 2) {
++ GLXContext c;
++ c = glXCreateContextWithConfigSGIX(dpy, config, GLX_RGBA_TYPE_SGIX, NULL, True);
++ if (!c) {
++ c = glXCreateContextWithConfigSGIX(dpy, config, GLX_RGBA_TYPE_SGIX, NULL, False);
++ }
++ return c;
++ }
++#endif
++ return 0;
++}
++
++
++void
++DestroyContext(Display *dpy, GLXContext ctx)
++{
++ glXDestroyContext(dpy, ctx);
++}
++
++
++/* This is only used by CreatePbuffer() */
++static int XErrorFlag = 0;
++static int HandleXError(Display *dpy, XErrorEvent *event)
++{
++ XErrorFlag = 1;
++ return 0;
++}
++
++
++/**
++ * Create a Pbuffer. Use an X error handler to deal with potential
++ * BadAlloc errors.
++ *
++ * Input: dpy - the X display
++ * fbConfig - an FBConfig as returned by glXChooseFBConfigSGIX().
++ * width, height - size of pixel buffer to request, in pixels.
++ * pbAttribs - list of optional pixel buffer attributes
++ * Return: a Pbuffer or None.
++ */
++PBUFFER
++CreatePbuffer(Display *dpy, int screen, FBCONFIG config,
++ int width, int height, Bool largest, Bool preserve)
++{
++ int (*oldHandler)(Display *, XErrorEvent *);
++ PBUFFER pBuffer = None;
++ int pbSupport = QueryPbuffers(dpy, screen);
++
++ /* Catch X protocol errors with our own error handler */
++ oldHandler = XSetErrorHandler(HandleXError);
++ XErrorFlag = 0;
++
++#if defined(GLX_VERSION_1_3)
++ if (pbSupport == 1) {
++ /* GLX 1.3 */
++ int attribs[100], i = 0;
++ attribs[i++] = GLX_PBUFFER_WIDTH;
++ attribs[i++] = width;
++ attribs[i++] = GLX_PBUFFER_HEIGHT;
++ attribs[i++] = height;
++ attribs[i++] = GLX_PRESERVED_CONTENTS;
++ attribs[i++] = preserve;
++ attribs[i++] = GLX_LARGEST_PBUFFER;
++ attribs[i++] = largest;
++ attribs[i++] = 0;
++ pBuffer = glXCreatePbuffer(dpy, config, attribs);
++ }
++ else
++#endif
++#if defined(GLX_SGIX_fbconfig) && defined(GLX_SGIX_pbuffer)
++ if (pbSupport == 2) {
++ int attribs[100], i = 0;
++ attribs[i++] = GLX_PRESERVED_CONTENTS;
++ attribs[i++] = preserve;
++ attribs[i++] = GLX_LARGEST_PBUFFER;
++ attribs[i++] = largest;
++ attribs[i++] = 0;
++ pBuffer = glXCreateGLXPbufferSGIX(dpy, config, width, height, attribs);
++ }
++ else
++#endif
++ {
++ pBuffer = None;
++ }
++
++ XSync(dpy, False);
++ /* Restore original X error handler */
++ (void) XSetErrorHandler(oldHandler);
++
++ /* Return pbuffer (may be None) */
++ if (!XErrorFlag && pBuffer != None) {
++ /*printf("config %d worked!\n", i);*/
++ return pBuffer;
++ }
++ else {
++ return None;
++ }
++}
++
++
++void
++DestroyPbuffer(Display *dpy, int screen, PBUFFER pbuffer)
++{
++ int pbSupport = QueryPbuffers(dpy, screen);
++#if defined(GLX_VERSION_1_3)
++ if (pbSupport == 1) {
++ glXDestroyPbuffer(dpy, pbuffer);
++ return;
++ }
++#endif
++#if defined(GLX_SGIX_fbconfig) && defined(GLX_SGIX_pbuffer)
++ if (pbSupport == 2) {
++ glXDestroyGLXPbufferSGIX(dpy, pbuffer);
++ return;
++ }
++#endif
++}
+diff -Naurp Mesa-7.8.1/progs/xdemos/pbutil.h Mesa-7.8.1.patched/progs/xdemos/pbutil.h
+--- Mesa-7.8.1/progs/xdemos/pbutil.h 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/pbutil.h 2010-06-13 13:45:06.789793146 +0200
+@@ -0,0 +1,69 @@
++/*
++ * OpenGL pbuffers utility functions.
++ *
++ * Brian Paul
++ * April 1997
++ */
++
++
++#ifndef PBUTIL_H
++#define PBUTIL_H
++
++
++#define GLX_GLXEXT_PROTOTYPES
++#include <GL/glx.h>
++
++
++#if defined(GLX_VERSION_1_3)
++#define PBUFFER GLXPbuffer
++#define FBCONFIG GLXFBConfig
++#elif defined(GLX_SGIX_fbconfig) && defined(GLX_SGIX_pbuffer)
++#define PBUFFER GLXPbufferSGIX
++#define FBCONFIG GLXFBConfigSGIX
++#else
++#define PBUFFER int
++#define FBCONFIG int
++#endif
++
++
++extern int
++QueryFBConfig(Display *dpy, int screen);
++
++extern int
++QueryPbuffers(Display *dpy, int screen);
++
++
++extern void
++PrintFBConfigInfo(Display *dpy, int screen, FBCONFIG config, Bool horizFormat);
++
++
++extern FBCONFIG *
++ChooseFBConfig(Display *dpy, int screen, const int attribs[], int *nConfigs);
++
++
++extern FBCONFIG *
++GetAllFBConfigs(Display *dpy, int screen, int *nConfigs);
++
++
++extern XVisualInfo *
++GetVisualFromFBConfig(Display *dpy, int screen, FBCONFIG config);
++
++
++extern GLXContext
++CreateContext(Display *dpy, int screen, FBCONFIG config);
++
++
++extern void
++DestroyContext(Display *dpy, GLXContext ctx);
++
++
++extern PBUFFER
++CreatePbuffer(Display *dpy, int screen, FBCONFIG config,
++ int width, int height, Bool preserve, Bool largest);
++
++
++extern void
++DestroyPbuffer(Display *dpy, int screen, PBUFFER pbuffer);
++
++
++#endif /*PBUTIL_H*/
+diff -Naurp Mesa-7.8.1/progs/xdemos/shape.c Mesa-7.8.1.patched/progs/xdemos/shape.c
+--- Mesa-7.8.1/progs/xdemos/shape.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/shape.c 2010-06-13 13:45:06.789793146 +0200
+@@ -0,0 +1,393 @@
++
++/*
++ * Example of using the X "shape" extension with OpenGL: render a spinning
++ * cube inside of a non-rectangular window.
++ *
++ * Press ESC to exit. Press up/down to change window shape.
++ *
++ * To compile add "shape" to the PROGS list in Makefile.
++ *
++ * Brian Paul
++ * June 16, 1997
++ *
++ * This program is in the public domain.
++ */
++
++
++#include <math.h>
++#include <stdio.h>
++#include <stdlib.h>
++#include <sys/time.h>
++#include <time.h>
++#include <unistd.h>
++#include <X11/Xlib.h>
++#include <X11/Xutil.h>
++#include <X11/keysym.h>
++#include <X11/extensions/shape.h>
++#include <GL/glx.h>
++
++#ifndef PI
++#define PI 3.1415926
++#endif
++
++
++static int Width=500, Height=500;
++
++static float Xangle = 0.0, Yangle = 0.0;
++static int Sides = 5;
++static int MinSides = 3;
++static int MaxSides = 20;
++
++
++/* return current time (in seconds) */
++static double
++current_time(void)
++{
++ struct timeval tv;
++#ifdef __VMS
++ (void) gettimeofday(&tv, NULL );
++#else
++ struct timezone tz;
++ (void) gettimeofday(&tv, &tz);
++#endif
++ return (double) tv.tv_sec + tv.tv_usec / 1000000.0;
++}
++
++
++/*
++ * Draw the OpenGL stuff and do a SwapBuffers.
++ */
++static void display(Display *dpy, Window win)
++{
++ float scale = 1.7;
++
++ glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
++
++ glPushMatrix();
++
++ glScalef(scale, scale, scale);
++ glRotatef(Xangle, 1.0, 0.0, 0.0);
++ glRotatef(Yangle, 0.0, 1.0, 0.0);
++
++ /*
++ * wireframe box
++ */
++ glColor3f(1.0, 1.0, 1.0);
++ glBegin(GL_LINE_LOOP);
++ glVertex3f(-1.0, -1.0, -1.0);
++ glVertex3f( 1.0, -1.0, -1.0);
++ glVertex3f( 1.0, 1.0, -1.0);
++ glVertex3f(-1.0, 1.0, -1.0);
++ glEnd();
++
++ glBegin(GL_LINE_LOOP);
++ glVertex3f(-1.0, -1.0, 1.0);
++ glVertex3f( 1.0, -1.0, 1.0);
++ glVertex3f( 1.0, 1.0, 1.0);
++ glVertex3f(-1.0, 1.0, 1.0);
++ glEnd();
++
++ glBegin(GL_LINES);
++ glVertex3f(-1.0, -1.0, -1.0); glVertex3f(-1.0, -1.0, 1.0);
++ glVertex3f( 1.0, -1.0, -1.0); glVertex3f( 1.0, -1.0, 1.0);
++ glVertex3f( 1.0, 1.0, -1.0); glVertex3f( 1.0, 1.0, 1.0);
++ glVertex3f(-1.0, 1.0, -1.0); glVertex3f(-1.0, 1.0, 1.0);
++ glEnd();
++
++ /*
++ * Solid box
++ */
++ glPushMatrix();
++ glScalef(0.75, 0.75, 0.75);
++
++ glColor3f(1, 0, 0);
++ glBegin(GL_POLYGON);
++ glVertex3f(1, -1, -1);
++ glVertex3f(1, 1, -1);
++ glVertex3f(1, 1, 1);
++ glVertex3f(1, -1, 1);
++ glEnd();
++
++ glColor3f(0, 1, 1);
++ glBegin(GL_POLYGON);
++ glVertex3f(-1, -1, -1);
++ glVertex3f(-1, 1, -1);
++ glVertex3f(-1, 1, 1);
++ glVertex3f(-1, -1, 1);
++ glEnd();
++
++ glColor3f(0, 1, 0);
++ glBegin(GL_POLYGON);
++ glVertex3f(-1, 1, -1);
++ glVertex3f( 1, 1, -1);
++ glVertex3f( 1, 1, 1);
++ glVertex3f(-1, 1, 1);
++ glEnd();
++
++ glColor3f(1, 0, 1);
++ glBegin(GL_POLYGON);
++ glVertex3f(-1, -1, -1);
++ glVertex3f( 1, -1, -1);
++ glVertex3f( 1, -1, 1);
++ glVertex3f(-1, -1, 1);
++ glEnd();
++
++ glColor3f(0, 0, 1);
++ glBegin(GL_POLYGON);
++ glVertex3f(-1, -1, 1);
++ glVertex3f( 1, -1, 1);
++ glVertex3f( 1, 1, 1);
++ glVertex3f(-1, 1, 1);
++ glEnd();
++
++ glColor3f(1, 1, 0);
++ glBegin(GL_POLYGON);
++ glVertex3f(-1, -1, -1);
++ glVertex3f( 1, -1, -1);
++ glVertex3f( 1, 1, -1);
++ glVertex3f(-1, 1, -1);
++ glEnd();
++ glPopMatrix();
++
++
++ glPopMatrix();
++
++ glXSwapBuffers(dpy, win);
++}
++
++
++/*
++ * This is called when we have to recompute the window shape bitmask.
++ * We just generate an n-sided regular polygon here but any other shape
++ * would be possible.
++ */
++static void make_shape_mask(Display *dpy, Window win, int width, int height,
++ int sides)
++{
++ Pixmap shapeMask;
++ XGCValues xgcv;
++ GC gc;
++
++ /* allocate 1-bit deep pixmap and a GC */
++ shapeMask = XCreatePixmap(dpy, win, width, height, 1);
++ gc = XCreateGC(dpy, shapeMask, 0, &xgcv);
++
++ /* clear shapeMask to zeros */
++ XSetForeground(dpy, gc, 0);
++ XFillRectangle(dpy, shapeMask, gc, 0, 0, width, height);
++
++ /* draw mask */
++ XSetForeground(dpy, gc, 1);
++ {
++ int cx = width / 2;
++ int cy = height / 2;
++ float angle = 0.0;
++ float step = 2.0 * PI / sides;
++ float radius = width / 2;
++ int i;
++ XPoint points[100];
++ for (i=0;i<sides;i++) {
++ int x = cx + radius * sin(angle);
++ int y = cy - radius * cos(angle);
++ points[i].x = x;
++ points[i].y = y;
++ angle += step;
++ }
++ XFillPolygon(dpy, shapeMask, gc, points, sides, Convex, CoordModeOrigin);
++ }
++
++ /* This is the only SHAPE extension call- simple! */
++ XShapeCombineMask(dpy, win, ShapeBounding, 0, 0, shapeMask, ShapeSet);
++
++ XFreeGC(dpy, gc);
++ XFreePixmap(dpy, shapeMask);
++}
++
++
++/*
++ * Called when window is resized. Do OpenGL viewport and projection stuff.
++ */
++static void reshape(int width, int height)
++{
++ glViewport(0, 0, width, height);
++ glMatrixMode(GL_PROJECTION);
++ glLoadIdentity();
++ glFrustum(-1.0, 1.0, -1.0, 1.0, 3.0, 20.0);
++ glMatrixMode(GL_MODELVIEW);
++ glLoadIdentity();
++ glTranslatef(0.0, 0.0, -10.0);
++
++ glEnable(GL_DEPTH_TEST);
++}
++
++
++/*
++ * Process X events.
++ */
++static void event_loop(Display *dpy, Window win)
++{
++ while (1) {
++ XEvent event;
++ if (XPending(dpy)) {
++ XNextEvent(dpy, &event);
++ switch (event.type) {
++ case Expose:
++ display(dpy, event.xexpose.window);
++ break;
++ case ConfigureNotify:
++ Width = event.xconfigure.width;
++ Height = event.xconfigure.height,
++ make_shape_mask(dpy, win, Width, Height, Sides);
++ reshape(Width, Height);
++ break;
++ case KeyPress:
++ {
++ char buf[100];
++ KeySym keySym;
++ XComposeStatus stat;
++ XLookupString(&event.xkey, buf, sizeof(buf), &keySym, &stat);
++ switch (keySym) {
++ case XK_Escape:
++ exit(0);
++ break;
++ case XK_Up:
++ Sides++;
++ if (Sides>MaxSides) Sides = MaxSides;
++ make_shape_mask(dpy, win, Width, Height, Sides);
++ break;
++ case XK_Down:
++ Sides--;
++ if (Sides<MinSides) Sides = MinSides;
++ make_shape_mask(dpy, win, Width, Height, Sides);
++ break;
++ }
++ }
++ break;
++ default:
++ ;;
++ }
++ }
++ else {
++ static double t0 = -1.0;
++ double dt, t = current_time();
++ if (t0 < 0.0)
++ t0 = t;
++ dt = t - t0;
++ Xangle += 90.0 * dt; /* 90 degrees per second */
++ Yangle += 70.0 * dt;
++ t0 = t;
++ display(dpy, win);
++ }
++ }
++}
++
++
++/*
++ * Allocate a "nice" colormap. This could be better (HP-CR support, etc).
++ */
++static Colormap alloc_colormap(Display *dpy, Window parent, Visual *vis)
++{
++ Screen *scr = DefaultScreenOfDisplay(dpy);
++ int scrnum = DefaultScreen(dpy);
++
++ if (MaxCmapsOfScreen(scr)==1 && vis==DefaultVisual(dpy, scrnum)) {
++ /* The window and root are of the same visual type so */
++ /* share the root colormap. */
++ return DefaultColormap(dpy, scrnum);
++ }
++ else {
++ return XCreateColormap(dpy, parent, vis, AllocNone);
++ }
++}
++
++
++int main(int argc, char *argv[])
++{
++ static int glAttribs[] = {
++ GLX_DOUBLEBUFFER,
++ GLX_RGBA,
++ GLX_DEPTH_SIZE, 1,
++ None
++ };
++ Display *dpy;
++ XVisualInfo *visInfo;
++ int scrn;
++ Window root;
++ Colormap cmap;
++ Window win;
++ XSetWindowAttributes winAttribs;
++ unsigned long winAttribsMask;
++ GLXContext glCtx;
++ int ignore;
++ const char *name = "OpenGL in a Shaped Window";
++
++ dpy = XOpenDisplay(NULL);
++ if (!dpy) {
++ fprintf(stderr, "Couldn't open default display\n");
++ return 1;
++ }
++
++ /* check that we can use the shape extension */
++ if (!XQueryExtension(dpy, "SHAPE", &ignore, &ignore, &ignore )) {
++ fprintf(stderr, "Display doesn't support shape extension\n");
++ return 1;
++ }
++
++ scrn = DefaultScreen(dpy);
++
++ root = RootWindow(dpy, scrn);
++
++ visInfo = glXChooseVisual(dpy, scrn, glAttribs);
++ if (!visInfo) {
++ fprintf(stderr, "Couldn't get RGB, DB, Z visual\n");
++ return 1;
++ }
++
++ glCtx = glXCreateContext(dpy, visInfo, 0, True);
++ if (!glCtx) {
++ fprintf(stderr, "Couldn't create GL context\n");
++ return 1;
++ }
++
++ cmap = alloc_colormap(dpy, root, visInfo->visual);
++ if (!cmap) {
++ fprintf(stderr, "Couln't create colormap\n");
++ return 1;
++ }
++
++ winAttribs.border_pixel = 0;
++ winAttribs.colormap = cmap;
++ winAttribs.event_mask = StructureNotifyMask | ExposureMask | KeyPressMask;
++ winAttribsMask = CWBorderPixel | CWColormap | CWEventMask;
++ win = XCreateWindow(dpy, root, 0, 0, Width, Height, 0,
++ visInfo->depth, InputOutput,
++ visInfo->visual,
++ winAttribsMask, &winAttribs);
++
++ {
++ XSizeHints sizehints;
++ /*
++ sizehints.x = xpos;
++ sizehints.y = ypos;
++ sizehints.width = width;
++ sizehints.height = height;
++ */
++ sizehints.flags = 0;
++ XSetNormalHints(dpy, win, &sizehints);
++ XSetStandardProperties(dpy, win, name, name,
++ None, (char **)NULL, 0, &sizehints);
++ }
++
++
++ XMapWindow(dpy, win);
++
++ glXMakeCurrent(dpy, win, glCtx);
++
++ printf("GL_RENDERER = %s\n", (char *) glGetString(GL_RENDERER));
++ printf("Press ESC to exit.\n");
++ printf("Press up/down to change window shape.\n");
++
++ event_loop(dpy, win);
++
++ return 0;
++}
+diff -Naurp Mesa-7.8.1/progs/xdemos/sharedtex.c Mesa-7.8.1.patched/progs/xdemos/sharedtex.c
+--- Mesa-7.8.1/progs/xdemos/sharedtex.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/sharedtex.c 2010-06-13 13:45:06.789793146 +0200
+@@ -0,0 +1,324 @@
++/*
++ * Test sharing of texture objects by two rendering contexts.
++ * In particular, test that changing a texture object in one context
++ * effects the texture in the second context.
++ *
++ * Brian Paul
++ * 30 Apr 2008
++ *
++ * Copyright (C) 2008 Brian Paul All Rights Reserved.
++ *
++ * Permission is hereby granted, free of charge, to any person obtaining a
++ * copy of this software and associated documentation files (the "Software"),
++ * to deal in the Software without restriction, including without limitation
++ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
++ * and/or sell copies of the Software, and to permit persons to whom the
++ * Software is furnished to do so, subject to the following conditions:
++ *
++ * The above copyright notice and this permission notice shall be included
++ * in all copies or substantial portions of the Software.
++ *
++ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
++ * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
++ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
++ * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
++ * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
++ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
++ */
++
++
++#include <GL/gl.h>
++#include <GL/glx.h>
++#include <assert.h>
++#include <stdio.h>
++#include <stdlib.h>
++#include <string.h>
++#include <unistd.h>
++#include <X11/keysym.h>
++
++
++#define MAX_CONTEXTS 2
++
++#define TEX_SIZE 32
++
++static const char *DisplayName = NULL;
++static Display *Dpy;
++static XVisualInfo *VisInfo;
++static Window Win;
++static GLXContext Contexts[MAX_CONTEXTS];
++static int WinWidth = 300, WinHeight = 300;
++
++static int DrawContext = 0, TexContext = 1;
++
++static GLuint TexObj = 0;
++static GLboolean NewTexture = GL_FALSE;
++
++
++static void
++Error(const char *msg)
++{
++ fprintf(stderr, "sharedtex error: %s\n", msg);
++ exit(1);
++}
++
++
++static void
++CreateWindow(const char *name)
++{
++ int attrib[] = { GLX_RGBA,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DOUBLEBUFFER,
++ None };
++ int scrnum;
++ XSetWindowAttributes attr;
++ unsigned long mask;
++ Window root;
++ int xpos = 0, ypos = 0;
++ static int n = 0;
++
++ scrnum = DefaultScreen(Dpy);
++ root = RootWindow(Dpy, scrnum);
++
++ VisInfo = glXChooseVisual(Dpy, scrnum, attrib);
++ if (!VisInfo) {
++ Error("Unable to find RGB, double-buffered visual");
++ }
++
++ /* window attributes */
++ xpos = (n % 10) * 100;
++ ypos = (n / 10) * 100;
++ n++;
++
++ attr.background_pixel = 0;
++ attr.border_pixel = 0;
++ attr.colormap = XCreateColormap(Dpy, root, VisInfo->visual, AllocNone);
++ attr.event_mask = StructureNotifyMask | ExposureMask | KeyPressMask;
++ mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
++
++ Win = XCreateWindow(Dpy, root, xpos, ypos, WinWidth, WinHeight,
++ 0, VisInfo->depth, InputOutput,
++ VisInfo->visual, mask, &attr);
++ if (!Win) {
++ Error("Couldn't create window");
++ }
++
++ {
++ XSizeHints sizehints;
++ sizehints.x = xpos;
++ sizehints.y = ypos;
++ sizehints.width = WinWidth;
++ sizehints.height = WinHeight;
++ sizehints.flags = USSize | USPosition;
++ XSetNormalHints(Dpy, Win, &sizehints);
++ XSetStandardProperties(Dpy, Win, name, name,
++ None, (char **)NULL, 0, &sizehints);
++ }
++
++ XMapWindow(Dpy, Win);
++}
++
++
++/**
++ * Change texture image, using TexContext
++ */
++static void
++ModifyTexture(void)
++{
++ GLuint tex[TEX_SIZE][TEX_SIZE];
++ GLuint c0, c1;
++ int i, j;
++
++ if (Win && !glXMakeCurrent(Dpy, Win, Contexts[TexContext])) {
++ Error("glXMakeCurrent failed");
++ }
++
++ /* choose two random colors */
++ c0 = rand() & 0xffffffff;
++ c1 = rand() & 0xffffffff;
++
++ for (i = 0; i < TEX_SIZE; i++) {
++ for (j = 0; j < TEX_SIZE; j++) {
++ if (((i / 4) ^ (j / 4)) & 1) {
++ tex[i][j] = c0;
++ }
++ else {
++ tex[i][j] = c1;
++ }
++ }
++ }
++
++ glBindTexture(GL_TEXTURE_2D, TexObj);
++ glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, TEX_SIZE, TEX_SIZE, 0,
++ GL_RGBA, GL_UNSIGNED_BYTE, tex);
++
++ NewTexture = GL_TRUE;
++}
++
++
++static void
++InitContext(void)
++{
++ glGenTextures(1, &TexObj);
++ assert(TexObj);
++ glBindTexture(GL_TEXTURE_2D, TexObj);
++ glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
++ glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
++ glEnable(GL_TEXTURE_2D);
++
++ printf("GL_RENDERER = %s\n", (char*) glGetString(GL_RENDERER));
++}
++
++
++static void
++Setup(void)
++{
++ int i;
++
++ Dpy = XOpenDisplay(DisplayName);
++ if (!Dpy) {
++ Error("Unable to open display");
++ }
++
++ CreateWindow("sharedtex");
++
++ for (i = 0; i < MAX_CONTEXTS; i++) {
++ GLXContext share = i > 0 ? Contexts[0] : 0;
++
++ Contexts[i] = glXCreateContext(Dpy, VisInfo, share, True);
++ if (!Contexts[i]) {
++ Error("Unable to create GLX context");
++ }
++
++ if (!glXMakeCurrent(Dpy, Win, Contexts[i])) {
++ Error("glXMakeCurrent failed");
++ }
++
++ InitContext();
++ }
++
++ ModifyTexture();
++}
++
++
++/**
++ * Redraw window, using DrawContext
++ */
++static void
++Redraw(void)
++{
++ static float rot = 0.0;
++ float ar;
++
++ rot += 1.0;
++
++ if (Win && !glXMakeCurrent(Dpy, Win, Contexts[DrawContext])) {
++ Error("glXMakeCurrent failed");
++ }
++
++ glViewport(0, 0, WinWidth, WinHeight);
++ ar = (float) WinWidth / (float) WinHeight;
++ glMatrixMode(GL_PROJECTION);
++ glLoadIdentity();
++ glOrtho(-ar, ar, -1.0, 1.0, -1.0, 1.0);
++ glMatrixMode(GL_MODELVIEW);
++
++ glShadeModel(GL_FLAT);
++ glClearColor(0.5, 0.5, 0.5, 1.0);
++ glClear(GL_COLOR_BUFFER_BIT);
++
++ glPushMatrix();
++ glRotatef(rot, 0, 0, 1);
++ glScalef(0.7, 0.7, 0.7);
++
++ if (NewTexture) {
++ /* rebind to get new contents */
++ glBindTexture(GL_TEXTURE_2D, TexObj);
++ NewTexture = GL_FALSE;
++ }
++
++ /* draw textured quad */
++ glBegin(GL_POLYGON);
++ glTexCoord2f( 0.0, 0.0 ); glVertex2f( -1.0, -1.0 );
++ glTexCoord2f( 1.0, 0.0 ); glVertex2f( 1.0, -1.0 );
++ glTexCoord2f( 1.0, 1.0 ); glVertex2f( 1.0, 1.0 );
++ glTexCoord2f( 0.0, 1.0 ); glVertex2f( -1.0, 1.0 );
++ glEnd();
++
++ glPopMatrix();
++
++ if (Win)
++ glXSwapBuffers(Dpy, Win);
++}
++
++
++static void
++EventLoop(void)
++{
++ while (1) {
++ while (XPending(Dpy) > 0) {
++ XEvent event;
++ XNextEvent(Dpy, &event);
++
++ switch (event.type) {
++ case Expose:
++ Redraw();
++ break;
++ case ConfigureNotify:
++ WinWidth = event.xconfigure.width;
++ WinHeight = event.xconfigure.height;
++ break;
++ case KeyPress:
++ {
++ char buf[100];
++ KeySym keySym;
++ XComposeStatus stat;
++ XLookupString(&event.xkey, buf, sizeof(buf), &keySym, &stat);
++ switch (keySym) {
++ case XK_Escape:
++ exit(0);
++ break;
++ case XK_t:
++ case XK_T:
++ ModifyTexture();
++ break;
++ default:
++ ;
++ }
++ }
++ Redraw();
++ break;
++ default:
++ /*no-op*/ ;
++ }
++ }
++
++ Redraw();
++ usleep(10000);
++ }
++}
++
++
++
++
++int
++main(int argc, char *argv[])
++{
++ int i;
++
++ for (i = 1; i < argc; i++) {
++ if (strcmp(argv[i], "-display") == 0 && i < argc) {
++ DisplayName = argv[i+1];
++ i++;
++ }
++ }
++
++ Setup();
++
++ printf("Press 't' to change texture image/colors\n");
++
++ EventLoop();
++
++ return 0;
++}
+diff -Naurp Mesa-7.8.1/progs/xdemos/sharedtex_mt.c Mesa-7.8.1.patched/progs/xdemos/sharedtex_mt.c
+--- Mesa-7.8.1/progs/xdemos/sharedtex_mt.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/sharedtex_mt.c 2010-06-13 13:45:06.788792936 +0200
+@@ -0,0 +1,490 @@
++/* $Id: sharedtex.c,v 1.2 2002/01/16 14:32:46 joukj Exp $ */
++
++/*
++ * Test sharing of display lists and texture objects between GLX contests.
++ * Brian Paul
++ * Summer 2000
++ *
++ *
++ * Copyright (C) 2000 Brian Paul All Rights Reserved.
++ *
++ * Permission is hereby granted, free of charge, to any person obtaining a
++ * copy of this software and associated documentation files (the "Software"),
++ * to deal in the Software without restriction, including without limitation
++ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
++ * and/or sell copies of the Software, and to permit persons to whom the
++ * Software is furnished to do so, subject to the following conditions:
++ *
++ * The above copyright notice and this permission notice shall be included
++ * in all copies or substantial portions of the Software.
++ *
++ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
++ * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
++ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
++ * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
++ * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
++ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
++ *
++ *
++ * Modified 2009 for multithreading by Thomas Hellstrom.
++ */
++
++
++#include <GL/gl.h>
++#include <GL/glx.h>
++#include <stdio.h>
++#include <stdlib.h>
++#include <unistd.h>
++#include <string.h>
++#include <pthread.h>
++#include <X11/X.h>
++
++struct thread_init_arg {
++ int id;
++};
++
++struct window {
++ pthread_mutex_t drawMutex;
++ char DisplayName[1000];
++ Display *Dpy;
++ Window Win;
++ GLXContext Context;
++ float Angle;
++ int Id;
++ XVisualInfo *visInfo;
++};
++
++
++#define MAX_WINDOWS 20
++static struct window Windows[MAX_WINDOWS];
++static int NumWindows = 0;
++static int terminate = 0;
++static GLXContext gCtx;
++static Display *gDpy;
++static GLuint Textures[3];
++
++
++
++static void
++Error(const char *display, const char *msg)
++{
++ fprintf(stderr, "Error on display %s - %s\n", display, msg);
++ exit(1);
++}
++
++
++static int
++initMainthread(Display *dpy, const char *displayName)
++{
++ int scrnum;
++ XVisualInfo *visinfo;
++ int attrib[] = { GLX_RGBA,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DOUBLEBUFFER,
++ GLX_DEPTH_SIZE, 1,
++ None };
++
++ scrnum = DefaultScreen(dpy);
++ visinfo = glXChooseVisual(dpy, scrnum, attrib);
++ if (!visinfo) {
++ Error(displayName, "Unable to find RGB, double-buffered visual");
++ return -1;
++ }
++ gCtx = glXCreateContext(dpy, visinfo, NULL, True);
++ if (!gCtx) {
++ Error(displayName, "Couldn't create GLX context");
++ return -1;
++ }
++ return 0;
++}
++
++static struct window *
++AddWindow(Display *dpy, const char *displayName, int xpos, int ypos,
++ GLXContext sCtx)
++{
++ Window win;
++ GLXContext ctx;
++ int attrib[] = { GLX_RGBA,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DOUBLEBUFFER,
++ GLX_DEPTH_SIZE, 1,
++ None };
++ int scrnum;
++ XSetWindowAttributes attr;
++ unsigned long mask;
++ Window root;
++ XVisualInfo *visinfo;
++ int width = 300, height = 300;
++
++ if (NumWindows >= MAX_WINDOWS)
++ return NULL;
++
++ scrnum = DefaultScreen(dpy);
++ root = RootWindow(dpy, scrnum);
++
++ visinfo = glXChooseVisual(dpy, scrnum, attrib);
++ if (!visinfo) {
++ Error(displayName, "Unable to find RGB, double-buffered visual");
++ return NULL;
++ }
++
++ /* window attributes */
++ attr.background_pixel = 0;
++ attr.border_pixel = 0;
++ attr.colormap = XCreateColormap(dpy, root, visinfo->visual, AllocNone);
++ attr.event_mask = StructureNotifyMask | ExposureMask | KeyPressMask;
++ mask = CWBorderPixel | CWColormap | CWEventMask;
++
++ win = XCreateWindow(dpy, root, xpos, ypos, width, height,
++ 0, visinfo->depth, InputOutput,
++ visinfo->visual, mask, &attr);
++ if (!win) {
++ Error(displayName, "Couldn't create window");
++ return NULL;
++ }
++
++ {
++ XSizeHints sizehints;
++ sizehints.x = xpos;
++ sizehints.y = ypos;
++ sizehints.width = width;
++ sizehints.height = height;
++ sizehints.flags = USSize | USPosition;
++ XSetNormalHints(dpy, win, &sizehints);
++ XSetStandardProperties(dpy, win, displayName, displayName,
++ None, (char **)NULL, 0, &sizehints);
++ }
++
++
++ ctx = glXCreateContext(dpy, visinfo,
++ sCtx ? sCtx : NULL, True);
++
++ if (!ctx) {
++ Error(displayName, "Couldn't create GLX context");
++ return NULL;
++ }
++
++ XMapWindow(dpy, win);
++
++ /* save the info for this window */
++ {
++ static int id = 0;
++ struct window *h = &Windows[NumWindows];
++ if (strlen(displayName) + 1 > sizeof(h->DisplayName)) {
++ Error(displayName, "string overflow");
++ return NULL;
++ }
++ strcpy(h->DisplayName, displayName);
++ h->Dpy = dpy;
++ h->Win = win;
++ h->Context = ctx;
++ h->Angle = 0.0;
++ h->Id = id++;
++ h->visInfo = visinfo;
++ pthread_mutex_init(&h->drawMutex, NULL);
++ NumWindows++;
++ return &Windows[NumWindows-1];
++ }
++}
++
++
++static void
++InitGLstuff(void)
++
++{
++ glGenTextures(3, Textures);
++
++ /* setup first texture object */
++ {
++ GLubyte image[16][16][4];
++ GLint i, j;
++ glBindTexture(GL_TEXTURE_2D, Textures[0]);
++
++ /* red/white checkerboard */
++ for (i = 0; i < 16; i++) {
++ for (j = 0; j < 16; j++) {
++ if ((i ^ j) & 1) {
++ image[i][j][0] = 255;
++ image[i][j][1] = 255;
++ image[i][j][2] = 255;
++ image[i][j][3] = 255;
++ }
++ else {
++ image[i][j][0] = 255;
++ image[i][j][1] = 0;
++ image[i][j][2] = 0;
++ image[i][j][3] = 255;
++ }
++ }
++ }
++
++ glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
++ glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, 16, 16, 0, GL_RGBA,
++ GL_UNSIGNED_BYTE, image);
++ glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
++ glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
++ }
++
++ /* setup second texture object */
++ {
++ GLubyte image[8][8][3];
++ GLint i, j;
++ glBindTexture(GL_TEXTURE_2D, Textures[1]);
++
++ /* green/yellow checkerboard */
++ for (i = 0; i < 8; i++) {
++ for (j = 0; j < 8; j++) {
++ if ((i ^ j) & 1) {
++ image[i][j][0] = 0;
++ image[i][j][1] = 255;
++ image[i][j][2] = 0;
++ }
++ else {
++ image[i][j][0] = 255;
++ image[i][j][1] = 255;
++ image[i][j][2] = 0;
++ }
++ }
++ }
++
++ glPixelStorei(GL_UNPACK_ALIGNMENT, 2);
++ glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, 8, 8, 0, GL_RGB,
++ GL_UNSIGNED_BYTE, image);
++ glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
++ glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
++ }
++
++ /* setup second texture object */
++ {
++ GLubyte image[4][4][3];
++ GLint i, j;
++ glBindTexture(GL_TEXTURE_2D, Textures[2]);
++
++ /* blue/gray checkerboard */
++ for (i = 0; i < 4; i++) {
++ for (j = 0; j < 4; j++) {
++ if ((i ^ j) & 1) {
++ image[i][j][0] = 0;
++ image[i][j][1] = 0;
++ image[i][j][2] = 255;
++ }
++ else {
++ image[i][j][0] = 200;
++ image[i][j][1] = 200;
++ image[i][j][2] = 200;
++ }
++ }
++ }
++
++ glPixelStorei(GL_UNPACK_ALIGNMENT, 2);
++ glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, 4, 4, 0, GL_RGB,
++ GL_UNSIGNED_BYTE, image);
++ glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
++ glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
++ }
++
++ /* Now make the cube object display list */
++
++ printf("GL_RENDERER: %s\n", (char *) glGetString(GL_RENDERER));
++ printf("GL_VERSION: %s\n", (char *) glGetString(GL_VERSION));
++ printf("GL_VENDOR: %s\n", (char *) glGetString(GL_VENDOR));
++}
++
++static void
++Redraw(struct window *h)
++{
++ pthread_mutex_lock(&h->drawMutex);
++ if (!glXMakeCurrent(h->Dpy, h->Win, h->Context)) {
++ Error(h->DisplayName, "glXMakeCurrent failed in Redraw");
++ pthread_mutex_unlock(&h->drawMutex);
++ return;
++ }
++
++ h->Angle += 1.0;
++
++ glShadeModel(GL_FLAT);
++ glClearColor(0.25, 0.25, 0.25, 1.0);
++ glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
++
++ glEnable(GL_TEXTURE_2D);
++ glEnable(GL_DEPTH_TEST);
++ glTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_REPLACE);
++
++ glColor3f(1, 1, 1);
++
++ glPushMatrix();
++ if (h->Id == 0)
++ glRotatef(h->Angle, 0, 1, -1);
++ else if (h->Id == 1)
++ glRotatef(-(h->Angle), 0, 1, -1);
++ else if (h->Id == 2)
++ glRotatef(h->Angle, 0, 1, 1);
++ else if (h->Id == 3)
++ glRotatef(-(h->Angle), 0, 1, 1);
++ glBindTexture(GL_TEXTURE_2D, Textures[0]);
++ glBegin(GL_POLYGON);
++ glTexCoord2f(0, 0); glVertex3f(-1, -1, -1);
++ glTexCoord2f(1, 0); glVertex3f(-1, 1, -1);
++ glTexCoord2f(1, 1); glVertex3f(-1, 1, 1);
++ glTexCoord2f(0, 1); glVertex3f(-1, -1, 1);
++ glEnd();
++ glBegin(GL_POLYGON);
++ glTexCoord2f(0, 0); glVertex3f(1, -1, -1);
++ glTexCoord2f(1, 0); glVertex3f(1, 1, -1);
++ glTexCoord2f(1, 1); glVertex3f(1, 1, 1);
++ glTexCoord2f(0, 1); glVertex3f(1, -1, 1);
++ glEnd();
++
++ glBindTexture(GL_TEXTURE_2D, Textures[1]);
++ glBegin(GL_POLYGON);
++ glTexCoord2f(0, 0); glVertex3f(-1, -1, -1);
++ glTexCoord2f(1, 0); glVertex3f( 1, -1, -1);
++ glTexCoord2f(1, 1); glVertex3f( 1, -1, 1);
++ glTexCoord2f(0, 1); glVertex3f(-1, -1, 1);
++ glEnd();
++ glBegin(GL_POLYGON);
++ glTexCoord2f(0, 0); glVertex3f(-1, 1, -1);
++ glTexCoord2f(1, 0); glVertex3f( 1, 1, -1);
++ glTexCoord2f(1, 1); glVertex3f( 1, 1, 1);
++ glTexCoord2f(0, 1); glVertex3f(-1, 1, 1);
++ glEnd();
++
++ glBindTexture(GL_TEXTURE_2D, Textures[2]);
++ glBegin(GL_POLYGON);
++ glTexCoord2f(0, 0); glVertex3f(-1, -1, -1);
++ glTexCoord2f(1, 0); glVertex3f( 1, -1, -1);
++ glTexCoord2f(1, 1); glVertex3f( 1, 1, -1);
++ glTexCoord2f(0, 1); glVertex3f(-1, 1, -1);
++ glEnd();
++ glBegin(GL_POLYGON);
++ glTexCoord2f(0, 0); glVertex3f(-1, -1, 1);
++ glTexCoord2f(1, 0); glVertex3f( 1, -1, 1);
++ glTexCoord2f(1, 1); glVertex3f( 1, 1, 1);
++ glTexCoord2f(0, 1); glVertex3f(-1, 1, 1);
++ glEnd();
++
++ glPopMatrix();
++
++ glXSwapBuffers(h->Dpy, h->Win);
++
++ if (!glXMakeCurrent(h->Dpy, None, NULL)) {
++ Error(h->DisplayName, "glXMakeCurrent failed in Redraw");
++ }
++ pthread_mutex_unlock(&h->drawMutex);
++}
++
++static void *threadRunner (void *arg)
++{
++ struct thread_init_arg *tia = (struct thread_init_arg *) arg;
++ struct window *win;
++
++ win = &Windows[tia->id];
++
++ while(!terminate) {
++ usleep(1000);
++ Redraw(win);
++ }
++
++ return NULL;
++}
++
++static void
++Resize(struct window *h, unsigned int width, unsigned int height)
++{
++ pthread_mutex_lock(&h->drawMutex);
++
++ if (!glXMakeCurrent(h->Dpy, h->Win, h->Context)) {
++ Error(h->DisplayName, "glXMakeCurrent failed in Resize()");
++ pthread_mutex_unlock(&h->drawMutex);
++ return;
++ }
++
++ glViewport(0, 0, width, height);
++ glMatrixMode(GL_PROJECTION);
++ glLoadIdentity();
++ glFrustum(-1, 1, -1, 1, 2, 10);
++ glMatrixMode(GL_MODELVIEW);
++ glLoadIdentity();
++ glTranslatef(0, 0, -4.5);
++ if (!glXMakeCurrent(h->Dpy, None, NULL)) {
++ Error(h->DisplayName, "glXMakeCurrent failed in Resize()");
++ }
++ pthread_mutex_unlock(&h->drawMutex);
++}
++
++
++static void
++EventLoop(void)
++{
++ while (1) {
++ int i;
++ XEvent event;
++ XNextEvent(gDpy, &event);
++ for (i = 0; i < NumWindows; i++) {
++ struct window *h = &Windows[i];
++ if (event.xany.window == h->Win) {
++ switch (event.type) {
++ case Expose:
++ Redraw(h);
++ break;
++ case ConfigureNotify:
++ Resize(h, event.xconfigure.width, event.xconfigure.height);
++ break;
++ case KeyPress:
++ terminate = 1;
++ return;
++ default:
++ /*no-op*/ ;
++ }
++ }
++ }
++ }
++}
++
++int
++main(int argc, char *argv[])
++{
++ const char *dpyName = XDisplayName(NULL);
++ pthread_t t0, t1, t2, t3;
++ struct thread_init_arg tia0, tia1, tia2, tia3;
++ struct window *h0;
++
++ XInitThreads();
++
++ gDpy = XOpenDisplay(dpyName);
++ if (!gDpy) {
++ Error(dpyName, "Unable to open display");
++ return -1;
++ }
++
++ if (initMainthread(gDpy, dpyName))
++ return -1;
++
++ /* four windows and contexts sharing display lists and texture objects */
++ h0 = AddWindow(gDpy, dpyName, 10, 10, gCtx);
++ (void) AddWindow(gDpy, dpyName, 330, 10, gCtx);
++ (void) AddWindow(gDpy, dpyName, 10, 350, gCtx);
++ (void) AddWindow(gDpy, dpyName, 330, 350, gCtx);
++
++ if (!glXMakeCurrent(gDpy, h0->Win, gCtx)) {
++ Error(dpyName, "glXMakeCurrent failed for init thread.");
++ return -1;
++ }
++
++ InitGLstuff();
++
++ tia0.id = 0;
++ pthread_create(&t0, NULL, threadRunner, &tia0);
++ tia1.id = 1;
++ pthread_create(&t1, NULL, threadRunner, &tia1);
++ tia2.id = 2;
++ pthread_create(&t2, NULL, threadRunner, &tia2);
++ tia3.id = 3;
++ pthread_create(&t3, NULL, threadRunner, &tia3);
++ EventLoop();
++ return 0;
++}
+diff -Naurp Mesa-7.8.1/progs/xdemos/texture_from_pixmap.c Mesa-7.8.1.patched/progs/xdemos/texture_from_pixmap.c
+--- Mesa-7.8.1/progs/xdemos/texture_from_pixmap.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/texture_from_pixmap.c 2010-06-13 13:45:06.789793146 +0200
+@@ -0,0 +1,396 @@
++/*
++ * Mesa 3-D graphics library
++ * Version: 7.1
++ *
++ * Copyright (C) 1999-2007 Brian Paul All Rights Reserved.
++ *
++ * Permission is hereby granted, free of charge, to any person obtaining a
++ * copy of this software and associated documentation files (the "Software"),
++ * to deal in the Software without restriction, including without limitation
++ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
++ * and/or sell copies of the Software, and to permit persons to whom the
++ * Software is furnished to do so, subject to the following conditions:
++ *
++ * The above copyright notice and this permission notice shall be included
++ * in all copies or substantial portions of the Software.
++ *
++ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
++ * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
++ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
++ * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
++ * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
++ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
++ */
++
++
++/*
++ * Test the GLX_EXT_texture_from_pixmap extension
++ * Brian Paul
++ * 19 May 2007
++ */
++
++
++#define GL_GLEXT_PROTOTYPES
++#define GLX_GLXEXT_PROTOTYPES
++#include <GL/gl.h>
++#include <GL/glx.h>
++#include <X11/keysym.h>
++#include <stdio.h>
++#include <stdlib.h>
++#include <string.h>
++#include <unistd.h>
++
++
++static float top, bottom;
++
++static PFNGLXBINDTEXIMAGEEXTPROC glXBindTexImageEXT_func = NULL;
++static PFNGLXRELEASETEXIMAGEEXTPROC glXReleaseTexImageEXT_func = NULL;
++
++
++static Display *
++OpenDisplay(void)
++{
++ int screen;
++ Display *dpy;
++ const char *ext;
++
++ dpy = XOpenDisplay(NULL);
++ if (!dpy) {
++ printf("Couldn't open default display!\n");
++ exit(1);
++ }
++
++ screen = DefaultScreen(dpy);
++ ext = glXQueryExtensionsString(dpy, screen);
++ if (!strstr(ext, "GLX_EXT_texture_from_pixmap")) {
++ fprintf(stderr, "GLX_EXT_texture_from_pixmap not supported.\n");
++ exit(1);
++ }
++
++ glXBindTexImageEXT_func = (PFNGLXBINDTEXIMAGEEXTPROC)
++ glXGetProcAddress((GLubyte *) "glXBindTexImageEXT");
++ glXReleaseTexImageEXT_func = (PFNGLXRELEASETEXIMAGEEXTPROC)
++ glXGetProcAddress((GLubyte*) "glXReleaseTexImageEXT");
++
++ if (!glXBindTexImageEXT_func || !glXReleaseTexImageEXT_func) {
++ fprintf(stderr, "glXGetProcAddress failed!\n");
++ exit(1);
++ }
++
++ return dpy;
++}
++
++
++static GLXFBConfig
++ChoosePixmapFBConfig(Display *display)
++{
++ int screen = DefaultScreen(display);
++ GLXFBConfig *fbconfigs;
++ int i, nfbconfigs = 0, value;
++
++ fbconfigs = glXGetFBConfigs(display, screen, &nfbconfigs);
++ for (i = 0; i < nfbconfigs; i++) {
++
++ glXGetFBConfigAttrib(display, fbconfigs[i], GLX_DRAWABLE_TYPE, &value);
++ if (!(value & GLX_PIXMAP_BIT))
++ continue;
++
++ glXGetFBConfigAttrib(display, fbconfigs[i],
++ GLX_BIND_TO_TEXTURE_TARGETS_EXT, &value);
++ if (!(value & GLX_TEXTURE_2D_BIT_EXT))
++ continue;
++
++ glXGetFBConfigAttrib(display, fbconfigs[i],
++ GLX_BIND_TO_TEXTURE_RGBA_EXT, &value);
++ if (value == False) {
++ glXGetFBConfigAttrib(display, fbconfigs[i],
++ GLX_BIND_TO_TEXTURE_RGB_EXT, &value);
++ if (value == False)
++ continue;
++ }
++
++ glXGetFBConfigAttrib(display, fbconfigs[i],
++ GLX_Y_INVERTED_EXT, &value);
++ if (value == True) {
++ top = 0.0f;
++ bottom = 1.0f;
++ }
++ else {
++ top = 1.0f;
++ bottom = 0.0f;
++ }
++
++ break;
++ }
++
++ if (i == nfbconfigs) {
++ printf("Unable to find FBconfig for texturing\n");
++ exit(1);
++ }
++
++ return fbconfigs[i];
++}
++
++
++static GLXPixmap
++CreatePixmap(Display *dpy, GLXFBConfig config, int w, int h, Pixmap *p)
++{
++ GLXPixmap gp;
++ const int pixmapAttribs[] = {
++ GLX_TEXTURE_TARGET_EXT, GLX_TEXTURE_2D_EXT,
++ GLX_TEXTURE_FORMAT_EXT, GLX_TEXTURE_FORMAT_RGB_EXT,
++ None
++ };
++ Window root = RootWindow(dpy, 0);
++
++ *p = XCreatePixmap(dpy, root, w, h, 24);
++ XSync(dpy, 0);
++ gp = glXCreatePixmap(dpy, config, *p, pixmapAttribs);
++ XSync(dpy, 0);
++
++ return gp;
++}
++
++
++static void
++DrawPixmapImage(Display *dpy, Pixmap pm, int w, int h)
++{
++ XGCValues gcvals;
++ GC gc;
++
++ gcvals.background = 0;
++ gc = XCreateGC(dpy, pm, GCBackground, &gcvals);
++
++ XSetForeground(dpy, gc, 0x0);
++ XFillRectangle(dpy, pm, gc, 0, 0, w, h);
++
++ XSetForeground(dpy, gc, 0xff0000);
++ XFillRectangle(dpy, pm, gc, 0, 0, 50, 50);
++
++ XSetForeground(dpy, gc, 0x00ff00);
++ XFillRectangle(dpy, pm, gc, w - 50, 0, 50, 50);
++
++ XSetForeground(dpy, gc, 0x0000ff);
++ XFillRectangle(dpy, pm, gc, 0, h - 50, 50, 50);
++
++ XSetForeground(dpy, gc, 0xffffff);
++ XFillRectangle(dpy, pm, gc, h - 50, h - 50, 50, 50);
++
++ XSetForeground(dpy, gc, 0xffff00);
++ XSetLineAttributes(dpy, gc, 3, LineSolid, CapButt, JoinBevel);
++ XDrawLine(dpy, pm, gc, 0, 0, w, h);
++ XDrawLine(dpy, pm, gc, 0, h, w, 0);
++
++ XFreeGC(dpy, gc);
++}
++
++
++static XVisualInfo *
++ChooseWindowVisual(Display *dpy)
++{
++ int screen = DefaultScreen(dpy);
++ XVisualInfo *visinfo;
++ int attribs[] = {
++ GLX_RGBA,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DOUBLEBUFFER,
++ None
++ };
++
++ visinfo = glXChooseVisual(dpy, screen, attribs);
++ if (!visinfo) {
++ printf("Unable to find RGB, double-buffered visual\n");
++ exit(1);
++ }
++
++ return visinfo;
++}
++
++
++static Window
++CreateWindow(Display *dpy, XVisualInfo *visinfo,
++ int width, int height, const char *name)
++{
++ int screen = DefaultScreen(dpy);
++ Window win;
++ XSetWindowAttributes attr;
++ unsigned long mask;
++ Window root;
++
++ root = RootWindow(dpy, screen);
++
++ /* window attributes */
++ attr.background_pixel = 0;
++ attr.border_pixel = 0;
++ attr.colormap = XCreateColormap(dpy, root, visinfo->visual, AllocNone);
++ attr.event_mask = StructureNotifyMask | ExposureMask | KeyPressMask;
++ mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
++
++ win = XCreateWindow(dpy, root, 0, 0, width, height,
++ 0, visinfo->depth, InputOutput,
++ visinfo->visual, mask, &attr);
++ if (win) {
++ XSizeHints sizehints;
++ sizehints.width = width;
++ sizehints.height = height;
++ sizehints.flags = USSize;
++ XSetNormalHints(dpy, win, &sizehints);
++ XSetStandardProperties(dpy, win, name, name,
++ None, (char **)NULL, 0, &sizehints);
++
++ XMapWindow(dpy, win);
++ }
++ return win;
++}
++
++
++static void
++BindPixmapTexture(Display *dpy, GLXPixmap gp)
++{
++ GLuint texture;
++
++ glGenTextures(1, &texture);
++ glBindTexture(GL_TEXTURE_2D, texture);
++
++ glXBindTexImageEXT_func(dpy, gp, GLX_FRONT_LEFT_EXT, NULL);
++
++ glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
++ glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
++
++ glEnable(GL_TEXTURE_2D);
++ /*
++ glXReleaseTexImageEXT_func(display, glxpixmap, GLX_FRONT_LEFT_EXT);
++ */
++}
++
++
++static void
++Resize(Window win, unsigned int width, unsigned int height)
++{
++ float sz = 1.5;
++ glViewport(0, 0, width, height);
++ glMatrixMode(GL_PROJECTION);
++ glLoadIdentity();
++ glOrtho(-sz, sz, -sz, sz, -1.0, 1.0);
++ glMatrixMode(GL_MODELVIEW);
++}
++
++
++static void
++Redraw(Display *dpy, Window win, float rot)
++{
++ glClearColor(0.25, 0.25, 0.25, 0.0);
++ glClear(GL_COLOR_BUFFER_BIT);
++ glPushMatrix();
++ glRotatef(rot, 0, 0, 1);
++ glRotatef(2.0 * rot, 1, 0, 0);
++
++ glBegin(GL_QUADS);
++ glTexCoord2d(0.0, bottom);
++ glVertex2f(-1, -1);
++ glTexCoord2d(1.0, bottom);
++ glVertex2f( 1, -1);
++ glTexCoord2d(1.0, top);
++ glVertex2d(1.0, 1.0);
++ glTexCoord2d(0.0, top);
++ glVertex2f(-1.0, 1.0);
++ glEnd();
++
++ glPopMatrix();
++
++ glXSwapBuffers(dpy, win);
++}
++
++
++static void
++EventLoop(Display *dpy, Window win)
++{
++ GLfloat rot = 0.0;
++ int anim = 0;
++
++ while (1) {
++ if (!anim || XPending(dpy) > 0) {
++ XEvent event;
++ XNextEvent(dpy, &event);
++
++ switch (event.type) {
++ case Expose:
++ Redraw(dpy, win, rot);
++ break;
++ case ConfigureNotify:
++ Resize(event.xany.window,
++ event.xconfigure.width,
++ event.xconfigure.height);
++ break;
++ case KeyPress:
++ {
++ char buf[100];
++ KeySym keySym;
++ XComposeStatus stat;
++ XLookupString(&event.xkey, buf, sizeof(buf), &keySym, &stat);
++ if (keySym == XK_Escape) {
++ return; /* exit */
++ }
++ else if (keySym == XK_r) {
++ rot += 1.0;
++ Redraw(dpy, win, rot);
++ }
++ else if (keySym == XK_a) {
++ anim = !anim;
++ }
++ else if (keySym == XK_R) {
++ rot -= 1.0;
++ Redraw(dpy, win, rot);
++ }
++ }
++ break;
++ default:
++ ; /*no-op*/
++ }
++ }
++ else {
++ /* animate */
++ rot += 1.0;
++ Redraw(dpy, win, rot);
++ }
++ }
++}
++
++
++
++int
++main(int argc, char *argv[])
++{
++ Display *dpy;
++ GLXFBConfig pixmapConfig;
++ XVisualInfo *windowVis;
++ GLXPixmap gp;
++ Window win;
++ GLXContext ctx;
++ Pixmap p;
++
++ dpy = OpenDisplay();
++
++ pixmapConfig = ChoosePixmapFBConfig(dpy);
++ windowVis = ChooseWindowVisual(dpy);
++ win = CreateWindow(dpy, windowVis, 500, 500, "Texture From Pixmap");
++
++ gp = CreatePixmap(dpy, pixmapConfig, 512, 512, &p);
++ DrawPixmapImage(dpy, p, 512, 512);
++
++ ctx = glXCreateContext(dpy, windowVis, NULL, True);
++ if (!ctx) {
++ printf("Couldn't create GLX context\n");
++ exit(1);
++ }
++
++ glXMakeCurrent(dpy, win, ctx);
++
++ BindPixmapTexture(dpy, gp);
++
++ EventLoop(dpy, win);
++
++ return 0;
++}
+diff -Naurp Mesa-7.8.1/progs/xdemos/wincopy.c Mesa-7.8.1.patched/progs/xdemos/wincopy.c
+--- Mesa-7.8.1/progs/xdemos/wincopy.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/wincopy.c 2010-06-13 13:45:06.789793146 +0200
+@@ -0,0 +1,328 @@
++/*
++ * Mesa 3-D graphics library
++ * Version: 6.5.2
++ *
++ * Copyright (C) 1999-2006 Brian Paul All Rights Reserved.
++ *
++ * Permission is hereby granted, free of charge, to any person obtaining a
++ * copy of this software and associated documentation files (the "Software"),
++ * to deal in the Software without restriction, including without limitation
++ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
++ * and/or sell copies of the Software, and to permit persons to whom the
++ * Software is furnished to do so, subject to the following conditions:
++ *
++ * The above copyright notice and this permission notice shall be included
++ * in all copies or substantial portions of the Software.
++ *
++ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
++ * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
++ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
++ * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
++ * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
++ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
++ */
++
++
++/*
++ * This program opens two GLX windows, renders into one and uses
++ * glCopyPixels to copy the image from the first window into the
++ * second by means of the GLX 1.3 function glxMakeContextCurrent().
++ * This function works just like the glXMakeCurrentReadSGI() function
++ * in the GLX_SGI_make_current_read extension.
++ */
++
++
++#define GL_GLEXT_PROTOTYPES
++#define GLX_GLXEXT_PROTOTYPES
++#include <GL/gl.h>
++#include <GL/glx.h>
++#include <X11/keysym.h>
++#include <stdio.h>
++#include <stdlib.h>
++#include <string.h>
++#include <unistd.h>
++
++
++#ifdef GLX_VERSION_1_3
++
++
++static Display *Dpy;
++static int ScrNum;
++static GLXContext Context;
++static Window Win[2]; /* Win[0] = source, Win[1] = dest */
++static GLint Width[2], Height[2];
++static GLboolean TestClipping = GL_FALSE;
++static GLfloat Angle = 0.0;
++
++static GLboolean DrawFront = GL_FALSE;
++
++PFNGLXMAKECURRENTREADSGIPROC make_context_current = NULL;
++
++static Window
++CreateWindow(Display *dpy, int scrnum, XVisualInfo *visinfo,
++ int xpos, int ypos, int width, int height,
++ const char *name)
++{
++ Window win;
++ XSetWindowAttributes attr;
++ unsigned long mask;
++ Window root;
++
++ root = RootWindow(dpy, scrnum);
++
++ /* window attributes */
++ attr.background_pixel = 0;
++ attr.border_pixel = 0;
++ attr.colormap = XCreateColormap(dpy, root, visinfo->visual, AllocNone);
++ attr.event_mask = StructureNotifyMask | ExposureMask | KeyPressMask;
++ mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
++
++ win = XCreateWindow(dpy, root, xpos, ypos, width, height,
++ 0, visinfo->depth, InputOutput,
++ visinfo->visual, mask, &attr);
++ if (win) {
++ XSizeHints sizehints;
++ sizehints.x = xpos;
++ sizehints.y = ypos;
++ sizehints.width = width;
++ sizehints.height = height;
++ sizehints.flags = USSize | USPosition;
++ XSetNormalHints(dpy, win, &sizehints);
++ XSetStandardProperties(dpy, win, name, name,
++ None, (char **)NULL, 0, &sizehints);
++
++ XMapWindow(dpy, win);
++ }
++ return win;
++}
++
++
++static void
++Redraw(void)
++{
++ /* make the first window the current one */
++ if (! (*make_context_current)(Dpy, Win[0], Win[0], Context)) {
++ printf("glXMakeContextCurrent failed in Redraw()\n");
++ return;
++ }
++
++ Angle += 1.0;
++
++ if (DrawFront) {
++ glDrawBuffer(GL_FRONT);
++ glReadBuffer(GL_FRONT);
++ }
++ else {
++ glDrawBuffer(GL_BACK);
++ glReadBuffer(GL_BACK);
++ }
++
++ glViewport(0, 0, Width[0], Height[0]);
++ glMatrixMode(GL_PROJECTION);
++ glLoadIdentity();
++ glOrtho(-1.0, 1.0, -1.0, 1.0, -1.0, 1.0);
++ glMatrixMode(GL_MODELVIEW);
++
++ glShadeModel(GL_FLAT);
++ glClearColor(0.5, 0.5, 0.5, 0.0);
++ glClear(GL_COLOR_BUFFER_BIT);
++
++ /* draw blue quad */
++ glColor3f(0.3, 0.3, 1.0);
++ glPushMatrix();
++ glRotatef(Angle, 0, 0, 1);
++ glBegin(GL_POLYGON);
++ glVertex2f(-0.5, -0.25);
++ glVertex2f( 0.5, -0.25);
++ glVertex2f( 0.5, 0.25);
++ glVertex2f(-0.5, 0.25);
++ glEnd();
++ glPopMatrix();
++
++ if (DrawFront)
++ glFinish();
++ else
++ glXSwapBuffers(Dpy, Win[0]);
++
++
++ /* copy image from window 0 to window 1 */
++ if (!(*make_context_current)(Dpy, Win[1], Win[0], Context)) {
++ printf("glXMakeContextCurrent failed in Redraw()\n");
++ return;
++ }
++
++ /* copy the image between windows */
++ glClearColor(0.0, 0.0, 0.0, 0.0);
++ glClear(GL_COLOR_BUFFER_BIT);
++
++ if (TestClipping) {
++ glWindowPos2iARB(-2, -2);
++ glCopyPixels(-2, -2, Width[0] + 4, Height[0] + 4, GL_COLOR);
++ }
++ else {
++ glWindowPos2iARB(0, 0);
++ glCopyPixels(0, 0, Width[0], Height[0], GL_COLOR);
++ }
++
++ if (DrawFront)
++ glFinish();
++ else
++ glXSwapBuffers(Dpy, Win[1]);
++}
++
++
++
++static void
++Resize(Window win, unsigned int width, unsigned int height)
++{
++ int i;
++ if (win == Win[0]) {
++ i = 0;
++ }
++ else {
++ i = 1;
++ }
++ Width[i] = width;
++ Height[i] = height;
++ if (!glXMakeCurrent(Dpy, Win[i], Context)) {
++ printf("glXMakeCurrent failed in Resize()\n");
++ return;
++ }
++}
++
++
++
++static void
++EventLoop(void)
++{
++ XEvent event;
++ while (1) {
++ if (XPending(Dpy) > 0) {
++ XNextEvent( Dpy, &event );
++ switch (event.type) {
++ case Expose:
++ Redraw();
++ break;
++ case ConfigureNotify:
++ Resize(event.xany.window, event.xconfigure.width, event.xconfigure.height);
++ break;
++ case KeyPress:
++ {
++ char buf[100];
++ KeySym keySym;
++ XComposeStatus stat;
++ XLookupString(&event.xkey, buf, sizeof(buf), &keySym, &stat);
++ if (keySym == XK_Escape) {
++ /* exit */
++ return;
++ }
++ else if (buf[0] == 'f') {
++ DrawFront = !DrawFront;
++ printf("Drawing to %s buffer\n",
++ DrawFront ? "GL_FRONT" : "GL_BACK");
++ }
++ }
++ break;
++ default:
++ /*no-op*/ ;
++ }
++ }
++ else {
++ /* animate */
++ Redraw();
++ }
++ }
++}
++
++
++static void
++Init(void)
++{
++ XVisualInfo *visinfo;
++ int attrib[] = { GLX_RGBA,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DOUBLEBUFFER,
++ None };
++ int major, minor;
++
++ Dpy = XOpenDisplay(NULL);
++ if (!Dpy) {
++ printf("Couldn't open default display!\n");
++ exit(1);
++ }
++
++ ScrNum = DefaultScreen(Dpy);
++
++ glXQueryVersion(Dpy, &major, &minor);
++
++ if (major * 100 + minor >= 103) {
++ make_context_current = (PFNGLXMAKECURRENTREADSGIPROC)
++ glXGetProcAddressARB( (GLubyte *) "glXMakeContextCurrent" );
++ }
++ else {
++ const char * const glxExtensions = glXQueryExtensionsString(Dpy, ScrNum);
++ const char * ext = strstr( glxExtensions, "GLX_SGI_make_current_read" );
++ const size_t len = strlen( "GLX_SGI_make_current_read" );
++
++ if ( (ext != NULL)
++ && ((ext[len] == ' ') || (ext[len] == '\0')) ) {
++ make_context_current = (PFNGLXMAKECURRENTREADSGIPROC)
++ glXGetProcAddressARB( (GLubyte *) "glXMakeCurrentReadSGI" );
++ }
++ }
++
++ if (make_context_current == NULL) {
++ fprintf(stderr, "Sorry, this program requires either GLX 1.3 "
++ "or GLX_SGI_make_current_read.\n");
++ exit(1);
++ }
++
++ visinfo = glXChooseVisual(Dpy, ScrNum, attrib);
++ if (!visinfo) {
++ printf("Unable to find RGB, double-buffered visual\n");
++ exit(1);
++ }
++
++ Context = glXCreateContext(Dpy, visinfo, NULL, True);
++ if (!Context) {
++ printf("Couldn't create GLX context\n");
++ exit(1);
++ }
++
++
++ Win[0] = CreateWindow(Dpy, ScrNum, visinfo,
++ 0, 0, 300, 300, "source window");
++
++ Win[1] = CreateWindow(Dpy, ScrNum, visinfo,
++ 350, 0, 300, 300, "dest window");
++
++ printf("Press Esc to exit\n");
++ printf("Press 'f' to toggle front/back buffer drawing\n");
++}
++
++
++int
++main(int argc, char *argv[])
++{
++ if (argc > 1 && strcmp(argv[1], "-clip") == 0)
++ TestClipping = GL_TRUE;
++ Init();
++ EventLoop();
++ return 0;
++}
++
++
++#else
++
++
++int
++main(int argc, char *argv[])
++{
++ printf("This program requires GLX 1.3!\n");
++ return 0;
++}
++
++
++#endif /* GLX_VERSION_1_3 */
+diff -Naurp Mesa-7.8.1/progs/xdemos/xdemo.c Mesa-7.8.1.patched/progs/xdemos/xdemo.c
+--- Mesa-7.8.1/progs/xdemos/xdemo.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/xdemo.c 2010-06-13 13:45:06.788792936 +0200
+@@ -0,0 +1,334 @@
++
++/*
++ * Very simple demo of how to use the Mesa/X11 interface instead of the
++ * glx, tk or aux toolkits. I highly recommend using the GLX interface
++ * instead of the X/Mesa interface, however.
++ *
++ * This program is in the public domain.
++ *
++ * Brian Paul
++ */
++
++#include <stdio.h>
++#include <stdlib.h>
++#include <string.h>
++#include <X11/Xlib.h>
++#include <X11/Xutil.h>
++#include "GL/xmesa.h"
++#include "GL/gl.h"
++
++
++
++static GLint Black, Red, Green, Blue;
++
++
++
++static void make_window( char *title, int color_flag )
++{
++ int x = 10, y = 10, width = 400, height = 300;
++ Display *dpy;
++ int scr;
++ Window root, win;
++ Colormap cmap;
++ XColor xcolor;
++ int attr_flags;
++ XVisualInfo *visinfo;
++ XSetWindowAttributes attr;
++ XTextProperty tp;
++ XSizeHints sh;
++ XEvent e;
++ XMesaContext context;
++ XMesaVisual visual;
++ XMesaBuffer buffer;
++
++
++ /*
++ * Do the usual X things to make a window.
++ */
++
++ dpy = XOpenDisplay(NULL);
++ if (!dpy) {
++ printf("Couldn't open default display!\n");
++ exit(1);
++ }
++
++ scr = DefaultScreen(dpy);
++ root = RootWindow(dpy, scr);
++
++ /* alloc visinfo struct */
++ visinfo = (XVisualInfo *) malloc( sizeof(XVisualInfo) );
++
++ /* Get a visual and colormap */
++ if (color_flag) {
++ /* Open TrueColor window */
++
++/*
++ if (!XMatchVisualInfo( dpy, scr, 24, TrueColor, visinfo )) {
++ printf("Couldn't get 24-bit TrueColor visual!\n");
++ exit(1);
++ }
++*/
++ if (!XMatchVisualInfo( dpy, scr, 8, PseudoColor, visinfo )) {
++ printf("Couldn't get 8-bit PseudoColor visual!\n");
++ exit(1);
++ }
++
++ cmap = XCreateColormap( dpy, root, visinfo->visual, AllocNone );
++ Black = Red = Green = Blue = 0;
++ }
++ else {
++ /* Open color index window */
++
++ if (!XMatchVisualInfo( dpy, scr, 8, PseudoColor, visinfo )) {
++ printf("Couldn't get 8-bit PseudoColor visual\n");
++ exit(1);
++ }
++
++ cmap = XCreateColormap( dpy, root, visinfo->visual, AllocNone );
++
++ /* Allocate colors */
++ xcolor.red = 0x0;
++ xcolor.green = 0x0;
++ xcolor.blue = 0x0;
++ xcolor.flags = DoRed | DoGreen | DoBlue;
++ if (!XAllocColor( dpy, cmap, &xcolor )) {
++ printf("Couldn't allocate black!\n");
++ exit(1);
++ }
++ Black = xcolor.pixel;
++
++ xcolor.red = 0xffff;
++ xcolor.green = 0x0;
++ xcolor.blue = 0x0;
++ xcolor.flags = DoRed | DoGreen | DoBlue;
++ if (!XAllocColor( dpy, cmap, &xcolor )) {
++ printf("Couldn't allocate red!\n");
++ exit(1);
++ }
++ Red = xcolor.pixel;
++
++ xcolor.red = 0x0;
++ xcolor.green = 0xffff;
++ xcolor.blue = 0x0;
++ xcolor.flags = DoRed | DoGreen | DoBlue;
++ if (!XAllocColor( dpy, cmap, &xcolor )) {
++ printf("Couldn't allocate green!\n");
++ exit(1);
++ }
++ Green = xcolor.pixel;
++
++ xcolor.red = 0x0;
++ xcolor.green = 0x0;
++ xcolor.blue = 0xffff;
++ xcolor.flags = DoRed | DoGreen | DoBlue;
++ if (!XAllocColor( dpy, cmap, &xcolor )) {
++ printf("Couldn't allocate blue!\n");
++ exit(1);
++ }
++ Blue = xcolor.pixel;
++ }
++
++ /* set window attributes */
++ attr.colormap = cmap;
++ attr.event_mask = ExposureMask | StructureNotifyMask;
++ attr.border_pixel = BlackPixel( dpy, scr );
++ attr.background_pixel = BlackPixel( dpy, scr );
++ attr_flags = CWColormap | CWEventMask | CWBorderPixel | CWBackPixel;
++
++ /* Create the window */
++ win = XCreateWindow( dpy, root, x,y, width, height, 0,
++ visinfo->depth, InputOutput,
++ visinfo->visual,
++ attr_flags, &attr);
++ if (!win) {
++ printf("Couldn't open window!\n");
++ exit(1);
++ }
++
++ XStringListToTextProperty(&title, 1, &tp);
++ sh.flags = USPosition | USSize;
++ XSetWMProperties(dpy, win, &tp, &tp, 0, 0, &sh, 0, 0);
++ XMapWindow(dpy, win);
++ while (1) {
++ XNextEvent( dpy, &e );
++ if (e.type == MapNotify && e.xmap.window == win) {
++ break;
++ }
++ }
++
++
++ /*
++ * Now do the special Mesa/Xlib stuff!
++ */
++
++ visual = XMesaCreateVisual( dpy, visinfo,
++ (GLboolean) color_flag,
++ GL_FALSE, /* alpha_flag */
++ GL_FALSE, /* db_flag */
++ GL_FALSE, /* stereo flag */
++ GL_FALSE, /* ximage_flag */
++ 0, /* depth size */
++ 0, /* stencil size */
++ 0,0,0,0, /* accum_size */
++ 0, /* num samples */
++ 0, /* level */
++ 0 /* caveat */
++ );
++ if (!visual) {
++ printf("Couldn't create Mesa/X visual!\n");
++ exit(1);
++ }
++
++ /* Create a Mesa rendering context */
++ context = XMesaCreateContext( visual,
++ NULL /* share_list */
++ );
++ if (!context) {
++ printf("Couldn't create Mesa/X context!\n");
++ exit(1);
++ }
++
++ buffer = XMesaCreateWindowBuffer( visual, win );
++ if (!buffer) {
++ printf("Couldn't create Mesa/X buffer!\n");
++ exit(1);
++ }
++
++
++ XMesaMakeCurrent( context, buffer );
++
++ /* Ready to render! */
++}
++
++
++
++static void draw_cube( void )
++{
++ /* X faces */
++ glIndexi( Red );
++ glColor3f( 1.0, 0.0, 0.0 );
++ glBegin( GL_POLYGON );
++ glVertex3f( 1.0, 1.0, 1.0 );
++ glVertex3f( 1.0, -1.0, 1.0 );
++ glVertex3f( 1.0, -1.0, -1.0 );
++ glVertex3f( 1.0, 1.0, -1.0 );
++ glEnd();
++
++ glBegin( GL_POLYGON );
++ glVertex3f( -1.0, 1.0, 1.0 );
++ glVertex3f( -1.0, 1.0, -1.0 );
++ glVertex3f( -1.0, -1.0, -1.0 );
++ glVertex3f( -1.0, -1.0, 1.0 );
++ glEnd();
++
++ /* Y faces */
++ glIndexi( Green );
++ glColor3f( 0.0, 1.0, 0.0 );
++ glBegin( GL_POLYGON );
++ glVertex3f( 1.0, 1.0, 1.0 );
++ glVertex3f( 1.0, 1.0, -1.0 );
++ glVertex3f( -1.0, 1.0, -1.0 );
++ glVertex3f( -1.0, 1.0, 1.0 );
++ glEnd();
++
++ glBegin( GL_POLYGON );
++ glVertex3f( 1.0, -1.0, 1.0 );
++ glVertex3f( -1.0, -1.0, 1.0 );
++ glVertex3f( -1.0, -1.0, -1.0 );
++ glVertex3f( 1.0, -1.0, -1.0 );
++ glEnd();
++
++ /* Z faces */
++ glIndexi( Blue );
++ glColor3f( 0.0, 0.0, 1.0 );
++ glBegin( GL_POLYGON );
++ glVertex3f( 1.0, 1.0, 1.0 );
++ glVertex3f( -1.0, 1.0, 1.0 );
++ glVertex3f( -1.0, -1.0, 1.0 );
++ glVertex3f( 1.0, -1.0, 1.0 );
++ glEnd();
++
++ glBegin( GL_POLYGON );
++ glVertex3f( 1.0, 1.0, -1.0 );
++ glVertex3f( 1.0,-1.0, -1.0 );
++ glVertex3f( -1.0,-1.0, -1.0 );
++ glVertex3f( -1.0, 1.0, -1.0 );
++ glEnd();
++}
++
++
++
++
++static void display_loop( void )
++{
++ GLfloat xrot, yrot, zrot;
++
++ xrot = yrot = zrot = 0.0;
++
++ glClearColor( 0.0, 0.0, 0.0, 0.0 );
++ glClearIndex( Black );
++
++ glMatrixMode( GL_PROJECTION );
++ glLoadIdentity();
++ glFrustum( -1.0, 1.0, -1.0, 1.0, 1.0, 10.0 );
++ glTranslatef( 0.0, 0.0, -5.0 );
++
++ glMatrixMode( GL_MODELVIEW );
++ glLoadIdentity();
++
++ glCullFace( GL_BACK );
++ glEnable( GL_CULL_FACE );
++
++ glShadeModel( GL_FLAT );
++
++ while (1) {
++ glClear( GL_COLOR_BUFFER_BIT );
++ glPushMatrix();
++ glRotatef( xrot, 1.0, 0.0, 0.0 );
++ glRotatef( yrot, 0.0, 1.0, 0.0 );
++ glRotatef( zrot, 0.0, 0.0, 1.0 );
++
++ draw_cube();
++
++ glPopMatrix();
++ glFinish();
++
++ xrot += 10.0;
++ yrot += 7.0;
++ zrot -= 3.0;
++ }
++
++}
++
++
++
++
++int main( int argc, char *argv[] )
++{
++ int mode = 0;
++
++ if (argc >= 2)
++ {
++ if (strcmp(argv[1],"-ci")==0)
++ mode = 0;
++ else if (strcmp(argv[1],"-rgb")==0)
++ mode = 1;
++ else
++ {
++ printf("Bad flag: %s\n", argv[1]);
++ printf("Specify -ci for 8-bit color index or -rgb for RGB mode\n");
++ exit(1);
++ }
++ }
++ else
++ {
++ printf("Specify -ci for 8-bit color index or -rgb for RGB mode\n");
++ printf("Defaulting to 8-bit color index\n");
++ }
++
++ make_window( argv[0], mode );
++
++ display_loop();
++ return 0;
++}
++
+diff -Naurp Mesa-7.8.1/progs/xdemos/xfont.c Mesa-7.8.1.patched/progs/xdemos/xfont.c
+--- Mesa-7.8.1/progs/xdemos/xfont.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/xfont.c 2010-06-13 13:45:06.788792936 +0200
+@@ -0,0 +1,206 @@
++
++/*
++ * Mesa 3-D graphics library
++ *
++ * Copyright (C) 1999 Brian Paul All Rights Reserved.
++ *
++ * Permission is hereby granted, free of charge, to any person obtaining a
++ * copy of this software and associated documentation files (the "Software"),
++ * to deal in the Software without restriction, including without limitation
++ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
++ * and/or sell copies of the Software, and to permit persons to whom the
++ * Software is furnished to do so, subject to the following conditions:
++ *
++ * The above copyright notice and this permission notice shall be included
++ * in all copies or substantial portions of the Software.
++ *
++ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
++ * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
++ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
++ * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
++ * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
++ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
++ */
++
++
++/*
++ * Example of using glXUseXFont().
++ * 5 November 1999
++ * Brian Paul
++ */
++
++
++#include <GL/gl.h>
++#include <GL/glx.h>
++#include <stdio.h>
++#include <stdlib.h>
++#include <string.h>
++
++
++static const char *ProgramName = "xfont";
++
++static const char *FontName = "fixed";
++
++static GLuint FontBase = 0;
++
++
++
++static void redraw( Display *dpy, Window w )
++{
++ static const char *text = "This is glXUseXFont()";
++
++ glClear( GL_COLOR_BUFFER_BIT );
++
++ /* triangle */
++ glColor3f( 0.2, 0.2, 1.0 );
++ glBegin(GL_TRIANGLES);
++ glVertex2f( 0, 0.8 );
++ glVertex2f( -0.8, -0.7 );
++ glVertex2f( 0.8, -0.7 );
++ glEnd();
++
++ /* text */
++ glColor3f( 1, 1, 1 );
++ glRasterPos2f(-0.8, 0);
++ glListBase(FontBase);
++ glCallLists(strlen(text), GL_UNSIGNED_BYTE, (GLubyte *) text);
++
++ glXSwapBuffers( dpy, w );
++}
++
++
++
++static void resize( unsigned int width, unsigned int height )
++{
++ glViewport( 0, 0, width, height );
++ glMatrixMode( GL_PROJECTION );
++ glLoadIdentity();
++ glOrtho( -1.0, 1.0, -1.0, 1.0, -1.0, 1.0 );
++}
++
++
++
++static void setup_font( Display *dpy )
++{
++ XFontStruct *fontInfo;
++ Font id;
++ unsigned int first, last;
++
++ fontInfo = XLoadQueryFont(dpy, FontName);
++ if (!fontInfo) {
++ printf("Error: font %s not found\n", FontName);
++ exit(0);
++ }
++
++ id = fontInfo->fid;
++ first = fontInfo->min_char_or_byte2;
++ last = fontInfo->max_char_or_byte2;
++
++ FontBase = glGenLists((GLuint) last + 1);
++ if (!FontBase) {
++ printf("Error: unable to allocate display lists\n");
++ exit(0);
++ }
++ glXUseXFont(id, first, last - first + 1, FontBase + first);
++}
++
++static Window make_rgb_db_window( Display *dpy, int xpos, int ypos,
++ unsigned int width, unsigned int height )
++{
++ int attrib[] = { GLX_RGBA,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DOUBLEBUFFER,
++ None };
++ int scrnum;
++ XSetWindowAttributes attr;
++ unsigned long mask;
++ Window root;
++ Window win;
++ GLXContext ctx;
++ XVisualInfo *visinfo;
++
++ scrnum = DefaultScreen( dpy );
++ root = RootWindow( dpy, scrnum );
++
++ visinfo = glXChooseVisual( dpy, scrnum, attrib );
++ if (!visinfo) {
++ printf("Error: couldn't get an RGB, Double-buffered visual\n");
++ exit(1);
++ }
++
++ /* window attributes */
++ attr.background_pixel = 0;
++ attr.border_pixel = 0;
++ attr.colormap = XCreateColormap( dpy, root, visinfo->visual, AllocNone);
++ attr.event_mask = StructureNotifyMask | ExposureMask | KeyPressMask;
++ mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
++
++ win = XCreateWindow( dpy, root, 0, 0, width, height,
++ 0, visinfo->depth, InputOutput,
++ visinfo->visual, mask, &attr );
++
++ {
++ XSizeHints sizehints;
++ sizehints.x = xpos;
++ sizehints.y = ypos;
++ sizehints.width = width;
++ sizehints.height = height;
++ sizehints.flags = USSize | USPosition;
++ XSetNormalHints(dpy, win, &sizehints);
++ XSetStandardProperties(dpy, win, ProgramName, ProgramName,
++ None, (char **)NULL, 0, &sizehints);
++ }
++
++
++ ctx = glXCreateContext( dpy, visinfo, NULL, True );
++
++ glXMakeCurrent( dpy, win, ctx );
++
++ return win;
++}
++
++
++static void event_loop( Display *dpy )
++{
++ XEvent event;
++
++ while (1) {
++ XNextEvent( dpy, &event );
++
++ switch (event.type) {
++ case Expose:
++ redraw( dpy, event.xany.window );
++ break;
++ case ConfigureNotify:
++ resize( event.xconfigure.width, event.xconfigure.height );
++ break;
++ case KeyPress:
++ exit(0);
++ default:
++ ; /* no-op */
++ }
++ }
++}
++
++
++
++int main( int argc, char *argv[] )
++{
++ Display *dpy;
++ Window win;
++
++ dpy = XOpenDisplay(NULL);
++
++ win = make_rgb_db_window( dpy, 0, 0, 300, 300 );
++ setup_font( dpy );
++
++ glShadeModel( GL_FLAT );
++ glClearColor( 0.5, 0.5, 1.0, 1.0 );
++
++ XMapWindow( dpy, win );
++
++ event_loop( dpy );
++ return 0;
++}
+diff -Naurp Mesa-7.8.1/progs/xdemos/xrotfontdemo.c Mesa-7.8.1.patched/progs/xdemos/xrotfontdemo.c
+--- Mesa-7.8.1/progs/xdemos/xrotfontdemo.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/xrotfontdemo.c 2010-06-13 13:45:06.789793146 +0200
+@@ -0,0 +1,220 @@
++/*
++ * Mesa 3-D graphics library
++ *
++ * Copyright (C) 1999 Brian Paul All Rights Reserved.
++ *
++ * Permission is hereby granted, free of charge, to any person obtaining a
++ * copy of this software and associated documentation files (the "Software"),
++ * to deal in the Software without restriction, including without limitation
++ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
++ * and/or sell copies of the Software, and to permit persons to whom the
++ * Software is furnished to do so, subject to the following conditions:
++ *
++ * The above copyright notice and this permission notice shall be included
++ * in all copies or substantial portions of the Software.
++ *
++ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
++ * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
++ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
++ * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
++ * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
++ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
++ */
++
++
++/*
++ * Example of using glXUseRotatedXFontMESA().
++ * 24 Jan 2004
++ * Brian Paul
++ */
++
++
++#include <GL/gl.h>
++#include <GL/glx.h>
++#include <stdio.h>
++#include <stdlib.h>
++#include <string.h>
++#include "xuserotfont.h"
++
++
++static const char *ProgramName = "xfont";
++
++static const char *FontName = "fixed";
++
++static GLuint FontBase[4];
++
++
++static void redraw( Display *dpy, Window w )
++{
++ static const char *text = " Rotated bitmap text";
++ int i;
++
++ glClear( GL_COLOR_BUFFER_BIT );
++
++ /* triangle */
++ glColor3f( 0.2, 0.2, 1.0 );
++ glBegin(GL_TRIANGLES);
++ glVertex2f( -0.8, 0.7 );
++ glVertex2f( -0.8, -0.7 );
++ glVertex2f( 0.8, 0.0 );
++ glEnd();
++
++ /* marker */
++ glColor3f( 0, 1, 0 );
++ glBegin(GL_POINTS);
++ glVertex2f(0, 0);
++ glEnd();
++
++ /* text */
++ glColor3f( 1, 1, 1 );
++
++ for (i = 0; i < 4; i++) {
++ glRasterPos2f(0, 0);
++ glListBase(FontBase[i]);
++ glCallLists(strlen(text), GL_UNSIGNED_BYTE, (GLubyte *) text);
++ }
++
++ glXSwapBuffers( dpy, w );
++}
++
++
++
++static void resize( unsigned int width, unsigned int height )
++{
++ glViewport( 0, 0, width, height );
++ glMatrixMode( GL_PROJECTION );
++ glLoadIdentity();
++ glOrtho( -1.0, 1.0, -1.0, 1.0, -1.0, 1.0 );
++}
++
++
++
++static void setup_font( Display *dpy )
++{
++ XFontStruct *fontInfo;
++ Font id;
++ unsigned int first, last;
++ int i;
++
++ fontInfo = XLoadQueryFont(dpy, FontName);
++ if (!fontInfo) {
++ printf("Error: font %s not found\n", FontName);
++ exit(0);
++ }
++
++ id = fontInfo->fid;
++ first = fontInfo->min_char_or_byte2;
++ last = fontInfo->max_char_or_byte2;
++
++ for (i = 0; i < 4; i++) {
++ FontBase[i] = glGenLists((GLuint) last + 1);
++ if (!FontBase[i]) {
++ printf("Error: unable to allocate display lists\n");
++ exit(0);
++ }
++ glXUseRotatedXFontMESA(id, first, last - first + 1, FontBase[i] + first,
++ i * 90);
++ }
++}
++
++
++static Window make_rgb_db_window( Display *dpy, int xpos, int ypos,
++ unsigned int width, unsigned int height )
++{
++ int attrib[] = { GLX_RGBA,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DOUBLEBUFFER,
++ None };
++ int scrnum;
++ XSetWindowAttributes attr;
++ unsigned long mask;
++ Window root;
++ Window win;
++ GLXContext ctx;
++ XVisualInfo *visinfo;
++
++ scrnum = DefaultScreen( dpy );
++ root = RootWindow( dpy, scrnum );
++
++ visinfo = glXChooseVisual( dpy, scrnum, attrib );
++ if (!visinfo) {
++ printf("Error: couldn't get an RGB, Double-buffered visual\n");
++ exit(1);
++ }
++
++ /* window attributes */
++ attr.background_pixel = 0;
++ attr.border_pixel = 0;
++ attr.colormap = XCreateColormap( dpy, root, visinfo->visual, AllocNone);
++ attr.event_mask = StructureNotifyMask | ExposureMask | KeyPressMask;
++ mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask;
++
++ win = XCreateWindow( dpy, root, 0, 0, width, height,
++ 0, visinfo->depth, InputOutput,
++ visinfo->visual, mask, &attr );
++
++ {
++ XSizeHints sizehints;
++ sizehints.x = xpos;
++ sizehints.y = ypos;
++ sizehints.width = width;
++ sizehints.height = height;
++ sizehints.flags = USSize | USPosition;
++ XSetNormalHints(dpy, win, &sizehints);
++ XSetStandardProperties(dpy, win, ProgramName, ProgramName,
++ None, (char **)NULL, 0, &sizehints);
++ }
++
++
++ ctx = glXCreateContext( dpy, visinfo, NULL, True );
++
++ glXMakeCurrent( dpy, win, ctx );
++
++ return win;
++}
++
++
++static void event_loop( Display *dpy )
++{
++ XEvent event;
++
++ while (1) {
++ XNextEvent( dpy, &event );
++
++ switch (event.type) {
++ case Expose:
++ redraw( dpy, event.xany.window );
++ break;
++ case ConfigureNotify:
++ resize( event.xconfigure.width, event.xconfigure.height );
++ break;
++ case KeyPress:
++ exit(0);
++ default:
++ ; /* no-op */
++ }
++ }
++}
++
++
++
++int main( int argc, char *argv[] )
++{
++ Display *dpy;
++ Window win;
++
++ dpy = XOpenDisplay(NULL);
++
++ win = make_rgb_db_window( dpy, 0, 0, 300, 300 );
++ setup_font( dpy );
++
++ glShadeModel( GL_FLAT );
++ glClearColor( 0.5, 0.5, 1.0, 1.0 );
++
++ XMapWindow( dpy, win );
++
++ event_loop( dpy );
++ return 0;
++}
+diff -Naurp Mesa-7.8.1/progs/xdemos/xuserotfont.c Mesa-7.8.1.patched/progs/xdemos/xuserotfont.c
+--- Mesa-7.8.1/progs/xdemos/xuserotfont.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/xuserotfont.c 2010-06-13 13:45:06.789793146 +0200
+@@ -0,0 +1,399 @@
++/*
++ * Mesa 3-D graphics library
++ * Version: 6.1
++ *
++ * Copyright (C) 1999-2004 Brian Paul All Rights Reserved.
++ *
++ * Permission is hereby granted, free of charge, to any person obtaining a
++ * copy of this software and associated documentation files (the "Software"),
++ * to deal in the Software without restriction, including without limitation
++ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
++ * and/or sell copies of the Software, and to permit persons to whom the
++ * Software is furnished to do so, subject to the following conditions:
++ *
++ * The above copyright notice and this permission notice shall be included
++ * in all copies or substantial portions of the Software.
++ *
++ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
++ * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
++ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
++ * BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
++ * AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
++ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
++ */
++
++
++/* \file xuserotfont.c
++ *
++ * A function like glXUseXFont() but takes a 0, 90, 180 or 270 degree
++ * rotation angle for rotated text display.
++ *
++ * Based on Mesa's glXUseXFont implementation written by Thorsten Ohl.
++ */
++
++#include <assert.h>
++#include <stdlib.h>
++#include <string.h>
++#include <GL/glx.h>
++#include "xuserotfont.h"
++
++
++/**
++ * Generate OpenGL-compatible bitmap by drawing an X character glyph
++ * to an off-screen pixmap, then getting the image and testing pixels.
++ * \param width bitmap width in pixels
++ * \param height bitmap height in pixels
++ */
++static void
++fill_bitmap(Display *dpy, Pixmap pixmap, GC gc,
++ unsigned int bitmapWidth, unsigned int bitmapHeight,
++ unsigned int charWidth, unsigned int charHeight,
++ int xPos, int yPos, unsigned int c, GLubyte * bitmap,
++ int rotation)
++{
++ const int bytesPerRow = (bitmapWidth + 7) / 8;
++ XImage *image;
++ XChar2b char2b;
++
++ /* clear pixmap to 0 */
++ XSetForeground(dpy, gc, 0);
++ XFillRectangle(dpy, pixmap, gc, 0, 0, charWidth, charHeight);
++
++ /* The glyph is drawn snug up against the left/top edges of the pixmap */
++ XSetForeground(dpy, gc, 1);
++ char2b.byte1 = (c >> 8) & 0xff;
++ char2b.byte2 = (c & 0xff);
++ XDrawString16(dpy, pixmap, gc, xPos, yPos, &char2b, 1);
++
++ /* initialize GL bitmap */
++ memset(bitmap, 0, bytesPerRow * bitmapHeight);
++
++ image = XGetImage(dpy, pixmap, 0, 0, charWidth, charHeight, 1, XYPixmap);
++ if (image) {
++ /* Set appropriate bits in the GL bitmap.
++ * Note: X11 and OpenGL are upside down wrt each other).
++ */
++ unsigned int x, y;
++ if (rotation == 0) {
++ for (y = 0; y < charHeight; y++) {
++ for (x = 0; x < charWidth; x++) {
++ if (XGetPixel(image, x, y)) {
++ int y2 = bitmapHeight - y - 1;
++ bitmap[bytesPerRow * y2 + x / 8] |= (1 << (7 - (x % 8)));
++ }
++ }
++ }
++ }
++ else if (rotation == 90) {
++ for (y = 0; y < charHeight; y++) {
++ for (x = 0; x < charWidth; x++) {
++ if (XGetPixel(image, x, y)) {
++ int x2 = y;
++ int y2 = x;
++ bitmap[bytesPerRow * y2 + x2 / 8] |= (1 << (7 - (x2 % 8)));
++ }
++ }
++ }
++ }
++ else if (rotation == 180) {
++ for (y = 0; y < charHeight; y++) {
++ for (x = 0; x < charWidth; x++) {
++ if (XGetPixel(image, x, y)) {
++ int x2 = charWidth - x - 1;
++ bitmap[bytesPerRow * y + x2 / 8] |= (1 << (7 - (x2 % 8)));
++ }
++ }
++ }
++ }
++ else {
++ assert(rotation == 270);
++ for (y = 0; y < charHeight; y++) {
++ for (x = 0; x < charWidth; x++) {
++ if (XGetPixel(image, x, y)) {
++ int x2 = charHeight - y - 1;
++ int y2 = charWidth - x - 1;
++ bitmap[bytesPerRow * y2 + x2 / 8] |= (1 << (7 - (x2 % 8)));
++ }
++ }
++ }
++ }
++ XDestroyImage(image);
++ }
++}
++
++
++/*
++ * Determine if a given glyph is valid and return the
++ * corresponding XCharStruct.
++ */
++static const XCharStruct *
++isvalid(const XFontStruct * fs, unsigned int which)
++{
++ unsigned int rows, pages;
++ unsigned int byte1 = 0, byte2 = 0;
++ int i, valid = 1;
++
++ rows = fs->max_byte1 - fs->min_byte1 + 1;
++ pages = fs->max_char_or_byte2 - fs->min_char_or_byte2 + 1;
++
++ if (rows == 1) {
++ /* "linear" fonts */
++ if ((fs->min_char_or_byte2 > which) || (fs->max_char_or_byte2 < which))
++ valid = 0;
++ }
++ else {
++ /* "matrix" fonts */
++ byte2 = which & 0xff;
++ byte1 = which >> 8;
++ if ((fs->min_char_or_byte2 > byte2) ||
++ (fs->max_char_or_byte2 < byte2) ||
++ (fs->min_byte1 > byte1) || (fs->max_byte1 < byte1))
++ valid = 0;
++ }
++
++ if (valid) {
++ if (fs->per_char) {
++ if (rows == 1) {
++ /* "linear" fonts */
++ return fs->per_char + (which - fs->min_char_or_byte2);
++ }
++ else {
++ /* "matrix" fonts */
++ i = ((byte1 - fs->min_byte1) * pages) +
++ (byte2 - fs->min_char_or_byte2);
++ return fs->per_char + i;
++ }
++ }
++ else {
++ return &fs->min_bounds;
++ }
++ }
++ return NULL;
++}
++
++
++void
++glXUseRotatedXFontMESA(Font font, int first, int count, int listbase,
++ int rotation)
++{
++ Display *dpy;
++ Window win;
++ Pixmap pixmap;
++ GC gc;
++ XFontStruct *fs;
++ GLint swapbytes, lsbfirst, rowlength;
++ GLint skiprows, skippixels, alignment;
++ unsigned int maxCharWidth, maxCharHeight;
++ GLubyte *bm;
++ int i;
++
++ if (rotation != 0 &&
++ rotation != 90 &&
++ rotation != 180 &&
++ rotation != 270)
++ return;
++
++ dpy = glXGetCurrentDisplay();
++ if (!dpy)
++ return; /* I guess glXMakeCurrent wasn't called */
++ win = RootWindow(dpy, DefaultScreen(dpy));
++
++ fs = XQueryFont(dpy, font);
++ if (!fs) {
++ /*
++ _mesa_error(NULL, GL_INVALID_VALUE,
++ "Couldn't get font structure information");
++ */
++ return;
++ }
++
++ /* Allocate a GL bitmap that can fit any character */
++ maxCharWidth = fs->max_bounds.rbearing - fs->min_bounds.lbearing;
++ maxCharHeight = fs->max_bounds.ascent + fs->max_bounds.descent;
++ /* use max, in case we're rotating */
++ if (rotation == 90 || rotation == 270) {
++ /* swap width/height */
++ bm = (GLubyte *) malloc((maxCharHeight + 7) / 8 * maxCharWidth);
++ }
++ else {
++ /* normal or upside down */
++ bm = (GLubyte *) malloc((maxCharWidth + 7) / 8 * maxCharHeight);
++ }
++ if (!bm) {
++ XFreeFontInfo(NULL, fs, 1);
++ /*
++ _mesa_error(NULL, GL_OUT_OF_MEMORY,
++ "Couldn't allocate bitmap in glXUseXFont()");
++ */
++ return;
++ }
++
++#if 0
++ /* get the page info */
++ pages = fs->max_char_or_byte2 - fs->min_char_or_byte2 + 1;
++ firstchar = (fs->min_byte1 << 8) + fs->min_char_or_byte2;
++ lastchar = (fs->max_byte1 << 8) + fs->max_char_or_byte2;
++ rows = fs->max_byte1 - fs->min_byte1 + 1;
++ unsigned int first_char, last_char, pages, rows;
++#endif
++
++ /* Save the current packing mode for bitmaps. */
++ glGetIntegerv(GL_UNPACK_SWAP_BYTES, &swapbytes);
++ glGetIntegerv(GL_UNPACK_LSB_FIRST, &lsbfirst);
++ glGetIntegerv(GL_UNPACK_ROW_LENGTH, &rowlength);
++ glGetIntegerv(GL_UNPACK_SKIP_ROWS, &skiprows);
++ glGetIntegerv(GL_UNPACK_SKIP_PIXELS, &skippixels);
++ glGetIntegerv(GL_UNPACK_ALIGNMENT, &alignment);
++
++ /* Enforce a standard packing mode which is compatible with
++ fill_bitmap() from above. This is actually the default mode,
++ except for the (non)alignment. */
++ glPixelStorei(GL_UNPACK_SWAP_BYTES, GL_FALSE);
++ glPixelStorei(GL_UNPACK_LSB_FIRST, GL_FALSE);
++ glPixelStorei(GL_UNPACK_ROW_LENGTH, 0);
++ glPixelStorei(GL_UNPACK_SKIP_ROWS, 0);
++ glPixelStorei(GL_UNPACK_SKIP_PIXELS, 0);
++ glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
++
++ /* Create pixmap and GC */
++ pixmap = XCreatePixmap(dpy, win, maxCharWidth, maxCharHeight, 1);
++ {
++ XGCValues values;
++ unsigned long valuemask;
++ values.foreground = BlackPixel(dpy, DefaultScreen(dpy));
++ values.background = WhitePixel(dpy, DefaultScreen(dpy));
++ values.font = fs->fid;
++ valuemask = GCForeground | GCBackground | GCFont;
++ gc = XCreateGC(dpy, pixmap, valuemask, &values);
++ }
++
++#ifdef DEBUG_XROT
++ if (debug_xfonts)
++ dump_font_struct(fs);
++#endif
++
++ for (i = 0; i < count; i++) {
++ const unsigned int c = first + i;
++ const int list = listbase + i;
++ unsigned int charWidth, charHeight;
++ unsigned int bitmapWidth = 0, bitmapHeight = 0;
++ GLfloat xOrig, yOrig, xStep, yStep, dtemp;
++ const XCharStruct *ch;
++ int xPos, yPos;
++ int valid;
++
++ /* check on index validity and get the bounds */
++ ch = isvalid(fs, c);
++ if (!ch) {
++ ch = &fs->max_bounds;
++ valid = 0;
++ }
++ else {
++ valid = 1;
++ }
++
++#ifdef DEBUG_XROT
++ if (debug_xfonts) {
++ char s[7];
++ sprintf(s, isprint(c) ? "%c> " : "\\%03o> ", c);
++ dump_char_struct(ch, s);
++ }
++#endif
++
++ /* glBitmap()' parameters:
++ straight from the glXUseXFont(3) manpage. */
++ charWidth = ch->rbearing - ch->lbearing;
++ charHeight = ch->ascent + ch->descent;
++ xOrig = -ch->lbearing;
++ yOrig = ch->descent;
++ xStep = ch->width;
++ yStep = 0;
++
++ /* X11's starting point. */
++ xPos = -ch->lbearing;
++ yPos = ch->ascent;
++
++ /* Apply rotation */
++ switch (rotation) {
++ case 0:
++ /* nothing */
++ bitmapWidth = charWidth;
++ bitmapHeight = charHeight;
++ break;
++ case 90:
++ /* xStep, yStep */
++ dtemp = xStep;
++ xStep = -yStep;
++ yStep = dtemp;
++ /* xOrig, yOrig */
++ yOrig = xOrig;
++ xOrig = charHeight - (charHeight - yPos);
++ /* width, height */
++ bitmapWidth = charHeight;
++ bitmapHeight = charWidth;
++ break;
++ case 180:
++ /* xStep, yStep */
++ xStep = -xStep;
++ yStep = -yStep;
++ /* xOrig, yOrig */
++ xOrig = charWidth - xOrig - 1;
++ yOrig = charHeight - yOrig - 1;
++ bitmapWidth = charWidth;
++ bitmapHeight = charHeight;
++ break;
++ case 270:
++ /* xStep, yStep */
++ dtemp = xStep;
++ xStep = yStep;
++ yStep = -dtemp;
++ /* xOrig, yOrig */
++ dtemp = yOrig;
++ yOrig = charWidth - xOrig;
++ xOrig = dtemp;
++ /* width, height */
++ bitmapWidth = charHeight;
++ bitmapHeight = charWidth;
++ break;
++ default:
++ /* should never get here */
++ ;
++ }
++
++ glNewList(list, GL_COMPILE);
++ if (valid && bitmapWidth > 0 && bitmapHeight > 0) {
++
++ fill_bitmap(dpy, pixmap, gc, bitmapWidth, bitmapHeight,
++ charWidth, charHeight,
++ xPos, yPos, c, bm, rotation);
++
++ glBitmap(bitmapWidth, bitmapHeight, xOrig, yOrig, xStep, yStep, bm);
++
++#ifdef DEBUG_XROT
++ if (debug_xfonts) {
++ printf("width/height = %u/%u\n", bitmapWidth, bitmapHeight);
++ dump_bitmap(bitmapWidth, bitmapHeight, bm);
++ }
++#endif
++ }
++ else {
++ glBitmap(0, 0, 0.0, 0.0, xStep, yStep, NULL);
++ }
++ glEndList();
++ }
++
++ free(bm);
++ XFreeFontInfo(NULL, fs, 1);
++ XFreePixmap(dpy, pixmap);
++ XFreeGC(dpy, gc);
++
++ /* Restore saved packing modes. */
++ glPixelStorei(GL_UNPACK_SWAP_BYTES, swapbytes);
++ glPixelStorei(GL_UNPACK_LSB_FIRST, lsbfirst);
++ glPixelStorei(GL_UNPACK_ROW_LENGTH, rowlength);
++ glPixelStorei(GL_UNPACK_SKIP_ROWS, skiprows);
++ glPixelStorei(GL_UNPACK_SKIP_PIXELS, skippixels);
++ glPixelStorei(GL_UNPACK_ALIGNMENT, alignment);
++}
++
++
+diff -Naurp Mesa-7.8.1/progs/xdemos/xuserotfont.h Mesa-7.8.1.patched/progs/xdemos/xuserotfont.h
+--- Mesa-7.8.1/progs/xdemos/xuserotfont.h 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/xuserotfont.h 2010-06-13 13:45:06.789793146 +0200
+@@ -0,0 +1,12 @@
++#ifndef XUSEROTFONT_H
++#define XUSEROTFONT_H
++
++#include <X11/Xlib.h>
++
++
++extern void
++glXUseRotatedXFontMESA(Font font, int first, int count, int listbase,
++ int rotation);
++
++
++#endif
+diff -Naurp Mesa-7.8.1/progs/xdemos/yuvrect_client.c Mesa-7.8.1.patched/progs/xdemos/yuvrect_client.c
+--- Mesa-7.8.1/progs/xdemos/yuvrect_client.c 1970-01-01 01:00:00.000000000 +0100
++++ Mesa-7.8.1.patched/progs/xdemos/yuvrect_client.c 2010-06-13 13:45:06.789793146 +0200
+@@ -0,0 +1,326 @@
++/*
++ * Test the GL_NV_texture_rectangle and GL_MESA_ycrcb_texture extensions and GLX_MESA_allocate-memory
++ *
++ * Dave Airlie - Feb 2005
++ */
++
++#include <assert.h>
++#include <math.h>
++#include <stdio.h>
++#include <stdlib.h>
++#include <string.h>
++#include <X11/Xlib.h>
++#include <X11/keysym.h>
++#define GL_GLEXT_PROTOTYPES
++#include <GL/glx.h>
++
++#include "../util/readtex.c" /* I know, this is a hack. */
++
++#define TEXTURE_FILE "../images/girl2.rgb"
++
++static GLfloat Xrot = 0, Yrot = 0, Zrot = 0;
++static GLint ImgWidth, ImgHeight;
++static GLushort *ImageYUV = NULL;
++static void *glx_memory;
++
++static void DrawObject(void)
++{
++ glBegin(GL_QUADS);
++
++ glTexCoord2f(0, 0);
++ glVertex2f(-1.0, -1.0);
++
++ glTexCoord2f(ImgWidth, 0);
++ glVertex2f(1.0, -1.0);
++
++ glTexCoord2f(ImgWidth, ImgHeight);
++ glVertex2f(1.0, 1.0);
++
++ glTexCoord2f(0, ImgHeight);
++ glVertex2f(-1.0, 1.0);
++
++ glEnd();
++}
++
++
++static void scr_Display( void )
++{
++ glClear( GL_COLOR_BUFFER_BIT );
++
++ glPushMatrix();
++ glRotatef(Xrot, 1.0, 0.0, 0.0);
++ glRotatef(Yrot, 0.0, 1.0, 0.0);
++ glRotatef(Zrot, 0.0, 0.0, 1.0);
++ DrawObject();
++ glPopMatrix();
++
++}
++
++
++static void Reshape( int width, int height )
++{
++ glViewport( 0, 0, width, height );
++ glMatrixMode( GL_PROJECTION );
++ glLoadIdentity();
++ glFrustum( -1.0, 1.0, -1.0, 1.0, 10.0, 100.0 );
++ glMatrixMode( GL_MODELVIEW );
++ glLoadIdentity();
++ glTranslatef( 0.0, 0.0, -15.0 );
++}
++
++static int queryClient(Display *dpy, int screen)
++{
++#ifdef GLX_MESA_allocate_memory
++ char *extensions;
++
++ extensions = (char *)glXQueryExtensionsString(dpy, screen);
++ if (!extensions || !strstr(extensions,"GLX_MESA_allocate_memory")) {
++ return 0;
++ }
++
++ return 1;
++#else
++ return 0;
++#endif
++}
++
++static int
++query_extension(char* extName) {
++ char *p = (char *) glGetString(GL_EXTENSIONS);
++ char *end = p + strlen(p);
++ while (p < end) {
++ int n = strcspn(p, " ");
++ if ((strlen(extName) == n) && (strncmp(extName, p, n) == 0))
++ return GL_TRUE;
++ p += (n + 1);
++ }
++ return GL_FALSE;
++}
++
++static void Init( int argc, char *argv[] , Display *dpy, int screen, Window win)
++{
++ GLuint texObj = 100;
++ const char *file;
++ void *glx_memory;
++
++ if (!query_extension("GL_NV_texture_rectangle")) {
++ printf("Sorry, GL_NV_texture_rectangle is required\n");
++ exit(0);
++ }
++
++ if (!query_extension("GL_MESA_ycbcr_texture")) {
++ printf("Sorry, GL_MESA_ycbcr_texture is required\n");
++ exit(0);
++ }
++
++ if (!queryClient(dpy, screen)) {
++ printf("Sorry, GLX_MESA_allocate_memory is required\n");
++ exit(0);
++ }
++
++ glPixelStorei(GL_UNPACK_CLIENT_STORAGE_APPLE, 1);
++ glBindTexture(GL_TEXTURE_RECTANGLE_NV, texObj);
++#ifdef LINEAR_FILTER
++ /* linear filtering looks much nicer but is much slower for Mesa */
++ glTexParameteri(GL_TEXTURE_RECTANGLE_NV, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
++ glTexParameteri(GL_TEXTURE_RECTANGLE_NV, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
++#else
++ glTexParameteri(GL_TEXTURE_RECTANGLE_NV, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
++ glTexParameteri(GL_TEXTURE_RECTANGLE_NV, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
++#endif
++
++ if (argc > 1)
++ file = argv[1];
++ else
++ file = TEXTURE_FILE;
++
++ ImageYUV = LoadYUVImage(file, &ImgWidth, &ImgHeight);
++ if (!ImageYUV) {
++ printf("Couldn't read %s\n", TEXTURE_FILE);
++ exit(0);
++ }
++
++ glx_memory = glXAllocateMemoryMESA(dpy, screen, ImgWidth * ImgHeight * 2, 0, 0 ,0);
++ if (!glx_memory)
++ {
++ fprintf(stderr,"Failed to allocate MESA memory\n");
++ exit(-1);
++ }
++
++ memcpy(glx_memory, ImageYUV, ImgWidth * ImgHeight * 2);
++
++ printf("Image: %dx%d\n", ImgWidth, ImgHeight);
++
++ glTexImage2D(GL_TEXTURE_RECTANGLE_NV, 0,
++ GL_YCBCR_MESA, ImgWidth, ImgHeight, 0,
++ GL_YCBCR_MESA, GL_UNSIGNED_SHORT_8_8_APPLE, glx_memory);
++
++ assert(glGetError() == GL_NO_ERROR);
++
++ glTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
++
++ glEnable(GL_TEXTURE_RECTANGLE_NV);
++
++ glShadeModel(GL_FLAT);
++ glClearColor(0.3, 0.3, 0.4, 1.0);
++
++}
++
++/*
++ * Create an RGB, double-buffered window.
++ * Return the window and context handles.
++ */
++static void
++make_window( Display *dpy, const char *name,
++ int x, int y, int width, int height,
++ Window *winRet, GLXContext *ctxRet)
++{
++ int attribs[] = { GLX_RGBA,
++ GLX_RED_SIZE, 1,
++ GLX_GREEN_SIZE, 1,
++ GLX_BLUE_SIZE, 1,
++ GLX_DOUBLEBUFFER,
++ GLX_DEPTH_SIZE, 1,
++ None };
++ int scrnum;
++ XSetWindowAttributes attr;
++ unsigned long mask;
++ Window root;
++ Window win;
++ GLXContext ctx;
++ XVisualInfo *visinfo;
++
++ scrnum = DefaultScreen( dpy );
++ root = RootWindow( dpy, scrnum );
++
++ visinfo = glXChooseVisual( dpy, scrnum, attribs );
++ if (!visinfo) {
++ printf("Error: couldn't get an RGB, Double-buffered visual\n");
++ exit(1);
++ }
++
++ /* window attributes */
++ attr.background_pixel = 0;
++ attr.border_pixel = 0;
++ attr.colormap = XCreateColormap( dpy, root, visinfo->visual, AllocNone);
++ attr.event_mask = StructureNotifyMask | ExposureMask | KeyPressMask;
++ attr.override_redirect = 0;
++ mask = CWBackPixel | CWBorderPixel | CWColormap | CWEventMask | CWOverrideRedirect;
++
++ win = XCreateWindow( dpy, root, 0, 0, width, height,
++ 0, visinfo->depth, InputOutput,
++ visinfo->visual, mask, &attr );
++
++ /* set hints and properties */
++ {
++ XSizeHints sizehints;
++ sizehints.x = x;
++ sizehints.y = y;
++ sizehints.width = width;
++ sizehints.height = height;
++ sizehints.flags = USSize | USPosition;
++ XSetNormalHints(dpy, win, &sizehints);
++ XSetStandardProperties(dpy, win, name, name,
++ None, (char **)NULL, 0, &sizehints);
++ }
++
++ ctx = glXCreateContext( dpy, visinfo, NULL, True );
++ if (!ctx) {
++ printf("Error: glXCreateContext failed\n");
++ exit(1);
++ }
++
++ XFree(visinfo);
++
++ *winRet = win;
++ *ctxRet = ctx;
++}
++
++
++static void
++event_loop(Display *dpy, Window win)
++{
++ while (1) {
++ while (XPending(dpy) > 0) {
++ XEvent event;
++ XNextEvent(dpy, &event);
++ switch (event.type) {
++ case Expose:
++ /* we'll redraw below */
++ break;
++ case ConfigureNotify:
++ Reshape(event.xconfigure.width, event.xconfigure.height);
++ break;
++ case KeyPress:
++ {
++ char buffer[10];
++ int r, code;
++ code = XLookupKeysym(&event.xkey, 0);
++ r = XLookupString(&event.xkey, buffer, sizeof(buffer),
++ NULL, NULL);
++ if (buffer[0] == 27) {
++ /* escape */
++ return;
++
++ }
++ }
++ }
++ }
++
++ }
++}
++
++
++int
++main(int argc, char *argv[])
++{
++ Display *dpy;
++ Window win;
++ GLXContext ctx;
++ char *dpyName = NULL;
++ GLboolean printInfo = GL_FALSE;
++ int i;
++
++ for (i = 1; i < argc; i++) {
++ if (strcmp(argv[i], "-display") == 0) {
++ dpyName = argv[i+1];
++ i++;
++ }
++ else if (strcmp(argv[i], "-info") == 0) {
++ printInfo = GL_TRUE;
++ }
++ else
++ printf("Warrning: unknown parameter: %s\n", argv[i]);
++ }
++
++ dpy = XOpenDisplay(dpyName);
++ if (!dpy) {
++ printf("Error: couldn't open display %s\n",
++ XDisplayName(dpyName));
++ return -1;
++ }
++
++ make_window(dpy, "yuvrect_client", 0, 0, 300, 300, &win, &ctx);
++ XMapWindow(dpy, win);
++ glXMakeCurrent(dpy, win, ctx);
++
++ if (printInfo) {
++ printf("GL_RENDERER = %s\n", (char *) glGetString(GL_RENDERER));
++ printf("GL_VERSION = %s\n", (char *) glGetString(GL_VERSION));
++ printf("GL_VENDOR = %s\n", (char *) glGetString(GL_VENDOR));
++ printf("GL_EXTENSIONS = %s\n", (char *) glGetString(GL_EXTENSIONS));
++ }
++
++ Init(argc, argv, dpy, DefaultScreen(dpy), win);
++
++ scr_Display();
++ glXSwapBuffers(dpy, win);
++ event_loop(dpy, win);
++
++ glXFreeMemoryMESA(dpy, DefaultScreen(dpy), glx_memory);
++ glXDestroyContext(dpy, ctx);
++ XDestroyWindow(dpy, win);
++ XCloseDisplay(dpy);
++
++ return 0;
++}
diff --git a/package/MesaLib/patches/patch-include_GL_internal_sarea_h b/package/MesaLib/patches/patch-include_GL_internal_sarea_h
new file mode 100644
index 000000000..7de643397
--- /dev/null
+++ b/package/MesaLib/patches/patch-include_GL_internal_sarea_h
@@ -0,0 +1,12 @@
+ fix for loongson
+--- Mesa-7.8.1.orig/include/GL/internal/sarea.h 2010-02-05 01:10:39.000000000 +0100
++++ Mesa-7.8.1/include/GL/internal/sarea.h 2010-06-12 19:13:41.417809541 +0200
+@@ -42,6 +42,8 @@
+ /* SAREA area needs to be at least a page */
+ #if defined(__alpha__)
+ #define SAREA_MAX 0x2000
++#elif defined(__mips__)
++#define SAREA_MAX 0x4000
+ #elif defined(__ia64__)
+ #define SAREA_MAX 0x10000 /* 64kB */
+ #else
diff --git a/package/adkinstall/Makefile b/package/adkinstall/Makefile
index e758b1f2f..5210e9d49 100644
--- a/package/adkinstall/Makefile
+++ b/package/adkinstall/Makefile
@@ -5,7 +5,7 @@ include ${TOPDIR}/rules.mk
PKG_NAME:= adkinstall
PKG_VERSION:= 1.0
-PKG_RELEASE:= 4
+PKG_RELEASE:= 5
PKG_DESCR:= installer for cf, mmc, sd or mtd devices
PKG_SECTION:= base
PKG_DEPENDS:= parted sfdisk e2fsprogs
@@ -31,13 +31,10 @@ do-install:
ifeq ($(ADK_LINUX_MIPS_RB532),y)
${INSTALL_BIN} ./src/adkinstall.rb532 \
$(IDIR_ADKINSTALL)/sbin/adkinstall
-else ifeq ($(ADK_LINUX_ARM_FOXBOARD),y)
+else ifeq ($(ADK_LINUX_ARM_FOXG20),y)
${INSTALL_BIN} ./src/adkinstall.foxg20 \
$(IDIR_ADKINSTALL)/sbin/adkinstall
-else ifeq ($(ADK_LINUX_MIPS_RB433),y)
- ${INSTALL_BIN} ./src/adkinstall.rb4xx \
- $(IDIR_ADKINSTALL)/sbin/adkinstall
-else ifeq ($(ADK_LINUX_MIPS_RB411),y)
+else ifeq ($(ADK_LINUX_MIPS_RB4XX),y)
${INSTALL_BIN} ./src/adkinstall.rb4xx \
$(IDIR_ADKINSTALL)/sbin/adkinstall
else
diff --git a/package/adkinstall/src/adkinstall b/package/adkinstall/src/adkinstall
index 7e9a0d1ad..62ab3225a 100644
--- a/package/adkinstall/src/adkinstall
+++ b/package/adkinstall/src/adkinstall
@@ -1,38 +1,140 @@
#!/bin/sh
# installs a rootfs tar archive from OpenADK onto a Compact Flash disk
+check_exit() {
+ if [ $? -ne 0 ];then
+ echo "Installation failed."
+ exit 1
+ fi
+}
+
+rescue=0
+while getopts "r" option
+do
+ case $option in
+ r)
+ rescue=1
+ ;;
+ *)
+ printf "Option not recognized\n"
+ exit 1
+ ;;
+ esac
+done
+shift $(($OPTIND - 1))
+
if [ -z $1 ];then
printf "Please give your root tar archive as parameter\n"
exit 1
fi
-# create empty partition table
+
+if [ $rescue -eq 1 ];then
+ if [ -z $2 ];then
+ printf "Please give your rescue kernel image as second parameter\n"
+ exit 2
+ fi
+ if [ ! -f $2 ];then
+ printf "$2 is not a file, Exiting.\n"
+ exit 1
+ fi
+fi
+
+printf "Creating partitions ...\n"
parted -s /dev/sda mklabel msdos
+check_exit
sleep 2
maxsize=$(env LC_ALL=C parted /dev/sda -s unit cyl print |awk '/^Disk/ { print $3 }'|sed -e 's/cyl//')
rootsize=$(($maxsize-2))
-parted -s /dev/sda unit cyl mkpartfs primary ext2 0 $rootsize
-parted -s /dev/sda unit cyl mkpart primary fat32 $rootsize $maxsize
-parted -s /dev/sda set 1 boot on
-sfdisk --change-id /dev/sda 2 88 >/dev/null 2>&1
-if [ $? -eq 0 ];then
- printf "Successfully created partition ${rootpart}\n"
-else
- printf "Partition creation failed, Exiting.\n"
- exit 1
+start=0
+rootp=1
+cfgfsp=2
+if [ $rescue -eq 1 ];then
+ rootp=3
+ cfgfsp=4
+ start=2
+ parted -s /dev/sda unit cyl mkpartfs primary ext2 0 1
+ parted -s /dev/sda unit cyl mkpartfs primary ext2 1 2
+ check_exit
fi
-mount -t ext2 /dev/sda1 /mnt
-printf "Extracting install archive\n"
+parted -s /dev/sda unit cyl mkpartfs primary ext2 $start $rootsize
+check_exit
+parted -s /dev/sda unit cyl mkpart primary fat32 $rootsize $maxsize
+check_exit
+parted -s /dev/sda set $rootp boot on
+check_exit
+sfdisk --change-id /dev/sda $cfgfsp 88 >/dev/null 2>&1
+check_exit
+# settle down
+sleep 2
+mount -t ext2 /dev/sda$rootp /mnt
+check_exit
+printf "Extracting install archive ...\n"
tar -C /mnt -xzpf $1
+check_exit
chmod 1777 /mnt/tmp
chmod 4755 /mnt/bin/busybox
+if [ $rescue -eq 1 ];then
+ mkdir /mnt/boot/grub
+fi
speed=$(awk -F \, '/console=ttyS0/ { print $2 }' /proc/cmdline|sed -e "s/ .*$//")
-printf "Install bootloader\n"
+if [ $rescue -eq 1 ];then
+ umount /mnt
+ mount /dev/sda2 /mnt
+ cp $2 /mnt/rescue
+fi
+printf "Installing bootloader ...\n"
mkdir -p /mnt/boot/grub
-mount -o bind /dev /mnt/dev
-chroot /mnt mount -t proc /proc /proc
-chroot /mnt mount -t sysfs /sys /sys
+if [ $rescue -eq 1 ];then
+mount /dev/sda1 /mnt/boot/grub
+cat << EOF > /mnt/boot/grub/grub.cfg
+set timeout=1
+serial --unit=0 --speed=$speed
+terminal_output serial
+terminal_input serial
+
+if [ -s \$prefix/grubenv ]; then
+ load_env
+fi
+
+set default="\${saved_entry}"
+
+if [ \${prev_saved_entry} ]; then
+ set saved_entry=\${prev_saved_entry}
+ save_env saved_entry
+ set prev_saved_entry=
+ save_env prev_saved_entry
+ set boot_once=true
+fi
+
+function savedefault {
+ if [ -z \${boot_once} ]; then
+ saved_entry=\${chosen}
+ save_env saved_entry
+ fi
+}
+
+function recordfail {
+ set recordfail=1
+ if [ -n \${have_grubenv} ]; then if [ -z \${boot_once} ]; then save_env recordfail; fi; fi
+}
+
+menuentry "GNU/Linux (OpenADK)" {
+ recordfail
+ insmod ext2
+ set root=(hd0,3)
+ linux /boot/vmlinuz-adk root=/dev/sda$rootp ro init=/init panic=10
+}
+
+menuentry "GNU/Linux (OpenADK) Rescue Mode" {
+ recordfail
+ insmod ext2
+ set root=(hd0,2)
+ linux /rescue ro init=/init panic=10
+}
+EOF
+else
cat << EOF > /mnt/boot/grub/grub.cfg
set default=0
set timeout=1
@@ -43,19 +145,16 @@ terminal_input serial
menuentry "GNU/Linux (OpenADK)" {
insmod ext2
set root=(hd0,1)
- linux /boot/vmlinuz-adk root=/dev/sda1 ro init=/init panic=10
+ linux /boot/vmlinuz-adk root=/dev/sda$rootp ro init=/init panic=10
}
EOF
-chroot /mnt grub-install /dev/sda >/dev/null 2>&1
-umount /mnt/proc
-umount /mnt/sys
-umount /mnt/dev
-
-printf "Creating device nodes\n"
-mknod -m 666 /mnt/dev/null c 1 3
-mknod -m 622 /mnt/dev/console c 5 1
-mknod -m 666 /mnt/dev/tty c 5 0
-
+fi
+grub-install --root-directory=/mnt /dev/sda
+check_exit
+if [ $rescue -eq 1 ];then
+ grub-set-default --root-directory=/mnt 0
+ umount /mnt/boot/grub
+fi
umount /mnt
-printf "Successfully installed.\n"
+printf "Successfully installed. You can reboot now.\n"
exit 0
diff --git a/package/aircrack-ng/Makefile b/package/aircrack-ng/Makefile
index ff8e99cff..918bcd22b 100644
--- a/package/aircrack-ng/Makefile
+++ b/package/aircrack-ng/Makefile
@@ -4,9 +4,9 @@
include $(TOPDIR)/rules.mk
PKG_NAME:= aircrack-ng
-PKG_VERSION:= 1.0
+PKG_VERSION:= 1.1
PKG_RELEASE:= 1
-PKG_MD5SUM:= dafbfaf944ca9d523fde4bae86f0c067
+PKG_MD5SUM:= f7a24ed8fad122c4187d06bfd6f998b4
PKG_DESCR:= set of tools for auditing wireless networks
PKG_SECTION:= net
PKG_DEPENDS:= libpthread libopenssl libpcap
diff --git a/package/alix-switch/Makefile b/package/alix-switch/Makefile
new file mode 100644
index 000000000..442d2d3af
--- /dev/null
+++ b/package/alix-switch/Makefile
@@ -0,0 +1,35 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include ${TOPDIR}/rules.mk
+
+PKG_NAME:= alix-switch
+PKG_VERSION:= 1.0
+PKG_RELEASE:= 1
+PKG_DESCR:= simple daemon listening on button events
+PKG_SECTION:= base
+
+PKG_TARGET_DEPENDS:= alix
+
+NO_DISTFILES:= 1
+
+include ${TOPDIR}/mk/package.mk
+
+$(eval $(call PKG_template,ALIX_SWITCH,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+PKGDFLT_ALIX_SWITCH= y
+
+CONFIG_STYLE:= manual
+BUILD_STYLE:= manual
+INSTALL_STYLE:= manual
+
+do-build:
+ ${TARGET_CC} -Wall ${TCPPFLAGS} ${TCFLAGS} \
+ -o ${WRKBUILD}/alix-switchd ${WRKBUILD}/alix-switchd.c
+
+do-install:
+ ${INSTALL_DIR} ${IDIR_ALIX_SWITCH}/usr/sbin ${IDIR_ALIX_SWITCH}/etc
+ ${INSTALL_BIN} ${WRKBUILD}/alix-switchd ${IDIR_ALIX_SWITCH}/usr/sbin
+ ${INSTALL_BIN} ./files/alix-switch ${IDIR_ALIX_SWITCH}/etc
+
+include ${TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/alix-switch/files/alix-switch b/package/alix-switch/files/alix-switch
new file mode 100644
index 000000000..b61a6a48f
--- /dev/null
+++ b/package/alix-switch/files/alix-switch
@@ -0,0 +1,19 @@
+#!/bin/sh
+# launched by alix-switchd in case of button event
+# f.e. boot rescue system once
+case "$1" in
+ on)
+ echo "alix-switch: on"
+ mount /dev/sda1 /boot/grub
+ grub-reboot 1
+ umount /boot/grub
+ reboot
+ ;;
+ off)
+ echo "alix-switch: off"
+ ;;
+ *)
+ echo "Usage: $0 {on|off}"
+ ;;
+esac
+exit $?
diff --git a/package/alix-switch/files/alix-switch.init b/package/alix-switch/files/alix-switch.init
new file mode 100644
index 000000000..c783a1be5
--- /dev/null
+++ b/package/alix-switch/files/alix-switch.init
@@ -0,0 +1,27 @@
+#!/bin/sh
+#PKG alix-switch
+#INIT 10
+
+. /etc/rc.conf
+
+case $1 in
+autostop) ;;
+autostart)
+ test x"${alix_switch:-NO}" = x"NO" && exit 0
+ exec sh $0 start
+ ;;
+start)
+ alix-switchd -d
+ ;;
+stop)
+ pkill alix-switchd
+ ;;
+restart)
+ sh $0 stop
+ sh $0 start
+ ;;
+*)
+ echo "usage: $0 (start|stop|restart)"
+ exit 1
+esac
+exit $?
diff --git a/package/alix-switch/files/alix-switch.postinst b/package/alix-switch/files/alix-switch.postinst
new file mode 100644
index 000000000..28146bf44
--- /dev/null
+++ b/package/alix-switch/files/alix-switch.postinst
@@ -0,0 +1,3 @@
+#!/bin/sh
+. $IPKG_INSTROOT/etc/functions.sh
+add_rcconf alix_switch alix_switch YES
diff --git a/package/alix-switch/src/alix-switchd.c b/package/alix-switch/src/alix-switchd.c
new file mode 100644
index 000000000..78b52f19c
--- /dev/null
+++ b/package/alix-switch/src/alix-switchd.c
@@ -0,0 +1,108 @@
+/*
+* alix-switchd.c
+*
+* This program is free software; you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published by
+* the Free Software Foundation; either version 2 of the License, or
+* (at your option) any later version.
+*
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*/
+
+#include <signal.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <syslog.h>
+#include <time.h>
+#include <unistd.h>
+#include <sys/io.h>
+#include <sys/stat.h>
+#include <sys/types.h>
+
+#define SCRIPT "/etc/alix-switch"
+#define GPIOBASE 0x6100
+
+typedef void (*sighandler_t)(int);
+
+static sighandler_t handle_signal (int sig_nr, sighandler_t signalhandler) {
+
+ struct sigaction neu_sig, alt_sig;
+
+ neu_sig.sa_handler = signalhandler;
+ sigemptyset(&neu_sig.sa_mask);
+ neu_sig.sa_flags = SA_RESTART;
+ if (sigaction (sig_nr, &neu_sig, &alt_sig) < 0)
+ return SIG_ERR;
+
+ return alt_sig.sa_handler;
+}
+
+static void start_daemon (void) {
+
+ int i;
+ pid_t pid, sid;
+
+ handle_signal(SIGHUP, SIG_IGN);
+ if ((pid = fork ()) != 0)
+ exit(EXIT_FAILURE);
+ umask(0);
+ if ((sid = setsid()) < 0)
+ exit(EXIT_FAILURE);
+ chdir("/");
+ for (i = sysconf(_SC_OPEN_MAX); i > 0; i--)
+ close(i);
+}
+
+
+int main(int argc, char *argv[]) {
+
+ int i;
+ unsigned long bPort = 0;
+ struct timespec sleep;
+ int bDaemon = 0, bSwitch = 0, bState = 0;
+
+ for(i = 1; i < argc; i++) {
+ if (!strcasecmp(argv[i], "-d") || !strcasecmp(argv[i], "--daemon")) {
+ bDaemon = 1;
+ } else {
+ printf( "\nusage: %s [-d | --daemon]\n", argv[0]);
+ exit(EXIT_FAILURE);
+ }
+ }
+
+ if (iopl(3)) {
+ fprintf( stderr, "Could not set I/O permissions to level 3\n");
+ exit(EXIT_FAILURE);
+ }
+
+ if (bDaemon)
+ start_daemon();
+
+ sleep.tv_sec = 0;
+ sleep.tv_nsec = 50000000;
+
+ while(1) {
+ bPort = inl(GPIOBASE + 0xB0);
+ if ((bPort & 0x100) == 0)
+ bState = 1;
+ else
+ bState = 0;
+
+ if (bState && !bSwitch)
+ system(SCRIPT " on");
+
+ bSwitch = bState;
+ nanosleep(&sleep, NULL);
+ }
+
+ if (iopl(0)) {
+ fprintf(stderr, "Could not set I/O permissions to level 0");
+ exit(EXIT_FAILURE);
+ }
+
+ return EXIT_SUCCESS;
+}
diff --git a/package/alsa-utils/Makefile b/package/alsa-utils/Makefile
index 63ce6faf5..2a4496913 100644
--- a/package/alsa-utils/Makefile
+++ b/package/alsa-utils/Makefile
@@ -11,20 +11,35 @@ PKG_DESCR:= ALSA mixer utility
PKG_SECTION:= utils
PKG_DEPENDS:= alsa-lib libpthread
PKG_BUILDDEP+= alsa-lib
+ifeq (${ADK_PACKAGE_ALSA_UTILS_WITH_ALSAMIXER},y)
+PKG_BUILDDEP+= libncurses
+endif
PKG_URL:= http://www.alsa-project.org
PKG_SITES:= ftp://ftp.task.gda.pl/pub/linux/misc/alsa/utils/ \
ftp://ftp.alsa-project.org/pub/utils/
+PKG_FLAVOURS:= WITH_ALSAMIXER
+PKGFS_WITH_ALSAMIXER:= libncurses
+PKGFD_WITH_ALSAMIXER:= include alsamixer ncurses applet
+
DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
include ${TOPDIR}/mk/package.mk
$(eval $(call PKG_template,ALSA_UTILS,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+ifeq (${ADK_PACKAGE_ALSA_UTILS_WITH_ALSAMIXER},y)
+CONFIGURE_ARGS+= --enable-alsamixer
+else
CONFIGURE_ARGS+= --disable-alsamixer
+endif
post-install:
- ${INSTALL_DIR} ${IDIR_ALSA_UTILS}/usr/bin
+ ${INSTALL_DIR} ${IDIR_ALSA_UTILS}/usr/bin/
${CP} ${WRKINST}/usr/bin/amixer ${IDIR_ALSA_UTILS}/usr/bin/
+ifeq (${ADK_PACKAGE_ALSA_UTILS_WITH_ALSAMIXER},y)
+ ${INSTALL_BIN} ${WRKINST}/usr/bin/alsamixer \
+ ${IDIR_ALSA_UTILS}/usr/bin/
+endif
include ${TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/apr-util/Makefile b/package/apr-util/Makefile
index 307853fab..2c0afd8bf 100644
--- a/package/apr-util/Makefile
+++ b/package/apr-util/Makefile
@@ -4,9 +4,9 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= apr-util
-PKG_VERSION:= 0.9.15
+PKG_VERSION:= 1.3.9
PKG_RELEASE:= 1
-PKG_MD5SUM:= dc772ae295f49ddb8ee8e69a9716c53b
+PKG_MD5SUM:= cc2ec0ba4f01d88375f1170f762518fa
PKG_DESCR:= Apache Portable Runtime utility library
PKG_SECTION:= libs
PKG_DEPENDS:= libexpat apr
@@ -21,11 +21,11 @@ $(eval $(call PKG_template,APR_UTIL,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${
CONFIGURE_ARGS+= --without-berkeley-db
CONFIGURE_ARGS+= --with-apr=${STAGING_DIR}/usr
CONFIGURE_ARGS+= --with-expat=${STAGING_DIR}/usr
-XAKE_FLAGS+= apr_builddir=${STAGING_DIR}/usr/share/build \
- apr_builders=${STAGING_DIR}/usr/share/build
+XAKE_FLAGS+= apr_builddir=${STAGING_DIR}/usr/share/build-1 \
+ apr_builders=${STAGING_DIR}/usr/share/build-1
post-install:
${INSTALL_DIR} ${IDIR_APR_UTIL}/usr/lib
- ${CP} ${WRKINST}/usr/lib/libaprutil-0.so* ${IDIR_APR_UTIL}/usr/lib/
+ ${CP} ${WRKINST}/usr/lib/libaprutil-1.so* ${IDIR_APR_UTIL}/usr/lib/
include ${TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/apr-util/patches/patch-uri_Makefile_in b/package/apr-util/patches/patch-uri_Makefile_in
deleted file mode 100644
index 670623ad0..000000000
--- a/package/apr-util/patches/patch-uri_Makefile_in
+++ /dev/null
@@ -1,19 +0,0 @@
-$Id$
---- apr-util-0.9.13.orig/uri/Makefile.in 2004-11-25 00:45:40.000000000 +0100
-+++ apr-util-0.9.13/uri/Makefile.in 2007-02-07 12:55:37.000000000 +0100
-@@ -3,7 +3,7 @@ VPATH = @srcdir@
- INCLUDES = @APRUTIL_PRIV_INCLUDES@ @APR_INCLUDES@ @APRUTIL_INCLUDES@ -I.
-
- TARGETS = uri_delims.h apr_uri.lo
--CLEAN_TARGETS = gen_uri_delims uri_delims.h
-+CLEAN_TARGETS = gen_uri_delims
-
- # bring in rules.mk for standard functionality
- @INCLUDE_RULES@
-@@ -13,6 +13,3 @@ gen_uri_delims: $(gen_uri_delims_OBJECTS
- $(LINK) $(EXTRA_LDFLAGS) $(gen_uri_delims_OBJECTS) $(EXTRA_LIBS)
-
- apr_uri.lo: uri_delims.h apr_uri.c
--
--uri_delims.h: gen_uri_delims
-- ./gen_uri_delims > uri_delims.h
diff --git a/package/apr-util/patches/uri_delim.patch b/package/apr-util/patches/uri_delim.patch
deleted file mode 100644
index 04ca4e1d8..000000000
--- a/package/apr-util/patches/uri_delim.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff -Nur apr-util-0.9.13/uri/uri_delims.h build_mipsel/w-apr-util-0.9.13-1/apr-util-0.9.13/uri/uri_delims.h
---- apr-util-0.9.13/uri/uri_delims.h 1970-01-01 01:00:00.000000000 +0100
-+++ build_mipsel/w-apr-util-0.9.13-1/apr-util-0.9.13/uri/uri_delims.h 2007-02-07 13:06:56.000000000 +0100
-@@ -0,0 +1,16 @@
-+/* this file is automatically generated by gen_uri_delims, do not edit */
-+static const unsigned char uri_delims[256] = {
-+ T_NUL,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,T_HASH,0,0,0,0,
-+ 0,0,0,0,0,0,0,T_SLASH,0,0,0,0,0,0,0,0,0,0,T_COLON,0,
-+ 0,0,0,T_QUESTION,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
-+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
-+};
-
diff --git a/package/apr/Makefile b/package/apr/Makefile
index 486a96842..4f65c5eef 100644
--- a/package/apr/Makefile
+++ b/package/apr/Makefile
@@ -4,22 +4,15 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= apr
-PKG_VERSION:= 0.9.17
+PKG_VERSION:= 1.4.2
PKG_RELEASE:= 1
-PKG_MD5SUM:= ca1e22d98081a03a33c2a0b8684eb192
+PKG_MD5SUM:= fc80cb54f158c2674f9eeb47a1f672cd
PKG_DESCR:= Apache Portable Runtime library
PKG_SECTION:= libs
-ifeq ($(ADK_PACKAGE_APR_THREADING),y)
PKG_DEPENDS:= libpthread
-PKG_BUILDDEP+= libpthread
-endif
PKG_URL:= http://apr.apache.org
PKG_SITES:= http://gd.tuwien.ac.at/infosys/servers/http/apache/dist/${PKG_NAME}/
-PKG_FLAVOURS= THREADING
-PKGFD_FULL= Enable threading support
-
-
include ${TOPDIR}/mk/package.mk
$(eval $(call PKG_template,APR,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
@@ -31,23 +24,19 @@ CONFIGURE_ENV+= ac_cv_sizeof_ssize_t=4
CONFIGURE_ENV+= ac_cv_file__dev_zero=yes
CONFIGURE_ENV+= apr_cv_process_shared_works=no
CONFIGURE_ENV+= ac_cv_lib_nsl_gethostbyname=no
+CONFIGURE_ENV+= apr_cv_tcp_nodelay_with_cork=no
CONFIGURE_ARGS+= --with-devrandom=/dev/urandom
-
-ifeq (${ADK_PACKAGE_APR_THREADING},y)
CONFIGURE_ARGS+= --enable-threads
-else
-CONFIGURE_ARGS+= --disable-threads
-endif
post-install:
${INSTALL_DIR} ${IDIR_APR}/usr/lib
- ${CP} ${WRKINST}/usr/lib/libapr-0.so* ${IDIR_APR}/usr/lib/
- ${INSTALL_DIR} ${STAGING_DIR}/usr/share/build
- ${CP} ${WRKINST}/usr/share/build/* ${STAGING_DIR}/usr/share/build/
+ ${CP} ${WRKINST}/usr/lib/libapr-1.so* ${IDIR_APR}/usr/lib/
+ ${INSTALL_DIR} ${STAGING_DIR}/usr/share/build-1
+ ${CP} ${WRKINST}/usr/share/build-1/* ${STAGING_DIR}/usr/share/build-1/
# we need to patch paths to get apr-util compiling
$(SED) "s,\(^installbuilddir=\"\)\(.*\),\1${STAGING_DIR}\2," \
- ${WRKINST}/usr/bin/apr-config
+ ${WRKINST}/usr/bin/apr-1-config
$(SED) "s,\(^datadir=\"\)\(.*\),\1${STAGING_DIR}\2," \
- ${WRKINST}/usr/bin/apr-config
+ ${WRKINST}/usr/bin/apr-1-config
include ${TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/apr/patches/patch-include_apr_want_h b/package/apr/patches/patch-include_apr_want_h
new file mode 100644
index 000000000..5f1a11c5e
--- /dev/null
+++ b/package/apr/patches/patch-include_apr_want_h
@@ -0,0 +1,16 @@
+--- apr-1.4.2.orig/include/apr_want.h 2010-01-06 12:36:50.000000000 +0100
++++ apr-1.4.2/include/apr_want.h 2010-05-29 17:56:14.201613974 +0200
+@@ -89,11 +89,13 @@
+
+ #else
+
++/*
+ struct iovec
+ {
+ void *iov_base;
+ size_t iov_len;
+ };
++*/
+
+ #endif
+
diff --git a/package/asterisk/Makefile b/package/asterisk/Makefile
index 425683f24..b56898d2a 100644
--- a/package/asterisk/Makefile
+++ b/package/asterisk/Makefile
@@ -4,9 +4,9 @@
include $(TOPDIR)/rules.mk
PKG_NAME:= asterisk
-PKG_VERSION:= 1.6.2.5
+PKG_VERSION:= 1.6.2.7
PKG_RELEASE:= 1
-PKG_MD5SUM:= 9d1f7bcf6833605ced4b2740d14bd576
+PKG_MD5SUM:= 861f57ba43bfe05dc645e0679a260e41
PKG_DESCR:= Open Source PBX
PKG_SECTION:= net
PKG_MULTI:= 1
@@ -174,6 +174,7 @@ do-install: ${SUB_INSTALLS-m} ${SUB_INSTALLS-y}
rm -f gtalk.conf ; \
rm -f skinny.conf ; \
rm -f dundi.conf ; \
+ $(SED) '#^astdatadir = /var/#/usr/#' asterisk.conf ; \
)
${INSTALL_DATA} ./files/modules.conf $(IDIR_ASTERISK)/etc/asterisk/
$(SED) 's|/var/lib/asterisk|/usr/lib/asterisk|g' \
@@ -191,8 +192,11 @@ asterisk-sounds-install:
${INSTALL_DIR} $(IDIR_ASTERISK_SOUNDS)/usr/lib/asterisk/sounds
$(CP) $(WRKBUILD)/sounds/* \
$(IDIR_ASTERISK_SOUNDS)/usr/lib/asterisk/sounds/
- rm -f $(IDIR_ASTERISK_SOUNDS)/usr/lib/asterisk/sounds/*.mp3
- rm -f $(IDIR_ASTERISK_SOUNDS)/usr/lib/asterisk/sounds/vm-*
+ (cd $(IDIR_ASTERISK_SOUNDS)/usr/lib/asterisk/sounds; \
+ rm -f *.mp3 vm-*; \
+ rm -f CHANGES* CREDITS* LICENSE* *.txt ; \
+ rm -f *.tar.gz Makefile ; \
+ )
asterisk-voicemail-install:
${INSTALL_DIR} $(IDIR_ASTERISK_VOICEMAIL)/etc/asterisk
diff --git a/package/asterisk/patches/patch-Makefile b/package/asterisk/patches/patch-Makefile
deleted file mode 100644
index 1ba02c900..000000000
--- a/package/asterisk/patches/patch-Makefile
+++ /dev/null
@@ -1,13 +0,0 @@
---- asterisk-1.6.2.1.orig/Makefile 2009-12-10 22:04:20.000000000 +0100
-+++ asterisk-1.6.2.1/Makefile 2010-02-05 21:05:41.313084404 +0100
-@@ -366,8 +366,8 @@ makeopts: configure
- @exit 1
-
- menuselect.makeopts: menuselect/menuselect menuselect-tree makeopts build_tools/menuselect-deps $(GLOBAL_MAKEOPTS) $(USER_MAKEOPTS)
-- menuselect/menuselect --check-deps $@
-- menuselect/menuselect --check-deps $@ $(GLOBAL_MAKEOPTS) $(USER_MAKEOPTS)
-+ ./menuselect/menuselect --check-deps $@
-+ ./menuselect/menuselect --check-deps $@ $(GLOBAL_MAKEOPTS) $(USER_MAKEOPTS)
-
- $(MOD_SUBDIRS_EMBED_LDSCRIPT):
- +@echo "EMBED_LDSCRIPTS+="`$(SILENTMAKE) -C $(@:-embed-ldscript=) SUBDIR=$(@:-embed-ldscript=) __embed_ldscript` >> makeopts.embed_rules
diff --git a/package/asterisk/patches/patch-apps_app_followme_c b/package/asterisk/patches/patch-apps_app_followme_c
deleted file mode 100644
index 8ecfa9226..000000000
--- a/package/asterisk/patches/patch-apps_app_followme_c
+++ /dev/null
@@ -1,26 +0,0 @@
---- asterisk-1.6.2.1.orig/apps/app_followme.c 2009-09-15 18:06:24.000000000 +0200
-+++ asterisk-1.6.2.1/apps/app_followme.c 2010-02-14 10:33:51.540422962 +0100
-@@ -172,7 +172,9 @@ static int ynlongest = 0;
-
- static const char *featuredigittostr;
- static int featuredigittimeout = 5000; /*!< Feature Digit Timeout */
--static const char *defaultmoh = "default"; /*!< Default Music-On-Hold Class */
-+static const char *defaultmoh; /*!< Default Music-On-Hold Class */
-+
-+
-
- static char takecall[20] = "1", nextindp[20] = "2";
- static char callfromprompt[PATH_MAX] = "followme/call-from";
-@@ -236,6 +238,7 @@ static struct call_followme *alloc_profi
-
- static void init_profile(struct call_followme *f)
- {
-+ defaultmoh = "default";
- f->active = 1;
- ast_copy_string(f->moh, defaultmoh, sizeof(f->moh));
- }
-@@ -1195,3 +1198,4 @@ AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MO
- .unload = unload_module,
- .reload = reload,
- );
-+
diff --git a/package/b43-firmware/Makefile b/package/b43-firmware/Makefile
new file mode 100644
index 000000000..efd88cc92
--- /dev/null
+++ b/package/b43-firmware/Makefile
@@ -0,0 +1,26 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include ${TOPDIR}/rules.mk
+
+PKG_NAME:= b43-firmware
+PKG_VERSION:= 1.0
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 37c8d2c029a7e5b82f4433a6fa1e2ee5
+PKG_DESCR:= firmware for b43 wireless cards
+PKG_SECTION:= sys
+PKG_SITES:= http://openadk.org/distfiles/
+
+include ${TOPDIR}/mk/package.mk
+
+$(eval $(call PKG_template,B43_FIRMWARE,b43-firmware,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+CONFIG_STYLE:= manual
+BUILD_STYLE:= manual
+INSTALL_STYLE:= manual
+
+do-install:
+ ${INSTALL_DIR} ${IDIR_B43_FIRMWARE}/lib/firmware
+ ${CP} ${WRKBUILD}/* ${IDIR_B43_FIRMWARE}/lib/firmware/
+
+include ${TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/base-files/Makefile b/package/base-files/Makefile
index 3f63df3e6..560158226 100644
--- a/package/base-files/Makefile
+++ b/package/base-files/Makefile
@@ -6,9 +6,9 @@ include $(TOPDIR)/mk/rootfs.mk
PKG_NAME:= base-files
PKG_VERSION:= 1.0
-PKG_RELEASE:= 10
-PKG_DESCR:= basic filesystem structure and scripts
+PKG_RELEASE:= 17
PKG_SECTION:= base
+PKG_DESCR:= basic filesystem structure and scripts
WRKDIST= ${WRKDIR}/base-files
NO_DISTFILES:= 1
@@ -31,12 +31,10 @@ do-install:
ifeq (${ADK_TARGET_ROOTFS_NFSROOT},y)
@-rm $(IDIR_BASE_FILES)/etc/network/interfaces
endif
-ifeq (${ADK_TARGET_PACKAGE_IPKG},y)
$(SED) 's,@TARGET@,$(ADK_TARGET),g' $(IDIR_BASE_FILES)/etc/ipkg.conf
- $(SED) 's,@VERSION@,$(ADK_VERSION),g' $(IDIR_BASE_FILES)/etc/ipkg.conf
-else
- @-rm $(IDIR_BASE_FILES)/etc/ipkg.conf
-endif
+ $(SED) 's,@HOST@,$(ADK_HOST),g' $(IDIR_BASE_FILES)/etc/ipkg.conf
+ $(SED) 's,@LIBC@,$(ADK_LIBC),g' $(IDIR_BASE_FILES)/etc/ipkg.conf
+ $(SED) 's,@VENDOR@,$(ADK_VENDOR),g' $(IDIR_BASE_FILES)/etc/ipkg.conf
echo /bin/sh >${IDIR_BASE_FILES}/etc/shells
echo /bin/ash >>${IDIR_BASE_FILES}/etc/shells
ifneq (${ADK_PACKAGE_BASH},)
@@ -64,10 +62,14 @@ endif
mkdir -p $(IDIR_BASE_FILES)/usr/bin
chmod 755 $(IDIR_BASE_FILES)/lib/mdev/init
chmod 600 $(IDIR_BASE_FILES)/etc/shadow
- ln -sf ../tmp/resolv.conf $(IDIR_BASE_FILES)/etc/resolv.conf
ln -sf ../proc/mounts $(IDIR_BASE_FILES)/etc/mtab
rm -rf $(IDIR_BASE_FILES)/var
ln -sf tmp $(IDIR_BASE_FILES)/var
+ test -z $(ADK_PASSWORD) || \
+ $(SED) 's,\*NP\*,'"$$(${STAGING_TOOLS}/bin/mkcrypt \
+ ${ADK_PASSWORD}),g" $(IDIR_BASE_FILES)/etc/shadow
+ git log -1|head -1|sed -e 's#commit ##' \
+ > $(IDIR_BASE_FILES)/etc/adkversion
ifneq (${ADK_PACKAGE_CONFIG_IN_ETC},)
gzip -9c ${TOPDIR}/.config >$(IDIR_BASE_FILES)/etc/adkconfig.gz
endif
diff --git a/package/base-files/src/etc/ipkg.conf b/package/base-files/src/etc/ipkg.conf
index 6c9242620..edb050116 100644
--- a/package/base-files/src/etc/ipkg.conf
+++ b/package/base-files/src/etc/ipkg.conf
@@ -1,3 +1,3 @@
-src openadk http://www.openadk.org/packages/@TARGET@
+src @VENDOR@ http://@HOST@/@TARGET@_@LIBC@/packages
dest root /
dest ram /tmp
diff --git a/package/base-files/src/etc/network/if-pre-up.d/04-wireless b/package/base-files/src/etc/network/if-pre-up.d/04-wireless
index 1898de4d4..1ccc4d823 100755
--- a/package/base-files/src/etc/network/if-pre-up.d/04-wireless
+++ b/package/base-files/src/etc/network/if-pre-up.d/04-wireless
@@ -74,13 +74,23 @@ case "$IF_WIRELESS_MODE" in
}
;;
sta)
- [ -x /usr/sbin/iw ] || {
- logger -t wireless "No iw utility found"
- exit 1
- }
ip link set up dev ${IFACE}
- iw dev ${IFACE} set channel $IF_WIRELESS_CHANNEL
- iw dev ${IFACE} connect $IF_WIRELESS_SSID
+ [ $IF_WIRELESS_EXTENSION -eq 1 ] && {
+ [ -x /usr/sbin/iwconfig ] || {
+ logger -t wireless "No wireless-tools found"
+ exit 1
+ }
+ driver=wext
+ iwconfig ${IFACE} essid $IF_WIRELESS_SSID
+ } || {
+ [ -x /usr/sbin/iw ] || {
+ logger -t wireless "No iw utility found"
+ exit 1
+ }
+ driver=nl80211
+ iw dev ${IFACE} set channel $IF_WIRELESS_CHANNEL
+ iw dev ${IFACE} connect $IF_WIRELESS_SSID
+ }
[ $wpa2 -eq 1 ] && {
[ -x /usr/sbin/wpa_supplicant ] || {
logger -t wireless "No wpa_supplicant found"
@@ -93,7 +103,7 @@ case "$IF_WIRELESS_MODE" in
echo " psk=\"$IF_WIRELESS_PASSPHRASE\"" >> /tmp/wpa_supplicant.conf
echo " priority=5" >> /tmp/wpa_supplicant.conf
echo "}" >> /tmp/wpa_supplicant.conf
- wpa_supplicant -B -Dnl80211 -i${IFACE} -c/tmp/wpa_supplicant.conf
+ wpa_supplicant -B -D${driver} -i${IFACE} -c/tmp/wpa_supplicant.conf
}
;;
*)
diff --git a/package/base-files/src/etc/profile b/package/base-files/src/etc/profile
index 1b8f4a6a6..b849feb49 100644
--- a/package/base-files/src/etc/profile
+++ b/package/base-files/src/etc/profile
@@ -4,7 +4,6 @@ if [[ $(id -u) = 0 ]]; then
export PS1='# '
else
export PS1='$ '
- export HOME=/tmp
fi
cat /etc/banner 2>&-
[ -x /usr/bin/vim ] && alias vi=vim || alias vim=vi
diff --git a/package/base-files/src/etc/shadow b/package/base-files/src/etc/shadow
index 3683d71ea..374e358bb 100644
--- a/package/base-files/src/etc/shadow
+++ b/package/base-files/src/etc/shadow
@@ -1,3 +1,2 @@
-root:$1$8sJkb6fV$46vEIu5ntmbUuljmr55zY/:14191:0:::::
-admin:$1$8sJkb6fV$46vEIu5ntmbUuljmr55zY/:14191:0:::::
+root:*NP*:14191:0:::::
nobody:*:9797:0:::::
diff --git a/package/base-files/src/init b/package/base-files/src/init
index 618547693..173e91b0b 100755
--- a/package/base-files/src/init
+++ b/package/base-files/src/init
@@ -4,7 +4,8 @@ export PATH=/bin:/sbin:/usr/bin:/usr/sbin
mount -nt proc proc /proc
mount -o nosuid,nodev,noexec -t sysfs sysfs /sys
[ ! -f /etc/notmpfs ] && {
- size=$(awk '/MemTotal:/ { if ($2 > 16000) { print 4096 } else { print 2048 }}' /proc/meminfo)
+ size=2048
+ size=$(cat /etc/tmpfs 2>/dev/null)
mount none /tmp -t tmpfs -o size=${size}k
mount none /tmp -t tmpfs -o remount,nosuid,nodev,mode=1777
}
diff --git a/package/base-files/src/sbin/adkupdate b/package/base-files/src/sbin/adkupdate
index dd8d3ecec..3de759c74 100755
--- a/package/base-files/src/sbin/adkupdate
+++ b/package/base-files/src/sbin/adkupdate
@@ -29,9 +29,12 @@ check_exit() {
prepare() {
cd /
if [ -x /sbin/cfgfs ];then
+ pkill crond
umount -f /etc
+ check_exit
fi
mount -o remount,rw /
+ check_exit
if [ "$system" == "RB532" ];then
mount -t yaffs2 /dev/mtdblock0 /boot
elif [ "$system" == "AR7130" ];then
diff --git a/package/busybox/Makefile b/package/busybox/Makefile
index 4881762a1..367bb2cae 100644
--- a/package/busybox/Makefile
+++ b/package/busybox/Makefile
@@ -5,11 +5,11 @@ include $(TOPDIR)/rules.mk
PKG_NAME:= busybox
PKG_VERSION:= 1.16.1
-PKG_RELEASE:= 1
+PKG_RELEASE:= 4
PKG_MD5SUM:= 319486ec65078d07fde26eb620fecde7
PKG_DESCR:= Core utilities for embedded Linux systems
PKG_SECTION:= base
-PKG_URL:= http://www.busybox.net
+PKG_URL:= http://www.busybox.net/
PKG_SITES:= http://www.busybox.net/downloads/
DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
@@ -30,6 +30,12 @@ CONFIG_STYLE:= manual
BUILD_STYLE:= manual
INSTALL_STYLE:= manual
+bbrebuild:
+ @if [ -f ${TOPDIR}/.bbrebuild ];then \
+ rm ${WRKBUILD}/.build_done; \
+ rm ${TOPDIR}/.bbrebuild; \
+ fi
+
${TOPDIR}/.busyboxcfg: ${TOPDIR}/.config
grep BUSYBOX_ $(TOPDIR)/.config|sed -e 's/BUSYBOX_/CONFIG_/' > \
${TOPDIR}/.busyboxcfg
@@ -38,7 +44,7 @@ ${WRKBUILD}/.config: ${TOPDIR}/.busyboxcfg
cp $(TOPDIR)/.busyboxcfg ${WRKBUILD}/.config
$(SED) 's;@IDIR@;${WRKINST};' ${WRKBUILD}/.config
-do-configure: $(TOPDIR)/.busyboxcfg ${WRKBUILD}/.config
+do-configure: ${WRKBUILD}/.config
ifeq ($(ADK_NATIVE),y)
yes '' | \
$(MAKE) V=1 \
@@ -51,7 +57,7 @@ else
ARCH="$(ARCH)" HOSTCC="$(HOSTCC)" -C $(WRKBUILD) oldconfig $(MAKE_TRACE)
endif
-do-build: $(TOPDIR)/.busyboxcfg ${WRKBUILD}/.config
+do-build: do-configure
ifeq ($(ADK_NATIVE),y)
$(MAKE) V=1 \
IPKG_ARCH="$(CPU_ARCH)" ARCH="$(ARCH)" HOSTCC="$(HOSTCC)" -C $(WRKBUILD) busybox
@@ -60,7 +66,7 @@ else
IPKG_ARCH="$(CPU_ARCH)" ARCH="$(ARCH)" HOSTCC="$(HOSTCC)" -C $(WRKBUILD) busybox
endif
-do-install: $(TOPDIR)/.busyboxcfg ${WRKBUILD}/.config ${SUB_INSTALLS-m} ${SUB_INSTALLS-y}
+do-install: ${WRKBUILD}/.config ${SUB_INSTALLS-m} ${SUB_INSTALLS-y}
ifeq ($(ADK_NATIVE),y)
$(MAKE) V=1 \
IPKG_ARCH="$(CPU_ARCH)" ARCH="$(ARCH)" HOSTCC="$(HOSTCC)" -C $(WRKBUILD) install $(MAKE_TRACE)
@@ -78,6 +84,6 @@ udhcpd-install:
${INSTALL_DIR} ${IDIR_UDHCPD}/etc/
${INSTALL_DATA} ./files/udhcpd.conf ${IDIR_UDHCPD}/etc/
-fake: $(TOPDIR)/.busyboxcfg do-configure do-install
+fake: bbrebuild
include ${TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/busybox/config/archival/Config.in b/package/busybox/config/archival/Config.in
index 529496780..de605ee93 100644
--- a/package/busybox/config/archival/Config.in
+++ b/package/busybox/config/archival/Config.in
@@ -32,6 +32,7 @@ config BUSYBOX_FEATURE_SEAMLESS_Z
config BUSYBOX_AR
bool "ar"
default n
+ depends on !ADK_PACKAGE_BINUTILS
help
ar is an archival utility program used to create, modify, and
extract contents from archives. An archive is a single file holding
diff --git a/package/busybox/config/editors/Config.in b/package/busybox/config/editors/Config.in
index 3ebb16a6f..598514d95 100644
--- a/package/busybox/config/editors/Config.in
+++ b/package/busybox/config/editors/Config.in
@@ -76,7 +76,6 @@ config BUSYBOX_SED
config BUSYBOX_VI
bool "vi"
- depends on !ADK_PACKAGE_VIM
default y
help
'vi' is a text editor. More specifically, it is the One True
diff --git a/package/busybox/files/busybox.config b/package/busybox/files/busybox.config
deleted file mode 100644
index 55be09532..000000000
--- a/package/busybox/files/busybox.config
+++ /dev/null
@@ -1,665 +0,0 @@
-# Busybox version: 1.4.2
-#
-CONFIG_HAVE_DOT_CONFIG=y
-
-#
-# Busybox Settings
-#
-
-#
-# General Configuration
-#
-CONFIG_NITPICK=y
-# CONFIG_DESKTOP is not set
-CONFIG_FEATURE_BUFFERS_USE_MALLOC=y
-# CONFIG_FEATURE_BUFFERS_GO_ON_STACK is not set
-# CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set
-CONFIG_SHOW_USAGE=y
-CONFIG_FEATURE_VERBOSE_USAGE=y
-# CONFIG_FEATURE_COMPRESS_USAGE is not set
-# CONFIG_FEATURE_INSTALLER is not set
-# CONFIG_LOCALE_SUPPORT is not set
-CONFIG_GETOPT_LONG=y
-CONFIG_FEATURE_DEVPTS=y
-# CONFIG_FEATURE_CLEAN_UP is not set
-CONFIG_FEATURE_SUID=y
-CONFIG_FEATURE_SYSLOG=y
-# CONFIG_FEATURE_SUID_CONFIG is not set
-# CONFIG_FEATURE_SUID_CONFIG_QUIET is not set
-CONFIG_FEATURE_HAVE_RPC=y
-# CONFIG_SELINUX is not set
-CONFIG_BUSYBOX_EXEC_PATH="/proc/self/exe"
-
-#
-# Build Options
-#
-# CONFIG_STATIC is not set
-# CONFIG_BUILD_LIBBUSYBOX is not set
-# CONFIG_FEATURE_FULL_LIBBUSYBOX is not set
-# CONFIG_FEATURE_SHARED_BUSYBOX is not set
-CONFIG_LFS=y
-# CONFIG_BUILD_AT_ONCE is not set
-
-#
-# Debugging Options
-#
-# CONFIG_DEBUG is not set
-# CONFIG_DEBUG_PESSIMIZE is not set
-# CONFIG_NO_DEBUG_LIB is not set
-# CONFIG_DMALLOC is not set
-# CONFIG_EFENCE is not set
-CONFIG_INCLUDE_SUSv2=y
-
-#
-# Installation Options
-#
-# CONFIG_INSTALL_NO_USR is not set
-CONFIG_INSTALL_APPLET_SYMLINKS=y
-# CONFIG_INSTALL_APPLET_HARDLINKS is not set
-# CONFIG_INSTALL_APPLET_DONT is not set
-CONFIG_PREFIX="@IDIR@"
-
-#
-# Busybox Library Tuning
-#
-CONFIG_PASSWORD_MINLEN=6
-CONFIG_MD5_SIZE_VS_SPEED=1
-
-#
-# Applets
-#
-
-#
-# Archival Utilities
-#
-# CONFIG_AR is not set
-# CONFIG_FEATURE_AR_LONG_FILENAMES is not set
-# CONFIG_BUNZIP2 is not set
-# CONFIG_CPIO is not set
-# CONFIG_DPKG is not set
-# CONFIG_DPKG_DEB is not set
-# CONFIG_FEATURE_DPKG_DEB_EXTRACT_ONLY is not set
-CONFIG_GUNZIP=y
-CONFIG_FEATURE_GUNZIP_UNCOMPRESS=y
-CONFIG_GZIP=y
-CONFIG_IPKG=y
-# CONFIG_RPM2CPIO is not set
-# CONFIG_RPM is not set
-CONFIG_TAR=y
-CONFIG_FEATURE_TAR_CREATE=y
-# CONFIG_FEATURE_TAR_BZIP2 is not set
-# CONFIG_FEATURE_TAR_LZMA is not set
-CONFIG_FEATURE_TAR_FROM=y
-CONFIG_FEATURE_TAR_GZIP=y
-# CONFIG_FEATURE_TAR_COMPRESS is not set
-# CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY is not set
-CONFIG_FEATURE_TAR_GNU_EXTENSIONS=y
-# CONFIG_FEATURE_TAR_LONG_OPTIONS is not set
-# CONFIG_UNCOMPRESS is not set
-# CONFIG_UNLZMA is not set
-# CONFIG_FEATURE_LZMA_FAST is not set
-# CONFIG_UNZIP is not set
-
-#
-# Common options for cpio and tar
-#
-# CONFIG_FEATURE_UNARCHIVE_TAPE is not set
-# CONFIG_FEATURE_DEB_TAR_GZ is not set
-# CONFIG_FEATURE_DEB_TAR_BZ2 is not set
-# CONFIG_FEATURE_DEB_TAR_LZMA is not set
-
-#
-# Coreutils
-#
-CONFIG_BASENAME=y
-# CONFIG_CAL is not set
-CONFIG_CAT=y
-# CONFIG_CATV is not set
-CONFIG_CHGRP=y
-CONFIG_CHMOD=y
-CONFIG_CHOWN=y
-CONFIG_CHROOT=y
-CONFIG_CKSUM=y
-CONFIG_CMP=y
-CONFIG_COMM=y
-CONFIG_CP=y
-CONFIG_CUT=y
-CONFIG_DATE=y
-CONFIG_FEATURE_DATE_ISOFMT=y
-CONFIG_DD=y
-CONFIG_FEATURE_DD_SIGNAL_HANDLING=y
-CONFIG_FEATURE_DD_IBS_OBS=y
-CONFIG_DF=y
-# CONFIG_DIFF is not set
-# CONFIG_FEATURE_DIFF_BINARY is not set
-# CONFIG_FEATURE_DIFF_DIR is not set
-# CONFIG_FEATURE_DIFF_MINIMAL is not set
-CONFIG_DIRNAME=y
-# CONFIG_DOS2UNIX is not set
-# CONFIG_UNIX2DOS is not set
-CONFIG_DU=y
-# CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K is not set
-CONFIG_ECHO=y
-CONFIG_FEATURE_FANCY_ECHO=y
-CONFIG_ENV=y
-# CONFIG_FEATURE_ENV_LONG_OPTIONS is not set
-CONFIG_EXPR=y
-# CONFIG_EXPR_MATH_SUPPORT_64 is not set
-CONFIG_FALSE=y
-# CONFIG_FOLD is not set
-CONFIG_HEAD=y
-CONFIG_FEATURE_FANCY_HEAD=y
-CONFIG_HOSTID=y
-CONFIG_ID=y
-CONFIG_INSTALL=y
-# CONFIG_FEATURE_INSTALL_LONG_OPTIONS is not set
-CONFIG_LENGTH=y
-CONFIG_LN=y
-# CONFIG_LOGNAME is not set
-CONFIG_LS=y
-CONFIG_FEATURE_LS_FILETYPES=y
-CONFIG_FEATURE_LS_FOLLOWLINKS=y
-CONFIG_FEATURE_LS_RECURSIVE=y
-CONFIG_FEATURE_LS_SORTFILES=y
-CONFIG_FEATURE_LS_TIMESTAMPS=y
-CONFIG_FEATURE_LS_USERNAME=y
-CONFIG_FEATURE_LS_COLOR=y
-# CONFIG_FEATURE_LS_COLOR_IS_DEFAULT is not set
-CONFIG_MD5SUM=y
-CONFIG_MKDIR=y
-# CONFIG_FEATURE_MKDIR_LONG_OPTIONS is not set
-CONFIG_MKFIFO=y
-CONFIG_MKNOD=y
-CONFIG_MV=y
-# CONFIG_FEATURE_MV_LONG_OPTIONS is not set
-# CONFIG_NICE is not set
-CONFIG_NOHUP=y
-# CONFIG_OD is not set
-# CONFIG_PRINTENV is not set
-CONFIG_PRINTF=y
-CONFIG_PWD=y
-# CONFIG_REALPATH is not set
-CONFIG_RM=y
-CONFIG_RMDIR=y
-CONFIG_SEQ=y
-# CONFIG_SHA1SUM is not set
-CONFIG_SLEEP=y
-CONFIG_FEATURE_FANCY_SLEEP=y
-CONFIG_SORT=y
-CONFIG_FEATURE_SORT_BIG=y
-CONFIG_STAT=y
-CONFIG_FEATURE_STAT_FORMAT=y
-CONFIG_STTY=y
-# CONFIG_SUM is not set
-CONFIG_SYNC=y
-CONFIG_TAIL=y
-CONFIG_FEATURE_FANCY_TAIL=y
-CONFIG_TEE=y
-CONFIG_FEATURE_TEE_USE_BLOCK_IO=y
-CONFIG_TEST=y
-# CONFIG_FEATURE_TEST_64 is not set
-CONFIG_TOUCH=y
-CONFIG_TR=y
-CONFIG_FEATURE_TR_CLASSES=y
-# CONFIG_FEATURE_TR_EQUIV is not set
-CONFIG_TRUE=y
-# CONFIG_TTY is not set
-CONFIG_UNAME=y
-CONFIG_UNIQ=y
-# CONFIG_USLEEP is not set
-# CONFIG_UUDECODE is not set
-# CONFIG_UUENCODE is not set
-CONFIG_WATCH=y
-CONFIG_WC=y
-# CONFIG_FEATURE_WC_LARGE is not set
-CONFIG_WHO=y
-# CONFIG_WHOAMI is not set
-CONFIG_YES=y
-
-#
-# Common options for cp and mv
-#
-CONFIG_FEATURE_PRESERVE_HARDLINKS=y
-
-#
-# Common options for ls, more and telnet
-#
-CONFIG_FEATURE_AUTOWIDTH=y
-
-#
-# Common options for df, du, ls
-#
-CONFIG_FEATURE_HUMAN_READABLE=y
-
-#
-# Common options for md5sum, sha1sum
-#
-CONFIG_FEATURE_MD5_SHA1_SUM_CHECK=y
-
-#
-# Console Utilities
-#
-# CONFIG_CHVT is not set
-CONFIG_CLEAR=y
-# CONFIG_DEALLOCVT is not set
-# CONFIG_DUMPKMAP is not set
-# CONFIG_LOADFONT is not set
-# CONFIG_LOADKMAP is not set
-# CONFIG_OPENVT is not set
-CONFIG_RESET=y
-# CONFIG_RESIZE is not set
-# CONFIG_FEATURE_RESIZE_PRINT is not set
-# CONFIG_SETCONSOLE is not set
-# CONFIG_FEATURE_SETCONSOLE_LONG_OPTIONS is not set
-# CONFIG_SETKEYCODES is not set
-# CONFIG_SETLOGCONS is not set
-
-#
-# Debian Utilities
-#
-CONFIG_MKTEMP=y
-# CONFIG_PIPE_PROGRESS is not set
-CONFIG_READLINK=y
-CONFIG_FEATURE_READLINK_FOLLOW=y
-CONFIG_RUN_PARTS=y
-# CONFIG_FEATURE_RUN_PARTS_LONG_OPTIONS is not set
-# CONFIG_START_STOP_DAEMON is not set
-# CONFIG_FEATURE_START_STOP_DAEMON_FANCY is not set
-# CONFIG_FEATURE_START_STOP_DAEMON_LONG_OPTIONS is not set
-CONFIG_WHICH=y
-
-#
-# Editors
-#
-CONFIG_AWK=y
-CONFIG_FEATURE_AWK_MATH=y
-CONFIG_ED=y
-# CONFIG_PATCH is not set
-CONFIG_SED=y
-CONFIG_VI=y
-CONFIG_FEATURE_VI_COLON=y
-CONFIG_FEATURE_VI_YANKMARK=y
-CONFIG_FEATURE_VI_SEARCH=y
-CONFIG_FEATURE_VI_USE_SIGNALS=y
-CONFIG_FEATURE_VI_DOT_CMD=y
-CONFIG_FEATURE_VI_READONLY=y
-CONFIG_FEATURE_VI_SETOPTS=y
-CONFIG_FEATURE_VI_SET=y
-CONFIG_FEATURE_VI_WIN_RESIZE=y
-CONFIG_FEATURE_VI_OPTIMIZE_CURSOR=y
-CONFIG_FEATURE_ALLOW_EXEC=y
-
-#
-# Finding Utilities
-#
-CONFIG_FIND=y
-CONFIG_FEATURE_FIND_PRINT0=y
-CONFIG_FEATURE_FIND_MTIME=y
-CONFIG_FEATURE_FIND_MMIN=y
-CONFIG_FEATURE_FIND_PERM=y
-CONFIG_FEATURE_FIND_TYPE=y
-CONFIG_FEATURE_FIND_XDEV=y
-CONFIG_FEATURE_FIND_NEWER=y
-CONFIG_FEATURE_FIND_INUM=y
-CONFIG_FEATURE_FIND_EXEC=y
-CONFIG_GREP=y
-CONFIG_FEATURE_GREP_EGREP_ALIAS=y
-CONFIG_FEATURE_GREP_FGREP_ALIAS=y
-CONFIG_FEATURE_GREP_CONTEXT=y
-CONFIG_XARGS=y
-CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION=y
-CONFIG_FEATURE_XARGS_SUPPORT_QUOTES=y
-CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT=y
-CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM=y
-
-#
-# Init Utilities
-#
-CONFIG_INIT=y
-# CONFIG_DEBUG_INIT is not set
-CONFIG_FEATURE_USE_INITTAB=y
-# CONFIG_FEATURE_INIT_SCTTY is not set
-# CONFIG_FEATURE_EXTRA_QUIET is not set
-# CONFIG_FEATURE_INIT_COREDUMPS is not set
-# CONFIG_FEATURE_INITRD is not set
-CONFIG_HALT=y
-CONFIG_MESG=y
-
-#
-# Login/Password Management Utilities
-#
-CONFIG_FEATURE_SHADOWPASSWDS=y
-CONFIG_USE_BB_SHADOW=y
-CONFIG_USE_BB_PWD_GRP=y
-# CONFIG_ADDGROUP is not set
-# CONFIG_DELGROUP is not set
-# CONFIG_ADDUSER is not set
-# CONFIG_DELUSER is not set
-# CONFIG_GETTY is not set
-CONFIG_FEATURE_UTMP=y
-# CONFIG_FEATURE_WTMP is not set
-# CONFIG_LOGIN is not set
-# CONFIG_LOGIN_SCRIPTS is not set
-# CONFIG_FEATURE_SECURETTY is not set
-CONFIG_PASSWD=y
-CONFIG_FEATURE_PASSWD_WEAK_CHECK=y
-CONFIG_SU=y
-CONFIG_FEATURE_SU_SYSLOG=y
-CONFIG_FEATURE_SU_CHECKS_SHELLS=y
-# CONFIG_SULOGIN is not set
-# CONFIG_VLOCK is not set
-
-#
-# Linux Ext2 FS Progs
-#
-# CONFIG_CHATTR is not set
-CONFIG_FSCK=y
-# CONFIG_LSATTR is not set
-
-#
-# Linux Module Utilities
-#
-CONFIG_INSMOD=y
-# CONFIG_FEATURE_INSMOD_VERSION_CHECKING is not set
-# CONFIG_FEATURE_INSMOD_KSYMOOPS_SYMBOLS is not set
-# CONFIG_FEATURE_INSMOD_LOADINKMEM is not set
-# CONFIG_FEATURE_INSMOD_LOAD_MAP is not set
-# CONFIG_FEATURE_INSMOD_LOAD_MAP_FULL is not set
-CONFIG_RMMOD=y
-CONFIG_LSMOD=y
-CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT=y
-CONFIG_MODPROBE=y
-# CONFIG_FEATURE_MODPROBE_MULTIPLE_OPTIONS is not set
-# CONFIG_FEATURE_MODPROBE_FANCY_ALIAS is not set
-
-#
-# Options common to multiple modutils
-#
-# CONFIG_FEATURE_CHECK_TAINTED_MODULE is not set
-# CONFIG_FEATURE_2_4_MODULES is not set
-CONFIG_FEATURE_2_6_MODULES=y
-# CONFIG_FEATURE_QUERY_MODULE_INTERFACE is not set
-
-#
-# Linux System Utilities
-#
-CONFIG_DMESG=y
-CONFIG_FEATURE_DMESG_PRETTY=y
-# CONFIG_FBSET is not set
-# CONFIG_FEATURE_FBSET_FANCY is not set
-# CONFIG_FEATURE_FBSET_READMODE is not set
-# CONFIG_FDFLUSH is not set
-# CONFIG_FDFORMAT is not set
-CONFIG_FDISK=y
-CONFIG_FDISK_SUPPORT_LARGE_DISKS=y
-CONFIG_FEATURE_FDISK_WRITABLE=y
-# CONFIG_FEATURE_AIX_LABEL is not set
-# CONFIG_FEATURE_SGI_LABEL is not set
-# CONFIG_FEATURE_SUN_LABEL is not set
-# CONFIG_FEATURE_OSF_LABEL is not set
-# CONFIG_FEATURE_FDISK_ADVANCED is not set
-# CONFIG_FREERAMDISK is not set
-# CONFIG_FSCK_MINIX is not set
-# CONFIG_MKFS_MINIX is not set
-# CONFIG_FEATURE_MINIX2 is not set
-# CONFIG_GETOPT is not set
-CONFIG_HEXDUMP=y
-CONFIG_HWCLOCK=y
-CONFIG_FEATURE_HWCLOCK_LONG_OPTIONS=y
-# CONFIG_FEATURE_HWCLOCK_ADJTIME_FHS is not set
-CONFIG_IPCRM=y
-CONFIG_IPCS=y
-CONFIG_LOSETUP=y
-CONFIG_MDEV=y
-CONFIG_FEATURE_MDEV_CONF=y
-CONFIG_FEATURE_MDEV_EXEC=y
-CONFIG_MKSWAP=y
-# CONFIG_FEATURE_MKSWAP_V0 is not set
-CONFIG_MORE=y
-CONFIG_FEATURE_USE_TERMIOS=y
-CONFIG_MOUNT=y
-CONFIG_FEATURE_MOUNT_NFS=y
-CONFIG_FEATURE_MOUNT_CIFS=y
-CONFIG_FEATURE_MOUNT_FLAGS=y
-CONFIG_FEATURE_MOUNT_FSTAB=y
-CONFIG_PIVOT_ROOT=y
-# CONFIG_RDATE is not set
-# CONFIG_READPROFILE is not set
-# CONFIG_SETARCH is not set
-CONFIG_SWAPONOFF=y
-CONFIG_SWITCH_ROOT=y
-CONFIG_UMOUNT=y
-CONFIG_FEATURE_UMOUNT_ALL=y
-
-#
-# Common options for mount/umount
-#
-CONFIG_FEATURE_MOUNT_LOOP=y
-# CONFIG_FEATURE_MTAB_SUPPORT is not set
-
-#
-# Miscellaneous Utilities
-#
-# CONFIG_ADJTIMEX is not set
-# CONFIG_BBCONFIG is not set
-CONFIG_CROND=y
-# CONFIG_DEBUG_CROND_OPTION is not set
-# CONFIG_FEATURE_CROND_CALL_SENDMAIL is not set
-CONFIG_CRONTAB=y
-# CONFIG_DC is not set
-# CONFIG_DEVFSD is not set
-# CONFIG_DEVFSD_MODLOAD is not set
-# CONFIG_DEVFSD_FG_NP is not set
-# CONFIG_DEVFSD_VERBOSE is not set
-# CONFIG_FEATURE_DEVFS is not set
-# CONFIG_EJECT is not set
-# CONFIG_LAST is not set
-# CONFIG_LESS is not set
-# CONFIG_FEATURE_LESS_MAXLINES is not set
-# CONFIG_FEATURE_LESS_BRACKETS is not set
-# CONFIG_FEATURE_LESS_FLAGS is not set
-# CONFIG_FEATURE_LESS_FLAGCS is not set
-# CONFIG_FEATURE_LESS_MARKS is not set
-# CONFIG_FEATURE_LESS_REGEXP is not set
-# CONFIG_HDPARM is not set
-# CONFIG_FEATURE_HDPARM_GET_IDENTITY is not set
-# CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF is not set
-# CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF is not set
-# CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET is not set
-# CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF is not set
-# CONFIG_FEATURE_HDPARM_HDIO_GETSET_DMA is not set
-# CONFIG_MAKEDEVS is not set
-# CONFIG_FEATURE_MAKEDEVS_LEAF is not set
-# CONFIG_FEATURE_MAKEDEVS_TABLE is not set
-# CONFIG_MOUNTPOINT is not set
-# CONFIG_MT is not set
-# CONFIG_NMETER is not set
-# CONFIG_RAIDAUTORUN is not set
-# CONFIG_READAHEAD is not set
-# CONFIG_RUNLEVEL is not set
-CONFIG_RX=y
-CONFIG_STRINGS=y
-# CONFIG_SETSID is not set
-# CONFIG_TASKSET is not set
-# CONFIG_FEATURE_TASKSET_FANCY is not set
-# CONFIG_TIME is not set
-CONFIG_WATCHDOG=y
-
-#
-# Networking Utilities
-#
-CONFIG_FEATURE_IPV6=y
-CONFIG_ARP=y
-CONFIG_ARPING=y
-# CONFIG_DNSD is not set
-CONFIG_ETHER_WAKE=y
-# CONFIG_FAKEIDENTD is not set
-# CONFIG_FTPGET is not set
-# CONFIG_FTPPUT is not set
-# CONFIG_FEATURE_FTPGETPUT_LONG_OPTIONS is not set
-CONFIG_HOSTNAME=y
-# CONFIG_HTTPD is not set
-# CONFIG_FEATURE_HTTPD_RELOAD_CONFIG_SIGHUP is not set
-# CONFIG_FEATURE_HTTPD_SETUID is not set
-# CONFIG_FEATURE_HTTPD_BASIC_AUTH is not set
-# CONFIG_FEATURE_HTTPD_AUTH_MD5 is not set
-# CONFIG_FEATURE_HTTPD_CONFIG_WITH_MIME_TYPES is not set
-# CONFIG_FEATURE_HTTPD_CGI is not set
-# CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR is not set
-# CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV is not set
-# CONFIG_FEATURE_HTTPD_ENCODE_URL_STR is not set
-CONFIG_IFCONFIG=y
-CONFIG_FEATURE_IFCONFIG_STATUS=y
-# CONFIG_FEATURE_IFCONFIG_SLIP is not set
-# CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ is not set
-CONFIG_FEATURE_IFCONFIG_HW=y
-CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS=y
-CONFIG_IFUPDOWN=y
-CONFIG_FEATURE_IFUPDOWN_IP=y
-CONFIG_FEATURE_IFUPDOWN_IP_BUILTIN=y
-# CONFIG_FEATURE_IFUPDOWN_IFCONFIG_BUILTIN is not set
-CONFIG_FEATURE_IFUPDOWN_IPV4=y
-CONFIG_FEATURE_IFUPDOWN_IPV6=y
-# CONFIG_FEATURE_IFUPDOWN_IPX is not set
-# CONFIG_FEATURE_IFUPDOWN_MAPPING is not set
-CONFIG_INETD=y
-CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_ECHO=y
-CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD=y
-CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_TIME=y
-CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME=y
-CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN=y
-CONFIG_FEATURE_INETD_RPC=y
-CONFIG_IP=y
-CONFIG_FEATURE_IP_ADDRESS=y
-CONFIG_FEATURE_IP_LINK=y
-CONFIG_FEATURE_IP_ROUTE=y
-CONFIG_FEATURE_IP_TUNNEL=y
-CONFIG_FEATURE_IP_RULE=y
-# CONFIG_FEATURE_IP_SHORT_FORMS is not set
-# CONFIG_IPADDR is not set
-# CONFIG_IPLINK is not set
-# CONFIG_IPROUTE is not set
-# CONFIG_IPTUNNEL is not set
-# CONFIG_IPRULE is not set
-# CONFIG_IPCALC is not set
-# CONFIG_FEATURE_IPCALC_FANCY is not set
-# CONFIG_FEATURE_IPCALC_LONG_OPTIONS is not set
-# CONFIG_NAMEIF is not set
-CONFIG_NC=y
-CONFIG_NC_SERVER=y
-CONFIG_NC_EXTRA=y
-CONFIG_NETSTAT=y
-CONFIG_NSLOOKUP=y
-CONFIG_PING=y
-CONFIG_FEATURE_FANCY_PING=y
-CONFIG_PING6=y
-CONFIG_FEATURE_FANCY_PING6=y
-CONFIG_ROUTE=y
-CONFIG_TELNET=y
-CONFIG_FEATURE_TELNET_TTYPE=y
-# CONFIG_FEATURE_TELNET_AUTOLOGIN is not set
-CONFIG_TELNETD=y
-CONFIG_FEATURE_TELNETD_STANDALONE=y
-CONFIG_TFTP=y
-CONFIG_FEATURE_TFTP_GET=y
-CONFIG_FEATURE_TFTP_PUT=y
-CONFIG_FEATURE_TFTP_BLOCKSIZE=y
-CONFIG_DEBUG_TFTP=y
-CONFIG_TRACEROUTE=y
-CONFIG_FEATURE_TRACEROUTE_VERBOSE=y
-CONFIG_FEATURE_TRACEROUTE_SOURCE_ROUTE=y
-CONFIG_FEATURE_TRACEROUTE_USE_ICMP=y
-# CONFIG_APP_UDHCPD is not set
-# CONFIG_APP_DHCPRELAY is not set
-# CONFIG_APP_DUMPLEASES is not set
-CONFIG_APP_UDHCPC=y
-# CONFIG_FEATURE_UDHCP_SYSLOG is not set
-# CONFIG_FEATURE_UDHCP_DEBUG is not set
-# CONFIG_VCONFIG is not set
-CONFIG_WGET=y
-CONFIG_FEATURE_WGET_STATUSBAR=y
-CONFIG_FEATURE_WGET_AUTHENTICATION=y
-CONFIG_FEATURE_WGET_IP6_LITERAL=y
-CONFIG_FEATURE_WGET_LONG_OPTIONS=y
-# CONFIG_ZCIP is not set
-
-#
-# Process Utilities
-#
-CONFIG_FREE=y
-CONFIG_FUSER=y
-CONFIG_KILL=y
-CONFIG_KILLALL=y
-CONFIG_KILLALL5=y
-CONFIG_PIDOF=y
-CONFIG_FEATURE_PIDOF_SINGLE=y
-CONFIG_FEATURE_PIDOF_OMIT=y
-CONFIG_PS=y
-CONFIG_FEATURE_PS_WIDE=y
-CONFIG_RENICE=y
-CONFIG_BB_SYSCTL=y
-CONFIG_TOP=y
-CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE=y
-CONFIG_UPTIME=y
-
-#
-# Shells
-#
-# CONFIG_FEATURE_SH_IS_ASH is not set
-# CONFIG_FEATURE_SH_IS_HUSH is not set
-# CONFIG_FEATURE_SH_IS_LASH is not set
-# CONFIG_FEATURE_SH_IS_MSH is not set
-CONFIG_FEATURE_SH_IS_NONE=y
-# CONFIG_ASH is not set
-# CONFIG_ASH_JOB_CONTROL is not set
-# CONFIG_ASH_READ_NCHARS is not set
-# CONFIG_ASH_READ_TIMEOUT is not set
-# CONFIG_ASH_ALIAS is not set
-# CONFIG_ASH_MATH_SUPPORT is not set
-# CONFIG_ASH_MATH_SUPPORT_64 is not set
-# CONFIG_ASH_GETOPTS is not set
-# CONFIG_ASH_BUILTIN_ECHO is not set
-# CONFIG_ASH_BUILTIN_TEST is not set
-# CONFIG_ASH_CMDCMD is not set
-# CONFIG_ASH_MAIL is not set
-# CONFIG_ASH_OPTIMIZE_FOR_SIZE is not set
-# CONFIG_ASH_RANDOM_SUPPORT is not set
-# CONFIG_ASH_EXPAND_PRMT is not set
-# CONFIG_HUSH is not set
-# CONFIG_LASH is not set
-# CONFIG_MSH is not set
-# CONFIG_FEATURE_SH_EXTRA_QUIET is not set
-# CONFIG_FEATURE_SH_STANDALONE_SHELL is not set
-# CONFIG_FEATURE_COMMAND_EDITING is not set
-# CONFIG_FEATURE_COMMAND_EDITING_VI is not set
-# CONFIG_FEATURE_COMMAND_HISTORY is not set
-# CONFIG_FEATURE_COMMAND_SAVEHISTORY is not set
-# CONFIG_FEATURE_COMMAND_TAB_COMPLETION is not set
-# CONFIG_FEATURE_COMMAND_USERNAME_COMPLETION is not set
-# CONFIG_FEATURE_SH_FANCY_PROMPT is not set
-
-#
-# System Logging Utilities
-#
-CONFIG_SYSLOGD=y
-CONFIG_FEATURE_ROTATE_LOGFILE=y
-CONFIG_FEATURE_REMOTE_LOG=y
-CONFIG_FEATURE_IPC_SYSLOG=y
-CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE=16
-CONFIG_LOGREAD=y
-CONFIG_FEATURE_LOGREAD_REDUCED_LOCKING=y
-CONFIG_KLOGD=y
-CONFIG_LOGGER=y
-
-#
-# Runit Utilities
-#
-# CONFIG_RUNSV is not set
-# CONFIG_RUNSVDIR is not set
-# CONFIG_SV is not set
-# CONFIG_SVLOGD is not set
-# CONFIG_CHPST is not set
-# CONFIG_SETUIDGID is not set
-# CONFIG_ENVUIDGID is not set
-# CONFIG_ENVDIR is not set
-# CONFIG_SOFTLIMIT is not set
diff --git a/package/busybox/files/crond.init b/package/busybox/files/crond.init
index 208479c6d..dcccb7fca 100644
--- a/package/busybox/files/crond.init
+++ b/package/busybox/files/crond.init
@@ -14,7 +14,7 @@ start)
crond -c /etc/crontabs
;;
stop)
- kill $(pidof crond|cut -d ' ' -f 3)
+ pkill crond
;;
restart)
sh $0 stop
diff --git a/package/busybox/patches/001-ipkg.patch b/package/busybox/patches/001-ipkg.patch
index 7295e4c49..fb740df91 100644
--- a/package/busybox/patches/001-ipkg.patch
+++ b/package/busybox/patches/001-ipkg.patch
@@ -1,6 +1,6 @@
diff -Nur busybox-1.16.1.orig/archival/Config.in busybox-1.16.1/archival/Config.in
--- busybox-1.16.1.orig/archival/Config.in 2010-03-28 19:43:35.000000000 +0200
-+++ busybox-1.16.1/archival/Config.in 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/Config.in 2010-06-29 17:31:21.805863709 +0200
@@ -187,6 +187,14 @@
are actually slower than gzip at equivalent compression ratios
and take up 3.2K of code.
@@ -18,7 +18,7 @@ diff -Nur busybox-1.16.1.orig/archival/Config.in busybox-1.16.1/archival/Config.
default n
diff -Nur busybox-1.16.1.orig/archival/ipkg.c busybox-1.16.1/archival/ipkg.c
--- busybox-1.16.1.orig/archival/ipkg.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/ipkg.c 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/ipkg.c 2010-06-29 17:31:21.827118101 +0200
@@ -0,0 +1,28 @@
+/* ipkg.c - the itsy package management system
+
@@ -50,7 +50,7 @@ diff -Nur busybox-1.16.1.orig/archival/ipkg.c busybox-1.16.1/archival/ipkg.c
+}
diff -Nur busybox-1.16.1.orig/archival/Kbuild busybox-1.16.1/archival/Kbuild
--- busybox-1.16.1.orig/archival/Kbuild 2010-03-20 03:58:07.000000000 +0100
-+++ busybox-1.16.1/archival/Kbuild 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/Kbuild 2010-06-29 17:31:21.865866986 +0200
@@ -16,6 +16,7 @@
lib-$(CONFIG_DPKG_DEB) += dpkg_deb.o
lib-$(CONFIG_GUNZIP) += bbunzip.o
@@ -61,7 +61,7 @@ diff -Nur busybox-1.16.1.orig/archival/Kbuild busybox-1.16.1/archival/Kbuild
lib-$(CONFIG_RPM2CPIO) += rpm2cpio.o
diff -Nur busybox-1.16.1.orig/archival/libipkg/args.c busybox-1.16.1/archival/libipkg/args.c
--- busybox-1.16.1.orig/archival/libipkg/args.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/args.c 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/args.c 2010-06-29 17:31:21.905863813 +0200
@@ -0,0 +1,242 @@
+/* args.c - parse command-line args
+
@@ -307,7 +307,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/args.c busybox-1.16.1/archival/li
+}
diff -Nur busybox-1.16.1.orig/archival/libipkg/args.h busybox-1.16.1/archival/libipkg/args.h
--- busybox-1.16.1.orig/archival/libipkg/args.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/args.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/args.h 2010-06-29 17:31:21.945866019 +0200
@@ -0,0 +1,72 @@
+/* args.h - parse command-line args
+
@@ -383,7 +383,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/args.h busybox-1.16.1/archival/li
+#endif
diff -Nur busybox-1.16.1.orig/archival/libipkg/conffile.c busybox-1.16.1/archival/libipkg/conffile.c
--- busybox-1.16.1.orig/archival/libipkg/conffile.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/conffile.c 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/conffile.c 2010-06-29 17:31:21.987118040 +0200
@@ -0,0 +1,65 @@
+/* conffile.c - the itsy package management system
+
@@ -452,7 +452,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/conffile.c busybox-1.16.1/archiva
+}
diff -Nur busybox-1.16.1.orig/archival/libipkg/conffile.h busybox-1.16.1/archival/libipkg/conffile.h
--- busybox-1.16.1.orig/archival/libipkg/conffile.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/conffile.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/conffile.h 2010-06-29 17:31:22.018368070 +0200
@@ -0,0 +1,30 @@
+/* conffile.h - the itsy package management system
+
@@ -486,7 +486,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/conffile.h busybox-1.16.1/archiva
+
diff -Nur busybox-1.16.1.orig/archival/libipkg/conffile_list.c busybox-1.16.1/archival/libipkg/conffile_list.c
--- busybox-1.16.1.orig/archival/libipkg/conffile_list.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/conffile_list.c 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/conffile_list.c 2010-06-29 17:31:22.055873481 +0200
@@ -0,0 +1,47 @@
+/* conffile_list.c - the itsy package management system
+
@@ -537,7 +537,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/conffile_list.c busybox-1.16.1/ar
+
diff -Nur busybox-1.16.1.orig/archival/libipkg/conffile_list.h busybox-1.16.1/archival/libipkg/conffile_list.h
--- busybox-1.16.1.orig/archival/libipkg/conffile_list.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/conffile_list.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/conffile_list.h 2010-06-29 17:31:22.089612450 +0200
@@ -0,0 +1,36 @@
+/* conffile_list.h - the itsy package management system
+
@@ -577,7 +577,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/conffile_list.h busybox-1.16.1/ar
+
diff -Nur busybox-1.16.1.orig/archival/libipkg/file_util.c busybox-1.16.1/archival/libipkg/file_util.c
--- busybox-1.16.1.orig/archival/libipkg/file_util.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/file_util.c 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/file_util.c 2010-06-29 17:31:22.137606321 +0200
@@ -0,0 +1,186 @@
+/* file_util.c - convenience routines for common stat operations
+
@@ -767,7 +767,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/file_util.c busybox-1.16.1/archiv
+
diff -Nur busybox-1.16.1.orig/archival/libipkg/file_util.h busybox-1.16.1/archival/libipkg/file_util.h
--- busybox-1.16.1.orig/archival/libipkg/file_util.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/file_util.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/file_util.h 2010-06-29 17:31:22.220596553 +0200
@@ -0,0 +1,29 @@
+/* file_util.h - convenience routines for common file operations
+
@@ -800,7 +800,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/file_util.h busybox-1.16.1/archiv
+#endif
diff -Nur busybox-1.16.1.orig/archival/libipkg/hash_table.c busybox-1.16.1/archival/libipkg/hash_table.c
--- busybox-1.16.1.orig/archival/libipkg/hash_table.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/hash_table.c 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/hash_table.c 2010-06-29 17:31:22.257056261 +0200
@@ -0,0 +1,155 @@
+/* hash.c - hash tables for ipkg
+
@@ -959,7 +959,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/hash_table.c busybox-1.16.1/archi
+
diff -Nur busybox-1.16.1.orig/archival/libipkg/hash_table.h busybox-1.16.1/archival/libipkg/hash_table.h
--- busybox-1.16.1.orig/archival/libipkg/hash_table.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/hash_table.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/hash_table.h 2010-06-29 17:31:22.305858166 +0200
@@ -0,0 +1,44 @@
+/* hash.h - hash tables for ipkg
+
@@ -1007,8 +1007,8 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/hash_table.h busybox-1.16.1/archi
+#endif /* _HASH_TABLE_H_ */
diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_cmd.c busybox-1.16.1/archival/libipkg/ipkg_cmd.c
--- busybox-1.16.1.orig/archival/libipkg/ipkg_cmd.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/ipkg_cmd.c 2010-04-22 19:18:12.000000000 +0200
-@@ -0,0 +1,1386 @@
++++ busybox-1.16.1/archival/libipkg/ipkg_cmd.c 2010-06-29 19:19:50.699618181 +0200
+@@ -0,0 +1,1366 @@
+/* ipkg_cmd.c - the itsy package management system
+
+ Carl D. Worth
@@ -2023,30 +2023,10 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_cmd.c busybox-1.16.1/archiva
+ installed_files = pkg_get_installed_files(pkg);
+ pkg_version = pkg_version_str_alloc(pkg);
+
-+ if (buff) {
-+ try_again:
-+ used_len = snprintf(buff, buff_len, "Package %s (%s) is installed on %s and has the following files:\n",
-+ pkg->name, pkg_version, pkg->dest->name) + 1;
-+ if (used_len > buff_len) {
-+ buff_len *= 2;
-+ buff = realloc (buff, buff_len);
-+ goto try_again;
-+ }
-+ for (iter = installed_files->head; iter; iter = iter->next) {
-+ used_len += strlen (iter->data) + 1;
-+ while (buff_len <= used_len) {
-+ buff_len *= 2;
-+ buff = realloc (buff, buff_len);
-+ }
-+ strncat(buff, iter->data, buff_len);
-+ strncat(buff, "\n", buff_len);
-+ }
-+ if (ipkg_cb_list) ipkg_cb_list(pkg->name,
-+ buff,
-+ pkg_version_str_alloc(pkg),
-+ pkg->state_status,
-+ p_userdata);
-+ free(buff);
++ printf("Package %s (%s) is installed on %s and has the following files:\n",
++ pkg->name, pkg_version, pkg->dest->name);
++ for (iter = installed_files->head; iter; iter = iter->next) {
++ puts(iter->data);
+ }
+
+ free(pkg_version);
@@ -2397,7 +2377,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_cmd.c busybox-1.16.1/archiva
+
diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_cmd.h busybox-1.16.1/archival/libipkg/ipkg_cmd.h
--- busybox-1.16.1.orig/archival/libipkg/ipkg_cmd.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/ipkg_cmd.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/ipkg_cmd.h 2010-06-29 17:31:22.398358961 +0200
@@ -0,0 +1,41 @@
+/* ipkg_cmd.h - the itsy package management system
+
@@ -2442,7 +2422,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_cmd.h busybox-1.16.1/archiva
+#endif
diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_conf.c busybox-1.16.1/archival/libipkg/ipkg_conf.c
--- busybox-1.16.1.orig/archival/libipkg/ipkg_conf.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/ipkg_conf.c 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/ipkg_conf.c 2010-06-29 17:31:22.425857952 +0200
@@ -0,0 +1,711 @@
+/* ipkg_conf.c - the itsy package management system
+
@@ -3157,7 +3137,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_conf.c busybox-1.16.1/archiv
+}
diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_conf.h busybox-1.16.1/archival/libipkg/ipkg_conf.h
--- busybox-1.16.1.orig/archival/libipkg/ipkg_conf.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/ipkg_conf.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/ipkg_conf.h 2010-06-29 17:31:22.458368131 +0200
@@ -0,0 +1,107 @@
+/* ipkg_conf.h - the itsy package management system
+
@@ -3268,7 +3248,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_conf.h busybox-1.16.1/archiv
+#endif
diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_configure.c busybox-1.16.1/archival/libipkg/ipkg_configure.c
--- busybox-1.16.1.orig/archival/libipkg/ipkg_configure.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/ipkg_configure.c 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/ipkg_configure.c 2010-06-29 17:31:22.488368061 +0200
@@ -0,0 +1,40 @@
+/* ipkg_configure.c - the itsy package management system
+
@@ -3312,7 +3292,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_configure.c busybox-1.16.1/a
+
diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_configure.h busybox-1.16.1/archival/libipkg/ipkg_configure.h
--- busybox-1.16.1.orig/archival/libipkg/ipkg_configure.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/ipkg_configure.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/ipkg_configure.h 2010-06-29 17:31:22.527882534 +0200
@@ -0,0 +1,25 @@
+/* ipkg_configure.h - the itsy package management system
+
@@ -3341,7 +3321,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_configure.h busybox-1.16.1/a
+#endif
diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_download.c busybox-1.16.1/archival/libipkg/ipkg_download.c
--- busybox-1.16.1.orig/archival/libipkg/ipkg_download.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/ipkg_download.c 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/ipkg_download.c 2010-06-29 17:31:22.569385415 +0200
@@ -0,0 +1,195 @@
+/* ipkg_download.c - the itsy package management system
+
@@ -3540,7 +3520,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_download.c busybox-1.16.1/ar
+}
diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_download.h busybox-1.16.1/archival/libipkg/ipkg_download.h
--- busybox-1.16.1.orig/archival/libipkg/ipkg_download.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/ipkg_download.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/ipkg_download.h 2010-06-29 17:31:22.608368046 +0200
@@ -0,0 +1,30 @@
+/* ipkg_download.h - the itsy package management system
+
@@ -3574,7 +3554,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_download.h busybox-1.16.1/ar
+#endif
diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg.h busybox-1.16.1/archival/libipkg/ipkg.h
--- busybox-1.16.1.orig/archival/libipkg/ipkg.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/ipkg.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/ipkg.h 2010-06-29 17:31:22.647281522 +0200
@@ -0,0 +1,68 @@
+/* ipkg.h - the itsy package management system
+
@@ -3646,8 +3626,8 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg.h busybox-1.16.1/archival/li
+#endif
diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_includes.h busybox-1.16.1/archival/libipkg/ipkg_includes.h
--- busybox-1.16.1.orig/archival/libipkg/ipkg_includes.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/ipkg_includes.h 2010-04-22 19:18:12.000000000 +0200
-@@ -0,0 +1,79 @@
++++ busybox-1.16.1/archival/libipkg/ipkg_includes.h 2010-06-29 17:32:10.339618090 +0200
+@@ -0,0 +1,81 @@
+#ifndef IPKG_INCLUDES_H
+#define IPKG_INCLUDES_H
+
@@ -3726,10 +3706,12 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_includes.h busybox-1.16.1/ar
+# include <unistd.h>
+#endif
+
++#include <sys/mount.h>
++
+#endif /* IPKG_INCLUDES_H */
diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_install.c busybox-1.16.1/archival/libipkg/ipkg_install.c
--- busybox-1.16.1.orig/archival/libipkg/ipkg_install.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/ipkg_install.c 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/ipkg_install.c 2010-06-29 17:31:22.727172508 +0200
@@ -0,0 +1,1982 @@
+/* ipkg_install.c - the itsy package management system
+
@@ -5715,7 +5697,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_install.c busybox-1.16.1/arc
+#endif
diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_install.h busybox-1.16.1/archival/libipkg/ipkg_install.h
--- busybox-1.16.1.orig/archival/libipkg/ipkg_install.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/ipkg_install.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/ipkg_install.h 2010-06-29 17:31:22.768368136 +0200
@@ -0,0 +1,35 @@
+/* ipkg_install.h - the itsy package management system
+
@@ -5754,7 +5736,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_install.h busybox-1.16.1/arc
+#endif
diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_message.c busybox-1.16.1/archival/libipkg/ipkg_message.c
--- busybox-1.16.1.orig/archival/libipkg/ipkg_message.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/ipkg_message.c 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/ipkg_message.c 2010-06-29 17:31:22.798368009 +0200
@@ -0,0 +1,35 @@
+/* ipkg_message.c - the itsy package management system
+
@@ -5793,7 +5775,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_message.c busybox-1.16.1/arc
+}
diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_message.h busybox-1.16.1/archival/libipkg/ipkg_message.h
--- busybox-1.16.1.orig/archival/libipkg/ipkg_message.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/ipkg_message.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/ipkg_message.h 2010-06-29 17:31:22.839937503 +0200
@@ -0,0 +1,32 @@
+/* ipkg_message.h - the itsy package management system
+
@@ -5829,7 +5811,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_message.h busybox-1.16.1/arc
+#endif /* _IPKG_MESSAGE_H_ */
diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_remove.c busybox-1.16.1/archival/libipkg/ipkg_remove.c
--- busybox-1.16.1.orig/archival/libipkg/ipkg_remove.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/ipkg_remove.c 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/ipkg_remove.c 2010-06-29 17:31:22.876628032 +0200
@@ -0,0 +1,385 @@
+/* ipkg_remove.c - the itsy package management system
+
@@ -6218,7 +6200,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_remove.c busybox-1.16.1/arch
+}
diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_remove.h busybox-1.16.1/archival/libipkg/ipkg_remove.h
--- busybox-1.16.1.orig/archival/libipkg/ipkg_remove.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/ipkg_remove.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/ipkg_remove.h 2010-06-29 17:31:22.918368225 +0200
@@ -0,0 +1,33 @@
+/* ipkg_remove.h - the itsy package management system
+
@@ -6255,7 +6237,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_remove.h busybox-1.16.1/arch
+#endif
diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_upgrade.c busybox-1.16.1/archival/libipkg/ipkg_upgrade.c
--- busybox-1.16.1.orig/archival/libipkg/ipkg_upgrade.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/ipkg_upgrade.c 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/ipkg_upgrade.c 2010-06-29 17:31:22.976264794 +0200
@@ -0,0 +1,79 @@
+/* ipkg_upgrade.c - the itsy package management system
+
@@ -6338,7 +6320,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_upgrade.c busybox-1.16.1/arc
+}
diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_upgrade.h busybox-1.16.1/archival/libipkg/ipkg_upgrade.h
--- busybox-1.16.1.orig/archival/libipkg/ipkg_upgrade.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/ipkg_upgrade.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/ipkg_upgrade.h 2010-06-29 17:31:23.015873328 +0200
@@ -0,0 +1,18 @@
+/* ipkg_upgrade.c - the itsy package management system
+
@@ -6360,7 +6342,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_upgrade.h busybox-1.16.1/arc
+int ipkg_upgrade_pkg(ipkg_conf_t *conf, pkg_t *old);
diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_utils.c busybox-1.16.1/archival/libipkg/ipkg_utils.c
--- busybox-1.16.1.orig/archival/libipkg/ipkg_utils.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/ipkg_utils.c 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/ipkg_utils.c 2010-06-29 17:31:23.067592883 +0200
@@ -0,0 +1,185 @@
+/* ipkg_utils.c - the itsy package management system
+
@@ -6549,7 +6531,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_utils.c busybox-1.16.1/archi
+
diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_utils.h busybox-1.16.1/archival/libipkg/ipkg_utils.h
--- busybox-1.16.1.orig/archival/libipkg/ipkg_utils.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/ipkg_utils.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/ipkg_utils.h 2010-06-29 17:31:23.105873432 +0200
@@ -0,0 +1,29 @@
+/* ipkg_utils.h - the itsy package management system
+
@@ -6582,7 +6564,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/ipkg_utils.h busybox-1.16.1/archi
+#endif
diff -Nur busybox-1.16.1.orig/archival/libipkg/Kbuild busybox-1.16.1/archival/libipkg/Kbuild
--- busybox-1.16.1.orig/archival/libipkg/Kbuild 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/Kbuild 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/Kbuild 2010-06-29 17:31:23.145868229 +0200
@@ -0,0 +1,60 @@
+# Makefile for busybox
+#
@@ -6646,8 +6628,8 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/Kbuild busybox-1.16.1/archival/li
+CFLAGS += -DIPKGLIBDIR="\"/usr/lib\"" -DHOST_CPU_STR="\"$(IPKG_ARCH)\""
diff -Nur busybox-1.16.1.orig/archival/libipkg/libipkg.c busybox-1.16.1/archival/libipkg/libipkg.c
--- busybox-1.16.1.orig/archival/libipkg/libipkg.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/libipkg.c 2010-04-22 19:18:12.000000000 +0200
-@@ -0,0 +1,525 @@
++++ busybox-1.16.1/archival/libipkg/libipkg.c 2010-06-29 19:58:50.069617923 +0200
+@@ -0,0 +1,550 @@
+/* ipkglib.c - the itsy package management system
+
+ Florina Boor
@@ -7101,6 +7083,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/libipkg.c busybox-1.16.1/archival
+ ipkg_conf_t ipkg_conf;
+ const char *message = "ipkg must have one sub-command argument";
+
++
+ args_init (&args);
+
+ optind_ = args_parse (&args, argc, argv);
@@ -7135,6 +7118,18 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/libipkg.c busybox-1.16.1/archival
+ args.noreadfeedsfile = 1;
+
+
++ if ( !strcmp(cmd_name,"install") ||
++ !strcmp(cmd_name,"update") ||
++ !strcmp(cmd_name,"upgrade") ||
++ !strcmp(cmd_name,"flag") ||
++ !strcmp(cmd_name,"configure") ||
++ !strcmp(cmd_name,"remove") ) {
++ /* mount rootfs read-write */
++ if (mount("","/",0,MS_REMOUNT,0)<0)
++ fprintf (stderr, "Mounting rootfs read-write failed\n");
++ }
++
++
+ err = ipkg_conf_init (&ipkg_conf, &args);
+ if (err)
+ {
@@ -7171,11 +7166,23 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/libipkg.c busybox-1.16.1/archival
+
+ ipkg_conf_deinit (&ipkg_conf);
+
++ if ( !strcmp(cmd_name,"install") ||
++ !strcmp(cmd_name,"update") ||
++ !strcmp(cmd_name,"upgrade") ||
++ !strcmp(cmd_name,"flag") ||
++ !strcmp(cmd_name,"configure") ||
++ !strcmp(cmd_name,"remove") ) {
++ sync();
++ /* mount rootfs read-only */
++ if (mount("","/",0,MS_REMOUNT|MS_RDONLY,0)<0)
++ fprintf (stderr, "Mounting rootfs read-only failed\n");
++ }
++
+ return err;
+}
diff -Nur busybox-1.16.1.orig/archival/libipkg/libipkg.h busybox-1.16.1/archival/libipkg/libipkg.h
--- busybox-1.16.1.orig/archival/libipkg/libipkg.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/libipkg.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/libipkg.h 2010-06-29 17:31:24.283460019 +0200
@@ -0,0 +1,78 @@
+/* ipkglib.h - the itsy package management system
+
@@ -7257,7 +7264,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/libipkg.h busybox-1.16.1/archival
+#endif
diff -Nur busybox-1.16.1.orig/archival/libipkg/nv_pair.c busybox-1.16.1/archival/libipkg/nv_pair.c
--- busybox-1.16.1.orig/archival/libipkg/nv_pair.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/nv_pair.c 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/nv_pair.c 2010-06-29 17:31:24.316180264 +0200
@@ -0,0 +1,40 @@
+/* nv_pair.c - the itsy package management system
+
@@ -7301,7 +7308,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/nv_pair.c busybox-1.16.1/archival
+
diff -Nur busybox-1.16.1.orig/archival/libipkg/nv_pair.h busybox-1.16.1/archival/libipkg/nv_pair.h
--- busybox-1.16.1.orig/archival/libipkg/nv_pair.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/nv_pair.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/nv_pair.h 2010-06-29 17:31:24.358376170 +0200
@@ -0,0 +1,32 @@
+/* nv_pair.h - the itsy package management system
+
@@ -7337,7 +7344,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/nv_pair.h busybox-1.16.1/archival
+
diff -Nur busybox-1.16.1.orig/archival/libipkg/nv_pair_list.c busybox-1.16.1/archival/libipkg/nv_pair_list.c
--- busybox-1.16.1.orig/archival/libipkg/nv_pair_list.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/nv_pair_list.c 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/nv_pair_list.c 2010-06-29 17:31:24.395873641 +0200
@@ -0,0 +1,98 @@
+/* nv_pair_list.c - the itsy package management system
+
@@ -7439,7 +7446,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/nv_pair_list.c busybox-1.16.1/arc
+}
diff -Nur busybox-1.16.1.orig/archival/libipkg/nv_pair_list.h busybox-1.16.1/archival/libipkg/nv_pair_list.h
--- busybox-1.16.1.orig/archival/libipkg/nv_pair_list.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/nv_pair_list.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/nv_pair_list.h 2010-06-29 17:31:24.439618049 +0200
@@ -0,0 +1,60 @@
+/* nv_pair_list.h - the itsy package management system
+
@@ -7503,7 +7510,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/nv_pair_list.h busybox-1.16.1/arc
+
diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg.c busybox-1.16.1/archival/libipkg/pkg.c
--- busybox-1.16.1.orig/archival/libipkg/pkg.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/pkg.c 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/pkg.c 2010-06-29 17:31:24.502860549 +0200
@@ -0,0 +1,1757 @@
+/* pkg.c - the itsy package management system
+
@@ -9264,7 +9271,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg.c busybox-1.16.1/archival/lib
+}
diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_depends.c busybox-1.16.1/archival/libipkg/pkg_depends.c
--- busybox-1.16.1.orig/archival/libipkg/pkg_depends.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/pkg_depends.c 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/pkg_depends.c 2010-06-29 17:31:24.548368104 +0200
@@ -0,0 +1,1032 @@
+/* pkg_depends.c - the itsy package management system
+
@@ -10300,7 +10307,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_depends.c busybox-1.16.1/arch
+}
diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_depends.h busybox-1.16.1/archival/libipkg/pkg_depends.h
--- busybox-1.16.1.orig/archival/libipkg/pkg_depends.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/pkg_depends.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/pkg_depends.h 2010-06-29 17:31:24.588368223 +0200
@@ -0,0 +1,105 @@
+/* pkg_depends.h - the itsy package management system
+
@@ -10409,7 +10416,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_depends.h busybox-1.16.1/arch
+#endif
diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_dest.c busybox-1.16.1/archival/libipkg/pkg_dest.c
--- busybox-1.16.1.orig/archival/libipkg/pkg_dest.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/pkg_dest.c 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/pkg_dest.c 2010-06-29 17:31:24.625873289 +0200
@@ -0,0 +1,92 @@
+/* pkg_dest.c - the itsy package management system
+
@@ -10505,7 +10512,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_dest.c busybox-1.16.1/archiva
+}
diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_dest.h busybox-1.16.1/archival/libipkg/pkg_dest.h
--- busybox-1.16.1.orig/archival/libipkg/pkg_dest.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/pkg_dest.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/pkg_dest.h 2010-06-29 17:31:24.669618111 +0200
@@ -0,0 +1,38 @@
+/* pkg_dest.h - the itsy package management system
+
@@ -10547,7 +10554,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_dest.h busybox-1.16.1/archiva
+
diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_dest_list.c busybox-1.16.1/archival/libipkg/pkg_dest_list.c
--- busybox-1.16.1.orig/archival/libipkg/pkg_dest_list.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/pkg_dest_list.c 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/pkg_dest_list.c 2010-06-29 17:31:24.715868178 +0200
@@ -0,0 +1,85 @@
+/* pkg_dest_list.c - the itsy package management system
+
@@ -10636,7 +10643,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_dest_list.c busybox-1.16.1/ar
+}
diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_dest_list.h busybox-1.16.1/archival/libipkg/pkg_dest_list.h
--- busybox-1.16.1.orig/archival/libipkg/pkg_dest_list.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/pkg_dest_list.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/pkg_dest_list.h 2010-06-29 17:31:24.760275316 +0200
@@ -0,0 +1,50 @@
+/* pkg_dest_list.h - the itsy package management system
+
@@ -10690,7 +10697,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_dest_list.h busybox-1.16.1/ar
+
diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_extract.c busybox-1.16.1/archival/libipkg/pkg_extract.c
--- busybox-1.16.1.orig/archival/libipkg/pkg_extract.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/pkg_extract.c 2010-04-22 19:33:49.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/pkg_extract.c 2010-06-29 17:31:24.818364193 +0200
@@ -0,0 +1,255 @@
+/* pkg_extract.c - the itsy package management system
+
@@ -10949,7 +10956,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_extract.c busybox-1.16.1/arch
+}
diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_extract.h busybox-1.16.1/archival/libipkg/pkg_extract.h
--- busybox-1.16.1.orig/archival/libipkg/pkg_extract.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/pkg_extract.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/pkg_extract.h 2010-06-29 17:31:24.858368110 +0200
@@ -0,0 +1,32 @@
+/* pkg_extract.c - the itsy package management system
+
@@ -10985,7 +10992,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_extract.h busybox-1.16.1/arch
+#endif
diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg.h busybox-1.16.1/archival/libipkg/pkg.h
--- busybox-1.16.1.orig/archival/libipkg/pkg.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/pkg.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/pkg.h 2010-06-29 17:31:24.897965989 +0200
@@ -0,0 +1,229 @@
+/* pkg.h - the itsy package management system
+
@@ -11218,7 +11225,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg.h busybox-1.16.1/archival/lib
+#endif
diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_hash.c busybox-1.16.1/archival/libipkg/pkg_hash.c
--- busybox-1.16.1.orig/archival/libipkg/pkg_hash.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/pkg_hash.c 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/pkg_hash.c 2010-06-29 17:31:24.956062867 +0200
@@ -0,0 +1,623 @@
+/* ipkg_hash.c - the itsy package management system
+
@@ -11845,7 +11852,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_hash.c busybox-1.16.1/archiva
+
diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_hash.h busybox-1.16.1/archival/libipkg/pkg_hash.h
--- busybox-1.16.1.orig/archival/libipkg/pkg_hash.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/pkg_hash.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/pkg_hash.h 2010-06-29 17:31:25.005861391 +0200
@@ -0,0 +1,61 @@
+/* pkg_hash.h - the itsy package management system
+
@@ -11910,7 +11917,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_hash.h busybox-1.16.1/archiva
+
diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_parse.c busybox-1.16.1/archival/libipkg/pkg_parse.c
--- busybox-1.16.1.orig/archival/libipkg/pkg_parse.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/pkg_parse.c 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/pkg_parse.c 2010-06-29 17:31:25.059133294 +0200
@@ -0,0 +1,368 @@
+/* pkg_parse.c - the itsy package management system
+
@@ -12282,7 +12289,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_parse.c busybox-1.16.1/archiv
+}
diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_parse.h busybox-1.16.1/archival/libipkg/pkg_parse.h
--- busybox-1.16.1.orig/archival/libipkg/pkg_parse.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/pkg_parse.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/pkg_parse.h 2010-06-29 17:31:25.098367969 +0200
@@ -0,0 +1,31 @@
+/* pkg_parse.h - the itsy package management system
+
@@ -12317,7 +12324,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_parse.h busybox-1.16.1/archiv
+#endif
diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_src.c busybox-1.16.1/archival/libipkg/pkg_src.c
--- busybox-1.16.1.orig/archival/libipkg/pkg_src.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/pkg_src.c 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/pkg_src.c 2010-06-29 17:31:25.135873346 +0200
@@ -0,0 +1,43 @@
+/* pkg_src.c - the itsy package management system
+
@@ -12364,7 +12371,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_src.c busybox-1.16.1/archival
+
diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_src.h busybox-1.16.1/archival/libipkg/pkg_src.h
--- busybox-1.16.1.orig/archival/libipkg/pkg_src.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/pkg_src.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/pkg_src.h 2010-06-29 17:31:25.195873136 +0200
@@ -0,0 +1,34 @@
+/* pkg_src.h - the itsy package management system
+
@@ -12402,7 +12409,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_src.h busybox-1.16.1/archival
+#endif
diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_src_list.c busybox-1.16.1/archival/libipkg/pkg_src_list.c
--- busybox-1.16.1.orig/archival/libipkg/pkg_src_list.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/pkg_src_list.c 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/pkg_src_list.c 2010-06-29 17:31:25.238287396 +0200
@@ -0,0 +1,75 @@
+/* pkg_src_list.c - the itsy package management system
+
@@ -12481,7 +12488,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_src_list.c busybox-1.16.1/arc
+}
diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_src_list.h busybox-1.16.1/archival/libipkg/pkg_src_list.h
--- busybox-1.16.1.orig/archival/libipkg/pkg_src_list.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/pkg_src_list.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/pkg_src_list.h 2010-06-29 17:31:25.278367968 +0200
@@ -0,0 +1,57 @@
+/* pkg_src_list.h - the itsy package management system
+
@@ -12542,7 +12549,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_src_list.h busybox-1.16.1/arc
+
diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_vec.c busybox-1.16.1/archival/libipkg/pkg_vec.c
--- busybox-1.16.1.orig/archival/libipkg/pkg_vec.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/pkg_vec.c 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/pkg_vec.c 2010-06-29 17:31:25.319617983 +0200
@@ -0,0 +1,231 @@
+/* pkg_vec.c - the itsy package management system
+
@@ -12777,7 +12784,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_vec.c busybox-1.16.1/archival
+
diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_vec.h busybox-1.16.1/archival/libipkg/pkg_vec.h
--- busybox-1.16.1.orig/archival/libipkg/pkg_vec.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/pkg_vec.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/pkg_vec.h 2010-06-29 17:31:25.358368186 +0200
@@ -0,0 +1,62 @@
+/* pkg_vec.h - the itsy package management system
+
@@ -12843,7 +12850,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/pkg_vec.h busybox-1.16.1/archival
+
diff -Nur busybox-1.16.1.orig/archival/libipkg/sprintf_alloc.h busybox-1.16.1/archival/libipkg/sprintf_alloc.h
--- busybox-1.16.1.orig/archival/libipkg/sprintf_alloc.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/sprintf_alloc.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/sprintf_alloc.h 2010-06-29 17:31:25.395865857 +0200
@@ -0,0 +1,25 @@
+/* sprintf_alloca.c -- like sprintf with memory allocation
+
@@ -12872,7 +12879,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/sprintf_alloc.h busybox-1.16.1/ar
+#endif
diff -Nur busybox-1.16.1.orig/archival/libipkg/str_list.c busybox-1.16.1/archival/libipkg/str_list.c
--- busybox-1.16.1.orig/archival/libipkg/str_list.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/str_list.c 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/str_list.c 2010-06-29 17:31:25.437577685 +0200
@@ -0,0 +1,76 @@
+/* str_list.c - the itsy package management system
+
@@ -12952,7 +12959,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/str_list.c busybox-1.16.1/archiva
+}
diff -Nur busybox-1.16.1.orig/archival/libipkg/str_list.h busybox-1.16.1/archival/libipkg/str_list.h
--- busybox-1.16.1.orig/archival/libipkg/str_list.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/str_list.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/str_list.h 2010-06-29 17:31:25.487410851 +0200
@@ -0,0 +1,51 @@
+/* str_list.h - the itsy package management system
+
@@ -13007,7 +13014,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/str_list.h busybox-1.16.1/archiva
+#endif
diff -Nur busybox-1.16.1.orig/archival/libipkg/str_util.c busybox-1.16.1/archival/libipkg/str_util.c
--- busybox-1.16.1.orig/archival/libipkg/str_util.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/str_util.c 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/str_util.c 2010-06-29 17:31:25.540714295 +0200
@@ -0,0 +1,69 @@
+/* str_utils.c - the itsy package management system
+
@@ -13080,7 +13087,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/str_util.c busybox-1.16.1/archiva
+
diff -Nur busybox-1.16.1.orig/archival/libipkg/str_util.h busybox-1.16.1/archival/libipkg/str_util.h
--- busybox-1.16.1.orig/archival/libipkg/str_util.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/str_util.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/str_util.h 2010-06-29 17:31:25.578749246 +0200
@@ -0,0 +1,27 @@
+/* str_utils.h - the itsy package management system
+
@@ -13111,7 +13118,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/str_util.h busybox-1.16.1/archiva
+#endif
diff -Nur busybox-1.16.1.orig/archival/libipkg/user.c busybox-1.16.1/archival/libipkg/user.c
--- busybox-1.16.1.orig/archival/libipkg/user.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/user.c 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/user.c 2010-06-29 17:31:25.628536327 +0200
@@ -0,0 +1,49 @@
+/* user.c - the itsy package management system
+
@@ -13164,7 +13171,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/user.c busybox-1.16.1/archival/li
+}
diff -Nur busybox-1.16.1.orig/archival/libipkg/user.h busybox-1.16.1/archival/libipkg/user.h
--- busybox-1.16.1.orig/archival/libipkg/user.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/user.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/user.h 2010-06-29 17:31:25.678337891 +0200
@@ -0,0 +1,23 @@
+/* user.c - the itsy package management system
+
@@ -13191,7 +13198,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/user.h busybox-1.16.1/archival/li
+
diff -Nur busybox-1.16.1.orig/archival/libipkg/void_list.c busybox-1.16.1/archival/libipkg/void_list.c
--- busybox-1.16.1.orig/archival/libipkg/void_list.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/void_list.c 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/void_list.c 2010-06-29 17:31:25.715873105 +0200
@@ -0,0 +1,194 @@
+/* void_list.c - the itsy package management system
+
@@ -13389,7 +13396,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/void_list.c busybox-1.16.1/archiv
+}
diff -Nur busybox-1.16.1.orig/archival/libipkg/void_list.h busybox-1.16.1/archival/libipkg/void_list.h
--- busybox-1.16.1.orig/archival/libipkg/void_list.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/void_list.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/void_list.h 2010-06-29 17:31:25.758368030 +0200
@@ -0,0 +1,59 @@
+/* void_list.h - the itsy package management system
+
@@ -13452,7 +13459,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/void_list.h busybox-1.16.1/archiv
+#endif
diff -Nur busybox-1.16.1.orig/archival/libipkg/xsystem.c busybox-1.16.1/archival/libipkg/xsystem.c
--- busybox-1.16.1.orig/archival/libipkg/xsystem.c 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/xsystem.c 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/xsystem.c 2010-06-29 17:31:25.799781135 +0200
@@ -0,0 +1,64 @@
+/* xsystem.c - system(3) with error messages
+
@@ -13520,7 +13527,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/xsystem.c busybox-1.16.1/archival
+
diff -Nur busybox-1.16.1.orig/archival/libipkg/xsystem.h busybox-1.16.1/archival/libipkg/xsystem.h
--- busybox-1.16.1.orig/archival/libipkg/xsystem.h 1970-01-01 01:00:00.000000000 +0100
-+++ busybox-1.16.1/archival/libipkg/xsystem.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libipkg/xsystem.h 2010-06-29 17:31:25.855865061 +0200
@@ -0,0 +1,34 @@
+/* xsystem.h - system(3) with error messages
+
@@ -13558,7 +13565,7 @@ diff -Nur busybox-1.16.1.orig/archival/libipkg/xsystem.h busybox-1.16.1/archival
+
diff -Nur busybox-1.16.1.orig/archival/libunarchive/Kbuild busybox-1.16.1/archival/libunarchive/Kbuild
--- busybox-1.16.1.orig/archival/libunarchive/Kbuild 2010-03-20 03:58:07.000000000 +0100
-+++ busybox-1.16.1/archival/libunarchive/Kbuild 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/archival/libunarchive/Kbuild 2010-06-29 17:31:25.898368046 +0200
@@ -40,6 +40,7 @@
lib-$(CONFIG_DPKG) += $(DPKG_FILES)
lib-$(CONFIG_DPKG_DEB) += $(DPKG_FILES)
@@ -13569,7 +13576,7 @@ diff -Nur busybox-1.16.1.orig/archival/libunarchive/Kbuild busybox-1.16.1/archiv
lib-$(CONFIG_TAR) += get_header_tar.o
diff -Nur busybox-1.16.1.orig/include/applets.h busybox-1.16.1/include/applets.h
--- busybox-1.16.1.orig/include/applets.h 2010-03-28 19:43:35.000000000 +0200
-+++ busybox-1.16.1/include/applets.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/include/applets.h 2010-06-29 17:31:25.938368064 +0200
@@ -214,6 +214,7 @@
IF_IPCALC(APPLET(ipcalc, _BB_DIR_BIN, _BB_SUID_DROP))
IF_IPCRM(APPLET(ipcrm, _BB_DIR_USR_BIN, _BB_SUID_REQUIRE))
@@ -13580,7 +13587,16 @@ diff -Nur busybox-1.16.1.orig/include/applets.h busybox-1.16.1/include/applets.h
IF_IPRULE(APPLET(iprule, _BB_DIR_BIN, _BB_SUID_DROP))
diff -Nur busybox-1.16.1.orig/include/unarchive.h busybox-1.16.1/include/unarchive.h
--- busybox-1.16.1.orig/include/unarchive.h 2010-03-28 19:43:35.000000000 +0200
-+++ busybox-1.16.1/include/unarchive.h 2010-04-22 19:21:25.000000000 +0200
++++ busybox-1.16.1/include/unarchive.h 2010-06-29 17:31:25.978368044 +0200
+@@ -53,7 +53,7 @@
+ off_t offset;
+
+ /* Archiver specific. Can make it a union if it ever gets big */
+-#if ENABLE_TAR || ENABLE_DPKG || ENABLE_DPKG_DEB
++#if ENABLE_TAR || ENABLE_DPKG || ENABLE_DPKG_DEB || ENABLE_IPKG
+ smallint tar__end;
+ # if ENABLE_FEATURE_TAR_GNU_EXTENSIONS
+ char* tar__longname;
@@ -65,7 +65,7 @@
struct hardlinks_t *cpio__hardlinks_to_create;
struct hardlinks_t *cpio__created_hardlinks;
@@ -13592,7 +13608,7 @@ diff -Nur busybox-1.16.1.orig/include/unarchive.h busybox-1.16.1/include/unarchi
/* How to process any sub archive, e.g. get_header_tar_gz */
diff -Nur busybox-1.16.1.orig/include/usage.h busybox-1.16.1/include/usage.h
--- busybox-1.16.1.orig/include/usage.h 2010-03-28 19:44:04.000000000 +0200
-+++ busybox-1.16.1/include/usage.h 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/include/usage.h 2010-06-29 17:31:26.018367985 +0200
@@ -1592,6 +1592,82 @@
"$ ls -la /tmp/busybox*\n" \
"-rw-rw-r-- 1 andersen andersen 554058 Apr 14 17:49 /tmp/busybox.tar.gz\n"
@@ -13678,7 +13694,7 @@ diff -Nur busybox-1.16.1.orig/include/usage.h busybox-1.16.1/include/usage.h
#define halt_full_usage "\n\n" \
diff -Nur busybox-1.16.1.orig/Makefile busybox-1.16.1/Makefile
--- busybox-1.16.1.orig/Makefile 2010-03-28 19:44:09.000000000 +0200
-+++ busybox-1.16.1/Makefile 2010-04-22 19:18:12.000000000 +0200
++++ busybox-1.16.1/Makefile 2010-06-29 17:31:26.058368031 +0200
@@ -454,6 +454,7 @@
libs-y := \
diff --git a/package/cfgfs/Makefile b/package/cfgfs/Makefile
index b7ca8a67c..96e297cfb 100644
--- a/package/cfgfs/Makefile
+++ b/package/cfgfs/Makefile
@@ -14,7 +14,7 @@ PKG_TARGET_DEPENDS:= alix wrap foxboard ag241 foxg20 routerboard
WRKDIST= ${WRKDIR}/${PKG_NAME}-${PKG_VERSION}
NO_DISTFILES:= 1
-CFLINE_CFGFS:= select BUSYBOX_COMM\n\tselect BUSYBOX_MD5SUM\n\tselect BUSYBOX_XARGS\n\tselect BUSYBOX_FEATURE_SORT_BIG\n\tselect BUSYBOX_DIFF\n\tdepends on !ADK_TARGET_ROOTFS_NFSROOT
+CFLINE_CFGFS:= select BUSYBOX_COMM\n\tselect BUSYBOX_MD5SUM\n\tselect BUSYBOX_XARGS\n\tselect BUSYBOX_FEATURE_SORT_BIG\n\tselect BUSYBOX_DIFF\n\tdepends on !ADK_TARGET_ROOTFS_NFSROOT && !ADK_TARGET_ROOTFS_INITRAMFS_PIGGYBACK && !ADK_TARGET_ROOTFS_INITRAMFS
include ${TOPDIR}/mk/package.mk
diff --git a/package/collectd/Makefile b/package/collectd/Makefile
index 0e81c8345..1dbb26fc5 100644
--- a/package/collectd/Makefile
+++ b/package/collectd/Makefile
@@ -4,9 +4,9 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= collectd
-PKG_VERSION:= 4.9.1
+PKG_VERSION:= 4.10.0
PKG_RELEASE:= 1
-PKG_MD5SUM:= 31a63d8e3a796dee247024f70426ed1c
+PKG_MD5SUM:= c473cf8e9f22f5a9f7ef4c5be1b0c436
PKG_DESCR:= System statistics collection daemon
PKG_SECTION:= console
PKG_DEPENDS:= libpthread
diff --git a/package/collectd/patches/patch-configure b/package/collectd/patches/patch-configure
new file mode 100644
index 000000000..24d0c04b5
--- /dev/null
+++ b/package/collectd/patches/patch-configure
@@ -0,0 +1,56 @@
+--- collectd-4.10.0.orig/configure 2010-05-01 11:16:01.000000000 +0200
++++ collectd-4.10.0/configure 2010-06-14 15:51:32.263465769 +0200
+@@ -16636,53 +16636,6 @@ $as_echo "#define HAVE_GEN_GETMNTENT 1"
+
+ fi
+
+-# Check for htonll
+-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if have htonll defined" >&5
+-$as_echo_n "checking if have htonll defined... " >&6; }
+-
+- have_htonll="no"
+- if test "$cross_compiling" = yes; then :
+- { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
+-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
+-as_fn_error "cannot run test program while cross compiling
+-See \`config.log' for more details." "$LINENO" 5; }
+-else
+- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
+-/* end confdefs.h. */
+-
+-
+-#include <sys/types.h>
+-#include <netinet/in.h>
+-#if HAVE_INTTYPES_H
+-# include <inttypes.h>
+-#endif
+-
+-int
+-main ()
+-{
+-
+- return htonll(0);
+-
+- ;
+- return 0;
+-}
+-
+-_ACEOF
+-if ac_fn_c_try_run "$LINENO"; then :
+-
+- have_htonll="yes"
+-
+-$as_echo "#define HAVE_HTONLL 1" >>confdefs.h
+-
+-
+-fi
+-rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
+- conftest.$ac_objext conftest.beam conftest.$ac_ext
+-fi
+-
+-
+-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $have_htonll" >&5
+-$as_echo "$have_htonll" >&6; }
+
+ # Check for structures
+ ac_fn_c_check_member "$LINENO" "struct if_data" "ifi_ibytes" "ac_cv_member_struct_if_data_ifi_ibytes" "
diff --git a/package/collectd/patches/patch-src_libcollectdclient_Makefile_in b/package/collectd/patches/patch-src_libcollectdclient_Makefile_in
index ba4d4c067..a51a010ea 100644
--- a/package/collectd/patches/patch-src_libcollectdclient_Makefile_in
+++ b/package/collectd/patches/patch-src_libcollectdclient_Makefile_in
@@ -1,7 +1,7 @@
$Id: update-patches 24 2008-08-31 14:56:13Z wbx $
---- collectd-4.6.2.orig/src/libcollectdclient/Makefile.in 2009-03-18 11:56:40.000000000 +0100
-+++ collectd-4.6.2/src/libcollectdclient/Makefile.in 2009-05-09 16:29:33.000000000 +0200
-@@ -251,7 +251,7 @@ top_build_prefix = @top_build_prefix@
+--- collectd-4.10.0.orig/src/libcollectdclient/Makefile.in 2010-05-01 11:16:00.000000000 +0200
++++ collectd-4.10.0/src/libcollectdclient/Makefile.in 2010-06-14 15:49:28.563473998 +0200
+@@ -327,7 +327,7 @@ top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
AUTOMAKE_OPTIONS = foreign no-dependencies
diff --git a/package/conntrack-tools/Makefile b/package/conntrack-tools/Makefile
index d4d53b8be..3e22262f7 100644
--- a/package/conntrack-tools/Makefile
+++ b/package/conntrack-tools/Makefile
@@ -9,7 +9,7 @@ PKG_RELEASE:= 1
PKG_MD5SUM:= 35b0ab9cde069b4ec8a493daae82d67b
PKG_DESCR:= Connection tracking userspace tools
PKG_SECTION:= firewall
-PKG_DEPENDS:= libnetfilter_conntrack
+PKG_DEPENDS:= libnetfilter-conntrack
PKG_BUILDDEP+= libnetfilter_conntrack
PKG_URL:= http://conntrack-tools.netfilter.org
PKG_SITES:= http://www.netfilter.org/projects/conntrack-tools/files/
diff --git a/package/coreutils/Makefile b/package/coreutils/Makefile
new file mode 100644
index 000000000..70a8f3180
--- /dev/null
+++ b/package/coreutils/Makefile
@@ -0,0 +1,27 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:= coreutils
+PKG_VERSION:= 8.5
+PKG_RELEASE:= 1
+PKG_MD5SUM:= c1ffe586d001e87d66cd80c4536ee823
+PKG_DESCR:= basic file, shell and text manipulation utilities
+PKG_SECTION:= base
+PKG_URL:= http://www.gnu.org/software/coreutils/
+PKG_SITES:= http://ftp.gnu.org/gnu/coreutils/
+
+PKG_DESCR_TSORT:= topological sort utility
+
+include $(TOPDIR)/mk/package.mk
+
+#$(eval $(call PKG_template,COREUTILS,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+$(eval $(call PKG_template,TSORT,tsort,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR_TSORT},${PKG_SECTION}))
+
+post-install:
+ $(INSTALL_DIR) $(IDIR_TSORT)/usr/bin
+ $(INSTALL_BIN) $(WRKINST)/usr/bin/tsort \
+ $(IDIR_TSORT)/usr/bin
+
+include ${TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/cpio/Makefile b/package/cpio/Makefile
index 5bcbc2351..ed6b0b43f 100644
--- a/package/cpio/Makefile
+++ b/package/cpio/Makefile
@@ -4,9 +4,9 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= cpio
-PKG_VERSION:= 2.10
+PKG_VERSION:= 2.11
PKG_RELEASE:= 1
-PKG_MD5SUM:= 351ab3d38d8949913e478cc23b9d6ad4
+PKG_MD5SUM:= 1112bb6c45863468b5496ba128792f6c
PKG_DESCR:= copies files into or out of a cpio archive
PKG_SECTION:= net
PKG_URL:= http://www.gnu.org/software/cpio/
diff --git a/package/cpio/patches/patch-src_filetypes_h b/package/cpio/patches/patch-src_filetypes_h
new file mode 100644
index 000000000..f33bfa9f3
--- /dev/null
+++ b/package/cpio/patches/patch-src_filetypes_h
@@ -0,0 +1,8 @@
+--- cpio-2.11.orig/src/filetypes.h 2010-02-12 11:19:23.000000000 +0100
++++ cpio-2.11/src/filetypes.h 2010-06-08 18:26:43.633473938 +0200
+@@ -82,4 +82,4 @@
+ #define lstat stat
+ #endif
+ int lstat ();
+-int stat ();
++//int stat ();
diff --git a/package/curl/Makefile b/package/curl/Makefile
index 9f771defb..a7ddfb1d8 100644
--- a/package/curl/Makefile
+++ b/package/curl/Makefile
@@ -4,9 +4,9 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= curl
-PKG_VERSION:= 7.19.7
+PKG_VERSION:= 7.20.1
PKG_RELEASE:= 1
-PKG_MD5SUM:= ecb2e37e45c9933e2a963cabe03670ab
+PKG_MD5SUM:= d7df0507db48546661b155b612cac19c
PKG_DESCR:= a client-side URL transfer tool
PKG_SECTION:= net
PKG_DEPENDS:= libcurl
diff --git a/package/davfs2/Makefile b/package/davfs2/Makefile
index b6c026739..11e93d2ce 100644
--- a/package/davfs2/Makefile
+++ b/package/davfs2/Makefile
@@ -3,25 +3,25 @@
include ${TOPDIR}/rules.mk
-PKG_NAME= davfs2
-PKG_VERSION= 1.3.3
-PKG_RELEASE= 1
-PKG_MD5SUM= 57def26e4d6d63527e01612d10fd0515
+PKG_NAME:= davfs2
+PKG_VERSION:= 1.4.6
+PKG_RELEASE:= 1
+PKG_MD5SUM:= c9e8aeb15daeba4b6283b40bb640e908
PKG_DESCR:= WebDAV filesystem
PKG_SECTION:= admin
PKG_BUILDDEP+= libiconv neon
ifneq (${ADK_PACKAGE_DAVFS2_FUSE}${ADK_PACKAGE_DAVFS2_BOTH},)
PKG_BUILDDEP+= fuse
endif
-PKG_URL:= http://savannah.nongnu.org/projects/davfs2
-PKG_SITES= ${MASTER_SITE_SOURCEFORGE:=dav/}
+PKG_URL:= http://savannah.nongnu.org/projects/davfs2
+PKG_SITES:= http://www.very-clever.com/download/nongnu/davfs2/
ifeq (${ADK_PACKAGE_DAVFS2_FUSE},y)
-PKG_DEPENDS:= fuse-utils kmod-fuse-fs libiconv neon
+PKG_DEPENDS:= fuse-utils kmod-fuse-fs libiconv neon
else ifeq (${ADK_PACKAGE_DAVFS2_CODA},y)
-PKG_DEPENDS:= kmod-coda-fs libiconv neon
+PKG_DEPENDS:= kmod-coda-fs libiconv neon
else
-PKG_DEPENDS:= kmod-coda-fs fuse-utils kmod-fuse-fs libiconv neon
+PKG_DEPENDS:= kmod-coda-fs fuse-utils kmod-fuse-fs libiconv neon
endif
include ${TOPDIR}/mk/package.mk
diff --git a/package/davfs2/patches/patch-src_cache_c b/package/davfs2/patches/patch-src_cache_c
deleted file mode 100644
index ac8b0b4f1..000000000
--- a/package/davfs2/patches/patch-src_cache_c
+++ /dev/null
@@ -1,11 +0,0 @@
-$Id: update-patches 24 2008-08-31 14:56:13Z wbx $
---- davfs2-1.3.3.orig/src/cache.c 2008-06-24 21:32:50.000000000 +0200
-+++ davfs2-1.3.3/src/cache.c 2008-12-08 00:06:51.000000000 +0100
-@@ -23,7 +23,6 @@
-
- #include "config.h"
-
--#include <argz.h>
- #include <dirent.h>
- #include <errno.h>
- #include <error.h>
diff --git a/package/davfs2/patches/patch-src_dav_coda2_c b/package/davfs2/patches/patch-src_dav_coda2_c
deleted file mode 100644
index 1ef269348..000000000
--- a/package/davfs2/patches/patch-src_dav_coda2_c
+++ /dev/null
@@ -1,11 +0,0 @@
-$Id: update-patches 24 2008-08-31 14:56:13Z wbx $
---- davfs2-1.3.3.orig/src/dav_coda2.c 2008-02-02 23:23:45.000000000 +0100
-+++ davfs2-1.3.3/src/dav_coda2.c 2008-12-08 00:07:35.000000000 +0100
-@@ -23,7 +23,6 @@
-
- #include "config.h"
-
--#include <argz.h>
- #include <errno.h>
- #include <fcntl.h>
- #include <limits.h>
diff --git a/package/davfs2/patches/patch-src_dav_coda3_c b/package/davfs2/patches/patch-src_dav_coda3_c
deleted file mode 100644
index 9a4bee68b..000000000
--- a/package/davfs2/patches/patch-src_dav_coda3_c
+++ /dev/null
@@ -1,11 +0,0 @@
-$Id: update-patches 24 2008-08-31 14:56:13Z wbx $
---- davfs2-1.3.3.orig/src/dav_coda3.c 2008-02-02 23:24:10.000000000 +0100
-+++ davfs2-1.3.3/src/dav_coda3.c 2008-12-08 00:08:00.000000000 +0100
-@@ -23,7 +23,6 @@
-
- #include "config.h"
-
--#include <argz.h>
- #include <errno.h>
- #include <fcntl.h>
- #include <limits.h>
diff --git a/package/davfs2/patches/patch-src_dav_fuse5_c b/package/davfs2/patches/patch-src_dav_fuse5_c
deleted file mode 100644
index 21c92b9a5..000000000
--- a/package/davfs2/patches/patch-src_dav_fuse5_c
+++ /dev/null
@@ -1,11 +0,0 @@
-$Id: update-patches 24 2008-08-31 14:56:13Z wbx $
---- davfs2-1.3.3.orig/src/dav_fuse5.c 2008-04-05 20:36:06.000000000 +0200
-+++ davfs2-1.3.3/src/dav_fuse5.c 2008-12-08 00:08:26.000000000 +0100
-@@ -23,7 +23,6 @@
-
- #include "config.h"
-
--#include <argz.h>
- #include <errno.h>
- #include <fcntl.h>
- #include <stddef.h>
diff --git a/package/davfs2/patches/patch-src_dav_fuse7_c b/package/davfs2/patches/patch-src_dav_fuse7_c
deleted file mode 100644
index 846f4a98a..000000000
--- a/package/davfs2/patches/patch-src_dav_fuse7_c
+++ /dev/null
@@ -1,11 +0,0 @@
-$Id: update-patches 24 2008-08-31 14:56:13Z wbx $
---- davfs2-1.3.3.orig/src/dav_fuse7.c 2008-04-09 21:43:34.000000000 +0200
-+++ davfs2-1.3.3/src/dav_fuse7.c 2008-12-08 00:08:32.000000000 +0100
-@@ -23,7 +23,6 @@
-
- #include "config.h"
-
--#include <argz.h>
- #include <errno.h>
- #include <fcntl.h>
- #include <stddef.h>
diff --git a/package/davfs2/patches/patch-src_kernel_interface_c b/package/davfs2/patches/patch-src_kernel_interface_c
deleted file mode 100644
index 15d5c909b..000000000
--- a/package/davfs2/patches/patch-src_kernel_interface_c
+++ /dev/null
@@ -1,31 +0,0 @@
-$Id$
---- davfs2-1.3.3.orig/src/kernel_interface.c 2008-04-05 20:43:04.000000000 +0200
-+++ davfs2-1.3.3/src/kernel_interface.c 2008-12-08 00:09:01.000000000 +0100
-@@ -23,7 +23,6 @@
-
- #include "config.h"
-
--#include <argz.h>
- #include <errno.h>
- #include <error.h>
- #include <fcntl.h>
-@@ -173,7 +172,8 @@ static int init_coda(int *dev, dav_run_m
- }
-
- if (*dev <= 0) {
-- system("/sbin/modprobe coda &>/dev/null");
-+ system("/sbin/insmod coda");
-+ sleep(1);
- minor = 0;
- while (*dev <= 0 && minor < MAX_CODADEVS) {
- char *path;
-@@ -240,7 +240,8 @@ static int init_fuse(int *dev, dav_run_m
-
- *dev = open(path, O_RDWR | O_NONBLOCK);
- if (*dev <= 0) {
-- system("/sbin/modprobe fuse &>/dev/null");
-+ system("/sbin/insmod fuse");
-+ sleep(1);
- *dev = open(path, O_RDWR | O_NONBLOCK);
- }
- if (*dev <= 0) {
diff --git a/package/davfs2/patches/patch-src_mount_davfs_c b/package/davfs2/patches/patch-src_mount_davfs_c
index ba0c030f2..516604ffc 100644
--- a/package/davfs2/patches/patch-src_mount_davfs_c
+++ b/package/davfs2/patches/patch-src_mount_davfs_c
@@ -1,40 +1,22 @@
-$Id$
---- davfs2-1.3.3.orig/src/mount_davfs.c 2008-06-30 20:29:42.000000000 +0200
-+++ davfs2-1.3.3/src/mount_davfs.c 2008-12-08 00:20:01.000000000 +0100
-@@ -23,12 +23,10 @@
-
- #include "config.h"
-
--#include <argz.h>
- #include <ctype.h>
- #include <errno.h>
- #include <error.h>
+--- davfs2-1.4.6.orig/src/mount_davfs.c 2010-01-21 19:50:15.000000000 +0100
++++ davfs2-1.4.6/src/mount_davfs.c 2010-05-29 21:10:23.041613426 +0200
+@@ -29,7 +29,6 @@
+ #ifdef HAVE_FCNTL_H
#include <fcntl.h>
+ #endif
-#include <fstab.h>
#include <getopt.h>
#include <grp.h>
- #include <limits.h>
-@@ -602,15 +600,18 @@ static char *check_double_mounts(dav_arg
- free to choose them. They should be configured in davfs2.conf anyway. */
- static void check_fstab(const dav_args *args) {
-
+ #ifdef HAVE_LIBINTL_H
+@@ -677,6 +676,7 @@ check_double_mounts(dav_args *args)
+ static void
+ check_fstab(const dav_args *args)
+ {
+#if 0
dav_args *n_args = new_args();
n_args->mopts = DAV_USER_MOPTS;
- setfsent();
- struct fstab *ft = getfsfile(mpoint);
- if (ft == NULL)
-+#endif
- error(EXIT_FAILURE, 0, _("no entry for %s found in %s"), url,
-- _PATH_FSTAB);
-+ "/etc/fstab");
-
-+#if 0
- if (strcmp(url, ft->fs_spec) != 0) {
- char *fstab_url = decode_octal(ft->fs_spec);
- if (strcmp(url, fstab_url) != 0)
-@@ -642,6 +643,7 @@ static void check_fstab(const dav_args *
+@@ -733,6 +733,7 @@ check_fstab(const dav_args *args)
endfsent();
delete_args(n_args);
@@ -42,28 +24,28 @@ $Id$
}
-@@ -661,7 +663,7 @@ static void check_mountpoint(dav_args *a
+@@ -754,7 +755,7 @@ check_mountpoint(dav_args *args)
struct passwd *pw;
if (*mpoint != '/') {
- char *mp = canonicalize_file_name(mpoint);
+ char *mp = realpath(mpoint, NULL);
- if (mp == NULL)
+ if (!mp)
error(EXIT_FAILURE, 0,
_("can't evaluate path of mount point %s"), mpoint);
-@@ -1754,6 +1756,7 @@ static dav_args *new_args(void) {
-
- static void log_dbg_config(char *argv[], dav_args *args) {
-
+@@ -1824,6 +1825,7 @@ new_args(void)
+ static void
+ log_dbg_cmdline(char *argv[])
+ {
+ /*
size_t len;
- char * cmdline;
+ char *cmdline;
if (argz_create(argv, &cmdline, &len) == 0) {
-@@ -1761,6 +1764,7 @@ static void log_dbg_config(char *argv[],
+@@ -1831,6 +1833,7 @@ log_dbg_cmdline(char *argv[])
syslog(LOG_MAKEPRI(LOG_DAEMON, LOG_DEBUG), cmdline);
free(cmdline);
}
+ */
-
- syslog(LOG_MAKEPRI(LOG_DAEMON, LOG_DEBUG),
- "Configuration:");
+ }
+
+
diff --git a/package/davfs2/patches/patch-src_umount_davfs_c b/package/davfs2/patches/patch-src_umount_davfs_c
index 387476f39..9dd1978d4 100644
--- a/package/davfs2/patches/patch-src_umount_davfs_c
+++ b/package/davfs2/patches/patch-src_umount_davfs_c
@@ -1,12 +1,11 @@
-$Id: update-patches 24 2008-08-31 14:56:13Z wbx $
---- davfs2-1.3.3.orig/src/umount_davfs.c 2008-01-11 22:40:18.000000000 +0100
-+++ davfs2-1.3.3/src/umount_davfs.c 2008-12-08 00:38:43.000000000 +0100
-@@ -114,7 +114,7 @@ int main(int argc, char *argv[]) {
+--- davfs2-1.4.6.orig/src/umount_davfs.c 2009-06-04 20:30:32.000000000 +0200
++++ davfs2-1.4.6/src/umount_davfs.c 2010-05-30 09:53:14.681613660 +0200
+@@ -120,7 +120,7 @@ main(int argc, char *argv[])
if (optind < (argc - 1))
error(EXIT_FAILURE, 0, _("too many arguments"));
- char *mpoint = canonicalize_file_name(argv[optind]);
+ char *mpoint = realpath(argv[optind], NULL);
- if (mpoint == NULL)
+ if (!mpoint)
mpoint = argv[optind];
- if (mpoint == NULL || *mpoint != '/')
+ if (!mpoint || *mpoint != '/')
diff --git a/package/davfs2/patches/patch-src_webdav_c b/package/davfs2/patches/patch-src_webdav_c
index 35ad27492..20b125f1a 100644
--- a/package/davfs2/patches/patch-src_webdav_c
+++ b/package/davfs2/patches/patch-src_webdav_c
@@ -1,55 +1,35 @@
-$Id$
-
- cf. http://sourceforge.net/tracker/index.php?func=detail&aid=1594808&group_id=26275&atid=386747
-
---- davfs2-1.3.3.orig/src/webdav.c 2008-06-28 19:20:07.000000000 +0200
-+++ davfs2-1.3.3/src/webdav.c 2008-12-08 00:37:23.000000000 +0100
-@@ -23,7 +23,6 @@
+--- davfs2-1.4.6.orig/src/webdav.c 2010-02-16 20:29:59.000000000 +0100
++++ davfs2-1.4.6/src/webdav.c 2010-05-30 09:52:01.161613627 +0200
+@@ -52,6 +52,8 @@
+ #include <sys/stat.h>
+ #endif
- #include "config.h"
-
--#include <argz.h>
- #include <errno.h>
- #include <error.h>
- #include <fcntl.h>
-@@ -34,6 +33,7 @@
- #include <stdlib.h>
- #include <string.h>
- #include <syslog.h>
+#include <regex.h>
- #include <time.h>
- #include <unistd.h>
-
-@@ -406,6 +406,11 @@ void dav_init_webdav(const char *scheme,
- suri = (ne_uri *) ne_calloc(sizeof(ne_uri));
- ne_fill_server_uri(session, suri);
-
-+ /* begin of GMX hack */
-+ ne_server_capabilities caps;
-+ ne_options(session, "/", &caps);
-+ /* end of GMX hack */
+
- if (use_locks) {
- locks = ne_lockstore_create();
- if (lock_owner == NULL) {
-@@ -1859,13 +1864,18 @@ static int ssl_verify(void *userdata, in
- "or there might be a man-in-the-middle-attack.\n"));
- printf(_("Accept certificate for this session? [y,N] "));
- char *s = NULL;
-+ regex_t *re;
- size_t n = 0;
- ssize_t len = 0;
+ #include <ne_alloc.h>
+ #include <ne_auth.h>
+ #include <ne_basic.h>
+@@ -1918,6 +1920,7 @@ quota_result(void *userdata, const ne_ur
+ static int
+ ssl_verify(void *userdata, int failures, const ne_ssl_certificate *cert)
+ {
++ regex_t *re;
+ char *issuer = ne_ssl_readable_dname(ne_ssl_cert_issuer(cert));
+ char *subject = ne_ssl_readable_dname(ne_ssl_cert_subject(cert));
+ char *digest = ne_calloc(NE_SSL_DIGESTLEN);
+@@ -1964,8 +1967,13 @@ ssl_verify(void *userdata, int failures,
len = getline(&s, &n, stdin);
if (len < 0)
abort();
-- if (rpmatch(s) < 1)
-- ret = -1;
+- if (rpmatch(s) > 0)
+- ret = 0;
+ if (regcomp(&re, "^[yY]", REG_EXTENDED) != 0) {
+ if (regexec(&re, s, (size_t)0, NULL, 0) < 1) {
+ regfree(&re);
+ ret = -1;
+ }
++ ret = 0;
+ }
free(s);
- }
}
+
diff --git a/package/dillo/Makefile b/package/dillo/Makefile
new file mode 100644
index 000000000..f9c3dbf82
--- /dev/null
+++ b/package/dillo/Makefile
@@ -0,0 +1,31 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:= dillo
+PKG_VERSION:= 2.2
+PKG_RELEASE:= 1
+PKG_MD5SUM:= f8bcd62093f178bed81e46cc54e73f42
+PKG_DESCR:= small graphical web browser
+PKG_SECTION:= x11
+PKG_DEPENDS:= libfltk libxi libiconv libpng zlib libjpeg
+PKG_DEPENDS+= libstdcxx
+PKG_BUILDDEP+= fltk libXi libiconv jpeg libpng zlib
+PKG_URL:= http://www.dillo.org/
+PKG_SITES:= http://www.dillo.org/download/
+
+DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,DILLO,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+TLDFLAGS+= -liconv
+
+post-install:
+ $(INSTALL_DIR) $(IDIR_DILLO)/usr/bin
+ $(INSTALL_BIN) $(WRKINST)/usr/bin/dillo \
+ $(IDIR_DILLO)/usr/bin
+
+include ${TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/dropbear/Makefile b/package/dropbear/Makefile
index 2ab254cd2..2e29902a7 100644
--- a/package/dropbear/Makefile
+++ b/package/dropbear/Makefile
@@ -5,7 +5,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:= dropbear
PKG_VERSION:= 0.52
-PKG_RELEASE:= 2
+PKG_RELEASE:= 3
PKG_MD5SUM:= 1c69ec674481d7745452f68f2ea5597e
PKG_DESCR:= SSH 2 server/client designed for embedded systems
PKG_SECTION:= net
@@ -62,5 +62,11 @@ do-install:
$(INSTALL_DIR) $(IDIR_DBCONVERT)/usr/bin
$(INSTALL_BIN) $(WRKBUILD)/dropbearconvert \
$(IDIR_DBCONVERT)/usr/bin/dropbearconvert
+ # ssh pubkey
+ test -z $(ADK_SSH_PUBKEY) || ( \
+ mkdir -p $(IDIR_DROPBEAR)/etc/dropbear; \
+ echo $(ADK_SSH_PUBKEY) \
+ >$(IDIR_DROPBEAR)/etc/dropbear/authorized_keys; \
+ )
include ${TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/e2fsprogs/Makefile b/package/e2fsprogs/Makefile
index 2bc49ab16..65714b2a5 100644
--- a/package/e2fsprogs/Makefile
+++ b/package/e2fsprogs/Makefile
@@ -4,9 +4,9 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= e2fsprogs
-PKG_VERSION:= 1.41.9
-PKG_RELEASE:= 3
-PKG_MD5SUM:= 52f60a9e19a02f142f5546f1b5681927
+PKG_VERSION:= 1.41.12
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 1b24a21fc0c2381ef420961cbfec733f
PKG_DESCR:= Ext2/3/4 filesystem utilities
PKG_SECTION:= admin
PKG_DEPENDS:= libcom-err libuuid libblkid libpthread
diff --git a/package/fetchmail/Makefile b/package/fetchmail/Makefile
index f22a409ab..7014a7e01 100644
--- a/package/fetchmail/Makefile
+++ b/package/fetchmail/Makefile
@@ -10,7 +10,6 @@ PKG_MD5SUM:= 72c20ad2b9629f1a109668b05a84d823
PKG_DESCR:= fetch mail from a POP or IMAP server
PKG_SECTION:= text
ifeq (${ADK_PACKAGE_FETCHMAIL_SSL},y)
-PKG_DEPENDS:= libopenssl
PKG_BUILDDEP+= openssl
endif
PKG_URL:= http://fetchmail.berlios.de/
@@ -20,6 +19,7 @@ DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
PKG_FLAVOURS:= SSL
PKGFD_SSL:= enable SSL support
+PKGFS_SSL:= libopenssl
include ${TOPDIR}/mk/package.mk
diff --git a/package/ffmpeg/Makefile b/package/ffmpeg/Makefile
index a2d577fbe..669c168ba 100644
--- a/package/ffmpeg/Makefile
+++ b/package/ffmpeg/Makefile
@@ -4,9 +4,9 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= ffmpeg
-PKG_VERSION:= 0.5
-PKG_RELEASE:= 2
-PKG_MD5SUM:= be8503f15c3b81ba00eb8379ca8dcf33
+PKG_VERSION:= 0.6
+PKG_RELEASE:= 1
+PKG_MD5SUM:= d6142a9a5821d6a6262a6edb903faa24
PKG_DESCR:= solution to record, convert and stream audio and video
PKG_SECTION:= sound
PKG_DEPENDS:= libfaad2
@@ -25,6 +25,7 @@ CONFIG_STYLE:= minimal
include ${TOPDIR}/mk/cpu.mk
CONFIGURE_ARGS:= --prefix=/usr \
+ --target-os=linux \
--arch=${CPU_ARCH} \
--enable-cross-compile \
--source-path=${WRKSRC} \
@@ -39,7 +40,6 @@ CONFIGURE_ARGS:= --prefix=/usr \
--disable-ffmpeg \
--disable-ffplay \
--disable-ffserver \
- --disable-vhook \
--enable-gpl \
--enable-swscale \
--enable-postproc \
diff --git a/package/ffmpeg/patches/patch-configure b/package/ffmpeg/patches/patch-configure
deleted file mode 100644
index 5ff0e14c8..000000000
--- a/package/ffmpeg/patches/patch-configure
+++ /dev/null
@@ -1,63 +0,0 @@
---- ffmpeg-0.5.orig/configure 2009-03-01 18:57:14.000000000 +0100
-+++ ffmpeg-0.5/configure 2010-01-06 20:34:48.343750000 +0100
-@@ -1167,7 +1167,7 @@ arch=`uname -m`
- cpu="generic"
-
- # OS
--target_os=$(tolower $(uname -s))
-+target_os=linux
-
- # configurable options
- enable debug
-@@ -2486,51 +2486,6 @@ cmp -s $TMPH config.h &&
-
- rm -f $TMPC $TMPE $TMPH $TMPO $TMPS $TMPSH
-
--# build tree in object directory if source path is different from current one
--if enabled source_path_used; then
-- DIRS="\
-- doc \
-- libavcodec \
-- libavcodec/alpha \
-- libavcodec/arm \
-- libavcodec/bfin \
-- libavcodec/mlib \
-- libavcodec/ppc \
-- libavcodec/sh4 \
-- libavcodec/sparc \
-- libavcodec/x86 \
-- libavdevice \
-- libavfilter \
-- libavformat \
-- libavutil \
-- libpostproc \
-- libswscale \
-- tests \
-- tools \
-- vhook \
-- "
-- FILES="\
-- Makefile \
-- common.mak \
-- subdir.mak \
-- doc/texi2pod.pl \
-- libavcodec/Makefile \
-- libavdevice/Makefile \
-- libavfilter/Makefile \
-- libavformat/Makefile \
-- libavutil/Makefile \
-- libpostproc/Makefile \
-- libswscale/Makefile \
-- "
-- for dir in $DIRS ; do
-- mkdir -p $dir
-- done
-- for f in $FILES ; do
-- $ln_s "$source_path/$f" $f
-- done
--fi
--
--
- # build pkg-config files
-
- pkgconfig_generate(){
diff --git a/package/firefox/Makefile b/package/firefox/Makefile
index 0009c48e2..a5acfd29a 100644
--- a/package/firefox/Makefile
+++ b/package/firefox/Makefile
@@ -4,23 +4,23 @@
include $(TOPDIR)/rules.mk
PKG_NAME:= firefox
-PKG_VERSION:= 3.6.3
+PKG_VERSION:= 3.6.6
PKG_RELEASE:= 1
-PKG_MD5SUM:= 5e4541ab23084b7b14ba228291ce2688
+PKG_MD5SUM:= c9a071b31bb90d05edfb93117d0a7537
PKG_DESCR:= graphical webbrowser
PKG_SECTION:= x11
-PKG_DEPENDS:= libpthread alsa-lib dbus-glib glib gtk+ libnotify libidl
+PKG_DEPENDS:= libpthread alsa-lib dbus-glib glib libgtk+ libnotify libidl
PKG_DEPENDS+= nspr nss libjpeg atk pango cairo libxt libx11 libstdcxx
PKG_DEPENDS+= libxdamage libxfixes
PKG_BUILDDEP+= alsa-lib dbus-glib glib gtk+ libnotify libIDL libX11 libXt
PKG_BUILDDEP+= nspr nss jpeg
PKG_URL:= http://www.mozilla.org/
-PKG_SITES:= http://releases.mozilla.org/pub/mozilla.org/firefox/releases/3.6.3/source/
+PKG_SITES:= http://releases.mozilla.org/pub/mozilla.org/firefox/releases/${PKG_VERSION}/source/
DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.source.tar.bz2
WRKDIST= ${WRKDIR}/mozilla-1.9.2
-PKG_TARGET_DEPENDS:= alix1c x86_qemu x86_64_qemu shuttle ibmx40
+PKG_TARGET_DEPENDS:= alix1c x86_qemu x86_64_qemu shuttle ibmx40 lemote
include $(TOPDIR)/mk/package.mk
@@ -28,7 +28,8 @@ $(eval $(call PKG_template,FIREFOX,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${P
CONFIGURE_ENV+= CROSS_COMPILE=1 HOST_CC="${HOSTCC}" HOST_CFLAGS="${HOSTCFLAGS}" \
HOST_CXX="${HOSTCXX}" HOST_CXXFLAGS="${HOSTCXXFLAGS}" \
- HOST_LIBIDL_CONFIG="/usr/bin/libIDL-config-2"
+ HOST_LIBIDL_CONFIG="/usr/bin/libIDL-config-2" \
+ ac_cv_thread_keyword=no
CONFIGURE_ARGS+= --enable-application=browser \
--with-system-zlib \
--with-system-jpeg \
@@ -41,12 +42,14 @@ CONFIGURE_ARGS+= --enable-application=browser \
--disable-gnomevfs \
--disable-optimize \
--disable-necko-wifi \
+ --disable-svg \
+ --disable-mathml \
--disable-crashreporter
post-install:
$(INSTALL_DIR) $(IDIR_FIREFOX)/usr/bin
$(INSTALL_DIR) $(IDIR_FIREFOX)/usr/lib
- $(CP) $(WRKINST)/usr/lib/firefox-3.6.3 \
+ $(CP) $(WRKINST)/usr/lib/firefox-${PKG_VERSION} \
$(IDIR_FIREFOX)/usr/lib/
$(CP) $(WRKINST)/usr/bin/firefox \
$(IDIR_FIREFOX)/usr/bin
diff --git a/package/firefox/patches/patch-content_media_nsAudioStream_cpp b/package/firefox/patches/patch-content_media_nsAudioStream_cpp
new file mode 100644
index 000000000..1452b9b6b
--- /dev/null
+++ b/package/firefox/patches/patch-content_media_nsAudioStream_cpp
@@ -0,0 +1,11 @@
+--- mozilla-1.9.2.orig/content/media/nsAudioStream.cpp 2010-04-02 18:02:19.000000000 +0200
++++ mozilla-1.9.2/content/media/nsAudioStream.cpp 2010-06-11 21:28:33.522214080 +0200
+@@ -246,7 +246,7 @@ float nsAudioStream::GetPosition()
+ #if defined(XP_WIN)
+ positionType = SA_POSITION_WRITE_HARDWARE;
+ #endif
+- PRInt64 position = 0;
++ int64_t position = 0;
+ if (sa_stream_get_position(static_cast<sa_stream_t*>(mAudioHandle),
+ positionType, &position) == SA_SUCCESS) {
+ return (position / float(mRate) / mChannels / sizeof(short));
diff --git a/package/fltk/Makefile b/package/fltk/Makefile
new file mode 100644
index 000000000..66a6bbff3
--- /dev/null
+++ b/package/fltk/Makefile
@@ -0,0 +1,27 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:= fltk
+PKG_VERSION:= 2.0
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 557544badbacca4ee1ebb2448f6e1f8a
+PKG_DESCR:= fast light toolkit
+PKG_SECTION:= libs
+PKG_BUILDDEP+= libX11 libXi MesaLib freeglut
+PKG_URL:= http://www.fltk.org/
+PKG_SITES:= http://ftp.funet.fi/pub/mirrors/ftp.easysw.com/pub/fltk/snapshots/
+
+DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.x-r7513.tar.bz2
+WRKDIST= ${WRKDIR}/${PKG_NAME}-2.0.x-r7513
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,LIBFLTK,libfltk,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+post-install:
+ $(INSTALL_DIR) $(IDIR_LIBFLTK)/usr/lib
+ $(CP) ${WRKINST}/usr/lib/libfltk*.so* $(IDIR_LIBFLTK)/usr/lib
+
+include ${TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/fltk/patches/patch-makeinclude_in b/package/fltk/patches/patch-makeinclude_in
new file mode 100644
index 000000000..7c2fd2f8b
--- /dev/null
+++ b/package/fltk/patches/patch-makeinclude_in
@@ -0,0 +1,11 @@
+--- fltk-2.0.x-r7513.orig/makeinclude.in 2006-04-11 00:06:06.000000000 +0200
++++ fltk-2.0.x-r7513/makeinclude.in 2010-06-13 17:18:11.503473158 +0200
+@@ -45,7 +45,7 @@ NROFF = @NROFF@
+ RM = rm -f
+ RMDIR = rm -rf
+ SHELL = /bin/sh
+-STRIP = strip
++STRIP = echo
+
+ # compiler names:
+ CC = @CC@
diff --git a/package/fltk/patches/patch-makeinclude_in.orig b/package/fltk/patches/patch-makeinclude_in.orig
new file mode 100644
index 000000000..ddee413e3
--- /dev/null
+++ b/package/fltk/patches/patch-makeinclude_in.orig
@@ -0,0 +1,11 @@
+--- fltk-2.0.x-r7513.orig/makeinclude.in 2006-04-11 00:06:06.000000000 +0200
++++ fltk-2.0.x-r7513/makeinclude.in 2010-06-13 17:15:29.633155678 +0200
+@@ -45,7 +45,7 @@ NROFF = @NROFF@
+ RM = rm -f
+ RMDIR = rm -rf
+ SHELL = /bin/sh
+-STRIP = strip
++STRIP =
+
+ # compiler names:
+ CC = @CC@
diff --git a/package/fluxbox/Makefile b/package/fluxbox/Makefile
new file mode 100644
index 000000000..f583e1edd
--- /dev/null
+++ b/package/fluxbox/Makefile
@@ -0,0 +1,40 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:= fluxbox
+PKG_VERSION:= 1.1.1
+PKG_RELEASE:= 1
+PKG_MD5SUM:= e0be927617be4ffc1ddc79513f4eb0f9
+PKG_DESCR:= Fluxbox is an X11 window manager featuring tabs and an iconbar
+PKG_SECTION:= x11
+PKG_DEPENDS:= libstdcxx
+PKG_BUILDDEP:= libXpm
+ifeq (${ADK_PACKAGE_FLUXBOX_WITH_IMLIB2},y)
+PKG_BUILDDEP+= imlib2
+endif
+PKG_URL:= http://www.fluxbox.org
+PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=fluxbox/}
+
+PKG_FLAVOURS:= WITH_IMLIB2
+PKGFD_WITH_IMLIB2:= enable imlib2 support
+PKGFS_WITH_IMLIB2:= imlib2
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,FLUXBOX,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+ifeq (${ADK_PACKAGE_FLUXBOX_WITH_IMLIB2},y)
+CONFIGURE_ARGS+= --enable-imlib2
+else
+CONFIGURE_ARGS+= --disable-imlib2
+endif
+
+post-install:
+ $(INSTALL_DIR) $(IDIR_FLUXBOX)/usr/{bin,share}
+ $(INSTALL_BIN) $(WRKINST)/usr/bin/* \
+ $(IDIR_FLUXBOX)/usr/bin
+ ${CP} ${WRKINST}/usr/share/fluxbox ${IDIR_FLUXBOX}/usr/share/
+
+include ${TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/font-misc-misc/Makefile b/package/font-misc-misc/Makefile
index f60f867ad..2487a68c8 100644
--- a/package/font-misc-misc/Makefile
+++ b/package/font-misc-misc/Makefile
@@ -19,6 +19,8 @@ include $(TOPDIR)/mk/package.mk
$(eval $(call PKG_template,FONT_MISC_MISC,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+CONFIGURE_ENV+= MAPFILES_PATH=${STAGING_DIR}/usr/share/fonts/X11/util
+
post-install:
$(INSTALL_DIR) $(IDIR_FONT_MISC_MISC)/usr/share/fonts/X11/misc
$(CP) ${WRKINST}/usr/share/fonts/X11/misc/* \
diff --git a/package/font-misc-misc/patches/patch-configure b/package/font-misc-misc/patches/patch-configure
new file mode 100644
index 000000000..acbc7f8ce
--- /dev/null
+++ b/package/font-misc-misc/patches/patch-configure
@@ -0,0 +1,11 @@
+--- font-misc-misc-1.1.0.orig/configure 2009-10-11 03:23:03.000000000 +0200
++++ font-misc-misc-1.1.0/configure 2010-06-15 00:35:59.189800221 +0200
+@@ -5544,7 +5544,7 @@ $as_echo "yes" >&6; }
+ fi
+ { $as_echo "$as_me:$LINENO: checking for ucs2any encoding data files" >&5
+ $as_echo_n "checking for ucs2any encoding data files... " >&6; }
+- MAPFILES_PATH=`pkg-config --variable=mapdir fontutil`
++# MAPFILES_PATH=`pkg-config --variable=mapdir fontutil`
+
+ { $as_echo "$as_me:$LINENO: result: ${MAPFILES_PATH}" >&5
+ $as_echo "${MAPFILES_PATH}" >&6; }
diff --git a/package/font-util/Makefile b/package/font-util/Makefile
index cdd1632b2..b3faf7f7e 100644
--- a/package/font-util/Makefile
+++ b/package/font-util/Makefile
@@ -16,7 +16,17 @@ include ${TOPDIR}/mk/package.mk
$(eval $(call PKG_template,FONT_UTIL,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
-post-install:
+# XXX: Push the mapping files to a place where we can find them
+# again when compiling the actual fonts. This is ugly as hell,
+# especially as all font packages still need patching to avoid
+# calling pkg-config (which we don't provide) in order to
+# automatically find the mappings.
+fonts-hack:
+ ${INSTALL_DIR} ${STAGING_DIR}/usr/share/fonts/X11/util
+ ${CP} ${WRKINST}/usr/share/fonts/X11/util/* \
+ ${STAGING_DIR}/usr/share/fonts/X11/util
+
+post-install: fonts-hack
${INSTALL_DIR} ${IDIR_FONT_UTIL}/usr/share/fonts/X11/util
${CP} ${WRKINST}/usr/share/fonts/X11/util/* \
${IDIR_FONT_UTIL}/usr/share/fonts/X11/util
diff --git a/package/freeglut/Makefile b/package/freeglut/Makefile
new file mode 100644
index 000000000..fada37f67
--- /dev/null
+++ b/package/freeglut/Makefile
@@ -0,0 +1,23 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:= freeglut
+PKG_VERSION:= 2.6.0
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 39f0f2de89f399529d2b981188082218
+PKG_DESCR:= OpenGL Utility Toolkit
+PKG_SECTION:= libs
+PKG_URL:= http://www.freeglut.org/
+PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=freeglut/}
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,FREEGLUT,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+post-install:
+ $(INSTALL_DIR) $(IDIR_FREEGLUT)/usr/lib
+ $(CP) ${WRKINST}/usr/lib/libglut.so* $(IDIR_FREEGLUT)/usr/lib
+
+include ${TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/git/Makefile b/package/git/Makefile
index fb9f114a3..a3c9a8fd6 100644
--- a/package/git/Makefile
+++ b/package/git/Makefile
@@ -4,9 +4,9 @@
include $(TOPDIR)/rules.mk
PKG_NAME:= git
-PKG_VERSION:= 1.7.0.1
+PKG_VERSION:= 1.7.1
PKG_RELEASE:= 1
-PKG_MD5SUM:= 05485caf5c503ce378a87759bc3a0509
+PKG_MD5SUM:= d2fefae2b787a19601c09d89975ce5fb
PKG_DESCR:= fast version control system
PKG_SECTION:= scm
PKG_DEPENDS:= libopenssl libcurl libexpat libpthread
diff --git a/package/gpm/files/gpm.init b/package/gpm/files/gpm.init
new file mode 100644
index 000000000..812fc1bf7
--- /dev/null
+++ b/package/gpm/files/gpm.init
@@ -0,0 +1,28 @@
+#!/bin/sh
+#PKG gpm
+#INIT 80
+
+. /etc/rc.conf
+
+case $1 in
+autostop) ;;
+autostart)
+ test x"${gpm:-NO}" = x"NO" && exit 0
+ exec sh $0 start
+ ;;
+start)
+ /usr/sbin/gpm $gpm_flags
+ ;;
+stop)
+ pkill gpm
+ ;;
+restart)
+ sh $0 stop
+ sh $0 start
+ ;;
+*)
+ echo "Usage: $0 {start | stop | restart}"
+ exit 1
+ ;;
+esac
+exit $?
diff --git a/package/gpm/files/gpm.postinst b/package/gpm/files/gpm.postinst
new file mode 100644
index 000000000..82e63cf25
--- /dev/null
+++ b/package/gpm/files/gpm.postinst
@@ -0,0 +1,4 @@
+#!/bin/sh
+. $IPKG_INSTROOT/etc/functions.sh
+add_rcconf 'options passed to gpm' gpm_flags "-m /dev/psaux -t ps2"
+add_rcconf gpm gpm NO
diff --git a/package/grub-bin/Makefile b/package/grub-bin/Makefile
index f7ae5c08b..c1d412b32 100644
--- a/package/grub-bin/Makefile
+++ b/package/grub-bin/Makefile
@@ -4,17 +4,17 @@
include ${TOPDIR}/rules.mk
# compiled with i486 toolchain, statically linked with uClibc
-# cross-compile on amd64 does not work, so provide a binary package
+# cross-compiling is difficult, so provide a binary package
PKG_NAME:= grub-bin
-PKG_VERSION:= 1.97.1
+PKG_VERSION:= 1.98
PKG_RELEASE:= 1
-PKG_MD5SUM:= 24961a39e63d8ec16d765aad3a301cda
-PKG_DESCR:= GRUB bootloader
-PKG_SECTION:= sys
+PKG_MD5SUM:= 958f9fd415a0bd52fe115176afbf19d9
+PKG_DESCR:= GRUB2 bootloader (binary package)
+PKG_SECTION:= base
PKG_SITES:= http://openadk.org/distfiles/
PKG_TARGET_DEPENDS:= x86 x86_64
-CFLINE_GRUB_BIN:= select BUSYBOX_FEATURE_STAT_FORMAT
+CFLINE_GRUB_BIN:= select BUSYBOX_FEATURE_STAT_FORMAT\n\tdepends on !ADK_TARGET_ROOTFS_INITRAMFS_PIGGYBACK && !ADK_TARGET_ROOTFS_INITRAMFS
include ${TOPDIR}/mk/package.mk
diff --git a/package/grub/Makefile b/package/grub/Makefile
index 37d20708a..98abae051 100644
--- a/package/grub/Makefile
+++ b/package/grub/Makefile
@@ -4,10 +4,10 @@
include $(TOPDIR)/rules.mk
PKG_NAME:= grub
-PKG_VERSION:= 1.97.1
+PKG_VERSION:= 1.98
PKG_RELEASE:= 1
-PKG_MD5SUM:= 66fe18cd9318e3d67a34d7b7a8e7b1f6
-PKG_DESCR:= GRand Unified Bootloader
+PKG_MD5SUM:= c0bcf60e524739bb64e3a2d4e3732a59
+PKG_DESCR:= GRUB2 bootloader (source package)
PKG_SECTION:= base
PKG_URL:= http://www.gnu.org/software/grub
PKG_SITES:= ftp://alpha.gnu.org/gnu/grub/
@@ -19,8 +19,7 @@ include $(TOPDIR)/mk/package.mk
$(eval $(call PKG_template,GRUB,${PKG_NAME},$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
-CONFIGURE_ARGS+= --disable-grub-emu \
- --disable-efiemu \
+CONFIGURE_ARGS+= --disable-efiemu \
--disable-grub-mkfont \
--disable-grub-fstest
diff --git a/package/grub/patches/patch-conf_common_mk b/package/grub/patches/patch-conf_common_mk
new file mode 100644
index 000000000..ea4ffc0df
--- /dev/null
+++ b/package/grub/patches/patch-conf_common_mk
@@ -0,0 +1,11 @@
+--- grub-1.98.orig/conf/common.mk 2010-03-06 21:52:26.000000000 +0100
++++ grub-1.98/conf/common.mk 2010-06-26 18:20:29.307157138 +0200
+@@ -11159,7 +11159,7 @@ trigtables.c: gentrigtables
+ ./gentrigtables > $@
+ DISTCLEANFILES += trigtables.c
+ gentrigtables: gentrigtables.c
+- $(CC) -o $@ $^ $(CPPFLAGS) -lm
++ $(HOSTCC) -o $@ $^ $(CPPFLAGS) -lm
+ DISTCLEANFILES += gentrigtables
+
+ pkglib_MODULES += setjmp.mod
diff --git a/package/grub/patches/patch-include_grub_i18n_h b/package/grub/patches/patch-include_grub_i18n_h
new file mode 100644
index 000000000..41151f706
--- /dev/null
+++ b/package/grub/patches/patch-include_grub_i18n_h
@@ -0,0 +1,11 @@
+--- grub-1.98.orig/include/grub/i18n.h 2010-03-06 21:51:37.000000000 +0100
++++ grub-1.98/include/grub/i18n.h 2010-06-26 15:31:22.860562533 +0200
+@@ -25,7 +25,7 @@
+ extern const char *(*EXPORT_VAR(grub_gettext)) (const char *s);
+
+ /* NLS can be disabled through the configure --disable-nls option. */
+-#if ENABLE_NLS
++#if defined(ENABLE_NLS)
+
+ # ifdef GRUB_UTIL
+
diff --git a/package/grub/patches/patch-include_grub_misc_h b/package/grub/patches/patch-include_grub_misc_h
index 463e63dac..fb3e46108 100644
--- a/package/grub/patches/patch-include_grub_misc_h
+++ b/package/grub/patches/patch-include_grub_misc_h
@@ -1,6 +1,6 @@
---- grub-1.97.1.orig/include/grub/misc.h 2009-11-09 16:48:16.000000000 +0100
-+++ grub-1.97.1/include/grub/misc.h 2009-11-29 12:07:10.920475755 +0100
-@@ -74,14 +74,6 @@ grub_strncat (char *dest, const char *sr
+--- grub-1.98.orig/include/grub/misc.h 2010-03-06 21:51:37.000000000 +0100
++++ grub-1.98/include/grub/misc.h 2010-06-26 18:54:44.075171713 +0200
+@@ -91,14 +91,6 @@ grub_strncat (char *dest, const char *sr
return dest;
}
diff --git a/package/grub/patches/patch-kern_misc_c b/package/grub/patches/patch-kern_misc_c
index 16b77a42c..2912e2564 100644
--- a/package/grub/patches/patch-kern_misc_c
+++ b/package/grub/patches/patch-kern_misc_c
@@ -1,6 +1,6 @@
---- grub-1.97.1.orig/kern/misc.c 2009-11-09 16:48:16.000000000 +0100
-+++ grub-1.97.1/kern/misc.c 2009-11-29 11:48:55.492463135 +0100
-@@ -51,23 +51,6 @@ grub_memmove (void *dest, const void *sr
+--- grub-1.98.orig/kern/misc.c 2010-03-06 21:51:37.000000000 +0100
++++ grub-1.98/kern/misc.c 2010-06-26 20:12:26.711214130 +0200
+@@ -64,23 +64,6 @@ grub_memmove (void *dest, const void *sr
return dest;
}
@@ -24,29 +24,23 @@
char *
grub_strcpy (char *dest, const char *src)
{
-@@ -182,10 +165,6 @@ grub_memcmp (const void *s1, const void
-
- return 0;
- }
--#ifndef APPLE_CC
--int memcmp (const void *s1, const void *s2, grub_size_t n)
-- __attribute__ ((alias ("grub_memcmp")));
--#endif
-
- int
- grub_strcmp (const char *s1, const char *s2)
-@@ -467,10 +446,6 @@ grub_memset (void *s, int c, grub_size_t
+@@ -516,15 +499,6 @@ grub_memset (void *s, int c, grub_size_t
return s;
}
-#ifndef APPLE_CC
-void *memset (void *s, int c, grub_size_t n)
- __attribute__ ((alias ("grub_memset")));
+-#else
+-void *memset (void *s, int c, grub_size_t n)
+-{
+- return grub_memset (s, c, n);
+-}
-#endif
grub_size_t
grub_strlen (const char *s)
-@@ -1002,11 +977,6 @@ grub_abort (void)
+@@ -1053,11 +1027,6 @@ grub_abort (void)
grub_exit ();
}
diff --git a/package/grub/patches/patch-kern_misc_c.orig b/package/grub/patches/patch-kern_misc_c.orig
new file mode 100644
index 000000000..52a7ed8ee
--- /dev/null
+++ b/package/grub/patches/patch-kern_misc_c.orig
@@ -0,0 +1,26 @@
+--- grub-1.98.orig/kern/misc.c 2010-03-06 21:51:37.000000000 +0100
++++ grub-1.98/kern/misc.c 2010-06-26 19:44:00.999168677 +0200
+@@ -64,23 +64,6 @@ grub_memmove (void *dest, const void *sr
+ return dest;
+ }
+
+-#ifndef APPLE_CC
+-void *memmove (void *dest, const void *src, grub_size_t n)
+- __attribute__ ((alias ("grub_memmove")));
+-/* GCC emits references to memcpy() for struct copies etc. */
+-void *memcpy (void *dest, const void *src, grub_size_t n)
+- __attribute__ ((alias ("grub_memmove")));
+-#else
+-void *memcpy (void *dest, const void *src, grub_size_t n)
+-{
+- return grub_memmove (dest, src, n);
+-}
+-void *memmove (void *dest, const void *src, grub_size_t n)
+-{
+- return grub_memmove (dest, src, n);
+-}
+-#endif
+-
+ char *
+ grub_strcpy (char *dest, const char *src)
+ {
diff --git a/package/grub/patches/patch-lib_libgcrypt-grub_cipher_camellia_c b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_camellia_c
new file mode 100644
index 000000000..8b3594525
--- /dev/null
+++ b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_camellia_c
@@ -0,0 +1,29 @@
+--- grub-1.98.orig/lib/libgcrypt-grub/cipher/camellia.c 2010-03-06 21:52:26.000000000 +0100
++++ grub-1.98/lib/libgcrypt-grub/cipher/camellia.c 2010-06-26 20:49:20.915278106 +0200
+@@ -26,6 +26,7 @@
+ */
+
+
++#include <grub/misc.h>
+ #include "camellia.h"
+
+ /* u32 must be 32bit word */
+@@ -946,13 +947,13 @@ void camellia_setup192(const unsigned ch
+ unsigned char kk[32];
+ u32 krll, krlr, krrl,krrr;
+
+- memcpy(kk, key, 24);
+- memcpy((unsigned char *)&krll, key+16,4);
+- memcpy((unsigned char *)&krlr, key+20,4);
++ grub_memcpy(kk, key, 24);
++ grub_memcpy((unsigned char *)&krll, key+16,4);
++ grub_memcpy((unsigned char *)&krlr, key+20,4);
+ krrl = ~krll;
+ krrr = ~krlr;
+- memcpy(kk+24, (unsigned char *)&krrl, 4);
+- memcpy(kk+28, (unsigned char *)&krrr, 4);
++ grub_memcpy(kk+24, (unsigned char *)&krrl, 4);
++ grub_memcpy(kk+28, (unsigned char *)&krrr, 4);
+ camellia_setup256(kk, subkey);
+ return;
+ }
diff --git a/package/grub/patches/patch-lib_libgcrypt-grub_cipher_camellia_c.orig b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_camellia_c.orig
new file mode 100644
index 000000000..6e14215b4
--- /dev/null
+++ b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_camellia_c.orig
@@ -0,0 +1,21 @@
+--- grub-1.98.orig/lib/libgcrypt-grub/cipher/camellia.c 2010-03-06 21:52:26.000000000 +0100
++++ grub-1.98/lib/libgcrypt-grub/cipher/camellia.c 2010-06-26 20:41:39.651169327 +0200
+@@ -946,13 +946,13 @@ void camellia_setup192(const unsigned ch
+ unsigned char kk[32];
+ u32 krll, krlr, krrl,krrr;
+
+- memcpy(kk, key, 24);
+- memcpy((unsigned char *)&krll, key+16,4);
+- memcpy((unsigned char *)&krlr, key+20,4);
++ grub_memcpy(kk, key, 24);
++ grub_memcpy((unsigned char *)&krll, key+16,4);
++ grub_memcpy((unsigned char *)&krlr, key+20,4);
+ krrl = ~krll;
+ krrr = ~krlr;
+- memcpy(kk+24, (unsigned char *)&krrl, 4);
+- memcpy(kk+28, (unsigned char *)&krrr, 4);
++ grub_memcpy(kk+24, (unsigned char *)&krrl, 4);
++ grub_memcpy(kk+28, (unsigned char *)&krrr, 4);
+ camellia_setup256(kk, subkey);
+ return;
+ }
diff --git a/package/grub/patches/patch-lib_libgcrypt-grub_cipher_des_c b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_des_c
new file mode 100644
index 000000000..c2c93be5a
--- /dev/null
+++ b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_des_c
@@ -0,0 +1,11 @@
+--- grub-1.98.orig/lib/libgcrypt-grub/cipher/des.c 2010-03-06 21:52:26.000000000 +0100
++++ grub-1.98/lib/libgcrypt-grub/cipher/des.c 2010-06-26 20:35:49.335279651 +0200
+@@ -119,7 +119,7 @@
+ #include "cipher.h"
+
+ #if defined(__GNUC__) && defined(__GNU_LIBRARY__)
+-#define working_memcmp memcmp
++#define working_memcmp grub_memcmp
+ #else
+ /*
+ * According to the SunOS man page, memcmp returns indeterminate sign
diff --git a/package/grub/patches/patch-lib_libgcrypt-grub_cipher_dsa_c b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_dsa_c
new file mode 100644
index 000000000..91b467779
--- /dev/null
+++ b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_dsa_c
@@ -0,0 +1,29 @@
+--- grub-1.98.orig/lib/libgcrypt-grub/cipher/dsa.c 2010-03-06 21:52:26.000000000 +0100
++++ grub-1.98/lib/libgcrypt-grub/cipher/dsa.c 2010-06-26 20:41:13.511279436 +0200
+@@ -157,7 +157,7 @@ gen_k( gcry_mpi_t q )
+ to get_random_bytes() and use this the here maybe it is
+ easier to do this directly in random.c. */
+ char *pp = gcry_random_bytes_secure( 4, GCRY_STRONG_RANDOM );
+- memcpy( rndbuf,pp, 4 );
++ grub_memcpy( rndbuf,pp, 4 );
+ gcry_free(pp);
+ }
+ _gcry_mpi_set_buffer( k, rndbuf, nbytes, 0 );
+@@ -337,7 +337,7 @@ generate (DSA_secret_key *sk, unsigned i
+ else
+ { /* Change only some of the higher bits (= 2 bytes)*/
+ char *r = gcry_random_bytes_secure (2, random_level);
+- memcpy(rndbuf, r, 2 );
++ grub_memcpy(rndbuf, r, 2 );
+ gcry_free(r);
+ }
+
+@@ -713,7 +713,7 @@ dsa_generate_ext (int algo, unsigned int
+ gcry_sexp_release (l1);
+ return GPG_ERR_INV_OBJ; /* No value or value too large. */
+ }
+- memcpy (buf, s, n);
++ grub_memcpy (buf, s, n);
+ buf[n] = 0;
+ qbits = (unsigned int)strtoul (buf, NULL, 0);
+ gcry_sexp_release (l1);
diff --git a/package/grub/patches/patch-lib_libgcrypt-grub_cipher_elgamal_c b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_elgamal_c
new file mode 100644
index 000000000..5cd42146e
--- /dev/null
+++ b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_elgamal_c
@@ -0,0 +1,20 @@
+--- grub-1.98.orig/lib/libgcrypt-grub/cipher/elgamal.c 2010-03-06 21:52:26.000000000 +0100
++++ grub-1.98/lib/libgcrypt-grub/cipher/elgamal.c 2010-06-26 20:40:56.115156639 +0200
+@@ -212,7 +212,7 @@ gen_k( gcry_mpi_t p, int small_k )
+ easier to do this directly in random.c Anyway, it is
+ highly inlikely that we will ever reach this code. */
+ char *pp = gcry_random_bytes_secure( 4, GCRY_STRONG_RANDOM );
+- memcpy( rndbuf, pp, 4 );
++ grub_memcpy( rndbuf, pp, 4 );
+ gcry_free(pp);
+ }
+ _gcry_mpi_set_buffer( k, rndbuf, nbytes, 0 );
+@@ -308,7 +308,7 @@ generate ( ELG_secret_key *sk, unsigned
+ {
+ char *r = gcry_random_bytes_secure( 2,
+ GCRY_VERY_STRONG_RANDOM );
+- memcpy(rndbuf, r, 2 );
++ grub_memcpy(rndbuf, r, 2 );
+ gcry_free(r);
+ }
+ }
diff --git a/package/grub/patches/patch-lib_libgcrypt-grub_cipher_md4_c b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_md4_c
new file mode 100644
index 000000000..8bbe886a7
--- /dev/null
+++ b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_md4_c
@@ -0,0 +1,11 @@
+--- grub-1.98.orig/lib/libgcrypt-grub/cipher/md4.c 2010-03-06 21:52:26.000000000 +0100
++++ grub-1.98/lib/libgcrypt-grub/cipher/md4.c 2010-06-26 20:24:28.691278909 +0200
+@@ -109,7 +109,7 @@ transform ( MD4_CONTEXT *ctx, const unsi
+ }
+ }
+ #else
+- memcpy (in, data, 64);
++ grub_memcpy (in, data, 64);
+ #endif
+
+ /* Round 1. */
diff --git a/package/grub/patches/patch-lib_libgcrypt-grub_cipher_md5_c b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_md5_c
new file mode 100644
index 000000000..53aa3e69f
--- /dev/null
+++ b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_md5_c
@@ -0,0 +1,11 @@
+--- grub-1.98.orig/lib/libgcrypt-grub/cipher/md5.c 2010-03-06 21:52:26.000000000 +0100
++++ grub-1.98/lib/libgcrypt-grub/cipher/md5.c 2010-06-26 20:24:19.631157281 +0200
+@@ -100,7 +100,7 @@ transform ( MD5_CONTEXT *ctx, const unsi
+ }
+ }
+ #else
+- memcpy( correct_words, data, 64 );
++ grub_memcpy( correct_words, data, 64 );
+ #endif
+
+
diff --git a/package/grub/patches/patch-lib_libgcrypt-grub_cipher_primegen_c b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_primegen_c
new file mode 100644
index 000000000..c97d88c1d
--- /dev/null
+++ b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_primegen_c
@@ -0,0 +1,38 @@
+--- grub-1.98.orig/lib/libgcrypt-grub/cipher/primegen.c 2010-03-06 21:52:26.000000000 +0100
++++ grub-1.98/lib/libgcrypt-grub/cipher/primegen.c 2010-06-26 20:42:06.831276628 +0200
+@@ -1478,7 +1478,7 @@ _gcry_generate_fips186_2_prime (unsigned
+ }
+
+ /* Step 2: U = sha1(seed) ^ sha1((seed+1) mod 2^{qbits}) */
+- memcpy (seed_plus, seed, seedlen);
++ grub_memcpy (seed_plus, seed, seedlen);
+ for (i=seedlen-1; i >= 0; i--)
+ {
+ seed_plus[i]++;
+@@ -1596,7 +1596,7 @@ _gcry_generate_fips186_2_prime (unsigned
+ *r_counter = counter;
+ if (r_seed && r_seedlen)
+ {
+- memcpy (seed_plus, seed, seedlen);
++ grub_memcpy (seed_plus, seed, seedlen);
+ *r_seed = seed_plus;
+ seed_plus = NULL;
+ *r_seedlen = seedlen;
+@@ -1751,7 +1751,7 @@ _gcry_generate_fips186_3_prime (unsigned
+
+ /* Step 11. Note that we do no use an explicit offset but increment
+ SEED_PLUS accordingly. */
+- memcpy (seed_plus, seed, seedlen);
++ grub_memcpy (seed_plus, seed, seedlen);
+ counter = 0;
+
+ /* Generate P. */
+@@ -1838,7 +1838,7 @@ _gcry_generate_fips186_3_prime (unsigned
+ *r_counter = counter;
+ if (r_seed && r_seedlen)
+ {
+- memcpy (seed_plus, seed, seedlen);
++ grub_memcpy (seed_plus, seed, seedlen);
+ *r_seed = seed_plus;
+ seed_plus = NULL;
+ *r_seedlen = seedlen;
diff --git a/package/grub/patches/patch-lib_libgcrypt-grub_cipher_rijndael_c b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_rijndael_c
new file mode 100644
index 000000000..056abefa3
--- /dev/null
+++ b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_rijndael_c
@@ -0,0 +1,53 @@
+--- grub-1.98.orig/lib/libgcrypt-grub/cipher/rijndael.c 2010-03-06 21:52:26.000000000 +0100
++++ grub-1.98/lib/libgcrypt-grub/cipher/rijndael.c 2010-06-26 20:23:29.463277513 +0200
+@@ -139,7 +139,7 @@ do_setkey (RIJNDAEL_context *ctx, const
+ if ((_gcry_get_hw_features () & HWF_PADLOCK_AES))
+ {
+ ctx->use_padlock = 1;
+- memcpy (ctx->padlock_key, key, keylen);
++ grub_memcpy (ctx->padlock_key, key, keylen);
+ }
+ #endif
+ }
+@@ -411,9 +411,9 @@ do_encrypt (const RIJNDAEL_context *ctx,
+ byte b[16];
+ } b;
+
+- memcpy (a.a, ax, 16);
++ grub_memcpy (a.a, ax, 16);
+ do_encrypt_aligned (ctx, b.b, a.a);
+- memcpy (bx, b.b, 16);
++ grub_memcpy (bx, b.b, 16);
+ }
+
+
+@@ -440,7 +440,7 @@ do_padlock (const RIJNDAEL_context *ctx,
+ if (decrypt_flag)
+ cword[0] |= 0x00000200;
+
+- memcpy (a, ax, 16);
++ grub_memcpy (a, ax, 16);
+
+ asm volatile
+ ("pushfl\n\t" /* Force key reload. */
+@@ -454,7 +454,7 @@ do_padlock (const RIJNDAEL_context *ctx,
+ : "%ecx", "cc", "memory"
+ );
+
+- memcpy (bx, b, 16);
++ grub_memcpy (bx, b, 16);
+
+ }
+ #endif /*USE_PADLOCK*/
+@@ -609,9 +609,9 @@ do_decrypt (RIJNDAEL_context *ctx, byte
+ ctx->decryption_prepared = 1;
+ }
+
+- memcpy (a.a, ax, 16);
++ grub_memcpy (a.a, ax, 16);
+ do_decrypt_aligned (ctx, b.b, a.a);
+- memcpy (bx, b.b, 16);
++ grub_memcpy (bx, b.b, 16);
+ #undef rk
+ }
+
diff --git a/package/grub/patches/patch-lib_libgcrypt-grub_cipher_rmd160_c b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_rmd160_c
new file mode 100644
index 000000000..fb818bd51
--- /dev/null
+++ b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_rmd160_c
@@ -0,0 +1,11 @@
+--- grub-1.98.orig/lib/libgcrypt-grub/cipher/rmd160.c 2010-03-06 21:52:26.000000000 +0100
++++ grub-1.98/lib/libgcrypt-grub/cipher/rmd160.c 2010-06-26 20:23:39.319276778 +0200
+@@ -185,7 +185,7 @@ transform ( RMD160_CONTEXT *hd, const un
+ * executes on a 586-100 (39.73 bogomips) at about 1900kb/sec;
+ * [measured with a 4MB data and "gpgm --print-md rmd160"] */
+ u32 x[16];
+- memcpy( x, data, 64 );
++ grub_memcpy( x, data, 64 );
+ #endif
+
+
diff --git a/package/grub/patches/patch-lib_libgcrypt-grub_cipher_serpent_c b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_serpent_c
new file mode 100644
index 000000000..7c99e23ad
--- /dev/null
+++ b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_serpent_c
@@ -0,0 +1,20 @@
+--- grub-1.98.orig/lib/libgcrypt-grub/cipher/serpent.c 2010-03-06 21:52:26.000000000 +0100
++++ grub-1.98/lib/libgcrypt-grub/cipher/serpent.c 2010-06-26 20:29:51.523275940 +0200
+@@ -917,7 +917,7 @@ serpent_test (void)
+ (const u32 *) test_data[i].text_plain,
+ (u32 *) scratch);
+
+- if (memcmp (scratch, test_data[i].text_cipher, sizeof (serpent_block_t)))
++ if (grub_memcmp (scratch, test_data[i].text_cipher, sizeof (serpent_block_t)))
+ switch (test_data[i].key_length)
+ {
+ case 16:
+@@ -931,7 +931,7 @@ serpent_test (void)
+ serpent_decrypt_internal (&context,
+ (const u32 *) test_data[i].text_cipher,
+ (u32 *) scratch);
+- if (memcmp (scratch, test_data[i].text_plain, sizeof (serpent_block_t)))
++ if (grub_memcmp (scratch, test_data[i].text_plain, sizeof (serpent_block_t)))
+ switch (test_data[i].key_length)
+ {
+ case 16:
diff --git a/package/grub/patches/patch-lib_libgcrypt-grub_cipher_sha1_c b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_sha1_c
new file mode 100644
index 000000000..b04764bb8
--- /dev/null
+++ b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_sha1_c
@@ -0,0 +1,11 @@
+--- grub-1.98.orig/lib/libgcrypt-grub/cipher/sha1.c 2010-03-06 21:52:26.000000000 +0100
++++ grub-1.98/lib/libgcrypt-grub/cipher/sha1.c 2010-06-26 20:23:50.135168960 +0200
+@@ -114,7 +114,7 @@ transform (SHA1_CONTEXT *hd, const unsig
+ for ( ;nblocks; nblocks--)
+ {
+ #ifdef WORDS_BIGENDIAN
+- memcpy (x, data, 64);
++ grub_memcpy (x, data, 64);
+ data += 64;
+ #else
+ {
diff --git a/package/grub/patches/patch-lib_libgcrypt-grub_cipher_sha256_c b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_sha256_c
new file mode 100644
index 000000000..f9676e392
--- /dev/null
+++ b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_sha256_c
@@ -0,0 +1,11 @@
+--- grub-1.98.orig/lib/libgcrypt-grub/cipher/sha256.c 2010-03-06 21:52:26.000000000 +0100
++++ grub-1.98/lib/libgcrypt-grub/cipher/sha256.c 2010-06-26 20:24:00.135274844 +0200
+@@ -150,7 +150,7 @@ transform (SHA256_CONTEXT *hd, const uns
+ h = hd->h7;
+
+ #ifdef WORDS_BIGENDIAN
+- memcpy (x, data, 64);
++ grub_memcpy (x, data, 64);
+ #else
+ {
+ byte *p2;
diff --git a/package/grub/patches/patch-lib_libgcrypt-grub_cipher_sha512_c b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_sha512_c
new file mode 100644
index 000000000..070a15dff
--- /dev/null
+++ b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_sha512_c
@@ -0,0 +1,11 @@
+--- grub-1.98.orig/lib/libgcrypt-grub/cipher/sha512.c 2010-03-06 21:52:26.000000000 +0100
++++ grub-1.98/lib/libgcrypt-grub/cipher/sha512.c 2010-06-26 20:24:09.235288423 +0200
+@@ -162,7 +162,7 @@ transform (SHA512_CONTEXT *hd, const uns
+ h = hd->h7;
+
+ #ifdef WORDS_BIGENDIAN
+- memcpy (w, data, 128);
++ grub_memcpy (w, data, 128);
+ #else
+ {
+ int i;
diff --git a/package/grub/patches/patch-lib_libgcrypt-grub_cipher_tiger_c b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_tiger_c
new file mode 100644
index 000000000..a039004a2
--- /dev/null
+++ b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_tiger_c
@@ -0,0 +1,11 @@
+--- grub-1.98.orig/lib/libgcrypt-grub/cipher/tiger.c 2010-03-06 21:52:26.000000000 +0100
++++ grub-1.98/lib/libgcrypt-grub/cipher/tiger.c 2010-06-26 20:22:45.507277255 +0200
+@@ -685,7 +685,7 @@ transform ( TIGER_CONTEXT *hd, const uns
+ x[7] = MKWORD(data, 7);
+ #undef MKWORD
+ #else
+- memcpy( &x[0], data, 64 );
++ grub_memcpy( &x[0], data, 64 );
+ #endif
+
+ /* save */
diff --git a/package/grub/patches/patch-lib_libgcrypt-grub_cipher_twofish_c b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_twofish_c
new file mode 100644
index 000000000..88e9e761c
--- /dev/null
+++ b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_twofish_c
@@ -0,0 +1,20 @@
+--- grub-1.98.orig/lib/libgcrypt-grub/cipher/twofish.c 2010-03-06 21:52:26.000000000 +0100
++++ grub-1.98/lib/libgcrypt-grub/cipher/twofish.c 2010-06-26 20:30:05.671278033 +0200
+@@ -932,7 +932,7 @@ main()
+ twofish_encrypt (&ctx, buffer[1], buffer[1]);
+ }
+ }
+- encrypt_msg = memcmp (buffer, test_encrypt, sizeof (test_encrypt)) ?
++ encrypt_msg = grub_memcmp (buffer, test_encrypt, sizeof (test_encrypt)) ?
+ "encryption failure!\n" : "encryption OK!\n";
+
+ /* Decryption test. */
+@@ -954,7 +954,7 @@ main()
+ /* Stop the timer, and print results. */
+ timer = clock () - timer;
+ printf (encrypt_msg);
+- printf (memcmp (buffer, test_decrypt, sizeof (test_decrypt)) ?
++ printf (grub_memcmp (buffer, test_decrypt, sizeof (test_decrypt)) ?
+ "decryption failure!\n" : "decryption OK!\n");
+ printf ("elapsed time: %.1f s.\n", (float) timer / CLOCKS_PER_SEC);
+
diff --git a/package/grub/patches/patch-lib_libgcrypt-grub_cipher_whirlpool_c b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_whirlpool_c
new file mode 100644
index 000000000..a92518354
--- /dev/null
+++ b/package/grub/patches/patch-lib_libgcrypt-grub_cipher_whirlpool_c
@@ -0,0 +1,11 @@
+--- grub-1.98.orig/lib/libgcrypt-grub/cipher/whirlpool.c 2010-03-06 21:52:26.000000000 +0100
++++ grub-1.98/lib/libgcrypt-grub/cipher/whirlpool.c 2010-06-26 20:17:35.043170089 +0200
+@@ -1381,7 +1381,7 @@ whirlpool_final (void *ctx)
+ context->buffer[context->count++] = 0;
+
+ /* Add length of message. */
+- memcpy (context->buffer + context->count, context->length, 32);
++ grub_memcpy (context->buffer + context->count, context->length, 32);
+ context->count += 32;
+ whirlpool_add (context, NULL, 0);
+
diff --git a/package/grub/patches/patch-util_grub-install_in b/package/grub/patches/patch-util_grub-install_in
new file mode 100644
index 000000000..6cbc9fbc3
--- /dev/null
+++ b/package/grub/patches/patch-util_grub-install_in
@@ -0,0 +1,11 @@
+--- grub-1.98.orig/util/grub-install.in 2010-03-06 21:51:37.000000000 +0100
++++ grub-1.98/util/grub-install.in 2010-06-26 21:16:50.031158562 +0200
+@@ -306,7 +306,7 @@ config_opt=
+
+ if [ "x${devabstraction_module}" = "x" ] ; then
+ if [ x"${install_device}" != x ]; then
+- if echo "${install_device}" | grep -qx "(.*)" ; then
++ if echo "${install_device}" | grep -q "(.*)" ; then
+ install_drive="${install_device}"
+ else
+ install_drive="`$grub_probe --target=drive --device ${install_device}`"
diff --git a/package/grub/patches/patch-util_grub-mkconfig_lib_in b/package/grub/patches/patch-util_grub-mkconfig_lib_in
new file mode 100644
index 000000000..a51e3ec53
--- /dev/null
+++ b/package/grub/patches/patch-util_grub-mkconfig_lib_in
@@ -0,0 +1,11 @@
+--- grub-1.98.orig/util/grub-mkconfig_lib.in 2010-03-06 21:51:37.000000000 +0100
++++ grub-1.98/util/grub-mkconfig_lib.in 2010-06-26 21:17:19.399157123 +0200
+@@ -154,7 +154,7 @@ version_test_numeric ()
+ a=$b
+ b=$c
+ fi
+- if (echo $a ; echo $b) | sort -n | head -n 1 | grep -qx $b ; then
++ if (echo $a ; echo $b) | sort -n | head -n 1 | grep -q $b ; then
+ return 0
+ else
+ return 1
diff --git a/package/grub/patches/patch-util_grub_d_10_linux_in b/package/grub/patches/patch-util_grub_d_10_linux_in
new file mode 100644
index 000000000..b84b3e3ca
--- /dev/null
+++ b/package/grub/patches/patch-util_grub_d_10_linux_in
@@ -0,0 +1,20 @@
+--- grub-1.98.orig/util/grub.d/10_linux.in 2010-03-06 21:51:37.000000000 +0100
++++ grub-1.98/util/grub.d/10_linux.in 2010-06-26 21:18:10.803156350 +0200
+@@ -66,8 +66,8 @@ linux_entry ()
+ # Use ELILO's generic "efifb" when it's known to be available.
+ # FIXME: We need an interface to select vesafb in case efifb can't be used.
+ if [ "x$GRUB_GFXPAYLOAD_LINUX" = x ]; then
+- if grep -qx "CONFIG_FB_EFI=y" /boot/config-${version} 2> /dev/null \
+- && grep -qx "CONFIG_VT_HW_CONSOLE_BINDING=y" /boot/config-${version} 2> /dev/null; then
++ if grep -q "CONFIG_FB_EFI=y" /boot/config-${version} 2> /dev/null \
++ && grep -q "CONFIG_VT_HW_CONSOLE_BINDING=y" /boot/config-${version} 2> /dev/null; then
+ cat << EOF
+ set gfxpayload=keep
+ EOF
+@@ -135,5 +135,5 @@ while [ "x$list" != "x" ] ; do
+ "single ${GRUB_CMDLINE_LINUX}"
+ fi
+
+- list=`echo $list | tr ' ' '\n' | grep -vx $linux | tr '\n' ' '`
++ list=`echo $list | tr ' ' '\n' | grep -v $linux | tr '\n' ' '`
+ done
diff --git a/package/gtk+/Makefile b/package/gtk+/Makefile
index 95ed06d3c..32edbc34d 100644
--- a/package/gtk+/Makefile
+++ b/package/gtk+/Makefile
@@ -20,7 +20,7 @@ endif
include ${TOPDIR}/mk/package.mk
-$(eval $(call PKG_template,GTK,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
+$(eval $(call PKG_template,GTK,libgtk+,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
CONFIGURE_ENV+= gio_can_sniff=no \
ac_cv_path_GTK_UPDATE_ICON_CACHE=""
diff --git a/package/hostapd/Makefile b/package/hostapd/Makefile
index 14013c34d..644e89a23 100644
--- a/package/hostapd/Makefile
+++ b/package/hostapd/Makefile
@@ -4,9 +4,9 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= hostapd
-PKG_VERSION:= 0.7.1
+PKG_VERSION:= 0.7.2
PKG_RELEASE:= 1
-PKG_MD5SUM:= 3c4f71a889803935c7eb40fac6539d7c
+PKG_MD5SUM:= f47689c62ee8c1c59989b402d4f130c3
PKG_DESCR:= an IEEE 802.11 AP, IEEE 802.1x/WPA/WPA2/EAP/RADIUS Authenticator
PKG_SECTION:= net
PKG_DEPENDS:= libnl libopenssl
diff --git a/package/igmpproxy/Makefile b/package/igmpproxy/Makefile
index 185597939..d5a7db20f 100644
--- a/package/igmpproxy/Makefile
+++ b/package/igmpproxy/Makefile
@@ -5,7 +5,7 @@ include ${TOPDIR}/rules.mk
PKG_NAME:= igmpproxy
PKG_VERSION:= 0.1
-PKG_RELEASE:= 2
+PKG_RELEASE:= 3
PKG_MD5SUM:= c56f41ec195bc1fe016369bf74efc5a1
PKG_DESCR:= a simple dynamic Multicast Routing Daemon
PKG_SECTION:= net
diff --git a/package/igmpproxy/files/igmpproxy.init b/package/igmpproxy/files/igmpproxy.init
index 601538f04..fd2b06f9f 100644
--- a/package/igmpproxy/files/igmpproxy.init
+++ b/package/igmpproxy/files/igmpproxy.init
@@ -6,7 +6,7 @@
case $1 in
autostop) ;;
autostart)
- test x"${igmpproxy:-NO}" = x"NO"
+ test x"${igmpproxy:-NO}" = x"NO" && exit 0
exec sh $0 start
;;
start)
diff --git a/package/imlib2/Makefile b/package/imlib2/Makefile
new file mode 100644
index 000000000..0bf66f4a0
--- /dev/null
+++ b/package/imlib2/Makefile
@@ -0,0 +1,29 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:= imlib2
+PKG_VERSION:= 1.4.4
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 20d59c7cda06742015baade6f5975415
+PKG_DESCR:= Version 2 of an advanced replacement library for libraries like libXpm
+PKG_SECTION:= libs
+PKG_DEPENDS:= libfreetype
+PKG_BUILDDEP:= freetype
+PKG_URL:= http://www.enlightenment.org/
+PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=enlightenment/}
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,IMLIB2,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+post-install:
+ $(INSTALL_DIR) $(IDIR_IMLIB2)/usr/lib/imlib2/{filters,loaders}
+ ${CP} $(WRKINST)/usr/lib/libImlib2.so* $(IDIR_IMLIB2)/usr/lib
+ ${CP} $(WRKINST)/usr/lib/imlib2/filters/*.so \
+ $(IDIR_IMLIB2)/usr/lib/imlib2/filters/
+ ${CP} $(WRKINST)/usr/lib/imlib2/loaders/*.so \
+ $(IDIR_IMLIB2)/usr/lib/imlib2/loaders/
+
+include ${TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/iproute2/Makefile b/package/iproute2/Makefile
index f65a61e2c..38902bf07 100644
--- a/package/iproute2/Makefile
+++ b/package/iproute2/Makefile
@@ -4,16 +4,16 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= iproute2
-PKG_VERSION:= 2.6.29-1
-PKG_RELEASE:= 2
-PKG_MD5SUM:= c1bc258a6c345905e79935ac7a3cc582
+PKG_VERSION:= 2.6.34
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 5c5742bdac05a1688f266512e685b83c
PKG_DESCR:= iproute2 routing control utility
PKG_SECTION:= net
ifneq ($(strip ${ADK_PACKAGE_TC_ATM}),)
PKG_BUILDDEP+= linux-atm
endif
PKG_URL:= http://www.linuxfoundation.org/en/Net:Iproute2
-PKG_SITES:= http://developer.osdl.org/dev/iproute2/download/
+PKG_SITES:= http://devresources.linuxfoundation.org/dev/iproute2/download/
PKG_DESCR_TC:= iproute2 traffic control utility
PKG_DEPENDS_TC:= kmod-sched
diff --git a/package/iptables/Makefile b/package/iptables/Makefile
index 4aa2d58bf..1696dcabb 100644
--- a/package/iptables/Makefile
+++ b/package/iptables/Makefile
@@ -4,9 +4,9 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= iptables
-PKG_VERSION:= 1.4.6
+PKG_VERSION:= 1.4.8
PKG_RELEASE:= 1
-PKG_MD5SUM:= c67cf30e281a924def6426be0973df56
+PKG_MD5SUM:= 697ed89f37af4473a5f6349ba2700f2d
PKG_DESCR:= The netfilter firewalling software
PKG_SECTION:= net
PKG_DEPENDS:= kmod-ip-nf-iptables kmod-nf-conntrack
diff --git a/package/irssi/Makefile b/package/irssi/Makefile
index 820bb94d7..d67820445 100644
--- a/package/irssi/Makefile
+++ b/package/irssi/Makefile
@@ -12,7 +12,6 @@ PKG_SECTION:= text
PKG_DEPENDS:= glib libncurses
PKG_BUILDDEP+= glib ncurses
ifeq (${ADK_PACKAGE_IRSSI_SSL},y)
-PKG_DEPENDS+= libopenssl
PKG_BUILDDEP+= openssl
endif
PKG_URL:= http://www.irssi.org
@@ -22,6 +21,7 @@ DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
PKG_FLAVOURS:= SSL
PKGFD_SSL:= SSL/TLS support
+PKGFS_SSL:= libopenssl
include ${TOPDIR}/mk/package.mk
diff --git a/package/kismet/Makefile b/package/kismet/Makefile
index 319d4b2e6..0ece2d1d3 100644
--- a/package/kismet/Makefile
+++ b/package/kismet/Makefile
@@ -7,6 +7,7 @@ PKG_NAME:= kismet
PKG_VERSION:= 2010-01-R1
PKG_RELEASE:= 1
PKG_DESCR:= Kismet
+PKG_SECTION:= net
PKG_BUILDDEP+= libpcap ncurses
PKG_DEPENDS:= libpcap libncurses
PKG_MD5SUM:= a6d6edcf65d5bb2cb5de6472bcc16f19
diff --git a/package/kismet/files/kismet-client.conffiles b/package/kismet/files/kismet-client.conffiles
deleted file mode 100644
index b849ce1ce..000000000
--- a/package/kismet/files/kismet-client.conffiles
+++ /dev/null
@@ -1,4 +0,0 @@
-/etc/kismet/ap_manuf
-/etc/kismet/client_manuf
-/etc/kismet/kismet.conf
-/etc/kismet/kismet_ui.conf \ No newline at end of file
diff --git a/package/kismet/files/kismet-drone.conffiles b/package/kismet/files/kismet-drone.conffiles
deleted file mode 100644
index 744e24473..000000000
--- a/package/kismet/files/kismet-drone.conffiles
+++ /dev/null
@@ -1 +0,0 @@
-/etc/kismet/kismet_drone.conf
diff --git a/package/kismet/files/kismet-server.conffiles b/package/kismet/files/kismet-server.conffiles
deleted file mode 100644
index 0fdf43763..000000000
--- a/package/kismet/files/kismet-server.conffiles
+++ /dev/null
@@ -1,3 +0,0 @@
-/etc/kismet/ap_manuf
-/etc/kismet/client_manuf
-/etc/kismet/kismet.conf
diff --git a/package/krb5/Makefile b/package/krb5/Makefile
index b9efa2b2c..e7f3b1f22 100644
--- a/package/krb5/Makefile
+++ b/package/krb5/Makefile
@@ -4,15 +4,15 @@
include $(TOPDIR)/rules.mk
PKG_NAME:= krb5
-PKG_VERSION:= 1.7
-PKG_RELEASE:= 3
-PKG_MD5SUM:= 9f7b3402b4731a7fa543db193bf1b564
+PKG_VERSION:= 1.8.1
+PKG_RELEASE:= 1
+PKG_MD5SUM:= e29a78b108c4687f7e7937110d1d0415
PKG_DESCR:= MIT kerberos server
PKG_SECTION:= net
PKG_DEPENDS:= libkrb5 libncurses libss libcom-err
PKG_BUILDDEP+= ncurses e2fsprogs
PKG_URL:= http://web.mit.edu/kerberos
-PKG_SITES:= http://web.mit.edu/kerberos/dist/krb5/1.7/
+PKG_SITES:= http://web.mit.edu/kerberos/dist/krb5/1.8/
PKG_NOPARALLEL:= 1
diff --git a/package/krb5/patches/patch-src_Makefile_in b/package/krb5/patches/patch-src_Makefile_in
deleted file mode 100644
index ef48b68ed..000000000
--- a/package/krb5/patches/patch-src_Makefile_in
+++ /dev/null
@@ -1,10 +0,0 @@
---- krb5-1.7.orig/src/Makefile.in Wed Apr 15 22:07:03 2009
-+++ krb5-1.7/src/Makefile.in Mon Dec 28 16:13:47 2009
-@@ -13,7 +13,6 @@ SUBDIRS=util include lib kdc kadmin @ldap_plugin_dir@
- plugins/kdb/db2 \
- plugins/preauth/pkinit \
- plugins/preauth/encrypted_challenge \
-- appl tests \
- config-files gen-manpages
- BUILDTOP=$(REL)$(C)
- LOCALINCLUDES = -I$(srcdir)
diff --git a/package/krb5/patches/patch-src_include_osconf_hin b/package/krb5/patches/patch-src_include_osconf_hin
deleted file mode 100644
index 834f28292..000000000
--- a/package/krb5/patches/patch-src_include_osconf_hin
+++ /dev/null
@@ -1,50 +0,0 @@
---- krb5-1.7.orig/src/include/osconf.hin 2009-01-31 04:57:20.000000000 +0100
-+++ krb5-1.7/src/include/osconf.hin 2009-11-01 11:41:43.171362928 +0100
-@@ -61,14 +61,14 @@
- #define DEFAULT_LNAME_FILENAME "@PREFIX/lib/krb5.aname"
- #endif /* _WINDOWS */
-
--#define DEFAULT_KDB_FILE "@LOCALSTATEDIR/krb5kdc/principal"
--#define DEFAULT_KEYFILE_STUB "@LOCALSTATEDIR/krb5kdc/.k5."
--#define KRB5_DEFAULT_ADMIN_ACL "@LOCALSTATEDIR/krb5kdc/krb5_adm.acl"
-+#define DEFAULT_KDB_FILE "@SYSCONFDIR/krb5kdc/principal"
-+#define DEFAULT_KEYFILE_STUB "@SYSCONFDIR/krb5kdc/.k5."
-+#define KRB5_DEFAULT_ADMIN_ACL "@SYSCONFDIR/krb5kdc/krb5_adm.acl"
- /* Used by old admin server */
--#define DEFAULT_ADMIN_ACL "@LOCALSTATEDIR/krb5kdc/kadm_old.acl"
-+#define DEFAULT_ADMIN_ACL "@SYSCONFDIR/krb5kdc/kadm_old.acl"
-
- /* Location of KDC profile */
--#define DEFAULT_KDC_PROFILE "@LOCALSTATEDIR/krb5kdc/kdc.conf"
-+#define DEFAULT_KDC_PROFILE "@SYSCONFDIR/krb5kdc/kdc.conf"
- #define KDC_PROFILE_ENV "KRB5_KDC_PROFILE"
-
- #if TARGET_OS_MAC
-@@ -97,8 +97,8 @@
- /*
- * Defaults for the KADM5 admin system.
- */
--#define DEFAULT_KADM5_KEYTAB "@LOCALSTATEDIR/krb5kdc/kadm5.keytab"
--#define DEFAULT_KADM5_ACL_FILE "@LOCALSTATEDIR/krb5kdc/kadm5.acl"
-+#define DEFAULT_KADM5_KEYTAB "@SYSCONFDIR/krb5kdc/kadm5.keytab"
-+#define DEFAULT_KADM5_ACL_FILE "@SYSCONFDIR/krb5kdc/kadm5.acl"
- #define DEFAULT_KADM5_PORT 749 /* assigned by IANA */
-
- #define KRB5_DEFAULT_SUPPORTED_ENCTYPES \
-@@ -123,13 +123,13 @@
- * krb5 slave support follows
- */
-
--#define KPROP_DEFAULT_FILE "@LOCALSTATEDIR/krb5kdc/slave_datatrans"
--#define KPROPD_DEFAULT_FILE "@LOCALSTATEDIR/krb5kdc/from_master"
-+#define KPROP_DEFAULT_FILE "@SYSCONFDIR/krb5kdc/slave_datatrans"
-+#define KPROPD_DEFAULT_FILE "@SYSCONFDIR/krb5kdc/from_master"
- #define KPROPD_DEFAULT_KDB5_UTIL "@SBINDIR/kdb5_util"
- #define KPROPD_DEFAULT_KDB5_EDIT "@SBINDIR/kdb5_edit"
- #define KPROPD_DEFAULT_KPROP "@SBINDIR/kprop"
- #define KPROPD_DEFAULT_KRB_DB DEFAULT_KDB_FILE
--#define KPROPD_ACL_FILE "@LOCALSTATEDIR/krb5kdc/kpropd.acl"
-+#define KPROPD_ACL_FILE "@SYSCONFDIR/krb5kdc/kpropd.acl"
-
- /*
- * GSS mechglue
diff --git a/package/krb5/patches/patch-src_util_profile_prof_int_h b/package/krb5/patches/patch-src_util_profile_prof_int_h
deleted file mode 100644
index 5be692f11..000000000
--- a/package/krb5/patches/patch-src_util_profile_prof_int_h
+++ /dev/null
@@ -1,11 +0,0 @@
---- krb5-1.7.orig/src/util/profile/prof_int.h 2008-05-27 18:25:51.000000000 +0200
-+++ krb5-1.7/src/util/profile/prof_int.h 2009-11-19 20:20:53.000000000 +0100
-@@ -12,7 +12,7 @@
-
- #include "k5-thread.h"
- #include "k5-platform.h"
--#include "com_err.h"
-+#include "et/com_err.h"
- #include "profile.h"
-
- typedef long prf_magic_t;
diff --git a/package/libXScrnSaver/Makefile b/package/libXScrnSaver/Makefile
new file mode 100644
index 000000000..d87b396ff
--- /dev/null
+++ b/package/libXScrnSaver/Makefile
@@ -0,0 +1,27 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:= libXScrnSaver
+PKG_VERSION:= 1.2.0
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 72ca7f37e4a1794acbdd9ab047821e8b
+PKG_DESCR:= X.Org XScrnSaver library
+PKG_SECTION:= libs
+PKG_BUILDDEP:= scrnsaverproto
+PKG_URL:= http://xorg.freedesktop.org/
+PKG_SITES:= ${MASTER_SITE_XORG}
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,LIBXSCRNSAVER,libxscrnsaver,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+CONFIGURE_ARGS+= --enable-malloc0returnsnull
+
+post-install:
+ $(INSTALL_DIR) $(IDIR_LIBXSCRNSAVER)/usr/lib
+ ${CP} $(WRKINST)/usr/lib/libXss.so* \
+ $(IDIR_LIBXSCRNSAVER)/usr/lib/
+
+include ${TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/libXaw/Makefile b/package/libXaw/Makefile
index 9b6481da8..ae62712ce 100644
--- a/package/libXaw/Makefile
+++ b/package/libXaw/Makefile
@@ -20,6 +20,6 @@ CONFIGURE_ARGS+= --disable-docs
post-install:
${INSTALL_DIR} ${IDIR_LIBXAW}/usr/lib
- ${CP} ${WRKINST}/usr/lib/libXaw?.so* ${IDIR_LIBXAW}/usr/lib/
+ ${CP} ${WRKINST}/usr/lib/libXaw*.so* ${IDIR_LIBXAW}/usr/lib/
include ${TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/libXdamage/Makefile b/package/libXdamage/Makefile
index 781481185..4481cb3ce 100644
--- a/package/libXdamage/Makefile
+++ b/package/libXdamage/Makefile
@@ -19,7 +19,7 @@ $(eval $(call PKG_template,LIBXDAMAGE,libxdamage,$(PKG_VERSION)-${PKG_RELEASE},$
post-install:
$(INSTALL_DIR) $(IDIR_LIBXDAMAGE)/usr/lib
- $(INSTALL_BIN) $(WRKINST)/usr/lib/libXdamage*.so* \
+ $(CP) $(WRKINST)/usr/lib/libXdamage*.so* \
$(IDIR_LIBXDAMAGE)/usr/lib
include ${TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/libXfixes/Makefile b/package/libXfixes/Makefile
index d6cc76bfb..283a043ce 100644
--- a/package/libXfixes/Makefile
+++ b/package/libXfixes/Makefile
@@ -9,7 +9,7 @@ PKG_RELEASE:= 1
PKG_MD5SUM:= 86eb4b916cd5948c0e20d279107b3331
PKG_DESCR:= X Fixes Library
PKG_SECTION:= libs
-PKG_BUILDDEP+= fixesproto
+PKG_BUILDDEP+= fixesproto xextproto xproto libX11
PKG_URL:= http://xorg.freedesktop.org
PKG_SITES:= http://xorg.freedesktop.org/archive/individual/lib/
@@ -19,7 +19,7 @@ $(eval $(call PKG_template,LIBXFIXES,libxfixes,$(PKG_VERSION)-${PKG_RELEASE},${P
post-install:
$(INSTALL_DIR) $(IDIR_LIBXFIXES)/usr/lib
- $(INSTALL_BIN) $(WRKINST)/usr/lib/libXfixes*.so* \
+ $(CP) $(WRKINST)/usr/lib/libXfixes*.so* \
$(IDIR_LIBXFIXES)/usr/lib
include ${TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/libXi/Makefile b/package/libXi/Makefile
new file mode 100644
index 000000000..42222d9d3
--- /dev/null
+++ b/package/libXi/Makefile
@@ -0,0 +1,27 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:= libXi
+PKG_VERSION:= 1.3
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 1c038312e4f9b61fe72e52d0f59a01d5
+PKG_DESCR:= X Window System client interface to the XINPUT extension to the X protocol.
+PKG_SECTION:= x11
+PKG_BUILDDEP+= xproto xextproto libXext
+PKG_URL:= http://xorg.freedesktop.org/
+PKG_SITES:= ${MASTER_SITE_XORG}
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,LIBXI,libxi,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+CONFIGURE_ARGS+= --disable-malloc0returnsnull
+
+post-install:
+ $(INSTALL_DIR) $(IDIR_LIBXI)/usr/lib
+ $(CP) $(WRKINST)/usr/lib/libXi*.so* \
+ $(IDIR_LIBXI)/usr/lib
+
+include ${TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/libXxf86vm/Makefile b/package/libXxf86vm/Makefile
index 4d8d57f12..1465ee1ac 100644
--- a/package/libXxf86vm/Makefile
+++ b/package/libXxf86vm/Makefile
@@ -14,13 +14,13 @@ PKG_SITES:= http://xorg.freedesktop.org/archive/individual/lib/
include $(TOPDIR)/mk/package.mk
-$(eval $(call PKG_template,LIBXXF86VM,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+$(eval $(call PKG_template,LIBXXF86VM,libxxf86vm,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
CONFIGURE_ARGS+= --disable-malloc0returnsnull
post-install:
$(INSTALL_DIR) $(IDIR_LIBXXF86VM)/usr/lib
- $(INSTALL_BIN) $(WRKINST)/usr/lib/libXxf86vm*.so* \
+ ${CP} $(WRKINST)/usr/lib/libXxf86vm*.so* \
$(IDIR_LIBXXF86VM)/usr/lib
include ${TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/libdrm/patches/patch-include_drm_drm_sarea_h b/package/libdrm/patches/patch-include_drm_drm_sarea_h
new file mode 100644
index 000000000..d7d557dcf
--- /dev/null
+++ b/package/libdrm/patches/patch-include_drm_drm_sarea_h
@@ -0,0 +1,12 @@
+ Fix for lemote.
+--- libdrm-2.4.20.orig/include/drm/drm_sarea.h 2010-03-06 00:21:13.000000000 +0100
++++ libdrm-2.4.20/include/drm/drm_sarea.h 2010-06-12 20:44:24.812809619 +0200
+@@ -37,6 +37,8 @@
+ /* SAREA area needs to be at least a page */
+ #if defined(__alpha__)
+ #define SAREA_MAX 0x2000U
++#elif defined(__mips__)
++#define SAREA_MAX 0x4000U
+ #elif defined(__ia64__)
+ #define SAREA_MAX 0x10000U /* 64kB */
+ #else
diff --git a/package/libdrm/patches/patch-xf86drm_h b/package/libdrm/patches/patch-xf86drm_h
new file mode 100644
index 000000000..aa3f49cca
--- /dev/null
+++ b/package/libdrm/patches/patch-xf86drm_h
@@ -0,0 +1,42 @@
+ Fix for lemote.
+--- libdrm-2.4.20.orig/xf86drm.h 2010-03-06 00:21:13.000000000 +0100
++++ libdrm-2.4.20/xf86drm.h 2010-06-12 20:43:01.324916826 +0200
+@@ -374,6 +374,29 @@ typedef struct _drmSetVersion {
+ : "memory"); \
+ } while (0)
+
++#elif defined(__mips__)
++
++#define DRM_CAS(lock, old, new, ret) \
++ do { \
++ __asm__ __volatile__( \
++ " .set mips3;.set noreorder;\n" \
++ " sync; \n" \
++ " ll %1, %0;\n" \
++ " bne %1, %2, 1f;\n" \
++ " li %1, 1; \n" \
++ " move %1, %3; \n" \
++ " sc %1, %0;\n" \
++ " xori %1, %1, 1\n" \
++ "1: \n" \
++ " .set mips0; .set reorder;\n" \
++ : "=m" (__drm_dummy_lock(lock)),\
++ "=&r" (ret) \
++ : "r" (old), \
++ "r" (new) \
++ : "memory","$8" \
++ ); \
++ } while(0)
++
+ #elif defined(__sparc__)
+
+ #define DRM_CAS(lock,old,new,__ret) \
+@@ -457,7 +480,7 @@ do { register unsigned int __old __asm("
+
+ #if defined(__alpha__)
+ #define DRM_CAS_RESULT(_result) long _result
+-#elif defined(__powerpc__)
++#elif defined(__powerpc__) || defined(__mips__)
+ #define DRM_CAS_RESULT(_result) int _result
+ #else
+ #define DRM_CAS_RESULT(_result) char _result
diff --git a/package/libgpg-error/Makefile b/package/libgpg-error/Makefile
index 20fbc14cd..73b37eb9b 100644
--- a/package/libgpg-error/Makefile
+++ b/package/libgpg-error/Makefile
@@ -4,10 +4,10 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= libgpg-error
-PKG_VERSION:= 1.7
+PKG_VERSION:= 1.8
PKG_RELEASE:= 1
-PKG_MD5SUM:= 62c0d09d1e76c5b6da8fff92314c4665
-PKG_DESCR:= an helper library for common error codes and descriptions
+PKG_MD5SUM:= 1d2005268a2f096db28cf9cf77b3229a
+PKG_DESCR:= a helper library for common error codes and descriptions
PKG_SECTION:= libs
PKG_URL:= http://www.gnupg.org
PKG_SITES:= ftp://ftp.gnupg.org/gcrypt/libgpg-error/
diff --git a/package/libnetfilter_conntrack/Makefile b/package/libnetfilter_conntrack/Makefile
index 83fc76459..517d7d7b2 100644
--- a/package/libnetfilter_conntrack/Makefile
+++ b/package/libnetfilter_conntrack/Makefile
@@ -18,7 +18,7 @@ DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
include $(TOPDIR)/mk/package.mk
-$(eval $(call PKG_template,LIBNETFILTER_CONNTRACK,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+$(eval $(call PKG_template,LIBNETFILTER_CONNTRACK,libnetfilter-conntrack,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
post-install:
$(INSTALL_DIR) $(IDIR_LIBNETFILTER_CONNTRACK)/usr/lib
diff --git a/package/libnetfilter_log/Makefile b/package/libnetfilter_log/Makefile
index 24bc47cb5..bfb5bb171 100644
--- a/package/libnetfilter_log/Makefile
+++ b/package/libnetfilter_log/Makefile
@@ -18,7 +18,7 @@ DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
include $(TOPDIR)/mk/package.mk
-$(eval $(call PKG_template,LIBNETFILTER_LOG,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+$(eval $(call PKG_template,LIBNETFILTER_LOG,libnetfilter-log,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
post-install:
$(INSTALL_DIR) $(IDIR_LIBNETFILTER_LOG)/usr/lib
diff --git a/package/libnetfilter_queue/Makefile b/package/libnetfilter_queue/Makefile
index 737b3d5cc..d10464e00 100644
--- a/package/libnetfilter_queue/Makefile
+++ b/package/libnetfilter_queue/Makefile
@@ -18,7 +18,7 @@ DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
include $(TOPDIR)/mk/package.mk
-$(eval $(call PKG_template,LIBNETFILTER_QUEUE,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+$(eval $(call PKG_template,LIBNETFILTER_QUEUE,libnetfilter-queue,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
post-install:
$(INSTALL_DIR) $(IDIR_LIBNETFILTER_QUEUE)/usr/lib
diff --git a/package/libpng/Makefile b/package/libpng/Makefile
index 87da9297b..eb8f9e1e7 100644
--- a/package/libpng/Makefile
+++ b/package/libpng/Makefile
@@ -4,9 +4,9 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= libpng
-PKG_VERSION:= 1.2.36
+PKG_VERSION:= 1.2.44
PKG_RELEASE:= 1
-PKG_MD5SUM:= 4779cd011409ea9b591e11638781f0bf
+PKG_MD5SUM:= 89b62f8daaeeab1342e307d6d1411ff1
PKG_DESCR:= A library for reading/writing PNG images
PKG_SECTION:= libs
PKG_DEPENDS:= zlib
diff --git a/package/libstdcxx/Makefile b/package/libstdcxx/Makefile
index 05de53da2..645e6868c 100644
--- a/package/libstdcxx/Makefile
+++ b/package/libstdcxx/Makefile
@@ -2,7 +2,15 @@
# material, please see the LICENCE file in the top-level directory.
include ${TOPDIR}/rules.mk
+ifeq ($(ADK_TARGET_LIB_GLIBC),y)
include ${TOPDIR}/toolchain/glibc/Makefile.inc
+else
+ifeq ($(ADK_TARGET_LIB_EGLIBC),y)
+include ${TOPDIR}/toolchain/eglibc/Makefile.inc
+else
+include ${TOPDIR}/toolchain/uClibc/Makefile.inc
+endif
+endif
PKG_NAME:= libstdcxx
PKG_DESCR:= C++ support library
diff --git a/package/libthread_db/Makefile b/package/libthread_db/Makefile
index ef3ed22cd..6566b0f9d 100644
--- a/package/libthread_db/Makefile
+++ b/package/libthread_db/Makefile
@@ -6,8 +6,12 @@ include ${TOPDIR}/rules.mk
ifeq ($(ADK_TARGET_LIB_GLIBC),y)
include ${TOPDIR}/toolchain/glibc/Makefile.inc
else
+ifeq ($(ADK_TARGET_LIB_EGLIBC),y)
+include ${TOPDIR}/toolchain/eglibc/Makefile.inc
+else
include ${TOPDIR}/toolchain/uClibc/Makefile.inc
endif
+endif
PKG_NAME:= libthread-db
PKG_DESCR:= POSIX threads library for gdb/gdbserver
diff --git a/package/libtiff/Makefile b/package/libtiff/Makefile
index 9c3efa0f8..645b8dae7 100644
--- a/package/libtiff/Makefile
+++ b/package/libtiff/Makefile
@@ -4,9 +4,9 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= libtiff
-PKG_VERSION:= 3.8.2
+PKG_VERSION:= 3.9.4
PKG_RELEASE:= 1
-PKG_MD5SUM:= fbb6f446ea4ed18955e2714934e5b698
+PKG_MD5SUM:= 2006c1bdd12644dbf02956955175afd6
PKG_DESCR:= A library for reading/writing TIFF images
PKG_SECTION:= libs
PKG_URL:= http://www.libtiff.org
diff --git a/package/libtool/Makefile b/package/libtool/Makefile
index 237d358d6..cddcf93e0 100644
--- a/package/libtool/Makefile
+++ b/package/libtool/Makefile
@@ -4,9 +4,9 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= libtool
-PKG_VERSION:= 2.2.6b
+PKG_VERSION:= 2.2.8
PKG_RELEASE:= 1
-PKG_MD5SUM:= 07da460450490148c6d2df0f21481a25
+PKG_MD5SUM:= cad2a7188242bc8dbab0645532ae3d6f
PKG_DESCR:= a generic dynamic object loading library
PKG_SECTION:= libs
PKG_URL:= http://www.gnu.org/software/libtool
@@ -19,7 +19,7 @@ $(eval $(call PKG_template,LIBLTDL,libltdl,${PKG_VERSION}-${PKG_RELEASE},${PKG_D
post-install:
${INSTALL_DIR} ${IDIR_LIBLTDL}/usr/lib
- ${CP} ${WRKINST}/usr/lib/libltdl.so.* ${IDIR_LIBLTDL}/usr/lib/
+ ${CP} ${WRKINST}/usr/lib/libltdl.so* ${IDIR_LIBLTDL}/usr/lib/
${INSTALL_DIR} ${IDIR_LIBTOOL}/usr/bin
${INSTALL_BIN} ${WRKINST}/usr/bin/libtool ${IDIR_LIBTOOL}/usr/bin
${INSTALL_BIN} ${WRKINST}/usr/bin/libtoolize ${IDIR_LIBTOOL}/usr/bin
diff --git a/package/mpd/Makefile b/package/mpd/Makefile
index 4325332db..c173c6b56 100644
--- a/package/mpd/Makefile
+++ b/package/mpd/Makefile
@@ -4,59 +4,47 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= mpd
-PKG_VERSION:= 0.15.8
-PKG_RELEASE:= 3
-PKG_MD5SUM:= 6680970274c389fd07e2b35721de1764
+PKG_VERSION:= 0.15.10
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 3ee746cb9193acfd0e1bd7a8c54af1a6
PKG_DESCR:= A music player daemon
PKG_SECTION:= net
PKG_DEPENDS:= glib libstdcxx
PKG_BUILDDEP+= glib
ifneq ($(ADK_PACKAGE_MPD_WITH_ALSA),)
-PKG_DEPENDS+= alsa-lib
PKG_BUILDDEP+= alsa-lib
endif
ifneq ($(ADK_PACKAGE_MPD_WITH_AO),)
-PKG_DEPENDS+= libao
PKG_BUILDDEP+= libao
endif
ifneq ($(ADK_PACKAGE_MPD_WITH_MP3),)
-PKG_DEPENDS+= libid3tag libmad
PKG_BUILDDEP+= libid3tag libmad
endif
ifneq ($(ADK_PACKAGE_MPD_WITH_MP4),)
-PKG_DEPENDS+= libfaad2
PKG_BUILDDEP+= faad2
endif
ifneq ($(ADK_PACKAGE_MPD_WITH_OGG),)
-PKG_DEPENDS+= libvorbis libogg
PKG_BUILDDEP+= libvorbis libogg
endif
ifneq ($(ADK_PACKAGE_MPD_WITH_TREMOR),)
-PKG_DEPENDS+= libvorbisidec
PKG_BUILDDEP+= libvorbisidec
endif
ifneq ($(ADK_PACKAGE_MPD_WITH_FLAC),)
-PKG_DEPENDS+= libflac
PKG_BUILDDEP+= flac
endif
ifneq ($(ADK_PACKAGE_MPD_WITH_WAV),)
-PKG_DEPENDS+= libaudiofile
PKG_BUILDDEP+= libaudiofile
endif
ifneq ($(ADK_PACKAGE_MPD_WITH_SHOUT),)
-PKG_DEPENDS+= libshout liblame libvorbis
PKG_BUILDDEP+= lame libvorbis libshout
endif
ifneq ($(ADK_PACKAGE_MPD_WITH_CURL),)
-PKG_DEPENDS+= libcurl
PKG_BUILDDEP+= curl
endif
ifneq ($(ADK_PACKAGE_MPD_WITH_MMS),)
-PKG_DEPENDS+= libmms
PKG_BUILDDEP+= libmms
endif
ifneq ($(ADK_PACKAGE_MPD_WITH_FFMPEG),)
-PKG_DEPENDS+= ffmpeg
PKG_BUILDDEP+= ffmpeg
endif
PKG_URL:= http://mpd.wikia.com/wiki/Music_Player_Daemon_Wiki
@@ -66,17 +54,29 @@ PKG_FLAVOURS:= WITH_ALSA WITH_AO WITH_MP3 WITH_MP4 WITH_TREMOR \
WITH_OGG WITH_FLAC WITH_WAV WITH_MMS WITH_FFMPEG \
WITH_SHOUT WITH_CURL
PKGFD_WITH_ALSA:= enable ALSA output
+PKGFS_WITH_ALSA:= alsa-lib
PKGFD_WITH_AO:= enable Libao/ESD output
+PKGFS_WITH_AO:= libao
PKGFD_WITH_MP3:= enable MP3 support
+PKGFS_WITH_MP3:= libid3tag libmad
PKGFD_WITH_MP4:= enable MP4 support
+PKGFS_WITH_MP4:= libfaad2
PKGFD_WITH_OGG:= enable OGG support
+PKGFS_WITH_OGG:= libvorbis libogg
PKGFD_WITH_TREMOR:= enable fixpoint Vorbis/OGG support
+PKGFS_WITH_TREMOR:= libvorbisidec
PKGFD_WITH_FLAC:= enable FLAC support
+PKGFD_WITH_FLAC:= libflac
PKGFD_WITH_WAV:= enable WAVE support
+PKGFS_WITH_WAV:= libaudiofile
PKGFD_WITH_MMS:= enable MMS support
+PKGFS_WITH_MMS:= libmms
PKGFD_WITH_FFMPEG:= enable FFMPEG support
+PKGFS_WITH_FFMPEG:= ffmpeg
PKGFD_WITH_SHOUT:= enable Shoutcast output support
+PKGFS_WITH_SHOUT:= libshout liblame libvorbis
PKGFD_WITH_CURL:= enable CURL support
+PKGFS_WITH_CURL:= libcurl
include ${TOPDIR}/mk/package.mk
@@ -147,9 +147,8 @@ endif
ifneq (${ADK_PACKAGE_MPD_WITH_SHOUT},)
CONFIGURE_ARGS+= --enable-shout \
--enable-lame-encoder \
- --enable-vorbis-encoder \
- --with-lame-includes=${STAGING_DIR}/usr/include \
- --with-lame-libraries=${STAGING_DIR}/usr/lib
+ --with-lame=${STAGING_DIR}/usr \
+ --enable-vorbis-encoder
else
CONFIGURE_ARGS+= --disable-shout \
--disable-lame-encoder \
diff --git a/package/mpd/patches/autotool.patch b/package/mpd/patches/autotool.patch
deleted file mode 100644
index ab1aad556..000000000
--- a/package/mpd/patches/autotool.patch
+++ /dev/null
@@ -1,9293 +0,0 @@
-diff -Nur mpd-0.15.8.orig/aclocal.m4 mpd-0.15.8/aclocal.m4
---- mpd-0.15.8.orig/aclocal.m4 2010-01-18 02:27:49.000000000 +0100
-+++ mpd-0.15.8/aclocal.m4 2010-02-18 23:51:59.208857762 +0100
-@@ -1,7 +1,7 @@
--# generated automatically by aclocal 1.11 -*- Autoconf -*-
-+# generated automatically by aclocal 1.9.6 -*- Autoconf -*-
-
- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
--# 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
-+# 2005 Free Software Foundation, Inc.
- # This file is free software; the Free Software Foundation
- # gives unlimited permission to copy and/or distribute it,
- # with or without modifications, as long as this notice is preserved.
-@@ -11,15 +11,7 @@
- # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
- # PARTICULAR PURPOSE.
-
--m4_ifndef([AC_AUTOCONF_VERSION],
-- [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
--m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.65],,
--[m4_warning([this file was generated for autoconf 2.65.
--You have another version of autoconf. It may work, but is not guaranteed to.
--If you have problems, you may need to regenerate the build system entirely.
--To do so, use the procedure documented by the package, typically `autoreconf'.])])
--
--# Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
-+# Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
- #
- # This file is free software; the Free Software Foundation
- # gives unlimited permission to copy and/or distribute it,
-@@ -29,31 +21,14 @@
- # ----------------------------
- # Automake X.Y traces this macro to ensure aclocal.m4 has been
- # generated from the m4 files accompanying Automake X.Y.
--# (This private macro should not be called outside this file.)
--AC_DEFUN([AM_AUTOMAKE_VERSION],
--[am__api_version='1.11'
--dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
--dnl require some minimum version. Point them to the right macro.
--m4_if([$1], [1.11], [],
-- [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
--])
--
--# _AM_AUTOCONF_VERSION(VERSION)
--# -----------------------------
--# aclocal traces this macro to find the Autoconf version.
--# This is a private macro too. Using m4_define simplifies
--# the logic in aclocal, which can simply ignore this definition.
--m4_define([_AM_AUTOCONF_VERSION], [])
-+AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version="1.9"])
-
- # AM_SET_CURRENT_AUTOMAKE_VERSION
- # -------------------------------
--# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
--# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
-+# Call AM_AUTOMAKE_VERSION so it can be traced.
-+# This function is AC_REQUIREd by AC_INIT_AUTOMAKE.
- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
--[AM_AUTOMAKE_VERSION([1.11])dnl
--m4_ifndef([AC_AUTOCONF_VERSION],
-- [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
--_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
-+ [AM_AUTOMAKE_VERSION([1.9.6])])
-
- # AM_AUX_DIR_EXPAND -*- Autoconf -*-
-
-@@ -110,14 +85,14 @@
-
- # AM_CONDITIONAL -*- Autoconf -*-
-
--# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008
-+# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005
- # Free Software Foundation, Inc.
- #
- # This file is free software; the Free Software Foundation
- # gives unlimited permission to copy and/or distribute it,
- # with or without modifications, as long as this notice is preserved.
-
--# serial 9
-+# serial 7
-
- # AM_CONDITIONAL(NAME, SHELL-CONDITION)
- # -------------------------------------
-@@ -126,11 +101,8 @@
- [AC_PREREQ(2.52)dnl
- ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])],
- [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
--AC_SUBST([$1_TRUE])dnl
--AC_SUBST([$1_FALSE])dnl
--_AM_SUBST_NOTMAKE([$1_TRUE])dnl
--_AM_SUBST_NOTMAKE([$1_FALSE])dnl
--m4_define([_AM_COND_VALUE_$1], [$2])dnl
-+AC_SUBST([$1_TRUE])
-+AC_SUBST([$1_FALSE])
- if $2; then
- $1_TRUE=
- $1_FALSE='#'
-@@ -144,14 +116,15 @@
- Usually this means the macro was only invoked conditionally.]])
- fi])])
-
--# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009
-+
-+# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005
- # Free Software Foundation, Inc.
- #
- # This file is free software; the Free Software Foundation
- # gives unlimited permission to copy and/or distribute it,
- # with or without modifications, as long as this notice is preserved.
-
--# serial 10
-+# serial 8
-
- # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
- # written in clear, in which case automake, when reading aclocal.m4,
-@@ -179,7 +152,6 @@
- ifelse([$1], CC, [depcc="$CC" am_compiler_list=],
- [$1], CXX, [depcc="$CXX" am_compiler_list=],
- [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
-- [$1], UPC, [depcc="$UPC" am_compiler_list=],
- [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'],
- [depcc="$$1" am_compiler_list=])
-
-@@ -208,16 +180,6 @@
- if test "$am_compiler_list" = ""; then
- am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
- fi
-- am__universal=false
-- m4_case([$1], [CC],
-- [case " $depcc " in #(
-- *\ -arch\ *\ -arch\ *) am__universal=true ;;
-- esac],
-- [CXX],
-- [case " $depcc " in #(
-- *\ -arch\ *\ -arch\ *) am__universal=true ;;
-- esac])
--
- for depmode in $am_compiler_list; do
- # Setup a source with many dependencies, because some compilers
- # like to wrap large dependency lists on column 80 (with \), and
-@@ -235,17 +197,7 @@
- done
- echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
-
-- # We check with `-c' and `-o' for the sake of the "dashmstdout"
-- # mode. It turns out that the SunPro C++ compiler does not properly
-- # handle `-M -o', and we need to detect this. Also, some Intel
-- # versions had trouble with output in subdirs
-- am__obj=sub/conftest.${OBJEXT-o}
-- am__minus_obj="-o $am__obj"
- case $depmode in
-- gcc)
-- # This depmode causes a compiler race in universal mode.
-- test "$am__universal" = false || continue
-- ;;
- nosideeffect)
- # after this tag, mechanisms are not by side-effect, so they'll
- # only be used when explicitly requested
-@@ -255,23 +207,18 @@
- break
- fi
- ;;
-- msvisualcpp | msvcmsys)
-- # This compiler won't grok `-c -o', but also, the minuso test has
-- # not run yet. These depmodes are late enough in the game, and
-- # so weak that their functioning should not be impacted.
-- am__obj=conftest.${OBJEXT-o}
-- am__minus_obj=
-- ;;
- none) break ;;
- esac
-+ # We check with `-c' and `-o' for the sake of the "dashmstdout"
-+ # mode. It turns out that the SunPro C++ compiler does not properly
-+ # handle `-M -o', and we need to detect this.
- if depmode=$depmode \
-- source=sub/conftest.c object=$am__obj \
-+ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
- depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
-- $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
-+ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
- >/dev/null 2>conftest.err &&
-- grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
- grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
-- grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
-+ grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
- ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
- # icc doesn't choke on unknown options, it will just issue warnings
- # or remarks (even with -Werror). So we grep stderr for any message
-@@ -322,74 +269,61 @@
- AMDEPBACKSLASH='\'
- fi
- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
--AC_SUBST([AMDEPBACKSLASH])dnl
--_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
-+AC_SUBST([AMDEPBACKSLASH])
- ])
-
- # Generate code to set up dependency tracking. -*- Autoconf -*-
-
--# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008
-+# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005
- # Free Software Foundation, Inc.
- #
- # This file is free software; the Free Software Foundation
- # gives unlimited permission to copy and/or distribute it,
- # with or without modifications, as long as this notice is preserved.
-
--#serial 5
-+#serial 3
-
- # _AM_OUTPUT_DEPENDENCY_COMMANDS
- # ------------------------------
- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
--[{
-- # Autoconf 2.62 quotes --file arguments for eval, but not when files
-- # are listed without --file. Let's play safe and only enable the eval
-- # if we detect the quoting.
-- case $CONFIG_FILES in
-- *\'*) eval set x "$CONFIG_FILES" ;;
-- *) set x $CONFIG_FILES ;;
-- esac
-- shift
-- for mf
-- do
-- # Strip MF so we end up with the name of the file.
-- mf=`echo "$mf" | sed -e 's/:.*$//'`
-- # Check whether this is an Automake generated Makefile or not.
-- # We used to match only the files named `Makefile.in', but
-- # some people rename them; so instead we look at the file content.
-- # Grep'ing the first line is not enough: some people post-process
-- # each Makefile.in and add a new line on top of each file to say so.
-- # Grep'ing the whole file is not good either: AIX grep has a line
-- # limit of 2048, but all sed's we know have understand at least 4000.
-- if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
-- dirpart=`AS_DIRNAME("$mf")`
-- else
-- continue
-- fi
-- # Extract the definition of DEPDIR, am__include, and am__quote
-- # from the Makefile without running `make'.
-- DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
-- test -z "$DEPDIR" && continue
-- am__include=`sed -n 's/^am__include = //p' < "$mf"`
-- test -z "am__include" && continue
-- am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
-- # When using ansi2knr, U may be empty or an underscore; expand it
-- U=`sed -n 's/^U = //p' < "$mf"`
-- # Find all dependency output files, they are included files with
-- # $(DEPDIR) in their names. We invoke sed twice because it is the
-- # simplest approach to changing $(DEPDIR) to its actual value in the
-- # expansion.
-- for file in `sed -n "
-- s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
-- sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
-- # Make sure the directory exists.
-- test -f "$dirpart/$file" && continue
-- fdir=`AS_DIRNAME(["$file"])`
-- AS_MKDIR_P([$dirpart/$fdir])
-- # echo "creating $dirpart/$file"
-- echo '# dummy' > "$dirpart/$file"
-- done
-+[for mf in $CONFIG_FILES; do
-+ # Strip MF so we end up with the name of the file.
-+ mf=`echo "$mf" | sed -e 's/:.*$//'`
-+ # Check whether this is an Automake generated Makefile or not.
-+ # We used to match only the files named `Makefile.in', but
-+ # some people rename them; so instead we look at the file content.
-+ # Grep'ing the first line is not enough: some people post-process
-+ # each Makefile.in and add a new line on top of each file to say so.
-+ # So let's grep whole file.
-+ if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
-+ dirpart=`AS_DIRNAME("$mf")`
-+ else
-+ continue
-+ fi
-+ # Extract the definition of DEPDIR, am__include, and am__quote
-+ # from the Makefile without running `make'.
-+ DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
-+ test -z "$DEPDIR" && continue
-+ am__include=`sed -n 's/^am__include = //p' < "$mf"`
-+ test -z "am__include" && continue
-+ am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
-+ # When using ansi2knr, U may be empty or an underscore; expand it
-+ U=`sed -n 's/^U = //p' < "$mf"`
-+ # Find all dependency output files, they are included files with
-+ # $(DEPDIR) in their names. We invoke sed twice because it is the
-+ # simplest approach to changing $(DEPDIR) to its actual value in the
-+ # expansion.
-+ for file in `sed -n "
-+ s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
-+ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
-+ # Make sure the directory exists.
-+ test -f "$dirpart/$file" && continue
-+ fdir=`AS_DIRNAME(["$file"])`
-+ AS_MKDIR_P([$dirpart/$fdir])
-+ # echo "creating $dirpart/$file"
-+ echo '# dummy' > "$dirpart/$file"
- done
--}
-+done
- ])# _AM_OUTPUT_DEPENDENCY_COMMANDS
-
-
-@@ -420,14 +354,14 @@
-
- # Do all the work for Automake. -*- Autoconf -*-
-
--# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
--# 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
-+# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
-+# Free Software Foundation, Inc.
- #
- # This file is free software; the Free Software Foundation
- # gives unlimited permission to copy and/or distribute it,
- # with or without modifications, as long as this notice is preserved.
-
--# serial 16
-+# serial 12
-
- # This macro actually does too much. Some checks are only needed if
- # your package does certain things. But this isn't really a big deal.
-@@ -444,20 +378,16 @@
- # arguments mandatory, and then we can depend on a new Autoconf
- # release and drop the old call support.
- AC_DEFUN([AM_INIT_AUTOMAKE],
--[AC_PREREQ([2.62])dnl
-+[AC_PREREQ([2.58])dnl
- dnl Autoconf wants to disallow AM_ names. We explicitly allow
- dnl the ones we care about.
- m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
- AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
- AC_REQUIRE([AC_PROG_INSTALL])dnl
--if test "`cd $srcdir && pwd`" != "`pwd`"; then
-- # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
-- # is not polluted with repeated "-I."
-- AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
-- # test to see if srcdir already configured
-- if test -f $srcdir/config.status; then
-- AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
-- fi
-+# test to see if srcdir already configured
-+if test "`cd $srcdir && pwd`" != "`pwd`" &&
-+ test -f $srcdir/config.status; then
-+ AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
- fi
-
- # test whether we have cygpath
-@@ -477,9 +407,6 @@
- AC_SUBST([PACKAGE], [$1])dnl
- AC_SUBST([VERSION], [$2])],
- [_AM_SET_OPTIONS([$1])dnl
--dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
--m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,,
-- [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
- AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
- AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
-
-@@ -495,8 +422,8 @@
- AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
- AM_MISSING_PROG(AUTOHEADER, autoheader)
- AM_MISSING_PROG(MAKEINFO, makeinfo)
--AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
--AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
-+AM_PROG_INSTALL_SH
-+AM_PROG_INSTALL_STRIP
- AC_REQUIRE([AM_PROG_MKDIR_P])dnl
- # We need awk for the "check" target. The system "awk" is bad on
- # some platforms.
-@@ -504,37 +431,20 @@
- AC_REQUIRE([AC_PROG_MAKE_SET])dnl
- AC_REQUIRE([AM_SET_LEADING_DOT])dnl
- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
-- [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
-- [_AM_PROG_TAR([v7])])])
-+ [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
-+ [_AM_PROG_TAR([v7])])])
- _AM_IF_OPTION([no-dependencies],,
- [AC_PROVIDE_IFELSE([AC_PROG_CC],
-- [_AM_DEPENDENCIES(CC)],
-- [define([AC_PROG_CC],
-- defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
-+ [_AM_DEPENDENCIES(CC)],
-+ [define([AC_PROG_CC],
-+ defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
- AC_PROVIDE_IFELSE([AC_PROG_CXX],
-- [_AM_DEPENDENCIES(CXX)],
-- [define([AC_PROG_CXX],
-- defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
--AC_PROVIDE_IFELSE([AC_PROG_OBJC],
-- [_AM_DEPENDENCIES(OBJC)],
-- [define([AC_PROG_OBJC],
-- defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
-+ [_AM_DEPENDENCIES(CXX)],
-+ [define([AC_PROG_CXX],
-+ defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
- ])
--_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl
--dnl The `parallel-tests' driver may need to know about EXEEXT, so add the
--dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro
--dnl is hooked onto _AC_COMPILER_EXEEXT early, see below.
--AC_CONFIG_COMMANDS_PRE(dnl
--[m4_provide_if([_AM_COMPILER_EXEEXT],
-- [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
- ])
-
--dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not
--dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
--dnl mangled by Autoconf and run in a shell conditional statement.
--m4_define([_AC_COMPILER_EXEEXT],
--m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
--
-
- # When config.status generates a header, we must update the stamp-h file.
- # This file resides in the same directory as the config header
-@@ -545,19 +455,18 @@
- # our stamp files there.
- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
- [# Compute $1's index in $config_headers.
--_am_arg=$1
- _am_stamp_count=1
- for _am_header in $config_headers :; do
- case $_am_header in
-- $_am_arg | $_am_arg:* )
-+ $1 | $1:* )
- break ;;
- * )
- _am_stamp_count=`expr $_am_stamp_count + 1` ;;
- esac
- done
--echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
-+echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count])
-
--# Copyright (C) 2001, 2003, 2005, 2008 Free Software Foundation, Inc.
-+# Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc.
- #
- # This file is free software; the Free Software Foundation
- # gives unlimited permission to copy and/or distribute it,
-@@ -568,14 +477,7 @@
- # Define $install_sh.
- AC_DEFUN([AM_PROG_INSTALL_SH],
- [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
--if test x"${install_sh}" != xset; then
-- case $am_aux_dir in
-- *\ * | *\ *)
-- install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
-- *)
-- install_sh="\${SHELL} $am_aux_dir/install-sh"
-- esac
--fi
-+install_sh=${install_sh-"$am_aux_dir/install-sh"}
- AC_SUBST(install_sh)])
-
- # Copyright (C) 2003, 2005 Free Software Foundation, Inc.
-@@ -601,13 +503,13 @@
-
- # Check to see how 'make' treats includes. -*- Autoconf -*-
-
--# Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation, Inc.
-+# Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc.
- #
- # This file is free software; the Free Software Foundation
- # gives unlimited permission to copy and/or distribute it,
- # with or without modifications, as long as this notice is preserved.
-
--# serial 4
-+# serial 3
-
- # AM_MAKE_INCLUDE()
- # -----------------
-@@ -616,7 +518,7 @@
- [am_make=${MAKE-make}
- cat > confinc << 'END'
- am__doit:
-- @echo this is the am__doit target
-+ @echo done
- .PHONY: am__doit
- END
- # If we don't find an include directive, just comment out the code.
-@@ -626,24 +528,24 @@
- _am_result=none
- # First try GNU make style include.
- echo "include confinc" > confmf
--# Ignore all kinds of additional output from `make'.
--case `$am_make -s -f confmf 2> /dev/null` in #(
--*the\ am__doit\ target*)
-- am__include=include
-- am__quote=
-- _am_result=GNU
-- ;;
--esac
-+# We grep out `Entering directory' and `Leaving directory'
-+# messages which can occur if `w' ends up in MAKEFLAGS.
-+# In particular we don't look at `^make:' because GNU make might
-+# be invoked under some other name (usually "gmake"), in which
-+# case it prints its new name instead of `make'.
-+if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
-+ am__include=include
-+ am__quote=
-+ _am_result=GNU
-+fi
- # Now try BSD make style include.
- if test "$am__include" = "#"; then
- echo '.include "confinc"' > confmf
-- case `$am_make -s -f confmf 2> /dev/null` in #(
-- *the\ am__doit\ target*)
-- am__include=.include
-- am__quote="\""
-- _am_result=BSD
-- ;;
-- esac
-+ if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
-+ am__include=.include
-+ am__quote="\""
-+ _am_result=BSD
-+ fi
- fi
- AC_SUBST([am__include])
- AC_SUBST([am__quote])
-@@ -653,14 +555,14 @@
-
- # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*-
-
--# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008
-+# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2005
- # Free Software Foundation, Inc.
- #
- # This file is free software; the Free Software Foundation
- # gives unlimited permission to copy and/or distribute it,
- # with or without modifications, as long as this notice is preserved.
-
--# serial 6
-+# serial 4
-
- # AM_MISSING_PROG(NAME, PROGRAM)
- # ------------------------------
-@@ -676,15 +578,7 @@
- # If it does, set am_missing_run to use it, otherwise, to nothing.
- AC_DEFUN([AM_MISSING_HAS_RUN],
- [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
--AC_REQUIRE_AUX_FILE([missing])dnl
--if test x"${MISSING+set}" != xset; then
-- case $am_aux_dir in
-- *\ * | *\ *)
-- MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
-- *)
-- MISSING="\${SHELL} $am_aux_dir/missing" ;;
-- esac
--fi
-+test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
- # Use eval to expand $SHELL
- if eval "$MISSING --run true"; then
- am_missing_run="$MISSING --run "
-@@ -694,7 +588,7 @@
- fi
- ])
-
--# Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
-+# Copyright (C) 2003, 2004, 2005 Free Software Foundation, Inc.
- #
- # This file is free software; the Free Software Foundation
- # gives unlimited permission to copy and/or distribute it,
-@@ -702,33 +596,70 @@
-
- # AM_PROG_MKDIR_P
- # ---------------
--# Check for `mkdir -p'.
-+# Check whether `mkdir -p' is supported, fallback to mkinstalldirs otherwise.
-+#
-+# Automake 1.8 used `mkdir -m 0755 -p --' to ensure that directories
-+# created by `make install' are always world readable, even if the
-+# installer happens to have an overly restrictive umask (e.g. 077).
-+# This was a mistake. There are at least two reasons why we must not
-+# use `-m 0755':
-+# - it causes special bits like SGID to be ignored,
-+# - it may be too restrictive (some setups expect 775 directories).
-+#
-+# Do not use -m 0755 and let people choose whatever they expect by
-+# setting umask.
-+#
-+# We cannot accept any implementation of `mkdir' that recognizes `-p'.
-+# Some implementations (such as Solaris 8's) are not thread-safe: if a
-+# parallel make tries to run `mkdir -p a/b' and `mkdir -p a/c'
-+# concurrently, both version can detect that a/ is missing, but only
-+# one can create it and the other will error out. Consequently we
-+# restrict ourselves to GNU make (using the --version option ensures
-+# this.)
- AC_DEFUN([AM_PROG_MKDIR_P],
--[AC_PREREQ([2.60])dnl
--AC_REQUIRE([AC_PROG_MKDIR_P])dnl
--dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P,
--dnl while keeping a definition of mkdir_p for backward compatibility.
--dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.
--dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of
--dnl Makefile.ins that do not define MKDIR_P, so we do our own
--dnl adjustment using top_builddir (which is defined more often than
--dnl MKDIR_P).
--AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl
--case $mkdir_p in
-- [[\\/$]]* | ?:[[\\/]]*) ;;
-- */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
--esac
--])
-+[if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
-+ # We used to keeping the `.' as first argument, in order to
-+ # allow $(mkdir_p) to be used without argument. As in
-+ # $(mkdir_p) $(somedir)
-+ # where $(somedir) is conditionally defined. However this is wrong
-+ # for two reasons:
-+ # 1. if the package is installed by a user who cannot write `.'
-+ # make install will fail,
-+ # 2. the above comment should most certainly read
-+ # $(mkdir_p) $(DESTDIR)$(somedir)
-+ # so it does not work when $(somedir) is undefined and
-+ # $(DESTDIR) is not.
-+ # To support the latter case, we have to write
-+ # test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir),
-+ # so the `.' trick is pointless.
-+ mkdir_p='mkdir -p --'
-+else
-+ # On NextStep and OpenStep, the `mkdir' command does not
-+ # recognize any option. It will interpret all options as
-+ # directories to create, and then abort because `.' already
-+ # exists.
-+ for d in ./-p ./--version;
-+ do
-+ test -d $d && rmdir $d
-+ done
-+ # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists.
-+ if test -f "$ac_aux_dir/mkinstalldirs"; then
-+ mkdir_p='$(mkinstalldirs)'
-+ else
-+ mkdir_p='$(install_sh) -d'
-+ fi
-+fi
-+AC_SUBST([mkdir_p])])
-
- # Helper functions for option handling. -*- Autoconf -*-
-
--# Copyright (C) 2001, 2002, 2003, 2005, 2008 Free Software Foundation, Inc.
-+# Copyright (C) 2001, 2002, 2003, 2005 Free Software Foundation, Inc.
- #
- # This file is free software; the Free Software Foundation
- # gives unlimited permission to copy and/or distribute it,
- # with or without modifications, as long as this notice is preserved.
-
--# serial 4
-+# serial 3
-
- # _AM_MANGLE_OPTION(NAME)
- # -----------------------
-@@ -745,7 +676,7 @@
- # ----------------------------------
- # OPTIONS is a space-separated list of Automake options.
- AC_DEFUN([_AM_SET_OPTIONS],
--[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
-+[AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
-
- # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
- # -------------------------------------------
-@@ -755,14 +686,14 @@
-
- # Check to make sure that the build environment is sane. -*- Autoconf -*-
-
--# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008
-+# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005
- # Free Software Foundation, Inc.
- #
- # This file is free software; the Free Software Foundation
- # gives unlimited permission to copy and/or distribute it,
- # with or without modifications, as long as this notice is preserved.
-
--# serial 5
-+# serial 4
-
- # AM_SANITY_CHECK
- # ---------------
-@@ -771,29 +702,16 @@
- # Just in case
- sleep 1
- echo timestamp > conftest.file
--# Reject unsafe characters in $srcdir or the absolute working directory
--# name. Accept space and tab only in the latter.
--am_lf='
--'
--case `pwd` in
-- *[[\\\"\#\$\&\'\`$am_lf]]*)
-- AC_MSG_ERROR([unsafe absolute working directory name]);;
--esac
--case $srcdir in
-- *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*)
-- AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);;
--esac
--
- # Do `set' in a subshell so we don't clobber the current shell's
- # arguments. Must try -L first in case configure is actually a
- # symlink; some systems play weird games with the mod time of symlinks
- # (eg FreeBSD returns the mod time of the symlink's containing
- # directory).
- if (
-- set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
-+ set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
- if test "$[*]" = "X"; then
- # -L didn't work.
-- set X `ls -t "$srcdir/configure" conftest.file`
-+ set X `ls -t $srcdir/configure conftest.file`
- fi
- rm -f conftest.file
- if test "$[*]" != "X $srcdir/configure conftest.file" \
-@@ -843,28 +761,9 @@
- if test "$cross_compiling" != no; then
- AC_CHECK_TOOL([STRIP], [strip], :)
- fi
--INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
-+INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
- AC_SUBST([INSTALL_STRIP_PROGRAM])])
-
--# Copyright (C) 2006, 2008 Free Software Foundation, Inc.
--#
--# This file is free software; the Free Software Foundation
--# gives unlimited permission to copy and/or distribute it,
--# with or without modifications, as long as this notice is preserved.
--
--# serial 2
--
--# _AM_SUBST_NOTMAKE(VARIABLE)
--# ---------------------------
--# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
--# This macro is traced by Automake.
--AC_DEFUN([_AM_SUBST_NOTMAKE])
--
--# AM_SUBST_NOTMAKE(VARIABLE)
--# ---------------------------
--# Public sister of _AM_SUBST_NOTMAKE.
--AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
--
- # Check how to create a tarball. -*- Autoconf -*-
-
- # Copyright (C) 2004, 2005 Free Software Foundation, Inc.
-diff -Nur mpd-0.15.8.orig/compile mpd-0.15.8/compile
---- mpd-0.15.8.orig/compile 1970-01-01 01:00:00.000000000 +0100
-+++ mpd-0.15.8/compile 2009-05-17 15:07:30.000000000 +0200
-@@ -0,0 +1,142 @@
-+#! /bin/sh
-+# Wrapper for compilers which do not understand `-c -o'.
-+
-+scriptversion=2005-05-14.22
-+
-+# Copyright (C) 1999, 2000, 2003, 2004, 2005 Free Software Foundation, Inc.
-+# Written by Tom Tromey <tromey@cygnus.com>.
-+#
-+# This program is free software; you can redistribute it and/or modify
-+# it under the terms of the GNU General Public License as published by
-+# the Free Software Foundation; either version 2, or (at your option)
-+# any later version.
-+#
-+# This program is distributed in the hope that it will be useful,
-+# but WITHOUT ANY WARRANTY; without even the implied warranty of
-+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-+# GNU General Public License for more details.
-+#
-+# You should have received a copy of the GNU General Public License
-+# along with this program; if not, write to the Free Software
-+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-+
-+# As a special exception to the GNU General Public License, if you
-+# distribute this file as part of a program that contains a
-+# configuration script generated by Autoconf, you may include it under
-+# the same distribution terms that you use for the rest of that program.
-+
-+# This file is maintained in Automake, please report
-+# bugs to <bug-automake@gnu.org> or send patches to
-+# <automake-patches@gnu.org>.
-+
-+case $1 in
-+ '')
-+ echo "$0: No command. Try \`$0 --help' for more information." 1>&2
-+ exit 1;
-+ ;;
-+ -h | --h*)
-+ cat <<\EOF
-+Usage: compile [--help] [--version] PROGRAM [ARGS]
-+
-+Wrapper for compilers which do not understand `-c -o'.
-+Remove `-o dest.o' from ARGS, run PROGRAM with the remaining
-+arguments, and rename the output as expected.
-+
-+If you are trying to build a whole package this is not the
-+right script to run: please start by reading the file `INSTALL'.
-+
-+Report bugs to <bug-automake@gnu.org>.
-+EOF
-+ exit $?
-+ ;;
-+ -v | --v*)
-+ echo "compile $scriptversion"
-+ exit $?
-+ ;;
-+esac
-+
-+ofile=
-+cfile=
-+eat=
-+
-+for arg
-+do
-+ if test -n "$eat"; then
-+ eat=
-+ else
-+ case $1 in
-+ -o)
-+ # configure might choose to run compile as `compile cc -o foo foo.c'.
-+ # So we strip `-o arg' only if arg is an object.
-+ eat=1
-+ case $2 in
-+ *.o | *.obj)
-+ ofile=$2
-+ ;;
-+ *)
-+ set x "$@" -o "$2"
-+ shift
-+ ;;
-+ esac
-+ ;;
-+ *.c)
-+ cfile=$1
-+ set x "$@" "$1"
-+ shift
-+ ;;
-+ *)
-+ set x "$@" "$1"
-+ shift
-+ ;;
-+ esac
-+ fi
-+ shift
-+done
-+
-+if test -z "$ofile" || test -z "$cfile"; then
-+ # If no `-o' option was seen then we might have been invoked from a
-+ # pattern rule where we don't need one. That is ok -- this is a
-+ # normal compilation that the losing compiler can handle. If no
-+ # `.c' file was seen then we are probably linking. That is also
-+ # ok.
-+ exec "$@"
-+fi
-+
-+# Name of file we expect compiler to create.
-+cofile=`echo "$cfile" | sed -e 's|^.*/||' -e 's/\.c$/.o/'`
-+
-+# Create the lock directory.
-+# Note: use `[/.-]' here to ensure that we don't use the same name
-+# that we are using for the .o file. Also, base the name on the expected
-+# object file name, since that is what matters with a parallel build.
-+lockdir=`echo "$cofile" | sed -e 's|[/.-]|_|g'`.d
-+while true; do
-+ if mkdir "$lockdir" >/dev/null 2>&1; then
-+ break
-+ fi
-+ sleep 1
-+done
-+# FIXME: race condition here if user kills between mkdir and trap.
-+trap "rmdir '$lockdir'; exit 1" 1 2 15
-+
-+# Run the compile.
-+"$@"
-+ret=$?
-+
-+if test -f "$cofile"; then
-+ mv "$cofile" "$ofile"
-+elif test -f "${cofile}bj"; then
-+ mv "${cofile}bj" "$ofile"
-+fi
-+
-+rmdir "$lockdir"
-+exit $ret
-+
-+# Local Variables:
-+# mode: shell-script
-+# sh-indentation: 2
-+# eval: (add-hook 'write-file-hooks 'time-stamp)
-+# time-stamp-start: "scriptversion="
-+# time-stamp-format: "%:y-%02m-%02d.%02H"
-+# time-stamp-end: "$"
-+# End:
-diff -Nur mpd-0.15.8.orig/configure mpd-0.15.8/configure
---- mpd-0.15.8.orig/configure 2010-01-18 02:27:53.000000000 +0100
-+++ mpd-0.15.8/configure 2010-02-18 23:52:08.980854427 +0100
-@@ -594,9 +594,7 @@
- # include <unistd.h>
- #endif"
-
--ac_subst_vars='am__EXEEXT_FALSE
--am__EXEEXT_TRUE
--LTLIBOBJS
-+ac_subst_vars='LTLIBOBJS
- LIBOBJS
- ENABLE_TEST_FALSE
- ENABLE_TEST_TRUE
-@@ -806,7 +804,6 @@
- SET_MAKE
- AWK
- mkdir_p
--MKDIR_P
- INSTALL_STRIP_PROGRAM
- STRIP
- install_sh
-@@ -818,7 +815,6 @@
- VERSION
- PACKAGE
- CYGPATH_W
--am__isrc
- INSTALL_DATA
- INSTALL_SCRIPT
- INSTALL_PROGRAM
-@@ -2703,8 +2699,7 @@
-
-
-
--am__api_version='1.11'
--
-+am__api_version="1.9"
- ac_aux_dir=
- for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
- for ac_t in install-sh install.sh shtool; do
-@@ -2826,29 +2821,16 @@
- # Just in case
- sleep 1
- echo timestamp > conftest.file
--# Reject unsafe characters in $srcdir or the absolute working directory
--# name. Accept space and tab only in the latter.
--am_lf='
--'
--case `pwd` in
-- *[\\\"\#\$\&\'\`$am_lf]*)
-- as_fn_error "unsafe absolute working directory name" "$LINENO" 5;;
--esac
--case $srcdir in
-- *[\\\"\#\$\&\'\`$am_lf\ \ ]*)
-- as_fn_error "unsafe srcdir value: \`$srcdir'" "$LINENO" 5;;
--esac
--
- # Do `set' in a subshell so we don't clobber the current shell's
- # arguments. Must try -L first in case configure is actually a
- # symlink; some systems play weird games with the mod time of symlinks
- # (eg FreeBSD returns the mod time of the symlink's containing
- # directory).
- if (
-- set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
-+ set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
- if test "$*" = "X"; then
- # -L didn't work.
-- set X `ls -t "$srcdir/configure" conftest.file`
-+ set X `ls -t $srcdir/configure conftest.file`
- fi
- rm -f conftest.file
- if test "$*" != "X $srcdir/configure conftest.file" \
-@@ -2886,14 +2868,7 @@
- # expand $ac_aux_dir to an absolute path
- am_aux_dir=`cd $ac_aux_dir && pwd`
-
--if test x"${MISSING+set}" != xset; then
-- case $am_aux_dir in
-- *\ * | *\ *)
-- MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
-- *)
-- MISSING="\${SHELL} $am_aux_dir/missing" ;;
-- esac
--fi
-+test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
- # Use eval to expand $SHELL
- if eval "$MISSING --run true"; then
- am_missing_run="$MISSING --run "
-@@ -2903,162 +2878,38 @@
- $as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
- fi
-
--if test x"${install_sh}" != xset; then
-- case $am_aux_dir in
-- *\ * | *\ *)
-- install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
-- *)
-- install_sh="\${SHELL} $am_aux_dir/install-sh"
-- esac
--fi
--
--# Installed binaries are usually stripped using `strip' when the user
--# run `make install-strip'. However `strip' might not be the right
--# tool to use in cross-compilation environments, therefore Automake
--# will honor the `STRIP' environment variable to overrule this program.
--if test "$cross_compiling" != no; then
-- if test -n "$ac_tool_prefix"; then
-- # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
--set dummy ${ac_tool_prefix}strip; ac_word=$2
--{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
--$as_echo_n "checking for $ac_word... " >&6; }
--if test "${ac_cv_prog_STRIP+set}" = set; then :
-- $as_echo_n "(cached) " >&6
--else
-- if test -n "$STRIP"; then
-- ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
--else
--as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
--for as_dir in $PATH
--do
-- IFS=$as_save_IFS
-- test -z "$as_dir" && as_dir=.
-- for ac_exec_ext in '' $ac_executable_extensions; do
-- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-- ac_cv_prog_STRIP="${ac_tool_prefix}strip"
-- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
-- break 2
-- fi
--done
-- done
--IFS=$as_save_IFS
--
--fi
--fi
--STRIP=$ac_cv_prog_STRIP
--if test -n "$STRIP"; then
-- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5
--$as_echo "$STRIP" >&6; }
--else
-- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
--$as_echo "no" >&6; }
--fi
--
--
--fi
--if test -z "$ac_cv_prog_STRIP"; then
-- ac_ct_STRIP=$STRIP
-- # Extract the first word of "strip", so it can be a program name with args.
--set dummy strip; ac_word=$2
--{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
--$as_echo_n "checking for $ac_word... " >&6; }
--if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then :
-- $as_echo_n "(cached) " >&6
--else
-- if test -n "$ac_ct_STRIP"; then
-- ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
--else
--as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
--for as_dir in $PATH
--do
-- IFS=$as_save_IFS
-- test -z "$as_dir" && as_dir=.
-- for ac_exec_ext in '' $ac_executable_extensions; do
-- if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-- ac_cv_prog_ac_ct_STRIP="strip"
-- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
-- break 2
-- fi
--done
-- done
--IFS=$as_save_IFS
--
--fi
--fi
--ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
--if test -n "$ac_ct_STRIP"; then
-- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5
--$as_echo "$ac_ct_STRIP" >&6; }
--else
-- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
--$as_echo "no" >&6; }
--fi
--
-- if test "x$ac_ct_STRIP" = x; then
-- STRIP=":"
-- else
-- case $cross_compiling:$ac_tool_warned in
--yes:)
--{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
--$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
--ac_tool_warned=yes ;;
--esac
-- STRIP=$ac_ct_STRIP
-- fi
--else
-- STRIP="$ac_cv_prog_STRIP"
--fi
--
--fi
--INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
--
--{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5
--$as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
--if test -z "$MKDIR_P"; then
-- if test "${ac_cv_path_mkdir+set}" = set; then :
-- $as_echo_n "(cached) " >&6
--else
-- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
--for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin
--do
-- IFS=$as_save_IFS
-- test -z "$as_dir" && as_dir=.
-- for ac_prog in mkdir gmkdir; do
-- for ac_exec_ext in '' $ac_executable_extensions; do
-- { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue
-- case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
-- 'mkdir (GNU coreutils) '* | \
-- 'mkdir (coreutils) '* | \
-- 'mkdir (fileutils) '4.1*)
-- ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext
-- break 3;;
-- esac
-- done
-- done
-+if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
-+ # We used to keeping the `.' as first argument, in order to
-+ # allow $(mkdir_p) to be used without argument. As in
-+ # $(mkdir_p) $(somedir)
-+ # where $(somedir) is conditionally defined. However this is wrong
-+ # for two reasons:
-+ # 1. if the package is installed by a user who cannot write `.'
-+ # make install will fail,
-+ # 2. the above comment should most certainly read
-+ # $(mkdir_p) $(DESTDIR)$(somedir)
-+ # so it does not work when $(somedir) is undefined and
-+ # $(DESTDIR) is not.
-+ # To support the latter case, we have to write
-+ # test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir),
-+ # so the `.' trick is pointless.
-+ mkdir_p='mkdir -p --'
-+else
-+ # On NextStep and OpenStep, the `mkdir' command does not
-+ # recognize any option. It will interpret all options as
-+ # directories to create, and then abort because `.' already
-+ # exists.
-+ for d in ./-p ./--version;
-+ do
-+ test -d $d && rmdir $d
- done
--IFS=$as_save_IFS
--
--fi
--
-- test -d ./--version && rmdir ./--version
-- if test "${ac_cv_path_mkdir+set}" = set; then
-- MKDIR_P="$ac_cv_path_mkdir -p"
-+ # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists.
-+ if test -f "$ac_aux_dir/mkinstalldirs"; then
-+ mkdir_p='$(mkinstalldirs)'
- else
-- # As a last resort, use the slow shell script. Don't cache a
-- # value for MKDIR_P within a source directory, because that will
-- # break other packages using the cache if that directory is
-- # removed, or if the value is a relative name.
-- MKDIR_P="$ac_install_sh -d"
-+ mkdir_p='$(install_sh) -d'
- fi
- fi
--{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5
--$as_echo "$MKDIR_P" >&6; }
--
--mkdir_p="$MKDIR_P"
--case $mkdir_p in
-- [\\/$]* | ?:[\\/]*) ;;
-- */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
--esac
-
- for ac_prog in gawk mawk nawk awk
- do
-@@ -3142,14 +2993,10 @@
- fi
- rmdir .tst 2>/dev/null
-
--if test "`cd $srcdir && pwd`" != "`pwd`"; then
-- # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
-- # is not polluted with repeated "-I."
-- am__isrc=' -I$(srcdir)'
-- # test to see if srcdir already configured
-- if test -f $srcdir/config.status; then
-- as_fn_error "source directory already configured; run \"make distclean\" there first" "$LINENO" 5
-- fi
-+# test to see if srcdir already configured
-+if test "`cd $srcdir && pwd`" != "`pwd`" &&
-+ test -f $srcdir/config.status; then
-+ as_fn_error "source directory already configured; run \"make distclean\" there first" "$LINENO" 5
- fi
-
- # test whether we have cygpath
-@@ -3192,6 +3039,108 @@
-
- MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
-
-+install_sh=${install_sh-"$am_aux_dir/install-sh"}
-+
-+# Installed binaries are usually stripped using `strip' when the user
-+# run `make install-strip'. However `strip' might not be the right
-+# tool to use in cross-compilation environments, therefore Automake
-+# will honor the `STRIP' environment variable to overrule this program.
-+if test "$cross_compiling" != no; then
-+ if test -n "$ac_tool_prefix"; then
-+ # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
-+set dummy ${ac_tool_prefix}strip; ac_word=$2
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
-+$as_echo_n "checking for $ac_word... " >&6; }
-+if test "${ac_cv_prog_STRIP+set}" = set; then :
-+ $as_echo_n "(cached) " >&6
-+else
-+ if test -n "$STRIP"; then
-+ ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+ IFS=$as_save_IFS
-+ test -z "$as_dir" && as_dir=.
-+ for ac_exec_ext in '' $ac_executable_extensions; do
-+ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+ ac_cv_prog_STRIP="${ac_tool_prefix}strip"
-+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
-+ break 2
-+ fi
-+done
-+ done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+STRIP=$ac_cv_prog_STRIP
-+if test -n "$STRIP"; then
-+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5
-+$as_echo "$STRIP" >&6; }
-+else
-+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-+$as_echo "no" >&6; }
-+fi
-+
-+
-+fi
-+if test -z "$ac_cv_prog_STRIP"; then
-+ ac_ct_STRIP=$STRIP
-+ # Extract the first word of "strip", so it can be a program name with args.
-+set dummy strip; ac_word=$2
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
-+$as_echo_n "checking for $ac_word... " >&6; }
-+if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then :
-+ $as_echo_n "(cached) " >&6
-+else
-+ if test -n "$ac_ct_STRIP"; then
-+ ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
-+else
-+as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
-+for as_dir in $PATH
-+do
-+ IFS=$as_save_IFS
-+ test -z "$as_dir" && as_dir=.
-+ for ac_exec_ext in '' $ac_executable_extensions; do
-+ if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
-+ ac_cv_prog_ac_ct_STRIP="strip"
-+ $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
-+ break 2
-+ fi
-+done
-+ done
-+IFS=$as_save_IFS
-+
-+fi
-+fi
-+ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
-+if test -n "$ac_ct_STRIP"; then
-+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5
-+$as_echo "$ac_ct_STRIP" >&6; }
-+else
-+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
-+$as_echo "no" >&6; }
-+fi
-+
-+ if test "x$ac_ct_STRIP" = x; then
-+ STRIP=":"
-+ else
-+ case $cross_compiling:$ac_tool_warned in
-+yes:)
-+{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
-+$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
-+ac_tool_warned=yes ;;
-+esac
-+ STRIP=$ac_ct_STRIP
-+ fi
-+else
-+ STRIP="$ac_cv_prog_STRIP"
-+fi
-+
-+fi
-+INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
-+
- # We need awk for the "check" target. The system "awk" is bad on
- # some platforms.
- # Always define AMTAR for backward compatibility.
-@@ -3222,7 +3171,7 @@
- am_make=${MAKE-make}
- cat > confinc << 'END'
- am__doit:
-- @echo this is the am__doit target
-+ @echo done
- .PHONY: am__doit
- END
- # If we don't find an include directive, just comment out the code.
-@@ -3233,24 +3182,24 @@
- _am_result=none
- # First try GNU make style include.
- echo "include confinc" > confmf
--# Ignore all kinds of additional output from `make'.
--case `$am_make -s -f confmf 2> /dev/null` in #(
--*the\ am__doit\ target*)
-- am__include=include
-- am__quote=
-- _am_result=GNU
-- ;;
--esac
-+# We grep out `Entering directory' and `Leaving directory'
-+# messages which can occur if `w' ends up in MAKEFLAGS.
-+# In particular we don't look at `^make:' because GNU make might
-+# be invoked under some other name (usually "gmake"), in which
-+# case it prints its new name instead of `make'.
-+if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
-+ am__include=include
-+ am__quote=
-+ _am_result=GNU
-+fi
- # Now try BSD make style include.
- if test "$am__include" = "#"; then
- echo '.include "confinc"' > confmf
-- case `$am_make -s -f confmf 2> /dev/null` in #(
-- *the\ am__doit\ target*)
-- am__include=.include
-- am__quote="\""
-- _am_result=BSD
-- ;;
-- esac
-+ if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
-+ am__include=.include
-+ am__quote="\""
-+ _am_result=BSD
-+ fi
- fi
-
-
-@@ -3267,7 +3216,9 @@
- am_depcomp="$ac_aux_dir/depcomp"
- AMDEPBACKSLASH='\'
- fi
-- if test "x$enable_dependency_tracking" != xno; then
-+
-+
-+if test "x$enable_dependency_tracking" != xno; then
- AMDEP_TRUE=
- AMDEP_FALSE='#'
- else
-@@ -3276,6 +3227,7 @@
- fi
-
-
-+
- ac_ext=c
- ac_cpp='$CPP $CPPFLAGS'
- ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
-@@ -4097,11 +4049,6 @@
- if test "$am_compiler_list" = ""; then
- am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
- fi
-- am__universal=false
-- case " $depcc " in #(
-- *\ -arch\ *\ -arch\ *) am__universal=true ;;
-- esac
--
- for depmode in $am_compiler_list; do
- # Setup a source with many dependencies, because some compilers
- # like to wrap large dependency lists on column 80 (with \), and
-@@ -4119,17 +4066,7 @@
- done
- echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
-
-- # We check with `-c' and `-o' for the sake of the "dashmstdout"
-- # mode. It turns out that the SunPro C++ compiler does not properly
-- # handle `-M -o', and we need to detect this. Also, some Intel
-- # versions had trouble with output in subdirs
-- am__obj=sub/conftest.${OBJEXT-o}
-- am__minus_obj="-o $am__obj"
- case $depmode in
-- gcc)
-- # This depmode causes a compiler race in universal mode.
-- test "$am__universal" = false || continue
-- ;;
- nosideeffect)
- # after this tag, mechanisms are not by side-effect, so they'll
- # only be used when explicitly requested
-@@ -4139,23 +4076,18 @@
- break
- fi
- ;;
-- msvisualcpp | msvcmsys)
-- # This compiler won't grok `-c -o', but also, the minuso test has
-- # not run yet. These depmodes are late enough in the game, and
-- # so weak that their functioning should not be impacted.
-- am__obj=conftest.${OBJEXT-o}
-- am__minus_obj=
-- ;;
- none) break ;;
- esac
-+ # We check with `-c' and `-o' for the sake of the "dashmstdout"
-+ # mode. It turns out that the SunPro C++ compiler does not properly
-+ # handle `-M -o', and we need to detect this.
- if depmode=$depmode \
-- source=sub/conftest.c object=$am__obj \
-+ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
- depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
-- $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
-+ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
- >/dev/null 2>conftest.err &&
-- grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
- grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
-- grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
-+ grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
- ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
- # icc doesn't choke on unknown options, it will just issue warnings
- # or remarks (even with -Werror). So we grep stderr for any message
-@@ -4183,7 +4115,9 @@
- $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; }
- CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
-
-- if
-+
-+
-+if
- test "x$enable_dependency_tracking" != xno \
- && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then
- am__fastdepCC_TRUE=
-@@ -4658,11 +4592,6 @@
- if test "$am_compiler_list" = ""; then
- am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
- fi
-- am__universal=false
-- case " $depcc " in #(
-- *\ -arch\ *\ -arch\ *) am__universal=true ;;
-- esac
--
- for depmode in $am_compiler_list; do
- # Setup a source with many dependencies, because some compilers
- # like to wrap large dependency lists on column 80 (with \), and
-@@ -4680,17 +4609,7 @@
- done
- echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
-
-- # We check with `-c' and `-o' for the sake of the "dashmstdout"
-- # mode. It turns out that the SunPro C++ compiler does not properly
-- # handle `-M -o', and we need to detect this. Also, some Intel
-- # versions had trouble with output in subdirs
-- am__obj=sub/conftest.${OBJEXT-o}
-- am__minus_obj="-o $am__obj"
- case $depmode in
-- gcc)
-- # This depmode causes a compiler race in universal mode.
-- test "$am__universal" = false || continue
-- ;;
- nosideeffect)
- # after this tag, mechanisms are not by side-effect, so they'll
- # only be used when explicitly requested
-@@ -4700,23 +4619,18 @@
- break
- fi
- ;;
-- msvisualcpp | msvcmsys)
-- # This compiler won't grok `-c -o', but also, the minuso test has
-- # not run yet. These depmodes are late enough in the game, and
-- # so weak that their functioning should not be impacted.
-- am__obj=conftest.${OBJEXT-o}
-- am__minus_obj=
-- ;;
- none) break ;;
- esac
-+ # We check with `-c' and `-o' for the sake of the "dashmstdout"
-+ # mode. It turns out that the SunPro C++ compiler does not properly
-+ # handle `-M -o', and we need to detect this.
- if depmode=$depmode \
-- source=sub/conftest.c object=$am__obj \
-+ source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
- depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
-- $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
-+ $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
- >/dev/null 2>conftest.err &&
-- grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
- grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
-- grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
-+ grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
- ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
- # icc doesn't choke on unknown options, it will just issue warnings
- # or remarks (even with -Werror). So we grep stderr for any message
-@@ -4744,7 +4658,9 @@
- $as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; }
- CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type
-
-- if
-+
-+
-+if
- test "x$enable_dependency_tracking" != xno \
- && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then
- am__fastdepCXX_TRUE=
-@@ -6037,7 +5953,9 @@
-
- fi
-
-- if test x$enable_cue = xyes; then
-+
-+
-+if test x$enable_cue = xyes; then
- HAVE_CUE_TRUE=
- HAVE_CUE_FALSE='#'
- else
-@@ -6217,7 +6135,9 @@
- fi
- fi
-
-- if test x$with_zeroconf != xno; then
-+
-+
-+if test x$with_zeroconf != xno; then
- HAVE_ZEROCONF_TRUE=
- HAVE_ZEROCONF_FALSE='#'
- else
-@@ -6225,7 +6145,9 @@
- HAVE_ZEROCONF_FALSE=
- fi
-
-- if test x$with_zeroconf = xavahi; then
-+
-+
-+if test x$with_zeroconf = xavahi; then
- HAVE_AVAHI_TRUE=
- HAVE_AVAHI_FALSE='#'
- else
-@@ -6233,7 +6155,9 @@
- HAVE_AVAHI_FALSE=
- fi
-
-- if test x$with_zeroconf = xbonjour; then
-+
-+
-+if test x$with_zeroconf = xbonjour; then
- HAVE_BONJOUR_TRUE=
- HAVE_BONJOUR_FALSE='#'
- else
-@@ -6370,7 +6294,9 @@
-
- fi
-
-- if test x$enable_sqlite = xyes; then
-+
-+
-+if test x$enable_sqlite = xyes; then
- ENABLE_SQLITE_TRUE=
- ENABLE_SQLITE_FALSE='#'
- else
-@@ -6508,7 +6434,9 @@
- $as_echo "#define HAVE_CURL 1" >>confdefs.h
-
- fi
-- if test x$enable_curl = xyes; then
-+
-+
-+if test x$enable_curl = xyes; then
- HAVE_CURL_TRUE=
- HAVE_CURL_FALSE='#'
- else
-@@ -6534,7 +6462,9 @@
- $as_echo "#define ENABLE_LASTFM 1" >>confdefs.h
-
- fi
-- if test x$enable_lastfm = xyes; then
-+
-+
-+if test x$enable_lastfm = xyes; then
- ENABLE_LASTFM_TRUE=
- ENABLE_LASTFM_FALSE='#'
- else
-@@ -6670,7 +6600,9 @@
- $as_echo "#define ENABLE_MMS 1" >>confdefs.h
-
- fi
-- if test x$enable_mms = xyes; then
-+
-+
-+if test x$enable_mms = xyes; then
- ENABLE_MMS_TRUE=
- ENABLE_MMS_FALSE='#'
- else
-@@ -6734,7 +6666,9 @@
-
- fi
-
-- if test x$enable_bzip2 = xyes; then
-+
-+
-+if test x$enable_bzip2 = xyes; then
- HAVE_BZ2_TRUE=
- HAVE_BZ2_FALSE='#'
- else
-@@ -6871,7 +6805,9 @@
-
-
-
-- if test x$enable_zip = xyes; then
-+
-+
-+if test x$enable_zip = xyes; then
- HAVE_ZIP_TRUE=
- HAVE_ZIP_FALSE='#'
- else
-@@ -7008,7 +6944,9 @@
-
-
-
-- if test x$enable_iso9660 = xyes; then
-+
-+
-+if test x$enable_iso9660 = xyes; then
- HAVE_ISO_TRUE=
- HAVE_ISO_FALSE='#'
- else
-@@ -7034,7 +6972,9 @@
- enable_archive=no
- fi
-
-- if test x$enable_archive = xyes; then
-+
-+
-+if test x$enable_archive = xyes; then
- ENABLE_ARCHIVE_TRUE=
- ENABLE_ARCHIVE_FALSE='#'
- else
-@@ -7209,7 +7149,9 @@
- $as_echo "#define HAVE_MAD 1" >>confdefs.h
-
- fi
-- if test x$enable_mad = xyes; then
-+
-+
-+if test x$enable_mad = xyes; then
- HAVE_MAD_TRUE=
- HAVE_MAD_FALSE='#'
- else
-@@ -7280,7 +7222,9 @@
- fi
- fi
-
-- if test x$enable_mikmod = xyes; then
-+
-+
-+if test x$enable_mikmod = xyes; then
- ENABLE_MIKMOD_DECODER_TRUE=
- ENABLE_MIKMOD_DECODER_FALSE='#'
- else
-@@ -7436,7 +7380,9 @@
- fi
-
-
-- if test x$enable_modplug = xyes; then
-+
-+
-+if test x$enable_modplug = xyes; then
- HAVE_MODPLUG_TRUE=
- HAVE_MODPLUG_FALSE='#'
- else
-@@ -7695,7 +7641,9 @@
-
- fi
-
-- if test x$enable_sidplay = xyes; then
-+
-+
-+if test x$enable_sidplay = xyes; then
- ENABLE_SIDPLAY_TRUE=
- ENABLE_SIDPLAY_FALSE='#'
- else
-@@ -7936,7 +7884,9 @@
- fi
- fi
-
-- if test x$enable_lsr = xyes; then
-+
-+
-+if test x$enable_lsr = xyes; then
- HAVE_LIBSAMPLERATE_TRUE=
- HAVE_LIBSAMPLERATE_FALSE='#'
- else
-@@ -8101,7 +8051,9 @@
-
- fi
-
-- if test x$enable_ao = xyes; then
-+
-+
-+if test x$enable_ao = xyes; then
- HAVE_AO_TRUE=
- HAVE_AO_FALSE='#'
- else
-@@ -8131,7 +8083,9 @@
- $as_echo "#define ENABLE_PIPE_OUTPUT 1" >>confdefs.h
-
- fi
-- if test x$enable_pipe_output = xyes; then
-+
-+
-+if test x$enable_pipe_output = xyes; then
- ENABLE_PIPE_OUTPUT_TRUE=
- ENABLE_PIPE_OUTPUT_FALSE='#'
- else
-@@ -8288,7 +8242,9 @@
- LIBS=$old_LIBS
- fi
-
-- if test x$enable_jack = xyes; then
-+
-+
-+if test x$enable_jack = xyes; then
- HAVE_JACK_TRUE=
- HAVE_JACK_FALSE='#'
- else
-@@ -8441,7 +8397,9 @@
-
- fi
-
-- if test x$enable_pulse = xyes; then
-+
-+
-+if test x$enable_pulse = xyes; then
- HAVE_PULSE_TRUE=
- HAVE_PULSE_FALSE='#'
- else
-@@ -8468,7 +8426,9 @@
- enable_osx=yes ;;
- esac
-
-- if test x$enable_osx = xyes; then
-+
-+
-+if test x$enable_osx = xyes; then
- HAVE_OSX_TRUE=
- HAVE_OSX_FALSE='#'
- else
-@@ -8617,7 +8577,9 @@
- ;;
- esac
-
-- if test x$enable_solaris_output = xyes; then
-+
-+
-+if test x$enable_solaris_output = xyes; then
- ENABLE_SOLARIS_OUTPUT_TRUE=
- ENABLE_SOLARIS_OUTPUT_FALSE='#'
- else
-@@ -8641,7 +8603,9 @@
-
- fi
-
-- if test x$enable_oss = xyes; then
-+
-+
-+if test x$enable_oss = xyes; then
- HAVE_OSS_TRUE=
- HAVE_OSS_FALSE='#'
- else
-@@ -8663,7 +8627,9 @@
-
- fi
-
-- if test x$enable_fifo = xyes; then
-+
-+
-+if test x$enable_fifo = xyes; then
- HAVE_FIFO_TRUE=
- HAVE_FIFO_FALSE='#'
- else
-@@ -8678,7 +8644,9 @@
-
- fi
-
-- if test x$enable_mvp = xyes; then
-+
-+
-+if test x$enable_mvp = xyes; then
- HAVE_MVP_TRUE=
- HAVE_MVP_FALSE='#'
- else
-@@ -8808,7 +8776,9 @@
-
- fi
-
-- if test x$enable_alsa = xyes; then
-+
-+
-+if test x$enable_alsa = xyes; then
- HAVE_ALSA_TRUE=
- HAVE_ALSA_FALSE='#'
- else
-@@ -8979,7 +8949,9 @@
-
- fi
-
-- if test x$enable_id3 = xyes; then
-+
-+
-+if test x$enable_id3 = xyes; then
- HAVE_ID3TAG_TRUE=
- HAVE_ID3TAG_FALSE='#'
- else
-@@ -9081,7 +9053,9 @@
- CPPFLAGS=$oldcppflags
- fi
-
-- if test x$enable_mpc = xyes; then
-+
-+
-+if test x$enable_mpc = xyes; then
- HAVE_MPCDEC_TRUE=
- HAVE_MPCDEC_FALSE='#'
- else
-@@ -9169,7 +9143,9 @@
- fi
- fi
-
-- if test x$enable_wavpack = xyes; then
-+
-+
-+if test x$enable_wavpack = xyes; then
- HAVE_WAVPACK_TRUE=
- HAVE_WAVPACK_FALSE='#'
- else
-@@ -9612,7 +9588,9 @@
- fi
-
-
-- if test x$enable_aac = xyes; then
-+
-+
-+if test x$enable_aac = xyes; then
- HAVE_FAAD_TRUE=
- HAVE_FAAD_FALSE='#'
- else
-@@ -9621,7 +9599,9 @@
- fi
-
-
-- if test x$enable_mp4 = xyes; then
-+
-+
-+if test x$enable_mp4 = xyes; then
- HAVE_MP4_TRUE=
- HAVE_MP4_FALSE='#'
- else
-@@ -9773,7 +9753,9 @@
- fi
- fi
-
-- if test x$enable_vorbis = xyes; then
-+
-+
-+if test x$enable_vorbis = xyes; then
- ENABLE_VORBIS_DECODER_TRUE=
- ENABLE_VORBIS_DECODER_FALSE='#'
- else
-@@ -9887,7 +9869,9 @@
- LIBS="$oldlibs"
- fi
-
-- if test x$enable_flac = xyes; then
-+
-+
-+if test x$enable_flac = xyes; then
- HAVE_FLAC_TRUE=
- HAVE_FLAC_FALSE='#'
- else
-@@ -10059,7 +10043,9 @@
-
- fi
-
-- if test x$enable_oggflac = xyes; then
-+
-+
-+if test x$enable_oggflac = xyes; then
- HAVE_OGGFLAC_TRUE=
- HAVE_OGGFLAC_FALSE='#'
- else
-@@ -10068,7 +10054,9 @@
- fi
-
-
-- if test x$enable_flac = xyes || test x$enable_oggflac = xyes; then
-+
-+
-+if test x$enable_flac = xyes || test x$enable_oggflac = xyes; then
- HAVE_FLAC_COMMON_TRUE=
- HAVE_FLAC_COMMON_FALSE='#'
- else
-@@ -10076,7 +10064,9 @@
- HAVE_FLAC_COMMON_FALSE=
- fi
-
-- if test x$enable_vorbis = xyes || test x$enable_oggflac = xyes || test x$enable_flac = xyes; then
-+
-+
-+if test x$enable_vorbis = xyes || test x$enable_oggflac = xyes || test x$enable_flac = xyes; then
- HAVE_OGG_COMMON_TRUE=
- HAVE_OGG_COMMON_FALSE='#'
- else
-@@ -10161,7 +10151,9 @@
- fi
- fi
-
-- if test x$enable_audiofile = xyes; then
-+
-+
-+if test x$enable_audiofile = xyes; then
- HAVE_AUDIOFILE_TRUE=
- HAVE_AUDIOFILE_FALSE='#'
- else
-@@ -10362,7 +10354,9 @@
-
- fi
-
-- if test x$enable_ffmpeg = xyes; then
-+
-+
-+if test x$enable_ffmpeg = xyes; then
- HAVE_FFMPEG_TRUE=
- HAVE_FFMPEG_FALSE='#'
- else
-@@ -10447,7 +10441,9 @@
- fi
- fi
-
-- if test x$enable_fluidsynth = xyes; then
-+
-+
-+if test x$enable_fluidsynth = xyes; then
- ENABLE_FLUIDSYNTH_TRUE=
- ENABLE_FLUIDSYNTH_FALSE='#'
- else
-@@ -10522,7 +10518,9 @@
-
- fi
-
-- if test x$enable_wildmidi = xyes; then
-+
-+
-+if test x$enable_wildmidi = xyes; then
- ENABLE_WILDMIDI_TRUE=
- ENABLE_WILDMIDI_FALSE='#'
- else
-@@ -10694,8 +10692,6 @@
- LAME_LIBS="-L$lame_libraries"
- elif test "x$lame_prefix" != "x" ; then
- LAME_LIBS="-L$lame_prefix/lib"
-- elif test "x$prefix" != "xNONE" ; then
-- LAME_LIBS="-L$prefix/lib"
- fi
-
- LAME_LIBS="$LAME_LIBS -lmp3lame -lm"
-@@ -10704,8 +10700,6 @@
- LAME_CFLAGS="-I$lame_includes"
- elif test "x$lame_prefix" != "x" ; then
- LAME_CFLAGS="-I$lame_prefix/include"
-- elif test "x$prefix" != "xNONE"; then
-- LAME_CFLAGS="-I$prefix/include"
- fi
-
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for liblame" >&5
-@@ -10890,7 +10884,9 @@
- fi
- fi
-
-- if test x$enable_shout = xyes; then
-+
-+
-+if test x$enable_shout = xyes; then
- HAVE_SHOUT_TRUE=
- HAVE_SHOUT_FALSE='#'
- else
-@@ -10904,7 +10900,9 @@
-
- fi
-
-- if test x$enable_httpd_output = xyes; then
-+
-+
-+if test x$enable_httpd_output = xyes; then
- ENABLE_HTTPD_OUTPUT_TRUE=
- ENABLE_HTTPD_OUTPUT_FALSE='#'
- else
-@@ -10918,7 +10916,9 @@
-
- fi
-
-- if test x$enable_encoder = xyes; then
-+
-+
-+if test x$enable_encoder = xyes; then
- ENABLE_ENCODER_TRUE=
- ENABLE_ENCODER_FALSE='#'
- else
-@@ -10927,7 +10927,9 @@
- fi
-
-
-- if test x$enable_vorbis_encoder = xyes; then
-+
-+
-+if test x$enable_vorbis_encoder = xyes; then
- ENABLE_VORBIS_ENCODER_TRUE=
- ENABLE_VORBIS_ENCODER_FALSE='#'
- else
-@@ -10941,7 +10943,9 @@
-
- fi
-
-- if test x$enable_lame_encoder = xyes; then
-+
-+
-+if test x$enable_lame_encoder = xyes; then
- ENABLE_LAME_ENCODER_TRUE=
- ENABLE_LAME_ENCODER_FALSE='#'
- else
-@@ -11007,7 +11011,9 @@
-
-
-
-- if test x$XMLTO != x; then
-+
-+
-+if test x$XMLTO != x; then
- HAVE_XMLTO_TRUE=
- HAVE_XMLTO_FALSE='#'
- else
-@@ -11062,7 +11068,9 @@
-
-
- else
-- if false; then
-+
-+
-+if false; then
- HAVE_XMLTO_TRUE=
- HAVE_XMLTO_FALSE='#'
- else
-@@ -11072,7 +11080,9 @@
-
- fi
-
-- if test x$enable_documentation = xyes; then
-+
-+
-+if test x$enable_documentation = xyes; then
- ENABLE_DOCUMENTATION_TRUE=
- ENABLE_DOCUMENTATION_FALSE='#'
- else
-@@ -11129,7 +11139,9 @@
- fi
-
-
-- if test "x$enable_test" = xyes; then
-+
-+
-+if test "x$enable_test" = xyes; then
- ENABLE_TEST_TRUE=
- ENABLE_TEST_FALSE='#'
- else
-@@ -11925,14 +11937,6 @@
- LTLIBOBJS=$ac_ltlibobjs
-
-
-- if test -n "$EXEEXT"; then
-- am__EXEEXT_TRUE=
-- am__EXEEXT_FALSE='#'
--else
-- am__EXEEXT_TRUE='#'
-- am__EXEEXT_FALSE=
--fi
--
- if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
- as_fn_error "conditional \"AMDEP\" was never defined.
- Usually this means the macro was only invoked conditionally." "$LINENO" 5
-@@ -12630,7 +12634,6 @@
- ac_pwd='$ac_pwd'
- srcdir='$srcdir'
- INSTALL='$INSTALL'
--MKDIR_P='$MKDIR_P'
- AWK='$AWK'
- test -n "\$AWK" || AWK=awk
- _ACEOF
-@@ -13183,11 +13186,6 @@
- [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
- *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
- esac
-- ac_MKDIR_P=$MKDIR_P
-- case $MKDIR_P in
-- [\\/$]* | ?:[\\/]* ) ;;
-- */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
-- esac
- _ACEOF
-
- cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
-@@ -13242,7 +13240,6 @@
- s&@abs_builddir@&$ac_abs_builddir&;t t
- s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
- s&@INSTALL@&$ac_INSTALL&;t t
--s&@MKDIR_P@&$ac_MKDIR_P&;t t
- $ac_datarootdir_hack
- "
- eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \
-@@ -13287,22 +13284,21 @@
- || as_fn_error "could not create -" "$LINENO" 5
- fi
- # Compute "$ac_file"'s index in $config_headers.
--_am_arg="$ac_file"
- _am_stamp_count=1
- for _am_header in $config_headers :; do
- case $_am_header in
-- $_am_arg | $_am_arg:* )
-+ "$ac_file" | "$ac_file":* )
- break ;;
- * )
- _am_stamp_count=`expr $_am_stamp_count + 1` ;;
- esac
- done
--echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" ||
--$as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-- X"$_am_arg" : 'X\(//\)[^/]' \| \
-- X"$_am_arg" : 'X\(//\)$' \| \
-- X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null ||
--$as_echo X"$_am_arg" |
-+echo "timestamp for "$ac_file"" >`$as_dirname -- "$ac_file" ||
-+$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
-+ X"$ac_file" : 'X\(//\)[^/]' \| \
-+ X"$ac_file" : 'X\(//\)$' \| \
-+ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
-+$as_echo X"$ac_file" |
- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
- s//\1/
- q
-@@ -13329,28 +13325,17 @@
-
-
- case $ac_file$ac_mode in
-- "depfiles":C) test x"$AMDEP_TRUE" != x"" || {
-- # Autoconf 2.62 quotes --file arguments for eval, but not when files
-- # are listed without --file. Let's play safe and only enable the eval
-- # if we detect the quoting.
-- case $CONFIG_FILES in
-- *\'*) eval set x "$CONFIG_FILES" ;;
-- *) set x $CONFIG_FILES ;;
-- esac
-- shift
-- for mf
-- do
-- # Strip MF so we end up with the name of the file.
-- mf=`echo "$mf" | sed -e 's/:.*$//'`
-- # Check whether this is an Automake generated Makefile or not.
-- # We used to match only the files named `Makefile.in', but
-- # some people rename them; so instead we look at the file content.
-- # Grep'ing the first line is not enough: some people post-process
-- # each Makefile.in and add a new line on top of each file to say so.
-- # Grep'ing the whole file is not good either: AIX grep has a line
-- # limit of 2048, but all sed's we know have understand at least 4000.
-- if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
-- dirpart=`$as_dirname -- "$mf" ||
-+ "depfiles":C) test x"$AMDEP_TRUE" != x"" || for mf in $CONFIG_FILES; do
-+ # Strip MF so we end up with the name of the file.
-+ mf=`echo "$mf" | sed -e 's/:.*$//'`
-+ # Check whether this is an Automake generated Makefile or not.
-+ # We used to match only the files named `Makefile.in', but
-+ # some people rename them; so instead we look at the file content.
-+ # Grep'ing the first line is not enough: some people post-process
-+ # each Makefile.in and add a new line on top of each file to say so.
-+ # So let's grep whole file.
-+ if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
-+ dirpart=`$as_dirname -- "$mf" ||
- $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$mf" : 'X\(//\)[^/]' \| \
- X"$mf" : 'X\(//\)$' \| \
-@@ -13373,28 +13358,28 @@
- q
- }
- s/.*/./; q'`
-- else
-- continue
-- fi
-- # Extract the definition of DEPDIR, am__include, and am__quote
-- # from the Makefile without running `make'.
-- DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
-- test -z "$DEPDIR" && continue
-- am__include=`sed -n 's/^am__include = //p' < "$mf"`
-- test -z "am__include" && continue
-- am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
-- # When using ansi2knr, U may be empty or an underscore; expand it
-- U=`sed -n 's/^U = //p' < "$mf"`
-- # Find all dependency output files, they are included files with
-- # $(DEPDIR) in their names. We invoke sed twice because it is the
-- # simplest approach to changing $(DEPDIR) to its actual value in the
-- # expansion.
-- for file in `sed -n "
-- s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
-- sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
-- # Make sure the directory exists.
-- test -f "$dirpart/$file" && continue
-- fdir=`$as_dirname -- "$file" ||
-+ else
-+ continue
-+ fi
-+ # Extract the definition of DEPDIR, am__include, and am__quote
-+ # from the Makefile without running `make'.
-+ DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
-+ test -z "$DEPDIR" && continue
-+ am__include=`sed -n 's/^am__include = //p' < "$mf"`
-+ test -z "am__include" && continue
-+ am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
-+ # When using ansi2knr, U may be empty or an underscore; expand it
-+ U=`sed -n 's/^U = //p' < "$mf"`
-+ # Find all dependency output files, they are included files with
-+ # $(DEPDIR) in their names. We invoke sed twice because it is the
-+ # simplest approach to changing $(DEPDIR) to its actual value in the
-+ # expansion.
-+ for file in `sed -n "
-+ s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
-+ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
-+ # Make sure the directory exists.
-+ test -f "$dirpart/$file" && continue
-+ fdir=`$as_dirname -- "$file" ||
- $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
- X"$file" : 'X\(//\)[^/]' \| \
- X"$file" : 'X\(//\)$' \| \
-@@ -13417,12 +13402,11 @@
- q
- }
- s/.*/./; q'`
-- as_dir=$dirpart/$fdir; as_fn_mkdir_p
-- # echo "creating $dirpart/$file"
-- echo '# dummy' > "$dirpart/$file"
-- done
-+ as_dir=$dirpart/$fdir; as_fn_mkdir_p
-+ # echo "creating $dirpart/$file"
-+ echo '# dummy' > "$dirpart/$file"
- done
--}
-+done
- ;;
-
- esac
-diff -Nur mpd-0.15.8.orig/m4/lame.m4 mpd-0.15.8/m4/lame.m4
---- mpd-0.15.8.orig/m4/lame.m4 2010-01-18 02:26:47.000000000 +0100
-+++ mpd-0.15.8/m4/lame.m4 2010-02-18 23:51:50.532978603 +0100
-@@ -25,8 +25,6 @@
- LAME_LIBS="-L$lame_libraries"
- elif test "x$lame_prefix" != "x" ; then
- LAME_LIBS="-L$lame_prefix/lib"
-- elif test "x$prefix" != "xNONE" ; then
-- LAME_LIBS="-L$prefix/lib"
- fi
-
- LAME_LIBS="$LAME_LIBS -lmp3lame -lm"
-@@ -35,8 +33,6 @@
- LAME_CFLAGS="-I$lame_includes"
- elif test "x$lame_prefix" != "x" ; then
- LAME_CFLAGS="-I$lame_prefix/include"
-- elif test "x$prefix" != "xNONE"; then
-- LAME_CFLAGS="-I$prefix/include"
- fi
-
- AC_MSG_CHECKING(for liblame)
-diff -Nur mpd-0.15.8.orig/Makefile.in mpd-0.15.8/Makefile.in
---- mpd-0.15.8.orig/Makefile.in 2010-01-18 02:27:53.000000000 +0100
-+++ mpd-0.15.8/Makefile.in 2010-02-18 23:52:07.512856269 +0100
-@@ -1,9 +1,8 @@
--# Makefile.in generated by automake 1.11 from Makefile.am.
-+# Makefile.in generated by automake 1.9.6 from Makefile.am.
- # @configure_input@
-
- # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
--# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
--# Inc.
-+# 2003, 2004, 2005 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.
-@@ -16,12 +15,15 @@
- @SET_MAKE@
-
-
-+srcdir = @srcdir@
-+top_srcdir = @top_srcdir@
- VPATH = @srcdir@
- pkgdatadir = $(datadir)/@PACKAGE@
--pkgincludedir = $(includedir)/@PACKAGE@
- pkglibdir = $(libdir)/@PACKAGE@
--pkglibexecdir = $(libexecdir)/@PACKAGE@
-+pkgincludedir = $(includedir)/@PACKAGE@
-+top_builddir = .
- am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
-+INSTALL = @INSTALL@
- install_sh_DATA = $(install_sh) -c -m 644
- install_sh_PROGRAM = $(install_sh) -c
- install_sh_SCRIPT = $(install_sh) -c
-@@ -111,11 +113,11 @@
- @ENABLE_TEST_TRUE@ test/software_volume$(EXEEXT) \
- @ENABLE_TEST_TRUE@ $(am__EXEEXT_1)
- @ENABLE_ENCODER_TRUE@@ENABLE_TEST_TRUE@am__append_50 = test/run_encoder
--subdir = .
- DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
- $(srcdir)/Makefile.in $(srcdir)/config.h.in \
-- $(top_srcdir)/configure AUTHORS COPYING INSTALL NEWS \
-+ $(top_srcdir)/configure AUTHORS COPYING INSTALL NEWS compile \
- config.guess config.sub depcomp install-sh missing
-+subdir = .
- ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
- am__aclocal_m4_deps = $(top_srcdir)/m4/faad.m4 \
- $(top_srcdir)/m4/lame.m4 $(top_srcdir)/m4/libOggFLAC.m4 \
-@@ -125,15 +127,15 @@
- am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
- $(ACLOCAL_M4)
- am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
-- configure.lineno config.status.lineno
-+ configure.lineno configure.status.lineno
- mkinstalldirs = $(install_sh) -d
- CONFIG_HEADER = config.h
- CONFIG_CLEAN_FILES =
--CONFIG_CLEAN_VPATH_FILES =
- am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(man1dir)" \
- "$(DESTDIR)$(man5dir)" "$(DESTDIR)$(developerdir)" \
- "$(DESTDIR)$(docdir)" "$(DESTDIR)$(protocoldir)" \
- "$(DESTDIR)$(userdir)"
-+binPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
- @ENABLE_ENCODER_TRUE@@ENABLE_TEST_TRUE@am__EXEEXT_1 = test/run_encoder$(EXEEXT)
- PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS)
- am__src_mpd_SOURCES_DIST = src/notify.h src/ack.h src/audio.h \
-@@ -775,10 +777,9 @@
- test_software_volume_OBJECTS = $(am_test_software_volume_OBJECTS)
- @ENABLE_TEST_TRUE@test_software_volume_DEPENDENCIES = \
- @ENABLE_TEST_TRUE@ $(am__DEPENDENCIES_1)
--DEFAULT_INCLUDES = -I.@am__isrc@
-+DEFAULT_INCLUDES = -I. -I$(srcdir) -I.
- depcomp = $(SHELL) $(top_srcdir)/depcomp
- am__depfiles_maybe = depfiles
--am__mv = mv -f
- COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
- $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
- CCLD = $(CC)
-@@ -802,31 +803,20 @@
- $(am__test_run_input_SOURCES_DIST) \
- $(am__test_run_output_SOURCES_DIST) \
- $(am__test_software_volume_SOURCES_DIST)
-+man1dir = $(mandir)/man1
-+man5dir = $(mandir)/man5
-+NROFF = nroff
-+MANS = $(man_MANS)
- am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
- am__vpath_adj = case $$p in \
- $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
- *) f=$$p;; \
- esac;
--am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
--am__install_max = 40
--am__nobase_strip_setup = \
-- srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
--am__nobase_strip = \
-- for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
--am__nobase_list = $(am__nobase_strip_setup); \
-- for p in $$list; do echo "$$p $$p"; done | \
-- sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
-- $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
-- if (++n[$$2] == $(am__install_max)) \
-- { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
-- END { for (dir in files) print dir, files[dir] }'
--am__base_list = \
-- sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
-- sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
--man1dir = $(mandir)/man1
--man5dir = $(mandir)/man5
--NROFF = nroff
--MANS = $(man_MANS)
-+am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
-+developerDATA_INSTALL = $(INSTALL_DATA)
-+docDATA_INSTALL = $(INSTALL_DATA)
-+protocolDATA_INSTALL = $(INSTALL_DATA)
-+userDATA_INSTALL = $(INSTALL_DATA)
- DATA = $(developer_DATA) $(doc_DATA) $(protocol_DATA) $(user_DATA)
- ETAGS = etags
- CTAGS = ctags
-@@ -834,9 +824,9 @@
- 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)"; }; }
-+ { test ! -d $(distdir) \
-+ || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
-+ && rm -fr $(distdir); }; }
- DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2
- GZIP_ENV = --best
- distuninstallcheck_listfiles = find . -type f -print
-@@ -844,6 +834,8 @@
- ACLOCAL = @ACLOCAL@
- ALSA_CFLAGS = @ALSA_CFLAGS@
- ALSA_LIBS = @ALSA_LIBS@
-+AMDEP_FALSE = @AMDEP_FALSE@
-+AMDEP_TRUE = @AMDEP_TRUE@
- AMTAR = @AMTAR@
- AM_CFLAGS = @AM_CFLAGS@
- AO_CFLAGS = @AO_CFLAGS@
-@@ -876,6 +868,40 @@
- ECHO_N = @ECHO_N@
- ECHO_T = @ECHO_T@
- EGREP = @EGREP@
-+ENABLE_ARCHIVE_FALSE = @ENABLE_ARCHIVE_FALSE@
-+ENABLE_ARCHIVE_TRUE = @ENABLE_ARCHIVE_TRUE@
-+ENABLE_DOCUMENTATION_FALSE = @ENABLE_DOCUMENTATION_FALSE@
-+ENABLE_DOCUMENTATION_TRUE = @ENABLE_DOCUMENTATION_TRUE@
-+ENABLE_ENCODER_FALSE = @ENABLE_ENCODER_FALSE@
-+ENABLE_ENCODER_TRUE = @ENABLE_ENCODER_TRUE@
-+ENABLE_FLUIDSYNTH_FALSE = @ENABLE_FLUIDSYNTH_FALSE@
-+ENABLE_FLUIDSYNTH_TRUE = @ENABLE_FLUIDSYNTH_TRUE@
-+ENABLE_HTTPD_OUTPUT_FALSE = @ENABLE_HTTPD_OUTPUT_FALSE@
-+ENABLE_HTTPD_OUTPUT_TRUE = @ENABLE_HTTPD_OUTPUT_TRUE@
-+ENABLE_LAME_ENCODER_FALSE = @ENABLE_LAME_ENCODER_FALSE@
-+ENABLE_LAME_ENCODER_TRUE = @ENABLE_LAME_ENCODER_TRUE@
-+ENABLE_LASTFM_FALSE = @ENABLE_LASTFM_FALSE@
-+ENABLE_LASTFM_TRUE = @ENABLE_LASTFM_TRUE@
-+ENABLE_MIKMOD_DECODER_FALSE = @ENABLE_MIKMOD_DECODER_FALSE@
-+ENABLE_MIKMOD_DECODER_TRUE = @ENABLE_MIKMOD_DECODER_TRUE@
-+ENABLE_MMS_FALSE = @ENABLE_MMS_FALSE@
-+ENABLE_MMS_TRUE = @ENABLE_MMS_TRUE@
-+ENABLE_PIPE_OUTPUT_FALSE = @ENABLE_PIPE_OUTPUT_FALSE@
-+ENABLE_PIPE_OUTPUT_TRUE = @ENABLE_PIPE_OUTPUT_TRUE@
-+ENABLE_SIDPLAY_FALSE = @ENABLE_SIDPLAY_FALSE@
-+ENABLE_SIDPLAY_TRUE = @ENABLE_SIDPLAY_TRUE@
-+ENABLE_SOLARIS_OUTPUT_FALSE = @ENABLE_SOLARIS_OUTPUT_FALSE@
-+ENABLE_SOLARIS_OUTPUT_TRUE = @ENABLE_SOLARIS_OUTPUT_TRUE@
-+ENABLE_SQLITE_FALSE = @ENABLE_SQLITE_FALSE@
-+ENABLE_SQLITE_TRUE = @ENABLE_SQLITE_TRUE@
-+ENABLE_TEST_FALSE = @ENABLE_TEST_FALSE@
-+ENABLE_TEST_TRUE = @ENABLE_TEST_TRUE@
-+ENABLE_VORBIS_DECODER_FALSE = @ENABLE_VORBIS_DECODER_FALSE@
-+ENABLE_VORBIS_DECODER_TRUE = @ENABLE_VORBIS_DECODER_TRUE@
-+ENABLE_VORBIS_ENCODER_FALSE = @ENABLE_VORBIS_ENCODER_FALSE@
-+ENABLE_VORBIS_ENCODER_TRUE = @ENABLE_VORBIS_ENCODER_TRUE@
-+ENABLE_WILDMIDI_FALSE = @ENABLE_WILDMIDI_FALSE@
-+ENABLE_WILDMIDI_TRUE = @ENABLE_WILDMIDI_TRUE@
- EXEEXT = @EXEEXT@
- FFMPEG_CFLAGS = @FFMPEG_CFLAGS@
- FFMPEG_LIBS = @FFMPEG_LIBS@
-@@ -886,9 +912,72 @@
- GLIB_CFLAGS = @GLIB_CFLAGS@
- GLIB_LIBS = @GLIB_LIBS@
- GREP = @GREP@
-+HAVE_ALSA_FALSE = @HAVE_ALSA_FALSE@
-+HAVE_ALSA_TRUE = @HAVE_ALSA_TRUE@
-+HAVE_AO_FALSE = @HAVE_AO_FALSE@
-+HAVE_AO_TRUE = @HAVE_AO_TRUE@
-+HAVE_AUDIOFILE_FALSE = @HAVE_AUDIOFILE_FALSE@
-+HAVE_AUDIOFILE_TRUE = @HAVE_AUDIOFILE_TRUE@
-+HAVE_AVAHI_FALSE = @HAVE_AVAHI_FALSE@
-+HAVE_AVAHI_TRUE = @HAVE_AVAHI_TRUE@
-+HAVE_BONJOUR_FALSE = @HAVE_BONJOUR_FALSE@
-+HAVE_BONJOUR_TRUE = @HAVE_BONJOUR_TRUE@
-+HAVE_BZ2_FALSE = @HAVE_BZ2_FALSE@
-+HAVE_BZ2_TRUE = @HAVE_BZ2_TRUE@
-+HAVE_CUE_FALSE = @HAVE_CUE_FALSE@
-+HAVE_CUE_TRUE = @HAVE_CUE_TRUE@
-+HAVE_CURL_FALSE = @HAVE_CURL_FALSE@
-+HAVE_CURL_TRUE = @HAVE_CURL_TRUE@
-+HAVE_FAAD_FALSE = @HAVE_FAAD_FALSE@
-+HAVE_FAAD_TRUE = @HAVE_FAAD_TRUE@
-+HAVE_FFMPEG_FALSE = @HAVE_FFMPEG_FALSE@
-+HAVE_FFMPEG_TRUE = @HAVE_FFMPEG_TRUE@
-+HAVE_FIFO_FALSE = @HAVE_FIFO_FALSE@
-+HAVE_FIFO_TRUE = @HAVE_FIFO_TRUE@
-+HAVE_FLAC_COMMON_FALSE = @HAVE_FLAC_COMMON_FALSE@
-+HAVE_FLAC_COMMON_TRUE = @HAVE_FLAC_COMMON_TRUE@
-+HAVE_FLAC_FALSE = @HAVE_FLAC_FALSE@
-+HAVE_FLAC_TRUE = @HAVE_FLAC_TRUE@
-+HAVE_ID3TAG_FALSE = @HAVE_ID3TAG_FALSE@
-+HAVE_ID3TAG_TRUE = @HAVE_ID3TAG_TRUE@
-+HAVE_ISO_FALSE = @HAVE_ISO_FALSE@
-+HAVE_ISO_TRUE = @HAVE_ISO_TRUE@
-+HAVE_JACK_FALSE = @HAVE_JACK_FALSE@
-+HAVE_JACK_TRUE = @HAVE_JACK_TRUE@
-+HAVE_LIBSAMPLERATE_FALSE = @HAVE_LIBSAMPLERATE_FALSE@
-+HAVE_LIBSAMPLERATE_TRUE = @HAVE_LIBSAMPLERATE_TRUE@
-+HAVE_MAD_FALSE = @HAVE_MAD_FALSE@
-+HAVE_MAD_TRUE = @HAVE_MAD_TRUE@
-+HAVE_MODPLUG_FALSE = @HAVE_MODPLUG_FALSE@
-+HAVE_MODPLUG_TRUE = @HAVE_MODPLUG_TRUE@
-+HAVE_MP4_FALSE = @HAVE_MP4_FALSE@
-+HAVE_MP4_TRUE = @HAVE_MP4_TRUE@
-+HAVE_MPCDEC_FALSE = @HAVE_MPCDEC_FALSE@
-+HAVE_MPCDEC_TRUE = @HAVE_MPCDEC_TRUE@
-+HAVE_MVP_FALSE = @HAVE_MVP_FALSE@
-+HAVE_MVP_TRUE = @HAVE_MVP_TRUE@
-+HAVE_OGGFLAC_FALSE = @HAVE_OGGFLAC_FALSE@
-+HAVE_OGGFLAC_TRUE = @HAVE_OGGFLAC_TRUE@
-+HAVE_OGG_COMMON_FALSE = @HAVE_OGG_COMMON_FALSE@
-+HAVE_OGG_COMMON_TRUE = @HAVE_OGG_COMMON_TRUE@
-+HAVE_OSS_FALSE = @HAVE_OSS_FALSE@
-+HAVE_OSS_TRUE = @HAVE_OSS_TRUE@
-+HAVE_OSX_FALSE = @HAVE_OSX_FALSE@
-+HAVE_OSX_TRUE = @HAVE_OSX_TRUE@
-+HAVE_PULSE_FALSE = @HAVE_PULSE_FALSE@
-+HAVE_PULSE_TRUE = @HAVE_PULSE_TRUE@
-+HAVE_SHOUT_FALSE = @HAVE_SHOUT_FALSE@
-+HAVE_SHOUT_TRUE = @HAVE_SHOUT_TRUE@
-+HAVE_WAVPACK_FALSE = @HAVE_WAVPACK_FALSE@
-+HAVE_WAVPACK_TRUE = @HAVE_WAVPACK_TRUE@
-+HAVE_XMLTO_FALSE = @HAVE_XMLTO_FALSE@
-+HAVE_XMLTO_TRUE = @HAVE_XMLTO_TRUE@
-+HAVE_ZEROCONF_FALSE = @HAVE_ZEROCONF_FALSE@
-+HAVE_ZEROCONF_TRUE = @HAVE_ZEROCONF_TRUE@
-+HAVE_ZIP_FALSE = @HAVE_ZIP_FALSE@
-+HAVE_ZIP_TRUE = @HAVE_ZIP_TRUE@
- ID3TAG_CFLAGS = @ID3TAG_CFLAGS@
- ID3TAG_LIBS = @ID3TAG_LIBS@
--INSTALL = @INSTALL@
- INSTALL_DATA = @INSTALL_DATA@
- INSTALL_PROGRAM = @INSTALL_PROGRAM@
- INSTALL_SCRIPT = @INSTALL_SCRIPT@
-@@ -911,7 +1000,6 @@
- MAD_CFLAGS = @MAD_CFLAGS@
- MAD_LIBS = @MAD_LIBS@
- MAKEINFO = @MAKEINFO@
--MKDIR_P = @MKDIR_P@
- MMS_CFLAGS = @MMS_CFLAGS@
- MMS_LIBS = @MMS_LIBS@
- MODPLUG_CFLAGS = @MODPLUG_CFLAGS@
-@@ -958,12 +1046,12 @@
- XMLTO = @XMLTO@
- ZZIP_CFLAGS = @ZZIP_CFLAGS@
- ZZIP_LIBS = @ZZIP_LIBS@
--abs_builddir = @abs_builddir@
--abs_srcdir = @abs_srcdir@
--abs_top_builddir = @abs_top_builddir@
--abs_top_srcdir = @abs_top_srcdir@
- ac_ct_CC = @ac_ct_CC@
- ac_ct_CXX = @ac_ct_CXX@
-+am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
-+am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
-+am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
-+am__fastdepCXX_TRUE = @am__fastdepCXX_TRUE@
- am__include = @am__include@
- am__leading_dot = @am__leading_dot@
- am__quote = @am__quote@
-@@ -975,7 +1063,6 @@
- build_cpu = @build_cpu@
- build_os = @build_os@
- build_vendor = @build_vendor@
--builddir = @builddir@
- datadir = @datadir@
- datarootdir = @datarootdir@
- docdir = @docdir@
-@@ -1003,12 +1090,8 @@
- psdir = @psdir@
- sbindir = @sbindir@
- sharedstatedir = @sharedstatedir@
--srcdir = @srcdir@
- sysconfdir = @sysconfdir@
- target_alias = @target_alias@
--top_build_prefix = @top_build_prefix@
--top_builddir = @top_builddir@
--top_srcdir = @top_srcdir@
- ACLOCAL_AMFLAGS = -I m4
- AUTOMAKE_OPTIONS = foreign 1.9 dist-bzip2
- AM_CPPFLAGS = -I$(srcdir)/src $(GLIB_CFLAGS)
-@@ -1487,15 +1570,15 @@
- @for dep in $?; do \
- case '$(am__configure_deps)' in \
- *$$dep*) \
-- echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
-- $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
-+ echo ' cd $(srcdir) && $(AUTOMAKE) --foreign '; \
-+ cd $(srcdir) && $(AUTOMAKE) --foreign \
- && exit 0; \
- exit 1;; \
- esac; \
- done; \
-- echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
-- $(am__cd) $(top_srcdir) && \
-- $(AUTOMAKE) --foreign Makefile
-+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
-+ cd $(top_srcdir) && \
-+ $(AUTOMAKE) --foreign Makefile
- .PRECIOUS: Makefile
- Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
- @case '$?' in \
-@@ -1511,22 +1594,21 @@
- $(SHELL) ./config.status --recheck
-
- $(top_srcdir)/configure: $(am__configure_deps)
-- $(am__cd) $(srcdir) && $(AUTOCONF)
-+ cd $(srcdir) && $(AUTOCONF)
- $(ACLOCAL_M4): $(am__aclocal_m4_deps)
-- $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
--$(am__aclocal_m4_deps):
-+ cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
-
- config.h: stamp-h1
- @if test ! -f $@; then \
- rm -f stamp-h1; \
-- $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \
-+ $(MAKE) stamp-h1; \
- else :; fi
-
- stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
- @rm -f stamp-h1
- cd $(top_builddir) && $(SHELL) ./config.status config.h
- $(srcdir)/config.h.in: $(am__configure_deps)
-- ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
-+ cd $(top_srcdir) && $(AUTOHEADER)
- rm -f stamp-h1
- touch $@
-
-@@ -1534,38 +1616,24 @@
- -rm -f config.h stamp-h1
- install-binPROGRAMS: $(bin_PROGRAMS)
- @$(NORMAL_INSTALL)
-- test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
-- @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
-- for p in $$list; do echo "$$p $$p"; done | \
-- sed 's/$(EXEEXT)$$//' | \
-- while read p p1; do if test -f $$p; \
-- then echo "$$p"; echo "$$p"; else :; fi; \
-- done | \
-- sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
-- -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
-- sed 'N;N;N;s,\n, ,g' | \
-- $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
-- { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
-- if ($$2 == $$4) files[d] = files[d] " " $$1; \
-- else { print "f", $$3 "/" $$4, $$1; } } \
-- END { for (d in files) print "f", d, files[d] }' | \
-- while read type dir files; do \
-- if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
-- test -z "$$files" || { \
-- echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
-- $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
-- } \
-- ; done
-+ 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 \
-+ ; then \
-+ 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)'; test -n "$(bindir)" || list=; \
-- files=`for p in $$list; do echo "$$p"; done | \
-- sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
-- -e 's/$$/$(EXEEXT)/' `; \
-- test -n "$$list" || exit 0; \
-- echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
-- cd "$(DESTDIR)$(bindir)" && rm -f $$files
-+ @list='$(bin_PROGRAMS)'; for p in $$list; do \
-+ f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
-+ echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \
-+ rm -f "$(DESTDIR)$(bindir)/$$f"; \
-+ done
-
- clean-binPROGRAMS:
- -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)
-@@ -1573,38 +1641,38 @@
- clean-noinstPROGRAMS:
- -test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS)
- src/$(am__dirstamp):
-- @$(MKDIR_P) src
-+ @$(mkdir_p) src
- @: > src/$(am__dirstamp)
- src/mpd$(EXEEXT): $(src_mpd_OBJECTS) $(src_mpd_DEPENDENCIES) src/$(am__dirstamp)
- @rm -f src/mpd$(EXEEXT)
-- $(CXXLINK) $(src_mpd_OBJECTS) $(src_mpd_LDADD) $(LIBS)
-+ $(CXXLINK) $(src_mpd_LDFLAGS) $(src_mpd_OBJECTS) $(src_mpd_LDADD) $(LIBS)
- test/$(am__dirstamp):
-- @$(MKDIR_P) test
-+ @$(mkdir_p) test
- @: > test/$(am__dirstamp)
- test/read_conf$(EXEEXT): $(test_read_conf_OBJECTS) $(test_read_conf_DEPENDENCIES) test/$(am__dirstamp)
- @rm -f test/read_conf$(EXEEXT)
-- $(LINK) $(test_read_conf_OBJECTS) $(test_read_conf_LDADD) $(LIBS)
-+ $(LINK) $(test_read_conf_LDFLAGS) $(test_read_conf_OBJECTS) $(test_read_conf_LDADD) $(LIBS)
- test/read_mixer$(EXEEXT): $(test_read_mixer_OBJECTS) $(test_read_mixer_DEPENDENCIES) test/$(am__dirstamp)
- @rm -f test/read_mixer$(EXEEXT)
-- $(LINK) $(test_read_mixer_OBJECTS) $(test_read_mixer_LDADD) $(LIBS)
-+ $(LINK) $(test_read_mixer_LDFLAGS) $(test_read_mixer_OBJECTS) $(test_read_mixer_LDADD) $(LIBS)
- test/read_tags$(EXEEXT): $(test_read_tags_OBJECTS) $(test_read_tags_DEPENDENCIES) test/$(am__dirstamp)
- @rm -f test/read_tags$(EXEEXT)
-- $(CXXLINK) $(test_read_tags_OBJECTS) $(test_read_tags_LDADD) $(LIBS)
-+ $(CXXLINK) $(test_read_tags_LDFLAGS) $(test_read_tags_OBJECTS) $(test_read_tags_LDADD) $(LIBS)
- test/run_decoder$(EXEEXT): $(test_run_decoder_OBJECTS) $(test_run_decoder_DEPENDENCIES) test/$(am__dirstamp)
- @rm -f test/run_decoder$(EXEEXT)
-- $(CXXLINK) $(test_run_decoder_OBJECTS) $(test_run_decoder_LDADD) $(LIBS)
-+ $(CXXLINK) $(test_run_decoder_LDFLAGS) $(test_run_decoder_OBJECTS) $(test_run_decoder_LDADD) $(LIBS)
- test/run_encoder$(EXEEXT): $(test_run_encoder_OBJECTS) $(test_run_encoder_DEPENDENCIES) test/$(am__dirstamp)
- @rm -f test/run_encoder$(EXEEXT)
-- $(LINK) $(test_run_encoder_OBJECTS) $(test_run_encoder_LDADD) $(LIBS)
-+ $(LINK) $(test_run_encoder_LDFLAGS) $(test_run_encoder_OBJECTS) $(test_run_encoder_LDADD) $(LIBS)
- test/run_input$(EXEEXT): $(test_run_input_OBJECTS) $(test_run_input_DEPENDENCIES) test/$(am__dirstamp)
- @rm -f test/run_input$(EXEEXT)
-- $(LINK) $(test_run_input_OBJECTS) $(test_run_input_LDADD) $(LIBS)
-+ $(LINK) $(test_run_input_LDFLAGS) $(test_run_input_OBJECTS) $(test_run_input_LDADD) $(LIBS)
- test/run_output$(EXEEXT): $(test_run_output_OBJECTS) $(test_run_output_DEPENDENCIES) test/$(am__dirstamp)
- @rm -f test/run_output$(EXEEXT)
-- $(LINK) $(test_run_output_OBJECTS) $(test_run_output_LDADD) $(LIBS)
-+ $(LINK) $(test_run_output_LDFLAGS) $(test_run_output_OBJECTS) $(test_run_output_LDADD) $(LIBS)
- test/software_volume$(EXEEXT): $(test_software_volume_OBJECTS) $(test_software_volume_DEPENDENCIES) test/$(am__dirstamp)
- @rm -f test/software_volume$(EXEEXT)
-- $(LINK) $(test_software_volume_OBJECTS) $(test_software_volume_LDADD) $(LIBS)
-+ $(LINK) $(test_software_volume_LDFLAGS) $(test_software_volume_OBJECTS) $(test_software_volume_LDADD) $(LIBS)
-
- mostlyclean-compile:
- -rm -f *.$(OBJEXT)
-@@ -1944,4912 +2012,4895 @@
- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vorbis_encoder.Po@am__quote@
-
- .c.o:
--@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
-+@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(COMPILE) -c $<
-
- .c.obj:
--@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
-+@am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
-
- src_mpd-bz2_plugin.o: src/archive/bz2_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-bz2_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-bz2_plugin.Tpo -c -o src_mpd-bz2_plugin.o `test -f 'src/archive/bz2_plugin.c' || echo '$(srcdir)/'`src/archive/bz2_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-bz2_plugin.Tpo $(DEPDIR)/src_mpd-bz2_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-bz2_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-bz2_plugin.Tpo" -c -o src_mpd-bz2_plugin.o `test -f 'src/archive/bz2_plugin.c' || echo '$(srcdir)/'`src/archive/bz2_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-bz2_plugin.Tpo" "$(DEPDIR)/src_mpd-bz2_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-bz2_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/bz2_plugin.c' object='src_mpd-bz2_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-bz2_plugin.o `test -f 'src/archive/bz2_plugin.c' || echo '$(srcdir)/'`src/archive/bz2_plugin.c
-
- src_mpd-bz2_plugin.obj: src/archive/bz2_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-bz2_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-bz2_plugin.Tpo -c -o src_mpd-bz2_plugin.obj `if test -f 'src/archive/bz2_plugin.c'; then $(CYGPATH_W) 'src/archive/bz2_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/bz2_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-bz2_plugin.Tpo $(DEPDIR)/src_mpd-bz2_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-bz2_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-bz2_plugin.Tpo" -c -o src_mpd-bz2_plugin.obj `if test -f 'src/archive/bz2_plugin.c'; then $(CYGPATH_W) 'src/archive/bz2_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/bz2_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-bz2_plugin.Tpo" "$(DEPDIR)/src_mpd-bz2_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-bz2_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/bz2_plugin.c' object='src_mpd-bz2_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-bz2_plugin.obj `if test -f 'src/archive/bz2_plugin.c'; then $(CYGPATH_W) 'src/archive/bz2_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/bz2_plugin.c'; fi`
-
- src_mpd-zip_plugin.o: src/archive/zip_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-zip_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-zip_plugin.Tpo -c -o src_mpd-zip_plugin.o `test -f 'src/archive/zip_plugin.c' || echo '$(srcdir)/'`src/archive/zip_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-zip_plugin.Tpo $(DEPDIR)/src_mpd-zip_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-zip_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-zip_plugin.Tpo" -c -o src_mpd-zip_plugin.o `test -f 'src/archive/zip_plugin.c' || echo '$(srcdir)/'`src/archive/zip_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-zip_plugin.Tpo" "$(DEPDIR)/src_mpd-zip_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-zip_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/zip_plugin.c' object='src_mpd-zip_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-zip_plugin.o `test -f 'src/archive/zip_plugin.c' || echo '$(srcdir)/'`src/archive/zip_plugin.c
-
- src_mpd-zip_plugin.obj: src/archive/zip_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-zip_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-zip_plugin.Tpo -c -o src_mpd-zip_plugin.obj `if test -f 'src/archive/zip_plugin.c'; then $(CYGPATH_W) 'src/archive/zip_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/zip_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-zip_plugin.Tpo $(DEPDIR)/src_mpd-zip_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-zip_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-zip_plugin.Tpo" -c -o src_mpd-zip_plugin.obj `if test -f 'src/archive/zip_plugin.c'; then $(CYGPATH_W) 'src/archive/zip_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/zip_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-zip_plugin.Tpo" "$(DEPDIR)/src_mpd-zip_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-zip_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/zip_plugin.c' object='src_mpd-zip_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-zip_plugin.obj `if test -f 'src/archive/zip_plugin.c'; then $(CYGPATH_W) 'src/archive/zip_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/zip_plugin.c'; fi`
-
- src_mpd-iso_plugin.o: src/archive/iso_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-iso_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-iso_plugin.Tpo -c -o src_mpd-iso_plugin.o `test -f 'src/archive/iso_plugin.c' || echo '$(srcdir)/'`src/archive/iso_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-iso_plugin.Tpo $(DEPDIR)/src_mpd-iso_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-iso_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-iso_plugin.Tpo" -c -o src_mpd-iso_plugin.o `test -f 'src/archive/iso_plugin.c' || echo '$(srcdir)/'`src/archive/iso_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-iso_plugin.Tpo" "$(DEPDIR)/src_mpd-iso_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-iso_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/iso_plugin.c' object='src_mpd-iso_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-iso_plugin.o `test -f 'src/archive/iso_plugin.c' || echo '$(srcdir)/'`src/archive/iso_plugin.c
-
- src_mpd-iso_plugin.obj: src/archive/iso_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-iso_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-iso_plugin.Tpo -c -o src_mpd-iso_plugin.obj `if test -f 'src/archive/iso_plugin.c'; then $(CYGPATH_W) 'src/archive/iso_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/iso_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-iso_plugin.Tpo $(DEPDIR)/src_mpd-iso_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-iso_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-iso_plugin.Tpo" -c -o src_mpd-iso_plugin.obj `if test -f 'src/archive/iso_plugin.c'; then $(CYGPATH_W) 'src/archive/iso_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/iso_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-iso_plugin.Tpo" "$(DEPDIR)/src_mpd-iso_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-iso_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/iso_plugin.c' object='src_mpd-iso_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-iso_plugin.obj `if test -f 'src/archive/iso_plugin.c'; then $(CYGPATH_W) 'src/archive/iso_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/iso_plugin.c'; fi`
-
- src_mpd-archive_api.o: src/archive_api.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-archive_api.o -MD -MP -MF $(DEPDIR)/src_mpd-archive_api.Tpo -c -o src_mpd-archive_api.o `test -f 'src/archive_api.c' || echo '$(srcdir)/'`src/archive_api.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-archive_api.Tpo $(DEPDIR)/src_mpd-archive_api.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-archive_api.o -MD -MP -MF "$(DEPDIR)/src_mpd-archive_api.Tpo" -c -o src_mpd-archive_api.o `test -f 'src/archive_api.c' || echo '$(srcdir)/'`src/archive_api.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-archive_api.Tpo" "$(DEPDIR)/src_mpd-archive_api.Po"; else rm -f "$(DEPDIR)/src_mpd-archive_api.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive_api.c' object='src_mpd-archive_api.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-archive_api.o `test -f 'src/archive_api.c' || echo '$(srcdir)/'`src/archive_api.c
-
- src_mpd-archive_api.obj: src/archive_api.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-archive_api.obj -MD -MP -MF $(DEPDIR)/src_mpd-archive_api.Tpo -c -o src_mpd-archive_api.obj `if test -f 'src/archive_api.c'; then $(CYGPATH_W) 'src/archive_api.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_api.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-archive_api.Tpo $(DEPDIR)/src_mpd-archive_api.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-archive_api.obj -MD -MP -MF "$(DEPDIR)/src_mpd-archive_api.Tpo" -c -o src_mpd-archive_api.obj `if test -f 'src/archive_api.c'; then $(CYGPATH_W) 'src/archive_api.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_api.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-archive_api.Tpo" "$(DEPDIR)/src_mpd-archive_api.Po"; else rm -f "$(DEPDIR)/src_mpd-archive_api.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive_api.c' object='src_mpd-archive_api.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-archive_api.obj `if test -f 'src/archive_api.c'; then $(CYGPATH_W) 'src/archive_api.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_api.c'; fi`
-
- src_mpd-archive_list.o: src/archive_list.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-archive_list.o -MD -MP -MF $(DEPDIR)/src_mpd-archive_list.Tpo -c -o src_mpd-archive_list.o `test -f 'src/archive_list.c' || echo '$(srcdir)/'`src/archive_list.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-archive_list.Tpo $(DEPDIR)/src_mpd-archive_list.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-archive_list.o -MD -MP -MF "$(DEPDIR)/src_mpd-archive_list.Tpo" -c -o src_mpd-archive_list.o `test -f 'src/archive_list.c' || echo '$(srcdir)/'`src/archive_list.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-archive_list.Tpo" "$(DEPDIR)/src_mpd-archive_list.Po"; else rm -f "$(DEPDIR)/src_mpd-archive_list.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive_list.c' object='src_mpd-archive_list.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-archive_list.o `test -f 'src/archive_list.c' || echo '$(srcdir)/'`src/archive_list.c
-
- src_mpd-archive_list.obj: src/archive_list.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-archive_list.obj -MD -MP -MF $(DEPDIR)/src_mpd-archive_list.Tpo -c -o src_mpd-archive_list.obj `if test -f 'src/archive_list.c'; then $(CYGPATH_W) 'src/archive_list.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_list.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-archive_list.Tpo $(DEPDIR)/src_mpd-archive_list.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-archive_list.obj -MD -MP -MF "$(DEPDIR)/src_mpd-archive_list.Tpo" -c -o src_mpd-archive_list.obj `if test -f 'src/archive_list.c'; then $(CYGPATH_W) 'src/archive_list.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_list.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-archive_list.Tpo" "$(DEPDIR)/src_mpd-archive_list.Po"; else rm -f "$(DEPDIR)/src_mpd-archive_list.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive_list.c' object='src_mpd-archive_list.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-archive_list.obj `if test -f 'src/archive_list.c'; then $(CYGPATH_W) 'src/archive_list.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_list.c'; fi`
-
- src_mpd-archive_input_plugin.o: src/input/archive_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-archive_input_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-archive_input_plugin.Tpo -c -o src_mpd-archive_input_plugin.o `test -f 'src/input/archive_input_plugin.c' || echo '$(srcdir)/'`src/input/archive_input_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-archive_input_plugin.Tpo $(DEPDIR)/src_mpd-archive_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-archive_input_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-archive_input_plugin.Tpo" -c -o src_mpd-archive_input_plugin.o `test -f 'src/input/archive_input_plugin.c' || echo '$(srcdir)/'`src/input/archive_input_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-archive_input_plugin.Tpo" "$(DEPDIR)/src_mpd-archive_input_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-archive_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/archive_input_plugin.c' object='src_mpd-archive_input_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-archive_input_plugin.o `test -f 'src/input/archive_input_plugin.c' || echo '$(srcdir)/'`src/input/archive_input_plugin.c
-
- src_mpd-archive_input_plugin.obj: src/input/archive_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-archive_input_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-archive_input_plugin.Tpo -c -o src_mpd-archive_input_plugin.obj `if test -f 'src/input/archive_input_plugin.c'; then $(CYGPATH_W) 'src/input/archive_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/archive_input_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-archive_input_plugin.Tpo $(DEPDIR)/src_mpd-archive_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-archive_input_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-archive_input_plugin.Tpo" -c -o src_mpd-archive_input_plugin.obj `if test -f 'src/input/archive_input_plugin.c'; then $(CYGPATH_W) 'src/input/archive_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/archive_input_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-archive_input_plugin.Tpo" "$(DEPDIR)/src_mpd-archive_input_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-archive_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/archive_input_plugin.c' object='src_mpd-archive_input_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-archive_input_plugin.obj `if test -f 'src/input/archive_input_plugin.c'; then $(CYGPATH_W) 'src/input/archive_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/archive_input_plugin.c'; fi`
-
- src_mpd-input_stream.o: src/input_stream.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-input_stream.o -MD -MP -MF $(DEPDIR)/src_mpd-input_stream.Tpo -c -o src_mpd-input_stream.o `test -f 'src/input_stream.c' || echo '$(srcdir)/'`src/input_stream.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-input_stream.Tpo $(DEPDIR)/src_mpd-input_stream.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-input_stream.o -MD -MP -MF "$(DEPDIR)/src_mpd-input_stream.Tpo" -c -o src_mpd-input_stream.o `test -f 'src/input_stream.c' || echo '$(srcdir)/'`src/input_stream.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-input_stream.Tpo" "$(DEPDIR)/src_mpd-input_stream.Po"; else rm -f "$(DEPDIR)/src_mpd-input_stream.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input_stream.c' object='src_mpd-input_stream.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-input_stream.o `test -f 'src/input_stream.c' || echo '$(srcdir)/'`src/input_stream.c
-
- src_mpd-input_stream.obj: src/input_stream.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-input_stream.obj -MD -MP -MF $(DEPDIR)/src_mpd-input_stream.Tpo -c -o src_mpd-input_stream.obj `if test -f 'src/input_stream.c'; then $(CYGPATH_W) 'src/input_stream.c'; else $(CYGPATH_W) '$(srcdir)/src/input_stream.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-input_stream.Tpo $(DEPDIR)/src_mpd-input_stream.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-input_stream.obj -MD -MP -MF "$(DEPDIR)/src_mpd-input_stream.Tpo" -c -o src_mpd-input_stream.obj `if test -f 'src/input_stream.c'; then $(CYGPATH_W) 'src/input_stream.c'; else $(CYGPATH_W) '$(srcdir)/src/input_stream.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-input_stream.Tpo" "$(DEPDIR)/src_mpd-input_stream.Po"; else rm -f "$(DEPDIR)/src_mpd-input_stream.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input_stream.c' object='src_mpd-input_stream.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-input_stream.obj `if test -f 'src/input_stream.c'; then $(CYGPATH_W) 'src/input_stream.c'; else $(CYGPATH_W) '$(srcdir)/src/input_stream.c'; fi`
-
- src_mpd-file_input_plugin.o: src/input/file_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-file_input_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-file_input_plugin.Tpo -c -o src_mpd-file_input_plugin.o `test -f 'src/input/file_input_plugin.c' || echo '$(srcdir)/'`src/input/file_input_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-file_input_plugin.Tpo $(DEPDIR)/src_mpd-file_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-file_input_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-file_input_plugin.Tpo" -c -o src_mpd-file_input_plugin.o `test -f 'src/input/file_input_plugin.c' || echo '$(srcdir)/'`src/input/file_input_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-file_input_plugin.Tpo" "$(DEPDIR)/src_mpd-file_input_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-file_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/file_input_plugin.c' object='src_mpd-file_input_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-file_input_plugin.o `test -f 'src/input/file_input_plugin.c' || echo '$(srcdir)/'`src/input/file_input_plugin.c
-
- src_mpd-file_input_plugin.obj: src/input/file_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-file_input_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-file_input_plugin.Tpo -c -o src_mpd-file_input_plugin.obj `if test -f 'src/input/file_input_plugin.c'; then $(CYGPATH_W) 'src/input/file_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/file_input_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-file_input_plugin.Tpo $(DEPDIR)/src_mpd-file_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-file_input_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-file_input_plugin.Tpo" -c -o src_mpd-file_input_plugin.obj `if test -f 'src/input/file_input_plugin.c'; then $(CYGPATH_W) 'src/input/file_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/file_input_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-file_input_plugin.Tpo" "$(DEPDIR)/src_mpd-file_input_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-file_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/file_input_plugin.c' object='src_mpd-file_input_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-file_input_plugin.obj `if test -f 'src/input/file_input_plugin.c'; then $(CYGPATH_W) 'src/input/file_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/file_input_plugin.c'; fi`
-
- src_mpd-curl_input_plugin.o: src/input/curl_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-curl_input_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-curl_input_plugin.Tpo -c -o src_mpd-curl_input_plugin.o `test -f 'src/input/curl_input_plugin.c' || echo '$(srcdir)/'`src/input/curl_input_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-curl_input_plugin.Tpo $(DEPDIR)/src_mpd-curl_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-curl_input_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-curl_input_plugin.Tpo" -c -o src_mpd-curl_input_plugin.o `test -f 'src/input/curl_input_plugin.c' || echo '$(srcdir)/'`src/input/curl_input_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-curl_input_plugin.Tpo" "$(DEPDIR)/src_mpd-curl_input_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-curl_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/curl_input_plugin.c' object='src_mpd-curl_input_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-curl_input_plugin.o `test -f 'src/input/curl_input_plugin.c' || echo '$(srcdir)/'`src/input/curl_input_plugin.c
-
- src_mpd-curl_input_plugin.obj: src/input/curl_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-curl_input_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-curl_input_plugin.Tpo -c -o src_mpd-curl_input_plugin.obj `if test -f 'src/input/curl_input_plugin.c'; then $(CYGPATH_W) 'src/input/curl_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/curl_input_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-curl_input_plugin.Tpo $(DEPDIR)/src_mpd-curl_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-curl_input_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-curl_input_plugin.Tpo" -c -o src_mpd-curl_input_plugin.obj `if test -f 'src/input/curl_input_plugin.c'; then $(CYGPATH_W) 'src/input/curl_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/curl_input_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-curl_input_plugin.Tpo" "$(DEPDIR)/src_mpd-curl_input_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-curl_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/curl_input_plugin.c' object='src_mpd-curl_input_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-curl_input_plugin.obj `if test -f 'src/input/curl_input_plugin.c'; then $(CYGPATH_W) 'src/input/curl_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/curl_input_plugin.c'; fi`
-
- src_mpd-rewind_input_plugin.o: src/input/rewind_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-rewind_input_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-rewind_input_plugin.Tpo -c -o src_mpd-rewind_input_plugin.o `test -f 'src/input/rewind_input_plugin.c' || echo '$(srcdir)/'`src/input/rewind_input_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-rewind_input_plugin.Tpo $(DEPDIR)/src_mpd-rewind_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-rewind_input_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-rewind_input_plugin.Tpo" -c -o src_mpd-rewind_input_plugin.o `test -f 'src/input/rewind_input_plugin.c' || echo '$(srcdir)/'`src/input/rewind_input_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-rewind_input_plugin.Tpo" "$(DEPDIR)/src_mpd-rewind_input_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-rewind_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/rewind_input_plugin.c' object='src_mpd-rewind_input_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-rewind_input_plugin.o `test -f 'src/input/rewind_input_plugin.c' || echo '$(srcdir)/'`src/input/rewind_input_plugin.c
-
- src_mpd-rewind_input_plugin.obj: src/input/rewind_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-rewind_input_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-rewind_input_plugin.Tpo -c -o src_mpd-rewind_input_plugin.obj `if test -f 'src/input/rewind_input_plugin.c'; then $(CYGPATH_W) 'src/input/rewind_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/rewind_input_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-rewind_input_plugin.Tpo $(DEPDIR)/src_mpd-rewind_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-rewind_input_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-rewind_input_plugin.Tpo" -c -o src_mpd-rewind_input_plugin.obj `if test -f 'src/input/rewind_input_plugin.c'; then $(CYGPATH_W) 'src/input/rewind_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/rewind_input_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-rewind_input_plugin.Tpo" "$(DEPDIR)/src_mpd-rewind_input_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-rewind_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/rewind_input_plugin.c' object='src_mpd-rewind_input_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-rewind_input_plugin.obj `if test -f 'src/input/rewind_input_plugin.c'; then $(CYGPATH_W) 'src/input/rewind_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/rewind_input_plugin.c'; fi`
-
- src_mpd-icy_metadata.o: src/icy_metadata.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-icy_metadata.o -MD -MP -MF $(DEPDIR)/src_mpd-icy_metadata.Tpo -c -o src_mpd-icy_metadata.o `test -f 'src/icy_metadata.c' || echo '$(srcdir)/'`src/icy_metadata.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-icy_metadata.Tpo $(DEPDIR)/src_mpd-icy_metadata.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-icy_metadata.o -MD -MP -MF "$(DEPDIR)/src_mpd-icy_metadata.Tpo" -c -o src_mpd-icy_metadata.o `test -f 'src/icy_metadata.c' || echo '$(srcdir)/'`src/icy_metadata.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-icy_metadata.Tpo" "$(DEPDIR)/src_mpd-icy_metadata.Po"; else rm -f "$(DEPDIR)/src_mpd-icy_metadata.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/icy_metadata.c' object='src_mpd-icy_metadata.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-icy_metadata.o `test -f 'src/icy_metadata.c' || echo '$(srcdir)/'`src/icy_metadata.c
-
- src_mpd-icy_metadata.obj: src/icy_metadata.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-icy_metadata.obj -MD -MP -MF $(DEPDIR)/src_mpd-icy_metadata.Tpo -c -o src_mpd-icy_metadata.obj `if test -f 'src/icy_metadata.c'; then $(CYGPATH_W) 'src/icy_metadata.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_metadata.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-icy_metadata.Tpo $(DEPDIR)/src_mpd-icy_metadata.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-icy_metadata.obj -MD -MP -MF "$(DEPDIR)/src_mpd-icy_metadata.Tpo" -c -o src_mpd-icy_metadata.obj `if test -f 'src/icy_metadata.c'; then $(CYGPATH_W) 'src/icy_metadata.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_metadata.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-icy_metadata.Tpo" "$(DEPDIR)/src_mpd-icy_metadata.Po"; else rm -f "$(DEPDIR)/src_mpd-icy_metadata.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/icy_metadata.c' object='src_mpd-icy_metadata.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-icy_metadata.obj `if test -f 'src/icy_metadata.c'; then $(CYGPATH_W) 'src/icy_metadata.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_metadata.c'; fi`
-
- src_mpd-lastfm_input_plugin.o: src/input/lastfm_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-lastfm_input_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-lastfm_input_plugin.Tpo -c -o src_mpd-lastfm_input_plugin.o `test -f 'src/input/lastfm_input_plugin.c' || echo '$(srcdir)/'`src/input/lastfm_input_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-lastfm_input_plugin.Tpo $(DEPDIR)/src_mpd-lastfm_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-lastfm_input_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-lastfm_input_plugin.Tpo" -c -o src_mpd-lastfm_input_plugin.o `test -f 'src/input/lastfm_input_plugin.c' || echo '$(srcdir)/'`src/input/lastfm_input_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-lastfm_input_plugin.Tpo" "$(DEPDIR)/src_mpd-lastfm_input_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-lastfm_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/lastfm_input_plugin.c' object='src_mpd-lastfm_input_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-lastfm_input_plugin.o `test -f 'src/input/lastfm_input_plugin.c' || echo '$(srcdir)/'`src/input/lastfm_input_plugin.c
-
- src_mpd-lastfm_input_plugin.obj: src/input/lastfm_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-lastfm_input_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-lastfm_input_plugin.Tpo -c -o src_mpd-lastfm_input_plugin.obj `if test -f 'src/input/lastfm_input_plugin.c'; then $(CYGPATH_W) 'src/input/lastfm_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/lastfm_input_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-lastfm_input_plugin.Tpo $(DEPDIR)/src_mpd-lastfm_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-lastfm_input_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-lastfm_input_plugin.Tpo" -c -o src_mpd-lastfm_input_plugin.obj `if test -f 'src/input/lastfm_input_plugin.c'; then $(CYGPATH_W) 'src/input/lastfm_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/lastfm_input_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-lastfm_input_plugin.Tpo" "$(DEPDIR)/src_mpd-lastfm_input_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-lastfm_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/lastfm_input_plugin.c' object='src_mpd-lastfm_input_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-lastfm_input_plugin.obj `if test -f 'src/input/lastfm_input_plugin.c'; then $(CYGPATH_W) 'src/input/lastfm_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/lastfm_input_plugin.c'; fi`
-
- src_mpd-mms_input_plugin.o: src/input/mms_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mms_input_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-mms_input_plugin.Tpo -c -o src_mpd-mms_input_plugin.o `test -f 'src/input/mms_input_plugin.c' || echo '$(srcdir)/'`src/input/mms_input_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mms_input_plugin.Tpo $(DEPDIR)/src_mpd-mms_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mms_input_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-mms_input_plugin.Tpo" -c -o src_mpd-mms_input_plugin.o `test -f 'src/input/mms_input_plugin.c' || echo '$(srcdir)/'`src/input/mms_input_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mms_input_plugin.Tpo" "$(DEPDIR)/src_mpd-mms_input_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-mms_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/mms_input_plugin.c' object='src_mpd-mms_input_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mms_input_plugin.o `test -f 'src/input/mms_input_plugin.c' || echo '$(srcdir)/'`src/input/mms_input_plugin.c
-
- src_mpd-mms_input_plugin.obj: src/input/mms_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mms_input_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-mms_input_plugin.Tpo -c -o src_mpd-mms_input_plugin.obj `if test -f 'src/input/mms_input_plugin.c'; then $(CYGPATH_W) 'src/input/mms_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/mms_input_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mms_input_plugin.Tpo $(DEPDIR)/src_mpd-mms_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mms_input_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-mms_input_plugin.Tpo" -c -o src_mpd-mms_input_plugin.obj `if test -f 'src/input/mms_input_plugin.c'; then $(CYGPATH_W) 'src/input/mms_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/mms_input_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mms_input_plugin.Tpo" "$(DEPDIR)/src_mpd-mms_input_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-mms_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/mms_input_plugin.c' object='src_mpd-mms_input_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mms_input_plugin.obj `if test -f 'src/input/mms_input_plugin.c'; then $(CYGPATH_W) 'src/input/mms_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/mms_input_plugin.c'; fi`
-
- src_mpd-tag_ape.o: src/tag_ape.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_ape.o -MD -MP -MF $(DEPDIR)/src_mpd-tag_ape.Tpo -c -o src_mpd-tag_ape.o `test -f 'src/tag_ape.c' || echo '$(srcdir)/'`src/tag_ape.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-tag_ape.Tpo $(DEPDIR)/src_mpd-tag_ape.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_ape.o -MD -MP -MF "$(DEPDIR)/src_mpd-tag_ape.Tpo" -c -o src_mpd-tag_ape.o `test -f 'src/tag_ape.c' || echo '$(srcdir)/'`src/tag_ape.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-tag_ape.Tpo" "$(DEPDIR)/src_mpd-tag_ape.Po"; else rm -f "$(DEPDIR)/src_mpd-tag_ape.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_ape.c' object='src_mpd-tag_ape.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-tag_ape.o `test -f 'src/tag_ape.c' || echo '$(srcdir)/'`src/tag_ape.c
-
- src_mpd-tag_ape.obj: src/tag_ape.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_ape.obj -MD -MP -MF $(DEPDIR)/src_mpd-tag_ape.Tpo -c -o src_mpd-tag_ape.obj `if test -f 'src/tag_ape.c'; then $(CYGPATH_W) 'src/tag_ape.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_ape.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-tag_ape.Tpo $(DEPDIR)/src_mpd-tag_ape.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_ape.obj -MD -MP -MF "$(DEPDIR)/src_mpd-tag_ape.Tpo" -c -o src_mpd-tag_ape.obj `if test -f 'src/tag_ape.c'; then $(CYGPATH_W) 'src/tag_ape.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_ape.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-tag_ape.Tpo" "$(DEPDIR)/src_mpd-tag_ape.Po"; else rm -f "$(DEPDIR)/src_mpd-tag_ape.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_ape.c' object='src_mpd-tag_ape.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-tag_ape.obj `if test -f 'src/tag_ape.c'; then $(CYGPATH_W) 'src/tag_ape.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_ape.c'; fi`
-
- src_mpd-tag_id3.o: src/tag_id3.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_id3.o -MD -MP -MF $(DEPDIR)/src_mpd-tag_id3.Tpo -c -o src_mpd-tag_id3.o `test -f 'src/tag_id3.c' || echo '$(srcdir)/'`src/tag_id3.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-tag_id3.Tpo $(DEPDIR)/src_mpd-tag_id3.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_id3.o -MD -MP -MF "$(DEPDIR)/src_mpd-tag_id3.Tpo" -c -o src_mpd-tag_id3.o `test -f 'src/tag_id3.c' || echo '$(srcdir)/'`src/tag_id3.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-tag_id3.Tpo" "$(DEPDIR)/src_mpd-tag_id3.Po"; else rm -f "$(DEPDIR)/src_mpd-tag_id3.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_id3.c' object='src_mpd-tag_id3.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-tag_id3.o `test -f 'src/tag_id3.c' || echo '$(srcdir)/'`src/tag_id3.c
-
- src_mpd-tag_id3.obj: src/tag_id3.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_id3.obj -MD -MP -MF $(DEPDIR)/src_mpd-tag_id3.Tpo -c -o src_mpd-tag_id3.obj `if test -f 'src/tag_id3.c'; then $(CYGPATH_W) 'src/tag_id3.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_id3.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-tag_id3.Tpo $(DEPDIR)/src_mpd-tag_id3.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_id3.obj -MD -MP -MF "$(DEPDIR)/src_mpd-tag_id3.Tpo" -c -o src_mpd-tag_id3.obj `if test -f 'src/tag_id3.c'; then $(CYGPATH_W) 'src/tag_id3.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_id3.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-tag_id3.Tpo" "$(DEPDIR)/src_mpd-tag_id3.Po"; else rm -f "$(DEPDIR)/src_mpd-tag_id3.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_id3.c' object='src_mpd-tag_id3.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-tag_id3.obj `if test -f 'src/tag_id3.c'; then $(CYGPATH_W) 'src/tag_id3.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_id3.c'; fi`
-
- src_mpd-riff.o: src/riff.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-riff.o -MD -MP -MF $(DEPDIR)/src_mpd-riff.Tpo -c -o src_mpd-riff.o `test -f 'src/riff.c' || echo '$(srcdir)/'`src/riff.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-riff.Tpo $(DEPDIR)/src_mpd-riff.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-riff.o -MD -MP -MF "$(DEPDIR)/src_mpd-riff.Tpo" -c -o src_mpd-riff.o `test -f 'src/riff.c' || echo '$(srcdir)/'`src/riff.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-riff.Tpo" "$(DEPDIR)/src_mpd-riff.Po"; else rm -f "$(DEPDIR)/src_mpd-riff.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/riff.c' object='src_mpd-riff.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-riff.o `test -f 'src/riff.c' || echo '$(srcdir)/'`src/riff.c
-
- src_mpd-riff.obj: src/riff.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-riff.obj -MD -MP -MF $(DEPDIR)/src_mpd-riff.Tpo -c -o src_mpd-riff.obj `if test -f 'src/riff.c'; then $(CYGPATH_W) 'src/riff.c'; else $(CYGPATH_W) '$(srcdir)/src/riff.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-riff.Tpo $(DEPDIR)/src_mpd-riff.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-riff.obj -MD -MP -MF "$(DEPDIR)/src_mpd-riff.Tpo" -c -o src_mpd-riff.obj `if test -f 'src/riff.c'; then $(CYGPATH_W) 'src/riff.c'; else $(CYGPATH_W) '$(srcdir)/src/riff.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-riff.Tpo" "$(DEPDIR)/src_mpd-riff.Po"; else rm -f "$(DEPDIR)/src_mpd-riff.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/riff.c' object='src_mpd-riff.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-riff.obj `if test -f 'src/riff.c'; then $(CYGPATH_W) 'src/riff.c'; else $(CYGPATH_W) '$(srcdir)/src/riff.c'; fi`
-
- src_mpd-aiff.o: src/aiff.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-aiff.o -MD -MP -MF $(DEPDIR)/src_mpd-aiff.Tpo -c -o src_mpd-aiff.o `test -f 'src/aiff.c' || echo '$(srcdir)/'`src/aiff.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-aiff.Tpo $(DEPDIR)/src_mpd-aiff.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-aiff.o -MD -MP -MF "$(DEPDIR)/src_mpd-aiff.Tpo" -c -o src_mpd-aiff.o `test -f 'src/aiff.c' || echo '$(srcdir)/'`src/aiff.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-aiff.Tpo" "$(DEPDIR)/src_mpd-aiff.Po"; else rm -f "$(DEPDIR)/src_mpd-aiff.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/aiff.c' object='src_mpd-aiff.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-aiff.o `test -f 'src/aiff.c' || echo '$(srcdir)/'`src/aiff.c
-
- src_mpd-aiff.obj: src/aiff.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-aiff.obj -MD -MP -MF $(DEPDIR)/src_mpd-aiff.Tpo -c -o src_mpd-aiff.obj `if test -f 'src/aiff.c'; then $(CYGPATH_W) 'src/aiff.c'; else $(CYGPATH_W) '$(srcdir)/src/aiff.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-aiff.Tpo $(DEPDIR)/src_mpd-aiff.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-aiff.obj -MD -MP -MF "$(DEPDIR)/src_mpd-aiff.Tpo" -c -o src_mpd-aiff.obj `if test -f 'src/aiff.c'; then $(CYGPATH_W) 'src/aiff.c'; else $(CYGPATH_W) '$(srcdir)/src/aiff.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-aiff.Tpo" "$(DEPDIR)/src_mpd-aiff.Po"; else rm -f "$(DEPDIR)/src_mpd-aiff.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/aiff.c' object='src_mpd-aiff.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-aiff.obj `if test -f 'src/aiff.c'; then $(CYGPATH_W) 'src/aiff.c'; else $(CYGPATH_W) '$(srcdir)/src/aiff.c'; fi`
-
- src_mpd-decoder_buffer.o: src/decoder_buffer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_buffer.o -MD -MP -MF $(DEPDIR)/src_mpd-decoder_buffer.Tpo -c -o src_mpd-decoder_buffer.o `test -f 'src/decoder_buffer.c' || echo '$(srcdir)/'`src/decoder_buffer.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-decoder_buffer.Tpo $(DEPDIR)/src_mpd-decoder_buffer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_buffer.o -MD -MP -MF "$(DEPDIR)/src_mpd-decoder_buffer.Tpo" -c -o src_mpd-decoder_buffer.o `test -f 'src/decoder_buffer.c' || echo '$(srcdir)/'`src/decoder_buffer.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-decoder_buffer.Tpo" "$(DEPDIR)/src_mpd-decoder_buffer.Po"; else rm -f "$(DEPDIR)/src_mpd-decoder_buffer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_buffer.c' object='src_mpd-decoder_buffer.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-decoder_buffer.o `test -f 'src/decoder_buffer.c' || echo '$(srcdir)/'`src/decoder_buffer.c
-
- src_mpd-decoder_buffer.obj: src/decoder_buffer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_buffer.obj -MD -MP -MF $(DEPDIR)/src_mpd-decoder_buffer.Tpo -c -o src_mpd-decoder_buffer.obj `if test -f 'src/decoder_buffer.c'; then $(CYGPATH_W) 'src/decoder_buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_buffer.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-decoder_buffer.Tpo $(DEPDIR)/src_mpd-decoder_buffer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_buffer.obj -MD -MP -MF "$(DEPDIR)/src_mpd-decoder_buffer.Tpo" -c -o src_mpd-decoder_buffer.obj `if test -f 'src/decoder_buffer.c'; then $(CYGPATH_W) 'src/decoder_buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_buffer.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-decoder_buffer.Tpo" "$(DEPDIR)/src_mpd-decoder_buffer.Po"; else rm -f "$(DEPDIR)/src_mpd-decoder_buffer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_buffer.c' object='src_mpd-decoder_buffer.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-decoder_buffer.obj `if test -f 'src/decoder_buffer.c'; then $(CYGPATH_W) 'src/decoder_buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_buffer.c'; fi`
-
- src_mpd-decoder_list.o: src/decoder_list.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_list.o -MD -MP -MF $(DEPDIR)/src_mpd-decoder_list.Tpo -c -o src_mpd-decoder_list.o `test -f 'src/decoder_list.c' || echo '$(srcdir)/'`src/decoder_list.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-decoder_list.Tpo $(DEPDIR)/src_mpd-decoder_list.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_list.o -MD -MP -MF "$(DEPDIR)/src_mpd-decoder_list.Tpo" -c -o src_mpd-decoder_list.o `test -f 'src/decoder_list.c' || echo '$(srcdir)/'`src/decoder_list.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-decoder_list.Tpo" "$(DEPDIR)/src_mpd-decoder_list.Po"; else rm -f "$(DEPDIR)/src_mpd-decoder_list.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_list.c' object='src_mpd-decoder_list.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-decoder_list.o `test -f 'src/decoder_list.c' || echo '$(srcdir)/'`src/decoder_list.c
-
- src_mpd-decoder_list.obj: src/decoder_list.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_list.obj -MD -MP -MF $(DEPDIR)/src_mpd-decoder_list.Tpo -c -o src_mpd-decoder_list.obj `if test -f 'src/decoder_list.c'; then $(CYGPATH_W) 'src/decoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_list.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-decoder_list.Tpo $(DEPDIR)/src_mpd-decoder_list.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_list.obj -MD -MP -MF "$(DEPDIR)/src_mpd-decoder_list.Tpo" -c -o src_mpd-decoder_list.obj `if test -f 'src/decoder_list.c'; then $(CYGPATH_W) 'src/decoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_list.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-decoder_list.Tpo" "$(DEPDIR)/src_mpd-decoder_list.Po"; else rm -f "$(DEPDIR)/src_mpd-decoder_list.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_list.c' object='src_mpd-decoder_list.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-decoder_list.obj `if test -f 'src/decoder_list.c'; then $(CYGPATH_W) 'src/decoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_list.c'; fi`
-
- src_mpd-mad_plugin.o: src/decoder/mad_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mad_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-mad_plugin.Tpo -c -o src_mpd-mad_plugin.o `test -f 'src/decoder/mad_plugin.c' || echo '$(srcdir)/'`src/decoder/mad_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mad_plugin.Tpo $(DEPDIR)/src_mpd-mad_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mad_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-mad_plugin.Tpo" -c -o src_mpd-mad_plugin.o `test -f 'src/decoder/mad_plugin.c' || echo '$(srcdir)/'`src/decoder/mad_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mad_plugin.Tpo" "$(DEPDIR)/src_mpd-mad_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-mad_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mad_plugin.c' object='src_mpd-mad_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mad_plugin.o `test -f 'src/decoder/mad_plugin.c' || echo '$(srcdir)/'`src/decoder/mad_plugin.c
-
- src_mpd-mad_plugin.obj: src/decoder/mad_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mad_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-mad_plugin.Tpo -c -o src_mpd-mad_plugin.obj `if test -f 'src/decoder/mad_plugin.c'; then $(CYGPATH_W) 'src/decoder/mad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mad_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mad_plugin.Tpo $(DEPDIR)/src_mpd-mad_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mad_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-mad_plugin.Tpo" -c -o src_mpd-mad_plugin.obj `if test -f 'src/decoder/mad_plugin.c'; then $(CYGPATH_W) 'src/decoder/mad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mad_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mad_plugin.Tpo" "$(DEPDIR)/src_mpd-mad_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-mad_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mad_plugin.c' object='src_mpd-mad_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mad_plugin.obj `if test -f 'src/decoder/mad_plugin.c'; then $(CYGPATH_W) 'src/decoder/mad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mad_plugin.c'; fi`
-
- src_mpd-mpcdec_plugin.o: src/decoder/mpcdec_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mpcdec_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-mpcdec_plugin.Tpo -c -o src_mpd-mpcdec_plugin.o `test -f 'src/decoder/mpcdec_plugin.c' || echo '$(srcdir)/'`src/decoder/mpcdec_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mpcdec_plugin.Tpo $(DEPDIR)/src_mpd-mpcdec_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mpcdec_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-mpcdec_plugin.Tpo" -c -o src_mpd-mpcdec_plugin.o `test -f 'src/decoder/mpcdec_plugin.c' || echo '$(srcdir)/'`src/decoder/mpcdec_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mpcdec_plugin.Tpo" "$(DEPDIR)/src_mpd-mpcdec_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-mpcdec_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mpcdec_plugin.c' object='src_mpd-mpcdec_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mpcdec_plugin.o `test -f 'src/decoder/mpcdec_plugin.c' || echo '$(srcdir)/'`src/decoder/mpcdec_plugin.c
-
- src_mpd-mpcdec_plugin.obj: src/decoder/mpcdec_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mpcdec_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-mpcdec_plugin.Tpo -c -o src_mpd-mpcdec_plugin.obj `if test -f 'src/decoder/mpcdec_plugin.c'; then $(CYGPATH_W) 'src/decoder/mpcdec_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mpcdec_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mpcdec_plugin.Tpo $(DEPDIR)/src_mpd-mpcdec_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mpcdec_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-mpcdec_plugin.Tpo" -c -o src_mpd-mpcdec_plugin.obj `if test -f 'src/decoder/mpcdec_plugin.c'; then $(CYGPATH_W) 'src/decoder/mpcdec_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mpcdec_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mpcdec_plugin.Tpo" "$(DEPDIR)/src_mpd-mpcdec_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-mpcdec_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mpcdec_plugin.c' object='src_mpd-mpcdec_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mpcdec_plugin.obj `if test -f 'src/decoder/mpcdec_plugin.c'; then $(CYGPATH_W) 'src/decoder/mpcdec_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mpcdec_plugin.c'; fi`
-
- src_mpd-wavpack_plugin.o: src/decoder/wavpack_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-wavpack_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-wavpack_plugin.Tpo -c -o src_mpd-wavpack_plugin.o `test -f 'src/decoder/wavpack_plugin.c' || echo '$(srcdir)/'`src/decoder/wavpack_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-wavpack_plugin.Tpo $(DEPDIR)/src_mpd-wavpack_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-wavpack_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-wavpack_plugin.Tpo" -c -o src_mpd-wavpack_plugin.o `test -f 'src/decoder/wavpack_plugin.c' || echo '$(srcdir)/'`src/decoder/wavpack_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-wavpack_plugin.Tpo" "$(DEPDIR)/src_mpd-wavpack_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-wavpack_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/wavpack_plugin.c' object='src_mpd-wavpack_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-wavpack_plugin.o `test -f 'src/decoder/wavpack_plugin.c' || echo '$(srcdir)/'`src/decoder/wavpack_plugin.c
-
- src_mpd-wavpack_plugin.obj: src/decoder/wavpack_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-wavpack_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-wavpack_plugin.Tpo -c -o src_mpd-wavpack_plugin.obj `if test -f 'src/decoder/wavpack_plugin.c'; then $(CYGPATH_W) 'src/decoder/wavpack_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wavpack_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-wavpack_plugin.Tpo $(DEPDIR)/src_mpd-wavpack_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-wavpack_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-wavpack_plugin.Tpo" -c -o src_mpd-wavpack_plugin.obj `if test -f 'src/decoder/wavpack_plugin.c'; then $(CYGPATH_W) 'src/decoder/wavpack_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wavpack_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-wavpack_plugin.Tpo" "$(DEPDIR)/src_mpd-wavpack_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-wavpack_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/wavpack_plugin.c' object='src_mpd-wavpack_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-wavpack_plugin.obj `if test -f 'src/decoder/wavpack_plugin.c'; then $(CYGPATH_W) 'src/decoder/wavpack_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wavpack_plugin.c'; fi`
-
- src_mpd-faad_plugin.o: src/decoder/faad_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-faad_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-faad_plugin.Tpo -c -o src_mpd-faad_plugin.o `test -f 'src/decoder/faad_plugin.c' || echo '$(srcdir)/'`src/decoder/faad_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-faad_plugin.Tpo $(DEPDIR)/src_mpd-faad_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-faad_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-faad_plugin.Tpo" -c -o src_mpd-faad_plugin.o `test -f 'src/decoder/faad_plugin.c' || echo '$(srcdir)/'`src/decoder/faad_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-faad_plugin.Tpo" "$(DEPDIR)/src_mpd-faad_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-faad_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/faad_plugin.c' object='src_mpd-faad_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-faad_plugin.o `test -f 'src/decoder/faad_plugin.c' || echo '$(srcdir)/'`src/decoder/faad_plugin.c
-
- src_mpd-faad_plugin.obj: src/decoder/faad_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-faad_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-faad_plugin.Tpo -c -o src_mpd-faad_plugin.obj `if test -f 'src/decoder/faad_plugin.c'; then $(CYGPATH_W) 'src/decoder/faad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/faad_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-faad_plugin.Tpo $(DEPDIR)/src_mpd-faad_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-faad_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-faad_plugin.Tpo" -c -o src_mpd-faad_plugin.obj `if test -f 'src/decoder/faad_plugin.c'; then $(CYGPATH_W) 'src/decoder/faad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/faad_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-faad_plugin.Tpo" "$(DEPDIR)/src_mpd-faad_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-faad_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/faad_plugin.c' object='src_mpd-faad_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-faad_plugin.obj `if test -f 'src/decoder/faad_plugin.c'; then $(CYGPATH_W) 'src/decoder/faad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/faad_plugin.c'; fi`
-
- src_mpd-mp4ff_plugin.o: src/decoder/mp4ff_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mp4ff_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-mp4ff_plugin.Tpo -c -o src_mpd-mp4ff_plugin.o `test -f 'src/decoder/mp4ff_plugin.c' || echo '$(srcdir)/'`src/decoder/mp4ff_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mp4ff_plugin.Tpo $(DEPDIR)/src_mpd-mp4ff_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mp4ff_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-mp4ff_plugin.Tpo" -c -o src_mpd-mp4ff_plugin.o `test -f 'src/decoder/mp4ff_plugin.c' || echo '$(srcdir)/'`src/decoder/mp4ff_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mp4ff_plugin.Tpo" "$(DEPDIR)/src_mpd-mp4ff_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-mp4ff_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mp4ff_plugin.c' object='src_mpd-mp4ff_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mp4ff_plugin.o `test -f 'src/decoder/mp4ff_plugin.c' || echo '$(srcdir)/'`src/decoder/mp4ff_plugin.c
-
- src_mpd-mp4ff_plugin.obj: src/decoder/mp4ff_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mp4ff_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-mp4ff_plugin.Tpo -c -o src_mpd-mp4ff_plugin.obj `if test -f 'src/decoder/mp4ff_plugin.c'; then $(CYGPATH_W) 'src/decoder/mp4ff_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mp4ff_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mp4ff_plugin.Tpo $(DEPDIR)/src_mpd-mp4ff_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mp4ff_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-mp4ff_plugin.Tpo" -c -o src_mpd-mp4ff_plugin.obj `if test -f 'src/decoder/mp4ff_plugin.c'; then $(CYGPATH_W) 'src/decoder/mp4ff_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mp4ff_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mp4ff_plugin.Tpo" "$(DEPDIR)/src_mpd-mp4ff_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-mp4ff_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mp4ff_plugin.c' object='src_mpd-mp4ff_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mp4ff_plugin.obj `if test -f 'src/decoder/mp4ff_plugin.c'; then $(CYGPATH_W) 'src/decoder/mp4ff_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mp4ff_plugin.c'; fi`
-
- src_mpd-_ogg_common.o: src/decoder/_ogg_common.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-_ogg_common.o -MD -MP -MF $(DEPDIR)/src_mpd-_ogg_common.Tpo -c -o src_mpd-_ogg_common.o `test -f 'src/decoder/_ogg_common.c' || echo '$(srcdir)/'`src/decoder/_ogg_common.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-_ogg_common.Tpo $(DEPDIR)/src_mpd-_ogg_common.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-_ogg_common.o -MD -MP -MF "$(DEPDIR)/src_mpd-_ogg_common.Tpo" -c -o src_mpd-_ogg_common.o `test -f 'src/decoder/_ogg_common.c' || echo '$(srcdir)/'`src/decoder/_ogg_common.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-_ogg_common.Tpo" "$(DEPDIR)/src_mpd-_ogg_common.Po"; else rm -f "$(DEPDIR)/src_mpd-_ogg_common.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/_ogg_common.c' object='src_mpd-_ogg_common.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-_ogg_common.o `test -f 'src/decoder/_ogg_common.c' || echo '$(srcdir)/'`src/decoder/_ogg_common.c
-
- src_mpd-_ogg_common.obj: src/decoder/_ogg_common.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-_ogg_common.obj -MD -MP -MF $(DEPDIR)/src_mpd-_ogg_common.Tpo -c -o src_mpd-_ogg_common.obj `if test -f 'src/decoder/_ogg_common.c'; then $(CYGPATH_W) 'src/decoder/_ogg_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_ogg_common.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-_ogg_common.Tpo $(DEPDIR)/src_mpd-_ogg_common.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-_ogg_common.obj -MD -MP -MF "$(DEPDIR)/src_mpd-_ogg_common.Tpo" -c -o src_mpd-_ogg_common.obj `if test -f 'src/decoder/_ogg_common.c'; then $(CYGPATH_W) 'src/decoder/_ogg_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_ogg_common.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-_ogg_common.Tpo" "$(DEPDIR)/src_mpd-_ogg_common.Po"; else rm -f "$(DEPDIR)/src_mpd-_ogg_common.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/_ogg_common.c' object='src_mpd-_ogg_common.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-_ogg_common.obj `if test -f 'src/decoder/_ogg_common.c'; then $(CYGPATH_W) 'src/decoder/_ogg_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_ogg_common.c'; fi`
-
- src_mpd-_flac_common.o: src/decoder/_flac_common.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-_flac_common.o -MD -MP -MF $(DEPDIR)/src_mpd-_flac_common.Tpo -c -o src_mpd-_flac_common.o `test -f 'src/decoder/_flac_common.c' || echo '$(srcdir)/'`src/decoder/_flac_common.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-_flac_common.Tpo $(DEPDIR)/src_mpd-_flac_common.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-_flac_common.o -MD -MP -MF "$(DEPDIR)/src_mpd-_flac_common.Tpo" -c -o src_mpd-_flac_common.o `test -f 'src/decoder/_flac_common.c' || echo '$(srcdir)/'`src/decoder/_flac_common.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-_flac_common.Tpo" "$(DEPDIR)/src_mpd-_flac_common.Po"; else rm -f "$(DEPDIR)/src_mpd-_flac_common.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/_flac_common.c' object='src_mpd-_flac_common.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-_flac_common.o `test -f 'src/decoder/_flac_common.c' || echo '$(srcdir)/'`src/decoder/_flac_common.c
-
- src_mpd-_flac_common.obj: src/decoder/_flac_common.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-_flac_common.obj -MD -MP -MF $(DEPDIR)/src_mpd-_flac_common.Tpo -c -o src_mpd-_flac_common.obj `if test -f 'src/decoder/_flac_common.c'; then $(CYGPATH_W) 'src/decoder/_flac_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_flac_common.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-_flac_common.Tpo $(DEPDIR)/src_mpd-_flac_common.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-_flac_common.obj -MD -MP -MF "$(DEPDIR)/src_mpd-_flac_common.Tpo" -c -o src_mpd-_flac_common.obj `if test -f 'src/decoder/_flac_common.c'; then $(CYGPATH_W) 'src/decoder/_flac_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_flac_common.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-_flac_common.Tpo" "$(DEPDIR)/src_mpd-_flac_common.Po"; else rm -f "$(DEPDIR)/src_mpd-_flac_common.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/_flac_common.c' object='src_mpd-_flac_common.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-_flac_common.obj `if test -f 'src/decoder/_flac_common.c'; then $(CYGPATH_W) 'src/decoder/_flac_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_flac_common.c'; fi`
-
- src_mpd-vorbis_plugin.o: src/decoder/vorbis_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-vorbis_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-vorbis_plugin.Tpo -c -o src_mpd-vorbis_plugin.o `test -f 'src/decoder/vorbis_plugin.c' || echo '$(srcdir)/'`src/decoder/vorbis_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-vorbis_plugin.Tpo $(DEPDIR)/src_mpd-vorbis_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-vorbis_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-vorbis_plugin.Tpo" -c -o src_mpd-vorbis_plugin.o `test -f 'src/decoder/vorbis_plugin.c' || echo '$(srcdir)/'`src/decoder/vorbis_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-vorbis_plugin.Tpo" "$(DEPDIR)/src_mpd-vorbis_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-vorbis_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/vorbis_plugin.c' object='src_mpd-vorbis_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-vorbis_plugin.o `test -f 'src/decoder/vorbis_plugin.c' || echo '$(srcdir)/'`src/decoder/vorbis_plugin.c
-
- src_mpd-vorbis_plugin.obj: src/decoder/vorbis_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-vorbis_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-vorbis_plugin.Tpo -c -o src_mpd-vorbis_plugin.obj `if test -f 'src/decoder/vorbis_plugin.c'; then $(CYGPATH_W) 'src/decoder/vorbis_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/vorbis_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-vorbis_plugin.Tpo $(DEPDIR)/src_mpd-vorbis_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-vorbis_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-vorbis_plugin.Tpo" -c -o src_mpd-vorbis_plugin.obj `if test -f 'src/decoder/vorbis_plugin.c'; then $(CYGPATH_W) 'src/decoder/vorbis_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/vorbis_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-vorbis_plugin.Tpo" "$(DEPDIR)/src_mpd-vorbis_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-vorbis_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/vorbis_plugin.c' object='src_mpd-vorbis_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-vorbis_plugin.obj `if test -f 'src/decoder/vorbis_plugin.c'; then $(CYGPATH_W) 'src/decoder/vorbis_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/vorbis_plugin.c'; fi`
-
- src_mpd-flac_plugin.o: src/decoder/flac_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-flac_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-flac_plugin.Tpo -c -o src_mpd-flac_plugin.o `test -f 'src/decoder/flac_plugin.c' || echo '$(srcdir)/'`src/decoder/flac_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-flac_plugin.Tpo $(DEPDIR)/src_mpd-flac_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-flac_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-flac_plugin.Tpo" -c -o src_mpd-flac_plugin.o `test -f 'src/decoder/flac_plugin.c' || echo '$(srcdir)/'`src/decoder/flac_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-flac_plugin.Tpo" "$(DEPDIR)/src_mpd-flac_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-flac_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/flac_plugin.c' object='src_mpd-flac_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-flac_plugin.o `test -f 'src/decoder/flac_plugin.c' || echo '$(srcdir)/'`src/decoder/flac_plugin.c
-
- src_mpd-flac_plugin.obj: src/decoder/flac_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-flac_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-flac_plugin.Tpo -c -o src_mpd-flac_plugin.obj `if test -f 'src/decoder/flac_plugin.c'; then $(CYGPATH_W) 'src/decoder/flac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/flac_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-flac_plugin.Tpo $(DEPDIR)/src_mpd-flac_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-flac_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-flac_plugin.Tpo" -c -o src_mpd-flac_plugin.obj `if test -f 'src/decoder/flac_plugin.c'; then $(CYGPATH_W) 'src/decoder/flac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/flac_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-flac_plugin.Tpo" "$(DEPDIR)/src_mpd-flac_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-flac_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/flac_plugin.c' object='src_mpd-flac_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-flac_plugin.obj `if test -f 'src/decoder/flac_plugin.c'; then $(CYGPATH_W) 'src/decoder/flac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/flac_plugin.c'; fi`
-
- src_mpd-oggflac_plugin.o: src/decoder/oggflac_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-oggflac_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-oggflac_plugin.Tpo -c -o src_mpd-oggflac_plugin.o `test -f 'src/decoder/oggflac_plugin.c' || echo '$(srcdir)/'`src/decoder/oggflac_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-oggflac_plugin.Tpo $(DEPDIR)/src_mpd-oggflac_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-oggflac_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-oggflac_plugin.Tpo" -c -o src_mpd-oggflac_plugin.o `test -f 'src/decoder/oggflac_plugin.c' || echo '$(srcdir)/'`src/decoder/oggflac_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-oggflac_plugin.Tpo" "$(DEPDIR)/src_mpd-oggflac_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-oggflac_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/oggflac_plugin.c' object='src_mpd-oggflac_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-oggflac_plugin.o `test -f 'src/decoder/oggflac_plugin.c' || echo '$(srcdir)/'`src/decoder/oggflac_plugin.c
-
- src_mpd-oggflac_plugin.obj: src/decoder/oggflac_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-oggflac_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-oggflac_plugin.Tpo -c -o src_mpd-oggflac_plugin.obj `if test -f 'src/decoder/oggflac_plugin.c'; then $(CYGPATH_W) 'src/decoder/oggflac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/oggflac_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-oggflac_plugin.Tpo $(DEPDIR)/src_mpd-oggflac_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-oggflac_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-oggflac_plugin.Tpo" -c -o src_mpd-oggflac_plugin.obj `if test -f 'src/decoder/oggflac_plugin.c'; then $(CYGPATH_W) 'src/decoder/oggflac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/oggflac_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-oggflac_plugin.Tpo" "$(DEPDIR)/src_mpd-oggflac_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-oggflac_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/oggflac_plugin.c' object='src_mpd-oggflac_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-oggflac_plugin.obj `if test -f 'src/decoder/oggflac_plugin.c'; then $(CYGPATH_W) 'src/decoder/oggflac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/oggflac_plugin.c'; fi`
-
- src_mpd-audiofile_plugin.o: src/decoder/audiofile_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-audiofile_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-audiofile_plugin.Tpo -c -o src_mpd-audiofile_plugin.o `test -f 'src/decoder/audiofile_plugin.c' || echo '$(srcdir)/'`src/decoder/audiofile_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-audiofile_plugin.Tpo $(DEPDIR)/src_mpd-audiofile_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-audiofile_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-audiofile_plugin.Tpo" -c -o src_mpd-audiofile_plugin.o `test -f 'src/decoder/audiofile_plugin.c' || echo '$(srcdir)/'`src/decoder/audiofile_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-audiofile_plugin.Tpo" "$(DEPDIR)/src_mpd-audiofile_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-audiofile_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/audiofile_plugin.c' object='src_mpd-audiofile_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-audiofile_plugin.o `test -f 'src/decoder/audiofile_plugin.c' || echo '$(srcdir)/'`src/decoder/audiofile_plugin.c
-
- src_mpd-audiofile_plugin.obj: src/decoder/audiofile_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-audiofile_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-audiofile_plugin.Tpo -c -o src_mpd-audiofile_plugin.obj `if test -f 'src/decoder/audiofile_plugin.c'; then $(CYGPATH_W) 'src/decoder/audiofile_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/audiofile_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-audiofile_plugin.Tpo $(DEPDIR)/src_mpd-audiofile_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-audiofile_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-audiofile_plugin.Tpo" -c -o src_mpd-audiofile_plugin.obj `if test -f 'src/decoder/audiofile_plugin.c'; then $(CYGPATH_W) 'src/decoder/audiofile_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/audiofile_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-audiofile_plugin.Tpo" "$(DEPDIR)/src_mpd-audiofile_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-audiofile_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/audiofile_plugin.c' object='src_mpd-audiofile_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-audiofile_plugin.obj `if test -f 'src/decoder/audiofile_plugin.c'; then $(CYGPATH_W) 'src/decoder/audiofile_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/audiofile_plugin.c'; fi`
-
- src_mpd-mikmod_plugin.o: src/decoder/mikmod_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mikmod_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-mikmod_plugin.Tpo -c -o src_mpd-mikmod_plugin.o `test -f 'src/decoder/mikmod_plugin.c' || echo '$(srcdir)/'`src/decoder/mikmod_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mikmod_plugin.Tpo $(DEPDIR)/src_mpd-mikmod_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mikmod_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-mikmod_plugin.Tpo" -c -o src_mpd-mikmod_plugin.o `test -f 'src/decoder/mikmod_plugin.c' || echo '$(srcdir)/'`src/decoder/mikmod_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mikmod_plugin.Tpo" "$(DEPDIR)/src_mpd-mikmod_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-mikmod_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mikmod_plugin.c' object='src_mpd-mikmod_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mikmod_plugin.o `test -f 'src/decoder/mikmod_plugin.c' || echo '$(srcdir)/'`src/decoder/mikmod_plugin.c
-
- src_mpd-mikmod_plugin.obj: src/decoder/mikmod_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mikmod_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-mikmod_plugin.Tpo -c -o src_mpd-mikmod_plugin.obj `if test -f 'src/decoder/mikmod_plugin.c'; then $(CYGPATH_W) 'src/decoder/mikmod_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mikmod_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mikmod_plugin.Tpo $(DEPDIR)/src_mpd-mikmod_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mikmod_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-mikmod_plugin.Tpo" -c -o src_mpd-mikmod_plugin.obj `if test -f 'src/decoder/mikmod_plugin.c'; then $(CYGPATH_W) 'src/decoder/mikmod_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mikmod_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mikmod_plugin.Tpo" "$(DEPDIR)/src_mpd-mikmod_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-mikmod_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mikmod_plugin.c' object='src_mpd-mikmod_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mikmod_plugin.obj `if test -f 'src/decoder/mikmod_plugin.c'; then $(CYGPATH_W) 'src/decoder/mikmod_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mikmod_plugin.c'; fi`
-
- src_mpd-modplug_plugin.o: src/decoder/modplug_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-modplug_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-modplug_plugin.Tpo -c -o src_mpd-modplug_plugin.o `test -f 'src/decoder/modplug_plugin.c' || echo '$(srcdir)/'`src/decoder/modplug_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-modplug_plugin.Tpo $(DEPDIR)/src_mpd-modplug_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-modplug_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-modplug_plugin.Tpo" -c -o src_mpd-modplug_plugin.o `test -f 'src/decoder/modplug_plugin.c' || echo '$(srcdir)/'`src/decoder/modplug_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-modplug_plugin.Tpo" "$(DEPDIR)/src_mpd-modplug_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-modplug_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/modplug_plugin.c' object='src_mpd-modplug_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-modplug_plugin.o `test -f 'src/decoder/modplug_plugin.c' || echo '$(srcdir)/'`src/decoder/modplug_plugin.c
-
- src_mpd-modplug_plugin.obj: src/decoder/modplug_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-modplug_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-modplug_plugin.Tpo -c -o src_mpd-modplug_plugin.obj `if test -f 'src/decoder/modplug_plugin.c'; then $(CYGPATH_W) 'src/decoder/modplug_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/modplug_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-modplug_plugin.Tpo $(DEPDIR)/src_mpd-modplug_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-modplug_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-modplug_plugin.Tpo" -c -o src_mpd-modplug_plugin.obj `if test -f 'src/decoder/modplug_plugin.c'; then $(CYGPATH_W) 'src/decoder/modplug_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/modplug_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-modplug_plugin.Tpo" "$(DEPDIR)/src_mpd-modplug_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-modplug_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/modplug_plugin.c' object='src_mpd-modplug_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-modplug_plugin.obj `if test -f 'src/decoder/modplug_plugin.c'; then $(CYGPATH_W) 'src/decoder/modplug_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/modplug_plugin.c'; fi`
-
- src_mpd-fluidsynth_plugin.o: src/decoder/fluidsynth_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-fluidsynth_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-fluidsynth_plugin.Tpo -c -o src_mpd-fluidsynth_plugin.o `test -f 'src/decoder/fluidsynth_plugin.c' || echo '$(srcdir)/'`src/decoder/fluidsynth_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-fluidsynth_plugin.Tpo $(DEPDIR)/src_mpd-fluidsynth_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-fluidsynth_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-fluidsynth_plugin.Tpo" -c -o src_mpd-fluidsynth_plugin.o `test -f 'src/decoder/fluidsynth_plugin.c' || echo '$(srcdir)/'`src/decoder/fluidsynth_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-fluidsynth_plugin.Tpo" "$(DEPDIR)/src_mpd-fluidsynth_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-fluidsynth_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/fluidsynth_plugin.c' object='src_mpd-fluidsynth_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-fluidsynth_plugin.o `test -f 'src/decoder/fluidsynth_plugin.c' || echo '$(srcdir)/'`src/decoder/fluidsynth_plugin.c
-
- src_mpd-fluidsynth_plugin.obj: src/decoder/fluidsynth_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-fluidsynth_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-fluidsynth_plugin.Tpo -c -o src_mpd-fluidsynth_plugin.obj `if test -f 'src/decoder/fluidsynth_plugin.c'; then $(CYGPATH_W) 'src/decoder/fluidsynth_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/fluidsynth_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-fluidsynth_plugin.Tpo $(DEPDIR)/src_mpd-fluidsynth_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-fluidsynth_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-fluidsynth_plugin.Tpo" -c -o src_mpd-fluidsynth_plugin.obj `if test -f 'src/decoder/fluidsynth_plugin.c'; then $(CYGPATH_W) 'src/decoder/fluidsynth_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/fluidsynth_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-fluidsynth_plugin.Tpo" "$(DEPDIR)/src_mpd-fluidsynth_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-fluidsynth_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/fluidsynth_plugin.c' object='src_mpd-fluidsynth_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-fluidsynth_plugin.obj `if test -f 'src/decoder/fluidsynth_plugin.c'; then $(CYGPATH_W) 'src/decoder/fluidsynth_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/fluidsynth_plugin.c'; fi`
-
- src_mpd-wildmidi_plugin.o: src/decoder/wildmidi_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-wildmidi_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-wildmidi_plugin.Tpo -c -o src_mpd-wildmidi_plugin.o `test -f 'src/decoder/wildmidi_plugin.c' || echo '$(srcdir)/'`src/decoder/wildmidi_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-wildmidi_plugin.Tpo $(DEPDIR)/src_mpd-wildmidi_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-wildmidi_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-wildmidi_plugin.Tpo" -c -o src_mpd-wildmidi_plugin.o `test -f 'src/decoder/wildmidi_plugin.c' || echo '$(srcdir)/'`src/decoder/wildmidi_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-wildmidi_plugin.Tpo" "$(DEPDIR)/src_mpd-wildmidi_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-wildmidi_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/wildmidi_plugin.c' object='src_mpd-wildmidi_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-wildmidi_plugin.o `test -f 'src/decoder/wildmidi_plugin.c' || echo '$(srcdir)/'`src/decoder/wildmidi_plugin.c
-
- src_mpd-wildmidi_plugin.obj: src/decoder/wildmidi_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-wildmidi_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-wildmidi_plugin.Tpo -c -o src_mpd-wildmidi_plugin.obj `if test -f 'src/decoder/wildmidi_plugin.c'; then $(CYGPATH_W) 'src/decoder/wildmidi_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wildmidi_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-wildmidi_plugin.Tpo $(DEPDIR)/src_mpd-wildmidi_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-wildmidi_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-wildmidi_plugin.Tpo" -c -o src_mpd-wildmidi_plugin.obj `if test -f 'src/decoder/wildmidi_plugin.c'; then $(CYGPATH_W) 'src/decoder/wildmidi_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wildmidi_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-wildmidi_plugin.Tpo" "$(DEPDIR)/src_mpd-wildmidi_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-wildmidi_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/wildmidi_plugin.c' object='src_mpd-wildmidi_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-wildmidi_plugin.obj `if test -f 'src/decoder/wildmidi_plugin.c'; then $(CYGPATH_W) 'src/decoder/wildmidi_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wildmidi_plugin.c'; fi`
-
- src_mpd-ffmpeg_plugin.o: src/decoder/ffmpeg_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-ffmpeg_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-ffmpeg_plugin.Tpo -c -o src_mpd-ffmpeg_plugin.o `test -f 'src/decoder/ffmpeg_plugin.c' || echo '$(srcdir)/'`src/decoder/ffmpeg_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-ffmpeg_plugin.Tpo $(DEPDIR)/src_mpd-ffmpeg_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-ffmpeg_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-ffmpeg_plugin.Tpo" -c -o src_mpd-ffmpeg_plugin.o `test -f 'src/decoder/ffmpeg_plugin.c' || echo '$(srcdir)/'`src/decoder/ffmpeg_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-ffmpeg_plugin.Tpo" "$(DEPDIR)/src_mpd-ffmpeg_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-ffmpeg_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/ffmpeg_plugin.c' object='src_mpd-ffmpeg_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-ffmpeg_plugin.o `test -f 'src/decoder/ffmpeg_plugin.c' || echo '$(srcdir)/'`src/decoder/ffmpeg_plugin.c
-
- src_mpd-ffmpeg_plugin.obj: src/decoder/ffmpeg_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-ffmpeg_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-ffmpeg_plugin.Tpo -c -o src_mpd-ffmpeg_plugin.obj `if test -f 'src/decoder/ffmpeg_plugin.c'; then $(CYGPATH_W) 'src/decoder/ffmpeg_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/ffmpeg_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-ffmpeg_plugin.Tpo $(DEPDIR)/src_mpd-ffmpeg_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-ffmpeg_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-ffmpeg_plugin.Tpo" -c -o src_mpd-ffmpeg_plugin.obj `if test -f 'src/decoder/ffmpeg_plugin.c'; then $(CYGPATH_W) 'src/decoder/ffmpeg_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/ffmpeg_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-ffmpeg_plugin.Tpo" "$(DEPDIR)/src_mpd-ffmpeg_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-ffmpeg_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/ffmpeg_plugin.c' object='src_mpd-ffmpeg_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-ffmpeg_plugin.obj `if test -f 'src/decoder/ffmpeg_plugin.c'; then $(CYGPATH_W) 'src/decoder/ffmpeg_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/ffmpeg_plugin.c'; fi`
-
- src_mpd-cue_tag.o: src/cue/cue_tag.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-cue_tag.o -MD -MP -MF $(DEPDIR)/src_mpd-cue_tag.Tpo -c -o src_mpd-cue_tag.o `test -f 'src/cue/cue_tag.c' || echo '$(srcdir)/'`src/cue/cue_tag.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-cue_tag.Tpo $(DEPDIR)/src_mpd-cue_tag.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-cue_tag.o -MD -MP -MF "$(DEPDIR)/src_mpd-cue_tag.Tpo" -c -o src_mpd-cue_tag.o `test -f 'src/cue/cue_tag.c' || echo '$(srcdir)/'`src/cue/cue_tag.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-cue_tag.Tpo" "$(DEPDIR)/src_mpd-cue_tag.Po"; else rm -f "$(DEPDIR)/src_mpd-cue_tag.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/cue/cue_tag.c' object='src_mpd-cue_tag.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-cue_tag.o `test -f 'src/cue/cue_tag.c' || echo '$(srcdir)/'`src/cue/cue_tag.c
-
- src_mpd-cue_tag.obj: src/cue/cue_tag.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-cue_tag.obj -MD -MP -MF $(DEPDIR)/src_mpd-cue_tag.Tpo -c -o src_mpd-cue_tag.obj `if test -f 'src/cue/cue_tag.c'; then $(CYGPATH_W) 'src/cue/cue_tag.c'; else $(CYGPATH_W) '$(srcdir)/src/cue/cue_tag.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-cue_tag.Tpo $(DEPDIR)/src_mpd-cue_tag.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-cue_tag.obj -MD -MP -MF "$(DEPDIR)/src_mpd-cue_tag.Tpo" -c -o src_mpd-cue_tag.obj `if test -f 'src/cue/cue_tag.c'; then $(CYGPATH_W) 'src/cue/cue_tag.c'; else $(CYGPATH_W) '$(srcdir)/src/cue/cue_tag.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-cue_tag.Tpo" "$(DEPDIR)/src_mpd-cue_tag.Po"; else rm -f "$(DEPDIR)/src_mpd-cue_tag.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/cue/cue_tag.c' object='src_mpd-cue_tag.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-cue_tag.obj `if test -f 'src/cue/cue_tag.c'; then $(CYGPATH_W) 'src/cue/cue_tag.c'; else $(CYGPATH_W) '$(srcdir)/src/cue/cue_tag.c'; fi`
-
- src_mpd-encoder_list.o: src/encoder_list.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-encoder_list.o -MD -MP -MF $(DEPDIR)/src_mpd-encoder_list.Tpo -c -o src_mpd-encoder_list.o `test -f 'src/encoder_list.c' || echo '$(srcdir)/'`src/encoder_list.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-encoder_list.Tpo $(DEPDIR)/src_mpd-encoder_list.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-encoder_list.o -MD -MP -MF "$(DEPDIR)/src_mpd-encoder_list.Tpo" -c -o src_mpd-encoder_list.o `test -f 'src/encoder_list.c' || echo '$(srcdir)/'`src/encoder_list.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-encoder_list.Tpo" "$(DEPDIR)/src_mpd-encoder_list.Po"; else rm -f "$(DEPDIR)/src_mpd-encoder_list.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder_list.c' object='src_mpd-encoder_list.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-encoder_list.o `test -f 'src/encoder_list.c' || echo '$(srcdir)/'`src/encoder_list.c
-
- src_mpd-encoder_list.obj: src/encoder_list.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-encoder_list.obj -MD -MP -MF $(DEPDIR)/src_mpd-encoder_list.Tpo -c -o src_mpd-encoder_list.obj `if test -f 'src/encoder_list.c'; then $(CYGPATH_W) 'src/encoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder_list.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-encoder_list.Tpo $(DEPDIR)/src_mpd-encoder_list.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-encoder_list.obj -MD -MP -MF "$(DEPDIR)/src_mpd-encoder_list.Tpo" -c -o src_mpd-encoder_list.obj `if test -f 'src/encoder_list.c'; then $(CYGPATH_W) 'src/encoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder_list.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-encoder_list.Tpo" "$(DEPDIR)/src_mpd-encoder_list.Po"; else rm -f "$(DEPDIR)/src_mpd-encoder_list.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder_list.c' object='src_mpd-encoder_list.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-encoder_list.obj `if test -f 'src/encoder_list.c'; then $(CYGPATH_W) 'src/encoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder_list.c'; fi`
-
- src_mpd-vorbis_encoder.o: src/encoder/vorbis_encoder.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-vorbis_encoder.o -MD -MP -MF $(DEPDIR)/src_mpd-vorbis_encoder.Tpo -c -o src_mpd-vorbis_encoder.o `test -f 'src/encoder/vorbis_encoder.c' || echo '$(srcdir)/'`src/encoder/vorbis_encoder.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-vorbis_encoder.Tpo $(DEPDIR)/src_mpd-vorbis_encoder.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-vorbis_encoder.o -MD -MP -MF "$(DEPDIR)/src_mpd-vorbis_encoder.Tpo" -c -o src_mpd-vorbis_encoder.o `test -f 'src/encoder/vorbis_encoder.c' || echo '$(srcdir)/'`src/encoder/vorbis_encoder.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-vorbis_encoder.Tpo" "$(DEPDIR)/src_mpd-vorbis_encoder.Po"; else rm -f "$(DEPDIR)/src_mpd-vorbis_encoder.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder/vorbis_encoder.c' object='src_mpd-vorbis_encoder.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-vorbis_encoder.o `test -f 'src/encoder/vorbis_encoder.c' || echo '$(srcdir)/'`src/encoder/vorbis_encoder.c
-
- src_mpd-vorbis_encoder.obj: src/encoder/vorbis_encoder.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-vorbis_encoder.obj -MD -MP -MF $(DEPDIR)/src_mpd-vorbis_encoder.Tpo -c -o src_mpd-vorbis_encoder.obj `if test -f 'src/encoder/vorbis_encoder.c'; then $(CYGPATH_W) 'src/encoder/vorbis_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/vorbis_encoder.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-vorbis_encoder.Tpo $(DEPDIR)/src_mpd-vorbis_encoder.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-vorbis_encoder.obj -MD -MP -MF "$(DEPDIR)/src_mpd-vorbis_encoder.Tpo" -c -o src_mpd-vorbis_encoder.obj `if test -f 'src/encoder/vorbis_encoder.c'; then $(CYGPATH_W) 'src/encoder/vorbis_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/vorbis_encoder.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-vorbis_encoder.Tpo" "$(DEPDIR)/src_mpd-vorbis_encoder.Po"; else rm -f "$(DEPDIR)/src_mpd-vorbis_encoder.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder/vorbis_encoder.c' object='src_mpd-vorbis_encoder.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-vorbis_encoder.obj `if test -f 'src/encoder/vorbis_encoder.c'; then $(CYGPATH_W) 'src/encoder/vorbis_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/vorbis_encoder.c'; fi`
-
- src_mpd-lame_encoder.o: src/encoder/lame_encoder.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-lame_encoder.o -MD -MP -MF $(DEPDIR)/src_mpd-lame_encoder.Tpo -c -o src_mpd-lame_encoder.o `test -f 'src/encoder/lame_encoder.c' || echo '$(srcdir)/'`src/encoder/lame_encoder.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-lame_encoder.Tpo $(DEPDIR)/src_mpd-lame_encoder.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-lame_encoder.o -MD -MP -MF "$(DEPDIR)/src_mpd-lame_encoder.Tpo" -c -o src_mpd-lame_encoder.o `test -f 'src/encoder/lame_encoder.c' || echo '$(srcdir)/'`src/encoder/lame_encoder.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-lame_encoder.Tpo" "$(DEPDIR)/src_mpd-lame_encoder.Po"; else rm -f "$(DEPDIR)/src_mpd-lame_encoder.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder/lame_encoder.c' object='src_mpd-lame_encoder.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-lame_encoder.o `test -f 'src/encoder/lame_encoder.c' || echo '$(srcdir)/'`src/encoder/lame_encoder.c
-
- src_mpd-lame_encoder.obj: src/encoder/lame_encoder.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-lame_encoder.obj -MD -MP -MF $(DEPDIR)/src_mpd-lame_encoder.Tpo -c -o src_mpd-lame_encoder.obj `if test -f 'src/encoder/lame_encoder.c'; then $(CYGPATH_W) 'src/encoder/lame_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/lame_encoder.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-lame_encoder.Tpo $(DEPDIR)/src_mpd-lame_encoder.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-lame_encoder.obj -MD -MP -MF "$(DEPDIR)/src_mpd-lame_encoder.Tpo" -c -o src_mpd-lame_encoder.obj `if test -f 'src/encoder/lame_encoder.c'; then $(CYGPATH_W) 'src/encoder/lame_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/lame_encoder.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-lame_encoder.Tpo" "$(DEPDIR)/src_mpd-lame_encoder.Po"; else rm -f "$(DEPDIR)/src_mpd-lame_encoder.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder/lame_encoder.c' object='src_mpd-lame_encoder.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-lame_encoder.obj `if test -f 'src/encoder/lame_encoder.c'; then $(CYGPATH_W) 'src/encoder/lame_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/lame_encoder.c'; fi`
-
- src_mpd-output_list.o: src/output_list.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_list.o -MD -MP -MF $(DEPDIR)/src_mpd-output_list.Tpo -c -o src_mpd-output_list.o `test -f 'src/output_list.c' || echo '$(srcdir)/'`src/output_list.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-output_list.Tpo $(DEPDIR)/src_mpd-output_list.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_list.o -MD -MP -MF "$(DEPDIR)/src_mpd-output_list.Tpo" -c -o src_mpd-output_list.o `test -f 'src/output_list.c' || echo '$(srcdir)/'`src/output_list.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-output_list.Tpo" "$(DEPDIR)/src_mpd-output_list.Po"; else rm -f "$(DEPDIR)/src_mpd-output_list.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_list.c' object='src_mpd-output_list.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-output_list.o `test -f 'src/output_list.c' || echo '$(srcdir)/'`src/output_list.c
-
- src_mpd-output_list.obj: src/output_list.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_list.obj -MD -MP -MF $(DEPDIR)/src_mpd-output_list.Tpo -c -o src_mpd-output_list.obj `if test -f 'src/output_list.c'; then $(CYGPATH_W) 'src/output_list.c'; else $(CYGPATH_W) '$(srcdir)/src/output_list.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-output_list.Tpo $(DEPDIR)/src_mpd-output_list.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_list.obj -MD -MP -MF "$(DEPDIR)/src_mpd-output_list.Tpo" -c -o src_mpd-output_list.obj `if test -f 'src/output_list.c'; then $(CYGPATH_W) 'src/output_list.c'; else $(CYGPATH_W) '$(srcdir)/src/output_list.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-output_list.Tpo" "$(DEPDIR)/src_mpd-output_list.Po"; else rm -f "$(DEPDIR)/src_mpd-output_list.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_list.c' object='src_mpd-output_list.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-output_list.obj `if test -f 'src/output_list.c'; then $(CYGPATH_W) 'src/output_list.c'; else $(CYGPATH_W) '$(srcdir)/src/output_list.c'; fi`
-
- src_mpd-output_all.o: src/output_all.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_all.o -MD -MP -MF $(DEPDIR)/src_mpd-output_all.Tpo -c -o src_mpd-output_all.o `test -f 'src/output_all.c' || echo '$(srcdir)/'`src/output_all.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-output_all.Tpo $(DEPDIR)/src_mpd-output_all.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_all.o -MD -MP -MF "$(DEPDIR)/src_mpd-output_all.Tpo" -c -o src_mpd-output_all.o `test -f 'src/output_all.c' || echo '$(srcdir)/'`src/output_all.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-output_all.Tpo" "$(DEPDIR)/src_mpd-output_all.Po"; else rm -f "$(DEPDIR)/src_mpd-output_all.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_all.c' object='src_mpd-output_all.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-output_all.o `test -f 'src/output_all.c' || echo '$(srcdir)/'`src/output_all.c
-
- src_mpd-output_all.obj: src/output_all.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_all.obj -MD -MP -MF $(DEPDIR)/src_mpd-output_all.Tpo -c -o src_mpd-output_all.obj `if test -f 'src/output_all.c'; then $(CYGPATH_W) 'src/output_all.c'; else $(CYGPATH_W) '$(srcdir)/src/output_all.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-output_all.Tpo $(DEPDIR)/src_mpd-output_all.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_all.obj -MD -MP -MF "$(DEPDIR)/src_mpd-output_all.Tpo" -c -o src_mpd-output_all.obj `if test -f 'src/output_all.c'; then $(CYGPATH_W) 'src/output_all.c'; else $(CYGPATH_W) '$(srcdir)/src/output_all.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-output_all.Tpo" "$(DEPDIR)/src_mpd-output_all.Po"; else rm -f "$(DEPDIR)/src_mpd-output_all.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_all.c' object='src_mpd-output_all.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-output_all.obj `if test -f 'src/output_all.c'; then $(CYGPATH_W) 'src/output_all.c'; else $(CYGPATH_W) '$(srcdir)/src/output_all.c'; fi`
-
- src_mpd-output_thread.o: src/output_thread.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_thread.o -MD -MP -MF $(DEPDIR)/src_mpd-output_thread.Tpo -c -o src_mpd-output_thread.o `test -f 'src/output_thread.c' || echo '$(srcdir)/'`src/output_thread.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-output_thread.Tpo $(DEPDIR)/src_mpd-output_thread.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_thread.o -MD -MP -MF "$(DEPDIR)/src_mpd-output_thread.Tpo" -c -o src_mpd-output_thread.o `test -f 'src/output_thread.c' || echo '$(srcdir)/'`src/output_thread.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-output_thread.Tpo" "$(DEPDIR)/src_mpd-output_thread.Po"; else rm -f "$(DEPDIR)/src_mpd-output_thread.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_thread.c' object='src_mpd-output_thread.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-output_thread.o `test -f 'src/output_thread.c' || echo '$(srcdir)/'`src/output_thread.c
-
- src_mpd-output_thread.obj: src/output_thread.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_thread.obj -MD -MP -MF $(DEPDIR)/src_mpd-output_thread.Tpo -c -o src_mpd-output_thread.obj `if test -f 'src/output_thread.c'; then $(CYGPATH_W) 'src/output_thread.c'; else $(CYGPATH_W) '$(srcdir)/src/output_thread.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-output_thread.Tpo $(DEPDIR)/src_mpd-output_thread.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_thread.obj -MD -MP -MF "$(DEPDIR)/src_mpd-output_thread.Tpo" -c -o src_mpd-output_thread.obj `if test -f 'src/output_thread.c'; then $(CYGPATH_W) 'src/output_thread.c'; else $(CYGPATH_W) '$(srcdir)/src/output_thread.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-output_thread.Tpo" "$(DEPDIR)/src_mpd-output_thread.Po"; else rm -f "$(DEPDIR)/src_mpd-output_thread.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_thread.c' object='src_mpd-output_thread.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-output_thread.obj `if test -f 'src/output_thread.c'; then $(CYGPATH_W) 'src/output_thread.c'; else $(CYGPATH_W) '$(srcdir)/src/output_thread.c'; fi`
-
- src_mpd-output_control.o: src/output_control.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_control.o -MD -MP -MF $(DEPDIR)/src_mpd-output_control.Tpo -c -o src_mpd-output_control.o `test -f 'src/output_control.c' || echo '$(srcdir)/'`src/output_control.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-output_control.Tpo $(DEPDIR)/src_mpd-output_control.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_control.o -MD -MP -MF "$(DEPDIR)/src_mpd-output_control.Tpo" -c -o src_mpd-output_control.o `test -f 'src/output_control.c' || echo '$(srcdir)/'`src/output_control.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-output_control.Tpo" "$(DEPDIR)/src_mpd-output_control.Po"; else rm -f "$(DEPDIR)/src_mpd-output_control.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_control.c' object='src_mpd-output_control.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-output_control.o `test -f 'src/output_control.c' || echo '$(srcdir)/'`src/output_control.c
-
- src_mpd-output_control.obj: src/output_control.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_control.obj -MD -MP -MF $(DEPDIR)/src_mpd-output_control.Tpo -c -o src_mpd-output_control.obj `if test -f 'src/output_control.c'; then $(CYGPATH_W) 'src/output_control.c'; else $(CYGPATH_W) '$(srcdir)/src/output_control.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-output_control.Tpo $(DEPDIR)/src_mpd-output_control.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_control.obj -MD -MP -MF "$(DEPDIR)/src_mpd-output_control.Tpo" -c -o src_mpd-output_control.obj `if test -f 'src/output_control.c'; then $(CYGPATH_W) 'src/output_control.c'; else $(CYGPATH_W) '$(srcdir)/src/output_control.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-output_control.Tpo" "$(DEPDIR)/src_mpd-output_control.Po"; else rm -f "$(DEPDIR)/src_mpd-output_control.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_control.c' object='src_mpd-output_control.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-output_control.obj `if test -f 'src/output_control.c'; then $(CYGPATH_W) 'src/output_control.c'; else $(CYGPATH_W) '$(srcdir)/src/output_control.c'; fi`
-
- src_mpd-output_state.o: src/output_state.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_state.o -MD -MP -MF $(DEPDIR)/src_mpd-output_state.Tpo -c -o src_mpd-output_state.o `test -f 'src/output_state.c' || echo '$(srcdir)/'`src/output_state.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-output_state.Tpo $(DEPDIR)/src_mpd-output_state.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_state.o -MD -MP -MF "$(DEPDIR)/src_mpd-output_state.Tpo" -c -o src_mpd-output_state.o `test -f 'src/output_state.c' || echo '$(srcdir)/'`src/output_state.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-output_state.Tpo" "$(DEPDIR)/src_mpd-output_state.Po"; else rm -f "$(DEPDIR)/src_mpd-output_state.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_state.c' object='src_mpd-output_state.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-output_state.o `test -f 'src/output_state.c' || echo '$(srcdir)/'`src/output_state.c
-
- src_mpd-output_state.obj: src/output_state.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_state.obj -MD -MP -MF $(DEPDIR)/src_mpd-output_state.Tpo -c -o src_mpd-output_state.obj `if test -f 'src/output_state.c'; then $(CYGPATH_W) 'src/output_state.c'; else $(CYGPATH_W) '$(srcdir)/src/output_state.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-output_state.Tpo $(DEPDIR)/src_mpd-output_state.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_state.obj -MD -MP -MF "$(DEPDIR)/src_mpd-output_state.Tpo" -c -o src_mpd-output_state.obj `if test -f 'src/output_state.c'; then $(CYGPATH_W) 'src/output_state.c'; else $(CYGPATH_W) '$(srcdir)/src/output_state.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-output_state.Tpo" "$(DEPDIR)/src_mpd-output_state.Po"; else rm -f "$(DEPDIR)/src_mpd-output_state.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_state.c' object='src_mpd-output_state.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-output_state.obj `if test -f 'src/output_state.c'; then $(CYGPATH_W) 'src/output_state.c'; else $(CYGPATH_W) '$(srcdir)/src/output_state.c'; fi`
-
- src_mpd-output_print.o: src/output_print.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_print.o -MD -MP -MF $(DEPDIR)/src_mpd-output_print.Tpo -c -o src_mpd-output_print.o `test -f 'src/output_print.c' || echo '$(srcdir)/'`src/output_print.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-output_print.Tpo $(DEPDIR)/src_mpd-output_print.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_print.o -MD -MP -MF "$(DEPDIR)/src_mpd-output_print.Tpo" -c -o src_mpd-output_print.o `test -f 'src/output_print.c' || echo '$(srcdir)/'`src/output_print.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-output_print.Tpo" "$(DEPDIR)/src_mpd-output_print.Po"; else rm -f "$(DEPDIR)/src_mpd-output_print.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_print.c' object='src_mpd-output_print.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-output_print.o `test -f 'src/output_print.c' || echo '$(srcdir)/'`src/output_print.c
-
- src_mpd-output_print.obj: src/output_print.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_print.obj -MD -MP -MF $(DEPDIR)/src_mpd-output_print.Tpo -c -o src_mpd-output_print.obj `if test -f 'src/output_print.c'; then $(CYGPATH_W) 'src/output_print.c'; else $(CYGPATH_W) '$(srcdir)/src/output_print.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-output_print.Tpo $(DEPDIR)/src_mpd-output_print.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_print.obj -MD -MP -MF "$(DEPDIR)/src_mpd-output_print.Tpo" -c -o src_mpd-output_print.obj `if test -f 'src/output_print.c'; then $(CYGPATH_W) 'src/output_print.c'; else $(CYGPATH_W) '$(srcdir)/src/output_print.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-output_print.Tpo" "$(DEPDIR)/src_mpd-output_print.Po"; else rm -f "$(DEPDIR)/src_mpd-output_print.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_print.c' object='src_mpd-output_print.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-output_print.obj `if test -f 'src/output_print.c'; then $(CYGPATH_W) 'src/output_print.c'; else $(CYGPATH_W) '$(srcdir)/src/output_print.c'; fi`
-
- src_mpd-output_command.o: src/output_command.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_command.o -MD -MP -MF $(DEPDIR)/src_mpd-output_command.Tpo -c -o src_mpd-output_command.o `test -f 'src/output_command.c' || echo '$(srcdir)/'`src/output_command.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-output_command.Tpo $(DEPDIR)/src_mpd-output_command.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_command.o -MD -MP -MF "$(DEPDIR)/src_mpd-output_command.Tpo" -c -o src_mpd-output_command.o `test -f 'src/output_command.c' || echo '$(srcdir)/'`src/output_command.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-output_command.Tpo" "$(DEPDIR)/src_mpd-output_command.Po"; else rm -f "$(DEPDIR)/src_mpd-output_command.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_command.c' object='src_mpd-output_command.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-output_command.o `test -f 'src/output_command.c' || echo '$(srcdir)/'`src/output_command.c
-
- src_mpd-output_command.obj: src/output_command.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_command.obj -MD -MP -MF $(DEPDIR)/src_mpd-output_command.Tpo -c -o src_mpd-output_command.obj `if test -f 'src/output_command.c'; then $(CYGPATH_W) 'src/output_command.c'; else $(CYGPATH_W) '$(srcdir)/src/output_command.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-output_command.Tpo $(DEPDIR)/src_mpd-output_command.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_command.obj -MD -MP -MF "$(DEPDIR)/src_mpd-output_command.Tpo" -c -o src_mpd-output_command.obj `if test -f 'src/output_command.c'; then $(CYGPATH_W) 'src/output_command.c'; else $(CYGPATH_W) '$(srcdir)/src/output_command.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-output_command.Tpo" "$(DEPDIR)/src_mpd-output_command.Po"; else rm -f "$(DEPDIR)/src_mpd-output_command.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_command.c' object='src_mpd-output_command.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-output_command.obj `if test -f 'src/output_command.c'; then $(CYGPATH_W) 'src/output_command.c'; else $(CYGPATH_W) '$(srcdir)/src/output_command.c'; fi`
-
- src_mpd-output_init.o: src/output_init.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_init.o -MD -MP -MF $(DEPDIR)/src_mpd-output_init.Tpo -c -o src_mpd-output_init.o `test -f 'src/output_init.c' || echo '$(srcdir)/'`src/output_init.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-output_init.Tpo $(DEPDIR)/src_mpd-output_init.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_init.o -MD -MP -MF "$(DEPDIR)/src_mpd-output_init.Tpo" -c -o src_mpd-output_init.o `test -f 'src/output_init.c' || echo '$(srcdir)/'`src/output_init.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-output_init.Tpo" "$(DEPDIR)/src_mpd-output_init.Po"; else rm -f "$(DEPDIR)/src_mpd-output_init.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_init.c' object='src_mpd-output_init.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-output_init.o `test -f 'src/output_init.c' || echo '$(srcdir)/'`src/output_init.c
-
- src_mpd-output_init.obj: src/output_init.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_init.obj -MD -MP -MF $(DEPDIR)/src_mpd-output_init.Tpo -c -o src_mpd-output_init.obj `if test -f 'src/output_init.c'; then $(CYGPATH_W) 'src/output_init.c'; else $(CYGPATH_W) '$(srcdir)/src/output_init.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-output_init.Tpo $(DEPDIR)/src_mpd-output_init.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-output_init.obj -MD -MP -MF "$(DEPDIR)/src_mpd-output_init.Tpo" -c -o src_mpd-output_init.obj `if test -f 'src/output_init.c'; then $(CYGPATH_W) 'src/output_init.c'; else $(CYGPATH_W) '$(srcdir)/src/output_init.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-output_init.Tpo" "$(DEPDIR)/src_mpd-output_init.Po"; else rm -f "$(DEPDIR)/src_mpd-output_init.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_init.c' object='src_mpd-output_init.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-output_init.obj `if test -f 'src/output_init.c'; then $(CYGPATH_W) 'src/output_init.c'; else $(CYGPATH_W) '$(srcdir)/src/output_init.c'; fi`
-
- src_mpd-null_plugin.o: src/output/null_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-null_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-null_plugin.Tpo -c -o src_mpd-null_plugin.o `test -f 'src/output/null_plugin.c' || echo '$(srcdir)/'`src/output/null_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-null_plugin.Tpo $(DEPDIR)/src_mpd-null_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-null_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-null_plugin.Tpo" -c -o src_mpd-null_plugin.o `test -f 'src/output/null_plugin.c' || echo '$(srcdir)/'`src/output/null_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-null_plugin.Tpo" "$(DEPDIR)/src_mpd-null_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-null_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/null_plugin.c' object='src_mpd-null_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-null_plugin.o `test -f 'src/output/null_plugin.c' || echo '$(srcdir)/'`src/output/null_plugin.c
-
- src_mpd-null_plugin.obj: src/output/null_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-null_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-null_plugin.Tpo -c -o src_mpd-null_plugin.obj `if test -f 'src/output/null_plugin.c'; then $(CYGPATH_W) 'src/output/null_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/null_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-null_plugin.Tpo $(DEPDIR)/src_mpd-null_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-null_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-null_plugin.Tpo" -c -o src_mpd-null_plugin.obj `if test -f 'src/output/null_plugin.c'; then $(CYGPATH_W) 'src/output/null_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/null_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-null_plugin.Tpo" "$(DEPDIR)/src_mpd-null_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-null_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/null_plugin.c' object='src_mpd-null_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-null_plugin.obj `if test -f 'src/output/null_plugin.c'; then $(CYGPATH_W) 'src/output/null_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/null_plugin.c'; fi`
-
- src_mpd-alsa_plugin.o: src/output/alsa_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-alsa_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-alsa_plugin.Tpo -c -o src_mpd-alsa_plugin.o `test -f 'src/output/alsa_plugin.c' || echo '$(srcdir)/'`src/output/alsa_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-alsa_plugin.Tpo $(DEPDIR)/src_mpd-alsa_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-alsa_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-alsa_plugin.Tpo" -c -o src_mpd-alsa_plugin.o `test -f 'src/output/alsa_plugin.c' || echo '$(srcdir)/'`src/output/alsa_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-alsa_plugin.Tpo" "$(DEPDIR)/src_mpd-alsa_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-alsa_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/alsa_plugin.c' object='src_mpd-alsa_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-alsa_plugin.o `test -f 'src/output/alsa_plugin.c' || echo '$(srcdir)/'`src/output/alsa_plugin.c
-
- src_mpd-alsa_plugin.obj: src/output/alsa_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-alsa_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-alsa_plugin.Tpo -c -o src_mpd-alsa_plugin.obj `if test -f 'src/output/alsa_plugin.c'; then $(CYGPATH_W) 'src/output/alsa_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/alsa_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-alsa_plugin.Tpo $(DEPDIR)/src_mpd-alsa_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-alsa_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-alsa_plugin.Tpo" -c -o src_mpd-alsa_plugin.obj `if test -f 'src/output/alsa_plugin.c'; then $(CYGPATH_W) 'src/output/alsa_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/alsa_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-alsa_plugin.Tpo" "$(DEPDIR)/src_mpd-alsa_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-alsa_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/alsa_plugin.c' object='src_mpd-alsa_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-alsa_plugin.obj `if test -f 'src/output/alsa_plugin.c'; then $(CYGPATH_W) 'src/output/alsa_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/alsa_plugin.c'; fi`
-
- src_mpd-ao_plugin.o: src/output/ao_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-ao_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-ao_plugin.Tpo -c -o src_mpd-ao_plugin.o `test -f 'src/output/ao_plugin.c' || echo '$(srcdir)/'`src/output/ao_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-ao_plugin.Tpo $(DEPDIR)/src_mpd-ao_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-ao_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-ao_plugin.Tpo" -c -o src_mpd-ao_plugin.o `test -f 'src/output/ao_plugin.c' || echo '$(srcdir)/'`src/output/ao_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-ao_plugin.Tpo" "$(DEPDIR)/src_mpd-ao_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-ao_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/ao_plugin.c' object='src_mpd-ao_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-ao_plugin.o `test -f 'src/output/ao_plugin.c' || echo '$(srcdir)/'`src/output/ao_plugin.c
-
- src_mpd-ao_plugin.obj: src/output/ao_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-ao_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-ao_plugin.Tpo -c -o src_mpd-ao_plugin.obj `if test -f 'src/output/ao_plugin.c'; then $(CYGPATH_W) 'src/output/ao_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/ao_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-ao_plugin.Tpo $(DEPDIR)/src_mpd-ao_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-ao_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-ao_plugin.Tpo" -c -o src_mpd-ao_plugin.obj `if test -f 'src/output/ao_plugin.c'; then $(CYGPATH_W) 'src/output/ao_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/ao_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-ao_plugin.Tpo" "$(DEPDIR)/src_mpd-ao_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-ao_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/ao_plugin.c' object='src_mpd-ao_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-ao_plugin.obj `if test -f 'src/output/ao_plugin.c'; then $(CYGPATH_W) 'src/output/ao_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/ao_plugin.c'; fi`
-
- src_mpd-fifo_plugin.o: src/output/fifo_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-fifo_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-fifo_plugin.Tpo -c -o src_mpd-fifo_plugin.o `test -f 'src/output/fifo_plugin.c' || echo '$(srcdir)/'`src/output/fifo_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-fifo_plugin.Tpo $(DEPDIR)/src_mpd-fifo_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-fifo_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-fifo_plugin.Tpo" -c -o src_mpd-fifo_plugin.o `test -f 'src/output/fifo_plugin.c' || echo '$(srcdir)/'`src/output/fifo_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-fifo_plugin.Tpo" "$(DEPDIR)/src_mpd-fifo_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-fifo_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/fifo_plugin.c' object='src_mpd-fifo_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-fifo_plugin.o `test -f 'src/output/fifo_plugin.c' || echo '$(srcdir)/'`src/output/fifo_plugin.c
-
- src_mpd-fifo_plugin.obj: src/output/fifo_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-fifo_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-fifo_plugin.Tpo -c -o src_mpd-fifo_plugin.obj `if test -f 'src/output/fifo_plugin.c'; then $(CYGPATH_W) 'src/output/fifo_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/fifo_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-fifo_plugin.Tpo $(DEPDIR)/src_mpd-fifo_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-fifo_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-fifo_plugin.Tpo" -c -o src_mpd-fifo_plugin.obj `if test -f 'src/output/fifo_plugin.c'; then $(CYGPATH_W) 'src/output/fifo_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/fifo_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-fifo_plugin.Tpo" "$(DEPDIR)/src_mpd-fifo_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-fifo_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/fifo_plugin.c' object='src_mpd-fifo_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-fifo_plugin.obj `if test -f 'src/output/fifo_plugin.c'; then $(CYGPATH_W) 'src/output/fifo_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/fifo_plugin.c'; fi`
-
- src_mpd-pipe_output_plugin.o: src/output/pipe_output_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pipe_output_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-pipe_output_plugin.Tpo -c -o src_mpd-pipe_output_plugin.o `test -f 'src/output/pipe_output_plugin.c' || echo '$(srcdir)/'`src/output/pipe_output_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pipe_output_plugin.Tpo $(DEPDIR)/src_mpd-pipe_output_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pipe_output_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-pipe_output_plugin.Tpo" -c -o src_mpd-pipe_output_plugin.o `test -f 'src/output/pipe_output_plugin.c' || echo '$(srcdir)/'`src/output/pipe_output_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pipe_output_plugin.Tpo" "$(DEPDIR)/src_mpd-pipe_output_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-pipe_output_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/pipe_output_plugin.c' object='src_mpd-pipe_output_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pipe_output_plugin.o `test -f 'src/output/pipe_output_plugin.c' || echo '$(srcdir)/'`src/output/pipe_output_plugin.c
-
- src_mpd-pipe_output_plugin.obj: src/output/pipe_output_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pipe_output_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-pipe_output_plugin.Tpo -c -o src_mpd-pipe_output_plugin.obj `if test -f 'src/output/pipe_output_plugin.c'; then $(CYGPATH_W) 'src/output/pipe_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/pipe_output_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pipe_output_plugin.Tpo $(DEPDIR)/src_mpd-pipe_output_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pipe_output_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-pipe_output_plugin.Tpo" -c -o src_mpd-pipe_output_plugin.obj `if test -f 'src/output/pipe_output_plugin.c'; then $(CYGPATH_W) 'src/output/pipe_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/pipe_output_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pipe_output_plugin.Tpo" "$(DEPDIR)/src_mpd-pipe_output_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-pipe_output_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/pipe_output_plugin.c' object='src_mpd-pipe_output_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pipe_output_plugin.obj `if test -f 'src/output/pipe_output_plugin.c'; then $(CYGPATH_W) 'src/output/pipe_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/pipe_output_plugin.c'; fi`
-
- src_mpd-jack_plugin.o: src/output/jack_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-jack_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-jack_plugin.Tpo -c -o src_mpd-jack_plugin.o `test -f 'src/output/jack_plugin.c' || echo '$(srcdir)/'`src/output/jack_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-jack_plugin.Tpo $(DEPDIR)/src_mpd-jack_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-jack_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-jack_plugin.Tpo" -c -o src_mpd-jack_plugin.o `test -f 'src/output/jack_plugin.c' || echo '$(srcdir)/'`src/output/jack_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-jack_plugin.Tpo" "$(DEPDIR)/src_mpd-jack_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-jack_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/jack_plugin.c' object='src_mpd-jack_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-jack_plugin.o `test -f 'src/output/jack_plugin.c' || echo '$(srcdir)/'`src/output/jack_plugin.c
-
- src_mpd-jack_plugin.obj: src/output/jack_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-jack_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-jack_plugin.Tpo -c -o src_mpd-jack_plugin.obj `if test -f 'src/output/jack_plugin.c'; then $(CYGPATH_W) 'src/output/jack_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/jack_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-jack_plugin.Tpo $(DEPDIR)/src_mpd-jack_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-jack_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-jack_plugin.Tpo" -c -o src_mpd-jack_plugin.obj `if test -f 'src/output/jack_plugin.c'; then $(CYGPATH_W) 'src/output/jack_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/jack_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-jack_plugin.Tpo" "$(DEPDIR)/src_mpd-jack_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-jack_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/jack_plugin.c' object='src_mpd-jack_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-jack_plugin.obj `if test -f 'src/output/jack_plugin.c'; then $(CYGPATH_W) 'src/output/jack_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/jack_plugin.c'; fi`
-
- src_mpd-mvp_plugin.o: src/output/mvp_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mvp_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-mvp_plugin.Tpo -c -o src_mpd-mvp_plugin.o `test -f 'src/output/mvp_plugin.c' || echo '$(srcdir)/'`src/output/mvp_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mvp_plugin.Tpo $(DEPDIR)/src_mpd-mvp_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mvp_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-mvp_plugin.Tpo" -c -o src_mpd-mvp_plugin.o `test -f 'src/output/mvp_plugin.c' || echo '$(srcdir)/'`src/output/mvp_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mvp_plugin.Tpo" "$(DEPDIR)/src_mpd-mvp_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-mvp_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/mvp_plugin.c' object='src_mpd-mvp_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mvp_plugin.o `test -f 'src/output/mvp_plugin.c' || echo '$(srcdir)/'`src/output/mvp_plugin.c
-
- src_mpd-mvp_plugin.obj: src/output/mvp_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mvp_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-mvp_plugin.Tpo -c -o src_mpd-mvp_plugin.obj `if test -f 'src/output/mvp_plugin.c'; then $(CYGPATH_W) 'src/output/mvp_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/mvp_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mvp_plugin.Tpo $(DEPDIR)/src_mpd-mvp_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mvp_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-mvp_plugin.Tpo" -c -o src_mpd-mvp_plugin.obj `if test -f 'src/output/mvp_plugin.c'; then $(CYGPATH_W) 'src/output/mvp_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/mvp_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mvp_plugin.Tpo" "$(DEPDIR)/src_mpd-mvp_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-mvp_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/mvp_plugin.c' object='src_mpd-mvp_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mvp_plugin.obj `if test -f 'src/output/mvp_plugin.c'; then $(CYGPATH_W) 'src/output/mvp_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/mvp_plugin.c'; fi`
-
- src_mpd-oss_plugin.o: src/output/oss_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-oss_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-oss_plugin.Tpo -c -o src_mpd-oss_plugin.o `test -f 'src/output/oss_plugin.c' || echo '$(srcdir)/'`src/output/oss_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-oss_plugin.Tpo $(DEPDIR)/src_mpd-oss_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-oss_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-oss_plugin.Tpo" -c -o src_mpd-oss_plugin.o `test -f 'src/output/oss_plugin.c' || echo '$(srcdir)/'`src/output/oss_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-oss_plugin.Tpo" "$(DEPDIR)/src_mpd-oss_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-oss_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/oss_plugin.c' object='src_mpd-oss_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-oss_plugin.o `test -f 'src/output/oss_plugin.c' || echo '$(srcdir)/'`src/output/oss_plugin.c
-
- src_mpd-oss_plugin.obj: src/output/oss_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-oss_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-oss_plugin.Tpo -c -o src_mpd-oss_plugin.obj `if test -f 'src/output/oss_plugin.c'; then $(CYGPATH_W) 'src/output/oss_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/oss_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-oss_plugin.Tpo $(DEPDIR)/src_mpd-oss_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-oss_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-oss_plugin.Tpo" -c -o src_mpd-oss_plugin.obj `if test -f 'src/output/oss_plugin.c'; then $(CYGPATH_W) 'src/output/oss_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/oss_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-oss_plugin.Tpo" "$(DEPDIR)/src_mpd-oss_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-oss_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/oss_plugin.c' object='src_mpd-oss_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-oss_plugin.obj `if test -f 'src/output/oss_plugin.c'; then $(CYGPATH_W) 'src/output/oss_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/oss_plugin.c'; fi`
-
- src_mpd-osx_plugin.o: src/output/osx_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-osx_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-osx_plugin.Tpo -c -o src_mpd-osx_plugin.o `test -f 'src/output/osx_plugin.c' || echo '$(srcdir)/'`src/output/osx_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-osx_plugin.Tpo $(DEPDIR)/src_mpd-osx_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-osx_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-osx_plugin.Tpo" -c -o src_mpd-osx_plugin.o `test -f 'src/output/osx_plugin.c' || echo '$(srcdir)/'`src/output/osx_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-osx_plugin.Tpo" "$(DEPDIR)/src_mpd-osx_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-osx_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/osx_plugin.c' object='src_mpd-osx_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-osx_plugin.o `test -f 'src/output/osx_plugin.c' || echo '$(srcdir)/'`src/output/osx_plugin.c
-
- src_mpd-osx_plugin.obj: src/output/osx_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-osx_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-osx_plugin.Tpo -c -o src_mpd-osx_plugin.obj `if test -f 'src/output/osx_plugin.c'; then $(CYGPATH_W) 'src/output/osx_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/osx_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-osx_plugin.Tpo $(DEPDIR)/src_mpd-osx_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-osx_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-osx_plugin.Tpo" -c -o src_mpd-osx_plugin.obj `if test -f 'src/output/osx_plugin.c'; then $(CYGPATH_W) 'src/output/osx_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/osx_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-osx_plugin.Tpo" "$(DEPDIR)/src_mpd-osx_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-osx_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/osx_plugin.c' object='src_mpd-osx_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-osx_plugin.obj `if test -f 'src/output/osx_plugin.c'; then $(CYGPATH_W) 'src/output/osx_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/osx_plugin.c'; fi`
-
- src_mpd-pulse_plugin.o: src/output/pulse_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pulse_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-pulse_plugin.Tpo -c -o src_mpd-pulse_plugin.o `test -f 'src/output/pulse_plugin.c' || echo '$(srcdir)/'`src/output/pulse_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pulse_plugin.Tpo $(DEPDIR)/src_mpd-pulse_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pulse_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-pulse_plugin.Tpo" -c -o src_mpd-pulse_plugin.o `test -f 'src/output/pulse_plugin.c' || echo '$(srcdir)/'`src/output/pulse_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pulse_plugin.Tpo" "$(DEPDIR)/src_mpd-pulse_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-pulse_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/pulse_plugin.c' object='src_mpd-pulse_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pulse_plugin.o `test -f 'src/output/pulse_plugin.c' || echo '$(srcdir)/'`src/output/pulse_plugin.c
-
- src_mpd-pulse_plugin.obj: src/output/pulse_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pulse_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-pulse_plugin.Tpo -c -o src_mpd-pulse_plugin.obj `if test -f 'src/output/pulse_plugin.c'; then $(CYGPATH_W) 'src/output/pulse_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/pulse_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pulse_plugin.Tpo $(DEPDIR)/src_mpd-pulse_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pulse_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-pulse_plugin.Tpo" -c -o src_mpd-pulse_plugin.obj `if test -f 'src/output/pulse_plugin.c'; then $(CYGPATH_W) 'src/output/pulse_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/pulse_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pulse_plugin.Tpo" "$(DEPDIR)/src_mpd-pulse_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-pulse_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/pulse_plugin.c' object='src_mpd-pulse_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pulse_plugin.obj `if test -f 'src/output/pulse_plugin.c'; then $(CYGPATH_W) 'src/output/pulse_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/pulse_plugin.c'; fi`
-
- src_mpd-shout_plugin.o: src/output/shout_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-shout_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-shout_plugin.Tpo -c -o src_mpd-shout_plugin.o `test -f 'src/output/shout_plugin.c' || echo '$(srcdir)/'`src/output/shout_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-shout_plugin.Tpo $(DEPDIR)/src_mpd-shout_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-shout_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-shout_plugin.Tpo" -c -o src_mpd-shout_plugin.o `test -f 'src/output/shout_plugin.c' || echo '$(srcdir)/'`src/output/shout_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-shout_plugin.Tpo" "$(DEPDIR)/src_mpd-shout_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-shout_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/shout_plugin.c' object='src_mpd-shout_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-shout_plugin.o `test -f 'src/output/shout_plugin.c' || echo '$(srcdir)/'`src/output/shout_plugin.c
-
- src_mpd-shout_plugin.obj: src/output/shout_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-shout_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-shout_plugin.Tpo -c -o src_mpd-shout_plugin.obj `if test -f 'src/output/shout_plugin.c'; then $(CYGPATH_W) 'src/output/shout_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/shout_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-shout_plugin.Tpo $(DEPDIR)/src_mpd-shout_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-shout_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-shout_plugin.Tpo" -c -o src_mpd-shout_plugin.obj `if test -f 'src/output/shout_plugin.c'; then $(CYGPATH_W) 'src/output/shout_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/shout_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-shout_plugin.Tpo" "$(DEPDIR)/src_mpd-shout_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-shout_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/shout_plugin.c' object='src_mpd-shout_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-shout_plugin.obj `if test -f 'src/output/shout_plugin.c'; then $(CYGPATH_W) 'src/output/shout_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/shout_plugin.c'; fi`
-
- src_mpd-icy_server.o: src/icy_server.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-icy_server.o -MD -MP -MF $(DEPDIR)/src_mpd-icy_server.Tpo -c -o src_mpd-icy_server.o `test -f 'src/icy_server.c' || echo '$(srcdir)/'`src/icy_server.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-icy_server.Tpo $(DEPDIR)/src_mpd-icy_server.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-icy_server.o -MD -MP -MF "$(DEPDIR)/src_mpd-icy_server.Tpo" -c -o src_mpd-icy_server.o `test -f 'src/icy_server.c' || echo '$(srcdir)/'`src/icy_server.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-icy_server.Tpo" "$(DEPDIR)/src_mpd-icy_server.Po"; else rm -f "$(DEPDIR)/src_mpd-icy_server.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/icy_server.c' object='src_mpd-icy_server.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-icy_server.o `test -f 'src/icy_server.c' || echo '$(srcdir)/'`src/icy_server.c
-
- src_mpd-icy_server.obj: src/icy_server.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-icy_server.obj -MD -MP -MF $(DEPDIR)/src_mpd-icy_server.Tpo -c -o src_mpd-icy_server.obj `if test -f 'src/icy_server.c'; then $(CYGPATH_W) 'src/icy_server.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_server.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-icy_server.Tpo $(DEPDIR)/src_mpd-icy_server.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-icy_server.obj -MD -MP -MF "$(DEPDIR)/src_mpd-icy_server.Tpo" -c -o src_mpd-icy_server.obj `if test -f 'src/icy_server.c'; then $(CYGPATH_W) 'src/icy_server.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_server.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-icy_server.Tpo" "$(DEPDIR)/src_mpd-icy_server.Po"; else rm -f "$(DEPDIR)/src_mpd-icy_server.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/icy_server.c' object='src_mpd-icy_server.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-icy_server.obj `if test -f 'src/icy_server.c'; then $(CYGPATH_W) 'src/icy_server.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_server.c'; fi`
-
- src_mpd-httpd_client.o: src/output/httpd_client.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-httpd_client.o -MD -MP -MF $(DEPDIR)/src_mpd-httpd_client.Tpo -c -o src_mpd-httpd_client.o `test -f 'src/output/httpd_client.c' || echo '$(srcdir)/'`src/output/httpd_client.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-httpd_client.Tpo $(DEPDIR)/src_mpd-httpd_client.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-httpd_client.o -MD -MP -MF "$(DEPDIR)/src_mpd-httpd_client.Tpo" -c -o src_mpd-httpd_client.o `test -f 'src/output/httpd_client.c' || echo '$(srcdir)/'`src/output/httpd_client.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-httpd_client.Tpo" "$(DEPDIR)/src_mpd-httpd_client.Po"; else rm -f "$(DEPDIR)/src_mpd-httpd_client.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/httpd_client.c' object='src_mpd-httpd_client.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-httpd_client.o `test -f 'src/output/httpd_client.c' || echo '$(srcdir)/'`src/output/httpd_client.c
-
- src_mpd-httpd_client.obj: src/output/httpd_client.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-httpd_client.obj -MD -MP -MF $(DEPDIR)/src_mpd-httpd_client.Tpo -c -o src_mpd-httpd_client.obj `if test -f 'src/output/httpd_client.c'; then $(CYGPATH_W) 'src/output/httpd_client.c'; else $(CYGPATH_W) '$(srcdir)/src/output/httpd_client.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-httpd_client.Tpo $(DEPDIR)/src_mpd-httpd_client.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-httpd_client.obj -MD -MP -MF "$(DEPDIR)/src_mpd-httpd_client.Tpo" -c -o src_mpd-httpd_client.obj `if test -f 'src/output/httpd_client.c'; then $(CYGPATH_W) 'src/output/httpd_client.c'; else $(CYGPATH_W) '$(srcdir)/src/output/httpd_client.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-httpd_client.Tpo" "$(DEPDIR)/src_mpd-httpd_client.Po"; else rm -f "$(DEPDIR)/src_mpd-httpd_client.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/httpd_client.c' object='src_mpd-httpd_client.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-httpd_client.obj `if test -f 'src/output/httpd_client.c'; then $(CYGPATH_W) 'src/output/httpd_client.c'; else $(CYGPATH_W) '$(srcdir)/src/output/httpd_client.c'; fi`
-
- src_mpd-httpd_output_plugin.o: src/output/httpd_output_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-httpd_output_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-httpd_output_plugin.Tpo -c -o src_mpd-httpd_output_plugin.o `test -f 'src/output/httpd_output_plugin.c' || echo '$(srcdir)/'`src/output/httpd_output_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-httpd_output_plugin.Tpo $(DEPDIR)/src_mpd-httpd_output_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-httpd_output_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-httpd_output_plugin.Tpo" -c -o src_mpd-httpd_output_plugin.o `test -f 'src/output/httpd_output_plugin.c' || echo '$(srcdir)/'`src/output/httpd_output_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-httpd_output_plugin.Tpo" "$(DEPDIR)/src_mpd-httpd_output_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-httpd_output_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/httpd_output_plugin.c' object='src_mpd-httpd_output_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-httpd_output_plugin.o `test -f 'src/output/httpd_output_plugin.c' || echo '$(srcdir)/'`src/output/httpd_output_plugin.c
-
- src_mpd-httpd_output_plugin.obj: src/output/httpd_output_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-httpd_output_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-httpd_output_plugin.Tpo -c -o src_mpd-httpd_output_plugin.obj `if test -f 'src/output/httpd_output_plugin.c'; then $(CYGPATH_W) 'src/output/httpd_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/httpd_output_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-httpd_output_plugin.Tpo $(DEPDIR)/src_mpd-httpd_output_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-httpd_output_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-httpd_output_plugin.Tpo" -c -o src_mpd-httpd_output_plugin.obj `if test -f 'src/output/httpd_output_plugin.c'; then $(CYGPATH_W) 'src/output/httpd_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/httpd_output_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-httpd_output_plugin.Tpo" "$(DEPDIR)/src_mpd-httpd_output_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-httpd_output_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/httpd_output_plugin.c' object='src_mpd-httpd_output_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-httpd_output_plugin.obj `if test -f 'src/output/httpd_output_plugin.c'; then $(CYGPATH_W) 'src/output/httpd_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/httpd_output_plugin.c'; fi`
-
- src_mpd-solaris_output_plugin.o: src/output/solaris_output_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-solaris_output_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-solaris_output_plugin.Tpo -c -o src_mpd-solaris_output_plugin.o `test -f 'src/output/solaris_output_plugin.c' || echo '$(srcdir)/'`src/output/solaris_output_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-solaris_output_plugin.Tpo $(DEPDIR)/src_mpd-solaris_output_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-solaris_output_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-solaris_output_plugin.Tpo" -c -o src_mpd-solaris_output_plugin.o `test -f 'src/output/solaris_output_plugin.c' || echo '$(srcdir)/'`src/output/solaris_output_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-solaris_output_plugin.Tpo" "$(DEPDIR)/src_mpd-solaris_output_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-solaris_output_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/solaris_output_plugin.c' object='src_mpd-solaris_output_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-solaris_output_plugin.o `test -f 'src/output/solaris_output_plugin.c' || echo '$(srcdir)/'`src/output/solaris_output_plugin.c
-
- src_mpd-solaris_output_plugin.obj: src/output/solaris_output_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-solaris_output_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-solaris_output_plugin.Tpo -c -o src_mpd-solaris_output_plugin.obj `if test -f 'src/output/solaris_output_plugin.c'; then $(CYGPATH_W) 'src/output/solaris_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/solaris_output_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-solaris_output_plugin.Tpo $(DEPDIR)/src_mpd-solaris_output_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-solaris_output_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-solaris_output_plugin.Tpo" -c -o src_mpd-solaris_output_plugin.obj `if test -f 'src/output/solaris_output_plugin.c'; then $(CYGPATH_W) 'src/output/solaris_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/solaris_output_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-solaris_output_plugin.Tpo" "$(DEPDIR)/src_mpd-solaris_output_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-solaris_output_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/solaris_output_plugin.c' object='src_mpd-solaris_output_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-solaris_output_plugin.obj `if test -f 'src/output/solaris_output_plugin.c'; then $(CYGPATH_W) 'src/output/solaris_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/solaris_output_plugin.c'; fi`
-
- src_mpd-mixer_control.o: src/mixer_control.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mixer_control.o -MD -MP -MF $(DEPDIR)/src_mpd-mixer_control.Tpo -c -o src_mpd-mixer_control.o `test -f 'src/mixer_control.c' || echo '$(srcdir)/'`src/mixer_control.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mixer_control.Tpo $(DEPDIR)/src_mpd-mixer_control.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mixer_control.o -MD -MP -MF "$(DEPDIR)/src_mpd-mixer_control.Tpo" -c -o src_mpd-mixer_control.o `test -f 'src/mixer_control.c' || echo '$(srcdir)/'`src/mixer_control.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mixer_control.Tpo" "$(DEPDIR)/src_mpd-mixer_control.Po"; else rm -f "$(DEPDIR)/src_mpd-mixer_control.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer_control.c' object='src_mpd-mixer_control.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mixer_control.o `test -f 'src/mixer_control.c' || echo '$(srcdir)/'`src/mixer_control.c
-
- src_mpd-mixer_control.obj: src/mixer_control.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mixer_control.obj -MD -MP -MF $(DEPDIR)/src_mpd-mixer_control.Tpo -c -o src_mpd-mixer_control.obj `if test -f 'src/mixer_control.c'; then $(CYGPATH_W) 'src/mixer_control.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_control.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mixer_control.Tpo $(DEPDIR)/src_mpd-mixer_control.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mixer_control.obj -MD -MP -MF "$(DEPDIR)/src_mpd-mixer_control.Tpo" -c -o src_mpd-mixer_control.obj `if test -f 'src/mixer_control.c'; then $(CYGPATH_W) 'src/mixer_control.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_control.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mixer_control.Tpo" "$(DEPDIR)/src_mpd-mixer_control.Po"; else rm -f "$(DEPDIR)/src_mpd-mixer_control.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer_control.c' object='src_mpd-mixer_control.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mixer_control.obj `if test -f 'src/mixer_control.c'; then $(CYGPATH_W) 'src/mixer_control.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_control.c'; fi`
-
- src_mpd-mixer_all.o: src/mixer_all.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mixer_all.o -MD -MP -MF $(DEPDIR)/src_mpd-mixer_all.Tpo -c -o src_mpd-mixer_all.o `test -f 'src/mixer_all.c' || echo '$(srcdir)/'`src/mixer_all.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mixer_all.Tpo $(DEPDIR)/src_mpd-mixer_all.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mixer_all.o -MD -MP -MF "$(DEPDIR)/src_mpd-mixer_all.Tpo" -c -o src_mpd-mixer_all.o `test -f 'src/mixer_all.c' || echo '$(srcdir)/'`src/mixer_all.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mixer_all.Tpo" "$(DEPDIR)/src_mpd-mixer_all.Po"; else rm -f "$(DEPDIR)/src_mpd-mixer_all.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer_all.c' object='src_mpd-mixer_all.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mixer_all.o `test -f 'src/mixer_all.c' || echo '$(srcdir)/'`src/mixer_all.c
-
- src_mpd-mixer_all.obj: src/mixer_all.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mixer_all.obj -MD -MP -MF $(DEPDIR)/src_mpd-mixer_all.Tpo -c -o src_mpd-mixer_all.obj `if test -f 'src/mixer_all.c'; then $(CYGPATH_W) 'src/mixer_all.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_all.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mixer_all.Tpo $(DEPDIR)/src_mpd-mixer_all.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mixer_all.obj -MD -MP -MF "$(DEPDIR)/src_mpd-mixer_all.Tpo" -c -o src_mpd-mixer_all.obj `if test -f 'src/mixer_all.c'; then $(CYGPATH_W) 'src/mixer_all.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_all.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mixer_all.Tpo" "$(DEPDIR)/src_mpd-mixer_all.Po"; else rm -f "$(DEPDIR)/src_mpd-mixer_all.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer_all.c' object='src_mpd-mixer_all.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mixer_all.obj `if test -f 'src/mixer_all.c'; then $(CYGPATH_W) 'src/mixer_all.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_all.c'; fi`
-
- src_mpd-mixer_api.o: src/mixer_api.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mixer_api.o -MD -MP -MF $(DEPDIR)/src_mpd-mixer_api.Tpo -c -o src_mpd-mixer_api.o `test -f 'src/mixer_api.c' || echo '$(srcdir)/'`src/mixer_api.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mixer_api.Tpo $(DEPDIR)/src_mpd-mixer_api.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mixer_api.o -MD -MP -MF "$(DEPDIR)/src_mpd-mixer_api.Tpo" -c -o src_mpd-mixer_api.o `test -f 'src/mixer_api.c' || echo '$(srcdir)/'`src/mixer_api.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mixer_api.Tpo" "$(DEPDIR)/src_mpd-mixer_api.Po"; else rm -f "$(DEPDIR)/src_mpd-mixer_api.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer_api.c' object='src_mpd-mixer_api.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mixer_api.o `test -f 'src/mixer_api.c' || echo '$(srcdir)/'`src/mixer_api.c
-
- src_mpd-mixer_api.obj: src/mixer_api.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mixer_api.obj -MD -MP -MF $(DEPDIR)/src_mpd-mixer_api.Tpo -c -o src_mpd-mixer_api.obj `if test -f 'src/mixer_api.c'; then $(CYGPATH_W) 'src/mixer_api.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_api.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mixer_api.Tpo $(DEPDIR)/src_mpd-mixer_api.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mixer_api.obj -MD -MP -MF "$(DEPDIR)/src_mpd-mixer_api.Tpo" -c -o src_mpd-mixer_api.obj `if test -f 'src/mixer_api.c'; then $(CYGPATH_W) 'src/mixer_api.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_api.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mixer_api.Tpo" "$(DEPDIR)/src_mpd-mixer_api.Po"; else rm -f "$(DEPDIR)/src_mpd-mixer_api.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer_api.c' object='src_mpd-mixer_api.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mixer_api.obj `if test -f 'src/mixer_api.c'; then $(CYGPATH_W) 'src/mixer_api.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_api.c'; fi`
-
- src_mpd-alsa_mixer.o: src/mixer/alsa_mixer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-alsa_mixer.o -MD -MP -MF $(DEPDIR)/src_mpd-alsa_mixer.Tpo -c -o src_mpd-alsa_mixer.o `test -f 'src/mixer/alsa_mixer.c' || echo '$(srcdir)/'`src/mixer/alsa_mixer.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-alsa_mixer.Tpo $(DEPDIR)/src_mpd-alsa_mixer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-alsa_mixer.o -MD -MP -MF "$(DEPDIR)/src_mpd-alsa_mixer.Tpo" -c -o src_mpd-alsa_mixer.o `test -f 'src/mixer/alsa_mixer.c' || echo '$(srcdir)/'`src/mixer/alsa_mixer.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-alsa_mixer.Tpo" "$(DEPDIR)/src_mpd-alsa_mixer.Po"; else rm -f "$(DEPDIR)/src_mpd-alsa_mixer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/alsa_mixer.c' object='src_mpd-alsa_mixer.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-alsa_mixer.o `test -f 'src/mixer/alsa_mixer.c' || echo '$(srcdir)/'`src/mixer/alsa_mixer.c
-
- src_mpd-alsa_mixer.obj: src/mixer/alsa_mixer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-alsa_mixer.obj -MD -MP -MF $(DEPDIR)/src_mpd-alsa_mixer.Tpo -c -o src_mpd-alsa_mixer.obj `if test -f 'src/mixer/alsa_mixer.c'; then $(CYGPATH_W) 'src/mixer/alsa_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/alsa_mixer.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-alsa_mixer.Tpo $(DEPDIR)/src_mpd-alsa_mixer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-alsa_mixer.obj -MD -MP -MF "$(DEPDIR)/src_mpd-alsa_mixer.Tpo" -c -o src_mpd-alsa_mixer.obj `if test -f 'src/mixer/alsa_mixer.c'; then $(CYGPATH_W) 'src/mixer/alsa_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/alsa_mixer.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-alsa_mixer.Tpo" "$(DEPDIR)/src_mpd-alsa_mixer.Po"; else rm -f "$(DEPDIR)/src_mpd-alsa_mixer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/alsa_mixer.c' object='src_mpd-alsa_mixer.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-alsa_mixer.obj `if test -f 'src/mixer/alsa_mixer.c'; then $(CYGPATH_W) 'src/mixer/alsa_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/alsa_mixer.c'; fi`
-
- src_mpd-oss_mixer.o: src/mixer/oss_mixer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-oss_mixer.o -MD -MP -MF $(DEPDIR)/src_mpd-oss_mixer.Tpo -c -o src_mpd-oss_mixer.o `test -f 'src/mixer/oss_mixer.c' || echo '$(srcdir)/'`src/mixer/oss_mixer.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-oss_mixer.Tpo $(DEPDIR)/src_mpd-oss_mixer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-oss_mixer.o -MD -MP -MF "$(DEPDIR)/src_mpd-oss_mixer.Tpo" -c -o src_mpd-oss_mixer.o `test -f 'src/mixer/oss_mixer.c' || echo '$(srcdir)/'`src/mixer/oss_mixer.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-oss_mixer.Tpo" "$(DEPDIR)/src_mpd-oss_mixer.Po"; else rm -f "$(DEPDIR)/src_mpd-oss_mixer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/oss_mixer.c' object='src_mpd-oss_mixer.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-oss_mixer.o `test -f 'src/mixer/oss_mixer.c' || echo '$(srcdir)/'`src/mixer/oss_mixer.c
-
- src_mpd-oss_mixer.obj: src/mixer/oss_mixer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-oss_mixer.obj -MD -MP -MF $(DEPDIR)/src_mpd-oss_mixer.Tpo -c -o src_mpd-oss_mixer.obj `if test -f 'src/mixer/oss_mixer.c'; then $(CYGPATH_W) 'src/mixer/oss_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/oss_mixer.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-oss_mixer.Tpo $(DEPDIR)/src_mpd-oss_mixer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-oss_mixer.obj -MD -MP -MF "$(DEPDIR)/src_mpd-oss_mixer.Tpo" -c -o src_mpd-oss_mixer.obj `if test -f 'src/mixer/oss_mixer.c'; then $(CYGPATH_W) 'src/mixer/oss_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/oss_mixer.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-oss_mixer.Tpo" "$(DEPDIR)/src_mpd-oss_mixer.Po"; else rm -f "$(DEPDIR)/src_mpd-oss_mixer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/oss_mixer.c' object='src_mpd-oss_mixer.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-oss_mixer.obj `if test -f 'src/mixer/oss_mixer.c'; then $(CYGPATH_W) 'src/mixer/oss_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/oss_mixer.c'; fi`
-
- src_mpd-pulse_mixer.o: src/mixer/pulse_mixer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pulse_mixer.o -MD -MP -MF $(DEPDIR)/src_mpd-pulse_mixer.Tpo -c -o src_mpd-pulse_mixer.o `test -f 'src/mixer/pulse_mixer.c' || echo '$(srcdir)/'`src/mixer/pulse_mixer.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pulse_mixer.Tpo $(DEPDIR)/src_mpd-pulse_mixer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pulse_mixer.o -MD -MP -MF "$(DEPDIR)/src_mpd-pulse_mixer.Tpo" -c -o src_mpd-pulse_mixer.o `test -f 'src/mixer/pulse_mixer.c' || echo '$(srcdir)/'`src/mixer/pulse_mixer.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pulse_mixer.Tpo" "$(DEPDIR)/src_mpd-pulse_mixer.Po"; else rm -f "$(DEPDIR)/src_mpd-pulse_mixer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/pulse_mixer.c' object='src_mpd-pulse_mixer.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pulse_mixer.o `test -f 'src/mixer/pulse_mixer.c' || echo '$(srcdir)/'`src/mixer/pulse_mixer.c
-
- src_mpd-pulse_mixer.obj: src/mixer/pulse_mixer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pulse_mixer.obj -MD -MP -MF $(DEPDIR)/src_mpd-pulse_mixer.Tpo -c -o src_mpd-pulse_mixer.obj `if test -f 'src/mixer/pulse_mixer.c'; then $(CYGPATH_W) 'src/mixer/pulse_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/pulse_mixer.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pulse_mixer.Tpo $(DEPDIR)/src_mpd-pulse_mixer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pulse_mixer.obj -MD -MP -MF "$(DEPDIR)/src_mpd-pulse_mixer.Tpo" -c -o src_mpd-pulse_mixer.obj `if test -f 'src/mixer/pulse_mixer.c'; then $(CYGPATH_W) 'src/mixer/pulse_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/pulse_mixer.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pulse_mixer.Tpo" "$(DEPDIR)/src_mpd-pulse_mixer.Po"; else rm -f "$(DEPDIR)/src_mpd-pulse_mixer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/pulse_mixer.c' object='src_mpd-pulse_mixer.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pulse_mixer.obj `if test -f 'src/mixer/pulse_mixer.c'; then $(CYGPATH_W) 'src/mixer/pulse_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/pulse_mixer.c'; fi`
-
- src_mpd-notify.o: src/notify.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-notify.o -MD -MP -MF $(DEPDIR)/src_mpd-notify.Tpo -c -o src_mpd-notify.o `test -f 'src/notify.c' || echo '$(srcdir)/'`src/notify.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-notify.Tpo $(DEPDIR)/src_mpd-notify.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-notify.o -MD -MP -MF "$(DEPDIR)/src_mpd-notify.Tpo" -c -o src_mpd-notify.o `test -f 'src/notify.c' || echo '$(srcdir)/'`src/notify.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-notify.Tpo" "$(DEPDIR)/src_mpd-notify.Po"; else rm -f "$(DEPDIR)/src_mpd-notify.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/notify.c' object='src_mpd-notify.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-notify.o `test -f 'src/notify.c' || echo '$(srcdir)/'`src/notify.c
-
- src_mpd-notify.obj: src/notify.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-notify.obj -MD -MP -MF $(DEPDIR)/src_mpd-notify.Tpo -c -o src_mpd-notify.obj `if test -f 'src/notify.c'; then $(CYGPATH_W) 'src/notify.c'; else $(CYGPATH_W) '$(srcdir)/src/notify.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-notify.Tpo $(DEPDIR)/src_mpd-notify.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-notify.obj -MD -MP -MF "$(DEPDIR)/src_mpd-notify.Tpo" -c -o src_mpd-notify.obj `if test -f 'src/notify.c'; then $(CYGPATH_W) 'src/notify.c'; else $(CYGPATH_W) '$(srcdir)/src/notify.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-notify.Tpo" "$(DEPDIR)/src_mpd-notify.Po"; else rm -f "$(DEPDIR)/src_mpd-notify.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/notify.c' object='src_mpd-notify.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-notify.obj `if test -f 'src/notify.c'; then $(CYGPATH_W) 'src/notify.c'; else $(CYGPATH_W) '$(srcdir)/src/notify.c'; fi`
-
- src_mpd-audio.o: src/audio.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-audio.o -MD -MP -MF $(DEPDIR)/src_mpd-audio.Tpo -c -o src_mpd-audio.o `test -f 'src/audio.c' || echo '$(srcdir)/'`src/audio.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-audio.Tpo $(DEPDIR)/src_mpd-audio.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-audio.o -MD -MP -MF "$(DEPDIR)/src_mpd-audio.Tpo" -c -o src_mpd-audio.o `test -f 'src/audio.c' || echo '$(srcdir)/'`src/audio.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-audio.Tpo" "$(DEPDIR)/src_mpd-audio.Po"; else rm -f "$(DEPDIR)/src_mpd-audio.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/audio.c' object='src_mpd-audio.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-audio.o `test -f 'src/audio.c' || echo '$(srcdir)/'`src/audio.c
-
- src_mpd-audio.obj: src/audio.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-audio.obj -MD -MP -MF $(DEPDIR)/src_mpd-audio.Tpo -c -o src_mpd-audio.obj `if test -f 'src/audio.c'; then $(CYGPATH_W) 'src/audio.c'; else $(CYGPATH_W) '$(srcdir)/src/audio.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-audio.Tpo $(DEPDIR)/src_mpd-audio.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-audio.obj -MD -MP -MF "$(DEPDIR)/src_mpd-audio.Tpo" -c -o src_mpd-audio.obj `if test -f 'src/audio.c'; then $(CYGPATH_W) 'src/audio.c'; else $(CYGPATH_W) '$(srcdir)/src/audio.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-audio.Tpo" "$(DEPDIR)/src_mpd-audio.Po"; else rm -f "$(DEPDIR)/src_mpd-audio.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/audio.c' object='src_mpd-audio.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-audio.obj `if test -f 'src/audio.c'; then $(CYGPATH_W) 'src/audio.c'; else $(CYGPATH_W) '$(srcdir)/src/audio.c'; fi`
-
- src_mpd-audio_parser.o: src/audio_parser.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-audio_parser.o -MD -MP -MF $(DEPDIR)/src_mpd-audio_parser.Tpo -c -o src_mpd-audio_parser.o `test -f 'src/audio_parser.c' || echo '$(srcdir)/'`src/audio_parser.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-audio_parser.Tpo $(DEPDIR)/src_mpd-audio_parser.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-audio_parser.o -MD -MP -MF "$(DEPDIR)/src_mpd-audio_parser.Tpo" -c -o src_mpd-audio_parser.o `test -f 'src/audio_parser.c' || echo '$(srcdir)/'`src/audio_parser.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-audio_parser.Tpo" "$(DEPDIR)/src_mpd-audio_parser.Po"; else rm -f "$(DEPDIR)/src_mpd-audio_parser.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/audio_parser.c' object='src_mpd-audio_parser.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-audio_parser.o `test -f 'src/audio_parser.c' || echo '$(srcdir)/'`src/audio_parser.c
-
- src_mpd-audio_parser.obj: src/audio_parser.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-audio_parser.obj -MD -MP -MF $(DEPDIR)/src_mpd-audio_parser.Tpo -c -o src_mpd-audio_parser.obj `if test -f 'src/audio_parser.c'; then $(CYGPATH_W) 'src/audio_parser.c'; else $(CYGPATH_W) '$(srcdir)/src/audio_parser.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-audio_parser.Tpo $(DEPDIR)/src_mpd-audio_parser.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-audio_parser.obj -MD -MP -MF "$(DEPDIR)/src_mpd-audio_parser.Tpo" -c -o src_mpd-audio_parser.obj `if test -f 'src/audio_parser.c'; then $(CYGPATH_W) 'src/audio_parser.c'; else $(CYGPATH_W) '$(srcdir)/src/audio_parser.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-audio_parser.Tpo" "$(DEPDIR)/src_mpd-audio_parser.Po"; else rm -f "$(DEPDIR)/src_mpd-audio_parser.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/audio_parser.c' object='src_mpd-audio_parser.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-audio_parser.obj `if test -f 'src/audio_parser.c'; then $(CYGPATH_W) 'src/audio_parser.c'; else $(CYGPATH_W) '$(srcdir)/src/audio_parser.c'; fi`
-
- src_mpd-buffer2array.o: src/buffer2array.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-buffer2array.o -MD -MP -MF $(DEPDIR)/src_mpd-buffer2array.Tpo -c -o src_mpd-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-buffer2array.Tpo $(DEPDIR)/src_mpd-buffer2array.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-buffer2array.o -MD -MP -MF "$(DEPDIR)/src_mpd-buffer2array.Tpo" -c -o src_mpd-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-buffer2array.Tpo" "$(DEPDIR)/src_mpd-buffer2array.Po"; else rm -f "$(DEPDIR)/src_mpd-buffer2array.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer2array.c' object='src_mpd-buffer2array.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c
-
- src_mpd-buffer2array.obj: src/buffer2array.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-buffer2array.obj -MD -MP -MF $(DEPDIR)/src_mpd-buffer2array.Tpo -c -o src_mpd-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-buffer2array.Tpo $(DEPDIR)/src_mpd-buffer2array.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-buffer2array.obj -MD -MP -MF "$(DEPDIR)/src_mpd-buffer2array.Tpo" -c -o src_mpd-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-buffer2array.Tpo" "$(DEPDIR)/src_mpd-buffer2array.Po"; else rm -f "$(DEPDIR)/src_mpd-buffer2array.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer2array.c' object='src_mpd-buffer2array.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi`
-
- src_mpd-command.o: src/command.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-command.o -MD -MP -MF $(DEPDIR)/src_mpd-command.Tpo -c -o src_mpd-command.o `test -f 'src/command.c' || echo '$(srcdir)/'`src/command.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-command.Tpo $(DEPDIR)/src_mpd-command.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-command.o -MD -MP -MF "$(DEPDIR)/src_mpd-command.Tpo" -c -o src_mpd-command.o `test -f 'src/command.c' || echo '$(srcdir)/'`src/command.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-command.Tpo" "$(DEPDIR)/src_mpd-command.Po"; else rm -f "$(DEPDIR)/src_mpd-command.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/command.c' object='src_mpd-command.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-command.o `test -f 'src/command.c' || echo '$(srcdir)/'`src/command.c
-
- src_mpd-command.obj: src/command.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-command.obj -MD -MP -MF $(DEPDIR)/src_mpd-command.Tpo -c -o src_mpd-command.obj `if test -f 'src/command.c'; then $(CYGPATH_W) 'src/command.c'; else $(CYGPATH_W) '$(srcdir)/src/command.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-command.Tpo $(DEPDIR)/src_mpd-command.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-command.obj -MD -MP -MF "$(DEPDIR)/src_mpd-command.Tpo" -c -o src_mpd-command.obj `if test -f 'src/command.c'; then $(CYGPATH_W) 'src/command.c'; else $(CYGPATH_W) '$(srcdir)/src/command.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-command.Tpo" "$(DEPDIR)/src_mpd-command.Po"; else rm -f "$(DEPDIR)/src_mpd-command.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/command.c' object='src_mpd-command.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-command.obj `if test -f 'src/command.c'; then $(CYGPATH_W) 'src/command.c'; else $(CYGPATH_W) '$(srcdir)/src/command.c'; fi`
-
- src_mpd-idle.o: src/idle.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-idle.o -MD -MP -MF $(DEPDIR)/src_mpd-idle.Tpo -c -o src_mpd-idle.o `test -f 'src/idle.c' || echo '$(srcdir)/'`src/idle.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-idle.Tpo $(DEPDIR)/src_mpd-idle.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-idle.o -MD -MP -MF "$(DEPDIR)/src_mpd-idle.Tpo" -c -o src_mpd-idle.o `test -f 'src/idle.c' || echo '$(srcdir)/'`src/idle.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-idle.Tpo" "$(DEPDIR)/src_mpd-idle.Po"; else rm -f "$(DEPDIR)/src_mpd-idle.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/idle.c' object='src_mpd-idle.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-idle.o `test -f 'src/idle.c' || echo '$(srcdir)/'`src/idle.c
-
- src_mpd-idle.obj: src/idle.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-idle.obj -MD -MP -MF $(DEPDIR)/src_mpd-idle.Tpo -c -o src_mpd-idle.obj `if test -f 'src/idle.c'; then $(CYGPATH_W) 'src/idle.c'; else $(CYGPATH_W) '$(srcdir)/src/idle.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-idle.Tpo $(DEPDIR)/src_mpd-idle.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-idle.obj -MD -MP -MF "$(DEPDIR)/src_mpd-idle.Tpo" -c -o src_mpd-idle.obj `if test -f 'src/idle.c'; then $(CYGPATH_W) 'src/idle.c'; else $(CYGPATH_W) '$(srcdir)/src/idle.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-idle.Tpo" "$(DEPDIR)/src_mpd-idle.Po"; else rm -f "$(DEPDIR)/src_mpd-idle.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/idle.c' object='src_mpd-idle.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-idle.obj `if test -f 'src/idle.c'; then $(CYGPATH_W) 'src/idle.c'; else $(CYGPATH_W) '$(srcdir)/src/idle.c'; fi`
-
- src_mpd-cmdline.o: src/cmdline.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-cmdline.o -MD -MP -MF $(DEPDIR)/src_mpd-cmdline.Tpo -c -o src_mpd-cmdline.o `test -f 'src/cmdline.c' || echo '$(srcdir)/'`src/cmdline.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-cmdline.Tpo $(DEPDIR)/src_mpd-cmdline.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-cmdline.o -MD -MP -MF "$(DEPDIR)/src_mpd-cmdline.Tpo" -c -o src_mpd-cmdline.o `test -f 'src/cmdline.c' || echo '$(srcdir)/'`src/cmdline.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-cmdline.Tpo" "$(DEPDIR)/src_mpd-cmdline.Po"; else rm -f "$(DEPDIR)/src_mpd-cmdline.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/cmdline.c' object='src_mpd-cmdline.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-cmdline.o `test -f 'src/cmdline.c' || echo '$(srcdir)/'`src/cmdline.c
-
- src_mpd-cmdline.obj: src/cmdline.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-cmdline.obj -MD -MP -MF $(DEPDIR)/src_mpd-cmdline.Tpo -c -o src_mpd-cmdline.obj `if test -f 'src/cmdline.c'; then $(CYGPATH_W) 'src/cmdline.c'; else $(CYGPATH_W) '$(srcdir)/src/cmdline.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-cmdline.Tpo $(DEPDIR)/src_mpd-cmdline.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-cmdline.obj -MD -MP -MF "$(DEPDIR)/src_mpd-cmdline.Tpo" -c -o src_mpd-cmdline.obj `if test -f 'src/cmdline.c'; then $(CYGPATH_W) 'src/cmdline.c'; else $(CYGPATH_W) '$(srcdir)/src/cmdline.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-cmdline.Tpo" "$(DEPDIR)/src_mpd-cmdline.Po"; else rm -f "$(DEPDIR)/src_mpd-cmdline.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/cmdline.c' object='src_mpd-cmdline.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-cmdline.obj `if test -f 'src/cmdline.c'; then $(CYGPATH_W) 'src/cmdline.c'; else $(CYGPATH_W) '$(srcdir)/src/cmdline.c'; fi`
-
- src_mpd-conf.o: src/conf.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-conf.o -MD -MP -MF $(DEPDIR)/src_mpd-conf.Tpo -c -o src_mpd-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-conf.Tpo $(DEPDIR)/src_mpd-conf.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-conf.o -MD -MP -MF "$(DEPDIR)/src_mpd-conf.Tpo" -c -o src_mpd-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-conf.Tpo" "$(DEPDIR)/src_mpd-conf.Po"; else rm -f "$(DEPDIR)/src_mpd-conf.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/conf.c' object='src_mpd-conf.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c
-
- src_mpd-conf.obj: src/conf.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-conf.obj -MD -MP -MF $(DEPDIR)/src_mpd-conf.Tpo -c -o src_mpd-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-conf.Tpo $(DEPDIR)/src_mpd-conf.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-conf.obj -MD -MP -MF "$(DEPDIR)/src_mpd-conf.Tpo" -c -o src_mpd-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-conf.Tpo" "$(DEPDIR)/src_mpd-conf.Po"; else rm -f "$(DEPDIR)/src_mpd-conf.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/conf.c' object='src_mpd-conf.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi`
-
- src_mpd-crossfade.o: src/crossfade.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-crossfade.o -MD -MP -MF $(DEPDIR)/src_mpd-crossfade.Tpo -c -o src_mpd-crossfade.o `test -f 'src/crossfade.c' || echo '$(srcdir)/'`src/crossfade.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-crossfade.Tpo $(DEPDIR)/src_mpd-crossfade.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-crossfade.o -MD -MP -MF "$(DEPDIR)/src_mpd-crossfade.Tpo" -c -o src_mpd-crossfade.o `test -f 'src/crossfade.c' || echo '$(srcdir)/'`src/crossfade.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-crossfade.Tpo" "$(DEPDIR)/src_mpd-crossfade.Po"; else rm -f "$(DEPDIR)/src_mpd-crossfade.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/crossfade.c' object='src_mpd-crossfade.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-crossfade.o `test -f 'src/crossfade.c' || echo '$(srcdir)/'`src/crossfade.c
-
- src_mpd-crossfade.obj: src/crossfade.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-crossfade.obj -MD -MP -MF $(DEPDIR)/src_mpd-crossfade.Tpo -c -o src_mpd-crossfade.obj `if test -f 'src/crossfade.c'; then $(CYGPATH_W) 'src/crossfade.c'; else $(CYGPATH_W) '$(srcdir)/src/crossfade.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-crossfade.Tpo $(DEPDIR)/src_mpd-crossfade.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-crossfade.obj -MD -MP -MF "$(DEPDIR)/src_mpd-crossfade.Tpo" -c -o src_mpd-crossfade.obj `if test -f 'src/crossfade.c'; then $(CYGPATH_W) 'src/crossfade.c'; else $(CYGPATH_W) '$(srcdir)/src/crossfade.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-crossfade.Tpo" "$(DEPDIR)/src_mpd-crossfade.Po"; else rm -f "$(DEPDIR)/src_mpd-crossfade.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/crossfade.c' object='src_mpd-crossfade.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-crossfade.obj `if test -f 'src/crossfade.c'; then $(CYGPATH_W) 'src/crossfade.c'; else $(CYGPATH_W) '$(srcdir)/src/crossfade.c'; fi`
-
- src_mpd-dbUtils.o: src/dbUtils.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-dbUtils.o -MD -MP -MF $(DEPDIR)/src_mpd-dbUtils.Tpo -c -o src_mpd-dbUtils.o `test -f 'src/dbUtils.c' || echo '$(srcdir)/'`src/dbUtils.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-dbUtils.Tpo $(DEPDIR)/src_mpd-dbUtils.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-dbUtils.o -MD -MP -MF "$(DEPDIR)/src_mpd-dbUtils.Tpo" -c -o src_mpd-dbUtils.o `test -f 'src/dbUtils.c' || echo '$(srcdir)/'`src/dbUtils.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-dbUtils.Tpo" "$(DEPDIR)/src_mpd-dbUtils.Po"; else rm -f "$(DEPDIR)/src_mpd-dbUtils.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/dbUtils.c' object='src_mpd-dbUtils.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-dbUtils.o `test -f 'src/dbUtils.c' || echo '$(srcdir)/'`src/dbUtils.c
-
- src_mpd-dbUtils.obj: src/dbUtils.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-dbUtils.obj -MD -MP -MF $(DEPDIR)/src_mpd-dbUtils.Tpo -c -o src_mpd-dbUtils.obj `if test -f 'src/dbUtils.c'; then $(CYGPATH_W) 'src/dbUtils.c'; else $(CYGPATH_W) '$(srcdir)/src/dbUtils.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-dbUtils.Tpo $(DEPDIR)/src_mpd-dbUtils.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-dbUtils.obj -MD -MP -MF "$(DEPDIR)/src_mpd-dbUtils.Tpo" -c -o src_mpd-dbUtils.obj `if test -f 'src/dbUtils.c'; then $(CYGPATH_W) 'src/dbUtils.c'; else $(CYGPATH_W) '$(srcdir)/src/dbUtils.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-dbUtils.Tpo" "$(DEPDIR)/src_mpd-dbUtils.Po"; else rm -f "$(DEPDIR)/src_mpd-dbUtils.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/dbUtils.c' object='src_mpd-dbUtils.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-dbUtils.obj `if test -f 'src/dbUtils.c'; then $(CYGPATH_W) 'src/dbUtils.c'; else $(CYGPATH_W) '$(srcdir)/src/dbUtils.c'; fi`
-
- src_mpd-decoder_thread.o: src/decoder_thread.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_thread.o -MD -MP -MF $(DEPDIR)/src_mpd-decoder_thread.Tpo -c -o src_mpd-decoder_thread.o `test -f 'src/decoder_thread.c' || echo '$(srcdir)/'`src/decoder_thread.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-decoder_thread.Tpo $(DEPDIR)/src_mpd-decoder_thread.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_thread.o -MD -MP -MF "$(DEPDIR)/src_mpd-decoder_thread.Tpo" -c -o src_mpd-decoder_thread.o `test -f 'src/decoder_thread.c' || echo '$(srcdir)/'`src/decoder_thread.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-decoder_thread.Tpo" "$(DEPDIR)/src_mpd-decoder_thread.Po"; else rm -f "$(DEPDIR)/src_mpd-decoder_thread.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_thread.c' object='src_mpd-decoder_thread.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-decoder_thread.o `test -f 'src/decoder_thread.c' || echo '$(srcdir)/'`src/decoder_thread.c
-
- src_mpd-decoder_thread.obj: src/decoder_thread.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_thread.obj -MD -MP -MF $(DEPDIR)/src_mpd-decoder_thread.Tpo -c -o src_mpd-decoder_thread.obj `if test -f 'src/decoder_thread.c'; then $(CYGPATH_W) 'src/decoder_thread.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_thread.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-decoder_thread.Tpo $(DEPDIR)/src_mpd-decoder_thread.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_thread.obj -MD -MP -MF "$(DEPDIR)/src_mpd-decoder_thread.Tpo" -c -o src_mpd-decoder_thread.obj `if test -f 'src/decoder_thread.c'; then $(CYGPATH_W) 'src/decoder_thread.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_thread.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-decoder_thread.Tpo" "$(DEPDIR)/src_mpd-decoder_thread.Po"; else rm -f "$(DEPDIR)/src_mpd-decoder_thread.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_thread.c' object='src_mpd-decoder_thread.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-decoder_thread.obj `if test -f 'src/decoder_thread.c'; then $(CYGPATH_W) 'src/decoder_thread.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_thread.c'; fi`
-
- src_mpd-decoder_control.o: src/decoder_control.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_control.o -MD -MP -MF $(DEPDIR)/src_mpd-decoder_control.Tpo -c -o src_mpd-decoder_control.o `test -f 'src/decoder_control.c' || echo '$(srcdir)/'`src/decoder_control.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-decoder_control.Tpo $(DEPDIR)/src_mpd-decoder_control.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_control.o -MD -MP -MF "$(DEPDIR)/src_mpd-decoder_control.Tpo" -c -o src_mpd-decoder_control.o `test -f 'src/decoder_control.c' || echo '$(srcdir)/'`src/decoder_control.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-decoder_control.Tpo" "$(DEPDIR)/src_mpd-decoder_control.Po"; else rm -f "$(DEPDIR)/src_mpd-decoder_control.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_control.c' object='src_mpd-decoder_control.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-decoder_control.o `test -f 'src/decoder_control.c' || echo '$(srcdir)/'`src/decoder_control.c
-
- src_mpd-decoder_control.obj: src/decoder_control.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_control.obj -MD -MP -MF $(DEPDIR)/src_mpd-decoder_control.Tpo -c -o src_mpd-decoder_control.obj `if test -f 'src/decoder_control.c'; then $(CYGPATH_W) 'src/decoder_control.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_control.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-decoder_control.Tpo $(DEPDIR)/src_mpd-decoder_control.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_control.obj -MD -MP -MF "$(DEPDIR)/src_mpd-decoder_control.Tpo" -c -o src_mpd-decoder_control.obj `if test -f 'src/decoder_control.c'; then $(CYGPATH_W) 'src/decoder_control.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_control.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-decoder_control.Tpo" "$(DEPDIR)/src_mpd-decoder_control.Po"; else rm -f "$(DEPDIR)/src_mpd-decoder_control.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_control.c' object='src_mpd-decoder_control.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-decoder_control.obj `if test -f 'src/decoder_control.c'; then $(CYGPATH_W) 'src/decoder_control.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_control.c'; fi`
-
- src_mpd-decoder_api.o: src/decoder_api.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_api.o -MD -MP -MF $(DEPDIR)/src_mpd-decoder_api.Tpo -c -o src_mpd-decoder_api.o `test -f 'src/decoder_api.c' || echo '$(srcdir)/'`src/decoder_api.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-decoder_api.Tpo $(DEPDIR)/src_mpd-decoder_api.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_api.o -MD -MP -MF "$(DEPDIR)/src_mpd-decoder_api.Tpo" -c -o src_mpd-decoder_api.o `test -f 'src/decoder_api.c' || echo '$(srcdir)/'`src/decoder_api.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-decoder_api.Tpo" "$(DEPDIR)/src_mpd-decoder_api.Po"; else rm -f "$(DEPDIR)/src_mpd-decoder_api.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_api.c' object='src_mpd-decoder_api.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-decoder_api.o `test -f 'src/decoder_api.c' || echo '$(srcdir)/'`src/decoder_api.c
-
- src_mpd-decoder_api.obj: src/decoder_api.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_api.obj -MD -MP -MF $(DEPDIR)/src_mpd-decoder_api.Tpo -c -o src_mpd-decoder_api.obj `if test -f 'src/decoder_api.c'; then $(CYGPATH_W) 'src/decoder_api.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_api.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-decoder_api.Tpo $(DEPDIR)/src_mpd-decoder_api.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_api.obj -MD -MP -MF "$(DEPDIR)/src_mpd-decoder_api.Tpo" -c -o src_mpd-decoder_api.obj `if test -f 'src/decoder_api.c'; then $(CYGPATH_W) 'src/decoder_api.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_api.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-decoder_api.Tpo" "$(DEPDIR)/src_mpd-decoder_api.Po"; else rm -f "$(DEPDIR)/src_mpd-decoder_api.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_api.c' object='src_mpd-decoder_api.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-decoder_api.obj `if test -f 'src/decoder_api.c'; then $(CYGPATH_W) 'src/decoder_api.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_api.c'; fi`
-
- src_mpd-decoder_internal.o: src/decoder_internal.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_internal.o -MD -MP -MF $(DEPDIR)/src_mpd-decoder_internal.Tpo -c -o src_mpd-decoder_internal.o `test -f 'src/decoder_internal.c' || echo '$(srcdir)/'`src/decoder_internal.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-decoder_internal.Tpo $(DEPDIR)/src_mpd-decoder_internal.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_internal.o -MD -MP -MF "$(DEPDIR)/src_mpd-decoder_internal.Tpo" -c -o src_mpd-decoder_internal.o `test -f 'src/decoder_internal.c' || echo '$(srcdir)/'`src/decoder_internal.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-decoder_internal.Tpo" "$(DEPDIR)/src_mpd-decoder_internal.Po"; else rm -f "$(DEPDIR)/src_mpd-decoder_internal.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_internal.c' object='src_mpd-decoder_internal.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-decoder_internal.o `test -f 'src/decoder_internal.c' || echo '$(srcdir)/'`src/decoder_internal.c
-
- src_mpd-decoder_internal.obj: src/decoder_internal.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_internal.obj -MD -MP -MF $(DEPDIR)/src_mpd-decoder_internal.Tpo -c -o src_mpd-decoder_internal.obj `if test -f 'src/decoder_internal.c'; then $(CYGPATH_W) 'src/decoder_internal.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_internal.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-decoder_internal.Tpo $(DEPDIR)/src_mpd-decoder_internal.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-decoder_internal.obj -MD -MP -MF "$(DEPDIR)/src_mpd-decoder_internal.Tpo" -c -o src_mpd-decoder_internal.obj `if test -f 'src/decoder_internal.c'; then $(CYGPATH_W) 'src/decoder_internal.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_internal.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-decoder_internal.Tpo" "$(DEPDIR)/src_mpd-decoder_internal.Po"; else rm -f "$(DEPDIR)/src_mpd-decoder_internal.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_internal.c' object='src_mpd-decoder_internal.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-decoder_internal.obj `if test -f 'src/decoder_internal.c'; then $(CYGPATH_W) 'src/decoder_internal.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_internal.c'; fi`
-
- src_mpd-directory.o: src/directory.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-directory.o -MD -MP -MF $(DEPDIR)/src_mpd-directory.Tpo -c -o src_mpd-directory.o `test -f 'src/directory.c' || echo '$(srcdir)/'`src/directory.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-directory.Tpo $(DEPDIR)/src_mpd-directory.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-directory.o -MD -MP -MF "$(DEPDIR)/src_mpd-directory.Tpo" -c -o src_mpd-directory.o `test -f 'src/directory.c' || echo '$(srcdir)/'`src/directory.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-directory.Tpo" "$(DEPDIR)/src_mpd-directory.Po"; else rm -f "$(DEPDIR)/src_mpd-directory.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/directory.c' object='src_mpd-directory.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-directory.o `test -f 'src/directory.c' || echo '$(srcdir)/'`src/directory.c
-
- src_mpd-directory.obj: src/directory.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-directory.obj -MD -MP -MF $(DEPDIR)/src_mpd-directory.Tpo -c -o src_mpd-directory.obj `if test -f 'src/directory.c'; then $(CYGPATH_W) 'src/directory.c'; else $(CYGPATH_W) '$(srcdir)/src/directory.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-directory.Tpo $(DEPDIR)/src_mpd-directory.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-directory.obj -MD -MP -MF "$(DEPDIR)/src_mpd-directory.Tpo" -c -o src_mpd-directory.obj `if test -f 'src/directory.c'; then $(CYGPATH_W) 'src/directory.c'; else $(CYGPATH_W) '$(srcdir)/src/directory.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-directory.Tpo" "$(DEPDIR)/src_mpd-directory.Po"; else rm -f "$(DEPDIR)/src_mpd-directory.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/directory.c' object='src_mpd-directory.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-directory.obj `if test -f 'src/directory.c'; then $(CYGPATH_W) 'src/directory.c'; else $(CYGPATH_W) '$(srcdir)/src/directory.c'; fi`
-
- src_mpd-directory_save.o: src/directory_save.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-directory_save.o -MD -MP -MF $(DEPDIR)/src_mpd-directory_save.Tpo -c -o src_mpd-directory_save.o `test -f 'src/directory_save.c' || echo '$(srcdir)/'`src/directory_save.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-directory_save.Tpo $(DEPDIR)/src_mpd-directory_save.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-directory_save.o -MD -MP -MF "$(DEPDIR)/src_mpd-directory_save.Tpo" -c -o src_mpd-directory_save.o `test -f 'src/directory_save.c' || echo '$(srcdir)/'`src/directory_save.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-directory_save.Tpo" "$(DEPDIR)/src_mpd-directory_save.Po"; else rm -f "$(DEPDIR)/src_mpd-directory_save.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/directory_save.c' object='src_mpd-directory_save.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-directory_save.o `test -f 'src/directory_save.c' || echo '$(srcdir)/'`src/directory_save.c
-
- src_mpd-directory_save.obj: src/directory_save.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-directory_save.obj -MD -MP -MF $(DEPDIR)/src_mpd-directory_save.Tpo -c -o src_mpd-directory_save.obj `if test -f 'src/directory_save.c'; then $(CYGPATH_W) 'src/directory_save.c'; else $(CYGPATH_W) '$(srcdir)/src/directory_save.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-directory_save.Tpo $(DEPDIR)/src_mpd-directory_save.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-directory_save.obj -MD -MP -MF "$(DEPDIR)/src_mpd-directory_save.Tpo" -c -o src_mpd-directory_save.obj `if test -f 'src/directory_save.c'; then $(CYGPATH_W) 'src/directory_save.c'; else $(CYGPATH_W) '$(srcdir)/src/directory_save.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-directory_save.Tpo" "$(DEPDIR)/src_mpd-directory_save.Po"; else rm -f "$(DEPDIR)/src_mpd-directory_save.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/directory_save.c' object='src_mpd-directory_save.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-directory_save.obj `if test -f 'src/directory_save.c'; then $(CYGPATH_W) 'src/directory_save.c'; else $(CYGPATH_W) '$(srcdir)/src/directory_save.c'; fi`
-
- src_mpd-directory_print.o: src/directory_print.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-directory_print.o -MD -MP -MF $(DEPDIR)/src_mpd-directory_print.Tpo -c -o src_mpd-directory_print.o `test -f 'src/directory_print.c' || echo '$(srcdir)/'`src/directory_print.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-directory_print.Tpo $(DEPDIR)/src_mpd-directory_print.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-directory_print.o -MD -MP -MF "$(DEPDIR)/src_mpd-directory_print.Tpo" -c -o src_mpd-directory_print.o `test -f 'src/directory_print.c' || echo '$(srcdir)/'`src/directory_print.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-directory_print.Tpo" "$(DEPDIR)/src_mpd-directory_print.Po"; else rm -f "$(DEPDIR)/src_mpd-directory_print.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/directory_print.c' object='src_mpd-directory_print.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-directory_print.o `test -f 'src/directory_print.c' || echo '$(srcdir)/'`src/directory_print.c
-
- src_mpd-directory_print.obj: src/directory_print.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-directory_print.obj -MD -MP -MF $(DEPDIR)/src_mpd-directory_print.Tpo -c -o src_mpd-directory_print.obj `if test -f 'src/directory_print.c'; then $(CYGPATH_W) 'src/directory_print.c'; else $(CYGPATH_W) '$(srcdir)/src/directory_print.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-directory_print.Tpo $(DEPDIR)/src_mpd-directory_print.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-directory_print.obj -MD -MP -MF "$(DEPDIR)/src_mpd-directory_print.Tpo" -c -o src_mpd-directory_print.obj `if test -f 'src/directory_print.c'; then $(CYGPATH_W) 'src/directory_print.c'; else $(CYGPATH_W) '$(srcdir)/src/directory_print.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-directory_print.Tpo" "$(DEPDIR)/src_mpd-directory_print.Po"; else rm -f "$(DEPDIR)/src_mpd-directory_print.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/directory_print.c' object='src_mpd-directory_print.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-directory_print.obj `if test -f 'src/directory_print.c'; then $(CYGPATH_W) 'src/directory_print.c'; else $(CYGPATH_W) '$(srcdir)/src/directory_print.c'; fi`
-
- src_mpd-database.o: src/database.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-database.o -MD -MP -MF $(DEPDIR)/src_mpd-database.Tpo -c -o src_mpd-database.o `test -f 'src/database.c' || echo '$(srcdir)/'`src/database.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-database.Tpo $(DEPDIR)/src_mpd-database.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-database.o -MD -MP -MF "$(DEPDIR)/src_mpd-database.Tpo" -c -o src_mpd-database.o `test -f 'src/database.c' || echo '$(srcdir)/'`src/database.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-database.Tpo" "$(DEPDIR)/src_mpd-database.Po"; else rm -f "$(DEPDIR)/src_mpd-database.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/database.c' object='src_mpd-database.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-database.o `test -f 'src/database.c' || echo '$(srcdir)/'`src/database.c
-
- src_mpd-database.obj: src/database.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-database.obj -MD -MP -MF $(DEPDIR)/src_mpd-database.Tpo -c -o src_mpd-database.obj `if test -f 'src/database.c'; then $(CYGPATH_W) 'src/database.c'; else $(CYGPATH_W) '$(srcdir)/src/database.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-database.Tpo $(DEPDIR)/src_mpd-database.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-database.obj -MD -MP -MF "$(DEPDIR)/src_mpd-database.Tpo" -c -o src_mpd-database.obj `if test -f 'src/database.c'; then $(CYGPATH_W) 'src/database.c'; else $(CYGPATH_W) '$(srcdir)/src/database.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-database.Tpo" "$(DEPDIR)/src_mpd-database.Po"; else rm -f "$(DEPDIR)/src_mpd-database.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/database.c' object='src_mpd-database.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-database.obj `if test -f 'src/database.c'; then $(CYGPATH_W) 'src/database.c'; else $(CYGPATH_W) '$(srcdir)/src/database.c'; fi`
-
- src_mpd-dirvec.o: src/dirvec.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-dirvec.o -MD -MP -MF $(DEPDIR)/src_mpd-dirvec.Tpo -c -o src_mpd-dirvec.o `test -f 'src/dirvec.c' || echo '$(srcdir)/'`src/dirvec.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-dirvec.Tpo $(DEPDIR)/src_mpd-dirvec.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-dirvec.o -MD -MP -MF "$(DEPDIR)/src_mpd-dirvec.Tpo" -c -o src_mpd-dirvec.o `test -f 'src/dirvec.c' || echo '$(srcdir)/'`src/dirvec.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-dirvec.Tpo" "$(DEPDIR)/src_mpd-dirvec.Po"; else rm -f "$(DEPDIR)/src_mpd-dirvec.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/dirvec.c' object='src_mpd-dirvec.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-dirvec.o `test -f 'src/dirvec.c' || echo '$(srcdir)/'`src/dirvec.c
-
- src_mpd-dirvec.obj: src/dirvec.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-dirvec.obj -MD -MP -MF $(DEPDIR)/src_mpd-dirvec.Tpo -c -o src_mpd-dirvec.obj `if test -f 'src/dirvec.c'; then $(CYGPATH_W) 'src/dirvec.c'; else $(CYGPATH_W) '$(srcdir)/src/dirvec.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-dirvec.Tpo $(DEPDIR)/src_mpd-dirvec.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-dirvec.obj -MD -MP -MF "$(DEPDIR)/src_mpd-dirvec.Tpo" -c -o src_mpd-dirvec.obj `if test -f 'src/dirvec.c'; then $(CYGPATH_W) 'src/dirvec.c'; else $(CYGPATH_W) '$(srcdir)/src/dirvec.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-dirvec.Tpo" "$(DEPDIR)/src_mpd-dirvec.Po"; else rm -f "$(DEPDIR)/src_mpd-dirvec.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/dirvec.c' object='src_mpd-dirvec.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-dirvec.obj `if test -f 'src/dirvec.c'; then $(CYGPATH_W) 'src/dirvec.c'; else $(CYGPATH_W) '$(srcdir)/src/dirvec.c'; fi`
-
- src_mpd-fifo_buffer.o: src/fifo_buffer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-fifo_buffer.o -MD -MP -MF $(DEPDIR)/src_mpd-fifo_buffer.Tpo -c -o src_mpd-fifo_buffer.o `test -f 'src/fifo_buffer.c' || echo '$(srcdir)/'`src/fifo_buffer.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-fifo_buffer.Tpo $(DEPDIR)/src_mpd-fifo_buffer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-fifo_buffer.o -MD -MP -MF "$(DEPDIR)/src_mpd-fifo_buffer.Tpo" -c -o src_mpd-fifo_buffer.o `test -f 'src/fifo_buffer.c' || echo '$(srcdir)/'`src/fifo_buffer.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-fifo_buffer.Tpo" "$(DEPDIR)/src_mpd-fifo_buffer.Po"; else rm -f "$(DEPDIR)/src_mpd-fifo_buffer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/fifo_buffer.c' object='src_mpd-fifo_buffer.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-fifo_buffer.o `test -f 'src/fifo_buffer.c' || echo '$(srcdir)/'`src/fifo_buffer.c
-
- src_mpd-fifo_buffer.obj: src/fifo_buffer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-fifo_buffer.obj -MD -MP -MF $(DEPDIR)/src_mpd-fifo_buffer.Tpo -c -o src_mpd-fifo_buffer.obj `if test -f 'src/fifo_buffer.c'; then $(CYGPATH_W) 'src/fifo_buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/fifo_buffer.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-fifo_buffer.Tpo $(DEPDIR)/src_mpd-fifo_buffer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-fifo_buffer.obj -MD -MP -MF "$(DEPDIR)/src_mpd-fifo_buffer.Tpo" -c -o src_mpd-fifo_buffer.obj `if test -f 'src/fifo_buffer.c'; then $(CYGPATH_W) 'src/fifo_buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/fifo_buffer.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-fifo_buffer.Tpo" "$(DEPDIR)/src_mpd-fifo_buffer.Po"; else rm -f "$(DEPDIR)/src_mpd-fifo_buffer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/fifo_buffer.c' object='src_mpd-fifo_buffer.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-fifo_buffer.obj `if test -f 'src/fifo_buffer.c'; then $(CYGPATH_W) 'src/fifo_buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/fifo_buffer.c'; fi`
-
- src_mpd-update.o: src/update.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-update.o -MD -MP -MF $(DEPDIR)/src_mpd-update.Tpo -c -o src_mpd-update.o `test -f 'src/update.c' || echo '$(srcdir)/'`src/update.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-update.Tpo $(DEPDIR)/src_mpd-update.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-update.o -MD -MP -MF "$(DEPDIR)/src_mpd-update.Tpo" -c -o src_mpd-update.o `test -f 'src/update.c' || echo '$(srcdir)/'`src/update.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-update.Tpo" "$(DEPDIR)/src_mpd-update.Po"; else rm -f "$(DEPDIR)/src_mpd-update.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/update.c' object='src_mpd-update.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-update.o `test -f 'src/update.c' || echo '$(srcdir)/'`src/update.c
-
- src_mpd-update.obj: src/update.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-update.obj -MD -MP -MF $(DEPDIR)/src_mpd-update.Tpo -c -o src_mpd-update.obj `if test -f 'src/update.c'; then $(CYGPATH_W) 'src/update.c'; else $(CYGPATH_W) '$(srcdir)/src/update.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-update.Tpo $(DEPDIR)/src_mpd-update.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-update.obj -MD -MP -MF "$(DEPDIR)/src_mpd-update.Tpo" -c -o src_mpd-update.obj `if test -f 'src/update.c'; then $(CYGPATH_W) 'src/update.c'; else $(CYGPATH_W) '$(srcdir)/src/update.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-update.Tpo" "$(DEPDIR)/src_mpd-update.Po"; else rm -f "$(DEPDIR)/src_mpd-update.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/update.c' object='src_mpd-update.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-update.obj `if test -f 'src/update.c'; then $(CYGPATH_W) 'src/update.c'; else $(CYGPATH_W) '$(srcdir)/src/update.c'; fi`
-
- src_mpd-client.o: src/client.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-client.o -MD -MP -MF $(DEPDIR)/src_mpd-client.Tpo -c -o src_mpd-client.o `test -f 'src/client.c' || echo '$(srcdir)/'`src/client.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-client.Tpo $(DEPDIR)/src_mpd-client.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-client.o -MD -MP -MF "$(DEPDIR)/src_mpd-client.Tpo" -c -o src_mpd-client.o `test -f 'src/client.c' || echo '$(srcdir)/'`src/client.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-client.Tpo" "$(DEPDIR)/src_mpd-client.Po"; else rm -f "$(DEPDIR)/src_mpd-client.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/client.c' object='src_mpd-client.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-client.o `test -f 'src/client.c' || echo '$(srcdir)/'`src/client.c
-
- src_mpd-client.obj: src/client.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-client.obj -MD -MP -MF $(DEPDIR)/src_mpd-client.Tpo -c -o src_mpd-client.obj `if test -f 'src/client.c'; then $(CYGPATH_W) 'src/client.c'; else $(CYGPATH_W) '$(srcdir)/src/client.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-client.Tpo $(DEPDIR)/src_mpd-client.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-client.obj -MD -MP -MF "$(DEPDIR)/src_mpd-client.Tpo" -c -o src_mpd-client.obj `if test -f 'src/client.c'; then $(CYGPATH_W) 'src/client.c'; else $(CYGPATH_W) '$(srcdir)/src/client.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-client.Tpo" "$(DEPDIR)/src_mpd-client.Po"; else rm -f "$(DEPDIR)/src_mpd-client.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/client.c' object='src_mpd-client.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-client.obj `if test -f 'src/client.c'; then $(CYGPATH_W) 'src/client.c'; else $(CYGPATH_W) '$(srcdir)/src/client.c'; fi`
-
- src_mpd-listen.o: src/listen.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-listen.o -MD -MP -MF $(DEPDIR)/src_mpd-listen.Tpo -c -o src_mpd-listen.o `test -f 'src/listen.c' || echo '$(srcdir)/'`src/listen.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-listen.Tpo $(DEPDIR)/src_mpd-listen.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-listen.o -MD -MP -MF "$(DEPDIR)/src_mpd-listen.Tpo" -c -o src_mpd-listen.o `test -f 'src/listen.c' || echo '$(srcdir)/'`src/listen.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-listen.Tpo" "$(DEPDIR)/src_mpd-listen.Po"; else rm -f "$(DEPDIR)/src_mpd-listen.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/listen.c' object='src_mpd-listen.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-listen.o `test -f 'src/listen.c' || echo '$(srcdir)/'`src/listen.c
-
- src_mpd-listen.obj: src/listen.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-listen.obj -MD -MP -MF $(DEPDIR)/src_mpd-listen.Tpo -c -o src_mpd-listen.obj `if test -f 'src/listen.c'; then $(CYGPATH_W) 'src/listen.c'; else $(CYGPATH_W) '$(srcdir)/src/listen.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-listen.Tpo $(DEPDIR)/src_mpd-listen.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-listen.obj -MD -MP -MF "$(DEPDIR)/src_mpd-listen.Tpo" -c -o src_mpd-listen.obj `if test -f 'src/listen.c'; then $(CYGPATH_W) 'src/listen.c'; else $(CYGPATH_W) '$(srcdir)/src/listen.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-listen.Tpo" "$(DEPDIR)/src_mpd-listen.Po"; else rm -f "$(DEPDIR)/src_mpd-listen.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/listen.c' object='src_mpd-listen.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-listen.obj `if test -f 'src/listen.c'; then $(CYGPATH_W) 'src/listen.c'; else $(CYGPATH_W) '$(srcdir)/src/listen.c'; fi`
-
- src_mpd-log.o: src/log.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-log.o -MD -MP -MF $(DEPDIR)/src_mpd-log.Tpo -c -o src_mpd-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-log.Tpo $(DEPDIR)/src_mpd-log.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-log.o -MD -MP -MF "$(DEPDIR)/src_mpd-log.Tpo" -c -o src_mpd-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-log.Tpo" "$(DEPDIR)/src_mpd-log.Po"; else rm -f "$(DEPDIR)/src_mpd-log.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/log.c' object='src_mpd-log.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c
-
- src_mpd-log.obj: src/log.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-log.obj -MD -MP -MF $(DEPDIR)/src_mpd-log.Tpo -c -o src_mpd-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-log.Tpo $(DEPDIR)/src_mpd-log.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-log.obj -MD -MP -MF "$(DEPDIR)/src_mpd-log.Tpo" -c -o src_mpd-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-log.Tpo" "$(DEPDIR)/src_mpd-log.Po"; else rm -f "$(DEPDIR)/src_mpd-log.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/log.c' object='src_mpd-log.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi`
-
- src_mpd-ls.o: src/ls.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-ls.o -MD -MP -MF $(DEPDIR)/src_mpd-ls.Tpo -c -o src_mpd-ls.o `test -f 'src/ls.c' || echo '$(srcdir)/'`src/ls.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-ls.Tpo $(DEPDIR)/src_mpd-ls.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-ls.o -MD -MP -MF "$(DEPDIR)/src_mpd-ls.Tpo" -c -o src_mpd-ls.o `test -f 'src/ls.c' || echo '$(srcdir)/'`src/ls.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-ls.Tpo" "$(DEPDIR)/src_mpd-ls.Po"; else rm -f "$(DEPDIR)/src_mpd-ls.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/ls.c' object='src_mpd-ls.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-ls.o `test -f 'src/ls.c' || echo '$(srcdir)/'`src/ls.c
-
- src_mpd-ls.obj: src/ls.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-ls.obj -MD -MP -MF $(DEPDIR)/src_mpd-ls.Tpo -c -o src_mpd-ls.obj `if test -f 'src/ls.c'; then $(CYGPATH_W) 'src/ls.c'; else $(CYGPATH_W) '$(srcdir)/src/ls.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-ls.Tpo $(DEPDIR)/src_mpd-ls.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-ls.obj -MD -MP -MF "$(DEPDIR)/src_mpd-ls.Tpo" -c -o src_mpd-ls.obj `if test -f 'src/ls.c'; then $(CYGPATH_W) 'src/ls.c'; else $(CYGPATH_W) '$(srcdir)/src/ls.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-ls.Tpo" "$(DEPDIR)/src_mpd-ls.Po"; else rm -f "$(DEPDIR)/src_mpd-ls.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/ls.c' object='src_mpd-ls.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-ls.obj `if test -f 'src/ls.c'; then $(CYGPATH_W) 'src/ls.c'; else $(CYGPATH_W) '$(srcdir)/src/ls.c'; fi`
-
- src_mpd-main.o: src/main.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-main.o -MD -MP -MF $(DEPDIR)/src_mpd-main.Tpo -c -o src_mpd-main.o `test -f 'src/main.c' || echo '$(srcdir)/'`src/main.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-main.Tpo $(DEPDIR)/src_mpd-main.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-main.o -MD -MP -MF "$(DEPDIR)/src_mpd-main.Tpo" -c -o src_mpd-main.o `test -f 'src/main.c' || echo '$(srcdir)/'`src/main.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-main.Tpo" "$(DEPDIR)/src_mpd-main.Po"; else rm -f "$(DEPDIR)/src_mpd-main.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/main.c' object='src_mpd-main.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-main.o `test -f 'src/main.c' || echo '$(srcdir)/'`src/main.c
-
- src_mpd-main.obj: src/main.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-main.obj -MD -MP -MF $(DEPDIR)/src_mpd-main.Tpo -c -o src_mpd-main.obj `if test -f 'src/main.c'; then $(CYGPATH_W) 'src/main.c'; else $(CYGPATH_W) '$(srcdir)/src/main.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-main.Tpo $(DEPDIR)/src_mpd-main.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-main.obj -MD -MP -MF "$(DEPDIR)/src_mpd-main.Tpo" -c -o src_mpd-main.obj `if test -f 'src/main.c'; then $(CYGPATH_W) 'src/main.c'; else $(CYGPATH_W) '$(srcdir)/src/main.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-main.Tpo" "$(DEPDIR)/src_mpd-main.Po"; else rm -f "$(DEPDIR)/src_mpd-main.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/main.c' object='src_mpd-main.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-main.obj `if test -f 'src/main.c'; then $(CYGPATH_W) 'src/main.c'; else $(CYGPATH_W) '$(srcdir)/src/main.c'; fi`
-
- src_mpd-event_pipe.o: src/event_pipe.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-event_pipe.o -MD -MP -MF $(DEPDIR)/src_mpd-event_pipe.Tpo -c -o src_mpd-event_pipe.o `test -f 'src/event_pipe.c' || echo '$(srcdir)/'`src/event_pipe.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-event_pipe.Tpo $(DEPDIR)/src_mpd-event_pipe.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-event_pipe.o -MD -MP -MF "$(DEPDIR)/src_mpd-event_pipe.Tpo" -c -o src_mpd-event_pipe.o `test -f 'src/event_pipe.c' || echo '$(srcdir)/'`src/event_pipe.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-event_pipe.Tpo" "$(DEPDIR)/src_mpd-event_pipe.Po"; else rm -f "$(DEPDIR)/src_mpd-event_pipe.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/event_pipe.c' object='src_mpd-event_pipe.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-event_pipe.o `test -f 'src/event_pipe.c' || echo '$(srcdir)/'`src/event_pipe.c
-
- src_mpd-event_pipe.obj: src/event_pipe.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-event_pipe.obj -MD -MP -MF $(DEPDIR)/src_mpd-event_pipe.Tpo -c -o src_mpd-event_pipe.obj `if test -f 'src/event_pipe.c'; then $(CYGPATH_W) 'src/event_pipe.c'; else $(CYGPATH_W) '$(srcdir)/src/event_pipe.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-event_pipe.Tpo $(DEPDIR)/src_mpd-event_pipe.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-event_pipe.obj -MD -MP -MF "$(DEPDIR)/src_mpd-event_pipe.Tpo" -c -o src_mpd-event_pipe.obj `if test -f 'src/event_pipe.c'; then $(CYGPATH_W) 'src/event_pipe.c'; else $(CYGPATH_W) '$(srcdir)/src/event_pipe.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-event_pipe.Tpo" "$(DEPDIR)/src_mpd-event_pipe.Po"; else rm -f "$(DEPDIR)/src_mpd-event_pipe.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/event_pipe.c' object='src_mpd-event_pipe.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-event_pipe.obj `if test -f 'src/event_pipe.c'; then $(CYGPATH_W) 'src/event_pipe.c'; else $(CYGPATH_W) '$(srcdir)/src/event_pipe.c'; fi`
-
- src_mpd-daemon.o: src/daemon.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-daemon.o -MD -MP -MF $(DEPDIR)/src_mpd-daemon.Tpo -c -o src_mpd-daemon.o `test -f 'src/daemon.c' || echo '$(srcdir)/'`src/daemon.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-daemon.Tpo $(DEPDIR)/src_mpd-daemon.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-daemon.o -MD -MP -MF "$(DEPDIR)/src_mpd-daemon.Tpo" -c -o src_mpd-daemon.o `test -f 'src/daemon.c' || echo '$(srcdir)/'`src/daemon.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-daemon.Tpo" "$(DEPDIR)/src_mpd-daemon.Po"; else rm -f "$(DEPDIR)/src_mpd-daemon.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/daemon.c' object='src_mpd-daemon.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-daemon.o `test -f 'src/daemon.c' || echo '$(srcdir)/'`src/daemon.c
-
- src_mpd-daemon.obj: src/daemon.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-daemon.obj -MD -MP -MF $(DEPDIR)/src_mpd-daemon.Tpo -c -o src_mpd-daemon.obj `if test -f 'src/daemon.c'; then $(CYGPATH_W) 'src/daemon.c'; else $(CYGPATH_W) '$(srcdir)/src/daemon.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-daemon.Tpo $(DEPDIR)/src_mpd-daemon.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-daemon.obj -MD -MP -MF "$(DEPDIR)/src_mpd-daemon.Tpo" -c -o src_mpd-daemon.obj `if test -f 'src/daemon.c'; then $(CYGPATH_W) 'src/daemon.c'; else $(CYGPATH_W) '$(srcdir)/src/daemon.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-daemon.Tpo" "$(DEPDIR)/src_mpd-daemon.Po"; else rm -f "$(DEPDIR)/src_mpd-daemon.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/daemon.c' object='src_mpd-daemon.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-daemon.obj `if test -f 'src/daemon.c'; then $(CYGPATH_W) 'src/daemon.c'; else $(CYGPATH_W) '$(srcdir)/src/daemon.c'; fi`
-
- src_mpd-normalize.o: src/normalize.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-normalize.o -MD -MP -MF $(DEPDIR)/src_mpd-normalize.Tpo -c -o src_mpd-normalize.o `test -f 'src/normalize.c' || echo '$(srcdir)/'`src/normalize.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-normalize.Tpo $(DEPDIR)/src_mpd-normalize.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-normalize.o -MD -MP -MF "$(DEPDIR)/src_mpd-normalize.Tpo" -c -o src_mpd-normalize.o `test -f 'src/normalize.c' || echo '$(srcdir)/'`src/normalize.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-normalize.Tpo" "$(DEPDIR)/src_mpd-normalize.Po"; else rm -f "$(DEPDIR)/src_mpd-normalize.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/normalize.c' object='src_mpd-normalize.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-normalize.o `test -f 'src/normalize.c' || echo '$(srcdir)/'`src/normalize.c
-
- src_mpd-normalize.obj: src/normalize.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-normalize.obj -MD -MP -MF $(DEPDIR)/src_mpd-normalize.Tpo -c -o src_mpd-normalize.obj `if test -f 'src/normalize.c'; then $(CYGPATH_W) 'src/normalize.c'; else $(CYGPATH_W) '$(srcdir)/src/normalize.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-normalize.Tpo $(DEPDIR)/src_mpd-normalize.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-normalize.obj -MD -MP -MF "$(DEPDIR)/src_mpd-normalize.Tpo" -c -o src_mpd-normalize.obj `if test -f 'src/normalize.c'; then $(CYGPATH_W) 'src/normalize.c'; else $(CYGPATH_W) '$(srcdir)/src/normalize.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-normalize.Tpo" "$(DEPDIR)/src_mpd-normalize.Po"; else rm -f "$(DEPDIR)/src_mpd-normalize.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/normalize.c' object='src_mpd-normalize.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-normalize.obj `if test -f 'src/normalize.c'; then $(CYGPATH_W) 'src/normalize.c'; else $(CYGPATH_W) '$(srcdir)/src/normalize.c'; fi`
-
- src_mpd-compress.o: src/compress.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-compress.o -MD -MP -MF $(DEPDIR)/src_mpd-compress.Tpo -c -o src_mpd-compress.o `test -f 'src/compress.c' || echo '$(srcdir)/'`src/compress.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-compress.Tpo $(DEPDIR)/src_mpd-compress.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-compress.o -MD -MP -MF "$(DEPDIR)/src_mpd-compress.Tpo" -c -o src_mpd-compress.o `test -f 'src/compress.c' || echo '$(srcdir)/'`src/compress.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-compress.Tpo" "$(DEPDIR)/src_mpd-compress.Po"; else rm -f "$(DEPDIR)/src_mpd-compress.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/compress.c' object='src_mpd-compress.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-compress.o `test -f 'src/compress.c' || echo '$(srcdir)/'`src/compress.c
-
- src_mpd-compress.obj: src/compress.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-compress.obj -MD -MP -MF $(DEPDIR)/src_mpd-compress.Tpo -c -o src_mpd-compress.obj `if test -f 'src/compress.c'; then $(CYGPATH_W) 'src/compress.c'; else $(CYGPATH_W) '$(srcdir)/src/compress.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-compress.Tpo $(DEPDIR)/src_mpd-compress.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-compress.obj -MD -MP -MF "$(DEPDIR)/src_mpd-compress.Tpo" -c -o src_mpd-compress.obj `if test -f 'src/compress.c'; then $(CYGPATH_W) 'src/compress.c'; else $(CYGPATH_W) '$(srcdir)/src/compress.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-compress.Tpo" "$(DEPDIR)/src_mpd-compress.Po"; else rm -f "$(DEPDIR)/src_mpd-compress.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/compress.c' object='src_mpd-compress.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-compress.obj `if test -f 'src/compress.c'; then $(CYGPATH_W) 'src/compress.c'; else $(CYGPATH_W) '$(srcdir)/src/compress.c'; fi`
-
- src_mpd-buffer.o: src/buffer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-buffer.o -MD -MP -MF $(DEPDIR)/src_mpd-buffer.Tpo -c -o src_mpd-buffer.o `test -f 'src/buffer.c' || echo '$(srcdir)/'`src/buffer.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-buffer.Tpo $(DEPDIR)/src_mpd-buffer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-buffer.o -MD -MP -MF "$(DEPDIR)/src_mpd-buffer.Tpo" -c -o src_mpd-buffer.o `test -f 'src/buffer.c' || echo '$(srcdir)/'`src/buffer.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-buffer.Tpo" "$(DEPDIR)/src_mpd-buffer.Po"; else rm -f "$(DEPDIR)/src_mpd-buffer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer.c' object='src_mpd-buffer.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-buffer.o `test -f 'src/buffer.c' || echo '$(srcdir)/'`src/buffer.c
-
- src_mpd-buffer.obj: src/buffer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-buffer.obj -MD -MP -MF $(DEPDIR)/src_mpd-buffer.Tpo -c -o src_mpd-buffer.obj `if test -f 'src/buffer.c'; then $(CYGPATH_W) 'src/buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-buffer.Tpo $(DEPDIR)/src_mpd-buffer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-buffer.obj -MD -MP -MF "$(DEPDIR)/src_mpd-buffer.Tpo" -c -o src_mpd-buffer.obj `if test -f 'src/buffer.c'; then $(CYGPATH_W) 'src/buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-buffer.Tpo" "$(DEPDIR)/src_mpd-buffer.Po"; else rm -f "$(DEPDIR)/src_mpd-buffer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer.c' object='src_mpd-buffer.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-buffer.obj `if test -f 'src/buffer.c'; then $(CYGPATH_W) 'src/buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer.c'; fi`
-
- src_mpd-pipe.o: src/pipe.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pipe.o -MD -MP -MF $(DEPDIR)/src_mpd-pipe.Tpo -c -o src_mpd-pipe.o `test -f 'src/pipe.c' || echo '$(srcdir)/'`src/pipe.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pipe.Tpo $(DEPDIR)/src_mpd-pipe.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pipe.o -MD -MP -MF "$(DEPDIR)/src_mpd-pipe.Tpo" -c -o src_mpd-pipe.o `test -f 'src/pipe.c' || echo '$(srcdir)/'`src/pipe.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pipe.Tpo" "$(DEPDIR)/src_mpd-pipe.Po"; else rm -f "$(DEPDIR)/src_mpd-pipe.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pipe.c' object='src_mpd-pipe.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pipe.o `test -f 'src/pipe.c' || echo '$(srcdir)/'`src/pipe.c
-
- src_mpd-pipe.obj: src/pipe.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pipe.obj -MD -MP -MF $(DEPDIR)/src_mpd-pipe.Tpo -c -o src_mpd-pipe.obj `if test -f 'src/pipe.c'; then $(CYGPATH_W) 'src/pipe.c'; else $(CYGPATH_W) '$(srcdir)/src/pipe.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pipe.Tpo $(DEPDIR)/src_mpd-pipe.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pipe.obj -MD -MP -MF "$(DEPDIR)/src_mpd-pipe.Tpo" -c -o src_mpd-pipe.obj `if test -f 'src/pipe.c'; then $(CYGPATH_W) 'src/pipe.c'; else $(CYGPATH_W) '$(srcdir)/src/pipe.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pipe.Tpo" "$(DEPDIR)/src_mpd-pipe.Po"; else rm -f "$(DEPDIR)/src_mpd-pipe.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pipe.c' object='src_mpd-pipe.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pipe.obj `if test -f 'src/pipe.c'; then $(CYGPATH_W) 'src/pipe.c'; else $(CYGPATH_W) '$(srcdir)/src/pipe.c'; fi`
-
- src_mpd-chunk.o: src/chunk.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-chunk.o -MD -MP -MF $(DEPDIR)/src_mpd-chunk.Tpo -c -o src_mpd-chunk.o `test -f 'src/chunk.c' || echo '$(srcdir)/'`src/chunk.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-chunk.Tpo $(DEPDIR)/src_mpd-chunk.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-chunk.o -MD -MP -MF "$(DEPDIR)/src_mpd-chunk.Tpo" -c -o src_mpd-chunk.o `test -f 'src/chunk.c' || echo '$(srcdir)/'`src/chunk.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-chunk.Tpo" "$(DEPDIR)/src_mpd-chunk.Po"; else rm -f "$(DEPDIR)/src_mpd-chunk.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/chunk.c' object='src_mpd-chunk.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-chunk.o `test -f 'src/chunk.c' || echo '$(srcdir)/'`src/chunk.c
-
- src_mpd-chunk.obj: src/chunk.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-chunk.obj -MD -MP -MF $(DEPDIR)/src_mpd-chunk.Tpo -c -o src_mpd-chunk.obj `if test -f 'src/chunk.c'; then $(CYGPATH_W) 'src/chunk.c'; else $(CYGPATH_W) '$(srcdir)/src/chunk.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-chunk.Tpo $(DEPDIR)/src_mpd-chunk.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-chunk.obj -MD -MP -MF "$(DEPDIR)/src_mpd-chunk.Tpo" -c -o src_mpd-chunk.obj `if test -f 'src/chunk.c'; then $(CYGPATH_W) 'src/chunk.c'; else $(CYGPATH_W) '$(srcdir)/src/chunk.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-chunk.Tpo" "$(DEPDIR)/src_mpd-chunk.Po"; else rm -f "$(DEPDIR)/src_mpd-chunk.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/chunk.c' object='src_mpd-chunk.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-chunk.obj `if test -f 'src/chunk.c'; then $(CYGPATH_W) 'src/chunk.c'; else $(CYGPATH_W) '$(srcdir)/src/chunk.c'; fi`
-
- src_mpd-path.o: src/path.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-path.o -MD -MP -MF $(DEPDIR)/src_mpd-path.Tpo -c -o src_mpd-path.o `test -f 'src/path.c' || echo '$(srcdir)/'`src/path.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-path.Tpo $(DEPDIR)/src_mpd-path.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-path.o -MD -MP -MF "$(DEPDIR)/src_mpd-path.Tpo" -c -o src_mpd-path.o `test -f 'src/path.c' || echo '$(srcdir)/'`src/path.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-path.Tpo" "$(DEPDIR)/src_mpd-path.Po"; else rm -f "$(DEPDIR)/src_mpd-path.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/path.c' object='src_mpd-path.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-path.o `test -f 'src/path.c' || echo '$(srcdir)/'`src/path.c
-
- src_mpd-path.obj: src/path.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-path.obj -MD -MP -MF $(DEPDIR)/src_mpd-path.Tpo -c -o src_mpd-path.obj `if test -f 'src/path.c'; then $(CYGPATH_W) 'src/path.c'; else $(CYGPATH_W) '$(srcdir)/src/path.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-path.Tpo $(DEPDIR)/src_mpd-path.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-path.obj -MD -MP -MF "$(DEPDIR)/src_mpd-path.Tpo" -c -o src_mpd-path.obj `if test -f 'src/path.c'; then $(CYGPATH_W) 'src/path.c'; else $(CYGPATH_W) '$(srcdir)/src/path.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-path.Tpo" "$(DEPDIR)/src_mpd-path.Po"; else rm -f "$(DEPDIR)/src_mpd-path.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/path.c' object='src_mpd-path.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-path.obj `if test -f 'src/path.c'; then $(CYGPATH_W) 'src/path.c'; else $(CYGPATH_W) '$(srcdir)/src/path.c'; fi`
-
- src_mpd-mapper.o: src/mapper.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mapper.o -MD -MP -MF $(DEPDIR)/src_mpd-mapper.Tpo -c -o src_mpd-mapper.o `test -f 'src/mapper.c' || echo '$(srcdir)/'`src/mapper.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mapper.Tpo $(DEPDIR)/src_mpd-mapper.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mapper.o -MD -MP -MF "$(DEPDIR)/src_mpd-mapper.Tpo" -c -o src_mpd-mapper.o `test -f 'src/mapper.c' || echo '$(srcdir)/'`src/mapper.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mapper.Tpo" "$(DEPDIR)/src_mpd-mapper.Po"; else rm -f "$(DEPDIR)/src_mpd-mapper.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mapper.c' object='src_mpd-mapper.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mapper.o `test -f 'src/mapper.c' || echo '$(srcdir)/'`src/mapper.c
-
- src_mpd-mapper.obj: src/mapper.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mapper.obj -MD -MP -MF $(DEPDIR)/src_mpd-mapper.Tpo -c -o src_mpd-mapper.obj `if test -f 'src/mapper.c'; then $(CYGPATH_W) 'src/mapper.c'; else $(CYGPATH_W) '$(srcdir)/src/mapper.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-mapper.Tpo $(DEPDIR)/src_mpd-mapper.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-mapper.obj -MD -MP -MF "$(DEPDIR)/src_mpd-mapper.Tpo" -c -o src_mpd-mapper.obj `if test -f 'src/mapper.c'; then $(CYGPATH_W) 'src/mapper.c'; else $(CYGPATH_W) '$(srcdir)/src/mapper.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-mapper.Tpo" "$(DEPDIR)/src_mpd-mapper.Po"; else rm -f "$(DEPDIR)/src_mpd-mapper.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mapper.c' object='src_mpd-mapper.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-mapper.obj `if test -f 'src/mapper.c'; then $(CYGPATH_W) 'src/mapper.c'; else $(CYGPATH_W) '$(srcdir)/src/mapper.c'; fi`
-
- src_mpd-page.o: src/page.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-page.o -MD -MP -MF $(DEPDIR)/src_mpd-page.Tpo -c -o src_mpd-page.o `test -f 'src/page.c' || echo '$(srcdir)/'`src/page.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-page.Tpo $(DEPDIR)/src_mpd-page.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-page.o -MD -MP -MF "$(DEPDIR)/src_mpd-page.Tpo" -c -o src_mpd-page.o `test -f 'src/page.c' || echo '$(srcdir)/'`src/page.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-page.Tpo" "$(DEPDIR)/src_mpd-page.Po"; else rm -f "$(DEPDIR)/src_mpd-page.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/page.c' object='src_mpd-page.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-page.o `test -f 'src/page.c' || echo '$(srcdir)/'`src/page.c
-
- src_mpd-page.obj: src/page.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-page.obj -MD -MP -MF $(DEPDIR)/src_mpd-page.Tpo -c -o src_mpd-page.obj `if test -f 'src/page.c'; then $(CYGPATH_W) 'src/page.c'; else $(CYGPATH_W) '$(srcdir)/src/page.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-page.Tpo $(DEPDIR)/src_mpd-page.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-page.obj -MD -MP -MF "$(DEPDIR)/src_mpd-page.Tpo" -c -o src_mpd-page.obj `if test -f 'src/page.c'; then $(CYGPATH_W) 'src/page.c'; else $(CYGPATH_W) '$(srcdir)/src/page.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-page.Tpo" "$(DEPDIR)/src_mpd-page.Po"; else rm -f "$(DEPDIR)/src_mpd-page.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/page.c' object='src_mpd-page.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-page.obj `if test -f 'src/page.c'; then $(CYGPATH_W) 'src/page.c'; else $(CYGPATH_W) '$(srcdir)/src/page.c'; fi`
-
- src_mpd-pcm_convert.o: src/pcm_convert.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_convert.o -MD -MP -MF $(DEPDIR)/src_mpd-pcm_convert.Tpo -c -o src_mpd-pcm_convert.o `test -f 'src/pcm_convert.c' || echo '$(srcdir)/'`src/pcm_convert.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_convert.Tpo $(DEPDIR)/src_mpd-pcm_convert.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_convert.o -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_convert.Tpo" -c -o src_mpd-pcm_convert.o `test -f 'src/pcm_convert.c' || echo '$(srcdir)/'`src/pcm_convert.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_convert.Tpo" "$(DEPDIR)/src_mpd-pcm_convert.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_convert.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_convert.c' object='src_mpd-pcm_convert.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_convert.o `test -f 'src/pcm_convert.c' || echo '$(srcdir)/'`src/pcm_convert.c
-
- src_mpd-pcm_convert.obj: src/pcm_convert.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_convert.obj -MD -MP -MF $(DEPDIR)/src_mpd-pcm_convert.Tpo -c -o src_mpd-pcm_convert.obj `if test -f 'src/pcm_convert.c'; then $(CYGPATH_W) 'src/pcm_convert.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_convert.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_convert.Tpo $(DEPDIR)/src_mpd-pcm_convert.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_convert.obj -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_convert.Tpo" -c -o src_mpd-pcm_convert.obj `if test -f 'src/pcm_convert.c'; then $(CYGPATH_W) 'src/pcm_convert.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_convert.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_convert.Tpo" "$(DEPDIR)/src_mpd-pcm_convert.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_convert.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_convert.c' object='src_mpd-pcm_convert.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_convert.obj `if test -f 'src/pcm_convert.c'; then $(CYGPATH_W) 'src/pcm_convert.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_convert.c'; fi`
-
- src_mpd-pcm_volume.o: src/pcm_volume.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_volume.o -MD -MP -MF $(DEPDIR)/src_mpd-pcm_volume.Tpo -c -o src_mpd-pcm_volume.o `test -f 'src/pcm_volume.c' || echo '$(srcdir)/'`src/pcm_volume.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_volume.Tpo $(DEPDIR)/src_mpd-pcm_volume.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_volume.o -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_volume.Tpo" -c -o src_mpd-pcm_volume.o `test -f 'src/pcm_volume.c' || echo '$(srcdir)/'`src/pcm_volume.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_volume.Tpo" "$(DEPDIR)/src_mpd-pcm_volume.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_volume.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_volume.c' object='src_mpd-pcm_volume.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_volume.o `test -f 'src/pcm_volume.c' || echo '$(srcdir)/'`src/pcm_volume.c
-
- src_mpd-pcm_volume.obj: src/pcm_volume.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_volume.obj -MD -MP -MF $(DEPDIR)/src_mpd-pcm_volume.Tpo -c -o src_mpd-pcm_volume.obj `if test -f 'src/pcm_volume.c'; then $(CYGPATH_W) 'src/pcm_volume.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_volume.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_volume.Tpo $(DEPDIR)/src_mpd-pcm_volume.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_volume.obj -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_volume.Tpo" -c -o src_mpd-pcm_volume.obj `if test -f 'src/pcm_volume.c'; then $(CYGPATH_W) 'src/pcm_volume.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_volume.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_volume.Tpo" "$(DEPDIR)/src_mpd-pcm_volume.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_volume.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_volume.c' object='src_mpd-pcm_volume.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_volume.obj `if test -f 'src/pcm_volume.c'; then $(CYGPATH_W) 'src/pcm_volume.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_volume.c'; fi`
-
- src_mpd-pcm_mix.o: src/pcm_mix.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_mix.o -MD -MP -MF $(DEPDIR)/src_mpd-pcm_mix.Tpo -c -o src_mpd-pcm_mix.o `test -f 'src/pcm_mix.c' || echo '$(srcdir)/'`src/pcm_mix.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_mix.Tpo $(DEPDIR)/src_mpd-pcm_mix.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_mix.o -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_mix.Tpo" -c -o src_mpd-pcm_mix.o `test -f 'src/pcm_mix.c' || echo '$(srcdir)/'`src/pcm_mix.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_mix.Tpo" "$(DEPDIR)/src_mpd-pcm_mix.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_mix.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_mix.c' object='src_mpd-pcm_mix.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_mix.o `test -f 'src/pcm_mix.c' || echo '$(srcdir)/'`src/pcm_mix.c
-
- src_mpd-pcm_mix.obj: src/pcm_mix.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_mix.obj -MD -MP -MF $(DEPDIR)/src_mpd-pcm_mix.Tpo -c -o src_mpd-pcm_mix.obj `if test -f 'src/pcm_mix.c'; then $(CYGPATH_W) 'src/pcm_mix.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_mix.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_mix.Tpo $(DEPDIR)/src_mpd-pcm_mix.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_mix.obj -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_mix.Tpo" -c -o src_mpd-pcm_mix.obj `if test -f 'src/pcm_mix.c'; then $(CYGPATH_W) 'src/pcm_mix.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_mix.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_mix.Tpo" "$(DEPDIR)/src_mpd-pcm_mix.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_mix.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_mix.c' object='src_mpd-pcm_mix.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_mix.obj `if test -f 'src/pcm_mix.c'; then $(CYGPATH_W) 'src/pcm_mix.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_mix.c'; fi`
-
- src_mpd-pcm_channels.o: src/pcm_channels.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_channels.o -MD -MP -MF $(DEPDIR)/src_mpd-pcm_channels.Tpo -c -o src_mpd-pcm_channels.o `test -f 'src/pcm_channels.c' || echo '$(srcdir)/'`src/pcm_channels.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_channels.Tpo $(DEPDIR)/src_mpd-pcm_channels.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_channels.o -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_channels.Tpo" -c -o src_mpd-pcm_channels.o `test -f 'src/pcm_channels.c' || echo '$(srcdir)/'`src/pcm_channels.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_channels.Tpo" "$(DEPDIR)/src_mpd-pcm_channels.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_channels.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_channels.c' object='src_mpd-pcm_channels.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_channels.o `test -f 'src/pcm_channels.c' || echo '$(srcdir)/'`src/pcm_channels.c
-
- src_mpd-pcm_channels.obj: src/pcm_channels.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_channels.obj -MD -MP -MF $(DEPDIR)/src_mpd-pcm_channels.Tpo -c -o src_mpd-pcm_channels.obj `if test -f 'src/pcm_channels.c'; then $(CYGPATH_W) 'src/pcm_channels.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_channels.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_channels.Tpo $(DEPDIR)/src_mpd-pcm_channels.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_channels.obj -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_channels.Tpo" -c -o src_mpd-pcm_channels.obj `if test -f 'src/pcm_channels.c'; then $(CYGPATH_W) 'src/pcm_channels.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_channels.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_channels.Tpo" "$(DEPDIR)/src_mpd-pcm_channels.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_channels.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_channels.c' object='src_mpd-pcm_channels.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_channels.obj `if test -f 'src/pcm_channels.c'; then $(CYGPATH_W) 'src/pcm_channels.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_channels.c'; fi`
-
- src_mpd-pcm_format.o: src/pcm_format.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_format.o -MD -MP -MF $(DEPDIR)/src_mpd-pcm_format.Tpo -c -o src_mpd-pcm_format.o `test -f 'src/pcm_format.c' || echo '$(srcdir)/'`src/pcm_format.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_format.Tpo $(DEPDIR)/src_mpd-pcm_format.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_format.o -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_format.Tpo" -c -o src_mpd-pcm_format.o `test -f 'src/pcm_format.c' || echo '$(srcdir)/'`src/pcm_format.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_format.Tpo" "$(DEPDIR)/src_mpd-pcm_format.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_format.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_format.c' object='src_mpd-pcm_format.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_format.o `test -f 'src/pcm_format.c' || echo '$(srcdir)/'`src/pcm_format.c
-
- src_mpd-pcm_format.obj: src/pcm_format.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_format.obj -MD -MP -MF $(DEPDIR)/src_mpd-pcm_format.Tpo -c -o src_mpd-pcm_format.obj `if test -f 'src/pcm_format.c'; then $(CYGPATH_W) 'src/pcm_format.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_format.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_format.Tpo $(DEPDIR)/src_mpd-pcm_format.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_format.obj -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_format.Tpo" -c -o src_mpd-pcm_format.obj `if test -f 'src/pcm_format.c'; then $(CYGPATH_W) 'src/pcm_format.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_format.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_format.Tpo" "$(DEPDIR)/src_mpd-pcm_format.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_format.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_format.c' object='src_mpd-pcm_format.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_format.obj `if test -f 'src/pcm_format.c'; then $(CYGPATH_W) 'src/pcm_format.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_format.c'; fi`
-
- src_mpd-pcm_resample.o: src/pcm_resample.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_resample.o -MD -MP -MF $(DEPDIR)/src_mpd-pcm_resample.Tpo -c -o src_mpd-pcm_resample.o `test -f 'src/pcm_resample.c' || echo '$(srcdir)/'`src/pcm_resample.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_resample.Tpo $(DEPDIR)/src_mpd-pcm_resample.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_resample.o -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_resample.Tpo" -c -o src_mpd-pcm_resample.o `test -f 'src/pcm_resample.c' || echo '$(srcdir)/'`src/pcm_resample.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_resample.Tpo" "$(DEPDIR)/src_mpd-pcm_resample.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_resample.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_resample.c' object='src_mpd-pcm_resample.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_resample.o `test -f 'src/pcm_resample.c' || echo '$(srcdir)/'`src/pcm_resample.c
-
- src_mpd-pcm_resample.obj: src/pcm_resample.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_resample.obj -MD -MP -MF $(DEPDIR)/src_mpd-pcm_resample.Tpo -c -o src_mpd-pcm_resample.obj `if test -f 'src/pcm_resample.c'; then $(CYGPATH_W) 'src/pcm_resample.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_resample.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_resample.Tpo $(DEPDIR)/src_mpd-pcm_resample.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_resample.obj -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_resample.Tpo" -c -o src_mpd-pcm_resample.obj `if test -f 'src/pcm_resample.c'; then $(CYGPATH_W) 'src/pcm_resample.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_resample.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_resample.Tpo" "$(DEPDIR)/src_mpd-pcm_resample.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_resample.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_resample.c' object='src_mpd-pcm_resample.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_resample.obj `if test -f 'src/pcm_resample.c'; then $(CYGPATH_W) 'src/pcm_resample.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_resample.c'; fi`
-
- src_mpd-pcm_resample_fallback.o: src/pcm_resample_fallback.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_resample_fallback.o -MD -MP -MF $(DEPDIR)/src_mpd-pcm_resample_fallback.Tpo -c -o src_mpd-pcm_resample_fallback.o `test -f 'src/pcm_resample_fallback.c' || echo '$(srcdir)/'`src/pcm_resample_fallback.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_resample_fallback.Tpo $(DEPDIR)/src_mpd-pcm_resample_fallback.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_resample_fallback.o -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_resample_fallback.Tpo" -c -o src_mpd-pcm_resample_fallback.o `test -f 'src/pcm_resample_fallback.c' || echo '$(srcdir)/'`src/pcm_resample_fallback.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_resample_fallback.Tpo" "$(DEPDIR)/src_mpd-pcm_resample_fallback.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_resample_fallback.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_resample_fallback.c' object='src_mpd-pcm_resample_fallback.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_resample_fallback.o `test -f 'src/pcm_resample_fallback.c' || echo '$(srcdir)/'`src/pcm_resample_fallback.c
-
- src_mpd-pcm_resample_fallback.obj: src/pcm_resample_fallback.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_resample_fallback.obj -MD -MP -MF $(DEPDIR)/src_mpd-pcm_resample_fallback.Tpo -c -o src_mpd-pcm_resample_fallback.obj `if test -f 'src/pcm_resample_fallback.c'; then $(CYGPATH_W) 'src/pcm_resample_fallback.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_resample_fallback.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_resample_fallback.Tpo $(DEPDIR)/src_mpd-pcm_resample_fallback.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_resample_fallback.obj -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_resample_fallback.Tpo" -c -o src_mpd-pcm_resample_fallback.obj `if test -f 'src/pcm_resample_fallback.c'; then $(CYGPATH_W) 'src/pcm_resample_fallback.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_resample_fallback.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_resample_fallback.Tpo" "$(DEPDIR)/src_mpd-pcm_resample_fallback.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_resample_fallback.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_resample_fallback.c' object='src_mpd-pcm_resample_fallback.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_resample_fallback.obj `if test -f 'src/pcm_resample_fallback.c'; then $(CYGPATH_W) 'src/pcm_resample_fallback.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_resample_fallback.c'; fi`
-
- src_mpd-pcm_dither.o: src/pcm_dither.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_dither.o -MD -MP -MF $(DEPDIR)/src_mpd-pcm_dither.Tpo -c -o src_mpd-pcm_dither.o `test -f 'src/pcm_dither.c' || echo '$(srcdir)/'`src/pcm_dither.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_dither.Tpo $(DEPDIR)/src_mpd-pcm_dither.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_dither.o -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_dither.Tpo" -c -o src_mpd-pcm_dither.o `test -f 'src/pcm_dither.c' || echo '$(srcdir)/'`src/pcm_dither.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_dither.Tpo" "$(DEPDIR)/src_mpd-pcm_dither.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_dither.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_dither.c' object='src_mpd-pcm_dither.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_dither.o `test -f 'src/pcm_dither.c' || echo '$(srcdir)/'`src/pcm_dither.c
-
- src_mpd-pcm_dither.obj: src/pcm_dither.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_dither.obj -MD -MP -MF $(DEPDIR)/src_mpd-pcm_dither.Tpo -c -o src_mpd-pcm_dither.obj `if test -f 'src/pcm_dither.c'; then $(CYGPATH_W) 'src/pcm_dither.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_dither.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_dither.Tpo $(DEPDIR)/src_mpd-pcm_dither.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_dither.obj -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_dither.Tpo" -c -o src_mpd-pcm_dither.obj `if test -f 'src/pcm_dither.c'; then $(CYGPATH_W) 'src/pcm_dither.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_dither.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_dither.Tpo" "$(DEPDIR)/src_mpd-pcm_dither.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_dither.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_dither.c' object='src_mpd-pcm_dither.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_dither.obj `if test -f 'src/pcm_dither.c'; then $(CYGPATH_W) 'src/pcm_dither.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_dither.c'; fi`
-
- src_mpd-permission.o: src/permission.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-permission.o -MD -MP -MF $(DEPDIR)/src_mpd-permission.Tpo -c -o src_mpd-permission.o `test -f 'src/permission.c' || echo '$(srcdir)/'`src/permission.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-permission.Tpo $(DEPDIR)/src_mpd-permission.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-permission.o -MD -MP -MF "$(DEPDIR)/src_mpd-permission.Tpo" -c -o src_mpd-permission.o `test -f 'src/permission.c' || echo '$(srcdir)/'`src/permission.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-permission.Tpo" "$(DEPDIR)/src_mpd-permission.Po"; else rm -f "$(DEPDIR)/src_mpd-permission.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/permission.c' object='src_mpd-permission.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-permission.o `test -f 'src/permission.c' || echo '$(srcdir)/'`src/permission.c
-
- src_mpd-permission.obj: src/permission.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-permission.obj -MD -MP -MF $(DEPDIR)/src_mpd-permission.Tpo -c -o src_mpd-permission.obj `if test -f 'src/permission.c'; then $(CYGPATH_W) 'src/permission.c'; else $(CYGPATH_W) '$(srcdir)/src/permission.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-permission.Tpo $(DEPDIR)/src_mpd-permission.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-permission.obj -MD -MP -MF "$(DEPDIR)/src_mpd-permission.Tpo" -c -o src_mpd-permission.obj `if test -f 'src/permission.c'; then $(CYGPATH_W) 'src/permission.c'; else $(CYGPATH_W) '$(srcdir)/src/permission.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-permission.Tpo" "$(DEPDIR)/src_mpd-permission.Po"; else rm -f "$(DEPDIR)/src_mpd-permission.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/permission.c' object='src_mpd-permission.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-permission.obj `if test -f 'src/permission.c'; then $(CYGPATH_W) 'src/permission.c'; else $(CYGPATH_W) '$(srcdir)/src/permission.c'; fi`
-
- src_mpd-player_thread.o: src/player_thread.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-player_thread.o -MD -MP -MF $(DEPDIR)/src_mpd-player_thread.Tpo -c -o src_mpd-player_thread.o `test -f 'src/player_thread.c' || echo '$(srcdir)/'`src/player_thread.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-player_thread.Tpo $(DEPDIR)/src_mpd-player_thread.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-player_thread.o -MD -MP -MF "$(DEPDIR)/src_mpd-player_thread.Tpo" -c -o src_mpd-player_thread.o `test -f 'src/player_thread.c' || echo '$(srcdir)/'`src/player_thread.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-player_thread.Tpo" "$(DEPDIR)/src_mpd-player_thread.Po"; else rm -f "$(DEPDIR)/src_mpd-player_thread.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/player_thread.c' object='src_mpd-player_thread.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-player_thread.o `test -f 'src/player_thread.c' || echo '$(srcdir)/'`src/player_thread.c
-
- src_mpd-player_thread.obj: src/player_thread.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-player_thread.obj -MD -MP -MF $(DEPDIR)/src_mpd-player_thread.Tpo -c -o src_mpd-player_thread.obj `if test -f 'src/player_thread.c'; then $(CYGPATH_W) 'src/player_thread.c'; else $(CYGPATH_W) '$(srcdir)/src/player_thread.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-player_thread.Tpo $(DEPDIR)/src_mpd-player_thread.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-player_thread.obj -MD -MP -MF "$(DEPDIR)/src_mpd-player_thread.Tpo" -c -o src_mpd-player_thread.obj `if test -f 'src/player_thread.c'; then $(CYGPATH_W) 'src/player_thread.c'; else $(CYGPATH_W) '$(srcdir)/src/player_thread.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-player_thread.Tpo" "$(DEPDIR)/src_mpd-player_thread.Po"; else rm -f "$(DEPDIR)/src_mpd-player_thread.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/player_thread.c' object='src_mpd-player_thread.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-player_thread.obj `if test -f 'src/player_thread.c'; then $(CYGPATH_W) 'src/player_thread.c'; else $(CYGPATH_W) '$(srcdir)/src/player_thread.c'; fi`
-
- src_mpd-player_control.o: src/player_control.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-player_control.o -MD -MP -MF $(DEPDIR)/src_mpd-player_control.Tpo -c -o src_mpd-player_control.o `test -f 'src/player_control.c' || echo '$(srcdir)/'`src/player_control.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-player_control.Tpo $(DEPDIR)/src_mpd-player_control.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-player_control.o -MD -MP -MF "$(DEPDIR)/src_mpd-player_control.Tpo" -c -o src_mpd-player_control.o `test -f 'src/player_control.c' || echo '$(srcdir)/'`src/player_control.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-player_control.Tpo" "$(DEPDIR)/src_mpd-player_control.Po"; else rm -f "$(DEPDIR)/src_mpd-player_control.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/player_control.c' object='src_mpd-player_control.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-player_control.o `test -f 'src/player_control.c' || echo '$(srcdir)/'`src/player_control.c
-
- src_mpd-player_control.obj: src/player_control.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-player_control.obj -MD -MP -MF $(DEPDIR)/src_mpd-player_control.Tpo -c -o src_mpd-player_control.obj `if test -f 'src/player_control.c'; then $(CYGPATH_W) 'src/player_control.c'; else $(CYGPATH_W) '$(srcdir)/src/player_control.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-player_control.Tpo $(DEPDIR)/src_mpd-player_control.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-player_control.obj -MD -MP -MF "$(DEPDIR)/src_mpd-player_control.Tpo" -c -o src_mpd-player_control.obj `if test -f 'src/player_control.c'; then $(CYGPATH_W) 'src/player_control.c'; else $(CYGPATH_W) '$(srcdir)/src/player_control.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-player_control.Tpo" "$(DEPDIR)/src_mpd-player_control.Po"; else rm -f "$(DEPDIR)/src_mpd-player_control.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/player_control.c' object='src_mpd-player_control.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-player_control.obj `if test -f 'src/player_control.c'; then $(CYGPATH_W) 'src/player_control.c'; else $(CYGPATH_W) '$(srcdir)/src/player_control.c'; fi`
-
- src_mpd-playlist.o: src/playlist.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist.o -MD -MP -MF $(DEPDIR)/src_mpd-playlist.Tpo -c -o src_mpd-playlist.o `test -f 'src/playlist.c' || echo '$(srcdir)/'`src/playlist.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-playlist.Tpo $(DEPDIR)/src_mpd-playlist.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist.o -MD -MP -MF "$(DEPDIR)/src_mpd-playlist.Tpo" -c -o src_mpd-playlist.o `test -f 'src/playlist.c' || echo '$(srcdir)/'`src/playlist.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-playlist.Tpo" "$(DEPDIR)/src_mpd-playlist.Po"; else rm -f "$(DEPDIR)/src_mpd-playlist.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/playlist.c' object='src_mpd-playlist.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-playlist.o `test -f 'src/playlist.c' || echo '$(srcdir)/'`src/playlist.c
-
- src_mpd-playlist.obj: src/playlist.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist.obj -MD -MP -MF $(DEPDIR)/src_mpd-playlist.Tpo -c -o src_mpd-playlist.obj `if test -f 'src/playlist.c'; then $(CYGPATH_W) 'src/playlist.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-playlist.Tpo $(DEPDIR)/src_mpd-playlist.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist.obj -MD -MP -MF "$(DEPDIR)/src_mpd-playlist.Tpo" -c -o src_mpd-playlist.obj `if test -f 'src/playlist.c'; then $(CYGPATH_W) 'src/playlist.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-playlist.Tpo" "$(DEPDIR)/src_mpd-playlist.Po"; else rm -f "$(DEPDIR)/src_mpd-playlist.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/playlist.c' object='src_mpd-playlist.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-playlist.obj `if test -f 'src/playlist.c'; then $(CYGPATH_W) 'src/playlist.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist.c'; fi`
-
- src_mpd-playlist_global.o: src/playlist_global.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_global.o -MD -MP -MF $(DEPDIR)/src_mpd-playlist_global.Tpo -c -o src_mpd-playlist_global.o `test -f 'src/playlist_global.c' || echo '$(srcdir)/'`src/playlist_global.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-playlist_global.Tpo $(DEPDIR)/src_mpd-playlist_global.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_global.o -MD -MP -MF "$(DEPDIR)/src_mpd-playlist_global.Tpo" -c -o src_mpd-playlist_global.o `test -f 'src/playlist_global.c' || echo '$(srcdir)/'`src/playlist_global.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-playlist_global.Tpo" "$(DEPDIR)/src_mpd-playlist_global.Po"; else rm -f "$(DEPDIR)/src_mpd-playlist_global.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/playlist_global.c' object='src_mpd-playlist_global.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-playlist_global.o `test -f 'src/playlist_global.c' || echo '$(srcdir)/'`src/playlist_global.c
-
- src_mpd-playlist_global.obj: src/playlist_global.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_global.obj -MD -MP -MF $(DEPDIR)/src_mpd-playlist_global.Tpo -c -o src_mpd-playlist_global.obj `if test -f 'src/playlist_global.c'; then $(CYGPATH_W) 'src/playlist_global.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_global.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-playlist_global.Tpo $(DEPDIR)/src_mpd-playlist_global.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_global.obj -MD -MP -MF "$(DEPDIR)/src_mpd-playlist_global.Tpo" -c -o src_mpd-playlist_global.obj `if test -f 'src/playlist_global.c'; then $(CYGPATH_W) 'src/playlist_global.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_global.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-playlist_global.Tpo" "$(DEPDIR)/src_mpd-playlist_global.Po"; else rm -f "$(DEPDIR)/src_mpd-playlist_global.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/playlist_global.c' object='src_mpd-playlist_global.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-playlist_global.obj `if test -f 'src/playlist_global.c'; then $(CYGPATH_W) 'src/playlist_global.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_global.c'; fi`
-
- src_mpd-playlist_control.o: src/playlist_control.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_control.o -MD -MP -MF $(DEPDIR)/src_mpd-playlist_control.Tpo -c -o src_mpd-playlist_control.o `test -f 'src/playlist_control.c' || echo '$(srcdir)/'`src/playlist_control.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-playlist_control.Tpo $(DEPDIR)/src_mpd-playlist_control.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_control.o -MD -MP -MF "$(DEPDIR)/src_mpd-playlist_control.Tpo" -c -o src_mpd-playlist_control.o `test -f 'src/playlist_control.c' || echo '$(srcdir)/'`src/playlist_control.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-playlist_control.Tpo" "$(DEPDIR)/src_mpd-playlist_control.Po"; else rm -f "$(DEPDIR)/src_mpd-playlist_control.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/playlist_control.c' object='src_mpd-playlist_control.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-playlist_control.o `test -f 'src/playlist_control.c' || echo '$(srcdir)/'`src/playlist_control.c
-
- src_mpd-playlist_control.obj: src/playlist_control.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_control.obj -MD -MP -MF $(DEPDIR)/src_mpd-playlist_control.Tpo -c -o src_mpd-playlist_control.obj `if test -f 'src/playlist_control.c'; then $(CYGPATH_W) 'src/playlist_control.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_control.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-playlist_control.Tpo $(DEPDIR)/src_mpd-playlist_control.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_control.obj -MD -MP -MF "$(DEPDIR)/src_mpd-playlist_control.Tpo" -c -o src_mpd-playlist_control.obj `if test -f 'src/playlist_control.c'; then $(CYGPATH_W) 'src/playlist_control.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_control.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-playlist_control.Tpo" "$(DEPDIR)/src_mpd-playlist_control.Po"; else rm -f "$(DEPDIR)/src_mpd-playlist_control.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/playlist_control.c' object='src_mpd-playlist_control.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-playlist_control.obj `if test -f 'src/playlist_control.c'; then $(CYGPATH_W) 'src/playlist_control.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_control.c'; fi`
-
- src_mpd-playlist_edit.o: src/playlist_edit.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_edit.o -MD -MP -MF $(DEPDIR)/src_mpd-playlist_edit.Tpo -c -o src_mpd-playlist_edit.o `test -f 'src/playlist_edit.c' || echo '$(srcdir)/'`src/playlist_edit.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-playlist_edit.Tpo $(DEPDIR)/src_mpd-playlist_edit.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_edit.o -MD -MP -MF "$(DEPDIR)/src_mpd-playlist_edit.Tpo" -c -o src_mpd-playlist_edit.o `test -f 'src/playlist_edit.c' || echo '$(srcdir)/'`src/playlist_edit.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-playlist_edit.Tpo" "$(DEPDIR)/src_mpd-playlist_edit.Po"; else rm -f "$(DEPDIR)/src_mpd-playlist_edit.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/playlist_edit.c' object='src_mpd-playlist_edit.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-playlist_edit.o `test -f 'src/playlist_edit.c' || echo '$(srcdir)/'`src/playlist_edit.c
-
- src_mpd-playlist_edit.obj: src/playlist_edit.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_edit.obj -MD -MP -MF $(DEPDIR)/src_mpd-playlist_edit.Tpo -c -o src_mpd-playlist_edit.obj `if test -f 'src/playlist_edit.c'; then $(CYGPATH_W) 'src/playlist_edit.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_edit.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-playlist_edit.Tpo $(DEPDIR)/src_mpd-playlist_edit.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_edit.obj -MD -MP -MF "$(DEPDIR)/src_mpd-playlist_edit.Tpo" -c -o src_mpd-playlist_edit.obj `if test -f 'src/playlist_edit.c'; then $(CYGPATH_W) 'src/playlist_edit.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_edit.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-playlist_edit.Tpo" "$(DEPDIR)/src_mpd-playlist_edit.Po"; else rm -f "$(DEPDIR)/src_mpd-playlist_edit.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/playlist_edit.c' object='src_mpd-playlist_edit.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-playlist_edit.obj `if test -f 'src/playlist_edit.c'; then $(CYGPATH_W) 'src/playlist_edit.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_edit.c'; fi`
-
- src_mpd-playlist_print.o: src/playlist_print.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_print.o -MD -MP -MF $(DEPDIR)/src_mpd-playlist_print.Tpo -c -o src_mpd-playlist_print.o `test -f 'src/playlist_print.c' || echo '$(srcdir)/'`src/playlist_print.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-playlist_print.Tpo $(DEPDIR)/src_mpd-playlist_print.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_print.o -MD -MP -MF "$(DEPDIR)/src_mpd-playlist_print.Tpo" -c -o src_mpd-playlist_print.o `test -f 'src/playlist_print.c' || echo '$(srcdir)/'`src/playlist_print.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-playlist_print.Tpo" "$(DEPDIR)/src_mpd-playlist_print.Po"; else rm -f "$(DEPDIR)/src_mpd-playlist_print.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/playlist_print.c' object='src_mpd-playlist_print.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-playlist_print.o `test -f 'src/playlist_print.c' || echo '$(srcdir)/'`src/playlist_print.c
-
- src_mpd-playlist_print.obj: src/playlist_print.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_print.obj -MD -MP -MF $(DEPDIR)/src_mpd-playlist_print.Tpo -c -o src_mpd-playlist_print.obj `if test -f 'src/playlist_print.c'; then $(CYGPATH_W) 'src/playlist_print.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_print.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-playlist_print.Tpo $(DEPDIR)/src_mpd-playlist_print.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_print.obj -MD -MP -MF "$(DEPDIR)/src_mpd-playlist_print.Tpo" -c -o src_mpd-playlist_print.obj `if test -f 'src/playlist_print.c'; then $(CYGPATH_W) 'src/playlist_print.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_print.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-playlist_print.Tpo" "$(DEPDIR)/src_mpd-playlist_print.Po"; else rm -f "$(DEPDIR)/src_mpd-playlist_print.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/playlist_print.c' object='src_mpd-playlist_print.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-playlist_print.obj `if test -f 'src/playlist_print.c'; then $(CYGPATH_W) 'src/playlist_print.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_print.c'; fi`
-
- src_mpd-playlist_save.o: src/playlist_save.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_save.o -MD -MP -MF $(DEPDIR)/src_mpd-playlist_save.Tpo -c -o src_mpd-playlist_save.o `test -f 'src/playlist_save.c' || echo '$(srcdir)/'`src/playlist_save.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-playlist_save.Tpo $(DEPDIR)/src_mpd-playlist_save.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_save.o -MD -MP -MF "$(DEPDIR)/src_mpd-playlist_save.Tpo" -c -o src_mpd-playlist_save.o `test -f 'src/playlist_save.c' || echo '$(srcdir)/'`src/playlist_save.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-playlist_save.Tpo" "$(DEPDIR)/src_mpd-playlist_save.Po"; else rm -f "$(DEPDIR)/src_mpd-playlist_save.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/playlist_save.c' object='src_mpd-playlist_save.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-playlist_save.o `test -f 'src/playlist_save.c' || echo '$(srcdir)/'`src/playlist_save.c
-
- src_mpd-playlist_save.obj: src/playlist_save.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_save.obj -MD -MP -MF $(DEPDIR)/src_mpd-playlist_save.Tpo -c -o src_mpd-playlist_save.obj `if test -f 'src/playlist_save.c'; then $(CYGPATH_W) 'src/playlist_save.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_save.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-playlist_save.Tpo $(DEPDIR)/src_mpd-playlist_save.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_save.obj -MD -MP -MF "$(DEPDIR)/src_mpd-playlist_save.Tpo" -c -o src_mpd-playlist_save.obj `if test -f 'src/playlist_save.c'; then $(CYGPATH_W) 'src/playlist_save.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_save.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-playlist_save.Tpo" "$(DEPDIR)/src_mpd-playlist_save.Po"; else rm -f "$(DEPDIR)/src_mpd-playlist_save.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/playlist_save.c' object='src_mpd-playlist_save.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-playlist_save.obj `if test -f 'src/playlist_save.c'; then $(CYGPATH_W) 'src/playlist_save.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_save.c'; fi`
-
- src_mpd-playlist_state.o: src/playlist_state.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_state.o -MD -MP -MF $(DEPDIR)/src_mpd-playlist_state.Tpo -c -o src_mpd-playlist_state.o `test -f 'src/playlist_state.c' || echo '$(srcdir)/'`src/playlist_state.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-playlist_state.Tpo $(DEPDIR)/src_mpd-playlist_state.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_state.o -MD -MP -MF "$(DEPDIR)/src_mpd-playlist_state.Tpo" -c -o src_mpd-playlist_state.o `test -f 'src/playlist_state.c' || echo '$(srcdir)/'`src/playlist_state.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-playlist_state.Tpo" "$(DEPDIR)/src_mpd-playlist_state.Po"; else rm -f "$(DEPDIR)/src_mpd-playlist_state.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/playlist_state.c' object='src_mpd-playlist_state.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-playlist_state.o `test -f 'src/playlist_state.c' || echo '$(srcdir)/'`src/playlist_state.c
-
- src_mpd-playlist_state.obj: src/playlist_state.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_state.obj -MD -MP -MF $(DEPDIR)/src_mpd-playlist_state.Tpo -c -o src_mpd-playlist_state.obj `if test -f 'src/playlist_state.c'; then $(CYGPATH_W) 'src/playlist_state.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_state.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-playlist_state.Tpo $(DEPDIR)/src_mpd-playlist_state.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-playlist_state.obj -MD -MP -MF "$(DEPDIR)/src_mpd-playlist_state.Tpo" -c -o src_mpd-playlist_state.obj `if test -f 'src/playlist_state.c'; then $(CYGPATH_W) 'src/playlist_state.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_state.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-playlist_state.Tpo" "$(DEPDIR)/src_mpd-playlist_state.Po"; else rm -f "$(DEPDIR)/src_mpd-playlist_state.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/playlist_state.c' object='src_mpd-playlist_state.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-playlist_state.obj `if test -f 'src/playlist_state.c'; then $(CYGPATH_W) 'src/playlist_state.c'; else $(CYGPATH_W) '$(srcdir)/src/playlist_state.c'; fi`
-
- src_mpd-queue.o: src/queue.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-queue.o -MD -MP -MF $(DEPDIR)/src_mpd-queue.Tpo -c -o src_mpd-queue.o `test -f 'src/queue.c' || echo '$(srcdir)/'`src/queue.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-queue.Tpo $(DEPDIR)/src_mpd-queue.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-queue.o -MD -MP -MF "$(DEPDIR)/src_mpd-queue.Tpo" -c -o src_mpd-queue.o `test -f 'src/queue.c' || echo '$(srcdir)/'`src/queue.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-queue.Tpo" "$(DEPDIR)/src_mpd-queue.Po"; else rm -f "$(DEPDIR)/src_mpd-queue.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/queue.c' object='src_mpd-queue.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-queue.o `test -f 'src/queue.c' || echo '$(srcdir)/'`src/queue.c
-
- src_mpd-queue.obj: src/queue.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-queue.obj -MD -MP -MF $(DEPDIR)/src_mpd-queue.Tpo -c -o src_mpd-queue.obj `if test -f 'src/queue.c'; then $(CYGPATH_W) 'src/queue.c'; else $(CYGPATH_W) '$(srcdir)/src/queue.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-queue.Tpo $(DEPDIR)/src_mpd-queue.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-queue.obj -MD -MP -MF "$(DEPDIR)/src_mpd-queue.Tpo" -c -o src_mpd-queue.obj `if test -f 'src/queue.c'; then $(CYGPATH_W) 'src/queue.c'; else $(CYGPATH_W) '$(srcdir)/src/queue.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-queue.Tpo" "$(DEPDIR)/src_mpd-queue.Po"; else rm -f "$(DEPDIR)/src_mpd-queue.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/queue.c' object='src_mpd-queue.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-queue.obj `if test -f 'src/queue.c'; then $(CYGPATH_W) 'src/queue.c'; else $(CYGPATH_W) '$(srcdir)/src/queue.c'; fi`
-
- src_mpd-queue_print.o: src/queue_print.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-queue_print.o -MD -MP -MF $(DEPDIR)/src_mpd-queue_print.Tpo -c -o src_mpd-queue_print.o `test -f 'src/queue_print.c' || echo '$(srcdir)/'`src/queue_print.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-queue_print.Tpo $(DEPDIR)/src_mpd-queue_print.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-queue_print.o -MD -MP -MF "$(DEPDIR)/src_mpd-queue_print.Tpo" -c -o src_mpd-queue_print.o `test -f 'src/queue_print.c' || echo '$(srcdir)/'`src/queue_print.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-queue_print.Tpo" "$(DEPDIR)/src_mpd-queue_print.Po"; else rm -f "$(DEPDIR)/src_mpd-queue_print.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/queue_print.c' object='src_mpd-queue_print.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-queue_print.o `test -f 'src/queue_print.c' || echo '$(srcdir)/'`src/queue_print.c
-
- src_mpd-queue_print.obj: src/queue_print.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-queue_print.obj -MD -MP -MF $(DEPDIR)/src_mpd-queue_print.Tpo -c -o src_mpd-queue_print.obj `if test -f 'src/queue_print.c'; then $(CYGPATH_W) 'src/queue_print.c'; else $(CYGPATH_W) '$(srcdir)/src/queue_print.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-queue_print.Tpo $(DEPDIR)/src_mpd-queue_print.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-queue_print.obj -MD -MP -MF "$(DEPDIR)/src_mpd-queue_print.Tpo" -c -o src_mpd-queue_print.obj `if test -f 'src/queue_print.c'; then $(CYGPATH_W) 'src/queue_print.c'; else $(CYGPATH_W) '$(srcdir)/src/queue_print.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-queue_print.Tpo" "$(DEPDIR)/src_mpd-queue_print.Po"; else rm -f "$(DEPDIR)/src_mpd-queue_print.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/queue_print.c' object='src_mpd-queue_print.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-queue_print.obj `if test -f 'src/queue_print.c'; then $(CYGPATH_W) 'src/queue_print.c'; else $(CYGPATH_W) '$(srcdir)/src/queue_print.c'; fi`
-
- src_mpd-queue_save.o: src/queue_save.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-queue_save.o -MD -MP -MF $(DEPDIR)/src_mpd-queue_save.Tpo -c -o src_mpd-queue_save.o `test -f 'src/queue_save.c' || echo '$(srcdir)/'`src/queue_save.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-queue_save.Tpo $(DEPDIR)/src_mpd-queue_save.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-queue_save.o -MD -MP -MF "$(DEPDIR)/src_mpd-queue_save.Tpo" -c -o src_mpd-queue_save.o `test -f 'src/queue_save.c' || echo '$(srcdir)/'`src/queue_save.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-queue_save.Tpo" "$(DEPDIR)/src_mpd-queue_save.Po"; else rm -f "$(DEPDIR)/src_mpd-queue_save.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/queue_save.c' object='src_mpd-queue_save.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-queue_save.o `test -f 'src/queue_save.c' || echo '$(srcdir)/'`src/queue_save.c
-
- src_mpd-queue_save.obj: src/queue_save.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-queue_save.obj -MD -MP -MF $(DEPDIR)/src_mpd-queue_save.Tpo -c -o src_mpd-queue_save.obj `if test -f 'src/queue_save.c'; then $(CYGPATH_W) 'src/queue_save.c'; else $(CYGPATH_W) '$(srcdir)/src/queue_save.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-queue_save.Tpo $(DEPDIR)/src_mpd-queue_save.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-queue_save.obj -MD -MP -MF "$(DEPDIR)/src_mpd-queue_save.Tpo" -c -o src_mpd-queue_save.obj `if test -f 'src/queue_save.c'; then $(CYGPATH_W) 'src/queue_save.c'; else $(CYGPATH_W) '$(srcdir)/src/queue_save.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-queue_save.Tpo" "$(DEPDIR)/src_mpd-queue_save.Po"; else rm -f "$(DEPDIR)/src_mpd-queue_save.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/queue_save.c' object='src_mpd-queue_save.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-queue_save.obj `if test -f 'src/queue_save.c'; then $(CYGPATH_W) 'src/queue_save.c'; else $(CYGPATH_W) '$(srcdir)/src/queue_save.c'; fi`
-
- src_mpd-replay_gain.o: src/replay_gain.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-replay_gain.o -MD -MP -MF $(DEPDIR)/src_mpd-replay_gain.Tpo -c -o src_mpd-replay_gain.o `test -f 'src/replay_gain.c' || echo '$(srcdir)/'`src/replay_gain.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-replay_gain.Tpo $(DEPDIR)/src_mpd-replay_gain.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-replay_gain.o -MD -MP -MF "$(DEPDIR)/src_mpd-replay_gain.Tpo" -c -o src_mpd-replay_gain.o `test -f 'src/replay_gain.c' || echo '$(srcdir)/'`src/replay_gain.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-replay_gain.Tpo" "$(DEPDIR)/src_mpd-replay_gain.Po"; else rm -f "$(DEPDIR)/src_mpd-replay_gain.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/replay_gain.c' object='src_mpd-replay_gain.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-replay_gain.o `test -f 'src/replay_gain.c' || echo '$(srcdir)/'`src/replay_gain.c
-
- src_mpd-replay_gain.obj: src/replay_gain.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-replay_gain.obj -MD -MP -MF $(DEPDIR)/src_mpd-replay_gain.Tpo -c -o src_mpd-replay_gain.obj `if test -f 'src/replay_gain.c'; then $(CYGPATH_W) 'src/replay_gain.c'; else $(CYGPATH_W) '$(srcdir)/src/replay_gain.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-replay_gain.Tpo $(DEPDIR)/src_mpd-replay_gain.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-replay_gain.obj -MD -MP -MF "$(DEPDIR)/src_mpd-replay_gain.Tpo" -c -o src_mpd-replay_gain.obj `if test -f 'src/replay_gain.c'; then $(CYGPATH_W) 'src/replay_gain.c'; else $(CYGPATH_W) '$(srcdir)/src/replay_gain.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-replay_gain.Tpo" "$(DEPDIR)/src_mpd-replay_gain.Po"; else rm -f "$(DEPDIR)/src_mpd-replay_gain.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/replay_gain.c' object='src_mpd-replay_gain.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-replay_gain.obj `if test -f 'src/replay_gain.c'; then $(CYGPATH_W) 'src/replay_gain.c'; else $(CYGPATH_W) '$(srcdir)/src/replay_gain.c'; fi`
-
- src_mpd-sig_handlers.o: src/sig_handlers.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-sig_handlers.o -MD -MP -MF $(DEPDIR)/src_mpd-sig_handlers.Tpo -c -o src_mpd-sig_handlers.o `test -f 'src/sig_handlers.c' || echo '$(srcdir)/'`src/sig_handlers.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-sig_handlers.Tpo $(DEPDIR)/src_mpd-sig_handlers.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-sig_handlers.o -MD -MP -MF "$(DEPDIR)/src_mpd-sig_handlers.Tpo" -c -o src_mpd-sig_handlers.o `test -f 'src/sig_handlers.c' || echo '$(srcdir)/'`src/sig_handlers.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-sig_handlers.Tpo" "$(DEPDIR)/src_mpd-sig_handlers.Po"; else rm -f "$(DEPDIR)/src_mpd-sig_handlers.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/sig_handlers.c' object='src_mpd-sig_handlers.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-sig_handlers.o `test -f 'src/sig_handlers.c' || echo '$(srcdir)/'`src/sig_handlers.c
-
- src_mpd-sig_handlers.obj: src/sig_handlers.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-sig_handlers.obj -MD -MP -MF $(DEPDIR)/src_mpd-sig_handlers.Tpo -c -o src_mpd-sig_handlers.obj `if test -f 'src/sig_handlers.c'; then $(CYGPATH_W) 'src/sig_handlers.c'; else $(CYGPATH_W) '$(srcdir)/src/sig_handlers.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-sig_handlers.Tpo $(DEPDIR)/src_mpd-sig_handlers.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-sig_handlers.obj -MD -MP -MF "$(DEPDIR)/src_mpd-sig_handlers.Tpo" -c -o src_mpd-sig_handlers.obj `if test -f 'src/sig_handlers.c'; then $(CYGPATH_W) 'src/sig_handlers.c'; else $(CYGPATH_W) '$(srcdir)/src/sig_handlers.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-sig_handlers.Tpo" "$(DEPDIR)/src_mpd-sig_handlers.Po"; else rm -f "$(DEPDIR)/src_mpd-sig_handlers.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/sig_handlers.c' object='src_mpd-sig_handlers.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-sig_handlers.obj `if test -f 'src/sig_handlers.c'; then $(CYGPATH_W) 'src/sig_handlers.c'; else $(CYGPATH_W) '$(srcdir)/src/sig_handlers.c'; fi`
-
- src_mpd-song.o: src/song.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-song.o -MD -MP -MF $(DEPDIR)/src_mpd-song.Tpo -c -o src_mpd-song.o `test -f 'src/song.c' || echo '$(srcdir)/'`src/song.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-song.Tpo $(DEPDIR)/src_mpd-song.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-song.o -MD -MP -MF "$(DEPDIR)/src_mpd-song.Tpo" -c -o src_mpd-song.o `test -f 'src/song.c' || echo '$(srcdir)/'`src/song.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-song.Tpo" "$(DEPDIR)/src_mpd-song.Po"; else rm -f "$(DEPDIR)/src_mpd-song.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/song.c' object='src_mpd-song.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-song.o `test -f 'src/song.c' || echo '$(srcdir)/'`src/song.c
-
- src_mpd-song.obj: src/song.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-song.obj -MD -MP -MF $(DEPDIR)/src_mpd-song.Tpo -c -o src_mpd-song.obj `if test -f 'src/song.c'; then $(CYGPATH_W) 'src/song.c'; else $(CYGPATH_W) '$(srcdir)/src/song.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-song.Tpo $(DEPDIR)/src_mpd-song.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-song.obj -MD -MP -MF "$(DEPDIR)/src_mpd-song.Tpo" -c -o src_mpd-song.obj `if test -f 'src/song.c'; then $(CYGPATH_W) 'src/song.c'; else $(CYGPATH_W) '$(srcdir)/src/song.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-song.Tpo" "$(DEPDIR)/src_mpd-song.Po"; else rm -f "$(DEPDIR)/src_mpd-song.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/song.c' object='src_mpd-song.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-song.obj `if test -f 'src/song.c'; then $(CYGPATH_W) 'src/song.c'; else $(CYGPATH_W) '$(srcdir)/src/song.c'; fi`
-
- src_mpd-song_print.o: src/song_print.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-song_print.o -MD -MP -MF $(DEPDIR)/src_mpd-song_print.Tpo -c -o src_mpd-song_print.o `test -f 'src/song_print.c' || echo '$(srcdir)/'`src/song_print.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-song_print.Tpo $(DEPDIR)/src_mpd-song_print.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-song_print.o -MD -MP -MF "$(DEPDIR)/src_mpd-song_print.Tpo" -c -o src_mpd-song_print.o `test -f 'src/song_print.c' || echo '$(srcdir)/'`src/song_print.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-song_print.Tpo" "$(DEPDIR)/src_mpd-song_print.Po"; else rm -f "$(DEPDIR)/src_mpd-song_print.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/song_print.c' object='src_mpd-song_print.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-song_print.o `test -f 'src/song_print.c' || echo '$(srcdir)/'`src/song_print.c
-
- src_mpd-song_print.obj: src/song_print.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-song_print.obj -MD -MP -MF $(DEPDIR)/src_mpd-song_print.Tpo -c -o src_mpd-song_print.obj `if test -f 'src/song_print.c'; then $(CYGPATH_W) 'src/song_print.c'; else $(CYGPATH_W) '$(srcdir)/src/song_print.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-song_print.Tpo $(DEPDIR)/src_mpd-song_print.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-song_print.obj -MD -MP -MF "$(DEPDIR)/src_mpd-song_print.Tpo" -c -o src_mpd-song_print.obj `if test -f 'src/song_print.c'; then $(CYGPATH_W) 'src/song_print.c'; else $(CYGPATH_W) '$(srcdir)/src/song_print.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-song_print.Tpo" "$(DEPDIR)/src_mpd-song_print.Po"; else rm -f "$(DEPDIR)/src_mpd-song_print.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/song_print.c' object='src_mpd-song_print.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-song_print.obj `if test -f 'src/song_print.c'; then $(CYGPATH_W) 'src/song_print.c'; else $(CYGPATH_W) '$(srcdir)/src/song_print.c'; fi`
-
- src_mpd-song_save.o: src/song_save.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-song_save.o -MD -MP -MF $(DEPDIR)/src_mpd-song_save.Tpo -c -o src_mpd-song_save.o `test -f 'src/song_save.c' || echo '$(srcdir)/'`src/song_save.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-song_save.Tpo $(DEPDIR)/src_mpd-song_save.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-song_save.o -MD -MP -MF "$(DEPDIR)/src_mpd-song_save.Tpo" -c -o src_mpd-song_save.o `test -f 'src/song_save.c' || echo '$(srcdir)/'`src/song_save.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-song_save.Tpo" "$(DEPDIR)/src_mpd-song_save.Po"; else rm -f "$(DEPDIR)/src_mpd-song_save.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/song_save.c' object='src_mpd-song_save.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-song_save.o `test -f 'src/song_save.c' || echo '$(srcdir)/'`src/song_save.c
-
- src_mpd-song_save.obj: src/song_save.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-song_save.obj -MD -MP -MF $(DEPDIR)/src_mpd-song_save.Tpo -c -o src_mpd-song_save.obj `if test -f 'src/song_save.c'; then $(CYGPATH_W) 'src/song_save.c'; else $(CYGPATH_W) '$(srcdir)/src/song_save.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-song_save.Tpo $(DEPDIR)/src_mpd-song_save.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-song_save.obj -MD -MP -MF "$(DEPDIR)/src_mpd-song_save.Tpo" -c -o src_mpd-song_save.obj `if test -f 'src/song_save.c'; then $(CYGPATH_W) 'src/song_save.c'; else $(CYGPATH_W) '$(srcdir)/src/song_save.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-song_save.Tpo" "$(DEPDIR)/src_mpd-song_save.Po"; else rm -f "$(DEPDIR)/src_mpd-song_save.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/song_save.c' object='src_mpd-song_save.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-song_save.obj `if test -f 'src/song_save.c'; then $(CYGPATH_W) 'src/song_save.c'; else $(CYGPATH_W) '$(srcdir)/src/song_save.c'; fi`
-
- src_mpd-songvec.o: src/songvec.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-songvec.o -MD -MP -MF $(DEPDIR)/src_mpd-songvec.Tpo -c -o src_mpd-songvec.o `test -f 'src/songvec.c' || echo '$(srcdir)/'`src/songvec.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-songvec.Tpo $(DEPDIR)/src_mpd-songvec.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-songvec.o -MD -MP -MF "$(DEPDIR)/src_mpd-songvec.Tpo" -c -o src_mpd-songvec.o `test -f 'src/songvec.c' || echo '$(srcdir)/'`src/songvec.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-songvec.Tpo" "$(DEPDIR)/src_mpd-songvec.Po"; else rm -f "$(DEPDIR)/src_mpd-songvec.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/songvec.c' object='src_mpd-songvec.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-songvec.o `test -f 'src/songvec.c' || echo '$(srcdir)/'`src/songvec.c
-
- src_mpd-songvec.obj: src/songvec.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-songvec.obj -MD -MP -MF $(DEPDIR)/src_mpd-songvec.Tpo -c -o src_mpd-songvec.obj `if test -f 'src/songvec.c'; then $(CYGPATH_W) 'src/songvec.c'; else $(CYGPATH_W) '$(srcdir)/src/songvec.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-songvec.Tpo $(DEPDIR)/src_mpd-songvec.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-songvec.obj -MD -MP -MF "$(DEPDIR)/src_mpd-songvec.Tpo" -c -o src_mpd-songvec.obj `if test -f 'src/songvec.c'; then $(CYGPATH_W) 'src/songvec.c'; else $(CYGPATH_W) '$(srcdir)/src/songvec.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-songvec.Tpo" "$(DEPDIR)/src_mpd-songvec.Po"; else rm -f "$(DEPDIR)/src_mpd-songvec.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/songvec.c' object='src_mpd-songvec.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-songvec.obj `if test -f 'src/songvec.c'; then $(CYGPATH_W) 'src/songvec.c'; else $(CYGPATH_W) '$(srcdir)/src/songvec.c'; fi`
-
- src_mpd-socket_util.o: src/socket_util.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-socket_util.o -MD -MP -MF $(DEPDIR)/src_mpd-socket_util.Tpo -c -o src_mpd-socket_util.o `test -f 'src/socket_util.c' || echo '$(srcdir)/'`src/socket_util.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-socket_util.Tpo $(DEPDIR)/src_mpd-socket_util.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-socket_util.o -MD -MP -MF "$(DEPDIR)/src_mpd-socket_util.Tpo" -c -o src_mpd-socket_util.o `test -f 'src/socket_util.c' || echo '$(srcdir)/'`src/socket_util.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-socket_util.Tpo" "$(DEPDIR)/src_mpd-socket_util.Po"; else rm -f "$(DEPDIR)/src_mpd-socket_util.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/socket_util.c' object='src_mpd-socket_util.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-socket_util.o `test -f 'src/socket_util.c' || echo '$(srcdir)/'`src/socket_util.c
-
- src_mpd-socket_util.obj: src/socket_util.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-socket_util.obj -MD -MP -MF $(DEPDIR)/src_mpd-socket_util.Tpo -c -o src_mpd-socket_util.obj `if test -f 'src/socket_util.c'; then $(CYGPATH_W) 'src/socket_util.c'; else $(CYGPATH_W) '$(srcdir)/src/socket_util.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-socket_util.Tpo $(DEPDIR)/src_mpd-socket_util.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-socket_util.obj -MD -MP -MF "$(DEPDIR)/src_mpd-socket_util.Tpo" -c -o src_mpd-socket_util.obj `if test -f 'src/socket_util.c'; then $(CYGPATH_W) 'src/socket_util.c'; else $(CYGPATH_W) '$(srcdir)/src/socket_util.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-socket_util.Tpo" "$(DEPDIR)/src_mpd-socket_util.Po"; else rm -f "$(DEPDIR)/src_mpd-socket_util.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/socket_util.c' object='src_mpd-socket_util.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-socket_util.obj `if test -f 'src/socket_util.c'; then $(CYGPATH_W) 'src/socket_util.c'; else $(CYGPATH_W) '$(srcdir)/src/socket_util.c'; fi`
-
- src_mpd-state_file.o: src/state_file.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-state_file.o -MD -MP -MF $(DEPDIR)/src_mpd-state_file.Tpo -c -o src_mpd-state_file.o `test -f 'src/state_file.c' || echo '$(srcdir)/'`src/state_file.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-state_file.Tpo $(DEPDIR)/src_mpd-state_file.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-state_file.o -MD -MP -MF "$(DEPDIR)/src_mpd-state_file.Tpo" -c -o src_mpd-state_file.o `test -f 'src/state_file.c' || echo '$(srcdir)/'`src/state_file.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-state_file.Tpo" "$(DEPDIR)/src_mpd-state_file.Po"; else rm -f "$(DEPDIR)/src_mpd-state_file.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/state_file.c' object='src_mpd-state_file.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-state_file.o `test -f 'src/state_file.c' || echo '$(srcdir)/'`src/state_file.c
-
- src_mpd-state_file.obj: src/state_file.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-state_file.obj -MD -MP -MF $(DEPDIR)/src_mpd-state_file.Tpo -c -o src_mpd-state_file.obj `if test -f 'src/state_file.c'; then $(CYGPATH_W) 'src/state_file.c'; else $(CYGPATH_W) '$(srcdir)/src/state_file.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-state_file.Tpo $(DEPDIR)/src_mpd-state_file.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-state_file.obj -MD -MP -MF "$(DEPDIR)/src_mpd-state_file.Tpo" -c -o src_mpd-state_file.obj `if test -f 'src/state_file.c'; then $(CYGPATH_W) 'src/state_file.c'; else $(CYGPATH_W) '$(srcdir)/src/state_file.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-state_file.Tpo" "$(DEPDIR)/src_mpd-state_file.Po"; else rm -f "$(DEPDIR)/src_mpd-state_file.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/state_file.c' object='src_mpd-state_file.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-state_file.obj `if test -f 'src/state_file.c'; then $(CYGPATH_W) 'src/state_file.c'; else $(CYGPATH_W) '$(srcdir)/src/state_file.c'; fi`
-
- src_mpd-stats.o: src/stats.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-stats.o -MD -MP -MF $(DEPDIR)/src_mpd-stats.Tpo -c -o src_mpd-stats.o `test -f 'src/stats.c' || echo '$(srcdir)/'`src/stats.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-stats.Tpo $(DEPDIR)/src_mpd-stats.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-stats.o -MD -MP -MF "$(DEPDIR)/src_mpd-stats.Tpo" -c -o src_mpd-stats.o `test -f 'src/stats.c' || echo '$(srcdir)/'`src/stats.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-stats.Tpo" "$(DEPDIR)/src_mpd-stats.Po"; else rm -f "$(DEPDIR)/src_mpd-stats.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/stats.c' object='src_mpd-stats.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-stats.o `test -f 'src/stats.c' || echo '$(srcdir)/'`src/stats.c
-
- src_mpd-stats.obj: src/stats.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-stats.obj -MD -MP -MF $(DEPDIR)/src_mpd-stats.Tpo -c -o src_mpd-stats.obj `if test -f 'src/stats.c'; then $(CYGPATH_W) 'src/stats.c'; else $(CYGPATH_W) '$(srcdir)/src/stats.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-stats.Tpo $(DEPDIR)/src_mpd-stats.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-stats.obj -MD -MP -MF "$(DEPDIR)/src_mpd-stats.Tpo" -c -o src_mpd-stats.obj `if test -f 'src/stats.c'; then $(CYGPATH_W) 'src/stats.c'; else $(CYGPATH_W) '$(srcdir)/src/stats.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-stats.Tpo" "$(DEPDIR)/src_mpd-stats.Po"; else rm -f "$(DEPDIR)/src_mpd-stats.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/stats.c' object='src_mpd-stats.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-stats.obj `if test -f 'src/stats.c'; then $(CYGPATH_W) 'src/stats.c'; else $(CYGPATH_W) '$(srcdir)/src/stats.c'; fi`
-
- src_mpd-tag.o: src/tag.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag.o -MD -MP -MF $(DEPDIR)/src_mpd-tag.Tpo -c -o src_mpd-tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-tag.Tpo $(DEPDIR)/src_mpd-tag.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag.o -MD -MP -MF "$(DEPDIR)/src_mpd-tag.Tpo" -c -o src_mpd-tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-tag.Tpo" "$(DEPDIR)/src_mpd-tag.Po"; else rm -f "$(DEPDIR)/src_mpd-tag.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag.c' object='src_mpd-tag.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c
-
- src_mpd-tag.obj: src/tag.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag.obj -MD -MP -MF $(DEPDIR)/src_mpd-tag.Tpo -c -o src_mpd-tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-tag.Tpo $(DEPDIR)/src_mpd-tag.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag.obj -MD -MP -MF "$(DEPDIR)/src_mpd-tag.Tpo" -c -o src_mpd-tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-tag.Tpo" "$(DEPDIR)/src_mpd-tag.Po"; else rm -f "$(DEPDIR)/src_mpd-tag.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag.c' object='src_mpd-tag.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi`
-
- src_mpd-tag_pool.o: src/tag_pool.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_pool.o -MD -MP -MF $(DEPDIR)/src_mpd-tag_pool.Tpo -c -o src_mpd-tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-tag_pool.Tpo $(DEPDIR)/src_mpd-tag_pool.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_pool.o -MD -MP -MF "$(DEPDIR)/src_mpd-tag_pool.Tpo" -c -o src_mpd-tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-tag_pool.Tpo" "$(DEPDIR)/src_mpd-tag_pool.Po"; else rm -f "$(DEPDIR)/src_mpd-tag_pool.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_pool.c' object='src_mpd-tag_pool.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c
-
- src_mpd-tag_pool.obj: src/tag_pool.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_pool.obj -MD -MP -MF $(DEPDIR)/src_mpd-tag_pool.Tpo -c -o src_mpd-tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-tag_pool.Tpo $(DEPDIR)/src_mpd-tag_pool.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_pool.obj -MD -MP -MF "$(DEPDIR)/src_mpd-tag_pool.Tpo" -c -o src_mpd-tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-tag_pool.Tpo" "$(DEPDIR)/src_mpd-tag_pool.Po"; else rm -f "$(DEPDIR)/src_mpd-tag_pool.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_pool.c' object='src_mpd-tag_pool.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi`
-
- src_mpd-tag_print.o: src/tag_print.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_print.o -MD -MP -MF $(DEPDIR)/src_mpd-tag_print.Tpo -c -o src_mpd-tag_print.o `test -f 'src/tag_print.c' || echo '$(srcdir)/'`src/tag_print.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-tag_print.Tpo $(DEPDIR)/src_mpd-tag_print.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_print.o -MD -MP -MF "$(DEPDIR)/src_mpd-tag_print.Tpo" -c -o src_mpd-tag_print.o `test -f 'src/tag_print.c' || echo '$(srcdir)/'`src/tag_print.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-tag_print.Tpo" "$(DEPDIR)/src_mpd-tag_print.Po"; else rm -f "$(DEPDIR)/src_mpd-tag_print.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_print.c' object='src_mpd-tag_print.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-tag_print.o `test -f 'src/tag_print.c' || echo '$(srcdir)/'`src/tag_print.c
-
- src_mpd-tag_print.obj: src/tag_print.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_print.obj -MD -MP -MF $(DEPDIR)/src_mpd-tag_print.Tpo -c -o src_mpd-tag_print.obj `if test -f 'src/tag_print.c'; then $(CYGPATH_W) 'src/tag_print.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_print.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-tag_print.Tpo $(DEPDIR)/src_mpd-tag_print.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_print.obj -MD -MP -MF "$(DEPDIR)/src_mpd-tag_print.Tpo" -c -o src_mpd-tag_print.obj `if test -f 'src/tag_print.c'; then $(CYGPATH_W) 'src/tag_print.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_print.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-tag_print.Tpo" "$(DEPDIR)/src_mpd-tag_print.Po"; else rm -f "$(DEPDIR)/src_mpd-tag_print.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_print.c' object='src_mpd-tag_print.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-tag_print.obj `if test -f 'src/tag_print.c'; then $(CYGPATH_W) 'src/tag_print.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_print.c'; fi`
-
- src_mpd-tag_save.o: src/tag_save.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_save.o -MD -MP -MF $(DEPDIR)/src_mpd-tag_save.Tpo -c -o src_mpd-tag_save.o `test -f 'src/tag_save.c' || echo '$(srcdir)/'`src/tag_save.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-tag_save.Tpo $(DEPDIR)/src_mpd-tag_save.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_save.o -MD -MP -MF "$(DEPDIR)/src_mpd-tag_save.Tpo" -c -o src_mpd-tag_save.o `test -f 'src/tag_save.c' || echo '$(srcdir)/'`src/tag_save.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-tag_save.Tpo" "$(DEPDIR)/src_mpd-tag_save.Po"; else rm -f "$(DEPDIR)/src_mpd-tag_save.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_save.c' object='src_mpd-tag_save.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-tag_save.o `test -f 'src/tag_save.c' || echo '$(srcdir)/'`src/tag_save.c
-
- src_mpd-tag_save.obj: src/tag_save.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_save.obj -MD -MP -MF $(DEPDIR)/src_mpd-tag_save.Tpo -c -o src_mpd-tag_save.obj `if test -f 'src/tag_save.c'; then $(CYGPATH_W) 'src/tag_save.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_save.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-tag_save.Tpo $(DEPDIR)/src_mpd-tag_save.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-tag_save.obj -MD -MP -MF "$(DEPDIR)/src_mpd-tag_save.Tpo" -c -o src_mpd-tag_save.obj `if test -f 'src/tag_save.c'; then $(CYGPATH_W) 'src/tag_save.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_save.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-tag_save.Tpo" "$(DEPDIR)/src_mpd-tag_save.Po"; else rm -f "$(DEPDIR)/src_mpd-tag_save.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_save.c' object='src_mpd-tag_save.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-tag_save.obj `if test -f 'src/tag_save.c'; then $(CYGPATH_W) 'src/tag_save.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_save.c'; fi`
-
- src_mpd-strset.o: src/strset.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-strset.o -MD -MP -MF $(DEPDIR)/src_mpd-strset.Tpo -c -o src_mpd-strset.o `test -f 'src/strset.c' || echo '$(srcdir)/'`src/strset.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-strset.Tpo $(DEPDIR)/src_mpd-strset.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-strset.o -MD -MP -MF "$(DEPDIR)/src_mpd-strset.Tpo" -c -o src_mpd-strset.o `test -f 'src/strset.c' || echo '$(srcdir)/'`src/strset.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-strset.Tpo" "$(DEPDIR)/src_mpd-strset.Po"; else rm -f "$(DEPDIR)/src_mpd-strset.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/strset.c' object='src_mpd-strset.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-strset.o `test -f 'src/strset.c' || echo '$(srcdir)/'`src/strset.c
-
- src_mpd-strset.obj: src/strset.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-strset.obj -MD -MP -MF $(DEPDIR)/src_mpd-strset.Tpo -c -o src_mpd-strset.obj `if test -f 'src/strset.c'; then $(CYGPATH_W) 'src/strset.c'; else $(CYGPATH_W) '$(srcdir)/src/strset.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-strset.Tpo $(DEPDIR)/src_mpd-strset.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-strset.obj -MD -MP -MF "$(DEPDIR)/src_mpd-strset.Tpo" -c -o src_mpd-strset.obj `if test -f 'src/strset.c'; then $(CYGPATH_W) 'src/strset.c'; else $(CYGPATH_W) '$(srcdir)/src/strset.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-strset.Tpo" "$(DEPDIR)/src_mpd-strset.Po"; else rm -f "$(DEPDIR)/src_mpd-strset.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/strset.c' object='src_mpd-strset.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-strset.obj `if test -f 'src/strset.c'; then $(CYGPATH_W) 'src/strset.c'; else $(CYGPATH_W) '$(srcdir)/src/strset.c'; fi`
-
- src_mpd-uri.o: src/uri.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-uri.o -MD -MP -MF $(DEPDIR)/src_mpd-uri.Tpo -c -o src_mpd-uri.o `test -f 'src/uri.c' || echo '$(srcdir)/'`src/uri.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-uri.Tpo $(DEPDIR)/src_mpd-uri.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-uri.o -MD -MP -MF "$(DEPDIR)/src_mpd-uri.Tpo" -c -o src_mpd-uri.o `test -f 'src/uri.c' || echo '$(srcdir)/'`src/uri.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-uri.Tpo" "$(DEPDIR)/src_mpd-uri.Po"; else rm -f "$(DEPDIR)/src_mpd-uri.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/uri.c' object='src_mpd-uri.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-uri.o `test -f 'src/uri.c' || echo '$(srcdir)/'`src/uri.c
-
- src_mpd-uri.obj: src/uri.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-uri.obj -MD -MP -MF $(DEPDIR)/src_mpd-uri.Tpo -c -o src_mpd-uri.obj `if test -f 'src/uri.c'; then $(CYGPATH_W) 'src/uri.c'; else $(CYGPATH_W) '$(srcdir)/src/uri.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-uri.Tpo $(DEPDIR)/src_mpd-uri.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-uri.obj -MD -MP -MF "$(DEPDIR)/src_mpd-uri.Tpo" -c -o src_mpd-uri.obj `if test -f 'src/uri.c'; then $(CYGPATH_W) 'src/uri.c'; else $(CYGPATH_W) '$(srcdir)/src/uri.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-uri.Tpo" "$(DEPDIR)/src_mpd-uri.Po"; else rm -f "$(DEPDIR)/src_mpd-uri.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/uri.c' object='src_mpd-uri.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-uri.obj `if test -f 'src/uri.c'; then $(CYGPATH_W) 'src/uri.c'; else $(CYGPATH_W) '$(srcdir)/src/uri.c'; fi`
-
- src_mpd-utils.o: src/utils.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-utils.o -MD -MP -MF $(DEPDIR)/src_mpd-utils.Tpo -c -o src_mpd-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-utils.Tpo $(DEPDIR)/src_mpd-utils.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-utils.o -MD -MP -MF "$(DEPDIR)/src_mpd-utils.Tpo" -c -o src_mpd-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-utils.Tpo" "$(DEPDIR)/src_mpd-utils.Po"; else rm -f "$(DEPDIR)/src_mpd-utils.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/utils.c' object='src_mpd-utils.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c
-
- src_mpd-utils.obj: src/utils.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-utils.obj -MD -MP -MF $(DEPDIR)/src_mpd-utils.Tpo -c -o src_mpd-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-utils.Tpo $(DEPDIR)/src_mpd-utils.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-utils.obj -MD -MP -MF "$(DEPDIR)/src_mpd-utils.Tpo" -c -o src_mpd-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-utils.Tpo" "$(DEPDIR)/src_mpd-utils.Po"; else rm -f "$(DEPDIR)/src_mpd-utils.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/utils.c' object='src_mpd-utils.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi`
-
- src_mpd-volume.o: src/volume.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-volume.o -MD -MP -MF $(DEPDIR)/src_mpd-volume.Tpo -c -o src_mpd-volume.o `test -f 'src/volume.c' || echo '$(srcdir)/'`src/volume.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-volume.Tpo $(DEPDIR)/src_mpd-volume.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-volume.o -MD -MP -MF "$(DEPDIR)/src_mpd-volume.Tpo" -c -o src_mpd-volume.o `test -f 'src/volume.c' || echo '$(srcdir)/'`src/volume.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-volume.Tpo" "$(DEPDIR)/src_mpd-volume.Po"; else rm -f "$(DEPDIR)/src_mpd-volume.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/volume.c' object='src_mpd-volume.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-volume.o `test -f 'src/volume.c' || echo '$(srcdir)/'`src/volume.c
-
- src_mpd-volume.obj: src/volume.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-volume.obj -MD -MP -MF $(DEPDIR)/src_mpd-volume.Tpo -c -o src_mpd-volume.obj `if test -f 'src/volume.c'; then $(CYGPATH_W) 'src/volume.c'; else $(CYGPATH_W) '$(srcdir)/src/volume.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-volume.Tpo $(DEPDIR)/src_mpd-volume.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-volume.obj -MD -MP -MF "$(DEPDIR)/src_mpd-volume.Tpo" -c -o src_mpd-volume.obj `if test -f 'src/volume.c'; then $(CYGPATH_W) 'src/volume.c'; else $(CYGPATH_W) '$(srcdir)/src/volume.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-volume.Tpo" "$(DEPDIR)/src_mpd-volume.Po"; else rm -f "$(DEPDIR)/src_mpd-volume.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/volume.c' object='src_mpd-volume.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-volume.obj `if test -f 'src/volume.c'; then $(CYGPATH_W) 'src/volume.c'; else $(CYGPATH_W) '$(srcdir)/src/volume.c'; fi`
-
- src_mpd-locate.o: src/locate.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-locate.o -MD -MP -MF $(DEPDIR)/src_mpd-locate.Tpo -c -o src_mpd-locate.o `test -f 'src/locate.c' || echo '$(srcdir)/'`src/locate.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-locate.Tpo $(DEPDIR)/src_mpd-locate.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-locate.o -MD -MP -MF "$(DEPDIR)/src_mpd-locate.Tpo" -c -o src_mpd-locate.o `test -f 'src/locate.c' || echo '$(srcdir)/'`src/locate.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-locate.Tpo" "$(DEPDIR)/src_mpd-locate.Po"; else rm -f "$(DEPDIR)/src_mpd-locate.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/locate.c' object='src_mpd-locate.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-locate.o `test -f 'src/locate.c' || echo '$(srcdir)/'`src/locate.c
-
- src_mpd-locate.obj: src/locate.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-locate.obj -MD -MP -MF $(DEPDIR)/src_mpd-locate.Tpo -c -o src_mpd-locate.obj `if test -f 'src/locate.c'; then $(CYGPATH_W) 'src/locate.c'; else $(CYGPATH_W) '$(srcdir)/src/locate.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-locate.Tpo $(DEPDIR)/src_mpd-locate.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-locate.obj -MD -MP -MF "$(DEPDIR)/src_mpd-locate.Tpo" -c -o src_mpd-locate.obj `if test -f 'src/locate.c'; then $(CYGPATH_W) 'src/locate.c'; else $(CYGPATH_W) '$(srcdir)/src/locate.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-locate.Tpo" "$(DEPDIR)/src_mpd-locate.Po"; else rm -f "$(DEPDIR)/src_mpd-locate.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/locate.c' object='src_mpd-locate.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-locate.obj `if test -f 'src/locate.c'; then $(CYGPATH_W) 'src/locate.c'; else $(CYGPATH_W) '$(srcdir)/src/locate.c'; fi`
-
- src_mpd-stored_playlist.o: src/stored_playlist.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-stored_playlist.o -MD -MP -MF $(DEPDIR)/src_mpd-stored_playlist.Tpo -c -o src_mpd-stored_playlist.o `test -f 'src/stored_playlist.c' || echo '$(srcdir)/'`src/stored_playlist.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-stored_playlist.Tpo $(DEPDIR)/src_mpd-stored_playlist.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-stored_playlist.o -MD -MP -MF "$(DEPDIR)/src_mpd-stored_playlist.Tpo" -c -o src_mpd-stored_playlist.o `test -f 'src/stored_playlist.c' || echo '$(srcdir)/'`src/stored_playlist.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-stored_playlist.Tpo" "$(DEPDIR)/src_mpd-stored_playlist.Po"; else rm -f "$(DEPDIR)/src_mpd-stored_playlist.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/stored_playlist.c' object='src_mpd-stored_playlist.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-stored_playlist.o `test -f 'src/stored_playlist.c' || echo '$(srcdir)/'`src/stored_playlist.c
-
- src_mpd-stored_playlist.obj: src/stored_playlist.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-stored_playlist.obj -MD -MP -MF $(DEPDIR)/src_mpd-stored_playlist.Tpo -c -o src_mpd-stored_playlist.obj `if test -f 'src/stored_playlist.c'; then $(CYGPATH_W) 'src/stored_playlist.c'; else $(CYGPATH_W) '$(srcdir)/src/stored_playlist.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-stored_playlist.Tpo $(DEPDIR)/src_mpd-stored_playlist.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-stored_playlist.obj -MD -MP -MF "$(DEPDIR)/src_mpd-stored_playlist.Tpo" -c -o src_mpd-stored_playlist.obj `if test -f 'src/stored_playlist.c'; then $(CYGPATH_W) 'src/stored_playlist.c'; else $(CYGPATH_W) '$(srcdir)/src/stored_playlist.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-stored_playlist.Tpo" "$(DEPDIR)/src_mpd-stored_playlist.Po"; else rm -f "$(DEPDIR)/src_mpd-stored_playlist.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/stored_playlist.c' object='src_mpd-stored_playlist.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-stored_playlist.obj `if test -f 'src/stored_playlist.c'; then $(CYGPATH_W) 'src/stored_playlist.c'; else $(CYGPATH_W) '$(srcdir)/src/stored_playlist.c'; fi`
-
- src_mpd-timer.o: src/timer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-timer.o -MD -MP -MF $(DEPDIR)/src_mpd-timer.Tpo -c -o src_mpd-timer.o `test -f 'src/timer.c' || echo '$(srcdir)/'`src/timer.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-timer.Tpo $(DEPDIR)/src_mpd-timer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-timer.o -MD -MP -MF "$(DEPDIR)/src_mpd-timer.Tpo" -c -o src_mpd-timer.o `test -f 'src/timer.c' || echo '$(srcdir)/'`src/timer.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-timer.Tpo" "$(DEPDIR)/src_mpd-timer.Po"; else rm -f "$(DEPDIR)/src_mpd-timer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/timer.c' object='src_mpd-timer.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-timer.o `test -f 'src/timer.c' || echo '$(srcdir)/'`src/timer.c
-
- src_mpd-timer.obj: src/timer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-timer.obj -MD -MP -MF $(DEPDIR)/src_mpd-timer.Tpo -c -o src_mpd-timer.obj `if test -f 'src/timer.c'; then $(CYGPATH_W) 'src/timer.c'; else $(CYGPATH_W) '$(srcdir)/src/timer.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-timer.Tpo $(DEPDIR)/src_mpd-timer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-timer.obj -MD -MP -MF "$(DEPDIR)/src_mpd-timer.Tpo" -c -o src_mpd-timer.obj `if test -f 'src/timer.c'; then $(CYGPATH_W) 'src/timer.c'; else $(CYGPATH_W) '$(srcdir)/src/timer.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-timer.Tpo" "$(DEPDIR)/src_mpd-timer.Po"; else rm -f "$(DEPDIR)/src_mpd-timer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/timer.c' object='src_mpd-timer.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-timer.obj `if test -f 'src/timer.c'; then $(CYGPATH_W) 'src/timer.c'; else $(CYGPATH_W) '$(srcdir)/src/timer.c'; fi`
-
- src_mpd-sticker.o: src/sticker.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-sticker.o -MD -MP -MF $(DEPDIR)/src_mpd-sticker.Tpo -c -o src_mpd-sticker.o `test -f 'src/sticker.c' || echo '$(srcdir)/'`src/sticker.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-sticker.Tpo $(DEPDIR)/src_mpd-sticker.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-sticker.o -MD -MP -MF "$(DEPDIR)/src_mpd-sticker.Tpo" -c -o src_mpd-sticker.o `test -f 'src/sticker.c' || echo '$(srcdir)/'`src/sticker.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-sticker.Tpo" "$(DEPDIR)/src_mpd-sticker.Po"; else rm -f "$(DEPDIR)/src_mpd-sticker.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/sticker.c' object='src_mpd-sticker.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-sticker.o `test -f 'src/sticker.c' || echo '$(srcdir)/'`src/sticker.c
-
- src_mpd-sticker.obj: src/sticker.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-sticker.obj -MD -MP -MF $(DEPDIR)/src_mpd-sticker.Tpo -c -o src_mpd-sticker.obj `if test -f 'src/sticker.c'; then $(CYGPATH_W) 'src/sticker.c'; else $(CYGPATH_W) '$(srcdir)/src/sticker.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-sticker.Tpo $(DEPDIR)/src_mpd-sticker.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-sticker.obj -MD -MP -MF "$(DEPDIR)/src_mpd-sticker.Tpo" -c -o src_mpd-sticker.obj `if test -f 'src/sticker.c'; then $(CYGPATH_W) 'src/sticker.c'; else $(CYGPATH_W) '$(srcdir)/src/sticker.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-sticker.Tpo" "$(DEPDIR)/src_mpd-sticker.Po"; else rm -f "$(DEPDIR)/src_mpd-sticker.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/sticker.c' object='src_mpd-sticker.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-sticker.obj `if test -f 'src/sticker.c'; then $(CYGPATH_W) 'src/sticker.c'; else $(CYGPATH_W) '$(srcdir)/src/sticker.c'; fi`
-
- src_mpd-sticker_print.o: src/sticker_print.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-sticker_print.o -MD -MP -MF $(DEPDIR)/src_mpd-sticker_print.Tpo -c -o src_mpd-sticker_print.o `test -f 'src/sticker_print.c' || echo '$(srcdir)/'`src/sticker_print.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-sticker_print.Tpo $(DEPDIR)/src_mpd-sticker_print.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-sticker_print.o -MD -MP -MF "$(DEPDIR)/src_mpd-sticker_print.Tpo" -c -o src_mpd-sticker_print.o `test -f 'src/sticker_print.c' || echo '$(srcdir)/'`src/sticker_print.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-sticker_print.Tpo" "$(DEPDIR)/src_mpd-sticker_print.Po"; else rm -f "$(DEPDIR)/src_mpd-sticker_print.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/sticker_print.c' object='src_mpd-sticker_print.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-sticker_print.o `test -f 'src/sticker_print.c' || echo '$(srcdir)/'`src/sticker_print.c
-
- src_mpd-sticker_print.obj: src/sticker_print.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-sticker_print.obj -MD -MP -MF $(DEPDIR)/src_mpd-sticker_print.Tpo -c -o src_mpd-sticker_print.obj `if test -f 'src/sticker_print.c'; then $(CYGPATH_W) 'src/sticker_print.c'; else $(CYGPATH_W) '$(srcdir)/src/sticker_print.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-sticker_print.Tpo $(DEPDIR)/src_mpd-sticker_print.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-sticker_print.obj -MD -MP -MF "$(DEPDIR)/src_mpd-sticker_print.Tpo" -c -o src_mpd-sticker_print.obj `if test -f 'src/sticker_print.c'; then $(CYGPATH_W) 'src/sticker_print.c'; else $(CYGPATH_W) '$(srcdir)/src/sticker_print.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-sticker_print.Tpo" "$(DEPDIR)/src_mpd-sticker_print.Po"; else rm -f "$(DEPDIR)/src_mpd-sticker_print.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/sticker_print.c' object='src_mpd-sticker_print.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-sticker_print.obj `if test -f 'src/sticker_print.c'; then $(CYGPATH_W) 'src/sticker_print.c'; else $(CYGPATH_W) '$(srcdir)/src/sticker_print.c'; fi`
-
- src_mpd-song_sticker.o: src/song_sticker.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-song_sticker.o -MD -MP -MF $(DEPDIR)/src_mpd-song_sticker.Tpo -c -o src_mpd-song_sticker.o `test -f 'src/song_sticker.c' || echo '$(srcdir)/'`src/song_sticker.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-song_sticker.Tpo $(DEPDIR)/src_mpd-song_sticker.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-song_sticker.o -MD -MP -MF "$(DEPDIR)/src_mpd-song_sticker.Tpo" -c -o src_mpd-song_sticker.o `test -f 'src/song_sticker.c' || echo '$(srcdir)/'`src/song_sticker.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-song_sticker.Tpo" "$(DEPDIR)/src_mpd-song_sticker.Po"; else rm -f "$(DEPDIR)/src_mpd-song_sticker.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/song_sticker.c' object='src_mpd-song_sticker.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-song_sticker.o `test -f 'src/song_sticker.c' || echo '$(srcdir)/'`src/song_sticker.c
-
- src_mpd-song_sticker.obj: src/song_sticker.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-song_sticker.obj -MD -MP -MF $(DEPDIR)/src_mpd-song_sticker.Tpo -c -o src_mpd-song_sticker.obj `if test -f 'src/song_sticker.c'; then $(CYGPATH_W) 'src/song_sticker.c'; else $(CYGPATH_W) '$(srcdir)/src/song_sticker.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-song_sticker.Tpo $(DEPDIR)/src_mpd-song_sticker.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-song_sticker.obj -MD -MP -MF "$(DEPDIR)/src_mpd-song_sticker.Tpo" -c -o src_mpd-song_sticker.obj `if test -f 'src/song_sticker.c'; then $(CYGPATH_W) 'src/song_sticker.c'; else $(CYGPATH_W) '$(srcdir)/src/song_sticker.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-song_sticker.Tpo" "$(DEPDIR)/src_mpd-song_sticker.Po"; else rm -f "$(DEPDIR)/src_mpd-song_sticker.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/song_sticker.c' object='src_mpd-song_sticker.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-song_sticker.obj `if test -f 'src/song_sticker.c'; then $(CYGPATH_W) 'src/song_sticker.c'; else $(CYGPATH_W) '$(srcdir)/src/song_sticker.c'; fi`
-
- src_mpd-pcm_resample_libsamplerate.o: src/pcm_resample_libsamplerate.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_resample_libsamplerate.o -MD -MP -MF $(DEPDIR)/src_mpd-pcm_resample_libsamplerate.Tpo -c -o src_mpd-pcm_resample_libsamplerate.o `test -f 'src/pcm_resample_libsamplerate.c' || echo '$(srcdir)/'`src/pcm_resample_libsamplerate.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_resample_libsamplerate.Tpo $(DEPDIR)/src_mpd-pcm_resample_libsamplerate.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_resample_libsamplerate.o -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_resample_libsamplerate.Tpo" -c -o src_mpd-pcm_resample_libsamplerate.o `test -f 'src/pcm_resample_libsamplerate.c' || echo '$(srcdir)/'`src/pcm_resample_libsamplerate.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_resample_libsamplerate.Tpo" "$(DEPDIR)/src_mpd-pcm_resample_libsamplerate.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_resample_libsamplerate.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_resample_libsamplerate.c' object='src_mpd-pcm_resample_libsamplerate.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_resample_libsamplerate.o `test -f 'src/pcm_resample_libsamplerate.c' || echo '$(srcdir)/'`src/pcm_resample_libsamplerate.c
-
- src_mpd-pcm_resample_libsamplerate.obj: src/pcm_resample_libsamplerate.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_resample_libsamplerate.obj -MD -MP -MF $(DEPDIR)/src_mpd-pcm_resample_libsamplerate.Tpo -c -o src_mpd-pcm_resample_libsamplerate.obj `if test -f 'src/pcm_resample_libsamplerate.c'; then $(CYGPATH_W) 'src/pcm_resample_libsamplerate.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_resample_libsamplerate.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-pcm_resample_libsamplerate.Tpo $(DEPDIR)/src_mpd-pcm_resample_libsamplerate.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-pcm_resample_libsamplerate.obj -MD -MP -MF "$(DEPDIR)/src_mpd-pcm_resample_libsamplerate.Tpo" -c -o src_mpd-pcm_resample_libsamplerate.obj `if test -f 'src/pcm_resample_libsamplerate.c'; then $(CYGPATH_W) 'src/pcm_resample_libsamplerate.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_resample_libsamplerate.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-pcm_resample_libsamplerate.Tpo" "$(DEPDIR)/src_mpd-pcm_resample_libsamplerate.Po"; else rm -f "$(DEPDIR)/src_mpd-pcm_resample_libsamplerate.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_resample_libsamplerate.c' object='src_mpd-pcm_resample_libsamplerate.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-pcm_resample_libsamplerate.obj `if test -f 'src/pcm_resample_libsamplerate.c'; then $(CYGPATH_W) 'src/pcm_resample_libsamplerate.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_resample_libsamplerate.c'; fi`
-
- src_mpd-zeroconf.o: src/zeroconf.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-zeroconf.o -MD -MP -MF $(DEPDIR)/src_mpd-zeroconf.Tpo -c -o src_mpd-zeroconf.o `test -f 'src/zeroconf.c' || echo '$(srcdir)/'`src/zeroconf.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-zeroconf.Tpo $(DEPDIR)/src_mpd-zeroconf.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-zeroconf.o -MD -MP -MF "$(DEPDIR)/src_mpd-zeroconf.Tpo" -c -o src_mpd-zeroconf.o `test -f 'src/zeroconf.c' || echo '$(srcdir)/'`src/zeroconf.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-zeroconf.Tpo" "$(DEPDIR)/src_mpd-zeroconf.Po"; else rm -f "$(DEPDIR)/src_mpd-zeroconf.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/zeroconf.c' object='src_mpd-zeroconf.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-zeroconf.o `test -f 'src/zeroconf.c' || echo '$(srcdir)/'`src/zeroconf.c
-
- src_mpd-zeroconf.obj: src/zeroconf.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-zeroconf.obj -MD -MP -MF $(DEPDIR)/src_mpd-zeroconf.Tpo -c -o src_mpd-zeroconf.obj `if test -f 'src/zeroconf.c'; then $(CYGPATH_W) 'src/zeroconf.c'; else $(CYGPATH_W) '$(srcdir)/src/zeroconf.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-zeroconf.Tpo $(DEPDIR)/src_mpd-zeroconf.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-zeroconf.obj -MD -MP -MF "$(DEPDIR)/src_mpd-zeroconf.Tpo" -c -o src_mpd-zeroconf.obj `if test -f 'src/zeroconf.c'; then $(CYGPATH_W) 'src/zeroconf.c'; else $(CYGPATH_W) '$(srcdir)/src/zeroconf.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-zeroconf.Tpo" "$(DEPDIR)/src_mpd-zeroconf.Po"; else rm -f "$(DEPDIR)/src_mpd-zeroconf.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/zeroconf.c' object='src_mpd-zeroconf.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-zeroconf.obj `if test -f 'src/zeroconf.c'; then $(CYGPATH_W) 'src/zeroconf.c'; else $(CYGPATH_W) '$(srcdir)/src/zeroconf.c'; fi`
-
- src_mpd-zeroconf-avahi.o: src/zeroconf-avahi.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-zeroconf-avahi.o -MD -MP -MF $(DEPDIR)/src_mpd-zeroconf-avahi.Tpo -c -o src_mpd-zeroconf-avahi.o `test -f 'src/zeroconf-avahi.c' || echo '$(srcdir)/'`src/zeroconf-avahi.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-zeroconf-avahi.Tpo $(DEPDIR)/src_mpd-zeroconf-avahi.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-zeroconf-avahi.o -MD -MP -MF "$(DEPDIR)/src_mpd-zeroconf-avahi.Tpo" -c -o src_mpd-zeroconf-avahi.o `test -f 'src/zeroconf-avahi.c' || echo '$(srcdir)/'`src/zeroconf-avahi.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-zeroconf-avahi.Tpo" "$(DEPDIR)/src_mpd-zeroconf-avahi.Po"; else rm -f "$(DEPDIR)/src_mpd-zeroconf-avahi.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/zeroconf-avahi.c' object='src_mpd-zeroconf-avahi.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-zeroconf-avahi.o `test -f 'src/zeroconf-avahi.c' || echo '$(srcdir)/'`src/zeroconf-avahi.c
-
- src_mpd-zeroconf-avahi.obj: src/zeroconf-avahi.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-zeroconf-avahi.obj -MD -MP -MF $(DEPDIR)/src_mpd-zeroconf-avahi.Tpo -c -o src_mpd-zeroconf-avahi.obj `if test -f 'src/zeroconf-avahi.c'; then $(CYGPATH_W) 'src/zeroconf-avahi.c'; else $(CYGPATH_W) '$(srcdir)/src/zeroconf-avahi.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-zeroconf-avahi.Tpo $(DEPDIR)/src_mpd-zeroconf-avahi.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-zeroconf-avahi.obj -MD -MP -MF "$(DEPDIR)/src_mpd-zeroconf-avahi.Tpo" -c -o src_mpd-zeroconf-avahi.obj `if test -f 'src/zeroconf-avahi.c'; then $(CYGPATH_W) 'src/zeroconf-avahi.c'; else $(CYGPATH_W) '$(srcdir)/src/zeroconf-avahi.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-zeroconf-avahi.Tpo" "$(DEPDIR)/src_mpd-zeroconf-avahi.Po"; else rm -f "$(DEPDIR)/src_mpd-zeroconf-avahi.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/zeroconf-avahi.c' object='src_mpd-zeroconf-avahi.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-zeroconf-avahi.obj `if test -f 'src/zeroconf-avahi.c'; then $(CYGPATH_W) 'src/zeroconf-avahi.c'; else $(CYGPATH_W) '$(srcdir)/src/zeroconf-avahi.c'; fi`
-
- src_mpd-zeroconf-bonjour.o: src/zeroconf-bonjour.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-zeroconf-bonjour.o -MD -MP -MF $(DEPDIR)/src_mpd-zeroconf-bonjour.Tpo -c -o src_mpd-zeroconf-bonjour.o `test -f 'src/zeroconf-bonjour.c' || echo '$(srcdir)/'`src/zeroconf-bonjour.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-zeroconf-bonjour.Tpo $(DEPDIR)/src_mpd-zeroconf-bonjour.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-zeroconf-bonjour.o -MD -MP -MF "$(DEPDIR)/src_mpd-zeroconf-bonjour.Tpo" -c -o src_mpd-zeroconf-bonjour.o `test -f 'src/zeroconf-bonjour.c' || echo '$(srcdir)/'`src/zeroconf-bonjour.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-zeroconf-bonjour.Tpo" "$(DEPDIR)/src_mpd-zeroconf-bonjour.Po"; else rm -f "$(DEPDIR)/src_mpd-zeroconf-bonjour.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/zeroconf-bonjour.c' object='src_mpd-zeroconf-bonjour.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-zeroconf-bonjour.o `test -f 'src/zeroconf-bonjour.c' || echo '$(srcdir)/'`src/zeroconf-bonjour.c
-
- src_mpd-zeroconf-bonjour.obj: src/zeroconf-bonjour.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-zeroconf-bonjour.obj -MD -MP -MF $(DEPDIR)/src_mpd-zeroconf-bonjour.Tpo -c -o src_mpd-zeroconf-bonjour.obj `if test -f 'src/zeroconf-bonjour.c'; then $(CYGPATH_W) 'src/zeroconf-bonjour.c'; else $(CYGPATH_W) '$(srcdir)/src/zeroconf-bonjour.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-zeroconf-bonjour.Tpo $(DEPDIR)/src_mpd-zeroconf-bonjour.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -MT src_mpd-zeroconf-bonjour.obj -MD -MP -MF "$(DEPDIR)/src_mpd-zeroconf-bonjour.Tpo" -c -o src_mpd-zeroconf-bonjour.obj `if test -f 'src/zeroconf-bonjour.c'; then $(CYGPATH_W) 'src/zeroconf-bonjour.c'; else $(CYGPATH_W) '$(srcdir)/src/zeroconf-bonjour.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/src_mpd-zeroconf-bonjour.Tpo" "$(DEPDIR)/src_mpd-zeroconf-bonjour.Po"; else rm -f "$(DEPDIR)/src_mpd-zeroconf-bonjour.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/zeroconf-bonjour.c' object='src_mpd-zeroconf-bonjour.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(src_mpd_CFLAGS) $(CFLAGS) -c -o src_mpd-zeroconf-bonjour.obj `if test -f 'src/zeroconf-bonjour.c'; then $(CYGPATH_W) 'src/zeroconf-bonjour.c'; else $(CYGPATH_W) '$(srcdir)/src/zeroconf-bonjour.c'; fi`
-
- test_read_conf-read_conf.o: test/read_conf.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_conf-read_conf.o -MD -MP -MF $(DEPDIR)/test_read_conf-read_conf.Tpo -c -o test_read_conf-read_conf.o `test -f 'test/read_conf.c' || echo '$(srcdir)/'`test/read_conf.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_conf-read_conf.Tpo $(DEPDIR)/test_read_conf-read_conf.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_conf-read_conf.o -MD -MP -MF "$(DEPDIR)/test_read_conf-read_conf.Tpo" -c -o test_read_conf-read_conf.o `test -f 'test/read_conf.c' || echo '$(srcdir)/'`test/read_conf.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_conf-read_conf.Tpo" "$(DEPDIR)/test_read_conf-read_conf.Po"; else rm -f "$(DEPDIR)/test_read_conf-read_conf.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/read_conf.c' object='test_read_conf-read_conf.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_conf-read_conf.o `test -f 'test/read_conf.c' || echo '$(srcdir)/'`test/read_conf.c
-
- test_read_conf-read_conf.obj: test/read_conf.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_conf-read_conf.obj -MD -MP -MF $(DEPDIR)/test_read_conf-read_conf.Tpo -c -o test_read_conf-read_conf.obj `if test -f 'test/read_conf.c'; then $(CYGPATH_W) 'test/read_conf.c'; else $(CYGPATH_W) '$(srcdir)/test/read_conf.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_conf-read_conf.Tpo $(DEPDIR)/test_read_conf-read_conf.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_conf-read_conf.obj -MD -MP -MF "$(DEPDIR)/test_read_conf-read_conf.Tpo" -c -o test_read_conf-read_conf.obj `if test -f 'test/read_conf.c'; then $(CYGPATH_W) 'test/read_conf.c'; else $(CYGPATH_W) '$(srcdir)/test/read_conf.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_conf-read_conf.Tpo" "$(DEPDIR)/test_read_conf-read_conf.Po"; else rm -f "$(DEPDIR)/test_read_conf-read_conf.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/read_conf.c' object='test_read_conf-read_conf.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_conf-read_conf.obj `if test -f 'test/read_conf.c'; then $(CYGPATH_W) 'test/read_conf.c'; else $(CYGPATH_W) '$(srcdir)/test/read_conf.c'; fi`
-
- test_read_conf-conf.o: src/conf.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_conf-conf.o -MD -MP -MF $(DEPDIR)/test_read_conf-conf.Tpo -c -o test_read_conf-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_conf-conf.Tpo $(DEPDIR)/test_read_conf-conf.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_conf-conf.o -MD -MP -MF "$(DEPDIR)/test_read_conf-conf.Tpo" -c -o test_read_conf-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_conf-conf.Tpo" "$(DEPDIR)/test_read_conf-conf.Po"; else rm -f "$(DEPDIR)/test_read_conf-conf.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/conf.c' object='test_read_conf-conf.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_conf-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c
-
- test_read_conf-conf.obj: src/conf.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_conf-conf.obj -MD -MP -MF $(DEPDIR)/test_read_conf-conf.Tpo -c -o test_read_conf-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_conf-conf.Tpo $(DEPDIR)/test_read_conf-conf.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_conf-conf.obj -MD -MP -MF "$(DEPDIR)/test_read_conf-conf.Tpo" -c -o test_read_conf-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_conf-conf.Tpo" "$(DEPDIR)/test_read_conf-conf.Po"; else rm -f "$(DEPDIR)/test_read_conf-conf.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/conf.c' object='test_read_conf-conf.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_conf-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi`
-
- test_read_conf-buffer2array.o: src/buffer2array.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_conf-buffer2array.o -MD -MP -MF $(DEPDIR)/test_read_conf-buffer2array.Tpo -c -o test_read_conf-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_conf-buffer2array.Tpo $(DEPDIR)/test_read_conf-buffer2array.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_conf-buffer2array.o -MD -MP -MF "$(DEPDIR)/test_read_conf-buffer2array.Tpo" -c -o test_read_conf-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_conf-buffer2array.Tpo" "$(DEPDIR)/test_read_conf-buffer2array.Po"; else rm -f "$(DEPDIR)/test_read_conf-buffer2array.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer2array.c' object='test_read_conf-buffer2array.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_conf-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c
-
- test_read_conf-buffer2array.obj: src/buffer2array.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_conf-buffer2array.obj -MD -MP -MF $(DEPDIR)/test_read_conf-buffer2array.Tpo -c -o test_read_conf-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_conf-buffer2array.Tpo $(DEPDIR)/test_read_conf-buffer2array.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_conf-buffer2array.obj -MD -MP -MF "$(DEPDIR)/test_read_conf-buffer2array.Tpo" -c -o test_read_conf-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_conf-buffer2array.Tpo" "$(DEPDIR)/test_read_conf-buffer2array.Po"; else rm -f "$(DEPDIR)/test_read_conf-buffer2array.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer2array.c' object='test_read_conf-buffer2array.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_conf-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi`
-
- test_read_conf-utils.o: src/utils.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_conf-utils.o -MD -MP -MF $(DEPDIR)/test_read_conf-utils.Tpo -c -o test_read_conf-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_conf-utils.Tpo $(DEPDIR)/test_read_conf-utils.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_conf-utils.o -MD -MP -MF "$(DEPDIR)/test_read_conf-utils.Tpo" -c -o test_read_conf-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_conf-utils.Tpo" "$(DEPDIR)/test_read_conf-utils.Po"; else rm -f "$(DEPDIR)/test_read_conf-utils.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/utils.c' object='test_read_conf-utils.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_conf-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c
-
- test_read_conf-utils.obj: src/utils.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_conf-utils.obj -MD -MP -MF $(DEPDIR)/test_read_conf-utils.Tpo -c -o test_read_conf-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_conf-utils.Tpo $(DEPDIR)/test_read_conf-utils.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_conf-utils.obj -MD -MP -MF "$(DEPDIR)/test_read_conf-utils.Tpo" -c -o test_read_conf-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_conf-utils.Tpo" "$(DEPDIR)/test_read_conf-utils.Po"; else rm -f "$(DEPDIR)/test_read_conf-utils.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/utils.c' object='test_read_conf-utils.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_conf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_conf-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi`
-
- test_read_mixer-read_mixer.o: test/read_mixer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-read_mixer.o -MD -MP -MF $(DEPDIR)/test_read_mixer-read_mixer.Tpo -c -o test_read_mixer-read_mixer.o `test -f 'test/read_mixer.c' || echo '$(srcdir)/'`test/read_mixer.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-read_mixer.Tpo $(DEPDIR)/test_read_mixer-read_mixer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-read_mixer.o -MD -MP -MF "$(DEPDIR)/test_read_mixer-read_mixer.Tpo" -c -o test_read_mixer-read_mixer.o `test -f 'test/read_mixer.c' || echo '$(srcdir)/'`test/read_mixer.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-read_mixer.Tpo" "$(DEPDIR)/test_read_mixer-read_mixer.Po"; else rm -f "$(DEPDIR)/test_read_mixer-read_mixer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/read_mixer.c' object='test_read_mixer-read_mixer.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-read_mixer.o `test -f 'test/read_mixer.c' || echo '$(srcdir)/'`test/read_mixer.c
-
- test_read_mixer-read_mixer.obj: test/read_mixer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-read_mixer.obj -MD -MP -MF $(DEPDIR)/test_read_mixer-read_mixer.Tpo -c -o test_read_mixer-read_mixer.obj `if test -f 'test/read_mixer.c'; then $(CYGPATH_W) 'test/read_mixer.c'; else $(CYGPATH_W) '$(srcdir)/test/read_mixer.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-read_mixer.Tpo $(DEPDIR)/test_read_mixer-read_mixer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-read_mixer.obj -MD -MP -MF "$(DEPDIR)/test_read_mixer-read_mixer.Tpo" -c -o test_read_mixer-read_mixer.obj `if test -f 'test/read_mixer.c'; then $(CYGPATH_W) 'test/read_mixer.c'; else $(CYGPATH_W) '$(srcdir)/test/read_mixer.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-read_mixer.Tpo" "$(DEPDIR)/test_read_mixer-read_mixer.Po"; else rm -f "$(DEPDIR)/test_read_mixer-read_mixer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/read_mixer.c' object='test_read_mixer-read_mixer.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-read_mixer.obj `if test -f 'test/read_mixer.c'; then $(CYGPATH_W) 'test/read_mixer.c'; else $(CYGPATH_W) '$(srcdir)/test/read_mixer.c'; fi`
-
- test_read_mixer-conf.o: src/conf.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-conf.o -MD -MP -MF $(DEPDIR)/test_read_mixer-conf.Tpo -c -o test_read_mixer-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-conf.Tpo $(DEPDIR)/test_read_mixer-conf.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-conf.o -MD -MP -MF "$(DEPDIR)/test_read_mixer-conf.Tpo" -c -o test_read_mixer-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-conf.Tpo" "$(DEPDIR)/test_read_mixer-conf.Po"; else rm -f "$(DEPDIR)/test_read_mixer-conf.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/conf.c' object='test_read_mixer-conf.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c
-
- test_read_mixer-conf.obj: src/conf.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-conf.obj -MD -MP -MF $(DEPDIR)/test_read_mixer-conf.Tpo -c -o test_read_mixer-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-conf.Tpo $(DEPDIR)/test_read_mixer-conf.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-conf.obj -MD -MP -MF "$(DEPDIR)/test_read_mixer-conf.Tpo" -c -o test_read_mixer-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-conf.Tpo" "$(DEPDIR)/test_read_mixer-conf.Po"; else rm -f "$(DEPDIR)/test_read_mixer-conf.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/conf.c' object='test_read_mixer-conf.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi`
-
- test_read_mixer-buffer2array.o: src/buffer2array.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-buffer2array.o -MD -MP -MF $(DEPDIR)/test_read_mixer-buffer2array.Tpo -c -o test_read_mixer-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-buffer2array.Tpo $(DEPDIR)/test_read_mixer-buffer2array.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-buffer2array.o -MD -MP -MF "$(DEPDIR)/test_read_mixer-buffer2array.Tpo" -c -o test_read_mixer-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-buffer2array.Tpo" "$(DEPDIR)/test_read_mixer-buffer2array.Po"; else rm -f "$(DEPDIR)/test_read_mixer-buffer2array.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer2array.c' object='test_read_mixer-buffer2array.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c
-
- test_read_mixer-buffer2array.obj: src/buffer2array.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-buffer2array.obj -MD -MP -MF $(DEPDIR)/test_read_mixer-buffer2array.Tpo -c -o test_read_mixer-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-buffer2array.Tpo $(DEPDIR)/test_read_mixer-buffer2array.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-buffer2array.obj -MD -MP -MF "$(DEPDIR)/test_read_mixer-buffer2array.Tpo" -c -o test_read_mixer-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-buffer2array.Tpo" "$(DEPDIR)/test_read_mixer-buffer2array.Po"; else rm -f "$(DEPDIR)/test_read_mixer-buffer2array.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer2array.c' object='test_read_mixer-buffer2array.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi`
-
- test_read_mixer-utils.o: src/utils.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-utils.o -MD -MP -MF $(DEPDIR)/test_read_mixer-utils.Tpo -c -o test_read_mixer-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-utils.Tpo $(DEPDIR)/test_read_mixer-utils.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-utils.o -MD -MP -MF "$(DEPDIR)/test_read_mixer-utils.Tpo" -c -o test_read_mixer-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-utils.Tpo" "$(DEPDIR)/test_read_mixer-utils.Po"; else rm -f "$(DEPDIR)/test_read_mixer-utils.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/utils.c' object='test_read_mixer-utils.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c
-
- test_read_mixer-utils.obj: src/utils.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-utils.obj -MD -MP -MF $(DEPDIR)/test_read_mixer-utils.Tpo -c -o test_read_mixer-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-utils.Tpo $(DEPDIR)/test_read_mixer-utils.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-utils.obj -MD -MP -MF "$(DEPDIR)/test_read_mixer-utils.Tpo" -c -o test_read_mixer-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-utils.Tpo" "$(DEPDIR)/test_read_mixer-utils.Po"; else rm -f "$(DEPDIR)/test_read_mixer-utils.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/utils.c' object='test_read_mixer-utils.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi`
-
- test_read_mixer-log.o: src/log.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-log.o -MD -MP -MF $(DEPDIR)/test_read_mixer-log.Tpo -c -o test_read_mixer-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-log.Tpo $(DEPDIR)/test_read_mixer-log.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-log.o -MD -MP -MF "$(DEPDIR)/test_read_mixer-log.Tpo" -c -o test_read_mixer-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-log.Tpo" "$(DEPDIR)/test_read_mixer-log.Po"; else rm -f "$(DEPDIR)/test_read_mixer-log.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/log.c' object='test_read_mixer-log.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c
-
- test_read_mixer-log.obj: src/log.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-log.obj -MD -MP -MF $(DEPDIR)/test_read_mixer-log.Tpo -c -o test_read_mixer-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-log.Tpo $(DEPDIR)/test_read_mixer-log.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-log.obj -MD -MP -MF "$(DEPDIR)/test_read_mixer-log.Tpo" -c -o test_read_mixer-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-log.Tpo" "$(DEPDIR)/test_read_mixer-log.Po"; else rm -f "$(DEPDIR)/test_read_mixer-log.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/log.c' object='test_read_mixer-log.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi`
-
- test_read_mixer-mixer_control.o: src/mixer_control.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-mixer_control.o -MD -MP -MF $(DEPDIR)/test_read_mixer-mixer_control.Tpo -c -o test_read_mixer-mixer_control.o `test -f 'src/mixer_control.c' || echo '$(srcdir)/'`src/mixer_control.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-mixer_control.Tpo $(DEPDIR)/test_read_mixer-mixer_control.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-mixer_control.o -MD -MP -MF "$(DEPDIR)/test_read_mixer-mixer_control.Tpo" -c -o test_read_mixer-mixer_control.o `test -f 'src/mixer_control.c' || echo '$(srcdir)/'`src/mixer_control.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-mixer_control.Tpo" "$(DEPDIR)/test_read_mixer-mixer_control.Po"; else rm -f "$(DEPDIR)/test_read_mixer-mixer_control.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer_control.c' object='test_read_mixer-mixer_control.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-mixer_control.o `test -f 'src/mixer_control.c' || echo '$(srcdir)/'`src/mixer_control.c
-
- test_read_mixer-mixer_control.obj: src/mixer_control.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-mixer_control.obj -MD -MP -MF $(DEPDIR)/test_read_mixer-mixer_control.Tpo -c -o test_read_mixer-mixer_control.obj `if test -f 'src/mixer_control.c'; then $(CYGPATH_W) 'src/mixer_control.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_control.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-mixer_control.Tpo $(DEPDIR)/test_read_mixer-mixer_control.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-mixer_control.obj -MD -MP -MF "$(DEPDIR)/test_read_mixer-mixer_control.Tpo" -c -o test_read_mixer-mixer_control.obj `if test -f 'src/mixer_control.c'; then $(CYGPATH_W) 'src/mixer_control.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_control.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-mixer_control.Tpo" "$(DEPDIR)/test_read_mixer-mixer_control.Po"; else rm -f "$(DEPDIR)/test_read_mixer-mixer_control.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer_control.c' object='test_read_mixer-mixer_control.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-mixer_control.obj `if test -f 'src/mixer_control.c'; then $(CYGPATH_W) 'src/mixer_control.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_control.c'; fi`
-
- test_read_mixer-mixer_api.o: src/mixer_api.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-mixer_api.o -MD -MP -MF $(DEPDIR)/test_read_mixer-mixer_api.Tpo -c -o test_read_mixer-mixer_api.o `test -f 'src/mixer_api.c' || echo '$(srcdir)/'`src/mixer_api.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-mixer_api.Tpo $(DEPDIR)/test_read_mixer-mixer_api.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-mixer_api.o -MD -MP -MF "$(DEPDIR)/test_read_mixer-mixer_api.Tpo" -c -o test_read_mixer-mixer_api.o `test -f 'src/mixer_api.c' || echo '$(srcdir)/'`src/mixer_api.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-mixer_api.Tpo" "$(DEPDIR)/test_read_mixer-mixer_api.Po"; else rm -f "$(DEPDIR)/test_read_mixer-mixer_api.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer_api.c' object='test_read_mixer-mixer_api.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-mixer_api.o `test -f 'src/mixer_api.c' || echo '$(srcdir)/'`src/mixer_api.c
-
- test_read_mixer-mixer_api.obj: src/mixer_api.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-mixer_api.obj -MD -MP -MF $(DEPDIR)/test_read_mixer-mixer_api.Tpo -c -o test_read_mixer-mixer_api.obj `if test -f 'src/mixer_api.c'; then $(CYGPATH_W) 'src/mixer_api.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_api.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-mixer_api.Tpo $(DEPDIR)/test_read_mixer-mixer_api.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-mixer_api.obj -MD -MP -MF "$(DEPDIR)/test_read_mixer-mixer_api.Tpo" -c -o test_read_mixer-mixer_api.obj `if test -f 'src/mixer_api.c'; then $(CYGPATH_W) 'src/mixer_api.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_api.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-mixer_api.Tpo" "$(DEPDIR)/test_read_mixer-mixer_api.Po"; else rm -f "$(DEPDIR)/test_read_mixer-mixer_api.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer_api.c' object='test_read_mixer-mixer_api.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-mixer_api.obj `if test -f 'src/mixer_api.c'; then $(CYGPATH_W) 'src/mixer_api.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_api.c'; fi`
-
- test_read_mixer-alsa_mixer.o: src/mixer/alsa_mixer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-alsa_mixer.o -MD -MP -MF $(DEPDIR)/test_read_mixer-alsa_mixer.Tpo -c -o test_read_mixer-alsa_mixer.o `test -f 'src/mixer/alsa_mixer.c' || echo '$(srcdir)/'`src/mixer/alsa_mixer.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-alsa_mixer.Tpo $(DEPDIR)/test_read_mixer-alsa_mixer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-alsa_mixer.o -MD -MP -MF "$(DEPDIR)/test_read_mixer-alsa_mixer.Tpo" -c -o test_read_mixer-alsa_mixer.o `test -f 'src/mixer/alsa_mixer.c' || echo '$(srcdir)/'`src/mixer/alsa_mixer.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-alsa_mixer.Tpo" "$(DEPDIR)/test_read_mixer-alsa_mixer.Po"; else rm -f "$(DEPDIR)/test_read_mixer-alsa_mixer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/alsa_mixer.c' object='test_read_mixer-alsa_mixer.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-alsa_mixer.o `test -f 'src/mixer/alsa_mixer.c' || echo '$(srcdir)/'`src/mixer/alsa_mixer.c
-
- test_read_mixer-alsa_mixer.obj: src/mixer/alsa_mixer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-alsa_mixer.obj -MD -MP -MF $(DEPDIR)/test_read_mixer-alsa_mixer.Tpo -c -o test_read_mixer-alsa_mixer.obj `if test -f 'src/mixer/alsa_mixer.c'; then $(CYGPATH_W) 'src/mixer/alsa_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/alsa_mixer.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-alsa_mixer.Tpo $(DEPDIR)/test_read_mixer-alsa_mixer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-alsa_mixer.obj -MD -MP -MF "$(DEPDIR)/test_read_mixer-alsa_mixer.Tpo" -c -o test_read_mixer-alsa_mixer.obj `if test -f 'src/mixer/alsa_mixer.c'; then $(CYGPATH_W) 'src/mixer/alsa_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/alsa_mixer.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-alsa_mixer.Tpo" "$(DEPDIR)/test_read_mixer-alsa_mixer.Po"; else rm -f "$(DEPDIR)/test_read_mixer-alsa_mixer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/alsa_mixer.c' object='test_read_mixer-alsa_mixer.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-alsa_mixer.obj `if test -f 'src/mixer/alsa_mixer.c'; then $(CYGPATH_W) 'src/mixer/alsa_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/alsa_mixer.c'; fi`
-
- test_read_mixer-oss_mixer.o: src/mixer/oss_mixer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-oss_mixer.o -MD -MP -MF $(DEPDIR)/test_read_mixer-oss_mixer.Tpo -c -o test_read_mixer-oss_mixer.o `test -f 'src/mixer/oss_mixer.c' || echo '$(srcdir)/'`src/mixer/oss_mixer.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-oss_mixer.Tpo $(DEPDIR)/test_read_mixer-oss_mixer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-oss_mixer.o -MD -MP -MF "$(DEPDIR)/test_read_mixer-oss_mixer.Tpo" -c -o test_read_mixer-oss_mixer.o `test -f 'src/mixer/oss_mixer.c' || echo '$(srcdir)/'`src/mixer/oss_mixer.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-oss_mixer.Tpo" "$(DEPDIR)/test_read_mixer-oss_mixer.Po"; else rm -f "$(DEPDIR)/test_read_mixer-oss_mixer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/oss_mixer.c' object='test_read_mixer-oss_mixer.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-oss_mixer.o `test -f 'src/mixer/oss_mixer.c' || echo '$(srcdir)/'`src/mixer/oss_mixer.c
-
- test_read_mixer-oss_mixer.obj: src/mixer/oss_mixer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-oss_mixer.obj -MD -MP -MF $(DEPDIR)/test_read_mixer-oss_mixer.Tpo -c -o test_read_mixer-oss_mixer.obj `if test -f 'src/mixer/oss_mixer.c'; then $(CYGPATH_W) 'src/mixer/oss_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/oss_mixer.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-oss_mixer.Tpo $(DEPDIR)/test_read_mixer-oss_mixer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-oss_mixer.obj -MD -MP -MF "$(DEPDIR)/test_read_mixer-oss_mixer.Tpo" -c -o test_read_mixer-oss_mixer.obj `if test -f 'src/mixer/oss_mixer.c'; then $(CYGPATH_W) 'src/mixer/oss_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/oss_mixer.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-oss_mixer.Tpo" "$(DEPDIR)/test_read_mixer-oss_mixer.Po"; else rm -f "$(DEPDIR)/test_read_mixer-oss_mixer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/oss_mixer.c' object='test_read_mixer-oss_mixer.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-oss_mixer.obj `if test -f 'src/mixer/oss_mixer.c'; then $(CYGPATH_W) 'src/mixer/oss_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/oss_mixer.c'; fi`
-
- test_read_mixer-pulse_mixer.o: src/mixer/pulse_mixer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-pulse_mixer.o -MD -MP -MF $(DEPDIR)/test_read_mixer-pulse_mixer.Tpo -c -o test_read_mixer-pulse_mixer.o `test -f 'src/mixer/pulse_mixer.c' || echo '$(srcdir)/'`src/mixer/pulse_mixer.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-pulse_mixer.Tpo $(DEPDIR)/test_read_mixer-pulse_mixer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-pulse_mixer.o -MD -MP -MF "$(DEPDIR)/test_read_mixer-pulse_mixer.Tpo" -c -o test_read_mixer-pulse_mixer.o `test -f 'src/mixer/pulse_mixer.c' || echo '$(srcdir)/'`src/mixer/pulse_mixer.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-pulse_mixer.Tpo" "$(DEPDIR)/test_read_mixer-pulse_mixer.Po"; else rm -f "$(DEPDIR)/test_read_mixer-pulse_mixer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/pulse_mixer.c' object='test_read_mixer-pulse_mixer.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-pulse_mixer.o `test -f 'src/mixer/pulse_mixer.c' || echo '$(srcdir)/'`src/mixer/pulse_mixer.c
-
- test_read_mixer-pulse_mixer.obj: src/mixer/pulse_mixer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-pulse_mixer.obj -MD -MP -MF $(DEPDIR)/test_read_mixer-pulse_mixer.Tpo -c -o test_read_mixer-pulse_mixer.obj `if test -f 'src/mixer/pulse_mixer.c'; then $(CYGPATH_W) 'src/mixer/pulse_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/pulse_mixer.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_mixer-pulse_mixer.Tpo $(DEPDIR)/test_read_mixer-pulse_mixer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_mixer-pulse_mixer.obj -MD -MP -MF "$(DEPDIR)/test_read_mixer-pulse_mixer.Tpo" -c -o test_read_mixer-pulse_mixer.obj `if test -f 'src/mixer/pulse_mixer.c'; then $(CYGPATH_W) 'src/mixer/pulse_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/pulse_mixer.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_mixer-pulse_mixer.Tpo" "$(DEPDIR)/test_read_mixer-pulse_mixer.Po"; else rm -f "$(DEPDIR)/test_read_mixer-pulse_mixer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/pulse_mixer.c' object='test_read_mixer-pulse_mixer.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_mixer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_mixer-pulse_mixer.obj `if test -f 'src/mixer/pulse_mixer.c'; then $(CYGPATH_W) 'src/mixer/pulse_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/pulse_mixer.c'; fi`
-
- test_read_tags-read_tags.o: test/read_tags.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-read_tags.o -MD -MP -MF $(DEPDIR)/test_read_tags-read_tags.Tpo -c -o test_read_tags-read_tags.o `test -f 'test/read_tags.c' || echo '$(srcdir)/'`test/read_tags.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-read_tags.Tpo $(DEPDIR)/test_read_tags-read_tags.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-read_tags.o -MD -MP -MF "$(DEPDIR)/test_read_tags-read_tags.Tpo" -c -o test_read_tags-read_tags.o `test -f 'test/read_tags.c' || echo '$(srcdir)/'`test/read_tags.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-read_tags.Tpo" "$(DEPDIR)/test_read_tags-read_tags.Po"; else rm -f "$(DEPDIR)/test_read_tags-read_tags.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/read_tags.c' object='test_read_tags-read_tags.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-read_tags.o `test -f 'test/read_tags.c' || echo '$(srcdir)/'`test/read_tags.c
-
- test_read_tags-read_tags.obj: test/read_tags.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-read_tags.obj -MD -MP -MF $(DEPDIR)/test_read_tags-read_tags.Tpo -c -o test_read_tags-read_tags.obj `if test -f 'test/read_tags.c'; then $(CYGPATH_W) 'test/read_tags.c'; else $(CYGPATH_W) '$(srcdir)/test/read_tags.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-read_tags.Tpo $(DEPDIR)/test_read_tags-read_tags.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-read_tags.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-read_tags.Tpo" -c -o test_read_tags-read_tags.obj `if test -f 'test/read_tags.c'; then $(CYGPATH_W) 'test/read_tags.c'; else $(CYGPATH_W) '$(srcdir)/test/read_tags.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-read_tags.Tpo" "$(DEPDIR)/test_read_tags-read_tags.Po"; else rm -f "$(DEPDIR)/test_read_tags-read_tags.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/read_tags.c' object='test_read_tags-read_tags.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-read_tags.obj `if test -f 'test/read_tags.c'; then $(CYGPATH_W) 'test/read_tags.c'; else $(CYGPATH_W) '$(srcdir)/test/read_tags.c'; fi`
-
- test_read_tags-conf.o: src/conf.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-conf.o -MD -MP -MF $(DEPDIR)/test_read_tags-conf.Tpo -c -o test_read_tags-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-conf.Tpo $(DEPDIR)/test_read_tags-conf.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-conf.o -MD -MP -MF "$(DEPDIR)/test_read_tags-conf.Tpo" -c -o test_read_tags-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-conf.Tpo" "$(DEPDIR)/test_read_tags-conf.Po"; else rm -f "$(DEPDIR)/test_read_tags-conf.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/conf.c' object='test_read_tags-conf.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c
-
- test_read_tags-conf.obj: src/conf.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-conf.obj -MD -MP -MF $(DEPDIR)/test_read_tags-conf.Tpo -c -o test_read_tags-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-conf.Tpo $(DEPDIR)/test_read_tags-conf.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-conf.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-conf.Tpo" -c -o test_read_tags-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-conf.Tpo" "$(DEPDIR)/test_read_tags-conf.Po"; else rm -f "$(DEPDIR)/test_read_tags-conf.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/conf.c' object='test_read_tags-conf.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi`
-
- test_read_tags-buffer2array.o: src/buffer2array.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-buffer2array.o -MD -MP -MF $(DEPDIR)/test_read_tags-buffer2array.Tpo -c -o test_read_tags-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-buffer2array.Tpo $(DEPDIR)/test_read_tags-buffer2array.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-buffer2array.o -MD -MP -MF "$(DEPDIR)/test_read_tags-buffer2array.Tpo" -c -o test_read_tags-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-buffer2array.Tpo" "$(DEPDIR)/test_read_tags-buffer2array.Po"; else rm -f "$(DEPDIR)/test_read_tags-buffer2array.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer2array.c' object='test_read_tags-buffer2array.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c
-
- test_read_tags-buffer2array.obj: src/buffer2array.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-buffer2array.obj -MD -MP -MF $(DEPDIR)/test_read_tags-buffer2array.Tpo -c -o test_read_tags-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-buffer2array.Tpo $(DEPDIR)/test_read_tags-buffer2array.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-buffer2array.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-buffer2array.Tpo" -c -o test_read_tags-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-buffer2array.Tpo" "$(DEPDIR)/test_read_tags-buffer2array.Po"; else rm -f "$(DEPDIR)/test_read_tags-buffer2array.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer2array.c' object='test_read_tags-buffer2array.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi`
-
- test_read_tags-utils.o: src/utils.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-utils.o -MD -MP -MF $(DEPDIR)/test_read_tags-utils.Tpo -c -o test_read_tags-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-utils.Tpo $(DEPDIR)/test_read_tags-utils.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-utils.o -MD -MP -MF "$(DEPDIR)/test_read_tags-utils.Tpo" -c -o test_read_tags-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-utils.Tpo" "$(DEPDIR)/test_read_tags-utils.Po"; else rm -f "$(DEPDIR)/test_read_tags-utils.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/utils.c' object='test_read_tags-utils.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c
-
- test_read_tags-utils.obj: src/utils.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-utils.obj -MD -MP -MF $(DEPDIR)/test_read_tags-utils.Tpo -c -o test_read_tags-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-utils.Tpo $(DEPDIR)/test_read_tags-utils.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-utils.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-utils.Tpo" -c -o test_read_tags-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-utils.Tpo" "$(DEPDIR)/test_read_tags-utils.Po"; else rm -f "$(DEPDIR)/test_read_tags-utils.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/utils.c' object='test_read_tags-utils.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi`
-
- test_read_tags-log.o: src/log.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-log.o -MD -MP -MF $(DEPDIR)/test_read_tags-log.Tpo -c -o test_read_tags-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-log.Tpo $(DEPDIR)/test_read_tags-log.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-log.o -MD -MP -MF "$(DEPDIR)/test_read_tags-log.Tpo" -c -o test_read_tags-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-log.Tpo" "$(DEPDIR)/test_read_tags-log.Po"; else rm -f "$(DEPDIR)/test_read_tags-log.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/log.c' object='test_read_tags-log.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c
-
- test_read_tags-log.obj: src/log.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-log.obj -MD -MP -MF $(DEPDIR)/test_read_tags-log.Tpo -c -o test_read_tags-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-log.Tpo $(DEPDIR)/test_read_tags-log.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-log.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-log.Tpo" -c -o test_read_tags-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-log.Tpo" "$(DEPDIR)/test_read_tags-log.Po"; else rm -f "$(DEPDIR)/test_read_tags-log.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/log.c' object='test_read_tags-log.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi`
-
- test_read_tags-tag.o: src/tag.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-tag.o -MD -MP -MF $(DEPDIR)/test_read_tags-tag.Tpo -c -o test_read_tags-tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-tag.Tpo $(DEPDIR)/test_read_tags-tag.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-tag.o -MD -MP -MF "$(DEPDIR)/test_read_tags-tag.Tpo" -c -o test_read_tags-tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-tag.Tpo" "$(DEPDIR)/test_read_tags-tag.Po"; else rm -f "$(DEPDIR)/test_read_tags-tag.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag.c' object='test_read_tags-tag.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c
-
- test_read_tags-tag.obj: src/tag.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-tag.obj -MD -MP -MF $(DEPDIR)/test_read_tags-tag.Tpo -c -o test_read_tags-tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-tag.Tpo $(DEPDIR)/test_read_tags-tag.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-tag.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-tag.Tpo" -c -o test_read_tags-tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-tag.Tpo" "$(DEPDIR)/test_read_tags-tag.Po"; else rm -f "$(DEPDIR)/test_read_tags-tag.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag.c' object='test_read_tags-tag.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi`
-
- test_read_tags-tag_pool.o: src/tag_pool.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-tag_pool.o -MD -MP -MF $(DEPDIR)/test_read_tags-tag_pool.Tpo -c -o test_read_tags-tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-tag_pool.Tpo $(DEPDIR)/test_read_tags-tag_pool.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-tag_pool.o -MD -MP -MF "$(DEPDIR)/test_read_tags-tag_pool.Tpo" -c -o test_read_tags-tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-tag_pool.Tpo" "$(DEPDIR)/test_read_tags-tag_pool.Po"; else rm -f "$(DEPDIR)/test_read_tags-tag_pool.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_pool.c' object='test_read_tags-tag_pool.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c
-
- test_read_tags-tag_pool.obj: src/tag_pool.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-tag_pool.obj -MD -MP -MF $(DEPDIR)/test_read_tags-tag_pool.Tpo -c -o test_read_tags-tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-tag_pool.Tpo $(DEPDIR)/test_read_tags-tag_pool.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-tag_pool.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-tag_pool.Tpo" -c -o test_read_tags-tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-tag_pool.Tpo" "$(DEPDIR)/test_read_tags-tag_pool.Po"; else rm -f "$(DEPDIR)/test_read_tags-tag_pool.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_pool.c' object='test_read_tags-tag_pool.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi`
-
- test_read_tags-replay_gain.o: src/replay_gain.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-replay_gain.o -MD -MP -MF $(DEPDIR)/test_read_tags-replay_gain.Tpo -c -o test_read_tags-replay_gain.o `test -f 'src/replay_gain.c' || echo '$(srcdir)/'`src/replay_gain.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-replay_gain.Tpo $(DEPDIR)/test_read_tags-replay_gain.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-replay_gain.o -MD -MP -MF "$(DEPDIR)/test_read_tags-replay_gain.Tpo" -c -o test_read_tags-replay_gain.o `test -f 'src/replay_gain.c' || echo '$(srcdir)/'`src/replay_gain.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-replay_gain.Tpo" "$(DEPDIR)/test_read_tags-replay_gain.Po"; else rm -f "$(DEPDIR)/test_read_tags-replay_gain.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/replay_gain.c' object='test_read_tags-replay_gain.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-replay_gain.o `test -f 'src/replay_gain.c' || echo '$(srcdir)/'`src/replay_gain.c
-
- test_read_tags-replay_gain.obj: src/replay_gain.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-replay_gain.obj -MD -MP -MF $(DEPDIR)/test_read_tags-replay_gain.Tpo -c -o test_read_tags-replay_gain.obj `if test -f 'src/replay_gain.c'; then $(CYGPATH_W) 'src/replay_gain.c'; else $(CYGPATH_W) '$(srcdir)/src/replay_gain.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-replay_gain.Tpo $(DEPDIR)/test_read_tags-replay_gain.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-replay_gain.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-replay_gain.Tpo" -c -o test_read_tags-replay_gain.obj `if test -f 'src/replay_gain.c'; then $(CYGPATH_W) 'src/replay_gain.c'; else $(CYGPATH_W) '$(srcdir)/src/replay_gain.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-replay_gain.Tpo" "$(DEPDIR)/test_read_tags-replay_gain.Po"; else rm -f "$(DEPDIR)/test_read_tags-replay_gain.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/replay_gain.c' object='test_read_tags-replay_gain.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-replay_gain.obj `if test -f 'src/replay_gain.c'; then $(CYGPATH_W) 'src/replay_gain.c'; else $(CYGPATH_W) '$(srcdir)/src/replay_gain.c'; fi`
-
- test_read_tags-uri.o: src/uri.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-uri.o -MD -MP -MF $(DEPDIR)/test_read_tags-uri.Tpo -c -o test_read_tags-uri.o `test -f 'src/uri.c' || echo '$(srcdir)/'`src/uri.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-uri.Tpo $(DEPDIR)/test_read_tags-uri.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-uri.o -MD -MP -MF "$(DEPDIR)/test_read_tags-uri.Tpo" -c -o test_read_tags-uri.o `test -f 'src/uri.c' || echo '$(srcdir)/'`src/uri.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-uri.Tpo" "$(DEPDIR)/test_read_tags-uri.Po"; else rm -f "$(DEPDIR)/test_read_tags-uri.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/uri.c' object='test_read_tags-uri.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-uri.o `test -f 'src/uri.c' || echo '$(srcdir)/'`src/uri.c
-
- test_read_tags-uri.obj: src/uri.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-uri.obj -MD -MP -MF $(DEPDIR)/test_read_tags-uri.Tpo -c -o test_read_tags-uri.obj `if test -f 'src/uri.c'; then $(CYGPATH_W) 'src/uri.c'; else $(CYGPATH_W) '$(srcdir)/src/uri.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-uri.Tpo $(DEPDIR)/test_read_tags-uri.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-uri.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-uri.Tpo" -c -o test_read_tags-uri.obj `if test -f 'src/uri.c'; then $(CYGPATH_W) 'src/uri.c'; else $(CYGPATH_W) '$(srcdir)/src/uri.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-uri.Tpo" "$(DEPDIR)/test_read_tags-uri.Po"; else rm -f "$(DEPDIR)/test_read_tags-uri.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/uri.c' object='test_read_tags-uri.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-uri.obj `if test -f 'src/uri.c'; then $(CYGPATH_W) 'src/uri.c'; else $(CYGPATH_W) '$(srcdir)/src/uri.c'; fi`
-
- test_read_tags-timer.o: src/timer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-timer.o -MD -MP -MF $(DEPDIR)/test_read_tags-timer.Tpo -c -o test_read_tags-timer.o `test -f 'src/timer.c' || echo '$(srcdir)/'`src/timer.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-timer.Tpo $(DEPDIR)/test_read_tags-timer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-timer.o -MD -MP -MF "$(DEPDIR)/test_read_tags-timer.Tpo" -c -o test_read_tags-timer.o `test -f 'src/timer.c' || echo '$(srcdir)/'`src/timer.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-timer.Tpo" "$(DEPDIR)/test_read_tags-timer.Po"; else rm -f "$(DEPDIR)/test_read_tags-timer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/timer.c' object='test_read_tags-timer.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-timer.o `test -f 'src/timer.c' || echo '$(srcdir)/'`src/timer.c
-
- test_read_tags-timer.obj: src/timer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-timer.obj -MD -MP -MF $(DEPDIR)/test_read_tags-timer.Tpo -c -o test_read_tags-timer.obj `if test -f 'src/timer.c'; then $(CYGPATH_W) 'src/timer.c'; else $(CYGPATH_W) '$(srcdir)/src/timer.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-timer.Tpo $(DEPDIR)/test_read_tags-timer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-timer.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-timer.Tpo" -c -o test_read_tags-timer.obj `if test -f 'src/timer.c'; then $(CYGPATH_W) 'src/timer.c'; else $(CYGPATH_W) '$(srcdir)/src/timer.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-timer.Tpo" "$(DEPDIR)/test_read_tags-timer.Po"; else rm -f "$(DEPDIR)/test_read_tags-timer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/timer.c' object='test_read_tags-timer.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-timer.obj `if test -f 'src/timer.c'; then $(CYGPATH_W) 'src/timer.c'; else $(CYGPATH_W) '$(srcdir)/src/timer.c'; fi`
-
- test_read_tags-bz2_plugin.o: src/archive/bz2_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-bz2_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-bz2_plugin.Tpo -c -o test_read_tags-bz2_plugin.o `test -f 'src/archive/bz2_plugin.c' || echo '$(srcdir)/'`src/archive/bz2_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-bz2_plugin.Tpo $(DEPDIR)/test_read_tags-bz2_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-bz2_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-bz2_plugin.Tpo" -c -o test_read_tags-bz2_plugin.o `test -f 'src/archive/bz2_plugin.c' || echo '$(srcdir)/'`src/archive/bz2_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-bz2_plugin.Tpo" "$(DEPDIR)/test_read_tags-bz2_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-bz2_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/bz2_plugin.c' object='test_read_tags-bz2_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-bz2_plugin.o `test -f 'src/archive/bz2_plugin.c' || echo '$(srcdir)/'`src/archive/bz2_plugin.c
-
- test_read_tags-bz2_plugin.obj: src/archive/bz2_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-bz2_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-bz2_plugin.Tpo -c -o test_read_tags-bz2_plugin.obj `if test -f 'src/archive/bz2_plugin.c'; then $(CYGPATH_W) 'src/archive/bz2_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/bz2_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-bz2_plugin.Tpo $(DEPDIR)/test_read_tags-bz2_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-bz2_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-bz2_plugin.Tpo" -c -o test_read_tags-bz2_plugin.obj `if test -f 'src/archive/bz2_plugin.c'; then $(CYGPATH_W) 'src/archive/bz2_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/bz2_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-bz2_plugin.Tpo" "$(DEPDIR)/test_read_tags-bz2_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-bz2_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/bz2_plugin.c' object='test_read_tags-bz2_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-bz2_plugin.obj `if test -f 'src/archive/bz2_plugin.c'; then $(CYGPATH_W) 'src/archive/bz2_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/bz2_plugin.c'; fi`
-
- test_read_tags-zip_plugin.o: src/archive/zip_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-zip_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-zip_plugin.Tpo -c -o test_read_tags-zip_plugin.o `test -f 'src/archive/zip_plugin.c' || echo '$(srcdir)/'`src/archive/zip_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-zip_plugin.Tpo $(DEPDIR)/test_read_tags-zip_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-zip_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-zip_plugin.Tpo" -c -o test_read_tags-zip_plugin.o `test -f 'src/archive/zip_plugin.c' || echo '$(srcdir)/'`src/archive/zip_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-zip_plugin.Tpo" "$(DEPDIR)/test_read_tags-zip_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-zip_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/zip_plugin.c' object='test_read_tags-zip_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-zip_plugin.o `test -f 'src/archive/zip_plugin.c' || echo '$(srcdir)/'`src/archive/zip_plugin.c
-
- test_read_tags-zip_plugin.obj: src/archive/zip_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-zip_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-zip_plugin.Tpo -c -o test_read_tags-zip_plugin.obj `if test -f 'src/archive/zip_plugin.c'; then $(CYGPATH_W) 'src/archive/zip_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/zip_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-zip_plugin.Tpo $(DEPDIR)/test_read_tags-zip_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-zip_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-zip_plugin.Tpo" -c -o test_read_tags-zip_plugin.obj `if test -f 'src/archive/zip_plugin.c'; then $(CYGPATH_W) 'src/archive/zip_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/zip_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-zip_plugin.Tpo" "$(DEPDIR)/test_read_tags-zip_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-zip_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/zip_plugin.c' object='test_read_tags-zip_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-zip_plugin.obj `if test -f 'src/archive/zip_plugin.c'; then $(CYGPATH_W) 'src/archive/zip_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/zip_plugin.c'; fi`
-
- test_read_tags-iso_plugin.o: src/archive/iso_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-iso_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-iso_plugin.Tpo -c -o test_read_tags-iso_plugin.o `test -f 'src/archive/iso_plugin.c' || echo '$(srcdir)/'`src/archive/iso_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-iso_plugin.Tpo $(DEPDIR)/test_read_tags-iso_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-iso_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-iso_plugin.Tpo" -c -o test_read_tags-iso_plugin.o `test -f 'src/archive/iso_plugin.c' || echo '$(srcdir)/'`src/archive/iso_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-iso_plugin.Tpo" "$(DEPDIR)/test_read_tags-iso_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-iso_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/iso_plugin.c' object='test_read_tags-iso_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-iso_plugin.o `test -f 'src/archive/iso_plugin.c' || echo '$(srcdir)/'`src/archive/iso_plugin.c
-
- test_read_tags-iso_plugin.obj: src/archive/iso_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-iso_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-iso_plugin.Tpo -c -o test_read_tags-iso_plugin.obj `if test -f 'src/archive/iso_plugin.c'; then $(CYGPATH_W) 'src/archive/iso_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/iso_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-iso_plugin.Tpo $(DEPDIR)/test_read_tags-iso_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-iso_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-iso_plugin.Tpo" -c -o test_read_tags-iso_plugin.obj `if test -f 'src/archive/iso_plugin.c'; then $(CYGPATH_W) 'src/archive/iso_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/iso_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-iso_plugin.Tpo" "$(DEPDIR)/test_read_tags-iso_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-iso_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/iso_plugin.c' object='test_read_tags-iso_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-iso_plugin.obj `if test -f 'src/archive/iso_plugin.c'; then $(CYGPATH_W) 'src/archive/iso_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/iso_plugin.c'; fi`
-
- test_read_tags-archive_api.o: src/archive_api.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-archive_api.o -MD -MP -MF $(DEPDIR)/test_read_tags-archive_api.Tpo -c -o test_read_tags-archive_api.o `test -f 'src/archive_api.c' || echo '$(srcdir)/'`src/archive_api.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-archive_api.Tpo $(DEPDIR)/test_read_tags-archive_api.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-archive_api.o -MD -MP -MF "$(DEPDIR)/test_read_tags-archive_api.Tpo" -c -o test_read_tags-archive_api.o `test -f 'src/archive_api.c' || echo '$(srcdir)/'`src/archive_api.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-archive_api.Tpo" "$(DEPDIR)/test_read_tags-archive_api.Po"; else rm -f "$(DEPDIR)/test_read_tags-archive_api.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive_api.c' object='test_read_tags-archive_api.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-archive_api.o `test -f 'src/archive_api.c' || echo '$(srcdir)/'`src/archive_api.c
-
- test_read_tags-archive_api.obj: src/archive_api.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-archive_api.obj -MD -MP -MF $(DEPDIR)/test_read_tags-archive_api.Tpo -c -o test_read_tags-archive_api.obj `if test -f 'src/archive_api.c'; then $(CYGPATH_W) 'src/archive_api.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_api.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-archive_api.Tpo $(DEPDIR)/test_read_tags-archive_api.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-archive_api.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-archive_api.Tpo" -c -o test_read_tags-archive_api.obj `if test -f 'src/archive_api.c'; then $(CYGPATH_W) 'src/archive_api.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_api.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-archive_api.Tpo" "$(DEPDIR)/test_read_tags-archive_api.Po"; else rm -f "$(DEPDIR)/test_read_tags-archive_api.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive_api.c' object='test_read_tags-archive_api.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-archive_api.obj `if test -f 'src/archive_api.c'; then $(CYGPATH_W) 'src/archive_api.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_api.c'; fi`
-
- test_read_tags-archive_list.o: src/archive_list.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-archive_list.o -MD -MP -MF $(DEPDIR)/test_read_tags-archive_list.Tpo -c -o test_read_tags-archive_list.o `test -f 'src/archive_list.c' || echo '$(srcdir)/'`src/archive_list.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-archive_list.Tpo $(DEPDIR)/test_read_tags-archive_list.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-archive_list.o -MD -MP -MF "$(DEPDIR)/test_read_tags-archive_list.Tpo" -c -o test_read_tags-archive_list.o `test -f 'src/archive_list.c' || echo '$(srcdir)/'`src/archive_list.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-archive_list.Tpo" "$(DEPDIR)/test_read_tags-archive_list.Po"; else rm -f "$(DEPDIR)/test_read_tags-archive_list.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive_list.c' object='test_read_tags-archive_list.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-archive_list.o `test -f 'src/archive_list.c' || echo '$(srcdir)/'`src/archive_list.c
-
- test_read_tags-archive_list.obj: src/archive_list.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-archive_list.obj -MD -MP -MF $(DEPDIR)/test_read_tags-archive_list.Tpo -c -o test_read_tags-archive_list.obj `if test -f 'src/archive_list.c'; then $(CYGPATH_W) 'src/archive_list.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_list.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-archive_list.Tpo $(DEPDIR)/test_read_tags-archive_list.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-archive_list.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-archive_list.Tpo" -c -o test_read_tags-archive_list.obj `if test -f 'src/archive_list.c'; then $(CYGPATH_W) 'src/archive_list.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_list.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-archive_list.Tpo" "$(DEPDIR)/test_read_tags-archive_list.Po"; else rm -f "$(DEPDIR)/test_read_tags-archive_list.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive_list.c' object='test_read_tags-archive_list.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-archive_list.obj `if test -f 'src/archive_list.c'; then $(CYGPATH_W) 'src/archive_list.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_list.c'; fi`
-
- test_read_tags-archive_input_plugin.o: src/input/archive_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-archive_input_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-archive_input_plugin.Tpo -c -o test_read_tags-archive_input_plugin.o `test -f 'src/input/archive_input_plugin.c' || echo '$(srcdir)/'`src/input/archive_input_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-archive_input_plugin.Tpo $(DEPDIR)/test_read_tags-archive_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-archive_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-archive_input_plugin.Tpo" -c -o test_read_tags-archive_input_plugin.o `test -f 'src/input/archive_input_plugin.c' || echo '$(srcdir)/'`src/input/archive_input_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-archive_input_plugin.Tpo" "$(DEPDIR)/test_read_tags-archive_input_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-archive_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/archive_input_plugin.c' object='test_read_tags-archive_input_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-archive_input_plugin.o `test -f 'src/input/archive_input_plugin.c' || echo '$(srcdir)/'`src/input/archive_input_plugin.c
-
- test_read_tags-archive_input_plugin.obj: src/input/archive_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-archive_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-archive_input_plugin.Tpo -c -o test_read_tags-archive_input_plugin.obj `if test -f 'src/input/archive_input_plugin.c'; then $(CYGPATH_W) 'src/input/archive_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/archive_input_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-archive_input_plugin.Tpo $(DEPDIR)/test_read_tags-archive_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-archive_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-archive_input_plugin.Tpo" -c -o test_read_tags-archive_input_plugin.obj `if test -f 'src/input/archive_input_plugin.c'; then $(CYGPATH_W) 'src/input/archive_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/archive_input_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-archive_input_plugin.Tpo" "$(DEPDIR)/test_read_tags-archive_input_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-archive_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/archive_input_plugin.c' object='test_read_tags-archive_input_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-archive_input_plugin.obj `if test -f 'src/input/archive_input_plugin.c'; then $(CYGPATH_W) 'src/input/archive_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/archive_input_plugin.c'; fi`
-
- test_read_tags-input_stream.o: src/input_stream.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-input_stream.o -MD -MP -MF $(DEPDIR)/test_read_tags-input_stream.Tpo -c -o test_read_tags-input_stream.o `test -f 'src/input_stream.c' || echo '$(srcdir)/'`src/input_stream.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-input_stream.Tpo $(DEPDIR)/test_read_tags-input_stream.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-input_stream.o -MD -MP -MF "$(DEPDIR)/test_read_tags-input_stream.Tpo" -c -o test_read_tags-input_stream.o `test -f 'src/input_stream.c' || echo '$(srcdir)/'`src/input_stream.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-input_stream.Tpo" "$(DEPDIR)/test_read_tags-input_stream.Po"; else rm -f "$(DEPDIR)/test_read_tags-input_stream.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input_stream.c' object='test_read_tags-input_stream.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-input_stream.o `test -f 'src/input_stream.c' || echo '$(srcdir)/'`src/input_stream.c
-
- test_read_tags-input_stream.obj: src/input_stream.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-input_stream.obj -MD -MP -MF $(DEPDIR)/test_read_tags-input_stream.Tpo -c -o test_read_tags-input_stream.obj `if test -f 'src/input_stream.c'; then $(CYGPATH_W) 'src/input_stream.c'; else $(CYGPATH_W) '$(srcdir)/src/input_stream.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-input_stream.Tpo $(DEPDIR)/test_read_tags-input_stream.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-input_stream.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-input_stream.Tpo" -c -o test_read_tags-input_stream.obj `if test -f 'src/input_stream.c'; then $(CYGPATH_W) 'src/input_stream.c'; else $(CYGPATH_W) '$(srcdir)/src/input_stream.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-input_stream.Tpo" "$(DEPDIR)/test_read_tags-input_stream.Po"; else rm -f "$(DEPDIR)/test_read_tags-input_stream.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input_stream.c' object='test_read_tags-input_stream.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-input_stream.obj `if test -f 'src/input_stream.c'; then $(CYGPATH_W) 'src/input_stream.c'; else $(CYGPATH_W) '$(srcdir)/src/input_stream.c'; fi`
-
- test_read_tags-file_input_plugin.o: src/input/file_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-file_input_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-file_input_plugin.Tpo -c -o test_read_tags-file_input_plugin.o `test -f 'src/input/file_input_plugin.c' || echo '$(srcdir)/'`src/input/file_input_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-file_input_plugin.Tpo $(DEPDIR)/test_read_tags-file_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-file_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-file_input_plugin.Tpo" -c -o test_read_tags-file_input_plugin.o `test -f 'src/input/file_input_plugin.c' || echo '$(srcdir)/'`src/input/file_input_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-file_input_plugin.Tpo" "$(DEPDIR)/test_read_tags-file_input_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-file_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/file_input_plugin.c' object='test_read_tags-file_input_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-file_input_plugin.o `test -f 'src/input/file_input_plugin.c' || echo '$(srcdir)/'`src/input/file_input_plugin.c
-
- test_read_tags-file_input_plugin.obj: src/input/file_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-file_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-file_input_plugin.Tpo -c -o test_read_tags-file_input_plugin.obj `if test -f 'src/input/file_input_plugin.c'; then $(CYGPATH_W) 'src/input/file_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/file_input_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-file_input_plugin.Tpo $(DEPDIR)/test_read_tags-file_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-file_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-file_input_plugin.Tpo" -c -o test_read_tags-file_input_plugin.obj `if test -f 'src/input/file_input_plugin.c'; then $(CYGPATH_W) 'src/input/file_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/file_input_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-file_input_plugin.Tpo" "$(DEPDIR)/test_read_tags-file_input_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-file_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/file_input_plugin.c' object='test_read_tags-file_input_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-file_input_plugin.obj `if test -f 'src/input/file_input_plugin.c'; then $(CYGPATH_W) 'src/input/file_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/file_input_plugin.c'; fi`
-
- test_read_tags-curl_input_plugin.o: src/input/curl_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-curl_input_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-curl_input_plugin.Tpo -c -o test_read_tags-curl_input_plugin.o `test -f 'src/input/curl_input_plugin.c' || echo '$(srcdir)/'`src/input/curl_input_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-curl_input_plugin.Tpo $(DEPDIR)/test_read_tags-curl_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-curl_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-curl_input_plugin.Tpo" -c -o test_read_tags-curl_input_plugin.o `test -f 'src/input/curl_input_plugin.c' || echo '$(srcdir)/'`src/input/curl_input_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-curl_input_plugin.Tpo" "$(DEPDIR)/test_read_tags-curl_input_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-curl_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/curl_input_plugin.c' object='test_read_tags-curl_input_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-curl_input_plugin.o `test -f 'src/input/curl_input_plugin.c' || echo '$(srcdir)/'`src/input/curl_input_plugin.c
-
- test_read_tags-curl_input_plugin.obj: src/input/curl_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-curl_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-curl_input_plugin.Tpo -c -o test_read_tags-curl_input_plugin.obj `if test -f 'src/input/curl_input_plugin.c'; then $(CYGPATH_W) 'src/input/curl_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/curl_input_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-curl_input_plugin.Tpo $(DEPDIR)/test_read_tags-curl_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-curl_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-curl_input_plugin.Tpo" -c -o test_read_tags-curl_input_plugin.obj `if test -f 'src/input/curl_input_plugin.c'; then $(CYGPATH_W) 'src/input/curl_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/curl_input_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-curl_input_plugin.Tpo" "$(DEPDIR)/test_read_tags-curl_input_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-curl_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/curl_input_plugin.c' object='test_read_tags-curl_input_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-curl_input_plugin.obj `if test -f 'src/input/curl_input_plugin.c'; then $(CYGPATH_W) 'src/input/curl_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/curl_input_plugin.c'; fi`
-
- test_read_tags-rewind_input_plugin.o: src/input/rewind_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-rewind_input_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-rewind_input_plugin.Tpo -c -o test_read_tags-rewind_input_plugin.o `test -f 'src/input/rewind_input_plugin.c' || echo '$(srcdir)/'`src/input/rewind_input_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-rewind_input_plugin.Tpo $(DEPDIR)/test_read_tags-rewind_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-rewind_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-rewind_input_plugin.Tpo" -c -o test_read_tags-rewind_input_plugin.o `test -f 'src/input/rewind_input_plugin.c' || echo '$(srcdir)/'`src/input/rewind_input_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-rewind_input_plugin.Tpo" "$(DEPDIR)/test_read_tags-rewind_input_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-rewind_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/rewind_input_plugin.c' object='test_read_tags-rewind_input_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-rewind_input_plugin.o `test -f 'src/input/rewind_input_plugin.c' || echo '$(srcdir)/'`src/input/rewind_input_plugin.c
-
- test_read_tags-rewind_input_plugin.obj: src/input/rewind_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-rewind_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-rewind_input_plugin.Tpo -c -o test_read_tags-rewind_input_plugin.obj `if test -f 'src/input/rewind_input_plugin.c'; then $(CYGPATH_W) 'src/input/rewind_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/rewind_input_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-rewind_input_plugin.Tpo $(DEPDIR)/test_read_tags-rewind_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-rewind_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-rewind_input_plugin.Tpo" -c -o test_read_tags-rewind_input_plugin.obj `if test -f 'src/input/rewind_input_plugin.c'; then $(CYGPATH_W) 'src/input/rewind_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/rewind_input_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-rewind_input_plugin.Tpo" "$(DEPDIR)/test_read_tags-rewind_input_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-rewind_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/rewind_input_plugin.c' object='test_read_tags-rewind_input_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-rewind_input_plugin.obj `if test -f 'src/input/rewind_input_plugin.c'; then $(CYGPATH_W) 'src/input/rewind_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/rewind_input_plugin.c'; fi`
-
- test_read_tags-icy_metadata.o: src/icy_metadata.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-icy_metadata.o -MD -MP -MF $(DEPDIR)/test_read_tags-icy_metadata.Tpo -c -o test_read_tags-icy_metadata.o `test -f 'src/icy_metadata.c' || echo '$(srcdir)/'`src/icy_metadata.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-icy_metadata.Tpo $(DEPDIR)/test_read_tags-icy_metadata.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-icy_metadata.o -MD -MP -MF "$(DEPDIR)/test_read_tags-icy_metadata.Tpo" -c -o test_read_tags-icy_metadata.o `test -f 'src/icy_metadata.c' || echo '$(srcdir)/'`src/icy_metadata.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-icy_metadata.Tpo" "$(DEPDIR)/test_read_tags-icy_metadata.Po"; else rm -f "$(DEPDIR)/test_read_tags-icy_metadata.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/icy_metadata.c' object='test_read_tags-icy_metadata.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-icy_metadata.o `test -f 'src/icy_metadata.c' || echo '$(srcdir)/'`src/icy_metadata.c
-
- test_read_tags-icy_metadata.obj: src/icy_metadata.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-icy_metadata.obj -MD -MP -MF $(DEPDIR)/test_read_tags-icy_metadata.Tpo -c -o test_read_tags-icy_metadata.obj `if test -f 'src/icy_metadata.c'; then $(CYGPATH_W) 'src/icy_metadata.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_metadata.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-icy_metadata.Tpo $(DEPDIR)/test_read_tags-icy_metadata.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-icy_metadata.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-icy_metadata.Tpo" -c -o test_read_tags-icy_metadata.obj `if test -f 'src/icy_metadata.c'; then $(CYGPATH_W) 'src/icy_metadata.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_metadata.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-icy_metadata.Tpo" "$(DEPDIR)/test_read_tags-icy_metadata.Po"; else rm -f "$(DEPDIR)/test_read_tags-icy_metadata.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/icy_metadata.c' object='test_read_tags-icy_metadata.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-icy_metadata.obj `if test -f 'src/icy_metadata.c'; then $(CYGPATH_W) 'src/icy_metadata.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_metadata.c'; fi`
-
- test_read_tags-lastfm_input_plugin.o: src/input/lastfm_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-lastfm_input_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-lastfm_input_plugin.Tpo -c -o test_read_tags-lastfm_input_plugin.o `test -f 'src/input/lastfm_input_plugin.c' || echo '$(srcdir)/'`src/input/lastfm_input_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-lastfm_input_plugin.Tpo $(DEPDIR)/test_read_tags-lastfm_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-lastfm_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-lastfm_input_plugin.Tpo" -c -o test_read_tags-lastfm_input_plugin.o `test -f 'src/input/lastfm_input_plugin.c' || echo '$(srcdir)/'`src/input/lastfm_input_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-lastfm_input_plugin.Tpo" "$(DEPDIR)/test_read_tags-lastfm_input_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-lastfm_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/lastfm_input_plugin.c' object='test_read_tags-lastfm_input_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-lastfm_input_plugin.o `test -f 'src/input/lastfm_input_plugin.c' || echo '$(srcdir)/'`src/input/lastfm_input_plugin.c
-
- test_read_tags-lastfm_input_plugin.obj: src/input/lastfm_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-lastfm_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-lastfm_input_plugin.Tpo -c -o test_read_tags-lastfm_input_plugin.obj `if test -f 'src/input/lastfm_input_plugin.c'; then $(CYGPATH_W) 'src/input/lastfm_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/lastfm_input_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-lastfm_input_plugin.Tpo $(DEPDIR)/test_read_tags-lastfm_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-lastfm_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-lastfm_input_plugin.Tpo" -c -o test_read_tags-lastfm_input_plugin.obj `if test -f 'src/input/lastfm_input_plugin.c'; then $(CYGPATH_W) 'src/input/lastfm_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/lastfm_input_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-lastfm_input_plugin.Tpo" "$(DEPDIR)/test_read_tags-lastfm_input_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-lastfm_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/lastfm_input_plugin.c' object='test_read_tags-lastfm_input_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-lastfm_input_plugin.obj `if test -f 'src/input/lastfm_input_plugin.c'; then $(CYGPATH_W) 'src/input/lastfm_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/lastfm_input_plugin.c'; fi`
-
- test_read_tags-mms_input_plugin.o: src/input/mms_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mms_input_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-mms_input_plugin.Tpo -c -o test_read_tags-mms_input_plugin.o `test -f 'src/input/mms_input_plugin.c' || echo '$(srcdir)/'`src/input/mms_input_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-mms_input_plugin.Tpo $(DEPDIR)/test_read_tags-mms_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mms_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-mms_input_plugin.Tpo" -c -o test_read_tags-mms_input_plugin.o `test -f 'src/input/mms_input_plugin.c' || echo '$(srcdir)/'`src/input/mms_input_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-mms_input_plugin.Tpo" "$(DEPDIR)/test_read_tags-mms_input_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-mms_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/mms_input_plugin.c' object='test_read_tags-mms_input_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-mms_input_plugin.o `test -f 'src/input/mms_input_plugin.c' || echo '$(srcdir)/'`src/input/mms_input_plugin.c
-
- test_read_tags-mms_input_plugin.obj: src/input/mms_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mms_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-mms_input_plugin.Tpo -c -o test_read_tags-mms_input_plugin.obj `if test -f 'src/input/mms_input_plugin.c'; then $(CYGPATH_W) 'src/input/mms_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/mms_input_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-mms_input_plugin.Tpo $(DEPDIR)/test_read_tags-mms_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mms_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-mms_input_plugin.Tpo" -c -o test_read_tags-mms_input_plugin.obj `if test -f 'src/input/mms_input_plugin.c'; then $(CYGPATH_W) 'src/input/mms_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/mms_input_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-mms_input_plugin.Tpo" "$(DEPDIR)/test_read_tags-mms_input_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-mms_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/mms_input_plugin.c' object='test_read_tags-mms_input_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-mms_input_plugin.obj `if test -f 'src/input/mms_input_plugin.c'; then $(CYGPATH_W) 'src/input/mms_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/mms_input_plugin.c'; fi`
-
- test_read_tags-tag_ape.o: src/tag_ape.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-tag_ape.o -MD -MP -MF $(DEPDIR)/test_read_tags-tag_ape.Tpo -c -o test_read_tags-tag_ape.o `test -f 'src/tag_ape.c' || echo '$(srcdir)/'`src/tag_ape.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-tag_ape.Tpo $(DEPDIR)/test_read_tags-tag_ape.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-tag_ape.o -MD -MP -MF "$(DEPDIR)/test_read_tags-tag_ape.Tpo" -c -o test_read_tags-tag_ape.o `test -f 'src/tag_ape.c' || echo '$(srcdir)/'`src/tag_ape.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-tag_ape.Tpo" "$(DEPDIR)/test_read_tags-tag_ape.Po"; else rm -f "$(DEPDIR)/test_read_tags-tag_ape.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_ape.c' object='test_read_tags-tag_ape.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-tag_ape.o `test -f 'src/tag_ape.c' || echo '$(srcdir)/'`src/tag_ape.c
-
- test_read_tags-tag_ape.obj: src/tag_ape.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-tag_ape.obj -MD -MP -MF $(DEPDIR)/test_read_tags-tag_ape.Tpo -c -o test_read_tags-tag_ape.obj `if test -f 'src/tag_ape.c'; then $(CYGPATH_W) 'src/tag_ape.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_ape.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-tag_ape.Tpo $(DEPDIR)/test_read_tags-tag_ape.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-tag_ape.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-tag_ape.Tpo" -c -o test_read_tags-tag_ape.obj `if test -f 'src/tag_ape.c'; then $(CYGPATH_W) 'src/tag_ape.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_ape.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-tag_ape.Tpo" "$(DEPDIR)/test_read_tags-tag_ape.Po"; else rm -f "$(DEPDIR)/test_read_tags-tag_ape.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_ape.c' object='test_read_tags-tag_ape.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-tag_ape.obj `if test -f 'src/tag_ape.c'; then $(CYGPATH_W) 'src/tag_ape.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_ape.c'; fi`
-
- test_read_tags-tag_id3.o: src/tag_id3.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-tag_id3.o -MD -MP -MF $(DEPDIR)/test_read_tags-tag_id3.Tpo -c -o test_read_tags-tag_id3.o `test -f 'src/tag_id3.c' || echo '$(srcdir)/'`src/tag_id3.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-tag_id3.Tpo $(DEPDIR)/test_read_tags-tag_id3.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-tag_id3.o -MD -MP -MF "$(DEPDIR)/test_read_tags-tag_id3.Tpo" -c -o test_read_tags-tag_id3.o `test -f 'src/tag_id3.c' || echo '$(srcdir)/'`src/tag_id3.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-tag_id3.Tpo" "$(DEPDIR)/test_read_tags-tag_id3.Po"; else rm -f "$(DEPDIR)/test_read_tags-tag_id3.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_id3.c' object='test_read_tags-tag_id3.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-tag_id3.o `test -f 'src/tag_id3.c' || echo '$(srcdir)/'`src/tag_id3.c
-
- test_read_tags-tag_id3.obj: src/tag_id3.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-tag_id3.obj -MD -MP -MF $(DEPDIR)/test_read_tags-tag_id3.Tpo -c -o test_read_tags-tag_id3.obj `if test -f 'src/tag_id3.c'; then $(CYGPATH_W) 'src/tag_id3.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_id3.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-tag_id3.Tpo $(DEPDIR)/test_read_tags-tag_id3.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-tag_id3.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-tag_id3.Tpo" -c -o test_read_tags-tag_id3.obj `if test -f 'src/tag_id3.c'; then $(CYGPATH_W) 'src/tag_id3.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_id3.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-tag_id3.Tpo" "$(DEPDIR)/test_read_tags-tag_id3.Po"; else rm -f "$(DEPDIR)/test_read_tags-tag_id3.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_id3.c' object='test_read_tags-tag_id3.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-tag_id3.obj `if test -f 'src/tag_id3.c'; then $(CYGPATH_W) 'src/tag_id3.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_id3.c'; fi`
-
- test_read_tags-riff.o: src/riff.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-riff.o -MD -MP -MF $(DEPDIR)/test_read_tags-riff.Tpo -c -o test_read_tags-riff.o `test -f 'src/riff.c' || echo '$(srcdir)/'`src/riff.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-riff.Tpo $(DEPDIR)/test_read_tags-riff.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-riff.o -MD -MP -MF "$(DEPDIR)/test_read_tags-riff.Tpo" -c -o test_read_tags-riff.o `test -f 'src/riff.c' || echo '$(srcdir)/'`src/riff.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-riff.Tpo" "$(DEPDIR)/test_read_tags-riff.Po"; else rm -f "$(DEPDIR)/test_read_tags-riff.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/riff.c' object='test_read_tags-riff.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-riff.o `test -f 'src/riff.c' || echo '$(srcdir)/'`src/riff.c
-
- test_read_tags-riff.obj: src/riff.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-riff.obj -MD -MP -MF $(DEPDIR)/test_read_tags-riff.Tpo -c -o test_read_tags-riff.obj `if test -f 'src/riff.c'; then $(CYGPATH_W) 'src/riff.c'; else $(CYGPATH_W) '$(srcdir)/src/riff.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-riff.Tpo $(DEPDIR)/test_read_tags-riff.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-riff.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-riff.Tpo" -c -o test_read_tags-riff.obj `if test -f 'src/riff.c'; then $(CYGPATH_W) 'src/riff.c'; else $(CYGPATH_W) '$(srcdir)/src/riff.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-riff.Tpo" "$(DEPDIR)/test_read_tags-riff.Po"; else rm -f "$(DEPDIR)/test_read_tags-riff.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/riff.c' object='test_read_tags-riff.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-riff.obj `if test -f 'src/riff.c'; then $(CYGPATH_W) 'src/riff.c'; else $(CYGPATH_W) '$(srcdir)/src/riff.c'; fi`
-
- test_read_tags-aiff.o: src/aiff.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-aiff.o -MD -MP -MF $(DEPDIR)/test_read_tags-aiff.Tpo -c -o test_read_tags-aiff.o `test -f 'src/aiff.c' || echo '$(srcdir)/'`src/aiff.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-aiff.Tpo $(DEPDIR)/test_read_tags-aiff.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-aiff.o -MD -MP -MF "$(DEPDIR)/test_read_tags-aiff.Tpo" -c -o test_read_tags-aiff.o `test -f 'src/aiff.c' || echo '$(srcdir)/'`src/aiff.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-aiff.Tpo" "$(DEPDIR)/test_read_tags-aiff.Po"; else rm -f "$(DEPDIR)/test_read_tags-aiff.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/aiff.c' object='test_read_tags-aiff.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-aiff.o `test -f 'src/aiff.c' || echo '$(srcdir)/'`src/aiff.c
-
- test_read_tags-aiff.obj: src/aiff.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-aiff.obj -MD -MP -MF $(DEPDIR)/test_read_tags-aiff.Tpo -c -o test_read_tags-aiff.obj `if test -f 'src/aiff.c'; then $(CYGPATH_W) 'src/aiff.c'; else $(CYGPATH_W) '$(srcdir)/src/aiff.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-aiff.Tpo $(DEPDIR)/test_read_tags-aiff.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-aiff.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-aiff.Tpo" -c -o test_read_tags-aiff.obj `if test -f 'src/aiff.c'; then $(CYGPATH_W) 'src/aiff.c'; else $(CYGPATH_W) '$(srcdir)/src/aiff.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-aiff.Tpo" "$(DEPDIR)/test_read_tags-aiff.Po"; else rm -f "$(DEPDIR)/test_read_tags-aiff.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/aiff.c' object='test_read_tags-aiff.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-aiff.obj `if test -f 'src/aiff.c'; then $(CYGPATH_W) 'src/aiff.c'; else $(CYGPATH_W) '$(srcdir)/src/aiff.c'; fi`
-
- test_read_tags-decoder_buffer.o: src/decoder_buffer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-decoder_buffer.o -MD -MP -MF $(DEPDIR)/test_read_tags-decoder_buffer.Tpo -c -o test_read_tags-decoder_buffer.o `test -f 'src/decoder_buffer.c' || echo '$(srcdir)/'`src/decoder_buffer.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-decoder_buffer.Tpo $(DEPDIR)/test_read_tags-decoder_buffer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-decoder_buffer.o -MD -MP -MF "$(DEPDIR)/test_read_tags-decoder_buffer.Tpo" -c -o test_read_tags-decoder_buffer.o `test -f 'src/decoder_buffer.c' || echo '$(srcdir)/'`src/decoder_buffer.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-decoder_buffer.Tpo" "$(DEPDIR)/test_read_tags-decoder_buffer.Po"; else rm -f "$(DEPDIR)/test_read_tags-decoder_buffer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_buffer.c' object='test_read_tags-decoder_buffer.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-decoder_buffer.o `test -f 'src/decoder_buffer.c' || echo '$(srcdir)/'`src/decoder_buffer.c
-
- test_read_tags-decoder_buffer.obj: src/decoder_buffer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-decoder_buffer.obj -MD -MP -MF $(DEPDIR)/test_read_tags-decoder_buffer.Tpo -c -o test_read_tags-decoder_buffer.obj `if test -f 'src/decoder_buffer.c'; then $(CYGPATH_W) 'src/decoder_buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_buffer.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-decoder_buffer.Tpo $(DEPDIR)/test_read_tags-decoder_buffer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-decoder_buffer.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-decoder_buffer.Tpo" -c -o test_read_tags-decoder_buffer.obj `if test -f 'src/decoder_buffer.c'; then $(CYGPATH_W) 'src/decoder_buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_buffer.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-decoder_buffer.Tpo" "$(DEPDIR)/test_read_tags-decoder_buffer.Po"; else rm -f "$(DEPDIR)/test_read_tags-decoder_buffer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_buffer.c' object='test_read_tags-decoder_buffer.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-decoder_buffer.obj `if test -f 'src/decoder_buffer.c'; then $(CYGPATH_W) 'src/decoder_buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_buffer.c'; fi`
-
- test_read_tags-decoder_list.o: src/decoder_list.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-decoder_list.o -MD -MP -MF $(DEPDIR)/test_read_tags-decoder_list.Tpo -c -o test_read_tags-decoder_list.o `test -f 'src/decoder_list.c' || echo '$(srcdir)/'`src/decoder_list.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-decoder_list.Tpo $(DEPDIR)/test_read_tags-decoder_list.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-decoder_list.o -MD -MP -MF "$(DEPDIR)/test_read_tags-decoder_list.Tpo" -c -o test_read_tags-decoder_list.o `test -f 'src/decoder_list.c' || echo '$(srcdir)/'`src/decoder_list.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-decoder_list.Tpo" "$(DEPDIR)/test_read_tags-decoder_list.Po"; else rm -f "$(DEPDIR)/test_read_tags-decoder_list.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_list.c' object='test_read_tags-decoder_list.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-decoder_list.o `test -f 'src/decoder_list.c' || echo '$(srcdir)/'`src/decoder_list.c
-
- test_read_tags-decoder_list.obj: src/decoder_list.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-decoder_list.obj -MD -MP -MF $(DEPDIR)/test_read_tags-decoder_list.Tpo -c -o test_read_tags-decoder_list.obj `if test -f 'src/decoder_list.c'; then $(CYGPATH_W) 'src/decoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_list.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-decoder_list.Tpo $(DEPDIR)/test_read_tags-decoder_list.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-decoder_list.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-decoder_list.Tpo" -c -o test_read_tags-decoder_list.obj `if test -f 'src/decoder_list.c'; then $(CYGPATH_W) 'src/decoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_list.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-decoder_list.Tpo" "$(DEPDIR)/test_read_tags-decoder_list.Po"; else rm -f "$(DEPDIR)/test_read_tags-decoder_list.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_list.c' object='test_read_tags-decoder_list.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-decoder_list.obj `if test -f 'src/decoder_list.c'; then $(CYGPATH_W) 'src/decoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_list.c'; fi`
-
- test_read_tags-mad_plugin.o: src/decoder/mad_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mad_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-mad_plugin.Tpo -c -o test_read_tags-mad_plugin.o `test -f 'src/decoder/mad_plugin.c' || echo '$(srcdir)/'`src/decoder/mad_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-mad_plugin.Tpo $(DEPDIR)/test_read_tags-mad_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mad_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-mad_plugin.Tpo" -c -o test_read_tags-mad_plugin.o `test -f 'src/decoder/mad_plugin.c' || echo '$(srcdir)/'`src/decoder/mad_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-mad_plugin.Tpo" "$(DEPDIR)/test_read_tags-mad_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-mad_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mad_plugin.c' object='test_read_tags-mad_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-mad_plugin.o `test -f 'src/decoder/mad_plugin.c' || echo '$(srcdir)/'`src/decoder/mad_plugin.c
-
- test_read_tags-mad_plugin.obj: src/decoder/mad_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mad_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-mad_plugin.Tpo -c -o test_read_tags-mad_plugin.obj `if test -f 'src/decoder/mad_plugin.c'; then $(CYGPATH_W) 'src/decoder/mad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mad_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-mad_plugin.Tpo $(DEPDIR)/test_read_tags-mad_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mad_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-mad_plugin.Tpo" -c -o test_read_tags-mad_plugin.obj `if test -f 'src/decoder/mad_plugin.c'; then $(CYGPATH_W) 'src/decoder/mad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mad_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-mad_plugin.Tpo" "$(DEPDIR)/test_read_tags-mad_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-mad_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mad_plugin.c' object='test_read_tags-mad_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-mad_plugin.obj `if test -f 'src/decoder/mad_plugin.c'; then $(CYGPATH_W) 'src/decoder/mad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mad_plugin.c'; fi`
-
- test_read_tags-mpcdec_plugin.o: src/decoder/mpcdec_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mpcdec_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-mpcdec_plugin.Tpo -c -o test_read_tags-mpcdec_plugin.o `test -f 'src/decoder/mpcdec_plugin.c' || echo '$(srcdir)/'`src/decoder/mpcdec_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-mpcdec_plugin.Tpo $(DEPDIR)/test_read_tags-mpcdec_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mpcdec_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-mpcdec_plugin.Tpo" -c -o test_read_tags-mpcdec_plugin.o `test -f 'src/decoder/mpcdec_plugin.c' || echo '$(srcdir)/'`src/decoder/mpcdec_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-mpcdec_plugin.Tpo" "$(DEPDIR)/test_read_tags-mpcdec_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-mpcdec_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mpcdec_plugin.c' object='test_read_tags-mpcdec_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-mpcdec_plugin.o `test -f 'src/decoder/mpcdec_plugin.c' || echo '$(srcdir)/'`src/decoder/mpcdec_plugin.c
-
- test_read_tags-mpcdec_plugin.obj: src/decoder/mpcdec_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mpcdec_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-mpcdec_plugin.Tpo -c -o test_read_tags-mpcdec_plugin.obj `if test -f 'src/decoder/mpcdec_plugin.c'; then $(CYGPATH_W) 'src/decoder/mpcdec_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mpcdec_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-mpcdec_plugin.Tpo $(DEPDIR)/test_read_tags-mpcdec_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mpcdec_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-mpcdec_plugin.Tpo" -c -o test_read_tags-mpcdec_plugin.obj `if test -f 'src/decoder/mpcdec_plugin.c'; then $(CYGPATH_W) 'src/decoder/mpcdec_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mpcdec_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-mpcdec_plugin.Tpo" "$(DEPDIR)/test_read_tags-mpcdec_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-mpcdec_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mpcdec_plugin.c' object='test_read_tags-mpcdec_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-mpcdec_plugin.obj `if test -f 'src/decoder/mpcdec_plugin.c'; then $(CYGPATH_W) 'src/decoder/mpcdec_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mpcdec_plugin.c'; fi`
-
- test_read_tags-wavpack_plugin.o: src/decoder/wavpack_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-wavpack_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-wavpack_plugin.Tpo -c -o test_read_tags-wavpack_plugin.o `test -f 'src/decoder/wavpack_plugin.c' || echo '$(srcdir)/'`src/decoder/wavpack_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-wavpack_plugin.Tpo $(DEPDIR)/test_read_tags-wavpack_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-wavpack_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-wavpack_plugin.Tpo" -c -o test_read_tags-wavpack_plugin.o `test -f 'src/decoder/wavpack_plugin.c' || echo '$(srcdir)/'`src/decoder/wavpack_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-wavpack_plugin.Tpo" "$(DEPDIR)/test_read_tags-wavpack_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-wavpack_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/wavpack_plugin.c' object='test_read_tags-wavpack_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-wavpack_plugin.o `test -f 'src/decoder/wavpack_plugin.c' || echo '$(srcdir)/'`src/decoder/wavpack_plugin.c
-
- test_read_tags-wavpack_plugin.obj: src/decoder/wavpack_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-wavpack_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-wavpack_plugin.Tpo -c -o test_read_tags-wavpack_plugin.obj `if test -f 'src/decoder/wavpack_plugin.c'; then $(CYGPATH_W) 'src/decoder/wavpack_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wavpack_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-wavpack_plugin.Tpo $(DEPDIR)/test_read_tags-wavpack_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-wavpack_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-wavpack_plugin.Tpo" -c -o test_read_tags-wavpack_plugin.obj `if test -f 'src/decoder/wavpack_plugin.c'; then $(CYGPATH_W) 'src/decoder/wavpack_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wavpack_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-wavpack_plugin.Tpo" "$(DEPDIR)/test_read_tags-wavpack_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-wavpack_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/wavpack_plugin.c' object='test_read_tags-wavpack_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-wavpack_plugin.obj `if test -f 'src/decoder/wavpack_plugin.c'; then $(CYGPATH_W) 'src/decoder/wavpack_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wavpack_plugin.c'; fi`
-
- test_read_tags-faad_plugin.o: src/decoder/faad_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-faad_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-faad_plugin.Tpo -c -o test_read_tags-faad_plugin.o `test -f 'src/decoder/faad_plugin.c' || echo '$(srcdir)/'`src/decoder/faad_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-faad_plugin.Tpo $(DEPDIR)/test_read_tags-faad_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-faad_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-faad_plugin.Tpo" -c -o test_read_tags-faad_plugin.o `test -f 'src/decoder/faad_plugin.c' || echo '$(srcdir)/'`src/decoder/faad_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-faad_plugin.Tpo" "$(DEPDIR)/test_read_tags-faad_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-faad_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/faad_plugin.c' object='test_read_tags-faad_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-faad_plugin.o `test -f 'src/decoder/faad_plugin.c' || echo '$(srcdir)/'`src/decoder/faad_plugin.c
-
- test_read_tags-faad_plugin.obj: src/decoder/faad_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-faad_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-faad_plugin.Tpo -c -o test_read_tags-faad_plugin.obj `if test -f 'src/decoder/faad_plugin.c'; then $(CYGPATH_W) 'src/decoder/faad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/faad_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-faad_plugin.Tpo $(DEPDIR)/test_read_tags-faad_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-faad_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-faad_plugin.Tpo" -c -o test_read_tags-faad_plugin.obj `if test -f 'src/decoder/faad_plugin.c'; then $(CYGPATH_W) 'src/decoder/faad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/faad_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-faad_plugin.Tpo" "$(DEPDIR)/test_read_tags-faad_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-faad_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/faad_plugin.c' object='test_read_tags-faad_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-faad_plugin.obj `if test -f 'src/decoder/faad_plugin.c'; then $(CYGPATH_W) 'src/decoder/faad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/faad_plugin.c'; fi`
-
- test_read_tags-mp4ff_plugin.o: src/decoder/mp4ff_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mp4ff_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-mp4ff_plugin.Tpo -c -o test_read_tags-mp4ff_plugin.o `test -f 'src/decoder/mp4ff_plugin.c' || echo '$(srcdir)/'`src/decoder/mp4ff_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-mp4ff_plugin.Tpo $(DEPDIR)/test_read_tags-mp4ff_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mp4ff_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-mp4ff_plugin.Tpo" -c -o test_read_tags-mp4ff_plugin.o `test -f 'src/decoder/mp4ff_plugin.c' || echo '$(srcdir)/'`src/decoder/mp4ff_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-mp4ff_plugin.Tpo" "$(DEPDIR)/test_read_tags-mp4ff_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-mp4ff_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mp4ff_plugin.c' object='test_read_tags-mp4ff_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-mp4ff_plugin.o `test -f 'src/decoder/mp4ff_plugin.c' || echo '$(srcdir)/'`src/decoder/mp4ff_plugin.c
-
- test_read_tags-mp4ff_plugin.obj: src/decoder/mp4ff_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mp4ff_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-mp4ff_plugin.Tpo -c -o test_read_tags-mp4ff_plugin.obj `if test -f 'src/decoder/mp4ff_plugin.c'; then $(CYGPATH_W) 'src/decoder/mp4ff_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mp4ff_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-mp4ff_plugin.Tpo $(DEPDIR)/test_read_tags-mp4ff_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mp4ff_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-mp4ff_plugin.Tpo" -c -o test_read_tags-mp4ff_plugin.obj `if test -f 'src/decoder/mp4ff_plugin.c'; then $(CYGPATH_W) 'src/decoder/mp4ff_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mp4ff_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-mp4ff_plugin.Tpo" "$(DEPDIR)/test_read_tags-mp4ff_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-mp4ff_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mp4ff_plugin.c' object='test_read_tags-mp4ff_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-mp4ff_plugin.obj `if test -f 'src/decoder/mp4ff_plugin.c'; then $(CYGPATH_W) 'src/decoder/mp4ff_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mp4ff_plugin.c'; fi`
-
- test_read_tags-_ogg_common.o: src/decoder/_ogg_common.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-_ogg_common.o -MD -MP -MF $(DEPDIR)/test_read_tags-_ogg_common.Tpo -c -o test_read_tags-_ogg_common.o `test -f 'src/decoder/_ogg_common.c' || echo '$(srcdir)/'`src/decoder/_ogg_common.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-_ogg_common.Tpo $(DEPDIR)/test_read_tags-_ogg_common.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-_ogg_common.o -MD -MP -MF "$(DEPDIR)/test_read_tags-_ogg_common.Tpo" -c -o test_read_tags-_ogg_common.o `test -f 'src/decoder/_ogg_common.c' || echo '$(srcdir)/'`src/decoder/_ogg_common.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-_ogg_common.Tpo" "$(DEPDIR)/test_read_tags-_ogg_common.Po"; else rm -f "$(DEPDIR)/test_read_tags-_ogg_common.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/_ogg_common.c' object='test_read_tags-_ogg_common.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-_ogg_common.o `test -f 'src/decoder/_ogg_common.c' || echo '$(srcdir)/'`src/decoder/_ogg_common.c
-
- test_read_tags-_ogg_common.obj: src/decoder/_ogg_common.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-_ogg_common.obj -MD -MP -MF $(DEPDIR)/test_read_tags-_ogg_common.Tpo -c -o test_read_tags-_ogg_common.obj `if test -f 'src/decoder/_ogg_common.c'; then $(CYGPATH_W) 'src/decoder/_ogg_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_ogg_common.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-_ogg_common.Tpo $(DEPDIR)/test_read_tags-_ogg_common.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-_ogg_common.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-_ogg_common.Tpo" -c -o test_read_tags-_ogg_common.obj `if test -f 'src/decoder/_ogg_common.c'; then $(CYGPATH_W) 'src/decoder/_ogg_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_ogg_common.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-_ogg_common.Tpo" "$(DEPDIR)/test_read_tags-_ogg_common.Po"; else rm -f "$(DEPDIR)/test_read_tags-_ogg_common.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/_ogg_common.c' object='test_read_tags-_ogg_common.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-_ogg_common.obj `if test -f 'src/decoder/_ogg_common.c'; then $(CYGPATH_W) 'src/decoder/_ogg_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_ogg_common.c'; fi`
-
- test_read_tags-_flac_common.o: src/decoder/_flac_common.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-_flac_common.o -MD -MP -MF $(DEPDIR)/test_read_tags-_flac_common.Tpo -c -o test_read_tags-_flac_common.o `test -f 'src/decoder/_flac_common.c' || echo '$(srcdir)/'`src/decoder/_flac_common.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-_flac_common.Tpo $(DEPDIR)/test_read_tags-_flac_common.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-_flac_common.o -MD -MP -MF "$(DEPDIR)/test_read_tags-_flac_common.Tpo" -c -o test_read_tags-_flac_common.o `test -f 'src/decoder/_flac_common.c' || echo '$(srcdir)/'`src/decoder/_flac_common.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-_flac_common.Tpo" "$(DEPDIR)/test_read_tags-_flac_common.Po"; else rm -f "$(DEPDIR)/test_read_tags-_flac_common.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/_flac_common.c' object='test_read_tags-_flac_common.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-_flac_common.o `test -f 'src/decoder/_flac_common.c' || echo '$(srcdir)/'`src/decoder/_flac_common.c
-
- test_read_tags-_flac_common.obj: src/decoder/_flac_common.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-_flac_common.obj -MD -MP -MF $(DEPDIR)/test_read_tags-_flac_common.Tpo -c -o test_read_tags-_flac_common.obj `if test -f 'src/decoder/_flac_common.c'; then $(CYGPATH_W) 'src/decoder/_flac_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_flac_common.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-_flac_common.Tpo $(DEPDIR)/test_read_tags-_flac_common.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-_flac_common.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-_flac_common.Tpo" -c -o test_read_tags-_flac_common.obj `if test -f 'src/decoder/_flac_common.c'; then $(CYGPATH_W) 'src/decoder/_flac_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_flac_common.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-_flac_common.Tpo" "$(DEPDIR)/test_read_tags-_flac_common.Po"; else rm -f "$(DEPDIR)/test_read_tags-_flac_common.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/_flac_common.c' object='test_read_tags-_flac_common.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-_flac_common.obj `if test -f 'src/decoder/_flac_common.c'; then $(CYGPATH_W) 'src/decoder/_flac_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_flac_common.c'; fi`
-
- test_read_tags-vorbis_plugin.o: src/decoder/vorbis_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-vorbis_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-vorbis_plugin.Tpo -c -o test_read_tags-vorbis_plugin.o `test -f 'src/decoder/vorbis_plugin.c' || echo '$(srcdir)/'`src/decoder/vorbis_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-vorbis_plugin.Tpo $(DEPDIR)/test_read_tags-vorbis_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-vorbis_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-vorbis_plugin.Tpo" -c -o test_read_tags-vorbis_plugin.o `test -f 'src/decoder/vorbis_plugin.c' || echo '$(srcdir)/'`src/decoder/vorbis_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-vorbis_plugin.Tpo" "$(DEPDIR)/test_read_tags-vorbis_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-vorbis_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/vorbis_plugin.c' object='test_read_tags-vorbis_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-vorbis_plugin.o `test -f 'src/decoder/vorbis_plugin.c' || echo '$(srcdir)/'`src/decoder/vorbis_plugin.c
-
- test_read_tags-vorbis_plugin.obj: src/decoder/vorbis_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-vorbis_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-vorbis_plugin.Tpo -c -o test_read_tags-vorbis_plugin.obj `if test -f 'src/decoder/vorbis_plugin.c'; then $(CYGPATH_W) 'src/decoder/vorbis_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/vorbis_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-vorbis_plugin.Tpo $(DEPDIR)/test_read_tags-vorbis_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-vorbis_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-vorbis_plugin.Tpo" -c -o test_read_tags-vorbis_plugin.obj `if test -f 'src/decoder/vorbis_plugin.c'; then $(CYGPATH_W) 'src/decoder/vorbis_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/vorbis_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-vorbis_plugin.Tpo" "$(DEPDIR)/test_read_tags-vorbis_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-vorbis_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/vorbis_plugin.c' object='test_read_tags-vorbis_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-vorbis_plugin.obj `if test -f 'src/decoder/vorbis_plugin.c'; then $(CYGPATH_W) 'src/decoder/vorbis_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/vorbis_plugin.c'; fi`
-
- test_read_tags-flac_plugin.o: src/decoder/flac_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-flac_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-flac_plugin.Tpo -c -o test_read_tags-flac_plugin.o `test -f 'src/decoder/flac_plugin.c' || echo '$(srcdir)/'`src/decoder/flac_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-flac_plugin.Tpo $(DEPDIR)/test_read_tags-flac_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-flac_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-flac_plugin.Tpo" -c -o test_read_tags-flac_plugin.o `test -f 'src/decoder/flac_plugin.c' || echo '$(srcdir)/'`src/decoder/flac_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-flac_plugin.Tpo" "$(DEPDIR)/test_read_tags-flac_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-flac_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/flac_plugin.c' object='test_read_tags-flac_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-flac_plugin.o `test -f 'src/decoder/flac_plugin.c' || echo '$(srcdir)/'`src/decoder/flac_plugin.c
-
- test_read_tags-flac_plugin.obj: src/decoder/flac_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-flac_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-flac_plugin.Tpo -c -o test_read_tags-flac_plugin.obj `if test -f 'src/decoder/flac_plugin.c'; then $(CYGPATH_W) 'src/decoder/flac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/flac_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-flac_plugin.Tpo $(DEPDIR)/test_read_tags-flac_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-flac_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-flac_plugin.Tpo" -c -o test_read_tags-flac_plugin.obj `if test -f 'src/decoder/flac_plugin.c'; then $(CYGPATH_W) 'src/decoder/flac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/flac_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-flac_plugin.Tpo" "$(DEPDIR)/test_read_tags-flac_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-flac_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/flac_plugin.c' object='test_read_tags-flac_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-flac_plugin.obj `if test -f 'src/decoder/flac_plugin.c'; then $(CYGPATH_W) 'src/decoder/flac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/flac_plugin.c'; fi`
-
- test_read_tags-oggflac_plugin.o: src/decoder/oggflac_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-oggflac_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-oggflac_plugin.Tpo -c -o test_read_tags-oggflac_plugin.o `test -f 'src/decoder/oggflac_plugin.c' || echo '$(srcdir)/'`src/decoder/oggflac_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-oggflac_plugin.Tpo $(DEPDIR)/test_read_tags-oggflac_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-oggflac_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-oggflac_plugin.Tpo" -c -o test_read_tags-oggflac_plugin.o `test -f 'src/decoder/oggflac_plugin.c' || echo '$(srcdir)/'`src/decoder/oggflac_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-oggflac_plugin.Tpo" "$(DEPDIR)/test_read_tags-oggflac_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-oggflac_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/oggflac_plugin.c' object='test_read_tags-oggflac_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-oggflac_plugin.o `test -f 'src/decoder/oggflac_plugin.c' || echo '$(srcdir)/'`src/decoder/oggflac_plugin.c
-
- test_read_tags-oggflac_plugin.obj: src/decoder/oggflac_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-oggflac_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-oggflac_plugin.Tpo -c -o test_read_tags-oggflac_plugin.obj `if test -f 'src/decoder/oggflac_plugin.c'; then $(CYGPATH_W) 'src/decoder/oggflac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/oggflac_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-oggflac_plugin.Tpo $(DEPDIR)/test_read_tags-oggflac_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-oggflac_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-oggflac_plugin.Tpo" -c -o test_read_tags-oggflac_plugin.obj `if test -f 'src/decoder/oggflac_plugin.c'; then $(CYGPATH_W) 'src/decoder/oggflac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/oggflac_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-oggflac_plugin.Tpo" "$(DEPDIR)/test_read_tags-oggflac_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-oggflac_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/oggflac_plugin.c' object='test_read_tags-oggflac_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-oggflac_plugin.obj `if test -f 'src/decoder/oggflac_plugin.c'; then $(CYGPATH_W) 'src/decoder/oggflac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/oggflac_plugin.c'; fi`
-
- test_read_tags-audiofile_plugin.o: src/decoder/audiofile_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-audiofile_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-audiofile_plugin.Tpo -c -o test_read_tags-audiofile_plugin.o `test -f 'src/decoder/audiofile_plugin.c' || echo '$(srcdir)/'`src/decoder/audiofile_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-audiofile_plugin.Tpo $(DEPDIR)/test_read_tags-audiofile_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-audiofile_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-audiofile_plugin.Tpo" -c -o test_read_tags-audiofile_plugin.o `test -f 'src/decoder/audiofile_plugin.c' || echo '$(srcdir)/'`src/decoder/audiofile_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-audiofile_plugin.Tpo" "$(DEPDIR)/test_read_tags-audiofile_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-audiofile_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/audiofile_plugin.c' object='test_read_tags-audiofile_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-audiofile_plugin.o `test -f 'src/decoder/audiofile_plugin.c' || echo '$(srcdir)/'`src/decoder/audiofile_plugin.c
-
- test_read_tags-audiofile_plugin.obj: src/decoder/audiofile_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-audiofile_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-audiofile_plugin.Tpo -c -o test_read_tags-audiofile_plugin.obj `if test -f 'src/decoder/audiofile_plugin.c'; then $(CYGPATH_W) 'src/decoder/audiofile_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/audiofile_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-audiofile_plugin.Tpo $(DEPDIR)/test_read_tags-audiofile_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-audiofile_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-audiofile_plugin.Tpo" -c -o test_read_tags-audiofile_plugin.obj `if test -f 'src/decoder/audiofile_plugin.c'; then $(CYGPATH_W) 'src/decoder/audiofile_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/audiofile_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-audiofile_plugin.Tpo" "$(DEPDIR)/test_read_tags-audiofile_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-audiofile_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/audiofile_plugin.c' object='test_read_tags-audiofile_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-audiofile_plugin.obj `if test -f 'src/decoder/audiofile_plugin.c'; then $(CYGPATH_W) 'src/decoder/audiofile_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/audiofile_plugin.c'; fi`
-
- test_read_tags-mikmod_plugin.o: src/decoder/mikmod_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mikmod_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-mikmod_plugin.Tpo -c -o test_read_tags-mikmod_plugin.o `test -f 'src/decoder/mikmod_plugin.c' || echo '$(srcdir)/'`src/decoder/mikmod_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-mikmod_plugin.Tpo $(DEPDIR)/test_read_tags-mikmod_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mikmod_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-mikmod_plugin.Tpo" -c -o test_read_tags-mikmod_plugin.o `test -f 'src/decoder/mikmod_plugin.c' || echo '$(srcdir)/'`src/decoder/mikmod_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-mikmod_plugin.Tpo" "$(DEPDIR)/test_read_tags-mikmod_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-mikmod_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mikmod_plugin.c' object='test_read_tags-mikmod_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-mikmod_plugin.o `test -f 'src/decoder/mikmod_plugin.c' || echo '$(srcdir)/'`src/decoder/mikmod_plugin.c
-
- test_read_tags-mikmod_plugin.obj: src/decoder/mikmod_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mikmod_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-mikmod_plugin.Tpo -c -o test_read_tags-mikmod_plugin.obj `if test -f 'src/decoder/mikmod_plugin.c'; then $(CYGPATH_W) 'src/decoder/mikmod_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mikmod_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-mikmod_plugin.Tpo $(DEPDIR)/test_read_tags-mikmod_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-mikmod_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-mikmod_plugin.Tpo" -c -o test_read_tags-mikmod_plugin.obj `if test -f 'src/decoder/mikmod_plugin.c'; then $(CYGPATH_W) 'src/decoder/mikmod_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mikmod_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-mikmod_plugin.Tpo" "$(DEPDIR)/test_read_tags-mikmod_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-mikmod_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mikmod_plugin.c' object='test_read_tags-mikmod_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-mikmod_plugin.obj `if test -f 'src/decoder/mikmod_plugin.c'; then $(CYGPATH_W) 'src/decoder/mikmod_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mikmod_plugin.c'; fi`
-
- test_read_tags-modplug_plugin.o: src/decoder/modplug_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-modplug_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-modplug_plugin.Tpo -c -o test_read_tags-modplug_plugin.o `test -f 'src/decoder/modplug_plugin.c' || echo '$(srcdir)/'`src/decoder/modplug_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-modplug_plugin.Tpo $(DEPDIR)/test_read_tags-modplug_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-modplug_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-modplug_plugin.Tpo" -c -o test_read_tags-modplug_plugin.o `test -f 'src/decoder/modplug_plugin.c' || echo '$(srcdir)/'`src/decoder/modplug_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-modplug_plugin.Tpo" "$(DEPDIR)/test_read_tags-modplug_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-modplug_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/modplug_plugin.c' object='test_read_tags-modplug_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-modplug_plugin.o `test -f 'src/decoder/modplug_plugin.c' || echo '$(srcdir)/'`src/decoder/modplug_plugin.c
-
- test_read_tags-modplug_plugin.obj: src/decoder/modplug_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-modplug_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-modplug_plugin.Tpo -c -o test_read_tags-modplug_plugin.obj `if test -f 'src/decoder/modplug_plugin.c'; then $(CYGPATH_W) 'src/decoder/modplug_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/modplug_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-modplug_plugin.Tpo $(DEPDIR)/test_read_tags-modplug_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-modplug_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-modplug_plugin.Tpo" -c -o test_read_tags-modplug_plugin.obj `if test -f 'src/decoder/modplug_plugin.c'; then $(CYGPATH_W) 'src/decoder/modplug_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/modplug_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-modplug_plugin.Tpo" "$(DEPDIR)/test_read_tags-modplug_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-modplug_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/modplug_plugin.c' object='test_read_tags-modplug_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-modplug_plugin.obj `if test -f 'src/decoder/modplug_plugin.c'; then $(CYGPATH_W) 'src/decoder/modplug_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/modplug_plugin.c'; fi`
-
- test_read_tags-fluidsynth_plugin.o: src/decoder/fluidsynth_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-fluidsynth_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-fluidsynth_plugin.Tpo -c -o test_read_tags-fluidsynth_plugin.o `test -f 'src/decoder/fluidsynth_plugin.c' || echo '$(srcdir)/'`src/decoder/fluidsynth_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-fluidsynth_plugin.Tpo $(DEPDIR)/test_read_tags-fluidsynth_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-fluidsynth_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-fluidsynth_plugin.Tpo" -c -o test_read_tags-fluidsynth_plugin.o `test -f 'src/decoder/fluidsynth_plugin.c' || echo '$(srcdir)/'`src/decoder/fluidsynth_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-fluidsynth_plugin.Tpo" "$(DEPDIR)/test_read_tags-fluidsynth_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-fluidsynth_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/fluidsynth_plugin.c' object='test_read_tags-fluidsynth_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-fluidsynth_plugin.o `test -f 'src/decoder/fluidsynth_plugin.c' || echo '$(srcdir)/'`src/decoder/fluidsynth_plugin.c
-
- test_read_tags-fluidsynth_plugin.obj: src/decoder/fluidsynth_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-fluidsynth_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-fluidsynth_plugin.Tpo -c -o test_read_tags-fluidsynth_plugin.obj `if test -f 'src/decoder/fluidsynth_plugin.c'; then $(CYGPATH_W) 'src/decoder/fluidsynth_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/fluidsynth_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-fluidsynth_plugin.Tpo $(DEPDIR)/test_read_tags-fluidsynth_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-fluidsynth_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-fluidsynth_plugin.Tpo" -c -o test_read_tags-fluidsynth_plugin.obj `if test -f 'src/decoder/fluidsynth_plugin.c'; then $(CYGPATH_W) 'src/decoder/fluidsynth_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/fluidsynth_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-fluidsynth_plugin.Tpo" "$(DEPDIR)/test_read_tags-fluidsynth_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-fluidsynth_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/fluidsynth_plugin.c' object='test_read_tags-fluidsynth_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-fluidsynth_plugin.obj `if test -f 'src/decoder/fluidsynth_plugin.c'; then $(CYGPATH_W) 'src/decoder/fluidsynth_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/fluidsynth_plugin.c'; fi`
-
- test_read_tags-wildmidi_plugin.o: src/decoder/wildmidi_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-wildmidi_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-wildmidi_plugin.Tpo -c -o test_read_tags-wildmidi_plugin.o `test -f 'src/decoder/wildmidi_plugin.c' || echo '$(srcdir)/'`src/decoder/wildmidi_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-wildmidi_plugin.Tpo $(DEPDIR)/test_read_tags-wildmidi_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-wildmidi_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-wildmidi_plugin.Tpo" -c -o test_read_tags-wildmidi_plugin.o `test -f 'src/decoder/wildmidi_plugin.c' || echo '$(srcdir)/'`src/decoder/wildmidi_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-wildmidi_plugin.Tpo" "$(DEPDIR)/test_read_tags-wildmidi_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-wildmidi_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/wildmidi_plugin.c' object='test_read_tags-wildmidi_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-wildmidi_plugin.o `test -f 'src/decoder/wildmidi_plugin.c' || echo '$(srcdir)/'`src/decoder/wildmidi_plugin.c
-
- test_read_tags-wildmidi_plugin.obj: src/decoder/wildmidi_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-wildmidi_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-wildmidi_plugin.Tpo -c -o test_read_tags-wildmidi_plugin.obj `if test -f 'src/decoder/wildmidi_plugin.c'; then $(CYGPATH_W) 'src/decoder/wildmidi_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wildmidi_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-wildmidi_plugin.Tpo $(DEPDIR)/test_read_tags-wildmidi_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-wildmidi_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-wildmidi_plugin.Tpo" -c -o test_read_tags-wildmidi_plugin.obj `if test -f 'src/decoder/wildmidi_plugin.c'; then $(CYGPATH_W) 'src/decoder/wildmidi_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wildmidi_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-wildmidi_plugin.Tpo" "$(DEPDIR)/test_read_tags-wildmidi_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-wildmidi_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/wildmidi_plugin.c' object='test_read_tags-wildmidi_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-wildmidi_plugin.obj `if test -f 'src/decoder/wildmidi_plugin.c'; then $(CYGPATH_W) 'src/decoder/wildmidi_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wildmidi_plugin.c'; fi`
-
- test_read_tags-ffmpeg_plugin.o: src/decoder/ffmpeg_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-ffmpeg_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-ffmpeg_plugin.Tpo -c -o test_read_tags-ffmpeg_plugin.o `test -f 'src/decoder/ffmpeg_plugin.c' || echo '$(srcdir)/'`src/decoder/ffmpeg_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-ffmpeg_plugin.Tpo $(DEPDIR)/test_read_tags-ffmpeg_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-ffmpeg_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-ffmpeg_plugin.Tpo" -c -o test_read_tags-ffmpeg_plugin.o `test -f 'src/decoder/ffmpeg_plugin.c' || echo '$(srcdir)/'`src/decoder/ffmpeg_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-ffmpeg_plugin.Tpo" "$(DEPDIR)/test_read_tags-ffmpeg_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-ffmpeg_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/ffmpeg_plugin.c' object='test_read_tags-ffmpeg_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-ffmpeg_plugin.o `test -f 'src/decoder/ffmpeg_plugin.c' || echo '$(srcdir)/'`src/decoder/ffmpeg_plugin.c
-
- test_read_tags-ffmpeg_plugin.obj: src/decoder/ffmpeg_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-ffmpeg_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-ffmpeg_plugin.Tpo -c -o test_read_tags-ffmpeg_plugin.obj `if test -f 'src/decoder/ffmpeg_plugin.c'; then $(CYGPATH_W) 'src/decoder/ffmpeg_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/ffmpeg_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-ffmpeg_plugin.Tpo $(DEPDIR)/test_read_tags-ffmpeg_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-ffmpeg_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-ffmpeg_plugin.Tpo" -c -o test_read_tags-ffmpeg_plugin.obj `if test -f 'src/decoder/ffmpeg_plugin.c'; then $(CYGPATH_W) 'src/decoder/ffmpeg_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/ffmpeg_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-ffmpeg_plugin.Tpo" "$(DEPDIR)/test_read_tags-ffmpeg_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-ffmpeg_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/ffmpeg_plugin.c' object='test_read_tags-ffmpeg_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-ffmpeg_plugin.obj `if test -f 'src/decoder/ffmpeg_plugin.c'; then $(CYGPATH_W) 'src/decoder/ffmpeg_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/ffmpeg_plugin.c'; fi`
-
- test_read_tags-cue_tag.o: src/cue/cue_tag.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-cue_tag.o -MD -MP -MF $(DEPDIR)/test_read_tags-cue_tag.Tpo -c -o test_read_tags-cue_tag.o `test -f 'src/cue/cue_tag.c' || echo '$(srcdir)/'`src/cue/cue_tag.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-cue_tag.Tpo $(DEPDIR)/test_read_tags-cue_tag.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-cue_tag.o -MD -MP -MF "$(DEPDIR)/test_read_tags-cue_tag.Tpo" -c -o test_read_tags-cue_tag.o `test -f 'src/cue/cue_tag.c' || echo '$(srcdir)/'`src/cue/cue_tag.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-cue_tag.Tpo" "$(DEPDIR)/test_read_tags-cue_tag.Po"; else rm -f "$(DEPDIR)/test_read_tags-cue_tag.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/cue/cue_tag.c' object='test_read_tags-cue_tag.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-cue_tag.o `test -f 'src/cue/cue_tag.c' || echo '$(srcdir)/'`src/cue/cue_tag.c
-
- test_read_tags-cue_tag.obj: src/cue/cue_tag.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-cue_tag.obj -MD -MP -MF $(DEPDIR)/test_read_tags-cue_tag.Tpo -c -o test_read_tags-cue_tag.obj `if test -f 'src/cue/cue_tag.c'; then $(CYGPATH_W) 'src/cue/cue_tag.c'; else $(CYGPATH_W) '$(srcdir)/src/cue/cue_tag.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-cue_tag.Tpo $(DEPDIR)/test_read_tags-cue_tag.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_read_tags-cue_tag.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-cue_tag.Tpo" -c -o test_read_tags-cue_tag.obj `if test -f 'src/cue/cue_tag.c'; then $(CYGPATH_W) 'src/cue/cue_tag.c'; else $(CYGPATH_W) '$(srcdir)/src/cue/cue_tag.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-cue_tag.Tpo" "$(DEPDIR)/test_read_tags-cue_tag.Po"; else rm -f "$(DEPDIR)/test_read_tags-cue_tag.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/cue/cue_tag.c' object='test_read_tags-cue_tag.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_read_tags-cue_tag.obj `if test -f 'src/cue/cue_tag.c'; then $(CYGPATH_W) 'src/cue/cue_tag.c'; else $(CYGPATH_W) '$(srcdir)/src/cue/cue_tag.c'; fi`
-
- test_run_decoder-run_decoder.o: test/run_decoder.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-run_decoder.o -MD -MP -MF $(DEPDIR)/test_run_decoder-run_decoder.Tpo -c -o test_run_decoder-run_decoder.o `test -f 'test/run_decoder.c' || echo '$(srcdir)/'`test/run_decoder.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-run_decoder.Tpo $(DEPDIR)/test_run_decoder-run_decoder.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-run_decoder.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-run_decoder.Tpo" -c -o test_run_decoder-run_decoder.o `test -f 'test/run_decoder.c' || echo '$(srcdir)/'`test/run_decoder.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-run_decoder.Tpo" "$(DEPDIR)/test_run_decoder-run_decoder.Po"; else rm -f "$(DEPDIR)/test_run_decoder-run_decoder.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/run_decoder.c' object='test_run_decoder-run_decoder.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-run_decoder.o `test -f 'test/run_decoder.c' || echo '$(srcdir)/'`test/run_decoder.c
-
- test_run_decoder-run_decoder.obj: test/run_decoder.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-run_decoder.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-run_decoder.Tpo -c -o test_run_decoder-run_decoder.obj `if test -f 'test/run_decoder.c'; then $(CYGPATH_W) 'test/run_decoder.c'; else $(CYGPATH_W) '$(srcdir)/test/run_decoder.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-run_decoder.Tpo $(DEPDIR)/test_run_decoder-run_decoder.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-run_decoder.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-run_decoder.Tpo" -c -o test_run_decoder-run_decoder.obj `if test -f 'test/run_decoder.c'; then $(CYGPATH_W) 'test/run_decoder.c'; else $(CYGPATH_W) '$(srcdir)/test/run_decoder.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-run_decoder.Tpo" "$(DEPDIR)/test_run_decoder-run_decoder.Po"; else rm -f "$(DEPDIR)/test_run_decoder-run_decoder.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/run_decoder.c' object='test_run_decoder-run_decoder.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-run_decoder.obj `if test -f 'test/run_decoder.c'; then $(CYGPATH_W) 'test/run_decoder.c'; else $(CYGPATH_W) '$(srcdir)/test/run_decoder.c'; fi`
-
- test_run_decoder-conf.o: src/conf.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-conf.o -MD -MP -MF $(DEPDIR)/test_run_decoder-conf.Tpo -c -o test_run_decoder-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-conf.Tpo $(DEPDIR)/test_run_decoder-conf.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-conf.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-conf.Tpo" -c -o test_run_decoder-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-conf.Tpo" "$(DEPDIR)/test_run_decoder-conf.Po"; else rm -f "$(DEPDIR)/test_run_decoder-conf.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/conf.c' object='test_run_decoder-conf.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c
-
- test_run_decoder-conf.obj: src/conf.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-conf.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-conf.Tpo -c -o test_run_decoder-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-conf.Tpo $(DEPDIR)/test_run_decoder-conf.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-conf.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-conf.Tpo" -c -o test_run_decoder-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-conf.Tpo" "$(DEPDIR)/test_run_decoder-conf.Po"; else rm -f "$(DEPDIR)/test_run_decoder-conf.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/conf.c' object='test_run_decoder-conf.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi`
-
- test_run_decoder-buffer2array.o: src/buffer2array.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-buffer2array.o -MD -MP -MF $(DEPDIR)/test_run_decoder-buffer2array.Tpo -c -o test_run_decoder-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-buffer2array.Tpo $(DEPDIR)/test_run_decoder-buffer2array.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-buffer2array.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-buffer2array.Tpo" -c -o test_run_decoder-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-buffer2array.Tpo" "$(DEPDIR)/test_run_decoder-buffer2array.Po"; else rm -f "$(DEPDIR)/test_run_decoder-buffer2array.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer2array.c' object='test_run_decoder-buffer2array.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c
-
- test_run_decoder-buffer2array.obj: src/buffer2array.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-buffer2array.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-buffer2array.Tpo -c -o test_run_decoder-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-buffer2array.Tpo $(DEPDIR)/test_run_decoder-buffer2array.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-buffer2array.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-buffer2array.Tpo" -c -o test_run_decoder-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-buffer2array.Tpo" "$(DEPDIR)/test_run_decoder-buffer2array.Po"; else rm -f "$(DEPDIR)/test_run_decoder-buffer2array.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer2array.c' object='test_run_decoder-buffer2array.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi`
-
- test_run_decoder-utils.o: src/utils.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-utils.o -MD -MP -MF $(DEPDIR)/test_run_decoder-utils.Tpo -c -o test_run_decoder-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-utils.Tpo $(DEPDIR)/test_run_decoder-utils.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-utils.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-utils.Tpo" -c -o test_run_decoder-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-utils.Tpo" "$(DEPDIR)/test_run_decoder-utils.Po"; else rm -f "$(DEPDIR)/test_run_decoder-utils.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/utils.c' object='test_run_decoder-utils.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c
-
- test_run_decoder-utils.obj: src/utils.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-utils.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-utils.Tpo -c -o test_run_decoder-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-utils.Tpo $(DEPDIR)/test_run_decoder-utils.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-utils.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-utils.Tpo" -c -o test_run_decoder-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-utils.Tpo" "$(DEPDIR)/test_run_decoder-utils.Po"; else rm -f "$(DEPDIR)/test_run_decoder-utils.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/utils.c' object='test_run_decoder-utils.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi`
-
- test_run_decoder-log.o: src/log.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-log.o -MD -MP -MF $(DEPDIR)/test_run_decoder-log.Tpo -c -o test_run_decoder-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-log.Tpo $(DEPDIR)/test_run_decoder-log.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-log.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-log.Tpo" -c -o test_run_decoder-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-log.Tpo" "$(DEPDIR)/test_run_decoder-log.Po"; else rm -f "$(DEPDIR)/test_run_decoder-log.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/log.c' object='test_run_decoder-log.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c
-
- test_run_decoder-log.obj: src/log.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-log.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-log.Tpo -c -o test_run_decoder-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-log.Tpo $(DEPDIR)/test_run_decoder-log.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-log.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-log.Tpo" -c -o test_run_decoder-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-log.Tpo" "$(DEPDIR)/test_run_decoder-log.Po"; else rm -f "$(DEPDIR)/test_run_decoder-log.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/log.c' object='test_run_decoder-log.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi`
-
- test_run_decoder-tag.o: src/tag.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-tag.o -MD -MP -MF $(DEPDIR)/test_run_decoder-tag.Tpo -c -o test_run_decoder-tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-tag.Tpo $(DEPDIR)/test_run_decoder-tag.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-tag.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-tag.Tpo" -c -o test_run_decoder-tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-tag.Tpo" "$(DEPDIR)/test_run_decoder-tag.Po"; else rm -f "$(DEPDIR)/test_run_decoder-tag.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag.c' object='test_run_decoder-tag.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c
-
- test_run_decoder-tag.obj: src/tag.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-tag.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-tag.Tpo -c -o test_run_decoder-tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-tag.Tpo $(DEPDIR)/test_run_decoder-tag.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-tag.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-tag.Tpo" -c -o test_run_decoder-tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-tag.Tpo" "$(DEPDIR)/test_run_decoder-tag.Po"; else rm -f "$(DEPDIR)/test_run_decoder-tag.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag.c' object='test_run_decoder-tag.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi`
-
- test_run_decoder-tag_pool.o: src/tag_pool.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-tag_pool.o -MD -MP -MF $(DEPDIR)/test_run_decoder-tag_pool.Tpo -c -o test_run_decoder-tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-tag_pool.Tpo $(DEPDIR)/test_run_decoder-tag_pool.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-tag_pool.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-tag_pool.Tpo" -c -o test_run_decoder-tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-tag_pool.Tpo" "$(DEPDIR)/test_run_decoder-tag_pool.Po"; else rm -f "$(DEPDIR)/test_run_decoder-tag_pool.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_pool.c' object='test_run_decoder-tag_pool.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c
-
- test_run_decoder-tag_pool.obj: src/tag_pool.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-tag_pool.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-tag_pool.Tpo -c -o test_run_decoder-tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-tag_pool.Tpo $(DEPDIR)/test_run_decoder-tag_pool.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-tag_pool.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-tag_pool.Tpo" -c -o test_run_decoder-tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-tag_pool.Tpo" "$(DEPDIR)/test_run_decoder-tag_pool.Po"; else rm -f "$(DEPDIR)/test_run_decoder-tag_pool.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_pool.c' object='test_run_decoder-tag_pool.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi`
-
- test_run_decoder-replay_gain.o: src/replay_gain.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-replay_gain.o -MD -MP -MF $(DEPDIR)/test_run_decoder-replay_gain.Tpo -c -o test_run_decoder-replay_gain.o `test -f 'src/replay_gain.c' || echo '$(srcdir)/'`src/replay_gain.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-replay_gain.Tpo $(DEPDIR)/test_run_decoder-replay_gain.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-replay_gain.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-replay_gain.Tpo" -c -o test_run_decoder-replay_gain.o `test -f 'src/replay_gain.c' || echo '$(srcdir)/'`src/replay_gain.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-replay_gain.Tpo" "$(DEPDIR)/test_run_decoder-replay_gain.Po"; else rm -f "$(DEPDIR)/test_run_decoder-replay_gain.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/replay_gain.c' object='test_run_decoder-replay_gain.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-replay_gain.o `test -f 'src/replay_gain.c' || echo '$(srcdir)/'`src/replay_gain.c
-
- test_run_decoder-replay_gain.obj: src/replay_gain.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-replay_gain.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-replay_gain.Tpo -c -o test_run_decoder-replay_gain.obj `if test -f 'src/replay_gain.c'; then $(CYGPATH_W) 'src/replay_gain.c'; else $(CYGPATH_W) '$(srcdir)/src/replay_gain.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-replay_gain.Tpo $(DEPDIR)/test_run_decoder-replay_gain.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-replay_gain.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-replay_gain.Tpo" -c -o test_run_decoder-replay_gain.obj `if test -f 'src/replay_gain.c'; then $(CYGPATH_W) 'src/replay_gain.c'; else $(CYGPATH_W) '$(srcdir)/src/replay_gain.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-replay_gain.Tpo" "$(DEPDIR)/test_run_decoder-replay_gain.Po"; else rm -f "$(DEPDIR)/test_run_decoder-replay_gain.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/replay_gain.c' object='test_run_decoder-replay_gain.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-replay_gain.obj `if test -f 'src/replay_gain.c'; then $(CYGPATH_W) 'src/replay_gain.c'; else $(CYGPATH_W) '$(srcdir)/src/replay_gain.c'; fi`
-
- test_run_decoder-uri.o: src/uri.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-uri.o -MD -MP -MF $(DEPDIR)/test_run_decoder-uri.Tpo -c -o test_run_decoder-uri.o `test -f 'src/uri.c' || echo '$(srcdir)/'`src/uri.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-uri.Tpo $(DEPDIR)/test_run_decoder-uri.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-uri.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-uri.Tpo" -c -o test_run_decoder-uri.o `test -f 'src/uri.c' || echo '$(srcdir)/'`src/uri.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-uri.Tpo" "$(DEPDIR)/test_run_decoder-uri.Po"; else rm -f "$(DEPDIR)/test_run_decoder-uri.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/uri.c' object='test_run_decoder-uri.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-uri.o `test -f 'src/uri.c' || echo '$(srcdir)/'`src/uri.c
-
- test_run_decoder-uri.obj: src/uri.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-uri.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-uri.Tpo -c -o test_run_decoder-uri.obj `if test -f 'src/uri.c'; then $(CYGPATH_W) 'src/uri.c'; else $(CYGPATH_W) '$(srcdir)/src/uri.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-uri.Tpo $(DEPDIR)/test_run_decoder-uri.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-uri.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-uri.Tpo" -c -o test_run_decoder-uri.obj `if test -f 'src/uri.c'; then $(CYGPATH_W) 'src/uri.c'; else $(CYGPATH_W) '$(srcdir)/src/uri.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-uri.Tpo" "$(DEPDIR)/test_run_decoder-uri.Po"; else rm -f "$(DEPDIR)/test_run_decoder-uri.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/uri.c' object='test_run_decoder-uri.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-uri.obj `if test -f 'src/uri.c'; then $(CYGPATH_W) 'src/uri.c'; else $(CYGPATH_W) '$(srcdir)/src/uri.c'; fi`
-
- test_run_decoder-timer.o: src/timer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-timer.o -MD -MP -MF $(DEPDIR)/test_run_decoder-timer.Tpo -c -o test_run_decoder-timer.o `test -f 'src/timer.c' || echo '$(srcdir)/'`src/timer.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-timer.Tpo $(DEPDIR)/test_run_decoder-timer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-timer.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-timer.Tpo" -c -o test_run_decoder-timer.o `test -f 'src/timer.c' || echo '$(srcdir)/'`src/timer.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-timer.Tpo" "$(DEPDIR)/test_run_decoder-timer.Po"; else rm -f "$(DEPDIR)/test_run_decoder-timer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/timer.c' object='test_run_decoder-timer.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-timer.o `test -f 'src/timer.c' || echo '$(srcdir)/'`src/timer.c
-
- test_run_decoder-timer.obj: src/timer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-timer.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-timer.Tpo -c -o test_run_decoder-timer.obj `if test -f 'src/timer.c'; then $(CYGPATH_W) 'src/timer.c'; else $(CYGPATH_W) '$(srcdir)/src/timer.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-timer.Tpo $(DEPDIR)/test_run_decoder-timer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-timer.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-timer.Tpo" -c -o test_run_decoder-timer.obj `if test -f 'src/timer.c'; then $(CYGPATH_W) 'src/timer.c'; else $(CYGPATH_W) '$(srcdir)/src/timer.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-timer.Tpo" "$(DEPDIR)/test_run_decoder-timer.Po"; else rm -f "$(DEPDIR)/test_run_decoder-timer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/timer.c' object='test_run_decoder-timer.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-timer.obj `if test -f 'src/timer.c'; then $(CYGPATH_W) 'src/timer.c'; else $(CYGPATH_W) '$(srcdir)/src/timer.c'; fi`
-
- test_run_decoder-bz2_plugin.o: src/archive/bz2_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-bz2_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-bz2_plugin.Tpo -c -o test_run_decoder-bz2_plugin.o `test -f 'src/archive/bz2_plugin.c' || echo '$(srcdir)/'`src/archive/bz2_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-bz2_plugin.Tpo $(DEPDIR)/test_run_decoder-bz2_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-bz2_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-bz2_plugin.Tpo" -c -o test_run_decoder-bz2_plugin.o `test -f 'src/archive/bz2_plugin.c' || echo '$(srcdir)/'`src/archive/bz2_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-bz2_plugin.Tpo" "$(DEPDIR)/test_run_decoder-bz2_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-bz2_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/bz2_plugin.c' object='test_run_decoder-bz2_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-bz2_plugin.o `test -f 'src/archive/bz2_plugin.c' || echo '$(srcdir)/'`src/archive/bz2_plugin.c
-
- test_run_decoder-bz2_plugin.obj: src/archive/bz2_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-bz2_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-bz2_plugin.Tpo -c -o test_run_decoder-bz2_plugin.obj `if test -f 'src/archive/bz2_plugin.c'; then $(CYGPATH_W) 'src/archive/bz2_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/bz2_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-bz2_plugin.Tpo $(DEPDIR)/test_run_decoder-bz2_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-bz2_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-bz2_plugin.Tpo" -c -o test_run_decoder-bz2_plugin.obj `if test -f 'src/archive/bz2_plugin.c'; then $(CYGPATH_W) 'src/archive/bz2_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/bz2_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-bz2_plugin.Tpo" "$(DEPDIR)/test_run_decoder-bz2_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-bz2_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/bz2_plugin.c' object='test_run_decoder-bz2_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-bz2_plugin.obj `if test -f 'src/archive/bz2_plugin.c'; then $(CYGPATH_W) 'src/archive/bz2_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/bz2_plugin.c'; fi`
-
- test_run_decoder-zip_plugin.o: src/archive/zip_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-zip_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-zip_plugin.Tpo -c -o test_run_decoder-zip_plugin.o `test -f 'src/archive/zip_plugin.c' || echo '$(srcdir)/'`src/archive/zip_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-zip_plugin.Tpo $(DEPDIR)/test_run_decoder-zip_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-zip_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-zip_plugin.Tpo" -c -o test_run_decoder-zip_plugin.o `test -f 'src/archive/zip_plugin.c' || echo '$(srcdir)/'`src/archive/zip_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-zip_plugin.Tpo" "$(DEPDIR)/test_run_decoder-zip_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-zip_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/zip_plugin.c' object='test_run_decoder-zip_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-zip_plugin.o `test -f 'src/archive/zip_plugin.c' || echo '$(srcdir)/'`src/archive/zip_plugin.c
-
- test_run_decoder-zip_plugin.obj: src/archive/zip_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-zip_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-zip_plugin.Tpo -c -o test_run_decoder-zip_plugin.obj `if test -f 'src/archive/zip_plugin.c'; then $(CYGPATH_W) 'src/archive/zip_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/zip_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-zip_plugin.Tpo $(DEPDIR)/test_run_decoder-zip_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-zip_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-zip_plugin.Tpo" -c -o test_run_decoder-zip_plugin.obj `if test -f 'src/archive/zip_plugin.c'; then $(CYGPATH_W) 'src/archive/zip_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/zip_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-zip_plugin.Tpo" "$(DEPDIR)/test_run_decoder-zip_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-zip_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/zip_plugin.c' object='test_run_decoder-zip_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-zip_plugin.obj `if test -f 'src/archive/zip_plugin.c'; then $(CYGPATH_W) 'src/archive/zip_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/zip_plugin.c'; fi`
-
- test_run_decoder-iso_plugin.o: src/archive/iso_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-iso_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-iso_plugin.Tpo -c -o test_run_decoder-iso_plugin.o `test -f 'src/archive/iso_plugin.c' || echo '$(srcdir)/'`src/archive/iso_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-iso_plugin.Tpo $(DEPDIR)/test_run_decoder-iso_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-iso_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-iso_plugin.Tpo" -c -o test_run_decoder-iso_plugin.o `test -f 'src/archive/iso_plugin.c' || echo '$(srcdir)/'`src/archive/iso_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-iso_plugin.Tpo" "$(DEPDIR)/test_run_decoder-iso_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-iso_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/iso_plugin.c' object='test_run_decoder-iso_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-iso_plugin.o `test -f 'src/archive/iso_plugin.c' || echo '$(srcdir)/'`src/archive/iso_plugin.c
-
- test_run_decoder-iso_plugin.obj: src/archive/iso_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-iso_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-iso_plugin.Tpo -c -o test_run_decoder-iso_plugin.obj `if test -f 'src/archive/iso_plugin.c'; then $(CYGPATH_W) 'src/archive/iso_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/iso_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-iso_plugin.Tpo $(DEPDIR)/test_run_decoder-iso_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-iso_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-iso_plugin.Tpo" -c -o test_run_decoder-iso_plugin.obj `if test -f 'src/archive/iso_plugin.c'; then $(CYGPATH_W) 'src/archive/iso_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/iso_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-iso_plugin.Tpo" "$(DEPDIR)/test_run_decoder-iso_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-iso_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/iso_plugin.c' object='test_run_decoder-iso_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-iso_plugin.obj `if test -f 'src/archive/iso_plugin.c'; then $(CYGPATH_W) 'src/archive/iso_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/iso_plugin.c'; fi`
-
- test_run_decoder-archive_api.o: src/archive_api.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-archive_api.o -MD -MP -MF $(DEPDIR)/test_run_decoder-archive_api.Tpo -c -o test_run_decoder-archive_api.o `test -f 'src/archive_api.c' || echo '$(srcdir)/'`src/archive_api.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-archive_api.Tpo $(DEPDIR)/test_run_decoder-archive_api.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-archive_api.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-archive_api.Tpo" -c -o test_run_decoder-archive_api.o `test -f 'src/archive_api.c' || echo '$(srcdir)/'`src/archive_api.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-archive_api.Tpo" "$(DEPDIR)/test_run_decoder-archive_api.Po"; else rm -f "$(DEPDIR)/test_run_decoder-archive_api.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive_api.c' object='test_run_decoder-archive_api.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-archive_api.o `test -f 'src/archive_api.c' || echo '$(srcdir)/'`src/archive_api.c
-
- test_run_decoder-archive_api.obj: src/archive_api.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-archive_api.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-archive_api.Tpo -c -o test_run_decoder-archive_api.obj `if test -f 'src/archive_api.c'; then $(CYGPATH_W) 'src/archive_api.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_api.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-archive_api.Tpo $(DEPDIR)/test_run_decoder-archive_api.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-archive_api.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-archive_api.Tpo" -c -o test_run_decoder-archive_api.obj `if test -f 'src/archive_api.c'; then $(CYGPATH_W) 'src/archive_api.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_api.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-archive_api.Tpo" "$(DEPDIR)/test_run_decoder-archive_api.Po"; else rm -f "$(DEPDIR)/test_run_decoder-archive_api.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive_api.c' object='test_run_decoder-archive_api.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-archive_api.obj `if test -f 'src/archive_api.c'; then $(CYGPATH_W) 'src/archive_api.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_api.c'; fi`
-
- test_run_decoder-archive_list.o: src/archive_list.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-archive_list.o -MD -MP -MF $(DEPDIR)/test_run_decoder-archive_list.Tpo -c -o test_run_decoder-archive_list.o `test -f 'src/archive_list.c' || echo '$(srcdir)/'`src/archive_list.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-archive_list.Tpo $(DEPDIR)/test_run_decoder-archive_list.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-archive_list.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-archive_list.Tpo" -c -o test_run_decoder-archive_list.o `test -f 'src/archive_list.c' || echo '$(srcdir)/'`src/archive_list.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-archive_list.Tpo" "$(DEPDIR)/test_run_decoder-archive_list.Po"; else rm -f "$(DEPDIR)/test_run_decoder-archive_list.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive_list.c' object='test_run_decoder-archive_list.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-archive_list.o `test -f 'src/archive_list.c' || echo '$(srcdir)/'`src/archive_list.c
-
- test_run_decoder-archive_list.obj: src/archive_list.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-archive_list.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-archive_list.Tpo -c -o test_run_decoder-archive_list.obj `if test -f 'src/archive_list.c'; then $(CYGPATH_W) 'src/archive_list.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_list.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-archive_list.Tpo $(DEPDIR)/test_run_decoder-archive_list.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-archive_list.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-archive_list.Tpo" -c -o test_run_decoder-archive_list.obj `if test -f 'src/archive_list.c'; then $(CYGPATH_W) 'src/archive_list.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_list.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-archive_list.Tpo" "$(DEPDIR)/test_run_decoder-archive_list.Po"; else rm -f "$(DEPDIR)/test_run_decoder-archive_list.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive_list.c' object='test_run_decoder-archive_list.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-archive_list.obj `if test -f 'src/archive_list.c'; then $(CYGPATH_W) 'src/archive_list.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_list.c'; fi`
-
- test_run_decoder-archive_input_plugin.o: src/input/archive_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-archive_input_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-archive_input_plugin.Tpo -c -o test_run_decoder-archive_input_plugin.o `test -f 'src/input/archive_input_plugin.c' || echo '$(srcdir)/'`src/input/archive_input_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-archive_input_plugin.Tpo $(DEPDIR)/test_run_decoder-archive_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-archive_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-archive_input_plugin.Tpo" -c -o test_run_decoder-archive_input_plugin.o `test -f 'src/input/archive_input_plugin.c' || echo '$(srcdir)/'`src/input/archive_input_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-archive_input_plugin.Tpo" "$(DEPDIR)/test_run_decoder-archive_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-archive_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/archive_input_plugin.c' object='test_run_decoder-archive_input_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-archive_input_plugin.o `test -f 'src/input/archive_input_plugin.c' || echo '$(srcdir)/'`src/input/archive_input_plugin.c
-
- test_run_decoder-archive_input_plugin.obj: src/input/archive_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-archive_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-archive_input_plugin.Tpo -c -o test_run_decoder-archive_input_plugin.obj `if test -f 'src/input/archive_input_plugin.c'; then $(CYGPATH_W) 'src/input/archive_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/archive_input_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-archive_input_plugin.Tpo $(DEPDIR)/test_run_decoder-archive_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-archive_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-archive_input_plugin.Tpo" -c -o test_run_decoder-archive_input_plugin.obj `if test -f 'src/input/archive_input_plugin.c'; then $(CYGPATH_W) 'src/input/archive_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/archive_input_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-archive_input_plugin.Tpo" "$(DEPDIR)/test_run_decoder-archive_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-archive_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/archive_input_plugin.c' object='test_run_decoder-archive_input_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-archive_input_plugin.obj `if test -f 'src/input/archive_input_plugin.c'; then $(CYGPATH_W) 'src/input/archive_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/archive_input_plugin.c'; fi`
-
- test_run_decoder-input_stream.o: src/input_stream.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-input_stream.o -MD -MP -MF $(DEPDIR)/test_run_decoder-input_stream.Tpo -c -o test_run_decoder-input_stream.o `test -f 'src/input_stream.c' || echo '$(srcdir)/'`src/input_stream.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-input_stream.Tpo $(DEPDIR)/test_run_decoder-input_stream.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-input_stream.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-input_stream.Tpo" -c -o test_run_decoder-input_stream.o `test -f 'src/input_stream.c' || echo '$(srcdir)/'`src/input_stream.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-input_stream.Tpo" "$(DEPDIR)/test_run_decoder-input_stream.Po"; else rm -f "$(DEPDIR)/test_run_decoder-input_stream.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input_stream.c' object='test_run_decoder-input_stream.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-input_stream.o `test -f 'src/input_stream.c' || echo '$(srcdir)/'`src/input_stream.c
-
- test_run_decoder-input_stream.obj: src/input_stream.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-input_stream.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-input_stream.Tpo -c -o test_run_decoder-input_stream.obj `if test -f 'src/input_stream.c'; then $(CYGPATH_W) 'src/input_stream.c'; else $(CYGPATH_W) '$(srcdir)/src/input_stream.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-input_stream.Tpo $(DEPDIR)/test_run_decoder-input_stream.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-input_stream.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-input_stream.Tpo" -c -o test_run_decoder-input_stream.obj `if test -f 'src/input_stream.c'; then $(CYGPATH_W) 'src/input_stream.c'; else $(CYGPATH_W) '$(srcdir)/src/input_stream.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-input_stream.Tpo" "$(DEPDIR)/test_run_decoder-input_stream.Po"; else rm -f "$(DEPDIR)/test_run_decoder-input_stream.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input_stream.c' object='test_run_decoder-input_stream.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-input_stream.obj `if test -f 'src/input_stream.c'; then $(CYGPATH_W) 'src/input_stream.c'; else $(CYGPATH_W) '$(srcdir)/src/input_stream.c'; fi`
-
- test_run_decoder-file_input_plugin.o: src/input/file_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-file_input_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-file_input_plugin.Tpo -c -o test_run_decoder-file_input_plugin.o `test -f 'src/input/file_input_plugin.c' || echo '$(srcdir)/'`src/input/file_input_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-file_input_plugin.Tpo $(DEPDIR)/test_run_decoder-file_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-file_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-file_input_plugin.Tpo" -c -o test_run_decoder-file_input_plugin.o `test -f 'src/input/file_input_plugin.c' || echo '$(srcdir)/'`src/input/file_input_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-file_input_plugin.Tpo" "$(DEPDIR)/test_run_decoder-file_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-file_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/file_input_plugin.c' object='test_run_decoder-file_input_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-file_input_plugin.o `test -f 'src/input/file_input_plugin.c' || echo '$(srcdir)/'`src/input/file_input_plugin.c
-
- test_run_decoder-file_input_plugin.obj: src/input/file_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-file_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-file_input_plugin.Tpo -c -o test_run_decoder-file_input_plugin.obj `if test -f 'src/input/file_input_plugin.c'; then $(CYGPATH_W) 'src/input/file_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/file_input_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-file_input_plugin.Tpo $(DEPDIR)/test_run_decoder-file_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-file_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-file_input_plugin.Tpo" -c -o test_run_decoder-file_input_plugin.obj `if test -f 'src/input/file_input_plugin.c'; then $(CYGPATH_W) 'src/input/file_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/file_input_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-file_input_plugin.Tpo" "$(DEPDIR)/test_run_decoder-file_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-file_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/file_input_plugin.c' object='test_run_decoder-file_input_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-file_input_plugin.obj `if test -f 'src/input/file_input_plugin.c'; then $(CYGPATH_W) 'src/input/file_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/file_input_plugin.c'; fi`
-
- test_run_decoder-curl_input_plugin.o: src/input/curl_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-curl_input_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-curl_input_plugin.Tpo -c -o test_run_decoder-curl_input_plugin.o `test -f 'src/input/curl_input_plugin.c' || echo '$(srcdir)/'`src/input/curl_input_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-curl_input_plugin.Tpo $(DEPDIR)/test_run_decoder-curl_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-curl_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-curl_input_plugin.Tpo" -c -o test_run_decoder-curl_input_plugin.o `test -f 'src/input/curl_input_plugin.c' || echo '$(srcdir)/'`src/input/curl_input_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-curl_input_plugin.Tpo" "$(DEPDIR)/test_run_decoder-curl_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-curl_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/curl_input_plugin.c' object='test_run_decoder-curl_input_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-curl_input_plugin.o `test -f 'src/input/curl_input_plugin.c' || echo '$(srcdir)/'`src/input/curl_input_plugin.c
-
- test_run_decoder-curl_input_plugin.obj: src/input/curl_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-curl_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-curl_input_plugin.Tpo -c -o test_run_decoder-curl_input_plugin.obj `if test -f 'src/input/curl_input_plugin.c'; then $(CYGPATH_W) 'src/input/curl_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/curl_input_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-curl_input_plugin.Tpo $(DEPDIR)/test_run_decoder-curl_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-curl_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-curl_input_plugin.Tpo" -c -o test_run_decoder-curl_input_plugin.obj `if test -f 'src/input/curl_input_plugin.c'; then $(CYGPATH_W) 'src/input/curl_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/curl_input_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-curl_input_plugin.Tpo" "$(DEPDIR)/test_run_decoder-curl_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-curl_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/curl_input_plugin.c' object='test_run_decoder-curl_input_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-curl_input_plugin.obj `if test -f 'src/input/curl_input_plugin.c'; then $(CYGPATH_W) 'src/input/curl_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/curl_input_plugin.c'; fi`
-
- test_run_decoder-rewind_input_plugin.o: src/input/rewind_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-rewind_input_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-rewind_input_plugin.Tpo -c -o test_run_decoder-rewind_input_plugin.o `test -f 'src/input/rewind_input_plugin.c' || echo '$(srcdir)/'`src/input/rewind_input_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-rewind_input_plugin.Tpo $(DEPDIR)/test_run_decoder-rewind_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-rewind_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-rewind_input_plugin.Tpo" -c -o test_run_decoder-rewind_input_plugin.o `test -f 'src/input/rewind_input_plugin.c' || echo '$(srcdir)/'`src/input/rewind_input_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-rewind_input_plugin.Tpo" "$(DEPDIR)/test_run_decoder-rewind_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-rewind_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/rewind_input_plugin.c' object='test_run_decoder-rewind_input_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-rewind_input_plugin.o `test -f 'src/input/rewind_input_plugin.c' || echo '$(srcdir)/'`src/input/rewind_input_plugin.c
-
- test_run_decoder-rewind_input_plugin.obj: src/input/rewind_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-rewind_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-rewind_input_plugin.Tpo -c -o test_run_decoder-rewind_input_plugin.obj `if test -f 'src/input/rewind_input_plugin.c'; then $(CYGPATH_W) 'src/input/rewind_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/rewind_input_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-rewind_input_plugin.Tpo $(DEPDIR)/test_run_decoder-rewind_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-rewind_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-rewind_input_plugin.Tpo" -c -o test_run_decoder-rewind_input_plugin.obj `if test -f 'src/input/rewind_input_plugin.c'; then $(CYGPATH_W) 'src/input/rewind_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/rewind_input_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-rewind_input_plugin.Tpo" "$(DEPDIR)/test_run_decoder-rewind_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-rewind_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/rewind_input_plugin.c' object='test_run_decoder-rewind_input_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-rewind_input_plugin.obj `if test -f 'src/input/rewind_input_plugin.c'; then $(CYGPATH_W) 'src/input/rewind_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/rewind_input_plugin.c'; fi`
-
- test_run_decoder-icy_metadata.o: src/icy_metadata.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-icy_metadata.o -MD -MP -MF $(DEPDIR)/test_run_decoder-icy_metadata.Tpo -c -o test_run_decoder-icy_metadata.o `test -f 'src/icy_metadata.c' || echo '$(srcdir)/'`src/icy_metadata.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-icy_metadata.Tpo $(DEPDIR)/test_run_decoder-icy_metadata.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-icy_metadata.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-icy_metadata.Tpo" -c -o test_run_decoder-icy_metadata.o `test -f 'src/icy_metadata.c' || echo '$(srcdir)/'`src/icy_metadata.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-icy_metadata.Tpo" "$(DEPDIR)/test_run_decoder-icy_metadata.Po"; else rm -f "$(DEPDIR)/test_run_decoder-icy_metadata.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/icy_metadata.c' object='test_run_decoder-icy_metadata.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-icy_metadata.o `test -f 'src/icy_metadata.c' || echo '$(srcdir)/'`src/icy_metadata.c
-
- test_run_decoder-icy_metadata.obj: src/icy_metadata.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-icy_metadata.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-icy_metadata.Tpo -c -o test_run_decoder-icy_metadata.obj `if test -f 'src/icy_metadata.c'; then $(CYGPATH_W) 'src/icy_metadata.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_metadata.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-icy_metadata.Tpo $(DEPDIR)/test_run_decoder-icy_metadata.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-icy_metadata.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-icy_metadata.Tpo" -c -o test_run_decoder-icy_metadata.obj `if test -f 'src/icy_metadata.c'; then $(CYGPATH_W) 'src/icy_metadata.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_metadata.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-icy_metadata.Tpo" "$(DEPDIR)/test_run_decoder-icy_metadata.Po"; else rm -f "$(DEPDIR)/test_run_decoder-icy_metadata.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/icy_metadata.c' object='test_run_decoder-icy_metadata.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-icy_metadata.obj `if test -f 'src/icy_metadata.c'; then $(CYGPATH_W) 'src/icy_metadata.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_metadata.c'; fi`
-
- test_run_decoder-lastfm_input_plugin.o: src/input/lastfm_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-lastfm_input_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-lastfm_input_plugin.Tpo -c -o test_run_decoder-lastfm_input_plugin.o `test -f 'src/input/lastfm_input_plugin.c' || echo '$(srcdir)/'`src/input/lastfm_input_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-lastfm_input_plugin.Tpo $(DEPDIR)/test_run_decoder-lastfm_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-lastfm_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-lastfm_input_plugin.Tpo" -c -o test_run_decoder-lastfm_input_plugin.o `test -f 'src/input/lastfm_input_plugin.c' || echo '$(srcdir)/'`src/input/lastfm_input_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-lastfm_input_plugin.Tpo" "$(DEPDIR)/test_run_decoder-lastfm_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-lastfm_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/lastfm_input_plugin.c' object='test_run_decoder-lastfm_input_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-lastfm_input_plugin.o `test -f 'src/input/lastfm_input_plugin.c' || echo '$(srcdir)/'`src/input/lastfm_input_plugin.c
-
- test_run_decoder-lastfm_input_plugin.obj: src/input/lastfm_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-lastfm_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-lastfm_input_plugin.Tpo -c -o test_run_decoder-lastfm_input_plugin.obj `if test -f 'src/input/lastfm_input_plugin.c'; then $(CYGPATH_W) 'src/input/lastfm_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/lastfm_input_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-lastfm_input_plugin.Tpo $(DEPDIR)/test_run_decoder-lastfm_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-lastfm_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-lastfm_input_plugin.Tpo" -c -o test_run_decoder-lastfm_input_plugin.obj `if test -f 'src/input/lastfm_input_plugin.c'; then $(CYGPATH_W) 'src/input/lastfm_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/lastfm_input_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-lastfm_input_plugin.Tpo" "$(DEPDIR)/test_run_decoder-lastfm_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-lastfm_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/lastfm_input_plugin.c' object='test_run_decoder-lastfm_input_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-lastfm_input_plugin.obj `if test -f 'src/input/lastfm_input_plugin.c'; then $(CYGPATH_W) 'src/input/lastfm_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/lastfm_input_plugin.c'; fi`
-
- test_run_decoder-mms_input_plugin.o: src/input/mms_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mms_input_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-mms_input_plugin.Tpo -c -o test_run_decoder-mms_input_plugin.o `test -f 'src/input/mms_input_plugin.c' || echo '$(srcdir)/'`src/input/mms_input_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-mms_input_plugin.Tpo $(DEPDIR)/test_run_decoder-mms_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mms_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-mms_input_plugin.Tpo" -c -o test_run_decoder-mms_input_plugin.o `test -f 'src/input/mms_input_plugin.c' || echo '$(srcdir)/'`src/input/mms_input_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-mms_input_plugin.Tpo" "$(DEPDIR)/test_run_decoder-mms_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-mms_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/mms_input_plugin.c' object='test_run_decoder-mms_input_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-mms_input_plugin.o `test -f 'src/input/mms_input_plugin.c' || echo '$(srcdir)/'`src/input/mms_input_plugin.c
-
- test_run_decoder-mms_input_plugin.obj: src/input/mms_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mms_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-mms_input_plugin.Tpo -c -o test_run_decoder-mms_input_plugin.obj `if test -f 'src/input/mms_input_plugin.c'; then $(CYGPATH_W) 'src/input/mms_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/mms_input_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-mms_input_plugin.Tpo $(DEPDIR)/test_run_decoder-mms_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mms_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-mms_input_plugin.Tpo" -c -o test_run_decoder-mms_input_plugin.obj `if test -f 'src/input/mms_input_plugin.c'; then $(CYGPATH_W) 'src/input/mms_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/mms_input_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-mms_input_plugin.Tpo" "$(DEPDIR)/test_run_decoder-mms_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-mms_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/mms_input_plugin.c' object='test_run_decoder-mms_input_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-mms_input_plugin.obj `if test -f 'src/input/mms_input_plugin.c'; then $(CYGPATH_W) 'src/input/mms_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/mms_input_plugin.c'; fi`
-
- test_run_decoder-tag_ape.o: src/tag_ape.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-tag_ape.o -MD -MP -MF $(DEPDIR)/test_run_decoder-tag_ape.Tpo -c -o test_run_decoder-tag_ape.o `test -f 'src/tag_ape.c' || echo '$(srcdir)/'`src/tag_ape.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-tag_ape.Tpo $(DEPDIR)/test_run_decoder-tag_ape.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-tag_ape.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-tag_ape.Tpo" -c -o test_run_decoder-tag_ape.o `test -f 'src/tag_ape.c' || echo '$(srcdir)/'`src/tag_ape.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-tag_ape.Tpo" "$(DEPDIR)/test_run_decoder-tag_ape.Po"; else rm -f "$(DEPDIR)/test_run_decoder-tag_ape.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_ape.c' object='test_run_decoder-tag_ape.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-tag_ape.o `test -f 'src/tag_ape.c' || echo '$(srcdir)/'`src/tag_ape.c
-
- test_run_decoder-tag_ape.obj: src/tag_ape.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-tag_ape.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-tag_ape.Tpo -c -o test_run_decoder-tag_ape.obj `if test -f 'src/tag_ape.c'; then $(CYGPATH_W) 'src/tag_ape.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_ape.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-tag_ape.Tpo $(DEPDIR)/test_run_decoder-tag_ape.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-tag_ape.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-tag_ape.Tpo" -c -o test_run_decoder-tag_ape.obj `if test -f 'src/tag_ape.c'; then $(CYGPATH_W) 'src/tag_ape.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_ape.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-tag_ape.Tpo" "$(DEPDIR)/test_run_decoder-tag_ape.Po"; else rm -f "$(DEPDIR)/test_run_decoder-tag_ape.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_ape.c' object='test_run_decoder-tag_ape.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-tag_ape.obj `if test -f 'src/tag_ape.c'; then $(CYGPATH_W) 'src/tag_ape.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_ape.c'; fi`
-
- test_run_decoder-tag_id3.o: src/tag_id3.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-tag_id3.o -MD -MP -MF $(DEPDIR)/test_run_decoder-tag_id3.Tpo -c -o test_run_decoder-tag_id3.o `test -f 'src/tag_id3.c' || echo '$(srcdir)/'`src/tag_id3.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-tag_id3.Tpo $(DEPDIR)/test_run_decoder-tag_id3.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-tag_id3.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-tag_id3.Tpo" -c -o test_run_decoder-tag_id3.o `test -f 'src/tag_id3.c' || echo '$(srcdir)/'`src/tag_id3.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-tag_id3.Tpo" "$(DEPDIR)/test_run_decoder-tag_id3.Po"; else rm -f "$(DEPDIR)/test_run_decoder-tag_id3.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_id3.c' object='test_run_decoder-tag_id3.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-tag_id3.o `test -f 'src/tag_id3.c' || echo '$(srcdir)/'`src/tag_id3.c
-
- test_run_decoder-tag_id3.obj: src/tag_id3.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-tag_id3.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-tag_id3.Tpo -c -o test_run_decoder-tag_id3.obj `if test -f 'src/tag_id3.c'; then $(CYGPATH_W) 'src/tag_id3.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_id3.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-tag_id3.Tpo $(DEPDIR)/test_run_decoder-tag_id3.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-tag_id3.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-tag_id3.Tpo" -c -o test_run_decoder-tag_id3.obj `if test -f 'src/tag_id3.c'; then $(CYGPATH_W) 'src/tag_id3.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_id3.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-tag_id3.Tpo" "$(DEPDIR)/test_run_decoder-tag_id3.Po"; else rm -f "$(DEPDIR)/test_run_decoder-tag_id3.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_id3.c' object='test_run_decoder-tag_id3.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-tag_id3.obj `if test -f 'src/tag_id3.c'; then $(CYGPATH_W) 'src/tag_id3.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_id3.c'; fi`
-
- test_run_decoder-riff.o: src/riff.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-riff.o -MD -MP -MF $(DEPDIR)/test_run_decoder-riff.Tpo -c -o test_run_decoder-riff.o `test -f 'src/riff.c' || echo '$(srcdir)/'`src/riff.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-riff.Tpo $(DEPDIR)/test_run_decoder-riff.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-riff.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-riff.Tpo" -c -o test_run_decoder-riff.o `test -f 'src/riff.c' || echo '$(srcdir)/'`src/riff.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-riff.Tpo" "$(DEPDIR)/test_run_decoder-riff.Po"; else rm -f "$(DEPDIR)/test_run_decoder-riff.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/riff.c' object='test_run_decoder-riff.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-riff.o `test -f 'src/riff.c' || echo '$(srcdir)/'`src/riff.c
-
- test_run_decoder-riff.obj: src/riff.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-riff.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-riff.Tpo -c -o test_run_decoder-riff.obj `if test -f 'src/riff.c'; then $(CYGPATH_W) 'src/riff.c'; else $(CYGPATH_W) '$(srcdir)/src/riff.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-riff.Tpo $(DEPDIR)/test_run_decoder-riff.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-riff.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-riff.Tpo" -c -o test_run_decoder-riff.obj `if test -f 'src/riff.c'; then $(CYGPATH_W) 'src/riff.c'; else $(CYGPATH_W) '$(srcdir)/src/riff.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-riff.Tpo" "$(DEPDIR)/test_run_decoder-riff.Po"; else rm -f "$(DEPDIR)/test_run_decoder-riff.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/riff.c' object='test_run_decoder-riff.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-riff.obj `if test -f 'src/riff.c'; then $(CYGPATH_W) 'src/riff.c'; else $(CYGPATH_W) '$(srcdir)/src/riff.c'; fi`
-
- test_run_decoder-aiff.o: src/aiff.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-aiff.o -MD -MP -MF $(DEPDIR)/test_run_decoder-aiff.Tpo -c -o test_run_decoder-aiff.o `test -f 'src/aiff.c' || echo '$(srcdir)/'`src/aiff.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-aiff.Tpo $(DEPDIR)/test_run_decoder-aiff.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-aiff.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-aiff.Tpo" -c -o test_run_decoder-aiff.o `test -f 'src/aiff.c' || echo '$(srcdir)/'`src/aiff.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-aiff.Tpo" "$(DEPDIR)/test_run_decoder-aiff.Po"; else rm -f "$(DEPDIR)/test_run_decoder-aiff.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/aiff.c' object='test_run_decoder-aiff.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-aiff.o `test -f 'src/aiff.c' || echo '$(srcdir)/'`src/aiff.c
-
- test_run_decoder-aiff.obj: src/aiff.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-aiff.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-aiff.Tpo -c -o test_run_decoder-aiff.obj `if test -f 'src/aiff.c'; then $(CYGPATH_W) 'src/aiff.c'; else $(CYGPATH_W) '$(srcdir)/src/aiff.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-aiff.Tpo $(DEPDIR)/test_run_decoder-aiff.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-aiff.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-aiff.Tpo" -c -o test_run_decoder-aiff.obj `if test -f 'src/aiff.c'; then $(CYGPATH_W) 'src/aiff.c'; else $(CYGPATH_W) '$(srcdir)/src/aiff.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-aiff.Tpo" "$(DEPDIR)/test_run_decoder-aiff.Po"; else rm -f "$(DEPDIR)/test_run_decoder-aiff.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/aiff.c' object='test_run_decoder-aiff.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-aiff.obj `if test -f 'src/aiff.c'; then $(CYGPATH_W) 'src/aiff.c'; else $(CYGPATH_W) '$(srcdir)/src/aiff.c'; fi`
-
- test_run_decoder-decoder_buffer.o: src/decoder_buffer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-decoder_buffer.o -MD -MP -MF $(DEPDIR)/test_run_decoder-decoder_buffer.Tpo -c -o test_run_decoder-decoder_buffer.o `test -f 'src/decoder_buffer.c' || echo '$(srcdir)/'`src/decoder_buffer.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-decoder_buffer.Tpo $(DEPDIR)/test_run_decoder-decoder_buffer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-decoder_buffer.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-decoder_buffer.Tpo" -c -o test_run_decoder-decoder_buffer.o `test -f 'src/decoder_buffer.c' || echo '$(srcdir)/'`src/decoder_buffer.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-decoder_buffer.Tpo" "$(DEPDIR)/test_run_decoder-decoder_buffer.Po"; else rm -f "$(DEPDIR)/test_run_decoder-decoder_buffer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_buffer.c' object='test_run_decoder-decoder_buffer.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-decoder_buffer.o `test -f 'src/decoder_buffer.c' || echo '$(srcdir)/'`src/decoder_buffer.c
-
- test_run_decoder-decoder_buffer.obj: src/decoder_buffer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-decoder_buffer.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-decoder_buffer.Tpo -c -o test_run_decoder-decoder_buffer.obj `if test -f 'src/decoder_buffer.c'; then $(CYGPATH_W) 'src/decoder_buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_buffer.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-decoder_buffer.Tpo $(DEPDIR)/test_run_decoder-decoder_buffer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-decoder_buffer.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-decoder_buffer.Tpo" -c -o test_run_decoder-decoder_buffer.obj `if test -f 'src/decoder_buffer.c'; then $(CYGPATH_W) 'src/decoder_buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_buffer.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-decoder_buffer.Tpo" "$(DEPDIR)/test_run_decoder-decoder_buffer.Po"; else rm -f "$(DEPDIR)/test_run_decoder-decoder_buffer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_buffer.c' object='test_run_decoder-decoder_buffer.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-decoder_buffer.obj `if test -f 'src/decoder_buffer.c'; then $(CYGPATH_W) 'src/decoder_buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_buffer.c'; fi`
-
- test_run_decoder-decoder_list.o: src/decoder_list.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-decoder_list.o -MD -MP -MF $(DEPDIR)/test_run_decoder-decoder_list.Tpo -c -o test_run_decoder-decoder_list.o `test -f 'src/decoder_list.c' || echo '$(srcdir)/'`src/decoder_list.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-decoder_list.Tpo $(DEPDIR)/test_run_decoder-decoder_list.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-decoder_list.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-decoder_list.Tpo" -c -o test_run_decoder-decoder_list.o `test -f 'src/decoder_list.c' || echo '$(srcdir)/'`src/decoder_list.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-decoder_list.Tpo" "$(DEPDIR)/test_run_decoder-decoder_list.Po"; else rm -f "$(DEPDIR)/test_run_decoder-decoder_list.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_list.c' object='test_run_decoder-decoder_list.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-decoder_list.o `test -f 'src/decoder_list.c' || echo '$(srcdir)/'`src/decoder_list.c
-
- test_run_decoder-decoder_list.obj: src/decoder_list.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-decoder_list.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-decoder_list.Tpo -c -o test_run_decoder-decoder_list.obj `if test -f 'src/decoder_list.c'; then $(CYGPATH_W) 'src/decoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_list.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-decoder_list.Tpo $(DEPDIR)/test_run_decoder-decoder_list.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-decoder_list.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-decoder_list.Tpo" -c -o test_run_decoder-decoder_list.obj `if test -f 'src/decoder_list.c'; then $(CYGPATH_W) 'src/decoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_list.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-decoder_list.Tpo" "$(DEPDIR)/test_run_decoder-decoder_list.Po"; else rm -f "$(DEPDIR)/test_run_decoder-decoder_list.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder_list.c' object='test_run_decoder-decoder_list.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-decoder_list.obj `if test -f 'src/decoder_list.c'; then $(CYGPATH_W) 'src/decoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder_list.c'; fi`
-
- test_run_decoder-mad_plugin.o: src/decoder/mad_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mad_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-mad_plugin.Tpo -c -o test_run_decoder-mad_plugin.o `test -f 'src/decoder/mad_plugin.c' || echo '$(srcdir)/'`src/decoder/mad_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-mad_plugin.Tpo $(DEPDIR)/test_run_decoder-mad_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mad_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-mad_plugin.Tpo" -c -o test_run_decoder-mad_plugin.o `test -f 'src/decoder/mad_plugin.c' || echo '$(srcdir)/'`src/decoder/mad_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-mad_plugin.Tpo" "$(DEPDIR)/test_run_decoder-mad_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-mad_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mad_plugin.c' object='test_run_decoder-mad_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-mad_plugin.o `test -f 'src/decoder/mad_plugin.c' || echo '$(srcdir)/'`src/decoder/mad_plugin.c
-
- test_run_decoder-mad_plugin.obj: src/decoder/mad_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mad_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-mad_plugin.Tpo -c -o test_run_decoder-mad_plugin.obj `if test -f 'src/decoder/mad_plugin.c'; then $(CYGPATH_W) 'src/decoder/mad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mad_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-mad_plugin.Tpo $(DEPDIR)/test_run_decoder-mad_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mad_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-mad_plugin.Tpo" -c -o test_run_decoder-mad_plugin.obj `if test -f 'src/decoder/mad_plugin.c'; then $(CYGPATH_W) 'src/decoder/mad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mad_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-mad_plugin.Tpo" "$(DEPDIR)/test_run_decoder-mad_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-mad_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mad_plugin.c' object='test_run_decoder-mad_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-mad_plugin.obj `if test -f 'src/decoder/mad_plugin.c'; then $(CYGPATH_W) 'src/decoder/mad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mad_plugin.c'; fi`
-
- test_run_decoder-mpcdec_plugin.o: src/decoder/mpcdec_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mpcdec_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-mpcdec_plugin.Tpo -c -o test_run_decoder-mpcdec_plugin.o `test -f 'src/decoder/mpcdec_plugin.c' || echo '$(srcdir)/'`src/decoder/mpcdec_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-mpcdec_plugin.Tpo $(DEPDIR)/test_run_decoder-mpcdec_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mpcdec_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-mpcdec_plugin.Tpo" -c -o test_run_decoder-mpcdec_plugin.o `test -f 'src/decoder/mpcdec_plugin.c' || echo '$(srcdir)/'`src/decoder/mpcdec_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-mpcdec_plugin.Tpo" "$(DEPDIR)/test_run_decoder-mpcdec_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-mpcdec_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mpcdec_plugin.c' object='test_run_decoder-mpcdec_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-mpcdec_plugin.o `test -f 'src/decoder/mpcdec_plugin.c' || echo '$(srcdir)/'`src/decoder/mpcdec_plugin.c
-
- test_run_decoder-mpcdec_plugin.obj: src/decoder/mpcdec_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mpcdec_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-mpcdec_plugin.Tpo -c -o test_run_decoder-mpcdec_plugin.obj `if test -f 'src/decoder/mpcdec_plugin.c'; then $(CYGPATH_W) 'src/decoder/mpcdec_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mpcdec_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-mpcdec_plugin.Tpo $(DEPDIR)/test_run_decoder-mpcdec_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mpcdec_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-mpcdec_plugin.Tpo" -c -o test_run_decoder-mpcdec_plugin.obj `if test -f 'src/decoder/mpcdec_plugin.c'; then $(CYGPATH_W) 'src/decoder/mpcdec_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mpcdec_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-mpcdec_plugin.Tpo" "$(DEPDIR)/test_run_decoder-mpcdec_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-mpcdec_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mpcdec_plugin.c' object='test_run_decoder-mpcdec_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-mpcdec_plugin.obj `if test -f 'src/decoder/mpcdec_plugin.c'; then $(CYGPATH_W) 'src/decoder/mpcdec_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mpcdec_plugin.c'; fi`
-
- test_run_decoder-wavpack_plugin.o: src/decoder/wavpack_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-wavpack_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-wavpack_plugin.Tpo -c -o test_run_decoder-wavpack_plugin.o `test -f 'src/decoder/wavpack_plugin.c' || echo '$(srcdir)/'`src/decoder/wavpack_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-wavpack_plugin.Tpo $(DEPDIR)/test_run_decoder-wavpack_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-wavpack_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-wavpack_plugin.Tpo" -c -o test_run_decoder-wavpack_plugin.o `test -f 'src/decoder/wavpack_plugin.c' || echo '$(srcdir)/'`src/decoder/wavpack_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-wavpack_plugin.Tpo" "$(DEPDIR)/test_run_decoder-wavpack_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-wavpack_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/wavpack_plugin.c' object='test_run_decoder-wavpack_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-wavpack_plugin.o `test -f 'src/decoder/wavpack_plugin.c' || echo '$(srcdir)/'`src/decoder/wavpack_plugin.c
-
- test_run_decoder-wavpack_plugin.obj: src/decoder/wavpack_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-wavpack_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-wavpack_plugin.Tpo -c -o test_run_decoder-wavpack_plugin.obj `if test -f 'src/decoder/wavpack_plugin.c'; then $(CYGPATH_W) 'src/decoder/wavpack_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wavpack_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-wavpack_plugin.Tpo $(DEPDIR)/test_run_decoder-wavpack_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-wavpack_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-wavpack_plugin.Tpo" -c -o test_run_decoder-wavpack_plugin.obj `if test -f 'src/decoder/wavpack_plugin.c'; then $(CYGPATH_W) 'src/decoder/wavpack_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wavpack_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-wavpack_plugin.Tpo" "$(DEPDIR)/test_run_decoder-wavpack_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-wavpack_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/wavpack_plugin.c' object='test_run_decoder-wavpack_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-wavpack_plugin.obj `if test -f 'src/decoder/wavpack_plugin.c'; then $(CYGPATH_W) 'src/decoder/wavpack_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wavpack_plugin.c'; fi`
-
- test_run_decoder-faad_plugin.o: src/decoder/faad_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-faad_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-faad_plugin.Tpo -c -o test_run_decoder-faad_plugin.o `test -f 'src/decoder/faad_plugin.c' || echo '$(srcdir)/'`src/decoder/faad_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-faad_plugin.Tpo $(DEPDIR)/test_run_decoder-faad_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-faad_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-faad_plugin.Tpo" -c -o test_run_decoder-faad_plugin.o `test -f 'src/decoder/faad_plugin.c' || echo '$(srcdir)/'`src/decoder/faad_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-faad_plugin.Tpo" "$(DEPDIR)/test_run_decoder-faad_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-faad_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/faad_plugin.c' object='test_run_decoder-faad_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-faad_plugin.o `test -f 'src/decoder/faad_plugin.c' || echo '$(srcdir)/'`src/decoder/faad_plugin.c
-
- test_run_decoder-faad_plugin.obj: src/decoder/faad_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-faad_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-faad_plugin.Tpo -c -o test_run_decoder-faad_plugin.obj `if test -f 'src/decoder/faad_plugin.c'; then $(CYGPATH_W) 'src/decoder/faad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/faad_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-faad_plugin.Tpo $(DEPDIR)/test_run_decoder-faad_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-faad_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-faad_plugin.Tpo" -c -o test_run_decoder-faad_plugin.obj `if test -f 'src/decoder/faad_plugin.c'; then $(CYGPATH_W) 'src/decoder/faad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/faad_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-faad_plugin.Tpo" "$(DEPDIR)/test_run_decoder-faad_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-faad_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/faad_plugin.c' object='test_run_decoder-faad_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-faad_plugin.obj `if test -f 'src/decoder/faad_plugin.c'; then $(CYGPATH_W) 'src/decoder/faad_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/faad_plugin.c'; fi`
-
- test_run_decoder-mp4ff_plugin.o: src/decoder/mp4ff_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mp4ff_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-mp4ff_plugin.Tpo -c -o test_run_decoder-mp4ff_plugin.o `test -f 'src/decoder/mp4ff_plugin.c' || echo '$(srcdir)/'`src/decoder/mp4ff_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-mp4ff_plugin.Tpo $(DEPDIR)/test_run_decoder-mp4ff_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mp4ff_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-mp4ff_plugin.Tpo" -c -o test_run_decoder-mp4ff_plugin.o `test -f 'src/decoder/mp4ff_plugin.c' || echo '$(srcdir)/'`src/decoder/mp4ff_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-mp4ff_plugin.Tpo" "$(DEPDIR)/test_run_decoder-mp4ff_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-mp4ff_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mp4ff_plugin.c' object='test_run_decoder-mp4ff_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-mp4ff_plugin.o `test -f 'src/decoder/mp4ff_plugin.c' || echo '$(srcdir)/'`src/decoder/mp4ff_plugin.c
-
- test_run_decoder-mp4ff_plugin.obj: src/decoder/mp4ff_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mp4ff_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-mp4ff_plugin.Tpo -c -o test_run_decoder-mp4ff_plugin.obj `if test -f 'src/decoder/mp4ff_plugin.c'; then $(CYGPATH_W) 'src/decoder/mp4ff_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mp4ff_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-mp4ff_plugin.Tpo $(DEPDIR)/test_run_decoder-mp4ff_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mp4ff_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-mp4ff_plugin.Tpo" -c -o test_run_decoder-mp4ff_plugin.obj `if test -f 'src/decoder/mp4ff_plugin.c'; then $(CYGPATH_W) 'src/decoder/mp4ff_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mp4ff_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-mp4ff_plugin.Tpo" "$(DEPDIR)/test_run_decoder-mp4ff_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-mp4ff_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mp4ff_plugin.c' object='test_run_decoder-mp4ff_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-mp4ff_plugin.obj `if test -f 'src/decoder/mp4ff_plugin.c'; then $(CYGPATH_W) 'src/decoder/mp4ff_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mp4ff_plugin.c'; fi`
-
- test_run_decoder-_ogg_common.o: src/decoder/_ogg_common.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-_ogg_common.o -MD -MP -MF $(DEPDIR)/test_run_decoder-_ogg_common.Tpo -c -o test_run_decoder-_ogg_common.o `test -f 'src/decoder/_ogg_common.c' || echo '$(srcdir)/'`src/decoder/_ogg_common.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-_ogg_common.Tpo $(DEPDIR)/test_run_decoder-_ogg_common.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-_ogg_common.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-_ogg_common.Tpo" -c -o test_run_decoder-_ogg_common.o `test -f 'src/decoder/_ogg_common.c' || echo '$(srcdir)/'`src/decoder/_ogg_common.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-_ogg_common.Tpo" "$(DEPDIR)/test_run_decoder-_ogg_common.Po"; else rm -f "$(DEPDIR)/test_run_decoder-_ogg_common.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/_ogg_common.c' object='test_run_decoder-_ogg_common.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-_ogg_common.o `test -f 'src/decoder/_ogg_common.c' || echo '$(srcdir)/'`src/decoder/_ogg_common.c
-
- test_run_decoder-_ogg_common.obj: src/decoder/_ogg_common.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-_ogg_common.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-_ogg_common.Tpo -c -o test_run_decoder-_ogg_common.obj `if test -f 'src/decoder/_ogg_common.c'; then $(CYGPATH_W) 'src/decoder/_ogg_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_ogg_common.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-_ogg_common.Tpo $(DEPDIR)/test_run_decoder-_ogg_common.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-_ogg_common.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-_ogg_common.Tpo" -c -o test_run_decoder-_ogg_common.obj `if test -f 'src/decoder/_ogg_common.c'; then $(CYGPATH_W) 'src/decoder/_ogg_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_ogg_common.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-_ogg_common.Tpo" "$(DEPDIR)/test_run_decoder-_ogg_common.Po"; else rm -f "$(DEPDIR)/test_run_decoder-_ogg_common.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/_ogg_common.c' object='test_run_decoder-_ogg_common.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-_ogg_common.obj `if test -f 'src/decoder/_ogg_common.c'; then $(CYGPATH_W) 'src/decoder/_ogg_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_ogg_common.c'; fi`
-
- test_run_decoder-_flac_common.o: src/decoder/_flac_common.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-_flac_common.o -MD -MP -MF $(DEPDIR)/test_run_decoder-_flac_common.Tpo -c -o test_run_decoder-_flac_common.o `test -f 'src/decoder/_flac_common.c' || echo '$(srcdir)/'`src/decoder/_flac_common.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-_flac_common.Tpo $(DEPDIR)/test_run_decoder-_flac_common.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-_flac_common.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-_flac_common.Tpo" -c -o test_run_decoder-_flac_common.o `test -f 'src/decoder/_flac_common.c' || echo '$(srcdir)/'`src/decoder/_flac_common.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-_flac_common.Tpo" "$(DEPDIR)/test_run_decoder-_flac_common.Po"; else rm -f "$(DEPDIR)/test_run_decoder-_flac_common.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/_flac_common.c' object='test_run_decoder-_flac_common.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-_flac_common.o `test -f 'src/decoder/_flac_common.c' || echo '$(srcdir)/'`src/decoder/_flac_common.c
-
- test_run_decoder-_flac_common.obj: src/decoder/_flac_common.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-_flac_common.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-_flac_common.Tpo -c -o test_run_decoder-_flac_common.obj `if test -f 'src/decoder/_flac_common.c'; then $(CYGPATH_W) 'src/decoder/_flac_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_flac_common.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-_flac_common.Tpo $(DEPDIR)/test_run_decoder-_flac_common.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-_flac_common.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-_flac_common.Tpo" -c -o test_run_decoder-_flac_common.obj `if test -f 'src/decoder/_flac_common.c'; then $(CYGPATH_W) 'src/decoder/_flac_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_flac_common.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-_flac_common.Tpo" "$(DEPDIR)/test_run_decoder-_flac_common.Po"; else rm -f "$(DEPDIR)/test_run_decoder-_flac_common.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/_flac_common.c' object='test_run_decoder-_flac_common.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-_flac_common.obj `if test -f 'src/decoder/_flac_common.c'; then $(CYGPATH_W) 'src/decoder/_flac_common.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/_flac_common.c'; fi`
-
- test_run_decoder-vorbis_plugin.o: src/decoder/vorbis_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-vorbis_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-vorbis_plugin.Tpo -c -o test_run_decoder-vorbis_plugin.o `test -f 'src/decoder/vorbis_plugin.c' || echo '$(srcdir)/'`src/decoder/vorbis_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-vorbis_plugin.Tpo $(DEPDIR)/test_run_decoder-vorbis_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-vorbis_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-vorbis_plugin.Tpo" -c -o test_run_decoder-vorbis_plugin.o `test -f 'src/decoder/vorbis_plugin.c' || echo '$(srcdir)/'`src/decoder/vorbis_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-vorbis_plugin.Tpo" "$(DEPDIR)/test_run_decoder-vorbis_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-vorbis_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/vorbis_plugin.c' object='test_run_decoder-vorbis_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-vorbis_plugin.o `test -f 'src/decoder/vorbis_plugin.c' || echo '$(srcdir)/'`src/decoder/vorbis_plugin.c
-
- test_run_decoder-vorbis_plugin.obj: src/decoder/vorbis_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-vorbis_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-vorbis_plugin.Tpo -c -o test_run_decoder-vorbis_plugin.obj `if test -f 'src/decoder/vorbis_plugin.c'; then $(CYGPATH_W) 'src/decoder/vorbis_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/vorbis_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-vorbis_plugin.Tpo $(DEPDIR)/test_run_decoder-vorbis_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-vorbis_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-vorbis_plugin.Tpo" -c -o test_run_decoder-vorbis_plugin.obj `if test -f 'src/decoder/vorbis_plugin.c'; then $(CYGPATH_W) 'src/decoder/vorbis_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/vorbis_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-vorbis_plugin.Tpo" "$(DEPDIR)/test_run_decoder-vorbis_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-vorbis_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/vorbis_plugin.c' object='test_run_decoder-vorbis_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-vorbis_plugin.obj `if test -f 'src/decoder/vorbis_plugin.c'; then $(CYGPATH_W) 'src/decoder/vorbis_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/vorbis_plugin.c'; fi`
-
- test_run_decoder-flac_plugin.o: src/decoder/flac_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-flac_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-flac_plugin.Tpo -c -o test_run_decoder-flac_plugin.o `test -f 'src/decoder/flac_plugin.c' || echo '$(srcdir)/'`src/decoder/flac_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-flac_plugin.Tpo $(DEPDIR)/test_run_decoder-flac_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-flac_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-flac_plugin.Tpo" -c -o test_run_decoder-flac_plugin.o `test -f 'src/decoder/flac_plugin.c' || echo '$(srcdir)/'`src/decoder/flac_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-flac_plugin.Tpo" "$(DEPDIR)/test_run_decoder-flac_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-flac_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/flac_plugin.c' object='test_run_decoder-flac_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-flac_plugin.o `test -f 'src/decoder/flac_plugin.c' || echo '$(srcdir)/'`src/decoder/flac_plugin.c
-
- test_run_decoder-flac_plugin.obj: src/decoder/flac_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-flac_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-flac_plugin.Tpo -c -o test_run_decoder-flac_plugin.obj `if test -f 'src/decoder/flac_plugin.c'; then $(CYGPATH_W) 'src/decoder/flac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/flac_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-flac_plugin.Tpo $(DEPDIR)/test_run_decoder-flac_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-flac_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-flac_plugin.Tpo" -c -o test_run_decoder-flac_plugin.obj `if test -f 'src/decoder/flac_plugin.c'; then $(CYGPATH_W) 'src/decoder/flac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/flac_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-flac_plugin.Tpo" "$(DEPDIR)/test_run_decoder-flac_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-flac_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/flac_plugin.c' object='test_run_decoder-flac_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-flac_plugin.obj `if test -f 'src/decoder/flac_plugin.c'; then $(CYGPATH_W) 'src/decoder/flac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/flac_plugin.c'; fi`
-
- test_run_decoder-oggflac_plugin.o: src/decoder/oggflac_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-oggflac_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-oggflac_plugin.Tpo -c -o test_run_decoder-oggflac_plugin.o `test -f 'src/decoder/oggflac_plugin.c' || echo '$(srcdir)/'`src/decoder/oggflac_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-oggflac_plugin.Tpo $(DEPDIR)/test_run_decoder-oggflac_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-oggflac_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-oggflac_plugin.Tpo" -c -o test_run_decoder-oggflac_plugin.o `test -f 'src/decoder/oggflac_plugin.c' || echo '$(srcdir)/'`src/decoder/oggflac_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-oggflac_plugin.Tpo" "$(DEPDIR)/test_run_decoder-oggflac_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-oggflac_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/oggflac_plugin.c' object='test_run_decoder-oggflac_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-oggflac_plugin.o `test -f 'src/decoder/oggflac_plugin.c' || echo '$(srcdir)/'`src/decoder/oggflac_plugin.c
-
- test_run_decoder-oggflac_plugin.obj: src/decoder/oggflac_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-oggflac_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-oggflac_plugin.Tpo -c -o test_run_decoder-oggflac_plugin.obj `if test -f 'src/decoder/oggflac_plugin.c'; then $(CYGPATH_W) 'src/decoder/oggflac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/oggflac_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-oggflac_plugin.Tpo $(DEPDIR)/test_run_decoder-oggflac_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-oggflac_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-oggflac_plugin.Tpo" -c -o test_run_decoder-oggflac_plugin.obj `if test -f 'src/decoder/oggflac_plugin.c'; then $(CYGPATH_W) 'src/decoder/oggflac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/oggflac_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-oggflac_plugin.Tpo" "$(DEPDIR)/test_run_decoder-oggflac_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-oggflac_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/oggflac_plugin.c' object='test_run_decoder-oggflac_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-oggflac_plugin.obj `if test -f 'src/decoder/oggflac_plugin.c'; then $(CYGPATH_W) 'src/decoder/oggflac_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/oggflac_plugin.c'; fi`
-
- test_run_decoder-audiofile_plugin.o: src/decoder/audiofile_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-audiofile_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-audiofile_plugin.Tpo -c -o test_run_decoder-audiofile_plugin.o `test -f 'src/decoder/audiofile_plugin.c' || echo '$(srcdir)/'`src/decoder/audiofile_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-audiofile_plugin.Tpo $(DEPDIR)/test_run_decoder-audiofile_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-audiofile_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-audiofile_plugin.Tpo" -c -o test_run_decoder-audiofile_plugin.o `test -f 'src/decoder/audiofile_plugin.c' || echo '$(srcdir)/'`src/decoder/audiofile_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-audiofile_plugin.Tpo" "$(DEPDIR)/test_run_decoder-audiofile_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-audiofile_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/audiofile_plugin.c' object='test_run_decoder-audiofile_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-audiofile_plugin.o `test -f 'src/decoder/audiofile_plugin.c' || echo '$(srcdir)/'`src/decoder/audiofile_plugin.c
-
- test_run_decoder-audiofile_plugin.obj: src/decoder/audiofile_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-audiofile_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-audiofile_plugin.Tpo -c -o test_run_decoder-audiofile_plugin.obj `if test -f 'src/decoder/audiofile_plugin.c'; then $(CYGPATH_W) 'src/decoder/audiofile_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/audiofile_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-audiofile_plugin.Tpo $(DEPDIR)/test_run_decoder-audiofile_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-audiofile_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-audiofile_plugin.Tpo" -c -o test_run_decoder-audiofile_plugin.obj `if test -f 'src/decoder/audiofile_plugin.c'; then $(CYGPATH_W) 'src/decoder/audiofile_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/audiofile_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-audiofile_plugin.Tpo" "$(DEPDIR)/test_run_decoder-audiofile_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-audiofile_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/audiofile_plugin.c' object='test_run_decoder-audiofile_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-audiofile_plugin.obj `if test -f 'src/decoder/audiofile_plugin.c'; then $(CYGPATH_W) 'src/decoder/audiofile_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/audiofile_plugin.c'; fi`
-
- test_run_decoder-mikmod_plugin.o: src/decoder/mikmod_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mikmod_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-mikmod_plugin.Tpo -c -o test_run_decoder-mikmod_plugin.o `test -f 'src/decoder/mikmod_plugin.c' || echo '$(srcdir)/'`src/decoder/mikmod_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-mikmod_plugin.Tpo $(DEPDIR)/test_run_decoder-mikmod_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mikmod_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-mikmod_plugin.Tpo" -c -o test_run_decoder-mikmod_plugin.o `test -f 'src/decoder/mikmod_plugin.c' || echo '$(srcdir)/'`src/decoder/mikmod_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-mikmod_plugin.Tpo" "$(DEPDIR)/test_run_decoder-mikmod_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-mikmod_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mikmod_plugin.c' object='test_run_decoder-mikmod_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-mikmod_plugin.o `test -f 'src/decoder/mikmod_plugin.c' || echo '$(srcdir)/'`src/decoder/mikmod_plugin.c
-
- test_run_decoder-mikmod_plugin.obj: src/decoder/mikmod_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mikmod_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-mikmod_plugin.Tpo -c -o test_run_decoder-mikmod_plugin.obj `if test -f 'src/decoder/mikmod_plugin.c'; then $(CYGPATH_W) 'src/decoder/mikmod_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mikmod_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-mikmod_plugin.Tpo $(DEPDIR)/test_run_decoder-mikmod_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-mikmod_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-mikmod_plugin.Tpo" -c -o test_run_decoder-mikmod_plugin.obj `if test -f 'src/decoder/mikmod_plugin.c'; then $(CYGPATH_W) 'src/decoder/mikmod_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mikmod_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-mikmod_plugin.Tpo" "$(DEPDIR)/test_run_decoder-mikmod_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-mikmod_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/mikmod_plugin.c' object='test_run_decoder-mikmod_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-mikmod_plugin.obj `if test -f 'src/decoder/mikmod_plugin.c'; then $(CYGPATH_W) 'src/decoder/mikmod_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/mikmod_plugin.c'; fi`
-
- test_run_decoder-modplug_plugin.o: src/decoder/modplug_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-modplug_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-modplug_plugin.Tpo -c -o test_run_decoder-modplug_plugin.o `test -f 'src/decoder/modplug_plugin.c' || echo '$(srcdir)/'`src/decoder/modplug_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-modplug_plugin.Tpo $(DEPDIR)/test_run_decoder-modplug_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-modplug_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-modplug_plugin.Tpo" -c -o test_run_decoder-modplug_plugin.o `test -f 'src/decoder/modplug_plugin.c' || echo '$(srcdir)/'`src/decoder/modplug_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-modplug_plugin.Tpo" "$(DEPDIR)/test_run_decoder-modplug_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-modplug_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/modplug_plugin.c' object='test_run_decoder-modplug_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-modplug_plugin.o `test -f 'src/decoder/modplug_plugin.c' || echo '$(srcdir)/'`src/decoder/modplug_plugin.c
-
- test_run_decoder-modplug_plugin.obj: src/decoder/modplug_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-modplug_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-modplug_plugin.Tpo -c -o test_run_decoder-modplug_plugin.obj `if test -f 'src/decoder/modplug_plugin.c'; then $(CYGPATH_W) 'src/decoder/modplug_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/modplug_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-modplug_plugin.Tpo $(DEPDIR)/test_run_decoder-modplug_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-modplug_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-modplug_plugin.Tpo" -c -o test_run_decoder-modplug_plugin.obj `if test -f 'src/decoder/modplug_plugin.c'; then $(CYGPATH_W) 'src/decoder/modplug_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/modplug_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-modplug_plugin.Tpo" "$(DEPDIR)/test_run_decoder-modplug_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-modplug_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/modplug_plugin.c' object='test_run_decoder-modplug_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-modplug_plugin.obj `if test -f 'src/decoder/modplug_plugin.c'; then $(CYGPATH_W) 'src/decoder/modplug_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/modplug_plugin.c'; fi`
-
- test_run_decoder-fluidsynth_plugin.o: src/decoder/fluidsynth_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-fluidsynth_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-fluidsynth_plugin.Tpo -c -o test_run_decoder-fluidsynth_plugin.o `test -f 'src/decoder/fluidsynth_plugin.c' || echo '$(srcdir)/'`src/decoder/fluidsynth_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-fluidsynth_plugin.Tpo $(DEPDIR)/test_run_decoder-fluidsynth_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-fluidsynth_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-fluidsynth_plugin.Tpo" -c -o test_run_decoder-fluidsynth_plugin.o `test -f 'src/decoder/fluidsynth_plugin.c' || echo '$(srcdir)/'`src/decoder/fluidsynth_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-fluidsynth_plugin.Tpo" "$(DEPDIR)/test_run_decoder-fluidsynth_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-fluidsynth_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/fluidsynth_plugin.c' object='test_run_decoder-fluidsynth_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-fluidsynth_plugin.o `test -f 'src/decoder/fluidsynth_plugin.c' || echo '$(srcdir)/'`src/decoder/fluidsynth_plugin.c
-
- test_run_decoder-fluidsynth_plugin.obj: src/decoder/fluidsynth_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-fluidsynth_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-fluidsynth_plugin.Tpo -c -o test_run_decoder-fluidsynth_plugin.obj `if test -f 'src/decoder/fluidsynth_plugin.c'; then $(CYGPATH_W) 'src/decoder/fluidsynth_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/fluidsynth_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-fluidsynth_plugin.Tpo $(DEPDIR)/test_run_decoder-fluidsynth_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-fluidsynth_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-fluidsynth_plugin.Tpo" -c -o test_run_decoder-fluidsynth_plugin.obj `if test -f 'src/decoder/fluidsynth_plugin.c'; then $(CYGPATH_W) 'src/decoder/fluidsynth_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/fluidsynth_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-fluidsynth_plugin.Tpo" "$(DEPDIR)/test_run_decoder-fluidsynth_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-fluidsynth_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/fluidsynth_plugin.c' object='test_run_decoder-fluidsynth_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-fluidsynth_plugin.obj `if test -f 'src/decoder/fluidsynth_plugin.c'; then $(CYGPATH_W) 'src/decoder/fluidsynth_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/fluidsynth_plugin.c'; fi`
-
- test_run_decoder-wildmidi_plugin.o: src/decoder/wildmidi_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-wildmidi_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-wildmidi_plugin.Tpo -c -o test_run_decoder-wildmidi_plugin.o `test -f 'src/decoder/wildmidi_plugin.c' || echo '$(srcdir)/'`src/decoder/wildmidi_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-wildmidi_plugin.Tpo $(DEPDIR)/test_run_decoder-wildmidi_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-wildmidi_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-wildmidi_plugin.Tpo" -c -o test_run_decoder-wildmidi_plugin.o `test -f 'src/decoder/wildmidi_plugin.c' || echo '$(srcdir)/'`src/decoder/wildmidi_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-wildmidi_plugin.Tpo" "$(DEPDIR)/test_run_decoder-wildmidi_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-wildmidi_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/wildmidi_plugin.c' object='test_run_decoder-wildmidi_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-wildmidi_plugin.o `test -f 'src/decoder/wildmidi_plugin.c' || echo '$(srcdir)/'`src/decoder/wildmidi_plugin.c
-
- test_run_decoder-wildmidi_plugin.obj: src/decoder/wildmidi_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-wildmidi_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-wildmidi_plugin.Tpo -c -o test_run_decoder-wildmidi_plugin.obj `if test -f 'src/decoder/wildmidi_plugin.c'; then $(CYGPATH_W) 'src/decoder/wildmidi_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wildmidi_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-wildmidi_plugin.Tpo $(DEPDIR)/test_run_decoder-wildmidi_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-wildmidi_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-wildmidi_plugin.Tpo" -c -o test_run_decoder-wildmidi_plugin.obj `if test -f 'src/decoder/wildmidi_plugin.c'; then $(CYGPATH_W) 'src/decoder/wildmidi_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wildmidi_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-wildmidi_plugin.Tpo" "$(DEPDIR)/test_run_decoder-wildmidi_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-wildmidi_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/wildmidi_plugin.c' object='test_run_decoder-wildmidi_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-wildmidi_plugin.obj `if test -f 'src/decoder/wildmidi_plugin.c'; then $(CYGPATH_W) 'src/decoder/wildmidi_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/wildmidi_plugin.c'; fi`
-
- test_run_decoder-ffmpeg_plugin.o: src/decoder/ffmpeg_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-ffmpeg_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-ffmpeg_plugin.Tpo -c -o test_run_decoder-ffmpeg_plugin.o `test -f 'src/decoder/ffmpeg_plugin.c' || echo '$(srcdir)/'`src/decoder/ffmpeg_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-ffmpeg_plugin.Tpo $(DEPDIR)/test_run_decoder-ffmpeg_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-ffmpeg_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-ffmpeg_plugin.Tpo" -c -o test_run_decoder-ffmpeg_plugin.o `test -f 'src/decoder/ffmpeg_plugin.c' || echo '$(srcdir)/'`src/decoder/ffmpeg_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-ffmpeg_plugin.Tpo" "$(DEPDIR)/test_run_decoder-ffmpeg_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-ffmpeg_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/ffmpeg_plugin.c' object='test_run_decoder-ffmpeg_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-ffmpeg_plugin.o `test -f 'src/decoder/ffmpeg_plugin.c' || echo '$(srcdir)/'`src/decoder/ffmpeg_plugin.c
-
- test_run_decoder-ffmpeg_plugin.obj: src/decoder/ffmpeg_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-ffmpeg_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-ffmpeg_plugin.Tpo -c -o test_run_decoder-ffmpeg_plugin.obj `if test -f 'src/decoder/ffmpeg_plugin.c'; then $(CYGPATH_W) 'src/decoder/ffmpeg_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/ffmpeg_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-ffmpeg_plugin.Tpo $(DEPDIR)/test_run_decoder-ffmpeg_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-ffmpeg_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-ffmpeg_plugin.Tpo" -c -o test_run_decoder-ffmpeg_plugin.obj `if test -f 'src/decoder/ffmpeg_plugin.c'; then $(CYGPATH_W) 'src/decoder/ffmpeg_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/ffmpeg_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-ffmpeg_plugin.Tpo" "$(DEPDIR)/test_run_decoder-ffmpeg_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-ffmpeg_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/decoder/ffmpeg_plugin.c' object='test_run_decoder-ffmpeg_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-ffmpeg_plugin.obj `if test -f 'src/decoder/ffmpeg_plugin.c'; then $(CYGPATH_W) 'src/decoder/ffmpeg_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/decoder/ffmpeg_plugin.c'; fi`
-
- test_run_decoder-cue_tag.o: src/cue/cue_tag.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-cue_tag.o -MD -MP -MF $(DEPDIR)/test_run_decoder-cue_tag.Tpo -c -o test_run_decoder-cue_tag.o `test -f 'src/cue/cue_tag.c' || echo '$(srcdir)/'`src/cue/cue_tag.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-cue_tag.Tpo $(DEPDIR)/test_run_decoder-cue_tag.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-cue_tag.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-cue_tag.Tpo" -c -o test_run_decoder-cue_tag.o `test -f 'src/cue/cue_tag.c' || echo '$(srcdir)/'`src/cue/cue_tag.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-cue_tag.Tpo" "$(DEPDIR)/test_run_decoder-cue_tag.Po"; else rm -f "$(DEPDIR)/test_run_decoder-cue_tag.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/cue/cue_tag.c' object='test_run_decoder-cue_tag.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-cue_tag.o `test -f 'src/cue/cue_tag.c' || echo '$(srcdir)/'`src/cue/cue_tag.c
-
- test_run_decoder-cue_tag.obj: src/cue/cue_tag.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-cue_tag.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-cue_tag.Tpo -c -o test_run_decoder-cue_tag.obj `if test -f 'src/cue/cue_tag.c'; then $(CYGPATH_W) 'src/cue/cue_tag.c'; else $(CYGPATH_W) '$(srcdir)/src/cue/cue_tag.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-cue_tag.Tpo $(DEPDIR)/test_run_decoder-cue_tag.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_decoder-cue_tag.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-cue_tag.Tpo" -c -o test_run_decoder-cue_tag.obj `if test -f 'src/cue/cue_tag.c'; then $(CYGPATH_W) 'src/cue/cue_tag.c'; else $(CYGPATH_W) '$(srcdir)/src/cue/cue_tag.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-cue_tag.Tpo" "$(DEPDIR)/test_run_decoder-cue_tag.Po"; else rm -f "$(DEPDIR)/test_run_decoder-cue_tag.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/cue/cue_tag.c' object='test_run_decoder-cue_tag.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_decoder-cue_tag.obj `if test -f 'src/cue/cue_tag.c'; then $(CYGPATH_W) 'src/cue/cue_tag.c'; else $(CYGPATH_W) '$(srcdir)/src/cue/cue_tag.c'; fi`
-
- run_encoder.o: test/run_encoder.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT run_encoder.o -MD -MP -MF $(DEPDIR)/run_encoder.Tpo -c -o run_encoder.o `test -f 'test/run_encoder.c' || echo '$(srcdir)/'`test/run_encoder.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/run_encoder.Tpo $(DEPDIR)/run_encoder.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT run_encoder.o -MD -MP -MF "$(DEPDIR)/run_encoder.Tpo" -c -o run_encoder.o `test -f 'test/run_encoder.c' || echo '$(srcdir)/'`test/run_encoder.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/run_encoder.Tpo" "$(DEPDIR)/run_encoder.Po"; else rm -f "$(DEPDIR)/run_encoder.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/run_encoder.c' object='run_encoder.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o run_encoder.o `test -f 'test/run_encoder.c' || echo '$(srcdir)/'`test/run_encoder.c
-
- run_encoder.obj: test/run_encoder.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT run_encoder.obj -MD -MP -MF $(DEPDIR)/run_encoder.Tpo -c -o run_encoder.obj `if test -f 'test/run_encoder.c'; then $(CYGPATH_W) 'test/run_encoder.c'; else $(CYGPATH_W) '$(srcdir)/test/run_encoder.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/run_encoder.Tpo $(DEPDIR)/run_encoder.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT run_encoder.obj -MD -MP -MF "$(DEPDIR)/run_encoder.Tpo" -c -o run_encoder.obj `if test -f 'test/run_encoder.c'; then $(CYGPATH_W) 'test/run_encoder.c'; else $(CYGPATH_W) '$(srcdir)/test/run_encoder.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/run_encoder.Tpo" "$(DEPDIR)/run_encoder.Po"; else rm -f "$(DEPDIR)/run_encoder.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/run_encoder.c' object='run_encoder.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o run_encoder.obj `if test -f 'test/run_encoder.c'; then $(CYGPATH_W) 'test/run_encoder.c'; else $(CYGPATH_W) '$(srcdir)/test/run_encoder.c'; fi`
-
- conf.o: src/conf.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT conf.o -MD -MP -MF $(DEPDIR)/conf.Tpo -c -o conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/conf.Tpo $(DEPDIR)/conf.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT conf.o -MD -MP -MF "$(DEPDIR)/conf.Tpo" -c -o conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/conf.Tpo" "$(DEPDIR)/conf.Po"; else rm -f "$(DEPDIR)/conf.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/conf.c' object='conf.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c
-
- conf.obj: src/conf.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT conf.obj -MD -MP -MF $(DEPDIR)/conf.Tpo -c -o conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/conf.Tpo $(DEPDIR)/conf.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT conf.obj -MD -MP -MF "$(DEPDIR)/conf.Tpo" -c -o conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/conf.Tpo" "$(DEPDIR)/conf.Po"; else rm -f "$(DEPDIR)/conf.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/conf.c' object='conf.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi`
-
- buffer2array.o: src/buffer2array.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT buffer2array.o -MD -MP -MF $(DEPDIR)/buffer2array.Tpo -c -o buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/buffer2array.Tpo $(DEPDIR)/buffer2array.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT buffer2array.o -MD -MP -MF "$(DEPDIR)/buffer2array.Tpo" -c -o buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/buffer2array.Tpo" "$(DEPDIR)/buffer2array.Po"; else rm -f "$(DEPDIR)/buffer2array.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer2array.c' object='buffer2array.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c
-
- buffer2array.obj: src/buffer2array.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT buffer2array.obj -MD -MP -MF $(DEPDIR)/buffer2array.Tpo -c -o buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/buffer2array.Tpo $(DEPDIR)/buffer2array.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT buffer2array.obj -MD -MP -MF "$(DEPDIR)/buffer2array.Tpo" -c -o buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/buffer2array.Tpo" "$(DEPDIR)/buffer2array.Po"; else rm -f "$(DEPDIR)/buffer2array.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer2array.c' object='buffer2array.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi`
-
- utils.o: src/utils.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT utils.o -MD -MP -MF $(DEPDIR)/utils.Tpo -c -o utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/utils.Tpo $(DEPDIR)/utils.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT utils.o -MD -MP -MF "$(DEPDIR)/utils.Tpo" -c -o utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/utils.Tpo" "$(DEPDIR)/utils.Po"; else rm -f "$(DEPDIR)/utils.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/utils.c' object='utils.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c
-
- utils.obj: src/utils.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT utils.obj -MD -MP -MF $(DEPDIR)/utils.Tpo -c -o utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/utils.Tpo $(DEPDIR)/utils.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT utils.obj -MD -MP -MF "$(DEPDIR)/utils.Tpo" -c -o utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/utils.Tpo" "$(DEPDIR)/utils.Po"; else rm -f "$(DEPDIR)/utils.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/utils.c' object='utils.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi`
-
- tag.o: src/tag.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tag.o -MD -MP -MF $(DEPDIR)/tag.Tpo -c -o tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tag.Tpo $(DEPDIR)/tag.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tag.o -MD -MP -MF "$(DEPDIR)/tag.Tpo" -c -o tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/tag.Tpo" "$(DEPDIR)/tag.Po"; else rm -f "$(DEPDIR)/tag.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag.c' object='tag.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c
-
- tag.obj: src/tag.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tag.obj -MD -MP -MF $(DEPDIR)/tag.Tpo -c -o tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tag.Tpo $(DEPDIR)/tag.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tag.obj -MD -MP -MF "$(DEPDIR)/tag.Tpo" -c -o tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/tag.Tpo" "$(DEPDIR)/tag.Po"; else rm -f "$(DEPDIR)/tag.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag.c' object='tag.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi`
-
- tag_pool.o: src/tag_pool.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tag_pool.o -MD -MP -MF $(DEPDIR)/tag_pool.Tpo -c -o tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tag_pool.Tpo $(DEPDIR)/tag_pool.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tag_pool.o -MD -MP -MF "$(DEPDIR)/tag_pool.Tpo" -c -o tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/tag_pool.Tpo" "$(DEPDIR)/tag_pool.Po"; else rm -f "$(DEPDIR)/tag_pool.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_pool.c' object='tag_pool.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c
-
- tag_pool.obj: src/tag_pool.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tag_pool.obj -MD -MP -MF $(DEPDIR)/tag_pool.Tpo -c -o tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tag_pool.Tpo $(DEPDIR)/tag_pool.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tag_pool.obj -MD -MP -MF "$(DEPDIR)/tag_pool.Tpo" -c -o tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/tag_pool.Tpo" "$(DEPDIR)/tag_pool.Po"; else rm -f "$(DEPDIR)/tag_pool.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_pool.c' object='tag_pool.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi`
-
- audio_parser.o: src/audio_parser.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT audio_parser.o -MD -MP -MF $(DEPDIR)/audio_parser.Tpo -c -o audio_parser.o `test -f 'src/audio_parser.c' || echo '$(srcdir)/'`src/audio_parser.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/audio_parser.Tpo $(DEPDIR)/audio_parser.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT audio_parser.o -MD -MP -MF "$(DEPDIR)/audio_parser.Tpo" -c -o audio_parser.o `test -f 'src/audio_parser.c' || echo '$(srcdir)/'`src/audio_parser.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/audio_parser.Tpo" "$(DEPDIR)/audio_parser.Po"; else rm -f "$(DEPDIR)/audio_parser.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/audio_parser.c' object='audio_parser.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o audio_parser.o `test -f 'src/audio_parser.c' || echo '$(srcdir)/'`src/audio_parser.c
-
- audio_parser.obj: src/audio_parser.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT audio_parser.obj -MD -MP -MF $(DEPDIR)/audio_parser.Tpo -c -o audio_parser.obj `if test -f 'src/audio_parser.c'; then $(CYGPATH_W) 'src/audio_parser.c'; else $(CYGPATH_W) '$(srcdir)/src/audio_parser.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/audio_parser.Tpo $(DEPDIR)/audio_parser.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT audio_parser.obj -MD -MP -MF "$(DEPDIR)/audio_parser.Tpo" -c -o audio_parser.obj `if test -f 'src/audio_parser.c'; then $(CYGPATH_W) 'src/audio_parser.c'; else $(CYGPATH_W) '$(srcdir)/src/audio_parser.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/audio_parser.Tpo" "$(DEPDIR)/audio_parser.Po"; else rm -f "$(DEPDIR)/audio_parser.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/audio_parser.c' object='audio_parser.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o audio_parser.obj `if test -f 'src/audio_parser.c'; then $(CYGPATH_W) 'src/audio_parser.c'; else $(CYGPATH_W) '$(srcdir)/src/audio_parser.c'; fi`
-
- encoder_list.o: src/encoder_list.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT encoder_list.o -MD -MP -MF $(DEPDIR)/encoder_list.Tpo -c -o encoder_list.o `test -f 'src/encoder_list.c' || echo '$(srcdir)/'`src/encoder_list.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/encoder_list.Tpo $(DEPDIR)/encoder_list.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT encoder_list.o -MD -MP -MF "$(DEPDIR)/encoder_list.Tpo" -c -o encoder_list.o `test -f 'src/encoder_list.c' || echo '$(srcdir)/'`src/encoder_list.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/encoder_list.Tpo" "$(DEPDIR)/encoder_list.Po"; else rm -f "$(DEPDIR)/encoder_list.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder_list.c' object='encoder_list.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o encoder_list.o `test -f 'src/encoder_list.c' || echo '$(srcdir)/'`src/encoder_list.c
-
- encoder_list.obj: src/encoder_list.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT encoder_list.obj -MD -MP -MF $(DEPDIR)/encoder_list.Tpo -c -o encoder_list.obj `if test -f 'src/encoder_list.c'; then $(CYGPATH_W) 'src/encoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder_list.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/encoder_list.Tpo $(DEPDIR)/encoder_list.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT encoder_list.obj -MD -MP -MF "$(DEPDIR)/encoder_list.Tpo" -c -o encoder_list.obj `if test -f 'src/encoder_list.c'; then $(CYGPATH_W) 'src/encoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder_list.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/encoder_list.Tpo" "$(DEPDIR)/encoder_list.Po"; else rm -f "$(DEPDIR)/encoder_list.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder_list.c' object='encoder_list.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o encoder_list.obj `if test -f 'src/encoder_list.c'; then $(CYGPATH_W) 'src/encoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder_list.c'; fi`
-
- vorbis_encoder.o: src/encoder/vorbis_encoder.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT vorbis_encoder.o -MD -MP -MF $(DEPDIR)/vorbis_encoder.Tpo -c -o vorbis_encoder.o `test -f 'src/encoder/vorbis_encoder.c' || echo '$(srcdir)/'`src/encoder/vorbis_encoder.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/vorbis_encoder.Tpo $(DEPDIR)/vorbis_encoder.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT vorbis_encoder.o -MD -MP -MF "$(DEPDIR)/vorbis_encoder.Tpo" -c -o vorbis_encoder.o `test -f 'src/encoder/vorbis_encoder.c' || echo '$(srcdir)/'`src/encoder/vorbis_encoder.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/vorbis_encoder.Tpo" "$(DEPDIR)/vorbis_encoder.Po"; else rm -f "$(DEPDIR)/vorbis_encoder.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder/vorbis_encoder.c' object='vorbis_encoder.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o vorbis_encoder.o `test -f 'src/encoder/vorbis_encoder.c' || echo '$(srcdir)/'`src/encoder/vorbis_encoder.c
-
- vorbis_encoder.obj: src/encoder/vorbis_encoder.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT vorbis_encoder.obj -MD -MP -MF $(DEPDIR)/vorbis_encoder.Tpo -c -o vorbis_encoder.obj `if test -f 'src/encoder/vorbis_encoder.c'; then $(CYGPATH_W) 'src/encoder/vorbis_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/vorbis_encoder.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/vorbis_encoder.Tpo $(DEPDIR)/vorbis_encoder.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT vorbis_encoder.obj -MD -MP -MF "$(DEPDIR)/vorbis_encoder.Tpo" -c -o vorbis_encoder.obj `if test -f 'src/encoder/vorbis_encoder.c'; then $(CYGPATH_W) 'src/encoder/vorbis_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/vorbis_encoder.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/vorbis_encoder.Tpo" "$(DEPDIR)/vorbis_encoder.Po"; else rm -f "$(DEPDIR)/vorbis_encoder.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder/vorbis_encoder.c' object='vorbis_encoder.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o vorbis_encoder.obj `if test -f 'src/encoder/vorbis_encoder.c'; then $(CYGPATH_W) 'src/encoder/vorbis_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/vorbis_encoder.c'; fi`
-
- lame_encoder.o: src/encoder/lame_encoder.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lame_encoder.o -MD -MP -MF $(DEPDIR)/lame_encoder.Tpo -c -o lame_encoder.o `test -f 'src/encoder/lame_encoder.c' || echo '$(srcdir)/'`src/encoder/lame_encoder.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/lame_encoder.Tpo $(DEPDIR)/lame_encoder.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lame_encoder.o -MD -MP -MF "$(DEPDIR)/lame_encoder.Tpo" -c -o lame_encoder.o `test -f 'src/encoder/lame_encoder.c' || echo '$(srcdir)/'`src/encoder/lame_encoder.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lame_encoder.Tpo" "$(DEPDIR)/lame_encoder.Po"; else rm -f "$(DEPDIR)/lame_encoder.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder/lame_encoder.c' object='lame_encoder.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lame_encoder.o `test -f 'src/encoder/lame_encoder.c' || echo '$(srcdir)/'`src/encoder/lame_encoder.c
-
- lame_encoder.obj: src/encoder/lame_encoder.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lame_encoder.obj -MD -MP -MF $(DEPDIR)/lame_encoder.Tpo -c -o lame_encoder.obj `if test -f 'src/encoder/lame_encoder.c'; then $(CYGPATH_W) 'src/encoder/lame_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/lame_encoder.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/lame_encoder.Tpo $(DEPDIR)/lame_encoder.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lame_encoder.obj -MD -MP -MF "$(DEPDIR)/lame_encoder.Tpo" -c -o lame_encoder.obj `if test -f 'src/encoder/lame_encoder.c'; then $(CYGPATH_W) 'src/encoder/lame_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/lame_encoder.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/lame_encoder.Tpo" "$(DEPDIR)/lame_encoder.Po"; else rm -f "$(DEPDIR)/lame_encoder.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder/lame_encoder.c' object='lame_encoder.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lame_encoder.obj `if test -f 'src/encoder/lame_encoder.c'; then $(CYGPATH_W) 'src/encoder/lame_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/lame_encoder.c'; fi`
-
- test_run_input-run_input.o: test/run_input.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-run_input.o -MD -MP -MF $(DEPDIR)/test_run_input-run_input.Tpo -c -o test_run_input-run_input.o `test -f 'test/run_input.c' || echo '$(srcdir)/'`test/run_input.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-run_input.Tpo $(DEPDIR)/test_run_input-run_input.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-run_input.o -MD -MP -MF "$(DEPDIR)/test_run_input-run_input.Tpo" -c -o test_run_input-run_input.o `test -f 'test/run_input.c' || echo '$(srcdir)/'`test/run_input.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-run_input.Tpo" "$(DEPDIR)/test_run_input-run_input.Po"; else rm -f "$(DEPDIR)/test_run_input-run_input.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/run_input.c' object='test_run_input-run_input.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-run_input.o `test -f 'test/run_input.c' || echo '$(srcdir)/'`test/run_input.c
-
- test_run_input-run_input.obj: test/run_input.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-run_input.obj -MD -MP -MF $(DEPDIR)/test_run_input-run_input.Tpo -c -o test_run_input-run_input.obj `if test -f 'test/run_input.c'; then $(CYGPATH_W) 'test/run_input.c'; else $(CYGPATH_W) '$(srcdir)/test/run_input.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-run_input.Tpo $(DEPDIR)/test_run_input-run_input.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-run_input.obj -MD -MP -MF "$(DEPDIR)/test_run_input-run_input.Tpo" -c -o test_run_input-run_input.obj `if test -f 'test/run_input.c'; then $(CYGPATH_W) 'test/run_input.c'; else $(CYGPATH_W) '$(srcdir)/test/run_input.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-run_input.Tpo" "$(DEPDIR)/test_run_input-run_input.Po"; else rm -f "$(DEPDIR)/test_run_input-run_input.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/run_input.c' object='test_run_input-run_input.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-run_input.obj `if test -f 'test/run_input.c'; then $(CYGPATH_W) 'test/run_input.c'; else $(CYGPATH_W) '$(srcdir)/test/run_input.c'; fi`
-
- test_run_input-conf.o: src/conf.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-conf.o -MD -MP -MF $(DEPDIR)/test_run_input-conf.Tpo -c -o test_run_input-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-conf.Tpo $(DEPDIR)/test_run_input-conf.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-conf.o -MD -MP -MF "$(DEPDIR)/test_run_input-conf.Tpo" -c -o test_run_input-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-conf.Tpo" "$(DEPDIR)/test_run_input-conf.Po"; else rm -f "$(DEPDIR)/test_run_input-conf.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/conf.c' object='test_run_input-conf.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c
-
- test_run_input-conf.obj: src/conf.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-conf.obj -MD -MP -MF $(DEPDIR)/test_run_input-conf.Tpo -c -o test_run_input-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-conf.Tpo $(DEPDIR)/test_run_input-conf.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-conf.obj -MD -MP -MF "$(DEPDIR)/test_run_input-conf.Tpo" -c -o test_run_input-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-conf.Tpo" "$(DEPDIR)/test_run_input-conf.Po"; else rm -f "$(DEPDIR)/test_run_input-conf.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/conf.c' object='test_run_input-conf.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi`
-
- test_run_input-buffer2array.o: src/buffer2array.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-buffer2array.o -MD -MP -MF $(DEPDIR)/test_run_input-buffer2array.Tpo -c -o test_run_input-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-buffer2array.Tpo $(DEPDIR)/test_run_input-buffer2array.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-buffer2array.o -MD -MP -MF "$(DEPDIR)/test_run_input-buffer2array.Tpo" -c -o test_run_input-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-buffer2array.Tpo" "$(DEPDIR)/test_run_input-buffer2array.Po"; else rm -f "$(DEPDIR)/test_run_input-buffer2array.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer2array.c' object='test_run_input-buffer2array.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c
-
- test_run_input-buffer2array.obj: src/buffer2array.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-buffer2array.obj -MD -MP -MF $(DEPDIR)/test_run_input-buffer2array.Tpo -c -o test_run_input-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-buffer2array.Tpo $(DEPDIR)/test_run_input-buffer2array.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-buffer2array.obj -MD -MP -MF "$(DEPDIR)/test_run_input-buffer2array.Tpo" -c -o test_run_input-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-buffer2array.Tpo" "$(DEPDIR)/test_run_input-buffer2array.Po"; else rm -f "$(DEPDIR)/test_run_input-buffer2array.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer2array.c' object='test_run_input-buffer2array.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi`
-
- test_run_input-utils.o: src/utils.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-utils.o -MD -MP -MF $(DEPDIR)/test_run_input-utils.Tpo -c -o test_run_input-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-utils.Tpo $(DEPDIR)/test_run_input-utils.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-utils.o -MD -MP -MF "$(DEPDIR)/test_run_input-utils.Tpo" -c -o test_run_input-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-utils.Tpo" "$(DEPDIR)/test_run_input-utils.Po"; else rm -f "$(DEPDIR)/test_run_input-utils.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/utils.c' object='test_run_input-utils.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c
-
- test_run_input-utils.obj: src/utils.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-utils.obj -MD -MP -MF $(DEPDIR)/test_run_input-utils.Tpo -c -o test_run_input-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-utils.Tpo $(DEPDIR)/test_run_input-utils.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-utils.obj -MD -MP -MF "$(DEPDIR)/test_run_input-utils.Tpo" -c -o test_run_input-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-utils.Tpo" "$(DEPDIR)/test_run_input-utils.Po"; else rm -f "$(DEPDIR)/test_run_input-utils.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/utils.c' object='test_run_input-utils.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi`
-
- test_run_input-tag.o: src/tag.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-tag.o -MD -MP -MF $(DEPDIR)/test_run_input-tag.Tpo -c -o test_run_input-tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-tag.Tpo $(DEPDIR)/test_run_input-tag.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-tag.o -MD -MP -MF "$(DEPDIR)/test_run_input-tag.Tpo" -c -o test_run_input-tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-tag.Tpo" "$(DEPDIR)/test_run_input-tag.Po"; else rm -f "$(DEPDIR)/test_run_input-tag.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag.c' object='test_run_input-tag.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c
-
- test_run_input-tag.obj: src/tag.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-tag.obj -MD -MP -MF $(DEPDIR)/test_run_input-tag.Tpo -c -o test_run_input-tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-tag.Tpo $(DEPDIR)/test_run_input-tag.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-tag.obj -MD -MP -MF "$(DEPDIR)/test_run_input-tag.Tpo" -c -o test_run_input-tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-tag.Tpo" "$(DEPDIR)/test_run_input-tag.Po"; else rm -f "$(DEPDIR)/test_run_input-tag.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag.c' object='test_run_input-tag.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi`
-
- test_run_input-tag_pool.o: src/tag_pool.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-tag_pool.o -MD -MP -MF $(DEPDIR)/test_run_input-tag_pool.Tpo -c -o test_run_input-tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-tag_pool.Tpo $(DEPDIR)/test_run_input-tag_pool.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-tag_pool.o -MD -MP -MF "$(DEPDIR)/test_run_input-tag_pool.Tpo" -c -o test_run_input-tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-tag_pool.Tpo" "$(DEPDIR)/test_run_input-tag_pool.Po"; else rm -f "$(DEPDIR)/test_run_input-tag_pool.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_pool.c' object='test_run_input-tag_pool.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c
-
- test_run_input-tag_pool.obj: src/tag_pool.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-tag_pool.obj -MD -MP -MF $(DEPDIR)/test_run_input-tag_pool.Tpo -c -o test_run_input-tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-tag_pool.Tpo $(DEPDIR)/test_run_input-tag_pool.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-tag_pool.obj -MD -MP -MF "$(DEPDIR)/test_run_input-tag_pool.Tpo" -c -o test_run_input-tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-tag_pool.Tpo" "$(DEPDIR)/test_run_input-tag_pool.Po"; else rm -f "$(DEPDIR)/test_run_input-tag_pool.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_pool.c' object='test_run_input-tag_pool.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi`
-
- test_run_input-tag_save.o: src/tag_save.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-tag_save.o -MD -MP -MF $(DEPDIR)/test_run_input-tag_save.Tpo -c -o test_run_input-tag_save.o `test -f 'src/tag_save.c' || echo '$(srcdir)/'`src/tag_save.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-tag_save.Tpo $(DEPDIR)/test_run_input-tag_save.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-tag_save.o -MD -MP -MF "$(DEPDIR)/test_run_input-tag_save.Tpo" -c -o test_run_input-tag_save.o `test -f 'src/tag_save.c' || echo '$(srcdir)/'`src/tag_save.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-tag_save.Tpo" "$(DEPDIR)/test_run_input-tag_save.Po"; else rm -f "$(DEPDIR)/test_run_input-tag_save.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_save.c' object='test_run_input-tag_save.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-tag_save.o `test -f 'src/tag_save.c' || echo '$(srcdir)/'`src/tag_save.c
-
- test_run_input-tag_save.obj: src/tag_save.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-tag_save.obj -MD -MP -MF $(DEPDIR)/test_run_input-tag_save.Tpo -c -o test_run_input-tag_save.obj `if test -f 'src/tag_save.c'; then $(CYGPATH_W) 'src/tag_save.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_save.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-tag_save.Tpo $(DEPDIR)/test_run_input-tag_save.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-tag_save.obj -MD -MP -MF "$(DEPDIR)/test_run_input-tag_save.Tpo" -c -o test_run_input-tag_save.obj `if test -f 'src/tag_save.c'; then $(CYGPATH_W) 'src/tag_save.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_save.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-tag_save.Tpo" "$(DEPDIR)/test_run_input-tag_save.Po"; else rm -f "$(DEPDIR)/test_run_input-tag_save.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_save.c' object='test_run_input-tag_save.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-tag_save.obj `if test -f 'src/tag_save.c'; then $(CYGPATH_W) 'src/tag_save.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_save.c'; fi`
-
- test_run_input-bz2_plugin.o: src/archive/bz2_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-bz2_plugin.o -MD -MP -MF $(DEPDIR)/test_run_input-bz2_plugin.Tpo -c -o test_run_input-bz2_plugin.o `test -f 'src/archive/bz2_plugin.c' || echo '$(srcdir)/'`src/archive/bz2_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-bz2_plugin.Tpo $(DEPDIR)/test_run_input-bz2_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-bz2_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_input-bz2_plugin.Tpo" -c -o test_run_input-bz2_plugin.o `test -f 'src/archive/bz2_plugin.c' || echo '$(srcdir)/'`src/archive/bz2_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-bz2_plugin.Tpo" "$(DEPDIR)/test_run_input-bz2_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-bz2_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/bz2_plugin.c' object='test_run_input-bz2_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-bz2_plugin.o `test -f 'src/archive/bz2_plugin.c' || echo '$(srcdir)/'`src/archive/bz2_plugin.c
-
- test_run_input-bz2_plugin.obj: src/archive/bz2_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-bz2_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_input-bz2_plugin.Tpo -c -o test_run_input-bz2_plugin.obj `if test -f 'src/archive/bz2_plugin.c'; then $(CYGPATH_W) 'src/archive/bz2_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/bz2_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-bz2_plugin.Tpo $(DEPDIR)/test_run_input-bz2_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-bz2_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_input-bz2_plugin.Tpo" -c -o test_run_input-bz2_plugin.obj `if test -f 'src/archive/bz2_plugin.c'; then $(CYGPATH_W) 'src/archive/bz2_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/bz2_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-bz2_plugin.Tpo" "$(DEPDIR)/test_run_input-bz2_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-bz2_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/bz2_plugin.c' object='test_run_input-bz2_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-bz2_plugin.obj `if test -f 'src/archive/bz2_plugin.c'; then $(CYGPATH_W) 'src/archive/bz2_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/bz2_plugin.c'; fi`
-
- test_run_input-zip_plugin.o: src/archive/zip_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-zip_plugin.o -MD -MP -MF $(DEPDIR)/test_run_input-zip_plugin.Tpo -c -o test_run_input-zip_plugin.o `test -f 'src/archive/zip_plugin.c' || echo '$(srcdir)/'`src/archive/zip_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-zip_plugin.Tpo $(DEPDIR)/test_run_input-zip_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-zip_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_input-zip_plugin.Tpo" -c -o test_run_input-zip_plugin.o `test -f 'src/archive/zip_plugin.c' || echo '$(srcdir)/'`src/archive/zip_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-zip_plugin.Tpo" "$(DEPDIR)/test_run_input-zip_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-zip_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/zip_plugin.c' object='test_run_input-zip_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-zip_plugin.o `test -f 'src/archive/zip_plugin.c' || echo '$(srcdir)/'`src/archive/zip_plugin.c
-
- test_run_input-zip_plugin.obj: src/archive/zip_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-zip_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_input-zip_plugin.Tpo -c -o test_run_input-zip_plugin.obj `if test -f 'src/archive/zip_plugin.c'; then $(CYGPATH_W) 'src/archive/zip_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/zip_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-zip_plugin.Tpo $(DEPDIR)/test_run_input-zip_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-zip_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_input-zip_plugin.Tpo" -c -o test_run_input-zip_plugin.obj `if test -f 'src/archive/zip_plugin.c'; then $(CYGPATH_W) 'src/archive/zip_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/zip_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-zip_plugin.Tpo" "$(DEPDIR)/test_run_input-zip_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-zip_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/zip_plugin.c' object='test_run_input-zip_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-zip_plugin.obj `if test -f 'src/archive/zip_plugin.c'; then $(CYGPATH_W) 'src/archive/zip_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/zip_plugin.c'; fi`
-
- test_run_input-iso_plugin.o: src/archive/iso_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-iso_plugin.o -MD -MP -MF $(DEPDIR)/test_run_input-iso_plugin.Tpo -c -o test_run_input-iso_plugin.o `test -f 'src/archive/iso_plugin.c' || echo '$(srcdir)/'`src/archive/iso_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-iso_plugin.Tpo $(DEPDIR)/test_run_input-iso_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-iso_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_input-iso_plugin.Tpo" -c -o test_run_input-iso_plugin.o `test -f 'src/archive/iso_plugin.c' || echo '$(srcdir)/'`src/archive/iso_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-iso_plugin.Tpo" "$(DEPDIR)/test_run_input-iso_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-iso_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/iso_plugin.c' object='test_run_input-iso_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-iso_plugin.o `test -f 'src/archive/iso_plugin.c' || echo '$(srcdir)/'`src/archive/iso_plugin.c
-
- test_run_input-iso_plugin.obj: src/archive/iso_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-iso_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_input-iso_plugin.Tpo -c -o test_run_input-iso_plugin.obj `if test -f 'src/archive/iso_plugin.c'; then $(CYGPATH_W) 'src/archive/iso_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/iso_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-iso_plugin.Tpo $(DEPDIR)/test_run_input-iso_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-iso_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_input-iso_plugin.Tpo" -c -o test_run_input-iso_plugin.obj `if test -f 'src/archive/iso_plugin.c'; then $(CYGPATH_W) 'src/archive/iso_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/iso_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-iso_plugin.Tpo" "$(DEPDIR)/test_run_input-iso_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-iso_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive/iso_plugin.c' object='test_run_input-iso_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-iso_plugin.obj `if test -f 'src/archive/iso_plugin.c'; then $(CYGPATH_W) 'src/archive/iso_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/archive/iso_plugin.c'; fi`
-
- test_run_input-archive_api.o: src/archive_api.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-archive_api.o -MD -MP -MF $(DEPDIR)/test_run_input-archive_api.Tpo -c -o test_run_input-archive_api.o `test -f 'src/archive_api.c' || echo '$(srcdir)/'`src/archive_api.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-archive_api.Tpo $(DEPDIR)/test_run_input-archive_api.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-archive_api.o -MD -MP -MF "$(DEPDIR)/test_run_input-archive_api.Tpo" -c -o test_run_input-archive_api.o `test -f 'src/archive_api.c' || echo '$(srcdir)/'`src/archive_api.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-archive_api.Tpo" "$(DEPDIR)/test_run_input-archive_api.Po"; else rm -f "$(DEPDIR)/test_run_input-archive_api.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive_api.c' object='test_run_input-archive_api.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-archive_api.o `test -f 'src/archive_api.c' || echo '$(srcdir)/'`src/archive_api.c
-
- test_run_input-archive_api.obj: src/archive_api.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-archive_api.obj -MD -MP -MF $(DEPDIR)/test_run_input-archive_api.Tpo -c -o test_run_input-archive_api.obj `if test -f 'src/archive_api.c'; then $(CYGPATH_W) 'src/archive_api.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_api.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-archive_api.Tpo $(DEPDIR)/test_run_input-archive_api.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-archive_api.obj -MD -MP -MF "$(DEPDIR)/test_run_input-archive_api.Tpo" -c -o test_run_input-archive_api.obj `if test -f 'src/archive_api.c'; then $(CYGPATH_W) 'src/archive_api.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_api.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-archive_api.Tpo" "$(DEPDIR)/test_run_input-archive_api.Po"; else rm -f "$(DEPDIR)/test_run_input-archive_api.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive_api.c' object='test_run_input-archive_api.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-archive_api.obj `if test -f 'src/archive_api.c'; then $(CYGPATH_W) 'src/archive_api.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_api.c'; fi`
-
- test_run_input-archive_list.o: src/archive_list.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-archive_list.o -MD -MP -MF $(DEPDIR)/test_run_input-archive_list.Tpo -c -o test_run_input-archive_list.o `test -f 'src/archive_list.c' || echo '$(srcdir)/'`src/archive_list.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-archive_list.Tpo $(DEPDIR)/test_run_input-archive_list.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-archive_list.o -MD -MP -MF "$(DEPDIR)/test_run_input-archive_list.Tpo" -c -o test_run_input-archive_list.o `test -f 'src/archive_list.c' || echo '$(srcdir)/'`src/archive_list.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-archive_list.Tpo" "$(DEPDIR)/test_run_input-archive_list.Po"; else rm -f "$(DEPDIR)/test_run_input-archive_list.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive_list.c' object='test_run_input-archive_list.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-archive_list.o `test -f 'src/archive_list.c' || echo '$(srcdir)/'`src/archive_list.c
-
- test_run_input-archive_list.obj: src/archive_list.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-archive_list.obj -MD -MP -MF $(DEPDIR)/test_run_input-archive_list.Tpo -c -o test_run_input-archive_list.obj `if test -f 'src/archive_list.c'; then $(CYGPATH_W) 'src/archive_list.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_list.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-archive_list.Tpo $(DEPDIR)/test_run_input-archive_list.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-archive_list.obj -MD -MP -MF "$(DEPDIR)/test_run_input-archive_list.Tpo" -c -o test_run_input-archive_list.obj `if test -f 'src/archive_list.c'; then $(CYGPATH_W) 'src/archive_list.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_list.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-archive_list.Tpo" "$(DEPDIR)/test_run_input-archive_list.Po"; else rm -f "$(DEPDIR)/test_run_input-archive_list.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/archive_list.c' object='test_run_input-archive_list.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-archive_list.obj `if test -f 'src/archive_list.c'; then $(CYGPATH_W) 'src/archive_list.c'; else $(CYGPATH_W) '$(srcdir)/src/archive_list.c'; fi`
-
- test_run_input-archive_input_plugin.o: src/input/archive_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-archive_input_plugin.o -MD -MP -MF $(DEPDIR)/test_run_input-archive_input_plugin.Tpo -c -o test_run_input-archive_input_plugin.o `test -f 'src/input/archive_input_plugin.c' || echo '$(srcdir)/'`src/input/archive_input_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-archive_input_plugin.Tpo $(DEPDIR)/test_run_input-archive_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-archive_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_input-archive_input_plugin.Tpo" -c -o test_run_input-archive_input_plugin.o `test -f 'src/input/archive_input_plugin.c' || echo '$(srcdir)/'`src/input/archive_input_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-archive_input_plugin.Tpo" "$(DEPDIR)/test_run_input-archive_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-archive_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/archive_input_plugin.c' object='test_run_input-archive_input_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-archive_input_plugin.o `test -f 'src/input/archive_input_plugin.c' || echo '$(srcdir)/'`src/input/archive_input_plugin.c
-
- test_run_input-archive_input_plugin.obj: src/input/archive_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-archive_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_input-archive_input_plugin.Tpo -c -o test_run_input-archive_input_plugin.obj `if test -f 'src/input/archive_input_plugin.c'; then $(CYGPATH_W) 'src/input/archive_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/archive_input_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-archive_input_plugin.Tpo $(DEPDIR)/test_run_input-archive_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-archive_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_input-archive_input_plugin.Tpo" -c -o test_run_input-archive_input_plugin.obj `if test -f 'src/input/archive_input_plugin.c'; then $(CYGPATH_W) 'src/input/archive_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/archive_input_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-archive_input_plugin.Tpo" "$(DEPDIR)/test_run_input-archive_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-archive_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/archive_input_plugin.c' object='test_run_input-archive_input_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-archive_input_plugin.obj `if test -f 'src/input/archive_input_plugin.c'; then $(CYGPATH_W) 'src/input/archive_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/archive_input_plugin.c'; fi`
-
- test_run_input-input_stream.o: src/input_stream.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-input_stream.o -MD -MP -MF $(DEPDIR)/test_run_input-input_stream.Tpo -c -o test_run_input-input_stream.o `test -f 'src/input_stream.c' || echo '$(srcdir)/'`src/input_stream.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-input_stream.Tpo $(DEPDIR)/test_run_input-input_stream.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-input_stream.o -MD -MP -MF "$(DEPDIR)/test_run_input-input_stream.Tpo" -c -o test_run_input-input_stream.o `test -f 'src/input_stream.c' || echo '$(srcdir)/'`src/input_stream.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-input_stream.Tpo" "$(DEPDIR)/test_run_input-input_stream.Po"; else rm -f "$(DEPDIR)/test_run_input-input_stream.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input_stream.c' object='test_run_input-input_stream.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-input_stream.o `test -f 'src/input_stream.c' || echo '$(srcdir)/'`src/input_stream.c
-
- test_run_input-input_stream.obj: src/input_stream.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-input_stream.obj -MD -MP -MF $(DEPDIR)/test_run_input-input_stream.Tpo -c -o test_run_input-input_stream.obj `if test -f 'src/input_stream.c'; then $(CYGPATH_W) 'src/input_stream.c'; else $(CYGPATH_W) '$(srcdir)/src/input_stream.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-input_stream.Tpo $(DEPDIR)/test_run_input-input_stream.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-input_stream.obj -MD -MP -MF "$(DEPDIR)/test_run_input-input_stream.Tpo" -c -o test_run_input-input_stream.obj `if test -f 'src/input_stream.c'; then $(CYGPATH_W) 'src/input_stream.c'; else $(CYGPATH_W) '$(srcdir)/src/input_stream.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-input_stream.Tpo" "$(DEPDIR)/test_run_input-input_stream.Po"; else rm -f "$(DEPDIR)/test_run_input-input_stream.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input_stream.c' object='test_run_input-input_stream.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-input_stream.obj `if test -f 'src/input_stream.c'; then $(CYGPATH_W) 'src/input_stream.c'; else $(CYGPATH_W) '$(srcdir)/src/input_stream.c'; fi`
-
- test_run_input-file_input_plugin.o: src/input/file_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-file_input_plugin.o -MD -MP -MF $(DEPDIR)/test_run_input-file_input_plugin.Tpo -c -o test_run_input-file_input_plugin.o `test -f 'src/input/file_input_plugin.c' || echo '$(srcdir)/'`src/input/file_input_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-file_input_plugin.Tpo $(DEPDIR)/test_run_input-file_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-file_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_input-file_input_plugin.Tpo" -c -o test_run_input-file_input_plugin.o `test -f 'src/input/file_input_plugin.c' || echo '$(srcdir)/'`src/input/file_input_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-file_input_plugin.Tpo" "$(DEPDIR)/test_run_input-file_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-file_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/file_input_plugin.c' object='test_run_input-file_input_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-file_input_plugin.o `test -f 'src/input/file_input_plugin.c' || echo '$(srcdir)/'`src/input/file_input_plugin.c
-
- test_run_input-file_input_plugin.obj: src/input/file_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-file_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_input-file_input_plugin.Tpo -c -o test_run_input-file_input_plugin.obj `if test -f 'src/input/file_input_plugin.c'; then $(CYGPATH_W) 'src/input/file_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/file_input_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-file_input_plugin.Tpo $(DEPDIR)/test_run_input-file_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-file_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_input-file_input_plugin.Tpo" -c -o test_run_input-file_input_plugin.obj `if test -f 'src/input/file_input_plugin.c'; then $(CYGPATH_W) 'src/input/file_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/file_input_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-file_input_plugin.Tpo" "$(DEPDIR)/test_run_input-file_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-file_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/file_input_plugin.c' object='test_run_input-file_input_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-file_input_plugin.obj `if test -f 'src/input/file_input_plugin.c'; then $(CYGPATH_W) 'src/input/file_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/file_input_plugin.c'; fi`
-
- test_run_input-curl_input_plugin.o: src/input/curl_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-curl_input_plugin.o -MD -MP -MF $(DEPDIR)/test_run_input-curl_input_plugin.Tpo -c -o test_run_input-curl_input_plugin.o `test -f 'src/input/curl_input_plugin.c' || echo '$(srcdir)/'`src/input/curl_input_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-curl_input_plugin.Tpo $(DEPDIR)/test_run_input-curl_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-curl_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_input-curl_input_plugin.Tpo" -c -o test_run_input-curl_input_plugin.o `test -f 'src/input/curl_input_plugin.c' || echo '$(srcdir)/'`src/input/curl_input_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-curl_input_plugin.Tpo" "$(DEPDIR)/test_run_input-curl_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-curl_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/curl_input_plugin.c' object='test_run_input-curl_input_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-curl_input_plugin.o `test -f 'src/input/curl_input_plugin.c' || echo '$(srcdir)/'`src/input/curl_input_plugin.c
-
- test_run_input-curl_input_plugin.obj: src/input/curl_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-curl_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_input-curl_input_plugin.Tpo -c -o test_run_input-curl_input_plugin.obj `if test -f 'src/input/curl_input_plugin.c'; then $(CYGPATH_W) 'src/input/curl_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/curl_input_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-curl_input_plugin.Tpo $(DEPDIR)/test_run_input-curl_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-curl_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_input-curl_input_plugin.Tpo" -c -o test_run_input-curl_input_plugin.obj `if test -f 'src/input/curl_input_plugin.c'; then $(CYGPATH_W) 'src/input/curl_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/curl_input_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-curl_input_plugin.Tpo" "$(DEPDIR)/test_run_input-curl_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-curl_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/curl_input_plugin.c' object='test_run_input-curl_input_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-curl_input_plugin.obj `if test -f 'src/input/curl_input_plugin.c'; then $(CYGPATH_W) 'src/input/curl_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/curl_input_plugin.c'; fi`
-
- test_run_input-rewind_input_plugin.o: src/input/rewind_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-rewind_input_plugin.o -MD -MP -MF $(DEPDIR)/test_run_input-rewind_input_plugin.Tpo -c -o test_run_input-rewind_input_plugin.o `test -f 'src/input/rewind_input_plugin.c' || echo '$(srcdir)/'`src/input/rewind_input_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-rewind_input_plugin.Tpo $(DEPDIR)/test_run_input-rewind_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-rewind_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_input-rewind_input_plugin.Tpo" -c -o test_run_input-rewind_input_plugin.o `test -f 'src/input/rewind_input_plugin.c' || echo '$(srcdir)/'`src/input/rewind_input_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-rewind_input_plugin.Tpo" "$(DEPDIR)/test_run_input-rewind_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-rewind_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/rewind_input_plugin.c' object='test_run_input-rewind_input_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-rewind_input_plugin.o `test -f 'src/input/rewind_input_plugin.c' || echo '$(srcdir)/'`src/input/rewind_input_plugin.c
-
- test_run_input-rewind_input_plugin.obj: src/input/rewind_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-rewind_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_input-rewind_input_plugin.Tpo -c -o test_run_input-rewind_input_plugin.obj `if test -f 'src/input/rewind_input_plugin.c'; then $(CYGPATH_W) 'src/input/rewind_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/rewind_input_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-rewind_input_plugin.Tpo $(DEPDIR)/test_run_input-rewind_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-rewind_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_input-rewind_input_plugin.Tpo" -c -o test_run_input-rewind_input_plugin.obj `if test -f 'src/input/rewind_input_plugin.c'; then $(CYGPATH_W) 'src/input/rewind_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/rewind_input_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-rewind_input_plugin.Tpo" "$(DEPDIR)/test_run_input-rewind_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-rewind_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/rewind_input_plugin.c' object='test_run_input-rewind_input_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-rewind_input_plugin.obj `if test -f 'src/input/rewind_input_plugin.c'; then $(CYGPATH_W) 'src/input/rewind_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/rewind_input_plugin.c'; fi`
-
- test_run_input-icy_metadata.o: src/icy_metadata.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-icy_metadata.o -MD -MP -MF $(DEPDIR)/test_run_input-icy_metadata.Tpo -c -o test_run_input-icy_metadata.o `test -f 'src/icy_metadata.c' || echo '$(srcdir)/'`src/icy_metadata.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-icy_metadata.Tpo $(DEPDIR)/test_run_input-icy_metadata.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-icy_metadata.o -MD -MP -MF "$(DEPDIR)/test_run_input-icy_metadata.Tpo" -c -o test_run_input-icy_metadata.o `test -f 'src/icy_metadata.c' || echo '$(srcdir)/'`src/icy_metadata.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-icy_metadata.Tpo" "$(DEPDIR)/test_run_input-icy_metadata.Po"; else rm -f "$(DEPDIR)/test_run_input-icy_metadata.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/icy_metadata.c' object='test_run_input-icy_metadata.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-icy_metadata.o `test -f 'src/icy_metadata.c' || echo '$(srcdir)/'`src/icy_metadata.c
-
- test_run_input-icy_metadata.obj: src/icy_metadata.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-icy_metadata.obj -MD -MP -MF $(DEPDIR)/test_run_input-icy_metadata.Tpo -c -o test_run_input-icy_metadata.obj `if test -f 'src/icy_metadata.c'; then $(CYGPATH_W) 'src/icy_metadata.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_metadata.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-icy_metadata.Tpo $(DEPDIR)/test_run_input-icy_metadata.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-icy_metadata.obj -MD -MP -MF "$(DEPDIR)/test_run_input-icy_metadata.Tpo" -c -o test_run_input-icy_metadata.obj `if test -f 'src/icy_metadata.c'; then $(CYGPATH_W) 'src/icy_metadata.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_metadata.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-icy_metadata.Tpo" "$(DEPDIR)/test_run_input-icy_metadata.Po"; else rm -f "$(DEPDIR)/test_run_input-icy_metadata.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/icy_metadata.c' object='test_run_input-icy_metadata.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-icy_metadata.obj `if test -f 'src/icy_metadata.c'; then $(CYGPATH_W) 'src/icy_metadata.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_metadata.c'; fi`
-
- test_run_input-lastfm_input_plugin.o: src/input/lastfm_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-lastfm_input_plugin.o -MD -MP -MF $(DEPDIR)/test_run_input-lastfm_input_plugin.Tpo -c -o test_run_input-lastfm_input_plugin.o `test -f 'src/input/lastfm_input_plugin.c' || echo '$(srcdir)/'`src/input/lastfm_input_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-lastfm_input_plugin.Tpo $(DEPDIR)/test_run_input-lastfm_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-lastfm_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_input-lastfm_input_plugin.Tpo" -c -o test_run_input-lastfm_input_plugin.o `test -f 'src/input/lastfm_input_plugin.c' || echo '$(srcdir)/'`src/input/lastfm_input_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-lastfm_input_plugin.Tpo" "$(DEPDIR)/test_run_input-lastfm_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-lastfm_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/lastfm_input_plugin.c' object='test_run_input-lastfm_input_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-lastfm_input_plugin.o `test -f 'src/input/lastfm_input_plugin.c' || echo '$(srcdir)/'`src/input/lastfm_input_plugin.c
-
- test_run_input-lastfm_input_plugin.obj: src/input/lastfm_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-lastfm_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_input-lastfm_input_plugin.Tpo -c -o test_run_input-lastfm_input_plugin.obj `if test -f 'src/input/lastfm_input_plugin.c'; then $(CYGPATH_W) 'src/input/lastfm_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/lastfm_input_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-lastfm_input_plugin.Tpo $(DEPDIR)/test_run_input-lastfm_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-lastfm_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_input-lastfm_input_plugin.Tpo" -c -o test_run_input-lastfm_input_plugin.obj `if test -f 'src/input/lastfm_input_plugin.c'; then $(CYGPATH_W) 'src/input/lastfm_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/lastfm_input_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-lastfm_input_plugin.Tpo" "$(DEPDIR)/test_run_input-lastfm_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-lastfm_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/lastfm_input_plugin.c' object='test_run_input-lastfm_input_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-lastfm_input_plugin.obj `if test -f 'src/input/lastfm_input_plugin.c'; then $(CYGPATH_W) 'src/input/lastfm_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/lastfm_input_plugin.c'; fi`
-
- test_run_input-mms_input_plugin.o: src/input/mms_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-mms_input_plugin.o -MD -MP -MF $(DEPDIR)/test_run_input-mms_input_plugin.Tpo -c -o test_run_input-mms_input_plugin.o `test -f 'src/input/mms_input_plugin.c' || echo '$(srcdir)/'`src/input/mms_input_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-mms_input_plugin.Tpo $(DEPDIR)/test_run_input-mms_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-mms_input_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_input-mms_input_plugin.Tpo" -c -o test_run_input-mms_input_plugin.o `test -f 'src/input/mms_input_plugin.c' || echo '$(srcdir)/'`src/input/mms_input_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-mms_input_plugin.Tpo" "$(DEPDIR)/test_run_input-mms_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-mms_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/mms_input_plugin.c' object='test_run_input-mms_input_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-mms_input_plugin.o `test -f 'src/input/mms_input_plugin.c' || echo '$(srcdir)/'`src/input/mms_input_plugin.c
-
- test_run_input-mms_input_plugin.obj: src/input/mms_input_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-mms_input_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_input-mms_input_plugin.Tpo -c -o test_run_input-mms_input_plugin.obj `if test -f 'src/input/mms_input_plugin.c'; then $(CYGPATH_W) 'src/input/mms_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/mms_input_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_input-mms_input_plugin.Tpo $(DEPDIR)/test_run_input-mms_input_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_input-mms_input_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_input-mms_input_plugin.Tpo" -c -o test_run_input-mms_input_plugin.obj `if test -f 'src/input/mms_input_plugin.c'; then $(CYGPATH_W) 'src/input/mms_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/mms_input_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_input-mms_input_plugin.Tpo" "$(DEPDIR)/test_run_input-mms_input_plugin.Po"; else rm -f "$(DEPDIR)/test_run_input-mms_input_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/input/mms_input_plugin.c' object='test_run_input-mms_input_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_input_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_input-mms_input_plugin.obj `if test -f 'src/input/mms_input_plugin.c'; then $(CYGPATH_W) 'src/input/mms_input_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/input/mms_input_plugin.c'; fi`
-
- test_run_output-run_output.o: test/run_output.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-run_output.o -MD -MP -MF $(DEPDIR)/test_run_output-run_output.Tpo -c -o test_run_output-run_output.o `test -f 'test/run_output.c' || echo '$(srcdir)/'`test/run_output.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-run_output.Tpo $(DEPDIR)/test_run_output-run_output.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-run_output.o -MD -MP -MF "$(DEPDIR)/test_run_output-run_output.Tpo" -c -o test_run_output-run_output.o `test -f 'test/run_output.c' || echo '$(srcdir)/'`test/run_output.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-run_output.Tpo" "$(DEPDIR)/test_run_output-run_output.Po"; else rm -f "$(DEPDIR)/test_run_output-run_output.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/run_output.c' object='test_run_output-run_output.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-run_output.o `test -f 'test/run_output.c' || echo '$(srcdir)/'`test/run_output.c
-
- test_run_output-run_output.obj: test/run_output.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-run_output.obj -MD -MP -MF $(DEPDIR)/test_run_output-run_output.Tpo -c -o test_run_output-run_output.obj `if test -f 'test/run_output.c'; then $(CYGPATH_W) 'test/run_output.c'; else $(CYGPATH_W) '$(srcdir)/test/run_output.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-run_output.Tpo $(DEPDIR)/test_run_output-run_output.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-run_output.obj -MD -MP -MF "$(DEPDIR)/test_run_output-run_output.Tpo" -c -o test_run_output-run_output.obj `if test -f 'test/run_output.c'; then $(CYGPATH_W) 'test/run_output.c'; else $(CYGPATH_W) '$(srcdir)/test/run_output.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-run_output.Tpo" "$(DEPDIR)/test_run_output-run_output.Po"; else rm -f "$(DEPDIR)/test_run_output-run_output.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/run_output.c' object='test_run_output-run_output.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-run_output.obj `if test -f 'test/run_output.c'; then $(CYGPATH_W) 'test/run_output.c'; else $(CYGPATH_W) '$(srcdir)/test/run_output.c'; fi`
-
- test_run_output-conf.o: src/conf.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-conf.o -MD -MP -MF $(DEPDIR)/test_run_output-conf.Tpo -c -o test_run_output-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-conf.Tpo $(DEPDIR)/test_run_output-conf.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-conf.o -MD -MP -MF "$(DEPDIR)/test_run_output-conf.Tpo" -c -o test_run_output-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-conf.Tpo" "$(DEPDIR)/test_run_output-conf.Po"; else rm -f "$(DEPDIR)/test_run_output-conf.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/conf.c' object='test_run_output-conf.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-conf.o `test -f 'src/conf.c' || echo '$(srcdir)/'`src/conf.c
-
- test_run_output-conf.obj: src/conf.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-conf.obj -MD -MP -MF $(DEPDIR)/test_run_output-conf.Tpo -c -o test_run_output-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-conf.Tpo $(DEPDIR)/test_run_output-conf.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-conf.obj -MD -MP -MF "$(DEPDIR)/test_run_output-conf.Tpo" -c -o test_run_output-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-conf.Tpo" "$(DEPDIR)/test_run_output-conf.Po"; else rm -f "$(DEPDIR)/test_run_output-conf.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/conf.c' object='test_run_output-conf.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-conf.obj `if test -f 'src/conf.c'; then $(CYGPATH_W) 'src/conf.c'; else $(CYGPATH_W) '$(srcdir)/src/conf.c'; fi`
-
- test_run_output-buffer2array.o: src/buffer2array.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-buffer2array.o -MD -MP -MF $(DEPDIR)/test_run_output-buffer2array.Tpo -c -o test_run_output-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-buffer2array.Tpo $(DEPDIR)/test_run_output-buffer2array.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-buffer2array.o -MD -MP -MF "$(DEPDIR)/test_run_output-buffer2array.Tpo" -c -o test_run_output-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-buffer2array.Tpo" "$(DEPDIR)/test_run_output-buffer2array.Po"; else rm -f "$(DEPDIR)/test_run_output-buffer2array.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer2array.c' object='test_run_output-buffer2array.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-buffer2array.o `test -f 'src/buffer2array.c' || echo '$(srcdir)/'`src/buffer2array.c
-
- test_run_output-buffer2array.obj: src/buffer2array.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-buffer2array.obj -MD -MP -MF $(DEPDIR)/test_run_output-buffer2array.Tpo -c -o test_run_output-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-buffer2array.Tpo $(DEPDIR)/test_run_output-buffer2array.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-buffer2array.obj -MD -MP -MF "$(DEPDIR)/test_run_output-buffer2array.Tpo" -c -o test_run_output-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-buffer2array.Tpo" "$(DEPDIR)/test_run_output-buffer2array.Po"; else rm -f "$(DEPDIR)/test_run_output-buffer2array.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/buffer2array.c' object='test_run_output-buffer2array.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-buffer2array.obj `if test -f 'src/buffer2array.c'; then $(CYGPATH_W) 'src/buffer2array.c'; else $(CYGPATH_W) '$(srcdir)/src/buffer2array.c'; fi`
-
- test_run_output-utils.o: src/utils.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-utils.o -MD -MP -MF $(DEPDIR)/test_run_output-utils.Tpo -c -o test_run_output-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-utils.Tpo $(DEPDIR)/test_run_output-utils.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-utils.o -MD -MP -MF "$(DEPDIR)/test_run_output-utils.Tpo" -c -o test_run_output-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-utils.Tpo" "$(DEPDIR)/test_run_output-utils.Po"; else rm -f "$(DEPDIR)/test_run_output-utils.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/utils.c' object='test_run_output-utils.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-utils.o `test -f 'src/utils.c' || echo '$(srcdir)/'`src/utils.c
-
- test_run_output-utils.obj: src/utils.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-utils.obj -MD -MP -MF $(DEPDIR)/test_run_output-utils.Tpo -c -o test_run_output-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-utils.Tpo $(DEPDIR)/test_run_output-utils.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-utils.obj -MD -MP -MF "$(DEPDIR)/test_run_output-utils.Tpo" -c -o test_run_output-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-utils.Tpo" "$(DEPDIR)/test_run_output-utils.Po"; else rm -f "$(DEPDIR)/test_run_output-utils.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/utils.c' object='test_run_output-utils.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-utils.obj `if test -f 'src/utils.c'; then $(CYGPATH_W) 'src/utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils.c'; fi`
-
- test_run_output-log.o: src/log.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-log.o -MD -MP -MF $(DEPDIR)/test_run_output-log.Tpo -c -o test_run_output-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-log.Tpo $(DEPDIR)/test_run_output-log.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-log.o -MD -MP -MF "$(DEPDIR)/test_run_output-log.Tpo" -c -o test_run_output-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-log.Tpo" "$(DEPDIR)/test_run_output-log.Po"; else rm -f "$(DEPDIR)/test_run_output-log.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/log.c' object='test_run_output-log.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c
-
- test_run_output-log.obj: src/log.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-log.obj -MD -MP -MF $(DEPDIR)/test_run_output-log.Tpo -c -o test_run_output-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-log.Tpo $(DEPDIR)/test_run_output-log.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-log.obj -MD -MP -MF "$(DEPDIR)/test_run_output-log.Tpo" -c -o test_run_output-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-log.Tpo" "$(DEPDIR)/test_run_output-log.Po"; else rm -f "$(DEPDIR)/test_run_output-log.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/log.c' object='test_run_output-log.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi`
-
- test_run_output-audio_parser.o: src/audio_parser.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-audio_parser.o -MD -MP -MF $(DEPDIR)/test_run_output-audio_parser.Tpo -c -o test_run_output-audio_parser.o `test -f 'src/audio_parser.c' || echo '$(srcdir)/'`src/audio_parser.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-audio_parser.Tpo $(DEPDIR)/test_run_output-audio_parser.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-audio_parser.o -MD -MP -MF "$(DEPDIR)/test_run_output-audio_parser.Tpo" -c -o test_run_output-audio_parser.o `test -f 'src/audio_parser.c' || echo '$(srcdir)/'`src/audio_parser.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-audio_parser.Tpo" "$(DEPDIR)/test_run_output-audio_parser.Po"; else rm -f "$(DEPDIR)/test_run_output-audio_parser.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/audio_parser.c' object='test_run_output-audio_parser.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-audio_parser.o `test -f 'src/audio_parser.c' || echo '$(srcdir)/'`src/audio_parser.c
-
- test_run_output-audio_parser.obj: src/audio_parser.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-audio_parser.obj -MD -MP -MF $(DEPDIR)/test_run_output-audio_parser.Tpo -c -o test_run_output-audio_parser.obj `if test -f 'src/audio_parser.c'; then $(CYGPATH_W) 'src/audio_parser.c'; else $(CYGPATH_W) '$(srcdir)/src/audio_parser.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-audio_parser.Tpo $(DEPDIR)/test_run_output-audio_parser.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-audio_parser.obj -MD -MP -MF "$(DEPDIR)/test_run_output-audio_parser.Tpo" -c -o test_run_output-audio_parser.obj `if test -f 'src/audio_parser.c'; then $(CYGPATH_W) 'src/audio_parser.c'; else $(CYGPATH_W) '$(srcdir)/src/audio_parser.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-audio_parser.Tpo" "$(DEPDIR)/test_run_output-audio_parser.Po"; else rm -f "$(DEPDIR)/test_run_output-audio_parser.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/audio_parser.c' object='test_run_output-audio_parser.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-audio_parser.obj `if test -f 'src/audio_parser.c'; then $(CYGPATH_W) 'src/audio_parser.c'; else $(CYGPATH_W) '$(srcdir)/src/audio_parser.c'; fi`
-
- test_run_output-timer.o: src/timer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-timer.o -MD -MP -MF $(DEPDIR)/test_run_output-timer.Tpo -c -o test_run_output-timer.o `test -f 'src/timer.c' || echo '$(srcdir)/'`src/timer.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-timer.Tpo $(DEPDIR)/test_run_output-timer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-timer.o -MD -MP -MF "$(DEPDIR)/test_run_output-timer.Tpo" -c -o test_run_output-timer.o `test -f 'src/timer.c' || echo '$(srcdir)/'`src/timer.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-timer.Tpo" "$(DEPDIR)/test_run_output-timer.Po"; else rm -f "$(DEPDIR)/test_run_output-timer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/timer.c' object='test_run_output-timer.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-timer.o `test -f 'src/timer.c' || echo '$(srcdir)/'`src/timer.c
-
- test_run_output-timer.obj: src/timer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-timer.obj -MD -MP -MF $(DEPDIR)/test_run_output-timer.Tpo -c -o test_run_output-timer.obj `if test -f 'src/timer.c'; then $(CYGPATH_W) 'src/timer.c'; else $(CYGPATH_W) '$(srcdir)/src/timer.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-timer.Tpo $(DEPDIR)/test_run_output-timer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-timer.obj -MD -MP -MF "$(DEPDIR)/test_run_output-timer.Tpo" -c -o test_run_output-timer.obj `if test -f 'src/timer.c'; then $(CYGPATH_W) 'src/timer.c'; else $(CYGPATH_W) '$(srcdir)/src/timer.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-timer.Tpo" "$(DEPDIR)/test_run_output-timer.Po"; else rm -f "$(DEPDIR)/test_run_output-timer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/timer.c' object='test_run_output-timer.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-timer.obj `if test -f 'src/timer.c'; then $(CYGPATH_W) 'src/timer.c'; else $(CYGPATH_W) '$(srcdir)/src/timer.c'; fi`
-
- test_run_output-tag.o: src/tag.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-tag.o -MD -MP -MF $(DEPDIR)/test_run_output-tag.Tpo -c -o test_run_output-tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-tag.Tpo $(DEPDIR)/test_run_output-tag.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-tag.o -MD -MP -MF "$(DEPDIR)/test_run_output-tag.Tpo" -c -o test_run_output-tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-tag.Tpo" "$(DEPDIR)/test_run_output-tag.Po"; else rm -f "$(DEPDIR)/test_run_output-tag.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag.c' object='test_run_output-tag.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-tag.o `test -f 'src/tag.c' || echo '$(srcdir)/'`src/tag.c
-
- test_run_output-tag.obj: src/tag.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-tag.obj -MD -MP -MF $(DEPDIR)/test_run_output-tag.Tpo -c -o test_run_output-tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-tag.Tpo $(DEPDIR)/test_run_output-tag.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-tag.obj -MD -MP -MF "$(DEPDIR)/test_run_output-tag.Tpo" -c -o test_run_output-tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-tag.Tpo" "$(DEPDIR)/test_run_output-tag.Po"; else rm -f "$(DEPDIR)/test_run_output-tag.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag.c' object='test_run_output-tag.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-tag.obj `if test -f 'src/tag.c'; then $(CYGPATH_W) 'src/tag.c'; else $(CYGPATH_W) '$(srcdir)/src/tag.c'; fi`
-
- test_run_output-tag_pool.o: src/tag_pool.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-tag_pool.o -MD -MP -MF $(DEPDIR)/test_run_output-tag_pool.Tpo -c -o test_run_output-tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-tag_pool.Tpo $(DEPDIR)/test_run_output-tag_pool.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-tag_pool.o -MD -MP -MF "$(DEPDIR)/test_run_output-tag_pool.Tpo" -c -o test_run_output-tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-tag_pool.Tpo" "$(DEPDIR)/test_run_output-tag_pool.Po"; else rm -f "$(DEPDIR)/test_run_output-tag_pool.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_pool.c' object='test_run_output-tag_pool.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-tag_pool.o `test -f 'src/tag_pool.c' || echo '$(srcdir)/'`src/tag_pool.c
-
- test_run_output-tag_pool.obj: src/tag_pool.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-tag_pool.obj -MD -MP -MF $(DEPDIR)/test_run_output-tag_pool.Tpo -c -o test_run_output-tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-tag_pool.Tpo $(DEPDIR)/test_run_output-tag_pool.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-tag_pool.obj -MD -MP -MF "$(DEPDIR)/test_run_output-tag_pool.Tpo" -c -o test_run_output-tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-tag_pool.Tpo" "$(DEPDIR)/test_run_output-tag_pool.Po"; else rm -f "$(DEPDIR)/test_run_output-tag_pool.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/tag_pool.c' object='test_run_output-tag_pool.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-tag_pool.obj `if test -f 'src/tag_pool.c'; then $(CYGPATH_W) 'src/tag_pool.c'; else $(CYGPATH_W) '$(srcdir)/src/tag_pool.c'; fi`
-
- test_run_output-fifo_buffer.o: src/fifo_buffer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-fifo_buffer.o -MD -MP -MF $(DEPDIR)/test_run_output-fifo_buffer.Tpo -c -o test_run_output-fifo_buffer.o `test -f 'src/fifo_buffer.c' || echo '$(srcdir)/'`src/fifo_buffer.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-fifo_buffer.Tpo $(DEPDIR)/test_run_output-fifo_buffer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-fifo_buffer.o -MD -MP -MF "$(DEPDIR)/test_run_output-fifo_buffer.Tpo" -c -o test_run_output-fifo_buffer.o `test -f 'src/fifo_buffer.c' || echo '$(srcdir)/'`src/fifo_buffer.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-fifo_buffer.Tpo" "$(DEPDIR)/test_run_output-fifo_buffer.Po"; else rm -f "$(DEPDIR)/test_run_output-fifo_buffer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/fifo_buffer.c' object='test_run_output-fifo_buffer.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-fifo_buffer.o `test -f 'src/fifo_buffer.c' || echo '$(srcdir)/'`src/fifo_buffer.c
-
- test_run_output-fifo_buffer.obj: src/fifo_buffer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-fifo_buffer.obj -MD -MP -MF $(DEPDIR)/test_run_output-fifo_buffer.Tpo -c -o test_run_output-fifo_buffer.obj `if test -f 'src/fifo_buffer.c'; then $(CYGPATH_W) 'src/fifo_buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/fifo_buffer.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-fifo_buffer.Tpo $(DEPDIR)/test_run_output-fifo_buffer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-fifo_buffer.obj -MD -MP -MF "$(DEPDIR)/test_run_output-fifo_buffer.Tpo" -c -o test_run_output-fifo_buffer.obj `if test -f 'src/fifo_buffer.c'; then $(CYGPATH_W) 'src/fifo_buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/fifo_buffer.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-fifo_buffer.Tpo" "$(DEPDIR)/test_run_output-fifo_buffer.Po"; else rm -f "$(DEPDIR)/test_run_output-fifo_buffer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/fifo_buffer.c' object='test_run_output-fifo_buffer.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-fifo_buffer.obj `if test -f 'src/fifo_buffer.c'; then $(CYGPATH_W) 'src/fifo_buffer.c'; else $(CYGPATH_W) '$(srcdir)/src/fifo_buffer.c'; fi`
-
- test_run_output-page.o: src/page.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-page.o -MD -MP -MF $(DEPDIR)/test_run_output-page.Tpo -c -o test_run_output-page.o `test -f 'src/page.c' || echo '$(srcdir)/'`src/page.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-page.Tpo $(DEPDIR)/test_run_output-page.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-page.o -MD -MP -MF "$(DEPDIR)/test_run_output-page.Tpo" -c -o test_run_output-page.o `test -f 'src/page.c' || echo '$(srcdir)/'`src/page.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-page.Tpo" "$(DEPDIR)/test_run_output-page.Po"; else rm -f "$(DEPDIR)/test_run_output-page.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/page.c' object='test_run_output-page.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-page.o `test -f 'src/page.c' || echo '$(srcdir)/'`src/page.c
-
- test_run_output-page.obj: src/page.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-page.obj -MD -MP -MF $(DEPDIR)/test_run_output-page.Tpo -c -o test_run_output-page.obj `if test -f 'src/page.c'; then $(CYGPATH_W) 'src/page.c'; else $(CYGPATH_W) '$(srcdir)/src/page.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-page.Tpo $(DEPDIR)/test_run_output-page.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-page.obj -MD -MP -MF "$(DEPDIR)/test_run_output-page.Tpo" -c -o test_run_output-page.obj `if test -f 'src/page.c'; then $(CYGPATH_W) 'src/page.c'; else $(CYGPATH_W) '$(srcdir)/src/page.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-page.Tpo" "$(DEPDIR)/test_run_output-page.Po"; else rm -f "$(DEPDIR)/test_run_output-page.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/page.c' object='test_run_output-page.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-page.obj `if test -f 'src/page.c'; then $(CYGPATH_W) 'src/page.c'; else $(CYGPATH_W) '$(srcdir)/src/page.c'; fi`
-
- test_run_output-socket_util.o: src/socket_util.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-socket_util.o -MD -MP -MF $(DEPDIR)/test_run_output-socket_util.Tpo -c -o test_run_output-socket_util.o `test -f 'src/socket_util.c' || echo '$(srcdir)/'`src/socket_util.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-socket_util.Tpo $(DEPDIR)/test_run_output-socket_util.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-socket_util.o -MD -MP -MF "$(DEPDIR)/test_run_output-socket_util.Tpo" -c -o test_run_output-socket_util.o `test -f 'src/socket_util.c' || echo '$(srcdir)/'`src/socket_util.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-socket_util.Tpo" "$(DEPDIR)/test_run_output-socket_util.Po"; else rm -f "$(DEPDIR)/test_run_output-socket_util.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/socket_util.c' object='test_run_output-socket_util.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-socket_util.o `test -f 'src/socket_util.c' || echo '$(srcdir)/'`src/socket_util.c
-
- test_run_output-socket_util.obj: src/socket_util.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-socket_util.obj -MD -MP -MF $(DEPDIR)/test_run_output-socket_util.Tpo -c -o test_run_output-socket_util.obj `if test -f 'src/socket_util.c'; then $(CYGPATH_W) 'src/socket_util.c'; else $(CYGPATH_W) '$(srcdir)/src/socket_util.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-socket_util.Tpo $(DEPDIR)/test_run_output-socket_util.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-socket_util.obj -MD -MP -MF "$(DEPDIR)/test_run_output-socket_util.Tpo" -c -o test_run_output-socket_util.obj `if test -f 'src/socket_util.c'; then $(CYGPATH_W) 'src/socket_util.c'; else $(CYGPATH_W) '$(srcdir)/src/socket_util.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-socket_util.Tpo" "$(DEPDIR)/test_run_output-socket_util.Po"; else rm -f "$(DEPDIR)/test_run_output-socket_util.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/socket_util.c' object='test_run_output-socket_util.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-socket_util.obj `if test -f 'src/socket_util.c'; then $(CYGPATH_W) 'src/socket_util.c'; else $(CYGPATH_W) '$(srcdir)/src/socket_util.c'; fi`
-
- test_run_output-output_init.o: src/output_init.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-output_init.o -MD -MP -MF $(DEPDIR)/test_run_output-output_init.Tpo -c -o test_run_output-output_init.o `test -f 'src/output_init.c' || echo '$(srcdir)/'`src/output_init.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-output_init.Tpo $(DEPDIR)/test_run_output-output_init.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-output_init.o -MD -MP -MF "$(DEPDIR)/test_run_output-output_init.Tpo" -c -o test_run_output-output_init.o `test -f 'src/output_init.c' || echo '$(srcdir)/'`src/output_init.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-output_init.Tpo" "$(DEPDIR)/test_run_output-output_init.Po"; else rm -f "$(DEPDIR)/test_run_output-output_init.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_init.c' object='test_run_output-output_init.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-output_init.o `test -f 'src/output_init.c' || echo '$(srcdir)/'`src/output_init.c
-
- test_run_output-output_init.obj: src/output_init.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-output_init.obj -MD -MP -MF $(DEPDIR)/test_run_output-output_init.Tpo -c -o test_run_output-output_init.obj `if test -f 'src/output_init.c'; then $(CYGPATH_W) 'src/output_init.c'; else $(CYGPATH_W) '$(srcdir)/src/output_init.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-output_init.Tpo $(DEPDIR)/test_run_output-output_init.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-output_init.obj -MD -MP -MF "$(DEPDIR)/test_run_output-output_init.Tpo" -c -o test_run_output-output_init.obj `if test -f 'src/output_init.c'; then $(CYGPATH_W) 'src/output_init.c'; else $(CYGPATH_W) '$(srcdir)/src/output_init.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-output_init.Tpo" "$(DEPDIR)/test_run_output-output_init.Po"; else rm -f "$(DEPDIR)/test_run_output-output_init.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_init.c' object='test_run_output-output_init.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-output_init.obj `if test -f 'src/output_init.c'; then $(CYGPATH_W) 'src/output_init.c'; else $(CYGPATH_W) '$(srcdir)/src/output_init.c'; fi`
-
- test_run_output-output_list.o: src/output_list.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-output_list.o -MD -MP -MF $(DEPDIR)/test_run_output-output_list.Tpo -c -o test_run_output-output_list.o `test -f 'src/output_list.c' || echo '$(srcdir)/'`src/output_list.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-output_list.Tpo $(DEPDIR)/test_run_output-output_list.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-output_list.o -MD -MP -MF "$(DEPDIR)/test_run_output-output_list.Tpo" -c -o test_run_output-output_list.o `test -f 'src/output_list.c' || echo '$(srcdir)/'`src/output_list.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-output_list.Tpo" "$(DEPDIR)/test_run_output-output_list.Po"; else rm -f "$(DEPDIR)/test_run_output-output_list.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_list.c' object='test_run_output-output_list.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-output_list.o `test -f 'src/output_list.c' || echo '$(srcdir)/'`src/output_list.c
-
- test_run_output-output_list.obj: src/output_list.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-output_list.obj -MD -MP -MF $(DEPDIR)/test_run_output-output_list.Tpo -c -o test_run_output-output_list.obj `if test -f 'src/output_list.c'; then $(CYGPATH_W) 'src/output_list.c'; else $(CYGPATH_W) '$(srcdir)/src/output_list.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-output_list.Tpo $(DEPDIR)/test_run_output-output_list.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-output_list.obj -MD -MP -MF "$(DEPDIR)/test_run_output-output_list.Tpo" -c -o test_run_output-output_list.obj `if test -f 'src/output_list.c'; then $(CYGPATH_W) 'src/output_list.c'; else $(CYGPATH_W) '$(srcdir)/src/output_list.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-output_list.Tpo" "$(DEPDIR)/test_run_output-output_list.Po"; else rm -f "$(DEPDIR)/test_run_output-output_list.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output_list.c' object='test_run_output-output_list.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-output_list.obj `if test -f 'src/output_list.c'; then $(CYGPATH_W) 'src/output_list.c'; else $(CYGPATH_W) '$(srcdir)/src/output_list.c'; fi`
-
- test_run_output-encoder_list.o: src/encoder_list.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-encoder_list.o -MD -MP -MF $(DEPDIR)/test_run_output-encoder_list.Tpo -c -o test_run_output-encoder_list.o `test -f 'src/encoder_list.c' || echo '$(srcdir)/'`src/encoder_list.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-encoder_list.Tpo $(DEPDIR)/test_run_output-encoder_list.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-encoder_list.o -MD -MP -MF "$(DEPDIR)/test_run_output-encoder_list.Tpo" -c -o test_run_output-encoder_list.o `test -f 'src/encoder_list.c' || echo '$(srcdir)/'`src/encoder_list.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-encoder_list.Tpo" "$(DEPDIR)/test_run_output-encoder_list.Po"; else rm -f "$(DEPDIR)/test_run_output-encoder_list.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder_list.c' object='test_run_output-encoder_list.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-encoder_list.o `test -f 'src/encoder_list.c' || echo '$(srcdir)/'`src/encoder_list.c
-
- test_run_output-encoder_list.obj: src/encoder_list.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-encoder_list.obj -MD -MP -MF $(DEPDIR)/test_run_output-encoder_list.Tpo -c -o test_run_output-encoder_list.obj `if test -f 'src/encoder_list.c'; then $(CYGPATH_W) 'src/encoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder_list.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-encoder_list.Tpo $(DEPDIR)/test_run_output-encoder_list.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-encoder_list.obj -MD -MP -MF "$(DEPDIR)/test_run_output-encoder_list.Tpo" -c -o test_run_output-encoder_list.obj `if test -f 'src/encoder_list.c'; then $(CYGPATH_W) 'src/encoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder_list.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-encoder_list.Tpo" "$(DEPDIR)/test_run_output-encoder_list.Po"; else rm -f "$(DEPDIR)/test_run_output-encoder_list.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder_list.c' object='test_run_output-encoder_list.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-encoder_list.obj `if test -f 'src/encoder_list.c'; then $(CYGPATH_W) 'src/encoder_list.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder_list.c'; fi`
-
- test_run_output-vorbis_encoder.o: src/encoder/vorbis_encoder.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-vorbis_encoder.o -MD -MP -MF $(DEPDIR)/test_run_output-vorbis_encoder.Tpo -c -o test_run_output-vorbis_encoder.o `test -f 'src/encoder/vorbis_encoder.c' || echo '$(srcdir)/'`src/encoder/vorbis_encoder.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-vorbis_encoder.Tpo $(DEPDIR)/test_run_output-vorbis_encoder.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-vorbis_encoder.o -MD -MP -MF "$(DEPDIR)/test_run_output-vorbis_encoder.Tpo" -c -o test_run_output-vorbis_encoder.o `test -f 'src/encoder/vorbis_encoder.c' || echo '$(srcdir)/'`src/encoder/vorbis_encoder.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-vorbis_encoder.Tpo" "$(DEPDIR)/test_run_output-vorbis_encoder.Po"; else rm -f "$(DEPDIR)/test_run_output-vorbis_encoder.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder/vorbis_encoder.c' object='test_run_output-vorbis_encoder.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-vorbis_encoder.o `test -f 'src/encoder/vorbis_encoder.c' || echo '$(srcdir)/'`src/encoder/vorbis_encoder.c
-
- test_run_output-vorbis_encoder.obj: src/encoder/vorbis_encoder.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-vorbis_encoder.obj -MD -MP -MF $(DEPDIR)/test_run_output-vorbis_encoder.Tpo -c -o test_run_output-vorbis_encoder.obj `if test -f 'src/encoder/vorbis_encoder.c'; then $(CYGPATH_W) 'src/encoder/vorbis_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/vorbis_encoder.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-vorbis_encoder.Tpo $(DEPDIR)/test_run_output-vorbis_encoder.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-vorbis_encoder.obj -MD -MP -MF "$(DEPDIR)/test_run_output-vorbis_encoder.Tpo" -c -o test_run_output-vorbis_encoder.obj `if test -f 'src/encoder/vorbis_encoder.c'; then $(CYGPATH_W) 'src/encoder/vorbis_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/vorbis_encoder.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-vorbis_encoder.Tpo" "$(DEPDIR)/test_run_output-vorbis_encoder.Po"; else rm -f "$(DEPDIR)/test_run_output-vorbis_encoder.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder/vorbis_encoder.c' object='test_run_output-vorbis_encoder.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-vorbis_encoder.obj `if test -f 'src/encoder/vorbis_encoder.c'; then $(CYGPATH_W) 'src/encoder/vorbis_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/vorbis_encoder.c'; fi`
-
- test_run_output-lame_encoder.o: src/encoder/lame_encoder.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-lame_encoder.o -MD -MP -MF $(DEPDIR)/test_run_output-lame_encoder.Tpo -c -o test_run_output-lame_encoder.o `test -f 'src/encoder/lame_encoder.c' || echo '$(srcdir)/'`src/encoder/lame_encoder.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-lame_encoder.Tpo $(DEPDIR)/test_run_output-lame_encoder.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-lame_encoder.o -MD -MP -MF "$(DEPDIR)/test_run_output-lame_encoder.Tpo" -c -o test_run_output-lame_encoder.o `test -f 'src/encoder/lame_encoder.c' || echo '$(srcdir)/'`src/encoder/lame_encoder.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-lame_encoder.Tpo" "$(DEPDIR)/test_run_output-lame_encoder.Po"; else rm -f "$(DEPDIR)/test_run_output-lame_encoder.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder/lame_encoder.c' object='test_run_output-lame_encoder.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-lame_encoder.o `test -f 'src/encoder/lame_encoder.c' || echo '$(srcdir)/'`src/encoder/lame_encoder.c
-
- test_run_output-lame_encoder.obj: src/encoder/lame_encoder.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-lame_encoder.obj -MD -MP -MF $(DEPDIR)/test_run_output-lame_encoder.Tpo -c -o test_run_output-lame_encoder.obj `if test -f 'src/encoder/lame_encoder.c'; then $(CYGPATH_W) 'src/encoder/lame_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/lame_encoder.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-lame_encoder.Tpo $(DEPDIR)/test_run_output-lame_encoder.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-lame_encoder.obj -MD -MP -MF "$(DEPDIR)/test_run_output-lame_encoder.Tpo" -c -o test_run_output-lame_encoder.obj `if test -f 'src/encoder/lame_encoder.c'; then $(CYGPATH_W) 'src/encoder/lame_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/lame_encoder.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-lame_encoder.Tpo" "$(DEPDIR)/test_run_output-lame_encoder.Po"; else rm -f "$(DEPDIR)/test_run_output-lame_encoder.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/encoder/lame_encoder.c' object='test_run_output-lame_encoder.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-lame_encoder.obj `if test -f 'src/encoder/lame_encoder.c'; then $(CYGPATH_W) 'src/encoder/lame_encoder.c'; else $(CYGPATH_W) '$(srcdir)/src/encoder/lame_encoder.c'; fi`
-
- test_run_output-mixer_api.o: src/mixer_api.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-mixer_api.o -MD -MP -MF $(DEPDIR)/test_run_output-mixer_api.Tpo -c -o test_run_output-mixer_api.o `test -f 'src/mixer_api.c' || echo '$(srcdir)/'`src/mixer_api.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-mixer_api.Tpo $(DEPDIR)/test_run_output-mixer_api.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-mixer_api.o -MD -MP -MF "$(DEPDIR)/test_run_output-mixer_api.Tpo" -c -o test_run_output-mixer_api.o `test -f 'src/mixer_api.c' || echo '$(srcdir)/'`src/mixer_api.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-mixer_api.Tpo" "$(DEPDIR)/test_run_output-mixer_api.Po"; else rm -f "$(DEPDIR)/test_run_output-mixer_api.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer_api.c' object='test_run_output-mixer_api.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-mixer_api.o `test -f 'src/mixer_api.c' || echo '$(srcdir)/'`src/mixer_api.c
-
- test_run_output-mixer_api.obj: src/mixer_api.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-mixer_api.obj -MD -MP -MF $(DEPDIR)/test_run_output-mixer_api.Tpo -c -o test_run_output-mixer_api.obj `if test -f 'src/mixer_api.c'; then $(CYGPATH_W) 'src/mixer_api.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_api.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-mixer_api.Tpo $(DEPDIR)/test_run_output-mixer_api.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-mixer_api.obj -MD -MP -MF "$(DEPDIR)/test_run_output-mixer_api.Tpo" -c -o test_run_output-mixer_api.obj `if test -f 'src/mixer_api.c'; then $(CYGPATH_W) 'src/mixer_api.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_api.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-mixer_api.Tpo" "$(DEPDIR)/test_run_output-mixer_api.Po"; else rm -f "$(DEPDIR)/test_run_output-mixer_api.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer_api.c' object='test_run_output-mixer_api.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-mixer_api.obj `if test -f 'src/mixer_api.c'; then $(CYGPATH_W) 'src/mixer_api.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_api.c'; fi`
-
- test_run_output-mixer_control.o: src/mixer_control.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-mixer_control.o -MD -MP -MF $(DEPDIR)/test_run_output-mixer_control.Tpo -c -o test_run_output-mixer_control.o `test -f 'src/mixer_control.c' || echo '$(srcdir)/'`src/mixer_control.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-mixer_control.Tpo $(DEPDIR)/test_run_output-mixer_control.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-mixer_control.o -MD -MP -MF "$(DEPDIR)/test_run_output-mixer_control.Tpo" -c -o test_run_output-mixer_control.o `test -f 'src/mixer_control.c' || echo '$(srcdir)/'`src/mixer_control.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-mixer_control.Tpo" "$(DEPDIR)/test_run_output-mixer_control.Po"; else rm -f "$(DEPDIR)/test_run_output-mixer_control.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer_control.c' object='test_run_output-mixer_control.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-mixer_control.o `test -f 'src/mixer_control.c' || echo '$(srcdir)/'`src/mixer_control.c
-
- test_run_output-mixer_control.obj: src/mixer_control.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-mixer_control.obj -MD -MP -MF $(DEPDIR)/test_run_output-mixer_control.Tpo -c -o test_run_output-mixer_control.obj `if test -f 'src/mixer_control.c'; then $(CYGPATH_W) 'src/mixer_control.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_control.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-mixer_control.Tpo $(DEPDIR)/test_run_output-mixer_control.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-mixer_control.obj -MD -MP -MF "$(DEPDIR)/test_run_output-mixer_control.Tpo" -c -o test_run_output-mixer_control.obj `if test -f 'src/mixer_control.c'; then $(CYGPATH_W) 'src/mixer_control.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_control.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-mixer_control.Tpo" "$(DEPDIR)/test_run_output-mixer_control.Po"; else rm -f "$(DEPDIR)/test_run_output-mixer_control.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer_control.c' object='test_run_output-mixer_control.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-mixer_control.obj `if test -f 'src/mixer_control.c'; then $(CYGPATH_W) 'src/mixer_control.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer_control.c'; fi`
-
- test_run_output-alsa_mixer.o: src/mixer/alsa_mixer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-alsa_mixer.o -MD -MP -MF $(DEPDIR)/test_run_output-alsa_mixer.Tpo -c -o test_run_output-alsa_mixer.o `test -f 'src/mixer/alsa_mixer.c' || echo '$(srcdir)/'`src/mixer/alsa_mixer.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-alsa_mixer.Tpo $(DEPDIR)/test_run_output-alsa_mixer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-alsa_mixer.o -MD -MP -MF "$(DEPDIR)/test_run_output-alsa_mixer.Tpo" -c -o test_run_output-alsa_mixer.o `test -f 'src/mixer/alsa_mixer.c' || echo '$(srcdir)/'`src/mixer/alsa_mixer.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-alsa_mixer.Tpo" "$(DEPDIR)/test_run_output-alsa_mixer.Po"; else rm -f "$(DEPDIR)/test_run_output-alsa_mixer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/alsa_mixer.c' object='test_run_output-alsa_mixer.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-alsa_mixer.o `test -f 'src/mixer/alsa_mixer.c' || echo '$(srcdir)/'`src/mixer/alsa_mixer.c
-
- test_run_output-alsa_mixer.obj: src/mixer/alsa_mixer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-alsa_mixer.obj -MD -MP -MF $(DEPDIR)/test_run_output-alsa_mixer.Tpo -c -o test_run_output-alsa_mixer.obj `if test -f 'src/mixer/alsa_mixer.c'; then $(CYGPATH_W) 'src/mixer/alsa_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/alsa_mixer.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-alsa_mixer.Tpo $(DEPDIR)/test_run_output-alsa_mixer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-alsa_mixer.obj -MD -MP -MF "$(DEPDIR)/test_run_output-alsa_mixer.Tpo" -c -o test_run_output-alsa_mixer.obj `if test -f 'src/mixer/alsa_mixer.c'; then $(CYGPATH_W) 'src/mixer/alsa_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/alsa_mixer.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-alsa_mixer.Tpo" "$(DEPDIR)/test_run_output-alsa_mixer.Po"; else rm -f "$(DEPDIR)/test_run_output-alsa_mixer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/alsa_mixer.c' object='test_run_output-alsa_mixer.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-alsa_mixer.obj `if test -f 'src/mixer/alsa_mixer.c'; then $(CYGPATH_W) 'src/mixer/alsa_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/alsa_mixer.c'; fi`
-
- test_run_output-oss_mixer.o: src/mixer/oss_mixer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-oss_mixer.o -MD -MP -MF $(DEPDIR)/test_run_output-oss_mixer.Tpo -c -o test_run_output-oss_mixer.o `test -f 'src/mixer/oss_mixer.c' || echo '$(srcdir)/'`src/mixer/oss_mixer.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-oss_mixer.Tpo $(DEPDIR)/test_run_output-oss_mixer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-oss_mixer.o -MD -MP -MF "$(DEPDIR)/test_run_output-oss_mixer.Tpo" -c -o test_run_output-oss_mixer.o `test -f 'src/mixer/oss_mixer.c' || echo '$(srcdir)/'`src/mixer/oss_mixer.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-oss_mixer.Tpo" "$(DEPDIR)/test_run_output-oss_mixer.Po"; else rm -f "$(DEPDIR)/test_run_output-oss_mixer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/oss_mixer.c' object='test_run_output-oss_mixer.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-oss_mixer.o `test -f 'src/mixer/oss_mixer.c' || echo '$(srcdir)/'`src/mixer/oss_mixer.c
-
- test_run_output-oss_mixer.obj: src/mixer/oss_mixer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-oss_mixer.obj -MD -MP -MF $(DEPDIR)/test_run_output-oss_mixer.Tpo -c -o test_run_output-oss_mixer.obj `if test -f 'src/mixer/oss_mixer.c'; then $(CYGPATH_W) 'src/mixer/oss_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/oss_mixer.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-oss_mixer.Tpo $(DEPDIR)/test_run_output-oss_mixer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-oss_mixer.obj -MD -MP -MF "$(DEPDIR)/test_run_output-oss_mixer.Tpo" -c -o test_run_output-oss_mixer.obj `if test -f 'src/mixer/oss_mixer.c'; then $(CYGPATH_W) 'src/mixer/oss_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/oss_mixer.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-oss_mixer.Tpo" "$(DEPDIR)/test_run_output-oss_mixer.Po"; else rm -f "$(DEPDIR)/test_run_output-oss_mixer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/oss_mixer.c' object='test_run_output-oss_mixer.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-oss_mixer.obj `if test -f 'src/mixer/oss_mixer.c'; then $(CYGPATH_W) 'src/mixer/oss_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/oss_mixer.c'; fi`
-
- test_run_output-pulse_mixer.o: src/mixer/pulse_mixer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-pulse_mixer.o -MD -MP -MF $(DEPDIR)/test_run_output-pulse_mixer.Tpo -c -o test_run_output-pulse_mixer.o `test -f 'src/mixer/pulse_mixer.c' || echo '$(srcdir)/'`src/mixer/pulse_mixer.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-pulse_mixer.Tpo $(DEPDIR)/test_run_output-pulse_mixer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-pulse_mixer.o -MD -MP -MF "$(DEPDIR)/test_run_output-pulse_mixer.Tpo" -c -o test_run_output-pulse_mixer.o `test -f 'src/mixer/pulse_mixer.c' || echo '$(srcdir)/'`src/mixer/pulse_mixer.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-pulse_mixer.Tpo" "$(DEPDIR)/test_run_output-pulse_mixer.Po"; else rm -f "$(DEPDIR)/test_run_output-pulse_mixer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/pulse_mixer.c' object='test_run_output-pulse_mixer.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-pulse_mixer.o `test -f 'src/mixer/pulse_mixer.c' || echo '$(srcdir)/'`src/mixer/pulse_mixer.c
-
- test_run_output-pulse_mixer.obj: src/mixer/pulse_mixer.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-pulse_mixer.obj -MD -MP -MF $(DEPDIR)/test_run_output-pulse_mixer.Tpo -c -o test_run_output-pulse_mixer.obj `if test -f 'src/mixer/pulse_mixer.c'; then $(CYGPATH_W) 'src/mixer/pulse_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/pulse_mixer.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-pulse_mixer.Tpo $(DEPDIR)/test_run_output-pulse_mixer.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-pulse_mixer.obj -MD -MP -MF "$(DEPDIR)/test_run_output-pulse_mixer.Tpo" -c -o test_run_output-pulse_mixer.obj `if test -f 'src/mixer/pulse_mixer.c'; then $(CYGPATH_W) 'src/mixer/pulse_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/pulse_mixer.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-pulse_mixer.Tpo" "$(DEPDIR)/test_run_output-pulse_mixer.Po"; else rm -f "$(DEPDIR)/test_run_output-pulse_mixer.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/mixer/pulse_mixer.c' object='test_run_output-pulse_mixer.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-pulse_mixer.obj `if test -f 'src/mixer/pulse_mixer.c'; then $(CYGPATH_W) 'src/mixer/pulse_mixer.c'; else $(CYGPATH_W) '$(srcdir)/src/mixer/pulse_mixer.c'; fi`
-
- test_run_output-null_plugin.o: src/output/null_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-null_plugin.o -MD -MP -MF $(DEPDIR)/test_run_output-null_plugin.Tpo -c -o test_run_output-null_plugin.o `test -f 'src/output/null_plugin.c' || echo '$(srcdir)/'`src/output/null_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-null_plugin.Tpo $(DEPDIR)/test_run_output-null_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-null_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_output-null_plugin.Tpo" -c -o test_run_output-null_plugin.o `test -f 'src/output/null_plugin.c' || echo '$(srcdir)/'`src/output/null_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-null_plugin.Tpo" "$(DEPDIR)/test_run_output-null_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-null_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/null_plugin.c' object='test_run_output-null_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-null_plugin.o `test -f 'src/output/null_plugin.c' || echo '$(srcdir)/'`src/output/null_plugin.c
-
- test_run_output-null_plugin.obj: src/output/null_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-null_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_output-null_plugin.Tpo -c -o test_run_output-null_plugin.obj `if test -f 'src/output/null_plugin.c'; then $(CYGPATH_W) 'src/output/null_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/null_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-null_plugin.Tpo $(DEPDIR)/test_run_output-null_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-null_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_output-null_plugin.Tpo" -c -o test_run_output-null_plugin.obj `if test -f 'src/output/null_plugin.c'; then $(CYGPATH_W) 'src/output/null_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/null_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-null_plugin.Tpo" "$(DEPDIR)/test_run_output-null_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-null_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/null_plugin.c' object='test_run_output-null_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-null_plugin.obj `if test -f 'src/output/null_plugin.c'; then $(CYGPATH_W) 'src/output/null_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/null_plugin.c'; fi`
-
- test_run_output-alsa_plugin.o: src/output/alsa_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-alsa_plugin.o -MD -MP -MF $(DEPDIR)/test_run_output-alsa_plugin.Tpo -c -o test_run_output-alsa_plugin.o `test -f 'src/output/alsa_plugin.c' || echo '$(srcdir)/'`src/output/alsa_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-alsa_plugin.Tpo $(DEPDIR)/test_run_output-alsa_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-alsa_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_output-alsa_plugin.Tpo" -c -o test_run_output-alsa_plugin.o `test -f 'src/output/alsa_plugin.c' || echo '$(srcdir)/'`src/output/alsa_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-alsa_plugin.Tpo" "$(DEPDIR)/test_run_output-alsa_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-alsa_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/alsa_plugin.c' object='test_run_output-alsa_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-alsa_plugin.o `test -f 'src/output/alsa_plugin.c' || echo '$(srcdir)/'`src/output/alsa_plugin.c
-
- test_run_output-alsa_plugin.obj: src/output/alsa_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-alsa_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_output-alsa_plugin.Tpo -c -o test_run_output-alsa_plugin.obj `if test -f 'src/output/alsa_plugin.c'; then $(CYGPATH_W) 'src/output/alsa_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/alsa_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-alsa_plugin.Tpo $(DEPDIR)/test_run_output-alsa_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-alsa_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_output-alsa_plugin.Tpo" -c -o test_run_output-alsa_plugin.obj `if test -f 'src/output/alsa_plugin.c'; then $(CYGPATH_W) 'src/output/alsa_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/alsa_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-alsa_plugin.Tpo" "$(DEPDIR)/test_run_output-alsa_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-alsa_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/alsa_plugin.c' object='test_run_output-alsa_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-alsa_plugin.obj `if test -f 'src/output/alsa_plugin.c'; then $(CYGPATH_W) 'src/output/alsa_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/alsa_plugin.c'; fi`
-
- test_run_output-ao_plugin.o: src/output/ao_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-ao_plugin.o -MD -MP -MF $(DEPDIR)/test_run_output-ao_plugin.Tpo -c -o test_run_output-ao_plugin.o `test -f 'src/output/ao_plugin.c' || echo '$(srcdir)/'`src/output/ao_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-ao_plugin.Tpo $(DEPDIR)/test_run_output-ao_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-ao_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_output-ao_plugin.Tpo" -c -o test_run_output-ao_plugin.o `test -f 'src/output/ao_plugin.c' || echo '$(srcdir)/'`src/output/ao_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-ao_plugin.Tpo" "$(DEPDIR)/test_run_output-ao_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-ao_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/ao_plugin.c' object='test_run_output-ao_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-ao_plugin.o `test -f 'src/output/ao_plugin.c' || echo '$(srcdir)/'`src/output/ao_plugin.c
-
- test_run_output-ao_plugin.obj: src/output/ao_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-ao_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_output-ao_plugin.Tpo -c -o test_run_output-ao_plugin.obj `if test -f 'src/output/ao_plugin.c'; then $(CYGPATH_W) 'src/output/ao_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/ao_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-ao_plugin.Tpo $(DEPDIR)/test_run_output-ao_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-ao_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_output-ao_plugin.Tpo" -c -o test_run_output-ao_plugin.obj `if test -f 'src/output/ao_plugin.c'; then $(CYGPATH_W) 'src/output/ao_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/ao_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-ao_plugin.Tpo" "$(DEPDIR)/test_run_output-ao_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-ao_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/ao_plugin.c' object='test_run_output-ao_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-ao_plugin.obj `if test -f 'src/output/ao_plugin.c'; then $(CYGPATH_W) 'src/output/ao_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/ao_plugin.c'; fi`
-
- test_run_output-fifo_plugin.o: src/output/fifo_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-fifo_plugin.o -MD -MP -MF $(DEPDIR)/test_run_output-fifo_plugin.Tpo -c -o test_run_output-fifo_plugin.o `test -f 'src/output/fifo_plugin.c' || echo '$(srcdir)/'`src/output/fifo_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-fifo_plugin.Tpo $(DEPDIR)/test_run_output-fifo_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-fifo_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_output-fifo_plugin.Tpo" -c -o test_run_output-fifo_plugin.o `test -f 'src/output/fifo_plugin.c' || echo '$(srcdir)/'`src/output/fifo_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-fifo_plugin.Tpo" "$(DEPDIR)/test_run_output-fifo_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-fifo_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/fifo_plugin.c' object='test_run_output-fifo_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-fifo_plugin.o `test -f 'src/output/fifo_plugin.c' || echo '$(srcdir)/'`src/output/fifo_plugin.c
-
- test_run_output-fifo_plugin.obj: src/output/fifo_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-fifo_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_output-fifo_plugin.Tpo -c -o test_run_output-fifo_plugin.obj `if test -f 'src/output/fifo_plugin.c'; then $(CYGPATH_W) 'src/output/fifo_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/fifo_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-fifo_plugin.Tpo $(DEPDIR)/test_run_output-fifo_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-fifo_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_output-fifo_plugin.Tpo" -c -o test_run_output-fifo_plugin.obj `if test -f 'src/output/fifo_plugin.c'; then $(CYGPATH_W) 'src/output/fifo_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/fifo_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-fifo_plugin.Tpo" "$(DEPDIR)/test_run_output-fifo_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-fifo_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/fifo_plugin.c' object='test_run_output-fifo_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-fifo_plugin.obj `if test -f 'src/output/fifo_plugin.c'; then $(CYGPATH_W) 'src/output/fifo_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/fifo_plugin.c'; fi`
-
- test_run_output-pipe_output_plugin.o: src/output/pipe_output_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-pipe_output_plugin.o -MD -MP -MF $(DEPDIR)/test_run_output-pipe_output_plugin.Tpo -c -o test_run_output-pipe_output_plugin.o `test -f 'src/output/pipe_output_plugin.c' || echo '$(srcdir)/'`src/output/pipe_output_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-pipe_output_plugin.Tpo $(DEPDIR)/test_run_output-pipe_output_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-pipe_output_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_output-pipe_output_plugin.Tpo" -c -o test_run_output-pipe_output_plugin.o `test -f 'src/output/pipe_output_plugin.c' || echo '$(srcdir)/'`src/output/pipe_output_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-pipe_output_plugin.Tpo" "$(DEPDIR)/test_run_output-pipe_output_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-pipe_output_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/pipe_output_plugin.c' object='test_run_output-pipe_output_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-pipe_output_plugin.o `test -f 'src/output/pipe_output_plugin.c' || echo '$(srcdir)/'`src/output/pipe_output_plugin.c
-
- test_run_output-pipe_output_plugin.obj: src/output/pipe_output_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-pipe_output_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_output-pipe_output_plugin.Tpo -c -o test_run_output-pipe_output_plugin.obj `if test -f 'src/output/pipe_output_plugin.c'; then $(CYGPATH_W) 'src/output/pipe_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/pipe_output_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-pipe_output_plugin.Tpo $(DEPDIR)/test_run_output-pipe_output_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-pipe_output_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_output-pipe_output_plugin.Tpo" -c -o test_run_output-pipe_output_plugin.obj `if test -f 'src/output/pipe_output_plugin.c'; then $(CYGPATH_W) 'src/output/pipe_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/pipe_output_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-pipe_output_plugin.Tpo" "$(DEPDIR)/test_run_output-pipe_output_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-pipe_output_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/pipe_output_plugin.c' object='test_run_output-pipe_output_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-pipe_output_plugin.obj `if test -f 'src/output/pipe_output_plugin.c'; then $(CYGPATH_W) 'src/output/pipe_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/pipe_output_plugin.c'; fi`
-
- test_run_output-jack_plugin.o: src/output/jack_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-jack_plugin.o -MD -MP -MF $(DEPDIR)/test_run_output-jack_plugin.Tpo -c -o test_run_output-jack_plugin.o `test -f 'src/output/jack_plugin.c' || echo '$(srcdir)/'`src/output/jack_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-jack_plugin.Tpo $(DEPDIR)/test_run_output-jack_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-jack_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_output-jack_plugin.Tpo" -c -o test_run_output-jack_plugin.o `test -f 'src/output/jack_plugin.c' || echo '$(srcdir)/'`src/output/jack_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-jack_plugin.Tpo" "$(DEPDIR)/test_run_output-jack_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-jack_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/jack_plugin.c' object='test_run_output-jack_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-jack_plugin.o `test -f 'src/output/jack_plugin.c' || echo '$(srcdir)/'`src/output/jack_plugin.c
-
- test_run_output-jack_plugin.obj: src/output/jack_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-jack_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_output-jack_plugin.Tpo -c -o test_run_output-jack_plugin.obj `if test -f 'src/output/jack_plugin.c'; then $(CYGPATH_W) 'src/output/jack_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/jack_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-jack_plugin.Tpo $(DEPDIR)/test_run_output-jack_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-jack_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_output-jack_plugin.Tpo" -c -o test_run_output-jack_plugin.obj `if test -f 'src/output/jack_plugin.c'; then $(CYGPATH_W) 'src/output/jack_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/jack_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-jack_plugin.Tpo" "$(DEPDIR)/test_run_output-jack_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-jack_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/jack_plugin.c' object='test_run_output-jack_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-jack_plugin.obj `if test -f 'src/output/jack_plugin.c'; then $(CYGPATH_W) 'src/output/jack_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/jack_plugin.c'; fi`
-
- test_run_output-mvp_plugin.o: src/output/mvp_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-mvp_plugin.o -MD -MP -MF $(DEPDIR)/test_run_output-mvp_plugin.Tpo -c -o test_run_output-mvp_plugin.o `test -f 'src/output/mvp_plugin.c' || echo '$(srcdir)/'`src/output/mvp_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-mvp_plugin.Tpo $(DEPDIR)/test_run_output-mvp_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-mvp_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_output-mvp_plugin.Tpo" -c -o test_run_output-mvp_plugin.o `test -f 'src/output/mvp_plugin.c' || echo '$(srcdir)/'`src/output/mvp_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-mvp_plugin.Tpo" "$(DEPDIR)/test_run_output-mvp_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-mvp_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/mvp_plugin.c' object='test_run_output-mvp_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-mvp_plugin.o `test -f 'src/output/mvp_plugin.c' || echo '$(srcdir)/'`src/output/mvp_plugin.c
-
- test_run_output-mvp_plugin.obj: src/output/mvp_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-mvp_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_output-mvp_plugin.Tpo -c -o test_run_output-mvp_plugin.obj `if test -f 'src/output/mvp_plugin.c'; then $(CYGPATH_W) 'src/output/mvp_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/mvp_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-mvp_plugin.Tpo $(DEPDIR)/test_run_output-mvp_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-mvp_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_output-mvp_plugin.Tpo" -c -o test_run_output-mvp_plugin.obj `if test -f 'src/output/mvp_plugin.c'; then $(CYGPATH_W) 'src/output/mvp_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/mvp_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-mvp_plugin.Tpo" "$(DEPDIR)/test_run_output-mvp_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-mvp_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/mvp_plugin.c' object='test_run_output-mvp_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-mvp_plugin.obj `if test -f 'src/output/mvp_plugin.c'; then $(CYGPATH_W) 'src/output/mvp_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/mvp_plugin.c'; fi`
-
- test_run_output-oss_plugin.o: src/output/oss_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-oss_plugin.o -MD -MP -MF $(DEPDIR)/test_run_output-oss_plugin.Tpo -c -o test_run_output-oss_plugin.o `test -f 'src/output/oss_plugin.c' || echo '$(srcdir)/'`src/output/oss_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-oss_plugin.Tpo $(DEPDIR)/test_run_output-oss_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-oss_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_output-oss_plugin.Tpo" -c -o test_run_output-oss_plugin.o `test -f 'src/output/oss_plugin.c' || echo '$(srcdir)/'`src/output/oss_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-oss_plugin.Tpo" "$(DEPDIR)/test_run_output-oss_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-oss_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/oss_plugin.c' object='test_run_output-oss_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-oss_plugin.o `test -f 'src/output/oss_plugin.c' || echo '$(srcdir)/'`src/output/oss_plugin.c
-
- test_run_output-oss_plugin.obj: src/output/oss_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-oss_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_output-oss_plugin.Tpo -c -o test_run_output-oss_plugin.obj `if test -f 'src/output/oss_plugin.c'; then $(CYGPATH_W) 'src/output/oss_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/oss_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-oss_plugin.Tpo $(DEPDIR)/test_run_output-oss_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-oss_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_output-oss_plugin.Tpo" -c -o test_run_output-oss_plugin.obj `if test -f 'src/output/oss_plugin.c'; then $(CYGPATH_W) 'src/output/oss_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/oss_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-oss_plugin.Tpo" "$(DEPDIR)/test_run_output-oss_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-oss_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/oss_plugin.c' object='test_run_output-oss_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-oss_plugin.obj `if test -f 'src/output/oss_plugin.c'; then $(CYGPATH_W) 'src/output/oss_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/oss_plugin.c'; fi`
-
- test_run_output-osx_plugin.o: src/output/osx_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-osx_plugin.o -MD -MP -MF $(DEPDIR)/test_run_output-osx_plugin.Tpo -c -o test_run_output-osx_plugin.o `test -f 'src/output/osx_plugin.c' || echo '$(srcdir)/'`src/output/osx_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-osx_plugin.Tpo $(DEPDIR)/test_run_output-osx_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-osx_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_output-osx_plugin.Tpo" -c -o test_run_output-osx_plugin.o `test -f 'src/output/osx_plugin.c' || echo '$(srcdir)/'`src/output/osx_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-osx_plugin.Tpo" "$(DEPDIR)/test_run_output-osx_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-osx_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/osx_plugin.c' object='test_run_output-osx_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-osx_plugin.o `test -f 'src/output/osx_plugin.c' || echo '$(srcdir)/'`src/output/osx_plugin.c
-
- test_run_output-osx_plugin.obj: src/output/osx_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-osx_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_output-osx_plugin.Tpo -c -o test_run_output-osx_plugin.obj `if test -f 'src/output/osx_plugin.c'; then $(CYGPATH_W) 'src/output/osx_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/osx_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-osx_plugin.Tpo $(DEPDIR)/test_run_output-osx_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-osx_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_output-osx_plugin.Tpo" -c -o test_run_output-osx_plugin.obj `if test -f 'src/output/osx_plugin.c'; then $(CYGPATH_W) 'src/output/osx_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/osx_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-osx_plugin.Tpo" "$(DEPDIR)/test_run_output-osx_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-osx_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/osx_plugin.c' object='test_run_output-osx_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-osx_plugin.obj `if test -f 'src/output/osx_plugin.c'; then $(CYGPATH_W) 'src/output/osx_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/osx_plugin.c'; fi`
-
- test_run_output-pulse_plugin.o: src/output/pulse_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-pulse_plugin.o -MD -MP -MF $(DEPDIR)/test_run_output-pulse_plugin.Tpo -c -o test_run_output-pulse_plugin.o `test -f 'src/output/pulse_plugin.c' || echo '$(srcdir)/'`src/output/pulse_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-pulse_plugin.Tpo $(DEPDIR)/test_run_output-pulse_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-pulse_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_output-pulse_plugin.Tpo" -c -o test_run_output-pulse_plugin.o `test -f 'src/output/pulse_plugin.c' || echo '$(srcdir)/'`src/output/pulse_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-pulse_plugin.Tpo" "$(DEPDIR)/test_run_output-pulse_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-pulse_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/pulse_plugin.c' object='test_run_output-pulse_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-pulse_plugin.o `test -f 'src/output/pulse_plugin.c' || echo '$(srcdir)/'`src/output/pulse_plugin.c
-
- test_run_output-pulse_plugin.obj: src/output/pulse_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-pulse_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_output-pulse_plugin.Tpo -c -o test_run_output-pulse_plugin.obj `if test -f 'src/output/pulse_plugin.c'; then $(CYGPATH_W) 'src/output/pulse_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/pulse_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-pulse_plugin.Tpo $(DEPDIR)/test_run_output-pulse_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-pulse_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_output-pulse_plugin.Tpo" -c -o test_run_output-pulse_plugin.obj `if test -f 'src/output/pulse_plugin.c'; then $(CYGPATH_W) 'src/output/pulse_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/pulse_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-pulse_plugin.Tpo" "$(DEPDIR)/test_run_output-pulse_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-pulse_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/pulse_plugin.c' object='test_run_output-pulse_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-pulse_plugin.obj `if test -f 'src/output/pulse_plugin.c'; then $(CYGPATH_W) 'src/output/pulse_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/pulse_plugin.c'; fi`
-
- test_run_output-shout_plugin.o: src/output/shout_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-shout_plugin.o -MD -MP -MF $(DEPDIR)/test_run_output-shout_plugin.Tpo -c -o test_run_output-shout_plugin.o `test -f 'src/output/shout_plugin.c' || echo '$(srcdir)/'`src/output/shout_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-shout_plugin.Tpo $(DEPDIR)/test_run_output-shout_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-shout_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_output-shout_plugin.Tpo" -c -o test_run_output-shout_plugin.o `test -f 'src/output/shout_plugin.c' || echo '$(srcdir)/'`src/output/shout_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-shout_plugin.Tpo" "$(DEPDIR)/test_run_output-shout_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-shout_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/shout_plugin.c' object='test_run_output-shout_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-shout_plugin.o `test -f 'src/output/shout_plugin.c' || echo '$(srcdir)/'`src/output/shout_plugin.c
-
- test_run_output-shout_plugin.obj: src/output/shout_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-shout_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_output-shout_plugin.Tpo -c -o test_run_output-shout_plugin.obj `if test -f 'src/output/shout_plugin.c'; then $(CYGPATH_W) 'src/output/shout_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/shout_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-shout_plugin.Tpo $(DEPDIR)/test_run_output-shout_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-shout_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_output-shout_plugin.Tpo" -c -o test_run_output-shout_plugin.obj `if test -f 'src/output/shout_plugin.c'; then $(CYGPATH_W) 'src/output/shout_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/shout_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-shout_plugin.Tpo" "$(DEPDIR)/test_run_output-shout_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-shout_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/shout_plugin.c' object='test_run_output-shout_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-shout_plugin.obj `if test -f 'src/output/shout_plugin.c'; then $(CYGPATH_W) 'src/output/shout_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/shout_plugin.c'; fi`
-
- test_run_output-icy_server.o: src/icy_server.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-icy_server.o -MD -MP -MF $(DEPDIR)/test_run_output-icy_server.Tpo -c -o test_run_output-icy_server.o `test -f 'src/icy_server.c' || echo '$(srcdir)/'`src/icy_server.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-icy_server.Tpo $(DEPDIR)/test_run_output-icy_server.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-icy_server.o -MD -MP -MF "$(DEPDIR)/test_run_output-icy_server.Tpo" -c -o test_run_output-icy_server.o `test -f 'src/icy_server.c' || echo '$(srcdir)/'`src/icy_server.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-icy_server.Tpo" "$(DEPDIR)/test_run_output-icy_server.Po"; else rm -f "$(DEPDIR)/test_run_output-icy_server.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/icy_server.c' object='test_run_output-icy_server.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-icy_server.o `test -f 'src/icy_server.c' || echo '$(srcdir)/'`src/icy_server.c
-
- test_run_output-icy_server.obj: src/icy_server.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-icy_server.obj -MD -MP -MF $(DEPDIR)/test_run_output-icy_server.Tpo -c -o test_run_output-icy_server.obj `if test -f 'src/icy_server.c'; then $(CYGPATH_W) 'src/icy_server.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_server.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-icy_server.Tpo $(DEPDIR)/test_run_output-icy_server.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-icy_server.obj -MD -MP -MF "$(DEPDIR)/test_run_output-icy_server.Tpo" -c -o test_run_output-icy_server.obj `if test -f 'src/icy_server.c'; then $(CYGPATH_W) 'src/icy_server.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_server.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-icy_server.Tpo" "$(DEPDIR)/test_run_output-icy_server.Po"; else rm -f "$(DEPDIR)/test_run_output-icy_server.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/icy_server.c' object='test_run_output-icy_server.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-icy_server.obj `if test -f 'src/icy_server.c'; then $(CYGPATH_W) 'src/icy_server.c'; else $(CYGPATH_W) '$(srcdir)/src/icy_server.c'; fi`
-
- test_run_output-httpd_client.o: src/output/httpd_client.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-httpd_client.o -MD -MP -MF $(DEPDIR)/test_run_output-httpd_client.Tpo -c -o test_run_output-httpd_client.o `test -f 'src/output/httpd_client.c' || echo '$(srcdir)/'`src/output/httpd_client.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-httpd_client.Tpo $(DEPDIR)/test_run_output-httpd_client.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-httpd_client.o -MD -MP -MF "$(DEPDIR)/test_run_output-httpd_client.Tpo" -c -o test_run_output-httpd_client.o `test -f 'src/output/httpd_client.c' || echo '$(srcdir)/'`src/output/httpd_client.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-httpd_client.Tpo" "$(DEPDIR)/test_run_output-httpd_client.Po"; else rm -f "$(DEPDIR)/test_run_output-httpd_client.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/httpd_client.c' object='test_run_output-httpd_client.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-httpd_client.o `test -f 'src/output/httpd_client.c' || echo '$(srcdir)/'`src/output/httpd_client.c
-
- test_run_output-httpd_client.obj: src/output/httpd_client.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-httpd_client.obj -MD -MP -MF $(DEPDIR)/test_run_output-httpd_client.Tpo -c -o test_run_output-httpd_client.obj `if test -f 'src/output/httpd_client.c'; then $(CYGPATH_W) 'src/output/httpd_client.c'; else $(CYGPATH_W) '$(srcdir)/src/output/httpd_client.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-httpd_client.Tpo $(DEPDIR)/test_run_output-httpd_client.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-httpd_client.obj -MD -MP -MF "$(DEPDIR)/test_run_output-httpd_client.Tpo" -c -o test_run_output-httpd_client.obj `if test -f 'src/output/httpd_client.c'; then $(CYGPATH_W) 'src/output/httpd_client.c'; else $(CYGPATH_W) '$(srcdir)/src/output/httpd_client.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-httpd_client.Tpo" "$(DEPDIR)/test_run_output-httpd_client.Po"; else rm -f "$(DEPDIR)/test_run_output-httpd_client.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/httpd_client.c' object='test_run_output-httpd_client.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-httpd_client.obj `if test -f 'src/output/httpd_client.c'; then $(CYGPATH_W) 'src/output/httpd_client.c'; else $(CYGPATH_W) '$(srcdir)/src/output/httpd_client.c'; fi`
-
- test_run_output-httpd_output_plugin.o: src/output/httpd_output_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-httpd_output_plugin.o -MD -MP -MF $(DEPDIR)/test_run_output-httpd_output_plugin.Tpo -c -o test_run_output-httpd_output_plugin.o `test -f 'src/output/httpd_output_plugin.c' || echo '$(srcdir)/'`src/output/httpd_output_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-httpd_output_plugin.Tpo $(DEPDIR)/test_run_output-httpd_output_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-httpd_output_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_output-httpd_output_plugin.Tpo" -c -o test_run_output-httpd_output_plugin.o `test -f 'src/output/httpd_output_plugin.c' || echo '$(srcdir)/'`src/output/httpd_output_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-httpd_output_plugin.Tpo" "$(DEPDIR)/test_run_output-httpd_output_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-httpd_output_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/httpd_output_plugin.c' object='test_run_output-httpd_output_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-httpd_output_plugin.o `test -f 'src/output/httpd_output_plugin.c' || echo '$(srcdir)/'`src/output/httpd_output_plugin.c
-
- test_run_output-httpd_output_plugin.obj: src/output/httpd_output_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-httpd_output_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_output-httpd_output_plugin.Tpo -c -o test_run_output-httpd_output_plugin.obj `if test -f 'src/output/httpd_output_plugin.c'; then $(CYGPATH_W) 'src/output/httpd_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/httpd_output_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-httpd_output_plugin.Tpo $(DEPDIR)/test_run_output-httpd_output_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-httpd_output_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_output-httpd_output_plugin.Tpo" -c -o test_run_output-httpd_output_plugin.obj `if test -f 'src/output/httpd_output_plugin.c'; then $(CYGPATH_W) 'src/output/httpd_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/httpd_output_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-httpd_output_plugin.Tpo" "$(DEPDIR)/test_run_output-httpd_output_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-httpd_output_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/httpd_output_plugin.c' object='test_run_output-httpd_output_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-httpd_output_plugin.obj `if test -f 'src/output/httpd_output_plugin.c'; then $(CYGPATH_W) 'src/output/httpd_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/httpd_output_plugin.c'; fi`
-
- test_run_output-solaris_output_plugin.o: src/output/solaris_output_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-solaris_output_plugin.o -MD -MP -MF $(DEPDIR)/test_run_output-solaris_output_plugin.Tpo -c -o test_run_output-solaris_output_plugin.o `test -f 'src/output/solaris_output_plugin.c' || echo '$(srcdir)/'`src/output/solaris_output_plugin.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-solaris_output_plugin.Tpo $(DEPDIR)/test_run_output-solaris_output_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-solaris_output_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_output-solaris_output_plugin.Tpo" -c -o test_run_output-solaris_output_plugin.o `test -f 'src/output/solaris_output_plugin.c' || echo '$(srcdir)/'`src/output/solaris_output_plugin.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-solaris_output_plugin.Tpo" "$(DEPDIR)/test_run_output-solaris_output_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-solaris_output_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/solaris_output_plugin.c' object='test_run_output-solaris_output_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-solaris_output_plugin.o `test -f 'src/output/solaris_output_plugin.c' || echo '$(srcdir)/'`src/output/solaris_output_plugin.c
-
- test_run_output-solaris_output_plugin.obj: src/output/solaris_output_plugin.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-solaris_output_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_output-solaris_output_plugin.Tpo -c -o test_run_output-solaris_output_plugin.obj `if test -f 'src/output/solaris_output_plugin.c'; then $(CYGPATH_W) 'src/output/solaris_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/solaris_output_plugin.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/test_run_output-solaris_output_plugin.Tpo $(DEPDIR)/test_run_output-solaris_output_plugin.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_run_output-solaris_output_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_output-solaris_output_plugin.Tpo" -c -o test_run_output-solaris_output_plugin.obj `if test -f 'src/output/solaris_output_plugin.c'; then $(CYGPATH_W) 'src/output/solaris_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/solaris_output_plugin.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/test_run_output-solaris_output_plugin.Tpo" "$(DEPDIR)/test_run_output-solaris_output_plugin.Po"; else rm -f "$(DEPDIR)/test_run_output-solaris_output_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/output/solaris_output_plugin.c' object='test_run_output-solaris_output_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_output_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_run_output-solaris_output_plugin.obj `if test -f 'src/output/solaris_output_plugin.c'; then $(CYGPATH_W) 'src/output/solaris_output_plugin.c'; else $(CYGPATH_W) '$(srcdir)/src/output/solaris_output_plugin.c'; fi`
-
- software_volume.o: test/software_volume.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT software_volume.o -MD -MP -MF $(DEPDIR)/software_volume.Tpo -c -o software_volume.o `test -f 'test/software_volume.c' || echo '$(srcdir)/'`test/software_volume.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/software_volume.Tpo $(DEPDIR)/software_volume.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT software_volume.o -MD -MP -MF "$(DEPDIR)/software_volume.Tpo" -c -o software_volume.o `test -f 'test/software_volume.c' || echo '$(srcdir)/'`test/software_volume.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/software_volume.Tpo" "$(DEPDIR)/software_volume.Po"; else rm -f "$(DEPDIR)/software_volume.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/software_volume.c' object='software_volume.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o software_volume.o `test -f 'test/software_volume.c' || echo '$(srcdir)/'`test/software_volume.c
-
- software_volume.obj: test/software_volume.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT software_volume.obj -MD -MP -MF $(DEPDIR)/software_volume.Tpo -c -o software_volume.obj `if test -f 'test/software_volume.c'; then $(CYGPATH_W) 'test/software_volume.c'; else $(CYGPATH_W) '$(srcdir)/test/software_volume.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/software_volume.Tpo $(DEPDIR)/software_volume.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT software_volume.obj -MD -MP -MF "$(DEPDIR)/software_volume.Tpo" -c -o software_volume.obj `if test -f 'test/software_volume.c'; then $(CYGPATH_W) 'test/software_volume.c'; else $(CYGPATH_W) '$(srcdir)/test/software_volume.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/software_volume.Tpo" "$(DEPDIR)/software_volume.Po"; else rm -f "$(DEPDIR)/software_volume.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='test/software_volume.c' object='software_volume.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o software_volume.obj `if test -f 'test/software_volume.c'; then $(CYGPATH_W) 'test/software_volume.c'; else $(CYGPATH_W) '$(srcdir)/test/software_volume.c'; fi`
-
- pcm_volume.o: src/pcm_volume.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pcm_volume.o -MD -MP -MF $(DEPDIR)/pcm_volume.Tpo -c -o pcm_volume.o `test -f 'src/pcm_volume.c' || echo '$(srcdir)/'`src/pcm_volume.c
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/pcm_volume.Tpo $(DEPDIR)/pcm_volume.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pcm_volume.o -MD -MP -MF "$(DEPDIR)/pcm_volume.Tpo" -c -o pcm_volume.o `test -f 'src/pcm_volume.c' || echo '$(srcdir)/'`src/pcm_volume.c; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/pcm_volume.Tpo" "$(DEPDIR)/pcm_volume.Po"; else rm -f "$(DEPDIR)/pcm_volume.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_volume.c' object='pcm_volume.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pcm_volume.o `test -f 'src/pcm_volume.c' || echo '$(srcdir)/'`src/pcm_volume.c
-
- pcm_volume.obj: src/pcm_volume.c
--@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pcm_volume.obj -MD -MP -MF $(DEPDIR)/pcm_volume.Tpo -c -o pcm_volume.obj `if test -f 'src/pcm_volume.c'; then $(CYGPATH_W) 'src/pcm_volume.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_volume.c'; fi`
--@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/pcm_volume.Tpo $(DEPDIR)/pcm_volume.Po
-+@am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pcm_volume.obj -MD -MP -MF "$(DEPDIR)/pcm_volume.Tpo" -c -o pcm_volume.obj `if test -f 'src/pcm_volume.c'; then $(CYGPATH_W) 'src/pcm_volume.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_volume.c'; fi`; \
-+@am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/pcm_volume.Tpo" "$(DEPDIR)/pcm_volume.Po"; else rm -f "$(DEPDIR)/pcm_volume.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/pcm_volume.c' object='pcm_volume.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pcm_volume.obj `if test -f 'src/pcm_volume.c'; then $(CYGPATH_W) 'src/pcm_volume.c'; else $(CYGPATH_W) '$(srcdir)/src/pcm_volume.c'; fi`
-
- .cxx.o:
--@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
--@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
-+@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@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $<
-
- .cxx.obj:
--@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
--@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
-+@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@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
-
- src_mpd-sidplay_plugin.o: src/decoder/sidplay_plugin.cxx
--@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src_mpd-sidplay_plugin.o -MD -MP -MF $(DEPDIR)/src_mpd-sidplay_plugin.Tpo -c -o src_mpd-sidplay_plugin.o `test -f 'src/decoder/sidplay_plugin.cxx' || echo '$(srcdir)/'`src/decoder/sidplay_plugin.cxx
--@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-sidplay_plugin.Tpo $(DEPDIR)/src_mpd-sidplay_plugin.Po
-+@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src_mpd-sidplay_plugin.o -MD -MP -MF "$(DEPDIR)/src_mpd-sidplay_plugin.Tpo" -c -o src_mpd-sidplay_plugin.o `test -f 'src/decoder/sidplay_plugin.cxx' || echo '$(srcdir)/'`src/decoder/sidplay_plugin.cxx; \
-+@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/src_mpd-sidplay_plugin.Tpo" "$(DEPDIR)/src_mpd-sidplay_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-sidplay_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/decoder/sidplay_plugin.cxx' object='src_mpd-sidplay_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src_mpd-sidplay_plugin.o `test -f 'src/decoder/sidplay_plugin.cxx' || echo '$(srcdir)/'`src/decoder/sidplay_plugin.cxx
-
- src_mpd-sidplay_plugin.obj: src/decoder/sidplay_plugin.cxx
--@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src_mpd-sidplay_plugin.obj -MD -MP -MF $(DEPDIR)/src_mpd-sidplay_plugin.Tpo -c -o src_mpd-sidplay_plugin.obj `if test -f 'src/decoder/sidplay_plugin.cxx'; then $(CYGPATH_W) 'src/decoder/sidplay_plugin.cxx'; else $(CYGPATH_W) '$(srcdir)/src/decoder/sidplay_plugin.cxx'; fi`
--@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/src_mpd-sidplay_plugin.Tpo $(DEPDIR)/src_mpd-sidplay_plugin.Po
-+@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src_mpd-sidplay_plugin.obj -MD -MP -MF "$(DEPDIR)/src_mpd-sidplay_plugin.Tpo" -c -o src_mpd-sidplay_plugin.obj `if test -f 'src/decoder/sidplay_plugin.cxx'; then $(CYGPATH_W) 'src/decoder/sidplay_plugin.cxx'; else $(CYGPATH_W) '$(srcdir)/src/decoder/sidplay_plugin.cxx'; fi`; \
-+@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/src_mpd-sidplay_plugin.Tpo" "$(DEPDIR)/src_mpd-sidplay_plugin.Po"; else rm -f "$(DEPDIR)/src_mpd-sidplay_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/decoder/sidplay_plugin.cxx' object='src_mpd-sidplay_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_mpd_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src_mpd-sidplay_plugin.obj `if test -f 'src/decoder/sidplay_plugin.cxx'; then $(CYGPATH_W) 'src/decoder/sidplay_plugin.cxx'; else $(CYGPATH_W) '$(srcdir)/src/decoder/sidplay_plugin.cxx'; fi`
-
- test_read_tags-sidplay_plugin.o: src/decoder/sidplay_plugin.cxx
--@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT test_read_tags-sidplay_plugin.o -MD -MP -MF $(DEPDIR)/test_read_tags-sidplay_plugin.Tpo -c -o test_read_tags-sidplay_plugin.o `test -f 'src/decoder/sidplay_plugin.cxx' || echo '$(srcdir)/'`src/decoder/sidplay_plugin.cxx
--@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-sidplay_plugin.Tpo $(DEPDIR)/test_read_tags-sidplay_plugin.Po
-+@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT test_read_tags-sidplay_plugin.o -MD -MP -MF "$(DEPDIR)/test_read_tags-sidplay_plugin.Tpo" -c -o test_read_tags-sidplay_plugin.o `test -f 'src/decoder/sidplay_plugin.cxx' || echo '$(srcdir)/'`src/decoder/sidplay_plugin.cxx; \
-+@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-sidplay_plugin.Tpo" "$(DEPDIR)/test_read_tags-sidplay_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-sidplay_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/decoder/sidplay_plugin.cxx' object='test_read_tags-sidplay_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o test_read_tags-sidplay_plugin.o `test -f 'src/decoder/sidplay_plugin.cxx' || echo '$(srcdir)/'`src/decoder/sidplay_plugin.cxx
-
- test_read_tags-sidplay_plugin.obj: src/decoder/sidplay_plugin.cxx
--@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT test_read_tags-sidplay_plugin.obj -MD -MP -MF $(DEPDIR)/test_read_tags-sidplay_plugin.Tpo -c -o test_read_tags-sidplay_plugin.obj `if test -f 'src/decoder/sidplay_plugin.cxx'; then $(CYGPATH_W) 'src/decoder/sidplay_plugin.cxx'; else $(CYGPATH_W) '$(srcdir)/src/decoder/sidplay_plugin.cxx'; fi`
--@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/test_read_tags-sidplay_plugin.Tpo $(DEPDIR)/test_read_tags-sidplay_plugin.Po
-+@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT test_read_tags-sidplay_plugin.obj -MD -MP -MF "$(DEPDIR)/test_read_tags-sidplay_plugin.Tpo" -c -o test_read_tags-sidplay_plugin.obj `if test -f 'src/decoder/sidplay_plugin.cxx'; then $(CYGPATH_W) 'src/decoder/sidplay_plugin.cxx'; else $(CYGPATH_W) '$(srcdir)/src/decoder/sidplay_plugin.cxx'; fi`; \
-+@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/test_read_tags-sidplay_plugin.Tpo" "$(DEPDIR)/test_read_tags-sidplay_plugin.Po"; else rm -f "$(DEPDIR)/test_read_tags-sidplay_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/decoder/sidplay_plugin.cxx' object='test_read_tags-sidplay_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_read_tags_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o test_read_tags-sidplay_plugin.obj `if test -f 'src/decoder/sidplay_plugin.cxx'; then $(CYGPATH_W) 'src/decoder/sidplay_plugin.cxx'; else $(CYGPATH_W) '$(srcdir)/src/decoder/sidplay_plugin.cxx'; fi`
-
- test_run_decoder-sidplay_plugin.o: src/decoder/sidplay_plugin.cxx
--@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT test_run_decoder-sidplay_plugin.o -MD -MP -MF $(DEPDIR)/test_run_decoder-sidplay_plugin.Tpo -c -o test_run_decoder-sidplay_plugin.o `test -f 'src/decoder/sidplay_plugin.cxx' || echo '$(srcdir)/'`src/decoder/sidplay_plugin.cxx
--@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-sidplay_plugin.Tpo $(DEPDIR)/test_run_decoder-sidplay_plugin.Po
-+@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT test_run_decoder-sidplay_plugin.o -MD -MP -MF "$(DEPDIR)/test_run_decoder-sidplay_plugin.Tpo" -c -o test_run_decoder-sidplay_plugin.o `test -f 'src/decoder/sidplay_plugin.cxx' || echo '$(srcdir)/'`src/decoder/sidplay_plugin.cxx; \
-+@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-sidplay_plugin.Tpo" "$(DEPDIR)/test_run_decoder-sidplay_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-sidplay_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/decoder/sidplay_plugin.cxx' object='test_run_decoder-sidplay_plugin.o' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o test_run_decoder-sidplay_plugin.o `test -f 'src/decoder/sidplay_plugin.cxx' || echo '$(srcdir)/'`src/decoder/sidplay_plugin.cxx
-
- test_run_decoder-sidplay_plugin.obj: src/decoder/sidplay_plugin.cxx
--@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT test_run_decoder-sidplay_plugin.obj -MD -MP -MF $(DEPDIR)/test_run_decoder-sidplay_plugin.Tpo -c -o test_run_decoder-sidplay_plugin.obj `if test -f 'src/decoder/sidplay_plugin.cxx'; then $(CYGPATH_W) 'src/decoder/sidplay_plugin.cxx'; else $(CYGPATH_W) '$(srcdir)/src/decoder/sidplay_plugin.cxx'; fi`
--@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/test_run_decoder-sidplay_plugin.Tpo $(DEPDIR)/test_run_decoder-sidplay_plugin.Po
-+@am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT test_run_decoder-sidplay_plugin.obj -MD -MP -MF "$(DEPDIR)/test_run_decoder-sidplay_plugin.Tpo" -c -o test_run_decoder-sidplay_plugin.obj `if test -f 'src/decoder/sidplay_plugin.cxx'; then $(CYGPATH_W) 'src/decoder/sidplay_plugin.cxx'; else $(CYGPATH_W) '$(srcdir)/src/decoder/sidplay_plugin.cxx'; fi`; \
-+@am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/test_run_decoder-sidplay_plugin.Tpo" "$(DEPDIR)/test_run_decoder-sidplay_plugin.Po"; else rm -f "$(DEPDIR)/test_run_decoder-sidplay_plugin.Tpo"; exit 1; fi
- @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='src/decoder/sidplay_plugin.cxx' object='test_run_decoder-sidplay_plugin.obj' libtool=no @AMDEPBACKSLASH@
- @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_run_decoder_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o test_run_decoder-sidplay_plugin.obj `if test -f 'src/decoder/sidplay_plugin.cxx'; then $(CYGPATH_W) 'src/decoder/sidplay_plugin.cxx'; else $(CYGPATH_W) '$(srcdir)/src/decoder/sidplay_plugin.cxx'; fi`
--install-man1: $(man_MANS)
-+uninstall-info-am:
-+install-man1: $(man1_MANS) $(man_MANS)
- @$(NORMAL_INSTALL)
-- test -z "$(man1dir)" || $(MKDIR_P) "$(DESTDIR)$(man1dir)"
-- @list=''; test -n "$(man1dir)" || exit 0; \
-- { for i in $$list; do echo "$$i"; done; \
-- l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
-- sed -n '/\.1[a-z]*$$/p'; \
-- } | while read p; do \
-- if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
-- echo "$$d$$p"; echo "$$p"; \
-- done | \
-- sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
-- -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
-- sed 'N;N;s,\n, ,g' | { \
-- list=; while read file base inst; do \
-- if test "$$base" = "$$inst"; then list="$$list $$file"; else \
-- echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
-- $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \
-- fi; \
-+ test -z "$(man1dir)" || $(mkdir_p) "$(DESTDIR)$(man1dir)"
-+ @list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \
-+ l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
-+ for i in $$l2; do \
-+ case "$$i" in \
-+ *.1*) list="$$list $$i" ;; \
-+ esac; \
- done; \
-- for i in $$list; do echo "$$i"; done | $(am__base_list) | \
-- while read files; do \
-- test -z "$$files" || { \
-- echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
-- $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
-- done; }
--
-+ for i in $$list; do \
-+ if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \
-+ else file=$$i; fi; \
-+ ext=`echo $$i | sed -e 's/^.*\\.//'`; \
-+ case "$$ext" in \
-+ 1*) ;; \
-+ *) ext='1' ;; \
-+ esac; \
-+ inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
-+ inst=`echo $$inst | sed -e 's/^.*\///'`; \
-+ inst=`echo $$inst | sed '$(transform)'`.$$ext; \
-+ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
-+ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst"; \
-+ done
- uninstall-man1:
- @$(NORMAL_UNINSTALL)
-- @list=''; test -n "$(man1dir)" || exit 0; \
-- files=`{ for i in $$list; do echo "$$i"; done; \
-- l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
-- sed -n '/\.1[a-z]*$$/p'; \
-- } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
-- -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
-- test -z "$$files" || { \
-- echo " ( cd '$(DESTDIR)$(man1dir)' && rm -f" $$files ")"; \
-- cd "$(DESTDIR)$(man1dir)" && rm -f $$files; }
--install-man5: $(man_MANS)
-+ @list='$(man1_MANS) $(dist_man1_MANS) $(nodist_man1_MANS)'; \
-+ l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
-+ for i in $$l2; do \
-+ case "$$i" in \
-+ *.1*) list="$$list $$i" ;; \
-+ esac; \
-+ done; \
-+ for i in $$list; do \
-+ ext=`echo $$i | sed -e 's/^.*\\.//'`; \
-+ case "$$ext" in \
-+ 1*) ;; \
-+ *) ext='1' ;; \
-+ esac; \
-+ inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
-+ inst=`echo $$inst | sed -e 's/^.*\///'`; \
-+ inst=`echo $$inst | sed '$(transform)'`.$$ext; \
-+ echo " rm -f '$(DESTDIR)$(man1dir)/$$inst'"; \
-+ rm -f "$(DESTDIR)$(man1dir)/$$inst"; \
-+ done
-+install-man5: $(man5_MANS) $(man_MANS)
- @$(NORMAL_INSTALL)
-- test -z "$(man5dir)" || $(MKDIR_P) "$(DESTDIR)$(man5dir)"
-- @list=''; test -n "$(man5dir)" || exit 0; \
-- { for i in $$list; do echo "$$i"; done; \
-- l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
-- sed -n '/\.5[a-z]*$$/p'; \
-- } | while read p; do \
-- if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
-- echo "$$d$$p"; echo "$$p"; \
-- done | \
-- sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^5][0-9a-z]*$$,5,;x' \
-- -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
-- sed 'N;N;s,\n, ,g' | { \
-- list=; while read file base inst; do \
-- if test "$$base" = "$$inst"; then list="$$list $$file"; else \
-- echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man5dir)/$$inst'"; \
-- $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man5dir)/$$inst" || exit $$?; \
-- fi; \
-+ test -z "$(man5dir)" || $(mkdir_p) "$(DESTDIR)$(man5dir)"
-+ @list='$(man5_MANS) $(dist_man5_MANS) $(nodist_man5_MANS)'; \
-+ l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
-+ for i in $$l2; do \
-+ case "$$i" in \
-+ *.5*) list="$$list $$i" ;; \
-+ esac; \
- done; \
-- for i in $$list; do echo "$$i"; done | $(am__base_list) | \
-- while read files; do \
-- test -z "$$files" || { \
-- echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man5dir)'"; \
-- $(INSTALL_DATA) $$files "$(DESTDIR)$(man5dir)" || exit $$?; }; \
-- done; }
--
-+ for i in $$list; do \
-+ if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \
-+ else file=$$i; fi; \
-+ ext=`echo $$i | sed -e 's/^.*\\.//'`; \
-+ case "$$ext" in \
-+ 5*) ;; \
-+ *) ext='5' ;; \
-+ esac; \
-+ inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
-+ inst=`echo $$inst | sed -e 's/^.*\///'`; \
-+ inst=`echo $$inst | sed '$(transform)'`.$$ext; \
-+ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man5dir)/$$inst'"; \
-+ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man5dir)/$$inst"; \
-+ done
- uninstall-man5:
- @$(NORMAL_UNINSTALL)
-- @list=''; test -n "$(man5dir)" || exit 0; \
-- files=`{ for i in $$list; do echo "$$i"; done; \
-- l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
-- sed -n '/\.5[a-z]*$$/p'; \
-- } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^5][0-9a-z]*$$,5,;x' \
-- -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
-- test -z "$$files" || { \
-- echo " ( cd '$(DESTDIR)$(man5dir)' && rm -f" $$files ")"; \
-- cd "$(DESTDIR)$(man5dir)" && rm -f $$files; }
-+ @list='$(man5_MANS) $(dist_man5_MANS) $(nodist_man5_MANS)'; \
-+ l2='$(man_MANS) $(dist_man_MANS) $(nodist_man_MANS)'; \
-+ for i in $$l2; do \
-+ case "$$i" in \
-+ *.5*) list="$$list $$i" ;; \
-+ esac; \
-+ done; \
-+ for i in $$list; do \
-+ ext=`echo $$i | sed -e 's/^.*\\.//'`; \
-+ case "$$ext" in \
-+ 5*) ;; \
-+ *) ext='5' ;; \
-+ esac; \
-+ inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
-+ inst=`echo $$inst | sed -e 's/^.*\///'`; \
-+ inst=`echo $$inst | sed '$(transform)'`.$$ext; \
-+ echo " rm -f '$(DESTDIR)$(man5dir)/$$inst'"; \
-+ rm -f "$(DESTDIR)$(man5dir)/$$inst"; \
-+ done
- install-developerDATA: $(developer_DATA)
- @$(NORMAL_INSTALL)
-- test -z "$(developerdir)" || $(MKDIR_P) "$(DESTDIR)$(developerdir)"
-- @list='$(developer_DATA)'; test -n "$(developerdir)" || list=; \
-- for p in $$list; do \
-+ test -z "$(developerdir)" || $(mkdir_p) "$(DESTDIR)$(developerdir)"
-+ @list='$(developer_DATA)'; for p in $$list; do \
- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
-- echo "$$d$$p"; \
-- done | $(am__base_list) | \
-- while read files; do \
-- echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(developerdir)'"; \
-- $(INSTALL_DATA) $$files "$(DESTDIR)$(developerdir)" || exit $$?; \
-+ f=$(am__strip_dir) \
-+ echo " $(developerDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(developerdir)/$$f'"; \
-+ $(developerDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(developerdir)/$$f"; \
- done
-
- uninstall-developerDATA:
- @$(NORMAL_UNINSTALL)
-- @list='$(developer_DATA)'; test -n "$(developerdir)" || list=; \
-- files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
-- test -n "$$files" || exit 0; \
-- echo " ( cd '$(DESTDIR)$(developerdir)' && rm -f" $$files ")"; \
-- cd "$(DESTDIR)$(developerdir)" && rm -f $$files
-+ @list='$(developer_DATA)'; for p in $$list; do \
-+ f=$(am__strip_dir) \
-+ echo " rm -f '$(DESTDIR)$(developerdir)/$$f'"; \
-+ rm -f "$(DESTDIR)$(developerdir)/$$f"; \
-+ done
- install-docDATA: $(doc_DATA)
- @$(NORMAL_INSTALL)
-- test -z "$(docdir)" || $(MKDIR_P) "$(DESTDIR)$(docdir)"
-- @list='$(doc_DATA)'; test -n "$(docdir)" || list=; \
-- for p in $$list; do \
-+ test -z "$(docdir)" || $(mkdir_p) "$(DESTDIR)$(docdir)"
-+ @list='$(doc_DATA)'; for p in $$list; do \
- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
-- echo "$$d$$p"; \
-- done | $(am__base_list) | \
-- while read files; do \
-- echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(docdir)'"; \
-- $(INSTALL_DATA) $$files "$(DESTDIR)$(docdir)" || exit $$?; \
-+ f=$(am__strip_dir) \
-+ echo " $(docDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(docdir)/$$f'"; \
-+ $(docDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(docdir)/$$f"; \
- done
-
- uninstall-docDATA:
- @$(NORMAL_UNINSTALL)
-- @list='$(doc_DATA)'; test -n "$(docdir)" || list=; \
-- files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
-- test -n "$$files" || exit 0; \
-- echo " ( cd '$(DESTDIR)$(docdir)' && rm -f" $$files ")"; \
-- cd "$(DESTDIR)$(docdir)" && rm -f $$files
-+ @list='$(doc_DATA)'; for p in $$list; do \
-+ f=$(am__strip_dir) \
-+ echo " rm -f '$(DESTDIR)$(docdir)/$$f'"; \
-+ rm -f "$(DESTDIR)$(docdir)/$$f"; \
-+ done
- install-protocolDATA: $(protocol_DATA)
- @$(NORMAL_INSTALL)
-- test -z "$(protocoldir)" || $(MKDIR_P) "$(DESTDIR)$(protocoldir)"
-- @list='$(protocol_DATA)'; test -n "$(protocoldir)" || list=; \
-- for p in $$list; do \
-+ test -z "$(protocoldir)" || $(mkdir_p) "$(DESTDIR)$(protocoldir)"
-+ @list='$(protocol_DATA)'; for p in $$list; do \
- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
-- echo "$$d$$p"; \
-- done | $(am__base_list) | \
-- while read files; do \
-- echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(protocoldir)'"; \
-- $(INSTALL_DATA) $$files "$(DESTDIR)$(protocoldir)" || exit $$?; \
-+ f=$(am__strip_dir) \
-+ echo " $(protocolDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(protocoldir)/$$f'"; \
-+ $(protocolDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(protocoldir)/$$f"; \
- done
-
- uninstall-protocolDATA:
- @$(NORMAL_UNINSTALL)
-- @list='$(protocol_DATA)'; test -n "$(protocoldir)" || list=; \
-- files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
-- test -n "$$files" || exit 0; \
-- echo " ( cd '$(DESTDIR)$(protocoldir)' && rm -f" $$files ")"; \
-- cd "$(DESTDIR)$(protocoldir)" && rm -f $$files
-+ @list='$(protocol_DATA)'; for p in $$list; do \
-+ f=$(am__strip_dir) \
-+ echo " rm -f '$(DESTDIR)$(protocoldir)/$$f'"; \
-+ rm -f "$(DESTDIR)$(protocoldir)/$$f"; \
-+ done
- install-userDATA: $(user_DATA)
- @$(NORMAL_INSTALL)
-- test -z "$(userdir)" || $(MKDIR_P) "$(DESTDIR)$(userdir)"
-- @list='$(user_DATA)'; test -n "$(userdir)" || list=; \
-- for p in $$list; do \
-+ test -z "$(userdir)" || $(mkdir_p) "$(DESTDIR)$(userdir)"
-+ @list='$(user_DATA)'; for p in $$list; do \
- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
-- echo "$$d$$p"; \
-- done | $(am__base_list) | \
-- while read files; do \
-- echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(userdir)'"; \
-- $(INSTALL_DATA) $$files "$(DESTDIR)$(userdir)" || exit $$?; \
-+ f=$(am__strip_dir) \
-+ echo " $(userDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(userdir)/$$f'"; \
-+ $(userDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(userdir)/$$f"; \
- done
-
- uninstall-userDATA:
- @$(NORMAL_UNINSTALL)
-- @list='$(user_DATA)'; test -n "$(userdir)" || list=; \
-- files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
-- test -n "$$files" || exit 0; \
-- echo " ( cd '$(DESTDIR)$(userdir)' && rm -f" $$files ")"; \
-- cd "$(DESTDIR)$(userdir)" && rm -f $$files
-+ @list='$(user_DATA)'; for p in $$list; do \
-+ f=$(am__strip_dir) \
-+ echo " rm -f '$(DESTDIR)$(userdir)/$$f'"; \
-+ rm -f "$(DESTDIR)$(userdir)/$$f"; \
-+ done
-
- ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
- list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
-- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-- END { if (nonempty) { for (i in files) print i; }; }'`; \
-+ $(AWK) ' { files[$$0] = 1; } \
-+ END { for (i in files) print i; }'`; \
- mkid -fID $$unique
- tags: TAGS
-
- TAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
- $(TAGS_FILES) $(LISP)
-- set x; \
-+ tags=; \
- here=`pwd`; \
- list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
-- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-- END { if (nonempty) { for (i in files) print i; }; }'`; \
-- shift; \
-- if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
-+ $(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; \
-- if test $$# -gt 0; then \
-- $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
-- "$$@" $$unique; \
-- else \
-- $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
-- $$unique; \
-- fi; \
-+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
-+ $$tags $$unique; \
- fi
- ctags: CTAGS
- CTAGS: $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
- $(TAGS_FILES) $(LISP)
-+ tags=; \
-+ here=`pwd`; \
- list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
- unique=`for i in $$list; do \
- if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
- done | \
-- $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-- END { if (nonempty) { for (i in files) print i; }; }'`; \
-- test -z "$(CTAGS_ARGS)$$unique" \
-+ $(AWK) ' { files[$$0] = 1; } \
-+ END { for (i in files) print i; }'`; \
-+ test -z "$(CTAGS_ARGS)$$tags$$unique" \
- || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
-- $$unique
-+ $$tags $$unique
-
- GTAGS:
- here=`$(am__cd) $(top_builddir) && pwd` \
-- && $(am__cd) $(top_srcdir) \
-- && gtags -i $(GTAGS_ARGS) "$$here"
-+ && cd $(top_srcdir) \
-+ && gtags -i $(GTAGS_ARGS) $$here
-
- distclean-tags:
- -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-
- distdir: $(DISTFILES)
-- @list='$(MANS)'; if test -n "$$list"; then \
-- list=`for p in $$list; do \
-- if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
-- if test -f "$$d$$p"; then echo "$$d$$p"; else :; fi; done`; \
-- if test -n "$$list" && \
-- grep 'ab help2man is required to generate this page' $$list >/dev/null; then \
-- echo "error: found man pages containing the \`missing help2man' replacement text:" >&2; \
-- grep -l 'ab help2man is required to generate this page' $$list | sed 's/^/ /' >&2; \
-- echo " to fix them, install help2man, remove and regenerate the man pages;" >&2; \
-- echo " typically \`make maintainer-clean' will remove them" >&2; \
-- exit 1; \
-- else :; fi; \
-- else :; fi
- $(am__remove_distdir)
-- test -d "$(distdir)" || mkdir "$(distdir)"
-- @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
-- topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
-- list='$(DISTFILES)'; \
-- dist_files=`for file in $$list; do echo $$file; done | \
-- sed -e "s|^$$srcdirstrip/||;t" \
-- -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
-- case $$dist_files in \
-- */*) $(MKDIR_P) `echo "$$dist_files" | \
-- sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
-- sort -u` ;; \
-- esac; \
-- for file in $$dist_files; do \
-+ mkdir $(distdir)
-+ $(mkdir_p) $(distdir)/doc $(distdir)/m4 $(distdir)/scripts
-+ @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
-+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
-+ list='$(DISTFILES)'; for file in $$list; do \
-+ case $$file in \
-+ $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
-+ $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
-+ esac; \
- if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
-+ dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
-+ if test "$$dir" != "$$file" && test "$$dir" != "."; then \
-+ dir="/$$dir"; \
-+ $(mkdir_p) "$(distdir)$$dir"; \
-+ else \
-+ dir=''; \
-+ fi; \
- if test -d $$d/$$file; then \
-- dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
-- if test -d "$(distdir)/$$file"; then \
-- find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
-- fi; \
- if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
-- cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
-- find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
-+ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
- fi; \
-- cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
-+ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
- else \
-- test -f "$(distdir)/$$file" \
-- || cp -p $$d/$$file "$(distdir)/$$file" \
-+ test -f $(distdir)/$$file \
-+ || cp -p $$d/$$file $(distdir)/$$file \
- || exit 1; \
- fi; \
- done
-- -test -n "$(am__skip_mode_fix)" \
-- || find "$(distdir)" -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
-+ -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
- ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
- ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
-- ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
-- || chmod -R a+r "$(distdir)"
-+ ! -type d ! -perm -444 -exec $(SHELL) $(install_sh) -c -m a+r {} {} \; \
-+ || chmod -R a+r $(distdir)
- dist-gzip: distdir
- tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
- $(am__remove_distdir)
-@@ -6857,14 +6908,6 @@
- tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
- $(am__remove_distdir)
-
--dist-lzma: distdir
-- tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
-- $(am__remove_distdir)
--
--dist-xz: distdir
-- tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz
-- $(am__remove_distdir)
--
- dist-tarZ: distdir
- tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
- $(am__remove_distdir)
-@@ -6892,10 +6935,6 @@
- GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
- *.tar.bz2*) \
- bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
-- *.tar.lzma*) \
-- unlzma -c $(distdir).tar.lzma | $(am__untar) ;;\
-- *.tar.xz*) \
-- xz -dc $(distdir).tar.xz | $(am__untar) ;;\
- *.tar.Z*) \
- uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
- *.shar.gz*) \
-@@ -6907,11 +6946,9 @@
- mkdir $(distdir)/_build
- mkdir $(distdir)/_inst
- chmod a-w $(distdir)
-- test -d $(distdir)/_build || exit 0; \
- dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
- && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
-- && am__cwd=`pwd` \
-- && $(am__cd) $(distdir)/_build \
-+ && cd $(distdir)/_build \
- && ../configure --srcdir=.. --prefix="$$dc_install_base" \
- $(DISTCHECK_CONFIGURE_FLAGS) \
- && $(MAKE) $(AM_MAKEFLAGS) \
-@@ -6933,15 +6970,13 @@
- && rm -rf "$$dc_destdir" \
- && $(MAKE) $(AM_MAKEFLAGS) dist \
- && rm -rf $(DIST_ARCHIVES) \
-- && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
-- && cd "$$am__cwd" \
-- || exit 1
-+ && $(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 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
-+ sed -e '1{h;s/./=/g;p;x;}' -e '$${p;x;}'
- distuninstallcheck:
-- @$(am__cd) '$(distuninstallcheck_dir)' \
-+ @cd $(distuninstallcheck_dir) \
- && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
- || { echo "ERROR: files left after uninstall:" ; \
- if test -n "$(DESTDIR)"; then \
-@@ -6964,7 +6999,7 @@
- all-am: Makefile $(PROGRAMS) $(MANS) $(DATA) config.h all-local
- installdirs:
- for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man5dir)" "$(DESTDIR)$(developerdir)" "$(DESTDIR)$(docdir)" "$(DESTDIR)$(protocoldir)" "$(DESTDIR)$(userdir)"; do \
-- test -z "$$dir" || $(MKDIR_P) "$$dir"; \
-+ test -z "$$dir" || $(mkdir_p) "$$dir"; \
- done
- install: install-am
- install-exec: install-exec-am
-@@ -6986,7 +7021,6 @@
-
- distclean-generic:
- -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-- -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
- -rm -f src/$(am__dirstamp)
- -rm -f test/$(am__dirstamp)
-
-@@ -7013,8 +7047,6 @@
-
- html: html-am
-
--html-am:
--
- info: info-am
-
- info-am:
-@@ -7023,30 +7055,12 @@
- install-docDATA install-man install-protocolDATA \
- install-userDATA
-
--install-dvi: install-dvi-am
--
--install-dvi-am:
--
- install-exec-am: install-binPROGRAMS
-
--install-html: install-html-am
--
--install-html-am:
--
- install-info: install-info-am
-
--install-info-am:
--
- install-man: install-man1 install-man5
-
--install-pdf: install-pdf-am
--
--install-pdf-am:
--
--install-ps: install-ps-am
--
--install-ps-am:
--
- installcheck-am:
-
- maintainer-clean: maintainer-clean-am
-@@ -7069,33 +7083,29 @@
- ps-am:
-
- uninstall-am: uninstall-binPROGRAMS uninstall-developerDATA \
-- uninstall-docDATA uninstall-man uninstall-protocolDATA \
-- uninstall-userDATA
-+ uninstall-docDATA uninstall-info-am uninstall-man \
-+ uninstall-protocolDATA uninstall-userDATA
-
- uninstall-man: uninstall-man1 uninstall-man5
-
--.MAKE: all install-am install-strip
--
- .PHONY: CTAGS GTAGS all all-am all-local am--refresh check check-am \
- clean clean-binPROGRAMS clean-generic clean-local \
- clean-noinstPROGRAMS ctags dist dist-all dist-bzip2 dist-gzip \
-- dist-lzma dist-shar dist-tarZ dist-xz dist-zip distcheck \
-- distclean distclean-compile distclean-generic distclean-hdr \
-+ dist-shar dist-tarZ dist-zip distcheck distclean \
-+ distclean-compile distclean-generic distclean-hdr \
- 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-data-local install-developerDATA install-docDATA \
-- install-dvi install-dvi-am install-exec install-exec-am \
-- install-html install-html-am install-info install-info-am \
-- install-man install-man1 install-man5 install-pdf \
-- install-pdf-am install-protocolDATA install-ps install-ps-am \
-+ install-exec install-exec-am install-info install-info-am \
-+ install-man install-man1 install-man5 install-protocolDATA \
- install-strip install-userDATA 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-binPROGRAMS \
-- uninstall-developerDATA uninstall-docDATA uninstall-man \
-- uninstall-man1 uninstall-man5 uninstall-protocolDATA \
-- uninstall-userDATA
-+ uninstall-developerDATA uninstall-docDATA uninstall-info-am \
-+ uninstall-man uninstall-man1 uninstall-man5 \
-+ uninstall-protocolDATA uninstall-userDATA
-
- sparse-check:
- $(SPARSE) -I. $(src_mpd_CFLAGS) $(src_mpd_CPPFLAGS) $(SPARSE_FLAGS) $(SPARSE_CPPFLAGS) $(filter-out %.cxx,$(src_mpd_SOURCES))
-@@ -7129,7 +7139,6 @@
- @ENABLE_DOCUMENTATION_TRUE@ --include=developer --include=developer/** \
- @ENABLE_DOCUMENTATION_TRUE@ --include=api --include=api/** \
- @ENABLE_DOCUMENTATION_TRUE@ --exclude=*
--
- # 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.
- .NOEXPORT:
diff --git a/package/mpd/patches/patch-configure b/package/mpd/patches/patch-configure
new file mode 100644
index 000000000..a27db64c5
--- /dev/null
+++ b/package/mpd/patches/patch-configure
@@ -0,0 +1,11 @@
+--- mpd-0.15.10.orig/configure 2010-05-30 17:57:50.000000000 +0200
++++ mpd-0.15.10/configure 2010-06-12 19:53:33.261613517 +0200
+@@ -10637,7 +10637,7 @@ if test x$enable_lame_encoder != xno; th
+
+ # Check whether --with-lame was given.
+ if test "${with_lame+set}" = set; then :
+- withval=$with_lame;
++ lame_prefix=$with_lame;
+ else
+ lame_prefix=""
+ fi
diff --git a/package/mpg123/Makefile b/package/mpg123/Makefile
index ab54b4b09..c8a239116 100644
--- a/package/mpg123/Makefile
+++ b/package/mpg123/Makefile
@@ -4,9 +4,9 @@
include $(TOPDIR)/rules.mk
PKG_NAME:= mpg123
-PKG_VERSION:= 1.10.0
-PKG_RELEASE:= 1
-PKG_MD5SUM:= 0005c9a89c381484e2d2ff450b3dfe5e
+PKG_VERSION:= 1.12.1
+PKG_RELEASE:= 2
+PKG_MD5SUM:= e7d810a75d22954169f1530a436aca4c
PKG_DESCR:= mp3 console player
PKG_SECTION:= sound
PKG_DEPENDS:= libpthread alsa-lib libltdl
@@ -24,6 +24,7 @@ post-install:
$(INSTALL_DIR) $(IDIR_MPG123)/usr/bin $(IDIR_MPG123)/usr/lib
$(INSTALL_DIR) $(IDIR_MPG123)/usr/lib/mpg123
$(CP) $(WRKINST)/usr/lib/libmpg123.so* $(IDIR_MPG123)/usr/lib
+ $(CP) $(WRKINST)/usr/lib/mpg123/*.la $(IDIR_MPG123)/usr/lib/mpg123
$(CP) $(WRKINST)/usr/lib/mpg123/*.so $(IDIR_MPG123)/usr/lib/mpg123
$(INSTALL_BIN) $(WRKINST)/usr/bin/mpg123 \
$(IDIR_MPG123)/usr/bin
diff --git a/package/mplayer/Makefile b/package/mplayer/Makefile
index 71e6190d8..d05da35f5 100644
--- a/package/mplayer/Makefile
+++ b/package/mplayer/Makefile
@@ -4,9 +4,9 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= mplayer
-PKG_VERSION:= 1.0-29987
+PKG_VERSION:= 1.0-31425
PKG_RELEASE:= 1
-PKG_MD5SUM:= 416fa6a247987305d74572d03dc6dde7
+PKG_MD5SUM:= e65b88e7a5c1c2f98c98e565357b9663
PKG_DESCR:= popular video player
PKG_SECTION:= video
PKG_DEPENDS:= alsa-lib libjpeg libfaad2 libmad libncurses
@@ -14,9 +14,16 @@ PKG_DEPENDS+= libogg libpng libpthread libvorbis
PKG_DEPENDS+= libx11 libxau libxdmcp libxext libxv zlib
PKG_BUILDDEP+= alsa-lib libmad libvorbis faad2 ncurses zlib
PKG_BUILDDEP+= libX11 libXv libpng libXext
+ifeq (${ADK_PACKAGE_MPLAYER_WITH_DIRECTFB},y)
+PKG_BUILDDEP+= DirectFB
+endif
PKG_URL:= http://www.mplayerhq.hu
PKG_SITES:= http://openadk.org/distfiles/
+PKG_FLAVOURS:= WITH_DIRECTFB
+PKGFS_WITH_DIRECTFB:= directfb
+PKGFD_WITH_DIRECTFB:= enable DirectFB video output support
+
PKG_TARGET_DEPENDS:= alix1c x86_qemu x86_64_qemu shuttle lemote
include ${TOPDIR}/mk/package.mk
@@ -27,6 +34,18 @@ CONFIG_STYLE:= manual
FAKE_FLAGS+= INSTALLSTRIP=''
+ifeq (${ADK_LINUX_MIPS64_LEMOTE},y)
+EXTRA_CFLAGS:= -DARCH_MIPS64
+endif
+
+# Somehow this include path is missing here, although other
+# applications build fine against DirectFB. There is also a
+# related patch to allow configure to find out the DirectFB
+# version number.
+ifeq (${ADK_PACKAGE_MPLAYER_WITH_DIRECTFB},y)
+TCFLAGS+= -I${STAGING_DIR}/usr/include/directfb
+endif
+
ifeq (${ADK_LINUX_X86_ALIX1C},y)
CONFIGURE_CPU_OPTS:= \
--disable-ssse3 \
@@ -48,7 +67,13 @@ CONFIGURE_CPU_OPTS:= \
endif
ifeq ($(ADK_DEBUG),y)
- CONFIGURE_DEBUG=--enable-debug
+CONFIGURE_DEBUG= --enable-debug --enable-crash-debug
+endif
+
+ifeq (${ADK_PACKAGE_MPLAYER_WITH_DIRECTFB},y)
+CONFIGURE_DIRECTFB=--enable-directfb
+else
+CONFIGURE_DIRECTFB=--disable-directfb
endif
pre-configure:
@@ -58,12 +83,14 @@ pre-configure:
--prefix=/usr \
--confdir=/etc \
--enable-cross-compile \
- --target=$(REAL_GNU_TARGET_NAME) \
+ --target=${ARCH}-linux \
--cc=$(TARGET_CC) \
--host-cc=$(HOSTCC) \
--disable-mencoder \
--enable-fbdev \
--enable-alsa \
+ --enable-tv \
+ --enable-v4l2 \
--enable-png \
--enable-jpeg \
--enable-mad \
@@ -79,7 +106,6 @@ pre-configure:
--disable-live \
--disable-pvr \
--disable-ftp \
- --disable-v4l2 \
--disable-ivtv \
--disable-dvdread-internal \
--disable-libdvdcss-internal \
@@ -99,10 +125,13 @@ pre-configure:
--disable-liblzo \
--disable-xinerama \
--disable-vidix \
+ --disable-gl \
+ --extra-cflags="${TCFLAGS} ${EXTRA_CFLAGS}" \
${CONFIGURE_CPU_OPTS} \
${CONFIGURE_DEBUG} \
+ ${CONFIGURE_DIRECTFB} \
);
-
+
post-install:
${INSTALL_DIR} ${IDIR_MPLAYER}/usr/bin
${CP} ${WRKINST}/usr/bin/mplayer ${IDIR_MPLAYER}/usr/bin
diff --git a/package/mplayer/patches/patch-configure b/package/mplayer/patches/patch-configure
index dcebb8645..aabaf8282 100644
--- a/package/mplayer/patches/patch-configure
+++ b/package/mplayer/patches/patch-configure
@@ -1,11 +1,11 @@
--- mplayer-1.0-29987.orig/configure 2009-12-10 13:18:20.000000000 +0100
-+++ mplayer-1.0-29987/configure 2010-03-06 12:52:36.000000000 +0100
-@@ -2266,7 +2266,7 @@ EOF
- _optimizing="$proc"
- ;;
++++ mplayer-1.0-29987/configure 2010-06-13 22:58:34.756925268 +0200
+@@ -4141,7 +4141,7 @@ dfb_version() {
-- mips)
-+ mips|mips64|mipsel|mips64el)
- _arch='SGI_MIPS'
- _target_arch='ARCH_SGI_MIPS = yes'
- iproc='sgi-mips'
+ if test "$_directfb" = yes; then
+ cat > $TMPC << EOF
+-#include <directfb_version.h>
++#include <directfb/directfb_version.h>
+ int
+ dfb_ver = DIRECTFB_MAJOR_VERSION.DIRECTFB_MINOR_VERSION.DIRECTFB_MICRO_VERSION
+ ;
diff --git a/package/mplayer/patches/patch-libao2_ao_alsa_c b/package/mplayer/patches/patch-libao2_ao_alsa_c
deleted file mode 100644
index 7f6478baa..000000000
--- a/package/mplayer/patches/patch-libao2_ao_alsa_c
+++ /dev/null
@@ -1,11 +0,0 @@
---- mplayer-1.0-29987.orig/libao2/ao_alsa.c 2009-12-10 21:54:25.000000000 +0100
-+++ mplayer-1.0-29987/libao2/ao_alsa.c 2009-12-10 22:38:31.000000000 +0100
-@@ -772,8 +772,6 @@ static int play(void* data, int len, int
- {
- int num_frames;
- snd_pcm_sframes_t res = 0;
-- if (!(flags & AOPLAY_FINAL_CHUNK) && len > ao_data.outburst)
-- len = len / ao_data.outburst * ao_data.outburst;
- num_frames = len / bytes_per_sample;
-
- //mp_msg(MSGT_AO,MSGL_ERR,"alsa-play: frames=%i, len=%i\n",num_frames,len);
diff --git a/package/mplayer/patches/patch-loader_win32_c b/package/mplayer/patches/patch-loader_win32_c
deleted file mode 100644
index 9392be1ce..000000000
--- a/package/mplayer/patches/patch-loader_win32_c
+++ /dev/null
@@ -1,10 +0,0 @@
---- mplayer-1.0-29973.orig/loader/win32.c 2009-12-02 19:45:33.000000000 +0100
-+++ mplayer-1.0-29973/loader/win32.c 2009-12-04 22:32:05.000000000 +0100
-@@ -61,7 +61,6 @@ for DLL to know too much about its envir
- #include <dirent.h>
- #include <sys/time.h>
- #include <sys/stat.h>
--#include <sys/timeb.h>
- #ifdef HAVE_KSTAT
- #include <kstat.h>
- #endif
diff --git a/package/mutt/patches/patch-Makefile_in b/package/mutt/patches/patch-Makefile_in
index ab7867d78..3a6601abe 100644
--- a/package/mutt/patches/patch-Makefile_in
+++ b/package/mutt/patches/patch-Makefile_in
@@ -1,8 +1,7 @@
-$Id: update-patches 24 2008-08-31 14:56:13Z wbx $
---- mutt-1.5.19.orig/Makefile.in 2009-01-05 20:24:13.000000000 +0100
-+++ mutt-1.5.19/Makefile.in 2009-05-10 19:02:17.000000000 +0200
-@@ -129,7 +129,7 @@ RECURSIVE_CLEAN_TARGETS = mostlyclean-re
- distclean-recursive maintainer-clean-recursive
+--- mutt-1.5.20.orig/Makefile.in 2009-06-09 08:50:44.000000000 +0200
++++ mutt-1.5.20/Makefile.in 2010-05-30 13:43:47.001613117 +0200
+@@ -155,7 +155,7 @@ AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGE
+ distdir dist dist-all distcheck
ETAGS = etags
CTAGS = ctags
-DIST_SUBDIRS = m4 po intl doc contrib imap
@@ -10,7 +9,7 @@ $Id: update-patches 24 2008-08-31 14:56:13Z wbx $
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
distdir = $(PACKAGE)-$(VERSION)
top_distdir = $(distdir)
-@@ -291,7 +291,7 @@ top_srcdir = @top_srcdir@
+@@ -340,7 +340,7 @@ top_srcdir = @top_srcdir@
AUTOMAKE_OPTIONS = 1.6 foreign
@BUILD_IMAP_TRUE@IMAP_SUBDIR = imap
@BUILD_IMAP_TRUE@IMAP_INCLUDES = -I$(top_srcdir)/imap
diff --git a/package/mutt/patches/patch-mutt_ssl_c b/package/mutt/patches/patch-mutt_ssl_c
new file mode 100644
index 000000000..160dc668c
--- /dev/null
+++ b/package/mutt/patches/patch-mutt_ssl_c
@@ -0,0 +1,20 @@
+--- mutt-1.5.20.orig/mutt_ssl.c 2009-06-10 07:08:29.000000000 +0200
++++ mutt-1.5.20/mutt_ssl.c 2010-06-02 19:53:33.141613592 +0200
+@@ -652,7 +652,7 @@ static int check_host (X509 *x509cert, c
+ char *buf = NULL;
+ int bufsize;
+ /* needed to get the DNS subjectAltNames: */
+- STACK *subj_alt_names;
++ STACK_OF(GENERAL_NAME) *subj_alt_names;
+ int subj_alt_names_count;
+ GENERAL_NAME *subj_alt_name;
+ /* did we find a name matching hostname? */
+@@ -735,7 +735,7 @@ static int ssl_cache_trusted_cert (X509
+ {
+ dprint (1, (debugfile, "trusted: %s\n", c->name));
+ if (!SslSessionCerts)
+- SslSessionCerts = sk_new_null();
++ SslSessionCerts = sk_X509_new_null();
+ return (sk_X509_push (SslSessionCerts, X509_dup(c)));
+ }
+
diff --git a/package/nano/Makefile b/package/nano/Makefile
index 088ad4ca5..2efed2730 100644
--- a/package/nano/Makefile
+++ b/package/nano/Makefile
@@ -4,15 +4,15 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= nano
-PKG_VERSION:= 2.0.9
+PKG_VERSION:= 2.2.4
PKG_RELEASE:= 1
-PKG_MD5SUM:= 2be94dc43fb60fff4626a2401a977220
+PKG_MD5SUM:= 6304308afb1f7ef4a5e93eb99206632a
PKG_DESCR:= An enhanced clone of the Pico text editor
PKG_SECTION:= admin
PKG_DEPENDS:= libncurses
PKG_BUILDDEP+= ncurses
PKG_URL:= http://www.nano-editor.org
-PKG_SITES:= http://www.nano-editor.org/dist/v2.0/
+PKG_SITES:= http://www.nano-editor.org/dist/v2.2/
PKG_FLAVOURS:= TINY
@@ -24,6 +24,7 @@ CONFIGURE_ENV+= ac_cv_header_regex_h=no
CONFIGURE_ARGS+= --enable-nanorc \
--disable-glibtest \
--disable-utf8 \
+ --disable-color \
--without-slang
ifeq (${ADK_PACKAGE_NANO_TINY},y)
CONFIGURE_ARGS+= --enable-tiny
diff --git a/package/neon/Makefile b/package/neon/Makefile
index 350dcd8b1..ddb417224 100644
--- a/package/neon/Makefile
+++ b/package/neon/Makefile
@@ -3,16 +3,16 @@
include ${TOPDIR}/rules.mk
-PKG_NAME= neon
-PKG_VERSION= 0.28.4
-PKG_RELEASE= 1
-PKG_MD5SUM= 6c3b94362af743d046e198e9fcbe4a85
+PKG_NAME:= neon
+PKG_VERSION:= 0.29.3
+PKG_RELEASE:= 1
+PKG_MD5SUM:= ba1015b59c112d44d7797b62fe7bee51
PKG_DESCR:= HTTP and WebDAV library
PKG_SECTION:= libs
PKG_DEPENDS:= libpthread libxml2 libopenssl zlib
PKG_BUILDDEP+= libpthread libxml2 openssl zlib
-PKG_UTL:= http://webdav.org/neon
-PKG_SITES= http://webdav.org/neon/
+PKG_URL:= http://webdav.org/neon/
+PKG_SITES:= http://webdav.org/neon/
include ${TOPDIR}/mk/package.mk
diff --git a/package/nfs-utils/Makefile b/package/nfs-utils/Makefile
index 78017c615..97781670c 100644
--- a/package/nfs-utils/Makefile
+++ b/package/nfs-utils/Makefile
@@ -9,20 +9,13 @@ PKG_RELEASE:= 2
PKG_MD5SUM:= c3ccd16c147befd49fe4541a506dd177
PKG_DESCR:= Utilities for NFS kernel server implementation
PKG_SECTION:= net
-PKG_DEPENDS:= kmod-nfsd
-
+PKG_DEPENDS:= kmod-nfsd portmap
ifeq (${ADK_PACKAGE_NFS_UTILS_WITH_KERBEROS},y)
-PKG_DEPENDS+= libkrb5 libevent libnfsidmap librpcsecgss libcom-err libgssglue
PKG_BUILDDEP+= libnfsidmap krb5 libevent libgssglue librpcsecgss
endif
-
ifeq ($(ADK_PACKAGE_NFS_UTILS_WITH_TIRPC),y)
-PKG_DEPENDS+= libtirpc rpcbind
PKG_BUILDDEP+= libtirpc rpcbind
-else
-PKG_DEPENDS:= portmap
endif
-
PKG_URL:= http://sourceforge.net/projects/nfs
PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=nfs/}
@@ -30,7 +23,9 @@ DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
PKG_FLAVOURS:= WITH_KERBEROS WITH_TIRPC
PKGFD_WITH_KERBEROS:= enable Kerberos support (MIT)
+PKGFS_WITH_KERBEROS:= libkrb5 libevent libnfsidmap librpcsecgss libcom-err libgssglue
PKGFD_WITH_TIRPC:= enable Transport Independent RPC
+PKGFS_WITH_TIRPC:= libtirpc rpcbind
include ${TOPDIR}/mk/package.mk
diff --git a/package/nut/Makefile b/package/nut/Makefile
index e06a5784f..aae2f2b49 100644
--- a/package/nut/Makefile
+++ b/package/nut/Makefile
@@ -10,15 +10,12 @@ PKG_MD5SUM:= 609ebaf2123fc7171d25a6c742dd7d66
PKG_DESCR:= Network UPS Tools
PKG_SECTION:= sys
ifneq (${ADK_PACKAGE_NUT_SSL},)
-PKG_DEPENDS+= libopenssl
PKG_BUILDDEP+= openssl
endif
ifneq (${ADK_PACKAGE_NUT_USB},)
-PKG_DEPENDS+= libusb
PKG_BUILDDEP+= libusb
endif
ifneq (${ADK_PACKAGE_NUT_SNMP},)
-PKG_DEPENDS+= libnetsnmp
PKG_BUILDDEP+= net-snmp
endif
PKG_URL:= http://www.networkupstools.org
@@ -26,8 +23,11 @@ PKG_SITES:= http://www.networkupstools.org/source/2.4/
PKG_FLAVOURS:= SSL SNMP USB
PKGFD_SSL:= enable SSL support
+PKGFS_SSL:= libopenssl
PKGFD_SNMP:= enable SNMP support
+PKGFS_SNMP:= libnetsnmp
PKGFD_USB:= enable USB support
+PKGFS_USB:= libusb
include ${TOPDIR}/mk/package.mk
diff --git a/package/openldap/Makefile b/package/openldap/Makefile
index db05887d0..c1bf15e36 100644
--- a/package/openldap/Makefile
+++ b/package/openldap/Makefile
@@ -4,9 +4,9 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= openldap
-PKG_VERSION:= 2.4.21
+PKG_VERSION:= 2.4.22
PKG_RELEASE:= 1
-PKG_MD5SUM:= e7128c57b2bacd940e8906057c94ff26
+PKG_MD5SUM:= ef01b52255ce8e3fbf8aa34f6fe7598b
PKG_DESCR:= OpenLDAP client libraries
PKG_SECTION:= libs
PKG_DEPENDS:= libopenssl libsasl2
diff --git a/package/openntpd/patches/patch-ntpd_c b/package/openntpd/patches/patch-ntpd_c
new file mode 100644
index 000000000..0841ca4e9
--- /dev/null
+++ b/package/openntpd/patches/patch-ntpd_c
@@ -0,0 +1,27 @@
+--- openntpd-3.9p1.orig/ntpd.c 2006-05-14 07:29:23.000000000 +0200
++++ openntpd-3.9p1/ntpd.c 2010-07-02 14:21:47.473356095 +0200
+@@ -73,7 +73,7 @@ usage(void)
+ {
+ extern char *__progname;
+
+- fprintf(stderr, "usage: %s [-dSs] [-f file]\n", __progname);
++ fprintf(stderr, "usage: %s [-diSs] [-f file]\n", __progname);
+ exit(1);
+ }
+
+@@ -100,11 +100,14 @@ main(int argc, char *argv[])
+ log_init(1); /* log to stderr until daemonized */
+ res_init(); /* XXX */
+
+- while ((ch = getopt(argc, argv, "df:sS")) != -1) {
++ while ((ch = getopt(argc, argv, "dif:sS")) != -1) {
+ switch (ch) {
+ case 'd':
+ conf.debug = 1;
+ break;
++ case 'i':
++ conf.ignore = 1;
++ break;
+ case 'f':
+ conffile = optarg;
+ break;
diff --git a/package/openntpd/patches/patch-ntpd_h b/package/openntpd/patches/patch-ntpd_h
index 9189d6204..6cf64776c 100644
--- a/package/openntpd/patches/patch-ntpd_h
+++ b/package/openntpd/patches/patch-ntpd_h
@@ -28,8 +28,8 @@ $Id$
use settimeofday() instead of adjtime(), in order to provide
a faster time setting at start, since adjusting can take ages
---- openntpd-3.9p1.orig/ntpd.h Sun May 14 05:28:58 2006
-+++ openntpd-3.9p1/ntpd.h Mon Oct 8 12:17:58 2007
+--- openntpd-3.9p1.orig/ntpd.h 2006-05-14 07:29:21.000000000 +0200
++++ openntpd-3.9p1/ntpd.h 2010-07-02 14:13:10.357356688 +0200
@@ -55,8 +55,12 @@
#define QSCALE_OFF_MAX 0.50
@@ -45,3 +45,11 @@ $Id$
#define SETTIME_TIMEOUT 15 /* max seconds to wait with -s */
#define LOG_NEGLIGEE 128 /* negligible drift to not log (ms) */
+@@ -131,6 +135,7 @@ struct ntpd_conf {
+ u_int8_t listen_all;
+ u_int8_t settime;
+ u_int8_t debug;
++ u_int8_t ignore;
+ u_int32_t scale;
+ };
+
diff --git a/package/openntpd/patches/patch-server_c b/package/openntpd/patches/patch-server_c
new file mode 100644
index 000000000..ae1614afa
--- /dev/null
+++ b/package/openntpd/patches/patch-server_c
@@ -0,0 +1,40 @@
+--- openntpd-3.9p1.orig/server.c 2006-05-14 07:29:21.000000000 +0200
++++ openntpd-3.9p1/server.c 2010-07-02 15:33:05.061342638 +0200
+@@ -150,21 +150,33 @@ server_dispatch(int fd, struct ntpd_conf
+ version = (query.status & VERSIONMASK) >> 3;
+
+ bzero(&reply, sizeof(reply));
+- if (conf->status.synced)
++ if (conf->status.synced || conf->ignore)
+ reply.status = conf->status.leap;
+ else
+ reply.status = LI_ALARM;
++
+ reply.status |= (query.status & VERSIONMASK);
+ if ((query.status & MODEMASK) == MODE_CLIENT)
+ reply.status |= MODE_SERVER;
+ else
+ reply.status |= MODE_SYM_PAS;
+
+- reply.stratum = conf->status.stratum;
++ if (conf->ignore) {
++ reply.stratum = 1;
++ reply.precision = -20;
++ } else {
++ reply.stratum = conf->status.stratum;
++ reply.precision = conf->status.precision;
++ }
++
+ reply.ppoll = query.ppoll;
+- reply.precision = conf->status.precision;
+ reply.rectime = d_to_lfp(rectime);
+- reply.reftime = d_to_lfp(conf->status.reftime);
++
++ if (conf->ignore)
++ reply.reftime = d_to_lfp(gettime());
++ else
++ reply.reftime = d_to_lfp(conf->status.reftime);
++
+ reply.xmttime = d_to_lfp(gettime());
+ reply.orgtime = query.xmttime;
+ reply.rootdelay = d_to_sfp(conf->status.rootdelay);
diff --git a/package/openssh/Makefile b/package/openssh/Makefile
index 1eb72097a..2896c1a29 100644
--- a/package/openssh/Makefile
+++ b/package/openssh/Makefile
@@ -5,7 +5,7 @@ include ${TOPDIR}/rules.mk
PKG_NAME:= openssh
PKG_VERSION:= 5.5p1
-PKG_RELEASE:= 1
+PKG_RELEASE:= 2
PKG_MD5SUM:= 88633408f4cb1eb11ec7e2ec58b519eb
PKG_DESCR:= OpenSSH server
PKG_SECTION:= net
@@ -85,5 +85,11 @@ post-install:
${INSTALL_BIN} ${WRKINST}/usr/libexec/sftp-server \
${IDIR_OPENSSH_SFTP_SERVER}/usr/libexec
chmod 0700 {${IDIR_OPENSSH_CLIENT},${IDIR_OPENSSH_SERVER}}/etc/ssh
+ # ssh pubkey
+ test -z $(ADK_SSH_PUBKEY) || ( \
+ mkdir -p $(IDIR_OPENSSH_SERVER)/etc/ssh; \
+ echo $(ADK_SSH_PUBKEY) \
+ >$(IDIR_OPENSSH_SERVER)/etc/ssh/authorized_keys; \
+ )
include ${TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/openssl/Makefile b/package/openssl/Makefile
index 319deda11..1f77db9f8 100644
--- a/package/openssl/Makefile
+++ b/package/openssl/Makefile
@@ -4,9 +4,9 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= openssl
-PKG_VERSION:= 0.9.8l
+PKG_VERSION:= 1.0.0
PKG_RELEASE:= 1
-PKG_MD5SUM:= 05a0ece1372392a2cf310ebb96333025
+PKG_MD5SUM:= 89eaa86e25b2845f920ec00ae4c864ed
PKG_DESCR:= OpenSSL (Secure Socket Layer) libraries
PKG_SECTION:= libs
PKG_DEPENDS:= zlib
@@ -37,17 +37,16 @@ FAKE_FLAGS+= INSTALL_PREFIX=${WRKINST}
OPENSSL_OPTIONS = shared no-ec no-err no-krb5 no-threads zlib-dynamic no-engines no-camellia no-idea no-rc5 no-mdc2 no-sha0 no-smime no-aes192 no-ripemd no-cast
-post-extract:
- @find ${WRKBUILD} -name *.rej -exec rm {} \;
+#post-extract:
+# @find ${WRKBUILD} -name *.rej -exec rm {} \;
do-configure:
(cd $(WRKBUILD); \
PATH=$(TARGET_PATH) \
OPTIMIZATION_FLAGS="$(TARGET_CFLAGS) -fPIC" \
- ./Configure linux-embedded \
+ bash -x ./Configure linux-embedded \
--prefix=/usr \
--openssldir=/etc/ssl \
- --with-cryptodev \
-I$(STAGING_DIR)/usr/include \
-L$(STAGING_DIR)/usr/lib -ldl \
-DOPENSSL_SMALL_FOOTPRINT \
diff --git a/package/openssl/patches/ocf.patch b/package/openssl/patches/ocf.patch
deleted file mode 100644
index f349288e9..000000000
--- a/package/openssl/patches/ocf.patch
+++ /dev/null
@@ -1,1197 +0,0 @@
-Index: libssl/Configure
-===================================================================
-RCS file: libssl/Configure,v
-retrieving revision 1.1.1.12
-retrieving revision 1.21
-diff -u -r1.1.1.12 -r1.21
---- libssl/Configure 15 Sep 2008 23:36:40 -0000 1.1.1.12
-+++ libssl/Configure 15 Sep 2008 23:44:15 -0000 1.21
-@@ -34,6 +34,8 @@
- # (Default: KRB5_DIR/include)
- # --with-krb5-flavor Declare what flavor of Kerberos 5 is used. Currently
- # supported values are "MIT" and "Heimdal". A value is required.
-+# --with-cryptodev Force support for cryptodev (ie., ocf-linux)
-+# --with-cryptodev-digests Force support for cryptodev digests (generally slow)
- #
- # --test-sanity Make a number of sanity checks on the data in this file.
- # This is a debugging tool for OpenSSL developers.
-@@ -538,6 +540,9 @@
- ##### Compaq Non-Stop Kernel (Tandem)
- "tandem-c89","c89:-Ww -D__TANDEM -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED=1 -D_TANDEM_SOURCE -DB_ENDIAN::(unknown):::THIRTY_TWO_BIT:::",
-
-+# uClinux
-+"uClinux-dist","$ENV{'CC'}:\$(CFLAGS)::-D_REENTRANT::\$(LDFLAGS) \$(LDLIBS):BN_LLONG::::::::::::\$(LIBSSL_dlfcn):linux-shared:-fPIC:-shared:.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR):$ENV{'RANLIB'}",
-+
- );
-
- my @MK1MF_Builds=qw(VC-WIN64I VC-WIN64A
-@@ -587,6 +592,8 @@
- my $no_asm=0;
- my $no_dso=0;
- my $no_gmp=0;
-+my $have_cryptodev=0;
-+my $use_cryptodev_digests=0;
- my @skip=();
- my $Makefile="Makefile";
- my $des_locl="crypto/des/des_locl.h";
-@@ -714,6 +721,14 @@
- {
- exit(&test_sanity());
- }
-+ elsif (/^--with-cryptodev$/)
-+ {
-+ $have_cryptodev = 1;
-+ }
-+ elsif (/^--with-cryptodev-digests$/)
-+ {
-+ $use_cryptodev_digests = 1;
-+ }
- elsif (/^reconfigure/ || /^reconf/)
- {
- if (open(IN,"<$Makefile"))
-@@ -922,6 +937,7 @@
- print " OPENSSL_NO_$ALGO";
-
- if (/^err$/) { $flags .= "-DOPENSSL_NO_ERR "; }
-+ elsif (/^hw$/) { $flags .= "-DOPENSSL_NO_HW "; }
- elsif (/^asm$/) { $no_asm = 1; }
- }
- else
-@@ -1062,6 +1078,16 @@
- $withargs{"krb5-dir"} ne "";
- }
-
-+# enable the linux cryptodev (ocf-linux) support
-+if ($have_cryptodev)
-+ {
-+ if ($use_cryptodev_digests)
-+ {
-+ $cflags = "-DUSE_CRYPTODEV_DIGESTS $cflags";
-+ }
-+ $cflags = "-DHAVE_CRYPTODEV $cflags";
-+ }
-+
- # The DSO code currently always implements all functions so that no
- # applications will have to worry about that from a compilation point
- # of view. However, the "method"s may return zero unless that platform
-Index: libssl/INSTALL
-===================================================================
-RCS file: libssl/INSTALL,v
-retrieving revision 1.1.1.8
-retrieving revision 1.3
-diff -u -r1.1.1.8 -r1.3
---- libssl/INSTALL 15 Sep 2008 23:36:40 -0000 1.1.1.8
-+++ libssl/INSTALL 15 Sep 2008 23:44:15 -0000 1.3
-@@ -103,6 +103,12 @@
- define preprocessor symbols, specify additional libraries,
- library directories or other compiler options.
-
-+ --with-cryptodev Enabled the BSD cryptodev engine even if we are not using
-+ BSD. Useful if you are running ocf-linux or something
-+ similar. Once enabled you can also enable the use of
-+ cryptodev digests, with is usually slower unless you have
-+ large amounts data. Use --with-cryptodev-digests to force
-+ it.
-
- Installation in Detail
- ----------------------
-Index: libssl/Makefile.org
-===================================================================
-RCS file: libssl/Makefile.org,v
-retrieving revision 1.1.1.11
-retrieving revision 1.21
-diff -u -r1.1.1.11 -r1.21
---- libssl/Makefile.org 15 Sep 2008 23:36:40 -0000 1.1.1.11
-+++ libssl/Makefile.org 15 Sep 2008 23:44:15 -0000 1.21
-@@ -367,7 +367,7 @@
-
- links:
- @$(PERL) $(TOP)/util/mkdir-p.pl include/openssl
-- @$(PERL) $(TOP)/util/mklink.pl include/openssl $(EXHEADER)
-+ @$(PERL) $(TOP)/util/mklink.pl include/openssl $(HEADER) $(EXHEADER)
- @set -e; target=links; $(RECURSIVE_BUILD_CMD)
-
- gentests:
-Index: libssl/apps/apps.h
-===================================================================
-RCS file: libssl/apps/apps.h,v
-retrieving revision 1.1.1.7
-retrieving revision 1.6
-diff -u -r1.1.1.7 -r1.6
---- libssl/apps/apps.h 15 Sep 2008 23:36:40 -0000 1.1.1.7
-+++ libssl/apps/apps.h 15 Sep 2008 23:44:15 -0000 1.6
-@@ -112,7 +112,7 @@
- #ifndef HEADER_APPS_H
- #define HEADER_APPS_H
-
--#include "e_os.h"
-+#include <openssl/e_os.h>
-
- #include <openssl/bio.h>
- #include <openssl/x509.h>
-Index: libssl/apps/progs.h
-===================================================================
-RCS file: libssl/apps/progs.h,v
-retrieving revision 1.1.1.8
-retrieving revision 1.7
-diff -u -r1.1.1.8 -r1.7
---- libssl/apps/progs.h 15 Sep 2008 23:36:40 -0000 1.1.1.8
-+++ libssl/apps/progs.h 15 Sep 2008 23:44:15 -0000 1.7
-@@ -129,7 +129,9 @@
- #ifndef OPENSSL_NO_ENGINE
- {FUNC_TYPE_GENERAL,"engine",engine_main},
- #endif
-+#ifndef OPENSSL_NO_OCSP
- {FUNC_TYPE_GENERAL,"ocsp",ocsp_main},
-+#endif
- {FUNC_TYPE_GENERAL,"prime",prime_main},
- #ifndef OPENSSL_NO_MD2
- {FUNC_TYPE_MD,"md2",dgst_main},
-Index: libssl/apps/speed.c
-===================================================================
-RCS file: libssl/apps/speed.c,v
-retrieving revision 1.1.1.10
-retrieving revision 1.15
-diff -u -r1.1.1.10 -r1.15
---- libssl/apps/speed.c 15 Sep 2008 23:36:40 -0000 1.1.1.10
-+++ libssl/apps/speed.c 15 Sep 2008 23:44:15 -0000 1.15
-@@ -292,7 +292,7 @@
- "evp","sha256","sha512",
- "aes-128 ige","aes-192 ige","aes-256 ige"};
- static double results[ALGOR_NUM][SIZE_NUM];
--static int lengths[SIZE_NUM]={16,64,256,1024,8*1024};
-+static int lengths[SIZE_NUM]={16,64,256,1024,2*1024,4*1024};
- static double rsa_results[RSA_NUM][2];
- static double dsa_results[DSA_NUM][2];
- #ifndef OPENSSL_NO_ECDSA
-@@ -328,6 +328,79 @@
- #define START 0
- #define STOP 1
-
-+#ifdef __linux__
-+/*
-+ * record CPU usage as well
-+ */
-+
-+static int do_cpu = 0;
-+
-+struct cpu_stat {
-+ unsigned int user;
-+ unsigned int nice;
-+ unsigned int system;
-+ unsigned int idle;
-+ unsigned int total;
-+};
-+
-+static unsigned int cpu_usage[ALGOR_NUM][SIZE_NUM];
-+static unsigned int rsa_cpu_usage[RSA_NUM][2];
-+static unsigned int dsa_cpu_usage[DSA_NUM][2];
-+static struct cpu_stat cpu_start, cpu_finish;
-+
-+static void
-+get_cpu(int s)
-+{
-+ FILE *fp = NULL;
-+ unsigned char buf[80];
-+ struct cpu_stat *st = s == START ? &cpu_start : &cpu_finish;
-+
-+ memset(st, 0, sizeof(*st));
-+
-+ if (fp == NULL)
-+ fp = fopen("/proc/stat", "r");
-+ if (!fp)
-+ return;
-+ if (fseek(fp, 0, SEEK_SET) == -1) {
-+ fclose(fp);
-+ return;
-+ }
-+ fscanf(fp, "%s %d %d %d %d", &buf[0], &st->user, &st->nice,
-+ &st->system, &st->idle);
-+ st->total = st->user + st->nice + st->system + st->idle;
-+ fclose(fp);
-+}
-+
-+static unsigned int
-+calc_cpu()
-+{
-+ unsigned int total, res;
-+
-+ total = cpu_finish.total - cpu_start.total;
-+ if (total <= 0)
-+ return 0;
-+#if 1 // busy
-+ res = ((cpu_finish.system + cpu_finish.user + cpu_finish.nice) -
-+ (cpu_start.system + cpu_start.user + cpu_start.nice)) *
-+ 100 / total;
-+#endif
-+#if 0 // system
-+ res = (cpu_finish.system - cpu_start.system) * 100 / total;
-+#endif
-+#if 0 // user
-+ res = (cpu_finish.user - cpu_start.user) * 100 / total;
-+#endif
-+#if 0 // nice
-+ res = (cpu_finish.nice - cpu_start.nice) * 100 / total;
-+#endif
-+#if 0 // idle
-+ res = (cpu_finish.idle - cpu_start.idle) * 100 / total;
-+#endif
-+ return(res);
-+}
-+
-+#endif
-+
- #if defined(OPENSSL_SYS_NETWARE)
-
- /* for NetWare the best we can do is use clock() which returns the
-@@ -358,6 +431,11 @@
- {
- double ret;
-
-+#ifdef __linux__
-+ if (do_cpu)
-+ get_cpu(s);
-+#endif
-+
- #ifdef USE_TOD
- if(usertime)
- {
-@@ -832,6 +910,14 @@
- j--; /* Otherwise, -elapsed gets confused with
- an algorithm. */
- }
-+#ifdef __linux__
-+ else if ((argc > 0) && (strcmp(*argv,"-cpu") == 0))
-+ {
-+ do_cpu = 1;
-+ j--; /* Otherwise, -cpu gets confused with
-+ an algorithm. */
-+ }
-+#endif
- else if ((argc > 0) && (strcmp(*argv,"-evp") == 0))
- {
- argc--;
-@@ -1260,6 +1346,9 @@
- #ifdef HAVE_FORK
- BIO_printf(bio_err,"-multi n run n benchmarks in parallel.\n");
- #endif
-+#ifdef __linux__
-+ BIO_printf(bio_err,"-cpu calculate cpu utilisation.\n");
-+#endif
- goto end;
- }
- argc--;
-@@ -1267,11 +1356,6 @@
- j++;
- }
-
--#ifdef HAVE_FORK
-- if(multi && do_multi(multi))
-- goto show_res;
--#endif
--
- if (j == 0)
- {
- for (i=0; i<ALGOR_NUM; i++)
-@@ -1604,6 +1688,11 @@
- signal(SIGALRM,sig_done);
- #endif /* SIGALRM */
-
-+#ifdef HAVE_FORK /* DM */
-+ if(multi && do_multi(multi))
-+ goto show_res;
-+#endif
-+
- #ifndef OPENSSL_NO_MD2
- if (doit[D_MD2])
- {
-@@ -2033,8 +2122,6 @@
- /* -O3 -fschedule-insns messes up an
- * optimization here! names[D_EVP]
- * somehow becomes NULL */
-- print_message(names[D_EVP],save_count,
-- lengths[j]);
-
- EVP_CIPHER_CTX_init(&ctx);
- if(decrypt)
-@@ -2043,6 +2130,9 @@
- EVP_EncryptInit_ex(&ctx,evp_cipher,NULL,key16,iv);
- EVP_CIPHER_CTX_set_padding(&ctx, 0);
-
-+ print_message(names[D_EVP],save_count,
-+ lengths[j]);
-+
- Time_F(START);
- if(decrypt)
- for (count=0,run=1; COND(save_count*4*lengths[0]/lengths[j]); count++)
-@@ -2107,6 +2197,8 @@
- }
- }
- d=Time_F(STOP);
-+ if (do_cpu)
-+ rsa_cpu_usage[j][0] = calc_cpu();
- BIO_printf(bio_err,mr ? "+R1:%ld:%d:%.2f\n"
- : "%ld %d bit private RSA's in %.2fs\n",
- count,rsa_bits[j],d);
-@@ -2142,6 +2234,8 @@
- }
- }
- d=Time_F(STOP);
-+ if (do_cpu)
-+ rsa_cpu_usage[j][1] = calc_cpu();
- BIO_printf(bio_err,mr ? "+R2:%ld:%d:%.2f\n"
- : "%ld %d bit public RSA's in %.2fs\n",
- count,rsa_bits[j],d);
-@@ -2201,6 +2295,8 @@
- }
- }
- d=Time_F(STOP);
-+ if (do_cpu)
-+ dsa_cpu_usage[j][0] = calc_cpu();
- BIO_printf(bio_err,mr ? "+R3:%ld:%d:%.2f\n"
- : "%ld %d bit DSA signs in %.2fs\n",
- count,dsa_bits[j],d);
-@@ -2236,6 +2332,8 @@
- }
- }
- d=Time_F(STOP);
-+ if (do_cpu)
-+ dsa_cpu_usage[j][1] = calc_cpu();
- BIO_printf(bio_err,mr ? "+R4:%ld:%d:%.2f\n"
- : "%ld %d bit DSA verify in %.2fs\n",
- count,dsa_bits[j],d);
-@@ -2530,14 +2628,23 @@
- fprintf(stdout,"The 'numbers' are in 1000s of bytes per second processed.\n");
- fprintf(stdout,"type ");
- }
-- for (j=0; j<SIZE_NUM; j++)
-+ for (j=0; j<SIZE_NUM; j++) {
- fprintf(stdout,mr ? ":%d" : "%7d bytes",lengths[j]);
-+ if (do_cpu && !mr)
-+ fprintf(stdout, " /cpu");
-+ }
- fprintf(stdout,"\n");
- }
-
- for (k=0; k<ALGOR_NUM; k++)
- {
- if (!doit[k]) continue;
-+ if (k == D_EVP) {
-+ if (evp_cipher)
-+ names[D_EVP]=OBJ_nid2ln(evp_cipher->nid);
-+ else
-+ names[D_EVP]=OBJ_nid2ln(evp_md->type);
-+ }
- if(mr)
- fprintf(stdout,"+F:%d:%s",k,names[k]);
- else
-@@ -2548,6 +2655,8 @@
- fprintf(stdout," %11.2fk",results[k][j]/1e3);
- else
- fprintf(stdout,mr ? ":%.2f" : " %11.2f ",results[k][j]);
-+ if (do_cpu)
-+ fprintf(stdout, mr ? "/%d" : "/%%%-3d", cpu_usage[k][j]);
- }
- fprintf(stdout,"\n");
- }
-@@ -2562,13 +2671,18 @@
- j=0;
- }
- if(mr)
-- fprintf(stdout,"+F2:%u:%u:%f:%f\n",
-- k,rsa_bits[k],rsa_results[k][0],
-- rsa_results[k][1]);
-- else
-- fprintf(stdout,"rsa %4u bits %8.6fs %8.6fs %8.1f %8.1f\n",
-- rsa_bits[k],rsa_results[k][0],rsa_results[k][1],
-- 1.0/rsa_results[k][0],1.0/rsa_results[k][1]);
-+ fprintf(stdout,"+F2:%u:%u:%f", k,rsa_bits[k],rsa_results[k][0]);
-+ else
-+ fprintf(stdout,"rsa %4u bits %8.6fs",rsa_bits[k],rsa_results[k][0]);
-+ if (do_cpu)
-+ fprintf(stdout, mr ? "/%d": "/%%%-3d", rsa_cpu_usage[k][0]);
-+ fprintf(stdout, mr ? ":%f" : " %8.6fs", rsa_results[k][1]);
-+ if (do_cpu)
-+ fprintf(stdout, mr ? "/%d": "/%%%-3d", rsa_cpu_usage[k][1]);
-+ if(!mr)
-+ fprintf(stdout, " %8.1f %8.1f",
-+ 1.0/rsa_results[k][0],1.0/rsa_results[k][1]);
-+ fprintf(stdout, "\n");
- }
- #endif
- #ifndef OPENSSL_NO_DSA
-@@ -2582,12 +2696,18 @@
- j=0;
- }
- if(mr)
-- fprintf(stdout,"+F3:%u:%u:%f:%f\n",
-- k,dsa_bits[k],dsa_results[k][0],dsa_results[k][1]);
-+ fprintf(stdout,"+F3:%u:%u:%f", k,dsa_bits[k],dsa_results[k][0]);
- else
-- fprintf(stdout,"dsa %4u bits %8.6fs %8.6fs %8.1f %8.1f\n",
-- dsa_bits[k],dsa_results[k][0],dsa_results[k][1],
-- 1.0/dsa_results[k][0],1.0/dsa_results[k][1]);
-+ fprintf(stdout,"dsa %4u bits %8.6fs",dsa_bits[k],dsa_results[k][0]);
-+ if (do_cpu)
-+ fprintf(stdout, mr ? "/%d": "/%%%-3d", dsa_cpu_usage[k][0]);
-+ fprintf(stdout, mr ? ":%f" : " %8.6fs", dsa_results[k][1]);
-+ if (do_cpu)
-+ fprintf(stdout, mr ? "/%d": "/%%%-3d", dsa_cpu_usage[k][1]);
-+ if(!mr)
-+ fprintf(stdout, " %8.1f %8.1f",
-+ 1.0/dsa_results[k][0],1.0/dsa_results[k][1]);
-+ fprintf(stdout, "\n");
- }
- #endif
- #ifndef OPENSSL_NO_ECDSA
-@@ -2712,8 +2832,10 @@
-
- static void print_result(int alg,int run_no,int count,double time_used)
- {
-- BIO_printf(bio_err,mr ? "+R:%d:%s:%f\n"
-- : "%d %s's in %.2fs\n",count,names[alg],time_used);
-+ if (do_cpu)
-+ cpu_usage[alg][run_no] = calc_cpu();
-+ BIO_printf(bio_err,mr ? "+R:%ld:%s:%f\n"
-+ : "%ld %s's in %.2fs\n",count,names[alg],time_used);
- results[alg][run_no]=((double)count)/time_used*lengths[run_no];
- }
-
-@@ -2806,29 +2928,11 @@
- p=buf+3;
- alg=atoi(sstrsep(&p,sep));
- sstrsep(&p,sep);
-- for(j=0 ; j < SIZE_NUM ; ++j)
-+ for(j=0 ; j < SIZE_NUM ; ++j) {
-+ if (do_cpu && strchr(p, '/'))
-+ cpu_usage[alg][j] = atoi(strchr(p, '/') + 1);
- results[alg][j]+=atof(sstrsep(&p,sep));
- }
-- else if(!strncmp(buf,"+F2:",4))
-- {
-- int k;
-- double d;
--
-- p=buf+4;
-- k=atoi(sstrsep(&p,sep));
-- sstrsep(&p,sep);
--
-- d=atof(sstrsep(&p,sep));
-- if(n)
-- rsa_results[k][0]=1/(1/rsa_results[k][0]+1/d);
-- else
-- rsa_results[k][0]=d;
--
-- d=atof(sstrsep(&p,sep));
-- if(n)
-- rsa_results[k][1]=1/(1/rsa_results[k][1]+1/d);
-- else
-- rsa_results[k][1]=d;
- }
- else if(!strncmp(buf,"+F2:",4))
- {
-@@ -2839,12 +2943,18 @@
- k=atoi(sstrsep(&p,sep));
- sstrsep(&p,sep);
-
-+ /* before we move the token along */
-+ if (do_cpu && strchr(p, '/'))
-+ rsa_cpu_usage[k][0] = atoi(strchr(p, '/') + 1);
- d=atof(sstrsep(&p,sep));
- if(n)
- rsa_results[k][0]=1/(1/rsa_results[k][0]+1/d);
- else
- rsa_results[k][0]=d;
-
-+ /* before we move the token along */
-+ if (do_cpu && strchr(p, '/'))
-+ rsa_cpu_usage[k][1] = atoi(strchr(p, '/') + 1);
- d=atof(sstrsep(&p,sep));
- if(n)
- rsa_results[k][1]=1/(1/rsa_results[k][1]+1/d);
-@@ -2860,12 +2970,18 @@
- k=atoi(sstrsep(&p,sep));
- sstrsep(&p,sep);
-
-+ /* before we move the token along */
-+ if (do_cpu && strchr(p, '/'))
-+ dsa_cpu_usage[k][0] = atoi(strchr(p, '/') + 1);
- d=atof(sstrsep(&p,sep));
- if(n)
- dsa_results[k][0]=1/(1/dsa_results[k][0]+1/d);
- else
- dsa_results[k][0]=d;
-
-+ /* before we move the token along */
-+ if (do_cpu && strchr(p, '/'))
-+ dsa_cpu_usage[k][1] = atoi(strchr(p, '/') + 1);
- d=atof(sstrsep(&p,sep));
- if(n)
- dsa_results[k][1]=1/(1/dsa_results[k][1]+1/d);
-Index: libssl/crypto/cryptlib.h
-===================================================================
-RCS file: libssl/crypto/cryptlib.h,v
-retrieving revision 1.1.1.5
-retrieving revision 1.4
-diff -u -r1.1.1.5 -r1.4
---- libssl/crypto/cryptlib.h 15 Sep 2008 23:36:40 -0000 1.1.1.5
-+++ libssl/crypto/cryptlib.h 15 Sep 2008 23:44:15 -0000 1.4
-@@ -62,7 +62,7 @@
- #include <stdlib.h>
- #include <string.h>
-
--#include "e_os.h"
-+#include <openssl/e_os.h>
-
- #ifdef OPENSSL_USE_APPLINK
- #define BIO_FLAGS_UPLINK 0x8000
-Index: libssl/crypto/engine/eng_all.c
-===================================================================
-RCS file: libssl/crypto/engine/eng_all.c,v
-retrieving revision 1.1.1.4
-retrieving revision 1.6
-diff -u -r1.1.1.4 -r1.6
---- libssl/crypto/engine/eng_all.c 15 Sep 2008 23:36:41 -0000 1.1.1.4
-+++ libssl/crypto/engine/eng_all.c 15 Sep 2008 23:44:16 -0000 1.6
-@@ -104,7 +104,7 @@
- #endif
- #endif
- #ifndef OPENSSL_NO_HW
--#if defined(__OpenBSD__) || defined(__FreeBSD__)
-+#if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV)
- ENGINE_load_cryptodev();
- #endif
- #if defined(OPENSSL_SYS_WIN32) && !defined(OPENSSL_NO_CAPIENG)
-@@ -113,7 +113,7 @@
- #endif
- }
-
--#if defined(__OpenBSD__) || defined(__FreeBSD__)
-+#if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV)
- void ENGINE_setup_bsd_cryptodev(void) {
- static int bsd_cryptodev_default_loaded = 0;
- if (!bsd_cryptodev_default_loaded) {
-Index: libssl/crypto/engine/eng_cryptodev.c
-===================================================================
-RCS file: libssl/crypto/engine/eng_cryptodev.c,v
-retrieving revision 1.1.1.1
-retrieving revision 1.9
-diff -u -r1.1.1.1 -r1.9
---- libssl/crypto/engine/eng_cryptodev.c 3 Feb 2006 00:06:09 -0000 1.1.1.1
-+++ libssl/crypto/engine/eng_cryptodev.c 4 Aug 2008 00:51:09 -0000 1.9
-@@ -68,6 +68,16 @@
- struct dev_crypto_state {
- struct session_op d_sess;
- int d_fd;
-+
-+#ifdef USE_CRYPTODEV_DIGESTS
-+ char dummy_mac_key[20];
-+
-+ unsigned char digest_res[20];
-+ char *mac_data;
-+ int mac_len;
-+
-+ int copy;
-+#endif
- };
-
- static u_int32_t cryptodev_asymfeat = 0;
-@@ -75,9 +85,11 @@
- static int get_asym_dev_crypto(void);
- static int open_dev_crypto(void);
- static int get_dev_crypto(void);
-+#if 0
- static int cryptodev_max_iv(int cipher);
- static int cryptodev_key_length_valid(int cipher, int len);
- static int cipher_nid_to_cryptodev(int nid);
-+#endif
- static int get_cryptodev_ciphers(const int **cnids);
- static int get_cryptodev_digests(const int **cnids);
- static int cryptodev_usable_ciphers(const int **nids);
-@@ -100,7 +112,7 @@
- static int cryptodev_bn_mod_exp(BIGNUM *r, const BIGNUM *a,
- const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx);
- static int cryptodev_rsa_nocrt_mod_exp(BIGNUM *r0, const BIGNUM *I,
-- RSA *rsa);
-+ RSA *rsa, BN_CTX *ctx);
- static int cryptodev_rsa_mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa, BN_CTX *ctx);
- static int cryptodev_dsa_bn_mod_exp(DSA *dsa, BIGNUM *r, BIGNUM *a,
- const BIGNUM *p, const BIGNUM *m, BN_CTX *ctx, BN_MONT_CTX *m_ctx);
-@@ -130,9 +142,12 @@
- int ivmax;
- int keylen;
- } ciphers[] = {
-+ { CRYPTO_ARC4, NID_rc4, 0, 16, },
- { CRYPTO_DES_CBC, NID_des_cbc, 8, 8, },
- { CRYPTO_3DES_CBC, NID_des_ede3_cbc, 8, 24, },
- { CRYPTO_AES_CBC, NID_aes_128_cbc, 16, 16, },
-+ { CRYPTO_AES_CBC, NID_aes_192_cbc, 16, 24, },
-+ { CRYPTO_AES_CBC, NID_aes_256_cbc, 16, 32, },
- { CRYPTO_BLF_CBC, NID_bf_cbc, 8, 16, },
- { CRYPTO_CAST_CBC, NID_cast5_cbc, 8, 16, },
- { CRYPTO_SKIPJACK_CBC, NID_undef, 0, 0, },
-@@ -142,14 +157,15 @@
- static struct {
- int id;
- int nid;
-+ int keylen;
- } digests[] = {
-- { CRYPTO_SHA1_HMAC, NID_hmacWithSHA1, },
-- { CRYPTO_RIPEMD160_HMAC, NID_ripemd160, },
-- { CRYPTO_MD5_KPDK, NID_undef, },
-- { CRYPTO_SHA1_KPDK, NID_undef, },
-- { CRYPTO_MD5, NID_md5, },
-- { CRYPTO_SHA1, NID_undef, },
-- { 0, NID_undef, },
-+ { CRYPTO_SHA1_HMAC, NID_hmacWithSHA1, 20},
-+ { CRYPTO_RIPEMD160_HMAC, NID_ripemd160, 16/*?*/},
-+ { CRYPTO_MD5_KPDK, NID_undef, 0},
-+ { CRYPTO_SHA1_KPDK, NID_undef, 0},
-+ { CRYPTO_MD5, NID_md5, 16},
-+ { CRYPTO_SHA1, NID_sha1, 20},
-+ { 0, NID_undef, 0},
- };
-
- /*
-@@ -176,10 +192,17 @@
- static int
- get_dev_crypto(void)
- {
-- int fd, retfd;
-+ static int fd = -1;
-+ int retfd;
-
-- if ((fd = open_dev_crypto()) == -1)
-- return (-1);
-+ if (fd == -1) {
-+ if ((fd = open_dev_crypto()) == -1)
-+ return (-1);
-+ if (fcntl(fd, F_SETFD, 1) == -1) {
-+ close(fd);
-+ return (-1);
-+ }
-+ }
- if (ioctl(fd, CRIOGET, &retfd) == -1)
- return (-1);
-
-@@ -202,6 +225,7 @@
- return fd;
- }
-
-+#if 0
- /*
- * XXXX this needs to be set for each alg - and determined from
- * a running card.
-@@ -245,6 +269,7 @@
- return (ciphers[i].id);
- return (0);
- }
-+#endif
-
- /*
- * Find out what ciphers /dev/crypto will let us have a session for.
-@@ -264,7 +289,7 @@
- return (0);
- }
- memset(&sess, 0, sizeof(sess));
-- sess.key = (caddr_t)"123456781234567812345678";
-+ sess.key = (caddr_t)"123456789abcdefghijklmno";
-
- for (i = 0; ciphers[i].id && count < CRYPTO_ALGORITHM_MAX; i++) {
- if (ciphers[i].nid == NID_undef)
-@@ -303,10 +328,12 @@
- return (0);
- }
- memset(&sess, 0, sizeof(sess));
-+ sess.mackey = (caddr_t)"123456789abcdefghijklmno";
- for (i = 0; digests[i].id && count < CRYPTO_ALGORITHM_MAX; i++) {
- if (digests[i].nid == NID_undef)
- continue;
- sess.mac = digests[i].id;
-+ sess.mackeylen = digests[i].keylen;
- sess.cipher = 0;
- if (ioctl(fd, CIOCGSESSION, &sess) != -1 &&
- ioctl(fd, CIOCFSESSION, &sess.ses) != -1)
-@@ -351,6 +378,9 @@
- static int
- cryptodev_usable_digests(const int **nids)
- {
-+#ifdef USE_CRYPTODEV_DIGESTS
-+ return (get_cryptodev_digests(nids));
-+#else
- /*
- * XXXX just disable all digests for now, because it sucks.
- * we need a better way to decide this - i.e. I may not
-@@ -365,6 +395,7 @@
- */
- *nids = NULL;
- return (0);
-+#endif
- }
-
- static int
-@@ -427,16 +458,20 @@
- {
- struct dev_crypto_state *state = ctx->cipher_data;
- struct session_op *sess = &state->d_sess;
-- int cipher;
-+ int cipher, i;
-
-- if ((cipher = cipher_nid_to_cryptodev(ctx->cipher->nid)) == NID_undef)
-- return (0);
--
-- if (ctx->cipher->iv_len > cryptodev_max_iv(cipher))
-- return (0);
-+ for (i = 0; ciphers[i].id; i++)
-+ if (ctx->cipher->nid == ciphers[i].nid &&
-+ ctx->cipher->iv_len <= ciphers[i].ivmax &&
-+ ctx->key_len == ciphers[i].keylen) {
-+ cipher = ciphers[i].id;
-+ break;
-+ }
-
-- if (!cryptodev_key_length_valid(cipher, ctx->key_len))
-+ if (!ciphers[i].id) {
-+ state->d_fd = -1;
- return (0);
-+ }
-
- memset(sess, 0, sizeof(struct session_op));
-
-@@ -496,6 +531,20 @@
- * gets called when libcrypto requests a cipher NID.
- */
-
-+/* RC4 */
-+const EVP_CIPHER cryptodev_rc4 = {
-+ NID_rc4,
-+ 1, 16, 0,
-+ EVP_CIPH_VARIABLE_LENGTH,
-+ cryptodev_init_key,
-+ cryptodev_cipher,
-+ cryptodev_cleanup,
-+ sizeof(struct dev_crypto_state),
-+ NULL,
-+ NULL,
-+ NULL
-+};
-+
- /* DES CBC EVP */
- const EVP_CIPHER cryptodev_des_cbc = {
- NID_des_cbc,
-@@ -563,6 +612,32 @@
- NULL
- };
-
-+const EVP_CIPHER cryptodev_aes_192_cbc = {
-+ NID_aes_192_cbc,
-+ 16, 24, 16,
-+ EVP_CIPH_CBC_MODE,
-+ cryptodev_init_key,
-+ cryptodev_cipher,
-+ cryptodev_cleanup,
-+ sizeof(struct dev_crypto_state),
-+ EVP_CIPHER_set_asn1_iv,
-+ EVP_CIPHER_get_asn1_iv,
-+ NULL
-+};
-+
-+const EVP_CIPHER cryptodev_aes_256_cbc = {
-+ NID_aes_256_cbc,
-+ 16, 32, 16,
-+ EVP_CIPH_CBC_MODE,
-+ cryptodev_init_key,
-+ cryptodev_cipher,
-+ cryptodev_cleanup,
-+ sizeof(struct dev_crypto_state),
-+ EVP_CIPHER_set_asn1_iv,
-+ EVP_CIPHER_get_asn1_iv,
-+ NULL
-+};
-+
- /*
- * Registered by the ENGINE when used to find out how to deal with
- * a particular NID in the ENGINE. this says what we'll do at the
-@@ -576,6 +651,9 @@
- return (cryptodev_usable_ciphers(nids));
-
- switch (nid) {
-+ case NID_rc4:
-+ *cipher = &cryptodev_rc4;
-+ break;
- case NID_des_ede3_cbc:
- *cipher = &cryptodev_3des_cbc;
- break;
-@@ -591,6 +669,12 @@
- case NID_aes_128_cbc:
- *cipher = &cryptodev_aes_cbc;
- break;
-+ case NID_aes_192_cbc:
-+ *cipher = &cryptodev_aes_192_cbc;
-+ break;
-+ case NID_aes_256_cbc:
-+ *cipher = &cryptodev_aes_256_cbc;
-+ break;
- default:
- *cipher = NULL;
- break;
-@@ -598,6 +682,234 @@
- return (*cipher != NULL);
- }
-
-+
-+#ifdef USE_CRYPTODEV_DIGESTS
-+
-+/* convert digest type to cryptodev */
-+static int
-+digest_nid_to_cryptodev(int nid)
-+{
-+ int i;
-+
-+ for (i = 0; digests[i].id; i++)
-+ if (digests[i].nid == nid)
-+ return (digests[i].id);
-+ return (0);
-+}
-+
-+
-+static int
-+digest_key_length(int nid)
-+{
-+ int i;
-+
-+ for (i = 0; digests[i].id; i++)
-+ if (digests[i].nid == nid)
-+ return digests[i].keylen;
-+ return (0);
-+}
-+
-+
-+static int cryptodev_digest_init(EVP_MD_CTX *ctx)
-+{
-+ struct dev_crypto_state *state = ctx->md_data;
-+ struct session_op *sess = &state->d_sess;
-+ int digest;
-+
-+ if ((digest = digest_nid_to_cryptodev(ctx->digest->type)) == NID_undef){
-+ printf("cryptodev_digest_init: Can't get digest \n");
-+ return (0);
-+ }
-+
-+ memset(state, 0, sizeof(struct dev_crypto_state));
-+
-+ if ((state->d_fd = get_dev_crypto()) < 0) {
-+ printf("cryptodev_digest_init: Can't get Dev \n");
-+ return (0);
-+ }
-+
-+ sess->mackey = state->dummy_mac_key;
-+ sess->mackeylen = digest_key_length(ctx->digest->type);
-+ sess->mac = digest;
-+
-+ if (ioctl(state->d_fd, CIOCGSESSION, sess) < 0) {
-+ close(state->d_fd);
-+ state->d_fd = -1;
-+ printf("cryptodev_digest_init: Open session failed\n");
-+ return (0);
-+ }
-+
-+ return (1);
-+}
-+
-+static int cryptodev_digest_update(EVP_MD_CTX *ctx, const void *data,
-+ size_t count)
-+{
-+ struct crypt_op cryp;
-+ struct dev_crypto_state *state = ctx->md_data;
-+ struct session_op *sess = &state->d_sess;
-+
-+ if (!data || state->d_fd < 0) {
-+ printf("cryptodev_digest_update: illegal inputs \n");
-+ return (0);
-+ }
-+
-+ if (!count) {
-+ return (0);
-+ }
-+
-+ if (!(ctx->flags & EVP_MD_CTX_FLAG_ONESHOT)) {
-+ /* if application doesn't support one buffer */
-+ state->mac_data = OPENSSL_realloc(state->mac_data, state->mac_len + count);
-+
-+ if (!state->mac_data) {
-+ printf("cryptodev_digest_update: realloc failed\n");
-+ return (0);
-+ }
-+
-+ memcpy(state->mac_data + state->mac_len, data, count);
-+ state->mac_len += count;
-+
-+ return (1);
-+ }
-+
-+ memset(&cryp, 0, sizeof(cryp));
-+
-+ cryp.ses = sess->ses;
-+ cryp.flags = 0;
-+ cryp.len = count;
-+ cryp.src = (caddr_t) data;
-+ cryp.dst = NULL;
-+ cryp.mac = state->digest_res;
-+ if (ioctl(state->d_fd, CIOCCRYPT, &cryp) < 0) {
-+ printf("cryptodev_digest_update: digest failed\n");
-+ return (0);
-+ }
-+ return (1);
-+}
-+
-+
-+static int cryptodev_digest_final(EVP_MD_CTX *ctx, unsigned char *md)
-+{
-+ struct crypt_op cryp;
-+ struct dev_crypto_state *state = ctx->md_data;
-+ struct session_op *sess = &state->d_sess;
-+
-+ int ret = 1;
-+
-+ if (!md || state->d_fd < 0) {
-+ printf("cryptodev_digest_final: illegal input\n");
-+ return(0);
-+ }
-+
-+ if (! (ctx->flags & EVP_MD_CTX_FLAG_ONESHOT) ) {
-+ /* if application doesn't support one buffer */
-+ memset(&cryp, 0, sizeof(cryp));
-+
-+ cryp.ses = sess->ses;
-+ cryp.flags = 0;
-+ cryp.len = state->mac_len;
-+ cryp.src = state->mac_data;
-+ cryp.dst = NULL;
-+ cryp.mac = md;
-+
-+ if (ioctl(state->d_fd, CIOCCRYPT, &cryp) < 0) {
-+ printf("cryptodev_digest_final: digest failed\n");
-+ return (0);
-+ }
-+
-+ return 1;
-+ }
-+
-+ memcpy(md, state->digest_res, ctx->digest->md_size);
-+
-+ return (ret);
-+}
-+
-+
-+static int cryptodev_digest_cleanup(EVP_MD_CTX *ctx)
-+{
-+ int ret = 1;
-+ struct dev_crypto_state *state = ctx->md_data;
-+ struct session_op *sess = &state->d_sess;
-+
-+ if (state->d_fd < 0) {
-+ printf("cryptodev_digest_cleanup: illegal input\n");
-+ return (0);
-+ }
-+
-+ if (state->mac_data) {
-+ OPENSSL_free(state->mac_data);
-+ state->mac_data = NULL;
-+ state->mac_len = 0;
-+ }
-+
-+ if (state->copy)
-+ return 1;
-+
-+ if (ioctl(state->d_fd, CIOCFSESSION, &sess->ses) < 0) {
-+ printf("cryptodev_digest_cleanup: failed to close session\n");
-+ ret = 0;
-+ } else {
-+ ret = 1;
-+ }
-+ close(state->d_fd);
-+ state->d_fd = -1;
-+
-+ return (ret);
-+}
-+
-+static int cryptodev_digest_copy(EVP_MD_CTX *to,const EVP_MD_CTX *from)
-+{
-+ struct dev_crypto_state *fstate = from->md_data;
-+ struct dev_crypto_state *dstate = to->md_data;
-+
-+ memcpy(dstate, fstate, sizeof(struct dev_crypto_state));
-+
-+ if (fstate->mac_len != 0) {
-+ dstate->mac_data = OPENSSL_malloc(fstate->mac_len);
-+ memcpy(dstate->mac_data, fstate->mac_data, fstate->mac_len);
-+ }
-+
-+ dstate->copy = 1;
-+
-+ return 1;
-+}
-+
-+
-+const EVP_MD cryptodev_sha1 = {
-+ NID_sha1,
-+ NID_undef,
-+ SHA_DIGEST_LENGTH,
-+ EVP_MD_FLAG_ONESHOT,
-+ cryptodev_digest_init,
-+ cryptodev_digest_update,
-+ cryptodev_digest_final,
-+ cryptodev_digest_copy,
-+ cryptodev_digest_cleanup,
-+ EVP_PKEY_NULL_method,
-+ SHA_CBLOCK,
-+ sizeof(struct dev_crypto_state),
-+};
-+
-+const EVP_MD cryptodev_md5 = {
-+ NID_md5,
-+ NID_undef,
-+ 16 /* MD5_DIGEST_LENGTH */,
-+ EVP_MD_FLAG_ONESHOT,
-+ cryptodev_digest_init,
-+ cryptodev_digest_update,
-+ cryptodev_digest_final,
-+ cryptodev_digest_copy,
-+ cryptodev_digest_cleanup,
-+ EVP_PKEY_NULL_method,
-+ 64 /* MD5_CBLOCK */,
-+ sizeof(struct dev_crypto_state),
-+};
-+
-+#endif /* USE_CRYPTODEV_DIGESTS */
-+
-+
- static int
- cryptodev_engine_digests(ENGINE *e, const EVP_MD **digest,
- const int **nids, int nid)
-@@ -606,10 +918,15 @@
- return (cryptodev_usable_digests(nids));
-
- switch (nid) {
-+#ifdef USE_CRYPTODEV_DIGESTS
- case NID_md5:
-- *digest = NULL; /* need to make a clean md5 critter */
-+ *digest = &cryptodev_md5;
- break;
-+ case NID_sha1:
-+ *digest = &cryptodev_sha1;
-+ break;
- default:
-+#endif /* USE_CRYPTODEV_DIGESTS */
- *digest = NULL;
- break;
- }
-@@ -625,7 +942,7 @@
- bn2crparam(const BIGNUM *a, struct crparam *crp)
- {
- int i, j, k;
-- ssize_t words, bytes, bits;
-+ ssize_t bytes, bits;
- u_char *b;
-
- crp->crp_p = NULL;
-@@ -637,6 +954,7 @@
- b = malloc(bytes);
- if (b == NULL)
- return (1);
-+ memset(b, 0, bytes);
-
- crp->crp_p = b;
- crp->crp_nbits = bits;
-@@ -681,7 +999,7 @@
- {
- int i;
-
-- for (i = 0; i <= kop->crk_iparams + kop->crk_oparams; i++) {
-+ for (i = 0; i < kop->crk_iparams + kop->crk_oparams; i++) {
- if (kop->crk_param[i].crp_p)
- free(kop->crk_param[i].crp_p);
- kop->crk_param[i].crp_p = NULL;
-@@ -756,12 +1074,10 @@
- }
-
- static int
--cryptodev_rsa_nocrt_mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa)
-+cryptodev_rsa_nocrt_mod_exp(BIGNUM *r0, const BIGNUM *I, RSA *rsa, BN_CTX *ctx)
- {
- int r;
-- BN_CTX *ctx;
--
-- ctx = BN_CTX_new();
-+ ctx = BN_CTX_new(); /* not sure why we reallocate this. DM */
- r = cryptodev_bn_mod_exp(r0, I, rsa->d, rsa->n, ctx, NULL);
- BN_CTX_free(ctx);
- return (r);
-Index: libssl/crypto/engine/engine.h
-===================================================================
-RCS file: libssl/crypto/engine/engine.h,v
-retrieving revision 1.1.1.6
-retrieving revision 1.6
-diff -u -r1.1.1.6 -r1.6
---- libssl/crypto/engine/engine.h 15 Sep 2008 23:36:41 -0000 1.1.1.6
-+++ libssl/crypto/engine/engine.h 15 Sep 2008 23:44:16 -0000 1.6
-@@ -703,7 +703,7 @@
- * values. */
- void *ENGINE_get_static_state(void);
-
--#if defined(__OpenBSD__) || defined(__FreeBSD__)
-+#if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV)
- void ENGINE_setup_bsd_cryptodev(void);
- #endif
-
-Index: libssl/crypto/evp/c_all.c
-===================================================================
-RCS file: libssl/crypto/evp/c_all.c,v
-retrieving revision 1.1.1.4
-retrieving revision 1.3
-diff -u -r1.1.1.4 -r1.3
---- libssl/crypto/evp/c_all.c 3 Feb 2006 00:06:07 -0000 1.1.1.4
-+++ libssl/crypto/evp/c_all.c 23 Jul 2007 12:23:31 -0000 1.3
-@@ -83,7 +83,7 @@
- OpenSSL_add_all_ciphers();
- OpenSSL_add_all_digests();
- #ifndef OPENSSL_NO_ENGINE
--# if defined(__OpenBSD__) || defined(__FreeBSD__)
-+# if defined(__OpenBSD__) || defined(__FreeBSD__) || defined(HAVE_CRYPTODEV)
- ENGINE_setup_bsd_cryptodev();
- # endif
- #endif
-Index: libssl/crypto/evp/c_alld.c
-===================================================================
-RCS file: libssl/crypto/evp/c_alld.c,v
-retrieving revision 1.1.1.4
-retrieving revision 1.3
-diff -u -r1.1.1.4 -r1.3
---- libssl/crypto/evp/c_alld.c 3 Feb 2006 00:06:07 -0000 1.1.1.4
-+++ libssl/crypto/evp/c_alld.c 3 Feb 2006 00:36:44 -0000 1.3
-@@ -81,7 +81,7 @@
- EVP_add_digest(EVP_dss());
- #endif
- #endif
--#ifndef OPENSSL_NO_SHA
-+#if !defined(OPENSSL_NO_SHA) && !defined(OPENSSL_NO_SHA1)
- EVP_add_digest(EVP_sha1());
- EVP_add_digest_alias(SN_sha1,"ssl3-sha1");
- EVP_add_digest_alias(SN_sha1WithRSAEncryption,SN_sha1WithRSA);
-Index: libssl/engines/Makefile
-===================================================================
-RCS file: libssl/engines/Makefile,v
-retrieving revision 1.1.1.3
-retrieving revision 1.3
-diff -u -r1.1.1.3 -r1.3
---- libssl/engines/Makefile 15 Sep 2008 23:36:41 -0000 1.1.1.3
-+++ libssl/engines/Makefile 15 Sep 2008 23:44:16 -0000 1.3
-@@ -96,6 +96,7 @@
- ( echo installing $$l; \
- if [ "$(PLATFORM)" != "Cygwin" ]; then \
- case "$(CFLAGS)" in \
-+ *OPENSSL_NO_HW*) continue;; \
- *DSO_DLFCN*) sfx="so";; \
- *DSO_DL*) sfx="sl";; \
- *) sfx="bad";; \
diff --git a/package/openssl/patches/patch-Configure b/package/openssl/patches/patch-Configure
index fb07479f9..9275cd530 100644
--- a/package/openssl/patches/patch-Configure
+++ b/package/openssl/patches/patch-Configure
@@ -1,10 +1,9 @@
-diff -Nur openssl-0.9.8l.orig/Configure openssl-0.9.8l/Configure
---- openssl-0.9.8l.orig/Configure 2009-11-05 13:07:06.000000000 +0100
-+++ openssl-0.9.8l/Configure 2009-12-06 02:14:45.000000000 +0100
-@@ -364,6 +364,7 @@
- "linux-alpha+bwx-gcc","gcc:-O3 -DL_ENDIAN -DTERMIO::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_RISC1 DES_UNROLL:${no_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
- "linux-alpha-ccc","ccc:-fast -readonly_strings -DL_ENDIAN -DTERMIO::-D_REENTRANT:::SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_PTR DES_RISC1 DES_UNROLL:${no_asm}",
- "linux-alpha+bwx-ccc","ccc:-fast -readonly_strings -DL_ENDIAN -DTERMIO::-D_REENTRANT:::SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_INT DES_PTR DES_RISC1 DES_UNROLL:${no_asm}",
+--- openssl-1.0.0.orig/Configure 2010-01-19 22:40:54.000000000 +0100
++++ openssl-1.0.0/Configure 2010-05-29 15:58:43.561613735 +0200
+@@ -379,6 +379,7 @@ my %table=(
+ "linux-alpha+bwx-gcc","gcc:-O3 -DL_ENDIAN -DTERMIO::-D_REENTRANT::-ldl:SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_RISC1 DES_UNROLL:${alpha_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
+ "linux-alpha-ccc","ccc:-fast -readonly_strings -DL_ENDIAN -DTERMIO::-D_REENTRANT:::SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_PTR DES_RISC1 DES_UNROLL:${alpha_asm}",
+ "linux-alpha+bwx-ccc","ccc:-fast -readonly_strings -DL_ENDIAN -DTERMIO::-D_REENTRANT:::SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_INT DES_PTR DES_RISC1 DES_UNROLL:${alpha_asm}",
+"linux-embedded","gcc:-DTERMIO \$(OPTIMIZATION_FLAGS) -Wall::-D_REENTRANT::-ldl:BN_LLONG RC4_CHAR RC4_CHUNK DES_INT DES_UNROLL BF_PTR:${no_asm}:dlfcn:linux-shared:-fPIC::.so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
#### *BSD [do see comment about ${BSDthreads} above!]
diff --git a/package/openssl/patches/patch-Makefile_shared b/package/openssl/patches/patch-Makefile_shared
deleted file mode 100644
index 7665b6ce9..000000000
--- a/package/openssl/patches/patch-Makefile_shared
+++ /dev/null
@@ -1,19 +0,0 @@
-$Id: update-patches 24 2008-08-31 14:56:13Z wbx $
---- openssl-0.9.8j.orig/Makefile.shared 2008-09-17 17:56:40.000000000 +0200
-+++ openssl-0.9.8j/Makefile.shared 2009-01-08 14:29:26.619518188 +0100
-@@ -93,7 +93,6 @@ LINK_APP= \
- LDCMD="$${LDCMD:-$(CC)}"; LDFLAGS="$${LDFLAGS:-$(CFLAGS)}"; \
- LIBPATH=`for x in $$LIBDEPS; do if echo $$x | grep '^ *-L' > /dev/null 2>&1; then echo $$x | sed -e 's/^ *-L//'; fi; done | uniq`; \
- LIBPATH=`echo $$LIBPATH | sed -e 's/ /:/g'`; \
-- LD_LIBRARY_PATH=$$LIBPATH:$$LD_LIBRARY_PATH \
- $${LDCMD} $${LDFLAGS} -o $${APPNAME:=$(APPNAME)} $(OBJECTS) $${LIBDEPS} )
-
- LINK_SO= \
-@@ -103,7 +102,6 @@ LINK_SO= \
- SHAREDFLAGS="$${SHAREDFLAGS:-$(CFLAGS) $(SHARED_LDFLAGS)}"; \
- LIBPATH=`for x in $$LIBDEPS; do if echo $$x | grep '^ *-L' > /dev/null 2>&1; then echo $$x | sed -e 's/^ *-L//'; fi; done | uniq`; \
- LIBPATH=`echo $$LIBPATH | sed -e 's/ /:/g'`; \
-- LD_LIBRARY_PATH=$$LIBPATH:$$LD_LIBRARY_PATH \
- $${SHAREDCMD} $${SHAREDFLAGS} \
- -o $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX \
- $$ALLSYMSFLAGS $$SHOBJECTS $$NOALLSYMSFLAGS $$LIBDEPS \
diff --git a/package/openssl/patches/patch-apps_speed_c b/package/openssl/patches/patch-apps_speed_c
deleted file mode 100644
index 3fd410d7a..000000000
--- a/package/openssl/patches/patch-apps_speed_c
+++ /dev/null
@@ -1,16 +0,0 @@
-$Id: update-patches 24 2008-08-31 14:56:13Z wbx $
---- openssl-0.9.8i.orig/apps/speed.c 2007-11-15 14:33:47.000000000 +0100
-+++ openssl-0.9.8i/apps/speed.c 2008-10-22 11:47:28.000000000 +0200
-@@ -110,10 +110,10 @@
-
- #if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(OPENSSL_SYS_MACOSX)
- # define USE_TOD
--#elif !defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYS_VXWORKS) && (!defined(OPENSSL_SYS_VMS) || defined(__DECC))
-+#elif !defined(OPENSSL_SYS_MSDOS) && !defined(OPENSSL_SYS_VXWORKS) && (!defined(OPENSSL_SYS_VMS) || defined(__DECC)) && defined(__linux__)
- # define TIMES
- #endif
--#if !defined(_UNICOS) && !defined(__OpenBSD__) && !defined(sgi) && !defined(__FreeBSD__) && !(defined(__bsdi) || defined(__bsdi__)) && !defined(_AIX) && !defined(OPENSSL_SYS_MPE) && !defined(__NetBSD__) && !defined(OPENSSL_SYS_VXWORKS) /* FIXME */
-+#if !defined(_UNICOS) && !defined(__OpenBSD__) && !defined(sgi) && !defined(__FreeBSD__) && !(defined(__bsdi) || defined(__bsdi__)) && !defined(_AIX) && !defined(OPENSSL_SYS_MPE) && !defined(__NetBSD__) && !defined(OPENSSL_SYS_VXWORKS) && !defined(__linux__) /* FIXME */
- # define TIMEB
- #endif
-
diff --git a/package/openssl/patches/patch-util_shlib_wrap_sh b/package/openssl/patches/patch-util_shlib_wrap_sh
deleted file mode 100644
index b7a56f304..000000000
--- a/package/openssl/patches/patch-util_shlib_wrap_sh
+++ /dev/null
@@ -1,17 +0,0 @@
-$Id: update-patches 24 2008-08-31 14:56:13Z wbx $
---- openssl-0.9.8j.orig/util/shlib_wrap.sh 2007-08-27 10:52:57.000000000 +0200
-+++ openssl-0.9.8j/util/shlib_wrap.sh 2009-01-08 14:11:14.967293819 +0100
-@@ -57,11 +57,10 @@ SunOS|IRIX*)
- eval $rld_var=\"${THERE}'${'$rld_var':+:$'$rld_var'}'\"; export $rld_var
- unset rld_var
- ;;
--*) LD_LIBRARY_PATH="${THERE}:$LD_LIBRARY_PATH" # Linux, ELF HP-UX
-- DYLD_LIBRARY_PATH="${THERE}:$DYLD_LIBRARY_PATH" # MacOS X
-+*) DYLD_LIBRARY_PATH="${THERE}:$DYLD_LIBRARY_PATH" # MacOS X
- SHLIB_PATH="${THERE}:$SHLIB_PATH" # legacy HP-UX
- LIBPATH="${THERE}:$LIBPATH" # AIX, OS/2
-- export LD_LIBRARY_PATH DYLD_LIBRARY_PATH SHLIB_PATH LIBPATH
-+ export DYLD_LIBRARY_PATH SHLIB_PATH LIBPATH
- # Even though $PATH is adjusted [for Windows sake], it doesn't
- # necessarily does the trick. Trouble is that with introduction
- # of SafeDllSearchMode in XP/2003 it's more appropriate to copy
diff --git a/package/openswan/Makefile b/package/openswan/Makefile
index 6c0adce62..13110a76d 100644
--- a/package/openswan/Makefile
+++ b/package/openswan/Makefile
@@ -4,9 +4,9 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= openswan
-PKG_VERSION:= 2.6.24
+PKG_VERSION:= 2.6.26
PKG_RELEASE:= 1
-PKG_MD5SUM:= 1c76b6982c05392f7c360afb92699661
+PKG_MD5SUM:= ac514a8c09d871407b16848c67d0d806
PKG_DESCR:= IPSec software
PKG_SECTION:= net
PKG_DEPENDS:= ip libgmp
diff --git a/package/openvpn/Makefile b/package/openvpn/Makefile
index 330b25124..173876f73 100644
--- a/package/openvpn/Makefile
+++ b/package/openvpn/Makefile
@@ -5,70 +5,73 @@ include $(TOPDIR)/rules.mk
PKG_NAME:= openvpn
PKG_VERSION:= 2.1.1
-PKG_RELEASE:= 1
+PKG_RELEASE:= 2
PKG_MD5SUM:= b273ed2b5ec8616fb9834cde8634bce7
PKG_DESCR:= Open Source VPN solution using SSL
PKG_SECTION:= net
-PKG_DEPENDS:= kmod-tun
-ifeq ($(ADK_COMPILE_OPENVPN_WITH_OPENSSL),y)
-PKG_DEPENDS+= libopenssl
+PKG_DEPENDS:= kmod-tun libopenssl
PKG_BUILDDEP+= openssl
-endif
-ifneq ($(ADK_COMPILE_OPENVPN_WITH_LZO),y)
-PKG_DEPENDS+= liblzo
+ifeq ($(ADK_PACKAGE_OPENVPN_WITH_LZO),y)
PKG_BUILDDEP+= liblzo
endif
PKG_URL:= http://openvpn.net
PKG_SITES:= http://openvpn.net/release/ \
${MASTER_SITE_SOURCEFORGE:=openvpn/}
+PKG_FLAVOURS:= WITH_LZO WITH_MANAGEMENT WITH_HTTPPROXY WITH_SOCKS
+PKGFD_WITH_LZO:= enable LZO compression support
+PKGFS_WITH_LZO:= liblzo
+PKGFD_WITH_MANAGEMENT:= enable management server support
+PKGFD_WITH_HTTPPROXY:= enable http proxy support
+PKGFD_WITH_SOCKS:= enable socks proxy support
+
include $(TOPDIR)/mk/package.mk
$(eval $(call PKG_template,OPENVPN,${PKG_NAME},$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
$(eval $(call PKG_template,OPENVPN_EASY_RSA,openvpn-easy-rsa,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
-ifneq ($(ADK_COMPILE_OPENVPN_WITH_OPENSSL),y)
-DISABLE_OPENSSL:=--disable-ssl --disable-crypto
+ifneq ($(ADK_PACKAGE_OPENVPN_WITH_LZO),)
+CONFIGURE_ARGS+= --enable-lzo
+else
+CONFIGURE_ARGS+= --disable-lzo
endif
-ifneq ($(ADK_COMPILE_OPENVPN_WITH_LZO),y)
-DISABLE_LZO:=--disable-lzo
+ifneq ($(ADK_PACKAGE_OPENVPN_WITH_MANAGEMENT),)
+CONFIGURE_ARGS+= --enable-management
+else
+CONFIGURE_ARGS+= --disable-management
endif
-ifneq ($(ADK_COMPILE_OPENVPN_WITH_SERVER),y)
-DISABLE_SERVER:=--disable-server
-endif
-ifneq ($(ADK_COMPILE_OPENVPN_WITH_HTTP),y)
-DISABLE_HTTP:=--disable-http
-endif
-ifeq ($(ADK_COMPILE_OPENVPN_WITH_PASSWORD_SAVE),y)
-ENABLE_PASSWORD_SAVE:=--enable-password-save
+ifneq ($(ADK_PACKAGE_OPENVPN_WITH_HTTPPROXY),)
+CONFIGURE_ARGS+= --enable-http
+else
+CONFIGURE_ARGS+= --disable-http
endif
-ifeq ($(ADK_COMPILE_OPENVPN_WITH_SMALL),y)
-ENABLE_SMALL:=--enable-small
+
+ifneq ($(ADK_PACKAGE_OPENVPN_WITH_SOCKS),)
+CONFIGURE_ARGS+= --enable-socks
+else
+CONFIGURE_ARGS+= --disable-socks
endif
CONFIGURE_ARGS+= --disable-pthread \
--disable-plugins \
- --disable-management \
- --disable-socks \
+ --enable-small \
--enable-iproute2 \
--with-iproute-path=ip \
--without-ifconfig-path \
- --without-route-path \
- $(DISABLE_LZO) \
- $(DISABLE_OPENSSL) \
- $(DISABLE_SERVER) \
- $(DISABLE_HTTP) \
- $(ENABLE_PASSWORD_SAVE) \
- $(ENABLE_SMALL)
+ --without-route-path
+
+SUB_INSTALLS-y:=
+SUB_INSTALLS-m:=
+SUB_INSTALLS-${OPENVPN_EASY_RSA}+= openvpn-easy-rsa-install
-post-install:
- # main package
+post-install: ${SUB_INSTALLS-m} ${SUB_INSTALLS-y}
${INSTALL_DIR} $(IDIR_OPENVPN)/usr/sbin $(IDIR_OPENVPN)/etc/openvpn
${INSTALL_BIN} $(WRKINST)/usr/sbin/openvpn $(IDIR_OPENVPN)/usr/sbin/
$(CP) ./files/openvpn.conf $(IDIR_OPENVPN)/etc/openvpn/
- # subpackage easy-rsa
+
+openvpn-easy-rsa-install:
${INSTALL_DIR} $(IDIR_OPENVPN_EASY_RSA)/usr/sbin \
$(IDIR_OPENVPN_EASY_RSA)/etc/easy-rsa/keys
touch $(IDIR_OPENVPN_EASY_RSA)/etc/easy-rsa/keys/index.txt
diff --git a/package/openvpn/files/openvpn.conffiles b/package/openvpn/files/openvpn.conffiles
new file mode 100644
index 000000000..e1c04e6eb
--- /dev/null
+++ b/package/openvpn/files/openvpn.conffiles
@@ -0,0 +1 @@
+/etc/openvpn/openvpn.conf
diff --git a/package/pcre/Makefile b/package/pcre/Makefile
index db1b57920..aabb33acf 100644
--- a/package/pcre/Makefile
+++ b/package/pcre/Makefile
@@ -4,9 +4,9 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= pcre
-PKG_VERSION:= 8.00
+PKG_VERSION:= 8.02
PKG_RELEASE:= 1
-PKG_MD5SUM:= c95500eeda12c8c7edc6b0926d60952c
+PKG_MD5SUM:= 214462e9718e3f9197cba114dc6b00b8
PKG_DESCR:= a Perl Compatible Regular Expression library
PKG_SECTION:= libs
PKG_URL:= http://www.pcre.org
diff --git a/package/php/Makefile b/package/php/Makefile
index d0e5c81cc..485affd63 100644
--- a/package/php/Makefile
+++ b/package/php/Makefile
@@ -195,6 +195,8 @@ do-install: ${INSTALL_MODS_y} ${INSTALL_MODS_m}
${INSTALL_DIR} $(IDIR_PHP)/etc
${INSTALL_DATA} ./files/php.ini $(IDIR_PHP)/etc/
${INSTALL_DIR} $(IDIR_PHP_CLI)/usr/bin
+ ${INSTALL_DIR} $(IDIR_PHP_CLI)/etc
+ ${INSTALL_DATA} ./files/php.ini $(IDIR_PHP_CLI)/etc/
${INSTALL_BIN} $(WRKBUILD)/sapi/cli/php $(IDIR_PHP_CLI)/usr/bin/php
${INSTALL_DIR} $(IDIR_PHP_FASTCGI)/etc
${INSTALL_DATA} ./files/php.ini $(IDIR_PHP_FASTCGI)/etc/
diff --git a/package/pkg-config/Makefile b/package/pkg-config/Makefile
new file mode 100644
index 000000000..a421bf482
--- /dev/null
+++ b/package/pkg-config/Makefile
@@ -0,0 +1,29 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:= pkg-config
+PKG_VERSION:= 0.25
+PKG_RELEASE:= 1
+PKG_MD5SUM:= a3270bab3f4b69b7dc6dbdacbcae9745
+PKG_DESCR:= a helper tool used when compiling applications and libraries.
+PKG_SECTION:= libs
+PKG_BUILDDEP+= glib popt
+PKG_DEPENDS:= glib libpopt
+PKG_URL:= http://pkg-config.freedesktop.org/wiki/
+PKG_SITES:= http://pkgconfig.freedesktop.org/releases/
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,PKG_CONFIG,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+CONFIGURE_ARGS+= --with-installed-glib \
+ --with-installed-popt
+
+post-install:
+ $(INSTALL_DIR) $(IDIR_PKG_CONFIG)/usr/bin
+ $(INSTALL_BIN) $(WRKINST)/usr/bin/pkg-config \
+ $(IDIR_PKG_CONFIG)/usr/bin
+
+include ${TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/pkgmaker b/package/pkgmaker
index ea89424e7..cd40ccb94 100644
--- a/package/pkgmaker
+++ b/package/pkgmaker
@@ -50,6 +50,7 @@ for dn in */Makefile; do
# PKG_NAME: package name (directory, free-format)
# PKG_FLAVOURS: all package flavours (boolean options), uppercase
+ # PKG_CHOICES: all package choices (boolean options), uppercase
# PKG_DESCR: package description (directory)
# PKG_URL: package homepage
# PKG_CXX: uppercase varname part to use for CFrustFrust checks
@@ -61,10 +62,13 @@ for dn in */Makefile; do
# CFLINE_*: one free-format Config.in line per subpackage option
# PKGFD_*: flavour description, per package flavour option
# PKG_{HOST,TARGET}_DEPENDS: add host or target dependencies
- eval $($GMAKE dump="PKG_NAME PKG_FLAVOURS PKG_DESCR PKG_URL PKG_MULTI PKG_CXX \
+ eval $($GMAKE dump="PKG_NAME PKG_FLAVOURS PKG_CHOICES PKG_DESCR PKG_URL PKG_MULTI PKG_CXX \
ALL_PKGOPTS \$(foreach x,\${ALL_PKGOPTS},PKGNAME_\${x} \
PKGDESC_\${x} PKGDEPS_\${x} PKGDFLT_\${x} CFLINE_\${x}) \
\$(foreach x,\${PKG_FLAVOURS},PKGFD_\${x}) \
+ \$(foreach x,\${PKG_FLAVOURS},PKGFS_\${x}) \
+ \$(foreach x,\${PKG_CHOICES},PKGCD_\${x}) \
+ \$(foreach x,\${PKG_CHOICES},PKGCS_\${x}) \
PKG_HOST_DEPENDS PKG_TARGET_DEPENDS")
# dnu: directory name, uppercase, y/-+/_X/
@@ -213,6 +217,10 @@ for dn in */Makefile; do
(*)
# produce dependency on regular package
# where the symbol is cached (see above)
+ if [[ ! -f ../pkglist.d/"$dep" ]]; then
+ print -u2 "Warning: $PKG_NAME: unreachable dependency '$dep'"
+ continue
+ fi
print -u$h '\tselect' \
ADK_PACKAGE_$(<../pkglist.d/"$dep")
;;
@@ -249,14 +257,40 @@ config ADK_COMPILE_${PKG_CXX}_WITH_UCLIBCXX
endchoice
EOF
+ [[ -n $PKG_CHOICES ]] && cat >&4 <<EOF
+
+choice
+prompt "Package flavour choice"
+depends on ADK_COMPILE_$dnu
+EOF
+ # Handle choices
+ for pfco in $PKG_CHOICES; do
+ eval pfcd=\$PKGCD_$pfco
+ eval pfcs=\$PKGCS_$pfco
+ typeset -u pfcs=${pfcs#!}
+ print
+ print config ADK_PACKAGE_${dnu}_$pfco
+ print "\tbool \"${pfd:-$PKG_NAME -> $pfcd}\""
+ print "\\tselect ADK_PACKAGE_${pfcs}"
+ done >&4
+ [[ -n $PKG_CHOICES ]] && cat >&4 <<EOF
+
+endchoice
+EOF
+
# Handle flavours (per directory)
for pfcu in $PKG_FLAVOURS; do # pfcu: pkg flavour conf opt.
eval pfd=\$PKGFD_$pfcu # pfd: pkg flavour description
+ eval pfs=\$PKGFS_$pfcu # pfs: pkg flavour dependencies
print
print config ADK_PACKAGE_${dnu}_$pfcu
print "\tbool \"${pfd:-$PKG_NAME -> flavour $pfcu}\""
print \\tdefault n
print \\tdepends on ADK_COMPILE_$dnu
+ for pfso in $pfs; do
+ typeset -u pfso=${pfso#!}
+ print \\tselect ADK_PACKAGE_${pfso}
+ done
print \\thelp
print "\t flavour ADK_PACKAGE_${dnu}_$pfcu for $PKG_NAME"
done >&4
diff --git a/package/postgresql/Makefile b/package/postgresql/Makefile
index 3f89ddf1c..4419a3c61 100644
--- a/package/postgresql/Makefile
+++ b/package/postgresql/Makefile
@@ -4,9 +4,9 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= postgresql
-PKG_VERSION:= 8.3.7
+PKG_VERSION:= 8.4.4
PKG_RELEASE:= 1
-PKG_MD5SUM:= 6e36f3b4dd27ae0c352376ea9f843de2
+PKG_MD5SUM:= ae7f305eb9388b187e8f07dee0cec55c
PKG_DESCR:= PostgreSQL database library
PKG_SECTION:= libs
PKG_BUILDDEP+= zlib
@@ -25,17 +25,14 @@ INSTALL_STYLE:= manual
PKG_CONFIGURE_ARGS:=\
--disable-integer-datetimes \
- --without-java \
- --without-krb4 \
--without-krb5 \
--without-openssl \
--without-pam \
--without-perl \
--without-python \
--without-readline \
- --without-rendezvous \
+ --without-bonjour \
--without-tcl \
- --without-tk \
--with-zlib="yes"
CONFIGURE_ARGS+= ${PKG_CONFIGURE_ARGS}
@@ -60,6 +57,6 @@ do-build:
do-install:
${INSTALL_DIR} ${IDIR_LIBPQ}/usr/lib
- ${CP} ${WRKINST}/usr/lib/libpq.so.* ${IDIR_LIBPQ}/usr/lib
+ ${CP} ${WRKINST}/usr/lib/libpq.so* ${IDIR_LIBPQ}/usr/lib
include ${TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/postgresql/patches/patch-src_include_Makefile b/package/postgresql/patches/patch-src_include_Makefile
new file mode 100644
index 000000000..169bee10e
--- /dev/null
+++ b/package/postgresql/patches/patch-src_include_Makefile
@@ -0,0 +1,19 @@
+--- postgresql-8.4.4.orig/src/include/Makefile 2009-07-20 22:48:58.000000000 +0200
++++ postgresql-8.4.4/src/include/Makefile 2010-05-29 18:30:38.481613604 +0200
+@@ -40,7 +40,6 @@ install: all installdirs
+ # These headers are needed for server-side development
+ $(INSTALL_DATA) pg_config.h '$(DESTDIR)$(includedir_server)'
+ $(INSTALL_DATA) pg_config_os.h '$(DESTDIR)$(includedir_server)'
+- $(INSTALL_DATA) utils/fmgroids.h '$(DESTDIR)$(includedir_server)/utils'
+ # We don't use INSTALL_DATA for performance reasons --- there are a lot of files
+ cp $(srcdir)/*.h '$(DESTDIR)$(includedir_server)'/ || exit; \
+ chmod $(INSTALL_DATA_MODE) '$(DESTDIR)$(includedir_server)'/*.h || exit; \
+@@ -62,7 +61,7 @@ uninstall:
+
+
+ clean:
+- rm -f utils/fmgroids.h parser/gram.h utils/probes.h
++ rm -f parser/gram.h utils/probes.h
+
+ distclean maintainer-clean: clean
+ rm -f pg_config.h dynloader.h pg_config_os.h stamp-h
diff --git a/package/ppp/files/ppp.pre-up b/package/ppp/files/ppp.pre-up
index c83a09177..9f82aa98c 100755
--- a/package/ppp/files/ppp.pre-up
+++ b/package/ppp/files/ppp.pre-up
@@ -19,6 +19,9 @@ if [ "$IF_PPP_MTU" -gt 0 ] ; then
NETWORKOPTIONS="mtu $IF_PPP_MTU\nmru $IF_PPP_MTU"
fi
+[ "$IF_PPP_VPI" ] || IF_PPP_VPI=1
+[ "$IF_PPP_VCI" ] || IF_PPP_VCI=32
+
REPLACE="
s,#IDLEOPTIONS#,$IDLEOPTIONS,
s,#ENCAPS#,$IF_PPP_ENCAPS,
@@ -33,39 +36,37 @@ REPLACE="
sed "$REPLACE" < /etc/ppp/templates/$IF_USE_TEMPLATE > /etc/ppp/peers/$IF_PROVIDER
-[ "$IF_PPP_ENCAPS" ] || encap=0
-[ "$IF_PPP_PAYLOAD" ] || payload=1
-[ "$IF_PPP_VPI" ] || $IF_PPP_VPI=1
-[ "$IF_PPP_VCI" ] || $IF_PPP_VCI=32
-
-case "$IF_PPP_PAYLOAD" in
-bridged)
- payload=1
- ;;
-routed)
- payload=0
- ;;
-*)
- echo "Wrong payload, use either bridged or routed"
- exit 1
- ;;
-esac
-
-case "$IF_PPP_ENCAPS" in
-llc)
- encap=0
- ;;
-vc)
- encap=1
- ;;
-*)
- echo "Wrong Encapsulation use either llc or vc"
- exit 1
- ;;
-esac
-
case "$IF_PPP_DEVICE" in
nas*)
+ [ "$IF_PPP_ENCAPS" ] || encap=0
+ [ "$IF_PPP_PAYLOAD" ] || payload=1
+
+ case "$IF_PPP_PAYLOAD" in
+ bridged)
+ payload=1
+ ;;
+ routed)
+ payload=0
+ ;;
+ *)
+ echo "Wrong payload, use either bridged or routed"
+ exit 1
+ ;;
+ esac
+
+ case "$IF_PPP_ENCAPS" in
+ llc)
+ encap=0
+ ;;
+ vc)
+ encap=1
+ ;;
+ *)
+ echo "Wrong Encapsulation use either llc or vc"
+ exit 1
+ ;;
+ esac
+
count=$(echo $IF_PPP_DEVICE|sed -e "s/nas//")
br2684ctl -b -c $count -e $encap -p $payload -a $IF_PPP_VPI.$IF_PPP_VCI
ip link set up dev $IF_PPP_DEVICE
@@ -74,10 +75,6 @@ esac
case "$IF_USE_TEMPLATE" in
umts)
- # set UMTS-LED to green (bit 3)
- LED=$(cat /proc/sys/diag)
- echo $((LED | 8)) > /proc/sys/diag
-
# wait for card to initialize
COUNT=0
while [ $((COUNT++)) -lt 20 ]; do
@@ -110,10 +107,5 @@ umts)
ERROR=1
;;
esac
-
- if [ "$ERROR" == "1" ]; then
- echo "$LED" > /proc/sys/diag
- exit 1
- fi
;;
esac
diff --git a/package/pptpd/Makefile b/package/pptpd/Makefile
index 13ea21a66..fdd823144 100644
--- a/package/pptpd/Makefile
+++ b/package/pptpd/Makefile
@@ -17,7 +17,7 @@ include ${TOPDIR}/mk/package.mk
$(eval $(call PKG_template,PPTPD,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
-TCFLAGS+= -DSBINDIR=\\\"/usr/sbin\\\"
+TCFLAGS+= -fPIC -DSBINDIR='\\\"/usr/sbin\\\"'
FAKE_FLAGS+= INSTALL="install"
post-install:
diff --git a/package/pptpd/patches/patch-Makefile_in b/package/pptpd/patches/patch-Makefile_in
index 23a5b8420..c7a39c493 100644
--- a/package/pptpd/patches/patch-Makefile_in
+++ b/package/pptpd/patches/patch-Makefile_in
@@ -1,11 +1,11 @@
--- pptpd-1.3.4.orig/Makefile.in 2007-04-16 03:10:27.000000000 +0200
-+++ pptpd-1.3.4/Makefile.in 2010-05-29 18:48:12.250000000 +0200
++++ pptpd-1.3.4/Makefile.in 2010-06-10 10:55:01.421440719 +0200
@@ -104,7 +104,7 @@ AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
-CFLAGS = -O2 -fno-builtin -Wall -DSBINDIR='"$(sbindir)"'
-+CFLAGS = -Wall -DSBINDIR='"$(sbindir)"'
++CFLAGS ?= -Wall -DSBINDIR='"$(sbindir)"'
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CYGPATH_W = @CYGPATH_W@
diff --git a/package/pptpd/patches/patch-ctrlpacket_c b/package/pptpd/patches/patch-ctrlpacket_c
index bd4e3dfea..4cfb5a3b1 100644
--- a/package/pptpd/patches/patch-ctrlpacket_c
+++ b/package/pptpd/patches/patch-ctrlpacket_c
@@ -1,6 +1,6 @@
--- pptpd-1.3.4.orig/ctrlpacket.c 2005-08-03 11:10:59.000000000 +0200
-+++ pptpd-1.3.4/ctrlpacket.c 2010-05-30 00:33:57.437500000 +0200
-@@ -377,9 +377,9 @@ void deal_start_ctrl_conn(unsigned char
++++ pptpd-1.3.4/ctrlpacket.c 2010-06-03 14:37:05.610979335 +0200
+@@ -377,9 +377,9 @@ void deal_start_ctrl_conn(unsigned char
start_ctrl_conn_rply.bearer_cap = htons(OUR_BEARER);
start_ctrl_conn_rply.max_channels = htons(MAX_CHANNELS);
start_ctrl_conn_rply.firmware_rev = htons(PPTP_FIRMWARE_VERSION);
diff --git a/package/pptpd/patches/patch-plugins_Makefile b/package/pptpd/patches/patch-plugins_Makefile
index cb32dd4ce..937e62ddf 100644
--- a/package/pptpd/patches/patch-plugins_Makefile
+++ b/package/pptpd/patches/patch-plugins_Makefile
@@ -1,5 +1,5 @@
--- pptpd-1.3.4.orig/plugins/Makefile 2006-08-03 04:02:01.000000000 +0200
-+++ pptpd-1.3.4/plugins/Makefile 2010-05-30 00:31:31.390625000 +0200
++++ pptpd-1.3.4/plugins/Makefile 2010-06-03 14:39:12.120974815 +0200
@@ -1,6 +1,6 @@
-CC = gcc
+CC ?= gcc
@@ -9,3 +9,12 @@
LDFLAGS = -shared
LDADD = -lutil
INSTALL = install -o root
+@@ -18,7 +18,7 @@ all: $(PLUGINS)
+ %.so: %.c
+ $(CC) -o $@ $(LDFLAGS) $(CFLAGS) $^ $(LDADD)
+
+-LIBDIR ?= $(DESTDIR)$(prefix)/lib/pptpd
++LIBDIR = $(DESTDIR)$(prefix)/lib/pptpd
+
+ install: $(PLUGINS)
+ $(INSTALL) -d $(LIBDIR)
diff --git a/package/qingy/Makefile b/package/qingy/Makefile
new file mode 100644
index 000000000..9e91ad4d5
--- /dev/null
+++ b/package/qingy/Makefile
@@ -0,0 +1,40 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:= qingy
+PKG_VERSION:= 0.9.9
+PKG_RELEASE:= 1
+PKG_MD5SUM:= 34f40172a71e9a6c2c77ddce11d2a63a
+PKG_DESCR:= a DirectFB getty replacement
+PKG_SECTION:= x11
+PKG_DEPENDS:= directfb libxscrnsaver
+PKG_BUILDDEP+= DirectFB libXScrnSaver
+PKG_URL:= http://qingy.sourceforge.net/
+PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=qingy/}
+
+DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.bz2
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,QINGY,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+CONFIGURE_ARGS+= --disable-screen-savers \
+ --disable-optimizations \
+ --disable-pam \
+ --disable-crypto
+
+post-install:
+ $(INSTALL_DIR) $(IDIR_QINGY)/etc/qingy/sessions
+ ${INSTALL_BIN} ./files/{pre,post}_GUI.sh ${IDIR_QINGY}/etc/qingy/
+ ${INSTALL_DATA} ./files/{settings,welcomes} ${IDIR_QINGY}/etc/qingy/
+ touch ${IDIR_QINGY}/etc/qingy/sessions/.keep_me
+ $(INSTALL_DIR) $(IDIR_QINGY)/usr/lib/qingy
+ ${CP} $(WRKINST)/usr/lib/qingy/libqingy*.so ${IDIR_QINGY}/usr/lib/qingy/
+ $(INSTALL_DIR) $(IDIR_QINGY)/usr/sbin
+ ${INSTALL_BIN} $(WRKINST)/usr/sbin/qingy* ${IDIR_QINGY}/usr/sbin/
+ $(INSTALL_DIR) $(IDIR_QINGY)/usr/share/qingy
+ ${CP} $(WRKINST)/usr/share/qingy/themes ${IDIR_QINGY}/usr/share/
+
+include ${TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/qingy/files/post_GUI.sh b/package/qingy/files/post_GUI.sh
new file mode 100644
index 000000000..fa46d024a
--- /dev/null
+++ b/package/qingy/files/post_GUI.sh
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+filename="/tmp/qingy_restart_gpm"
+
+if [ -f $filename ]; then
+
+ /etc/init.d/gpm start >/dev/null 2>/dev/null
+ rm $filename
+
+fi
diff --git a/package/qingy/files/pre_GUI.sh b/package/qingy/files/pre_GUI.sh
new file mode 100644
index 000000000..2c0fff1fb
--- /dev/null
+++ b/package/qingy/files/pre_GUI.sh
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+filename="/tmp/qingy_restart_gpm"
+status=`pgrep gpm`
+
+if [ "$status" != "" ]; then
+
+ /etc/init.d/gpm stop >/dev/null 2>/dev/null
+ touch $filename
+
+fi
diff --git a/package/qingy/files/qingy.conffiles b/package/qingy/files/qingy.conffiles
new file mode 100644
index 000000000..332648b28
--- /dev/null
+++ b/package/qingy/files/qingy.conffiles
@@ -0,0 +1,4 @@
+/etc/qingy/settings
+/etc/qingy/welcomes
+/etc/qingy/pre_GUI.sh
+/etc/qingy/post_GUI.sh
diff --git a/package/qingy/files/qingy.postinst b/package/qingy/files/qingy.postinst
new file mode 100644
index 000000000..a68f5fe90
--- /dev/null
+++ b/package/qingy/files/qingy.postinst
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+cat <<EOF
+
+To enjoy the qingy experience, edit /etc/inittab like so:
+
+- tty7::respawn:/sbin/getty -i -L tty7 115200 vt100
++ tty7::respawn:/usr/sbin/qingy tty7 -n -r 1024x600 -f /dev/fb0
+
+for an explanation of the used options, run 'qingy -h'.
+
+EOF
diff --git a/package/qingy/files/settings b/package/qingy/files/settings
new file mode 100644
index 000000000..1f56e3342
--- /dev/null
+++ b/package/qingy/files/settings
@@ -0,0 +1,90 @@
+# Directory containing X sessions
+x_sessions = "/etc/X11/Sessions/"
+# Directory containing text mode sessions
+text_sessions = "/etc/qingy/sessions/"
+# Directory where qingy should put its temporary files
+temp_files_dir = "/tmp"
+# Where are the themes?
+themes_dir = "/usr/share/qingy/themes"
+
+# Full path to the X server
+# x_server = "/usr/X11R6/bin/XFree86"
+# Full path to the 'xinit' executable
+xinit = "/usr/bin/xinit"
+
+# Parameter we should pass to the X server
+x_args = "-nolisten tcp -br"
+
+# How verbose should qingy be?
+# Possible values are debug, error
+# Default value is error
+log_level = error
+
+# Where should qingy messages be logged?
+# Values can be one or more of the following:
+# console, file, syslog
+# Default value is console
+# log_facilities = console, file
+log_facilities = console, syslog
+
+# Offset to search for an available X server number.
+# This number affects the DISPLAY env variable.
+# Default is 1, setting it to 0 will make buggy OpenGL implementations
+# (like the ATI one) work with qingy, but it will also make it impossible
+# to start an X server from console using startx without passing it
+# extra parameters.
+#x_server_offset = 1
+
+# Where should we start the X server?
+# Accepted values are:
+# qingy_tty (default) to start it in the same tty qingy is running in
+# unused_tty to start it into an unused tty
+x_server_tty = qingy_tty
+
+# Scripts that should be executed just before/after qingy GUI is fired up/shut down
+pre_gui_script = "/etc/qingy/pre_GUI.sh"
+post_gui_script = "/etc/qingy/post_GUI.sh"
+
+# What theme do you want (you can also specify 'random')
+# theme = random
+theme = "default"
+
+# What happens when we press the 'sleep' button?
+#sleep = "/usr/local/sbin/hibernate"
+
+# whether we should clear background image during dialogs (default is no)...
+# this is the default setting, it gets overridden if the theme you are using
+# sets the same setting differently...
+# clear_background = yes
+
+# whether to allow session locking; if you enable this, when you try to
+# switch to a qingy-controlled tty whose owner is not your current
+# user, you will be asked for the password of that user before being
+# allowed to continue. If you are root, of course, you can switch
+# to any tty you chose to. Default setting is 'no'.
+#lock_sessions = yes
+
+# whether to allow session timeout; if you enable this, after the amount
+# of minutes specified in idle_timeout variable, idle_action will be
+# performed. Allowed actions are:
+# lock will lock user session asking you for your password
+# logout will close your session
+#idle_timeout = 30
+#idle_action = lock
+
+# prevent qingy from logging in user or firing up its GUI if system
+# is restarting / shutting down
+#check_runlevel = yes
+#exclude_runlevels = 0, 6
+
+keybindings
+{
+ prev_tty = "win" # switch to left tty
+ next_tty = "menu" # switch to right tty
+ poweroff = "ALT-p" # shutdown your system
+ reboot = "ALT-r" # restart your system
+ screensaver = "ALT-s" # activate screen saver
+ sleep = "ALT-z" # put machine to sleep
+ kill = "CTRL-c" # kill qingy
+ text_mode = "CTRL-ESC" # Revert to text mode
+}
diff --git a/package/qingy/files/welcomes b/package/qingy/files/welcomes
new file mode 100644
index 000000000..63068dfd4
--- /dev/null
+++ b/package/qingy/files/welcomes
@@ -0,0 +1 @@
+root Greetings, Master...
diff --git a/package/ruby/Makefile b/package/ruby/Makefile
index 21ec52811..2fd190fde 100644
--- a/package/ruby/Makefile
+++ b/package/ruby/Makefile
@@ -4,14 +4,17 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= ruby
-PKG_VERSION:= 1.9.1-p378
+PKG_VERSION:= 1.9
PKG_RELEASE:= 1
PKG_MD5SUM:= 9fc5941bda150ac0a33b299e1e53654c
PKG_DESCR:= interpreter for the ruby language
PKG_SECTION:= net
PKG_NOPARALLEL:= 1
PKG_URL:= http://www.ruby-lang.org
-PKG_SITES:= ftp://ftp.ruby-lang.org/pub/ruby/1.9/
+PKG_SITES:= ftp://ftp.ruby-lang.org/pub/ruby/
+
+DISTFILES:= ${PKG_NAME}-${PKG_VERSION}-stable.tar.gz
+WRKDIST= ${WRKDIR}/${PKG_NAME}-1.9.1-p378
include ${TOPDIR}/mk/package.mk
diff --git a/package/ruby/patches/patch-Makefile_in b/package/ruby/patches/patch-Makefile_in
index 0e1e996bc..992921e8c 100644
--- a/package/ruby/patches/patch-Makefile_in
+++ b/package/ruby/patches/patch-Makefile_in
@@ -1,11 +1,11 @@
--- ruby-1.9.1-p378.orig/Makefile.in 2009-11-12 17:01:28.000000000 +0100
-+++ ruby-1.9.1-p378/Makefile.in 2010-02-13 21:10:02.000000000 +0100
++++ ruby-1.9.1-p378/Makefile.in 2010-06-02 20:50:05.821613650 +0200
@@ -274,7 +274,7 @@ INSNS = opt_sc.inc optinsn.inc optunifs.
-
+
$(INSNS):
- @$(RM) $(PROGRAM)
+ @$(RM) $(PROGRAM)
- $(BASERUBY) -Ks $(srcdir)/tool/insns2vm.rb $(INSNS2VMOPT) $@
+ $(BASERUBY) $(srcdir)/tool/insns2vm.rb $(INSNS2VMOPT) $@
-
+
node_name.inc:
- $(BASERUBY) -n $(srcdir)/tool/node_name.rb $? > $@
+ $(BASERUBY) -n $(srcdir)/tool/node_name.rb $? > $@
diff --git a/package/ruby/patches/patch-common_mk b/package/ruby/patches/patch-common_mk
index 06a4a7e10..80870ae97 100644
--- a/package/ruby/patches/patch-common_mk
+++ b/package/ruby/patches/patch-common_mk
@@ -1,10 +1,11 @@
--- ruby-1.9.1-p378.orig/common.mk 2009-11-12 17:01:28.000000000 +0100
-+++ ruby-1.9.1-p378/common.mk 2010-02-13 20:20:27.000000000 +0100
++++ ruby-1.9.1-p378/common.mk 2010-06-02 20:50:05.701612890 +0200
@@ -400,7 +400,7 @@ extconf: $(PREP)
- $(RUNRUBY) -C "$(EXTCONFDIR)" $(EXTCONF) $(EXTCONFARGS)
-
+ $(RUNRUBY) -C "$(EXTCONFDIR)" $(EXTCONF) $(EXTCONFARGS)
+
$(RBCONFIG): $(srcdir)/mkconfig.rb config.status $(PREP)
- @$(MINIRUBY) $(srcdir)/mkconfig.rb -timestamp=$@ \
+ $(MINIRUBY) $(srcdir)/mkconfig.rb -timestamp=$@ \
- -install_name=$(RUBY_INSTALL_NAME) \
- -so_name=$(RUBY_SO_NAME) rbconfig.rb
+ -install_name=$(RUBY_INSTALL_NAME) \
+ -so_name=$(RUBY_SO_NAME) rbconfig.rb
+
diff --git a/package/ruby/patches/patch-ext_openssl_ossl_c b/package/ruby/patches/patch-ext_openssl_ossl_c
new file mode 100644
index 000000000..2b649c7dd
--- /dev/null
+++ b/package/ruby/patches/patch-ext_openssl_ossl_c
@@ -0,0 +1,29 @@
+--- ruby-1.9.1-p378.orig/ext/openssl/ossl.c 2009-01-15 16:39:30.000000000 +0100
++++ ruby-1.9.1-p378/ext/openssl/ossl.c 2010-06-12 21:01:58.171613505 +0200
+@@ -92,7 +92,7 @@ ossl_x509_ary2sk(VALUE ary)
+
+ #define OSSL_IMPL_SK2ARY(name, type) \
+ VALUE \
+-ossl_##name##_sk2ary(STACK *sk) \
++ossl_##name##_sk2ary(STACK_OF(type) *sk) \
+ { \
+ type *t; \
+ int i, num; \
+@@ -102,7 +102,7 @@ ossl_##name##_sk2ary(STACK *sk) \
+ OSSL_Debug("empty sk!"); \
+ return Qnil; \
+ } \
+- num = sk_num(sk); \
++ num = sk_##type##_num(sk); \
+ if (num < 0) { \
+ OSSL_Debug("items in sk < -1???"); \
+ return rb_ary_new(); \
+@@ -110,7 +110,7 @@ ossl_##name##_sk2ary(STACK *sk) \
+ ary = rb_ary_new2(num); \
+ \
+ for (i=0; i<num; i++) { \
+- t = (type *)sk_value(sk, i); \
++ t = sk_##type##_value(sk, i); \
+ rb_ary_push(ary, ossl_##name##_new(t)); \
+ } \
+ return ary; \
diff --git a/package/ruby/patches/patch-ext_openssl_ossl_h b/package/ruby/patches/patch-ext_openssl_ossl_h
new file mode 100644
index 000000000..b33b476aa
--- /dev/null
+++ b/package/ruby/patches/patch-ext_openssl_ossl_h
@@ -0,0 +1,19 @@
+--- ruby-1.9.1-p378.orig/ext/openssl/ossl.h 2008-09-26 05:05:47.000000000 +0200
++++ ruby-1.9.1-p378/ext/openssl/ossl.h 2010-06-12 21:10:22.781613550 +0200
+@@ -109,6 +109,16 @@ extern VALUE eOSSLError;
+ int string2hex(const unsigned char *, int, char **, int *);
+
+ /*
++ * Compatibility
++ */
++#if OPENSSL_VERSION_NUMBER >= 0x10000000L
++#define OSSL_MORE_CONST const
++#define STACK _STACK
++#else
++#define OSSL_MORE_CONST
++#endif
++
++/*
+ * Data Conversion
+ */
+ STACK_OF(X509) *ossl_x509_ary2sk0(VALUE);
diff --git a/package/ruby/patches/patch-ext_openssl_ossl_pkcs7_c b/package/ruby/patches/patch-ext_openssl_ossl_pkcs7_c
new file mode 100644
index 000000000..1649e0f10
--- /dev/null
+++ b/package/ruby/patches/patch-ext_openssl_ossl_pkcs7_c
@@ -0,0 +1,12 @@
+--- ruby-1.9.1-p378.orig/ext/openssl/ossl_pkcs7.c 2008-07-22 17:34:23.000000000 +0200
++++ ruby-1.9.1-p378/ext/openssl/ossl_pkcs7.c 2010-06-02 21:05:44.261613234 +0200
+@@ -572,7 +572,8 @@ ossl_pkcs7_add_certificate(VALUE self, V
+ return self;
+ }
+
+-static STACK *
++
++static STACK_OF(X509) *
+ pkcs7_get_certs_or_crls(VALUE self, int want_certs)
+ {
+ PKCS7 *pkcs7;
diff --git a/package/rxvt-unicode/Makefile b/package/rxvt-unicode/Makefile
index 626c9bf54..297b8018c 100644
--- a/package/rxvt-unicode/Makefile
+++ b/package/rxvt-unicode/Makefile
@@ -9,8 +9,8 @@ PKG_RELEASE:= 1
PKG_MD5SUM:= 49bb52c99e002bf85eb41d8385d903b5
PKG_DESCR:= x-term with unicode support
PKG_SECTION:= x11
-PKG_DEPENDS:= libx11 fontconfig libxft libxml2
-PKG_BUILDDEP+= libX11 fontconfig libXft libxml2
+PKG_DEPENDS:= libx11 fontconfig libxft libxml2 libexpat
+PKG_BUILDDEP+= libX11 fontconfig libXft libxml2 expat
PKG_URL:= http://software.schmorp.de/pkg/rxvt-unicode.html
PKG_SITES:= http://dist.schmorp.de/rxvt-unicode/
@@ -21,7 +21,8 @@ include $(TOPDIR)/mk/package.mk
$(eval $(call PKG_template,RXVT_UNICODE,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
CONFIGURE_ARGS+= --disable-perl \
- --disable-utmp
+ --disable-utmp \
+ --disable-afterimage
post-install:
$(INSTALL_DIR) $(IDIR_RXVT_UNICODE)/usr/bin
diff --git a/package/samba/Makefile b/package/samba/Makefile
index e953e2253..5ca099bc1 100644
--- a/package/samba/Makefile
+++ b/package/samba/Makefile
@@ -4,9 +4,9 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= samba
-PKG_VERSION:= 3.4.5
+PKG_VERSION:= 3.5.3
PKG_RELEASE:= 1
-PKG_MD5SUM:= 8e8a484782f2b7716b6c6bd9a7d2bf71
+PKG_MD5SUM:= 7c8d2a34b649380d5df838c3e030dbec
PKG_DESCR:= NetBIOS/SMB file and print server
PKG_SECTION:= net
PKG_URL:= http://www.samba.org
@@ -20,7 +20,7 @@ $(eval $(call PKG_template,SAMBA,samba,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPEN
$(eval $(call PKG_template,SAMBA_CLIENT,samba-client,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
$(eval $(call PKG_template,SAMBA_PASSWD,samba-passwd,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
-TLDFLAGS+= -Wl,-rpath -Wl,/usr/lib/samba
+TLDFLAGS+= -Wl,-rpath -Wl,/usr/lib/samba -lintl
CONFIGURE_ENV+= samba_cv_CC_NEGATIVE_ENUM_VALUES=no \
samba_cv_USE_SETRESUID=no \
ac_cv_lib_ext_nsl_connect=no \
diff --git a/package/samba/patches/patch-client_mount_cifs_c b/package/samba/patches/patch-client_mount_cifs_c
new file mode 100644
index 000000000..4ddd91f9c
--- /dev/null
+++ b/package/samba/patches/patch-client_mount_cifs_c
@@ -0,0 +1,19 @@
+--- samba-3.5.3.orig/client/mount.cifs.c 2010-05-17 13:51:23.000000000 +0200
++++ samba-3.5.3/client/mount.cifs.c 2010-06-11 12:39:34.501613636 +0200
+@@ -39,7 +39,6 @@
+ #include <mntent.h>
+ #include <fcntl.h>
+ #include <limits.h>
+-#include <fstab.h>
+ #include "mount.h"
+
+ #define MOUNT_CIFS_VERSION_MAJOR "1"
+@@ -112,7 +111,7 @@
+ * The legacy behavior is now disabled by default. To reenable it, set the
+ * following #define to true.
+ */
+-#define CIFS_LEGACY_SETUID_CHECK 0
++#define CIFS_LEGACY_SETUID_CHECK 1
+
+ /*
+ * When an unprivileged user runs a setuid mount.cifs, we set certain mount
diff --git a/package/samba/patches/patch-source3_client_mtab_c b/package/samba/patches/patch-source3_client_mtab_c
deleted file mode 100644
index d6cac2914..000000000
--- a/package/samba/patches/patch-source3_client_mtab_c
+++ /dev/null
@@ -1,10 +0,0 @@
---- samba-3.4.3.orig/source3/client/mtab.c 2009-10-29 08:47:16.000000000 +0100
-+++ samba-3.4.3/source3/client/mtab.c 2009-11-01 15:45:07.303242285 +0100
-@@ -32,6 +32,7 @@
- #include <errno.h>
- #include <stdio.h>
- #include <sys/time.h>
-+#include <sys/stat.h>
- #include <time.h>
- #include <fcntl.h>
- #include <mntent.h>
diff --git a/package/samba/patches/patch-source3_configure b/package/samba/patches/patch-source3_configure
deleted file mode 100644
index b99b66528..000000000
--- a/package/samba/patches/patch-source3_configure
+++ /dev/null
@@ -1,196 +0,0 @@
---- samba-3.4.3.orig/source3/configure 2009-10-29 09:18:27.000000000 +0100
-+++ samba-3.4.3/source3/configure 2009-11-01 14:23:21.339243541 +0100
-@@ -45625,193 +45625,6 @@ fi
-
- rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
-
--#
--#
--#
--case "$host_os" in
-- *linux* | gnu* | k*bsd*-gnu | kopensolaris*-gnu)
-- # glibc <= 2.3.2 has a broken getgrouplist
-- if test "$cross_compiling" = yes; then
-- { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
--$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
--{ { $as_echo "$as_me:$LINENO: error: cannot run test program while cross compiling
--See \`config.log' for more details." >&5
--$as_echo "$as_me: error: cannot run test program while cross compiling
--See \`config.log' for more details." >&2;}
-- { (exit 1); exit 1; }; }; }
--else
-- cat >conftest.$ac_ext <<_ACEOF
--/* confdefs.h. */
--_ACEOF
--cat confdefs.h >>conftest.$ac_ext
--cat >>conftest.$ac_ext <<_ACEOF
--/* end confdefs.h. */
--
--#include <unistd.h>
--#include <sys/utsname.h>
--main() {
-- /* glibc up to 2.3 has a broken getgrouplist */
--#if defined(__GLIBC__) && defined(__GLIBC_MINOR__)
-- int libc_major = __GLIBC__;
-- int libc_minor = __GLIBC_MINOR__;
--
-- if (libc_major < 2)
-- exit(1);
-- if ((libc_major == 2) && (libc_minor <= 3))
-- exit(1);
--#endif
-- exit(0);
--}
--
--_ACEOF
--rm -f conftest$ac_exeext
--if { (ac_try="$ac_link"
--case "(($ac_try" in
-- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-- *) ac_try_echo=$ac_try;;
--esac
--eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
--$as_echo "$ac_try_echo") >&5
-- (eval "$ac_link") 2>&5
-- ac_status=$?
-- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
-- (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-- { (case "(($ac_try" in
-- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-- *) ac_try_echo=$ac_try;;
--esac
--eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
--$as_echo "$ac_try_echo") >&5
-- (eval "$ac_try") 2>&5
-- ac_status=$?
-- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
-- (exit $ac_status); }; }; then
-- linux_getgrouplist_ok=yes
--else
-- $as_echo "$as_me: program exited with status $ac_status" >&5
--$as_echo "$as_me: failed program was:" >&5
--sed 's/^/| /' conftest.$ac_ext >&5
--
--( exit $ac_status )
--linux_getgrouplist_ok=no
--fi
--rm -rf conftest.dSYM
--rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
--fi
--
--
-- if test x"$linux_getgrouplist_ok" = x"yes"; then
--
--cat >>confdefs.h <<\_ACEOF
--#define HAVE_GETGROUPLIST 1
--_ACEOF
--
-- fi
-- ;;
-- *)
--
--for ac_func in getgrouplist
--do
--as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
--{ $as_echo "$as_me:$LINENO: checking for $ac_func" >&5
--$as_echo_n "checking for $ac_func... " >&6; }
--if { as_var=$as_ac_var; eval "test \"\${$as_var+set}\" = set"; }; then
-- $as_echo_n "(cached) " >&6
--else
-- cat >conftest.$ac_ext <<_ACEOF
--/* confdefs.h. */
--_ACEOF
--cat confdefs.h >>conftest.$ac_ext
--cat >>conftest.$ac_ext <<_ACEOF
--/* end confdefs.h. */
--/* Define $ac_func to an innocuous variant, in case <limits.h> declares $ac_func.
-- For example, HP-UX 11i <limits.h> declares gettimeofday. */
--#define $ac_func innocuous_$ac_func
--
--/* System header to define __stub macros and hopefully few prototypes,
-- which can conflict with char $ac_func (); below.
-- Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
-- <limits.h> exists even on freestanding compilers. */
--
--#ifdef __STDC__
--# include <limits.h>
--#else
--# include <assert.h>
--#endif
--
--#undef $ac_func
--
--/* Override any GCC internal prototype to avoid an error.
-- Use char because int might match the return type of a GCC
-- builtin and then its argument prototype would still apply. */
--#ifdef __cplusplus
--extern "C"
--#endif
--char $ac_func ();
--/* The GNU C library defines this for functions which it implements
-- to always fail with ENOSYS. Some functions are actually named
-- something starting with __ and the normal name is an alias. */
--#if defined __stub_$ac_func || defined __stub___$ac_func
--choke me
--#endif
--
--int
--main ()
--{
--return $ac_func ();
-- ;
-- return 0;
--}
--_ACEOF
--rm -f conftest.$ac_objext conftest$ac_exeext
--if { (ac_try="$ac_link"
--case "(($ac_try" in
-- *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
-- *) ac_try_echo=$ac_try;;
--esac
--eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
--$as_echo "$ac_try_echo") >&5
-- (eval "$ac_link") 2>conftest.er1
-- ac_status=$?
-- grep -v '^ *+' conftest.er1 >conftest.err
-- rm -f conftest.er1
-- cat conftest.err >&5
-- $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
-- (exit $ac_status); } && {
-- test -z "$ac_c_werror_flag" ||
-- test ! -s conftest.err
-- } && test -s conftest$ac_exeext && {
-- test "$cross_compiling" = yes ||
-- $as_test_x conftest$ac_exeext
-- }; then
-- eval "$as_ac_var=yes"
--else
-- $as_echo "$as_me: failed program was:" >&5
--sed 's/^/| /' conftest.$ac_ext >&5
--
-- eval "$as_ac_var=no"
--fi
--
--rm -rf conftest.dSYM
--rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
-- conftest$ac_exeext conftest.$ac_ext
--fi
--ac_res=`eval 'as_val=${'$as_ac_var'}
-- $as_echo "$as_val"'`
-- { $as_echo "$as_me:$LINENO: result: $ac_res" >&5
--$as_echo "$ac_res" >&6; }
--as_val=`eval 'as_val=${'$as_ac_var'}
-- $as_echo "$as_val"'`
-- if test "x$as_val" = x""yes; then
-- cat >>confdefs.h <<_ACEOF
--#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
--_ACEOF
--
--fi
--done
--
-- ;;
--esac
-
- #
- # stat64 family may need <sys/stat.h> on some systems, notably ReliantUNIX
diff --git a/package/samba/patches/patch-source3_registry_reg_perfcount_c b/package/samba/patches/patch-source3_registry_reg_perfcount_c
index 650394f73..684036b5b 100644
--- a/package/samba/patches/patch-source3_registry_reg_perfcount_c
+++ b/package/samba/patches/patch-source3_registry_reg_perfcount_c
@@ -1,6 +1,6 @@
---- samba-3.4.3.orig/source3/registry/reg_perfcount.c 2009-10-29 08:47:16.000000000 +0100
-+++ samba-3.4.3/source3/registry/reg_perfcount.c 2009-11-20 21:11:54.000000000 +0100
-@@ -613,14 +613,14 @@ static bool _reg_perfcount_add_counter(P
+--- samba-3.5.3.orig/source3/registry/reg_perfcount.c 2010-05-17 13:51:23.000000000 +0200
++++ samba-3.5.3/source3/registry/reg_perfcount.c 2010-06-11 12:21:42.911613348 +0200
+@@ -618,14 +618,14 @@ static bool _reg_perfcount_add_counter(s
obj = NULL;
memset(buf, 0, PERFCOUNT_MAX_LEN);
memcpy(buf, data.dptr, data.dsize);
diff --git a/package/scanlogd/files/scanlogd.postinst b/package/scanlogd/files/scanlogd.postinst
index 60b036da4..237852192 100644
--- a/package/scanlogd/files/scanlogd.postinst
+++ b/package/scanlogd/files/scanlogd.postinst
@@ -1,36 +1,6 @@
#!/bin/sh
. $IPKG_INSTROOT/etc/functions.sh
add_rcconf scanlogd scanlogd NO
-
-
-name=scanlogd
-id=53
-
-# do not change below
-# check if we are on real system
-if [ -z "${IPKG_INSTROOT}" ]; then
- # create copies of passwd and group, if we use squashfs
- rootfs=`mount |awk '/root/ { print $5 }'`
- if [ "$rootfs" = "squashfs" ]; then
- if [ -h /etc/group ]; then
- rm /etc/group
- cp /rom/etc/group /etc/group
- fi
- if [ -h /etc/passwd ]; then
- rm /etc/passwd
- cp /rom/etc/passwd /etc/passwd
- fi
- fi
-fi
-
-echo ""
-if [ -z "$(grep ^\\${name}: ${IPKG_INSTROOT}/etc/group)" ]; then
- echo "adding group $name to /etc/group"
- echo "${name}:x:${id}:" >> ${IPKG_INSTROOT}/etc/group
-fi
-
-if [ -z "$(grep ^\\${name}: ${IPKG_INSTROOT}/etc/passwd)" ]; then
- echo "adding user $name to /etc/passwd"
- echo "${name}:x:${id}:${id}:${name}:/tmp/.${name}:/bin/false" >> ${IPKG_INSTROOT}/etc/passwd
-fi
-
+gid=$(get_next_gid)
+add_group scanlogd $gid
+add_user scanlogd $(get_next_uid) $gid /tmp/
diff --git a/package/squid/Makefile b/package/squid/Makefile
index 24dbef89e..1c4ffa115 100644
--- a/package/squid/Makefile
+++ b/package/squid/Makefile
@@ -4,15 +4,15 @@
include ${TOPDIR}/rules.mk
PKG_NAME:= squid
-PKG_VERSION:= 3.0.STABLE20
-PKG_RELEASE:= 3
-PKG_MD5SUM:= b69577cfc5cfb6808ec426e3a933220d
+PKG_VERSION:= 3.1.4
+PKG_RELEASE:= 2
+PKG_MD5SUM:= c70ef1198e6a6c1ae80bc57cd3592e36
PKG_DESCR:= squid web and cache proxy
PKG_SECTION:= net
PKG_DEPENDS:= libopenssl libpthread
PKG_BUILDDEP+= openssl
PKG_URL:= http://www.squid-cache.org
-PKG_SITES:= http://www.squid-cache.org/Versions/v3/3.0/
+PKG_SITES:= http://www.squid-cache.org/Versions/v3/3.1/
PKG_MULTI:= 1
#PKG_CXX:= SQUID
@@ -40,9 +40,6 @@ endif
ifneq (${ADK_PACKAGE_SQUID_MOD_NTLM_AUTH_FAKEAUTH},)
NTLM_AUTH_HELPERS+= fakeauth
endif
-ifneq (${ADK_PACKAGE_SQUID_MOD_NTLM_AUTH_SMB_AUTH},)
-NTLM_AUTH_HELPERS+= SMB
-endif
include ${TOPDIR}/mk/package.mk
@@ -64,7 +61,6 @@ $(eval $(call PKG_template,SQUID_MOD_DIGEST_AUTH_PASSWORD,${PKG_NAME}-mod-digest
$(eval $(call PKG_template,SQUID_MOD_EXTERNAL_ACL_IP_USER,${PKG_NAME}-mod-external-acl-ip-user,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
$(eval $(call PKG_template,SQUID_MOD_EXTERNAL_ACL_UNIX_GROUP,${PKG_NAME}-mod-external-acl-unix-group,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
$(eval $(call PKG_template,SQUID_MOD_NTLM_AUTH_FAKEAUTH,${PKG_NAME}-mod-ntlm-auth-fakeauth,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
-$(eval $(call PKG_template,SQUID_MOD_NTLM_AUTH_SMB_AUTH,${PKG_NAME}-mod-ntlm-auth-smb-auth,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
$(eval $(call PKG_mod_template,SQUID_MOD_BASIC_AUTH_GETPWNAM,getpwname_auth))
$(eval $(call PKG_mod_template,SQUID_MOD_BASIC_AUTH_LDAP,ldap))
@@ -75,10 +71,9 @@ $(eval $(call PKG_mod_template,SQUID_MOD_EXTERNAL_ACL_IP_USER,ip_user_check))
$(eval $(call PKG_mod_template,SQUID_MOD_EXTERNAL_ACL_LDAP_GROUP,ldap_auth))
$(eval $(call PKG_mod_template,SQUID_MOD_EXTERNAL_ACL_UNIX_GROUP,squid_unix_group))
$(eval $(call PKG_mod_template,SQUID_MOD_NTLM_AUTH_FAKEAUTH,fakeauth_auth))
-$(eval $(call PKG_mod_template,SQUID_MOD_NTLM_AUTH_SMB_AUTH,ntlm_auth))
#ifeq ($(ADK_COMPILE_SQUID_WITH_UCLIBCXX),y)
-#CONFIGURE_ENV+= CXXFLAGS="-fno-threadsafe-statics -fno-builtin -nostdinc++ \
+#CONFIGURE_ENV+= CXXFLAGS="-fno-threadsafe-statics -fno-builtin -nostdinc++ \
# -I${STAGING_DIR}/usr/include/uClibc++" \
# LIBS="-nodefaultlibs -luClibc++ -ldl -lm"
#endif
@@ -103,7 +98,8 @@ CONFIGURE_ENV+= ac_cv_sizeof_void_p=4 \
ac_cv_func___va_copy=no \
ac_cv_epoll_works=yes \
ac_cv_lib_nsl_main=no \
- ac_cv_func_strnstr=no
+ ac_cv_func_strnstr=no \
+ squid_cv_pf_inet6=yes
CONFIGURE_ARGS+= --datadir=/usr/share/squid \
--libexecdir=/usr/lib/squid \
--sysconfdir=/etc/squid \
@@ -111,6 +107,7 @@ CONFIGURE_ARGS+= --datadir=/usr/share/squid \
--enable-x-accelerator-vary \
--with-pthreads \
--with-dl \
+ --disable-debug-cbdata \
--enable-kill-parent-hack \
--enable-arp-acl \
--enable-ssl \
@@ -118,11 +115,11 @@ CONFIGURE_ARGS+= --datadir=/usr/share/squid \
--enable-default-err-language=English \
--enable-linux-netfilter \
--enable-icmp \
- --enable-external-acl-helpers="" \
--enable-underscores \
--enable-cache-digests \
--enable-referer-log \
--enable-delay-pools \
+ --without-libcap \
--disable-snmp \
--disable-esi \
--disable-htcp \
@@ -130,6 +127,7 @@ CONFIGURE_ARGS+= --datadir=/usr/share/squid \
--disable-wccpv2 \
--enable-useragent-log \
--with-openssl=${STAGING_DIR}/usr \
+ --enable-negotiate-auth-helpers=no \
--enable-auth="${AUTH_MODULES}" \
--enable-basic-auth-helpers="${BASIC_AUTH_HELPERS}" \
--enable-ntlm-auth-helpers="${NTLM_AUTH_HELPERS}" \
@@ -148,8 +146,9 @@ post-install: ${INSTALL_MODS_y} ${INSTALL_MODS_m}
${INSTALL_DATA} ${WRKINST}/etc/squid/mime.conf \
${IDIR_SQUID}/etc/squid/
${INSTALL_DATA} ./files/squid.conf ${IDIR_SQUID}/etc/squid/
- ${INSTALL_DIR} ${IDIR_SQUID}/usr/share/squid
- ${CP} ${WRKINST}/usr/share/squid/* ${IDIR_SQUID}/usr/share/squid/
+ ${INSTALL_DIR} ${IDIR_SQUID}/usr/share/squid/errors
+ ${CP} ${WRKINST}/usr/share/squid/errors/en ${IDIR_SQUID}/usr/share/squid/errors
+ ${CP} ${WRKINST}/usr/share/squid/icons ${IDIR_SQUID}/usr/share/squid/
${INSTALL_DIR} ${IDIR_SQUID}/usr/sbin ${IDIR_SQUID}/usr/lib/squid
${INSTALL_BIN} ${WRKINST}/usr/sbin/squid ${IDIR_SQUID}/usr/sbin/
${INSTALL_BIN} ${WRKINST}/usr/lib/squid/unlinkd \
diff --git a/package/squid/patches/autotool.patch b/package/squid/patches/autotool.patch
index 20a65b912..cccadad14 100644
--- a/package/squid/patches/autotool.patch
+++ b/package/squid/patches/autotool.patch