# HG changeset patch # User Sean Egan # Date 1038449018 0 # Node ID ab6c48a07fd60f20fd6f9c8332985a3f51bd667f # Parent a870a2a0bc5b27727bdaac62de05ee9d02888268 [gaim-migrate @ 4212] Fixed this filename madness. Robot101 is going to fix arts and nas and send me a patch whilst I eat dinner. Herman (or Rob) you'll want to fix the win32 stuff accordingly, I presume. This is not the end of the world. committer: Tailor Script diff -r a870a2a0bc5b -r ab6c48a07fd6 sounds/BuddyArrive.au Binary file sounds/BuddyArrive.au has changed diff -r a870a2a0bc5b -r ab6c48a07fd6 sounds/BuddyArrive.wav Binary file sounds/BuddyArrive.wav has changed diff -r a870a2a0bc5b -r ab6c48a07fd6 sounds/BuddyLeave.au Binary file sounds/BuddyLeave.au has changed diff -r a870a2a0bc5b -r ab6c48a07fd6 sounds/BuddyLeave.wav Binary file sounds/BuddyLeave.wav has changed diff -r a870a2a0bc5b -r ab6c48a07fd6 sounds/Makefile.am --- a/sounds/Makefile.am Thu Nov 28 00:21:24 2002 +0000 +++ b/sounds/Makefile.am Thu Nov 28 02:03:38 2002 +0000 @@ -1,8 +1,8 @@ -EXTRA_DIST = BuddyArrive.wav \ - BuddyLeave.wav \ - Receive.wav \ - RedAlert.wav \ - Send.wav +EXTRA_DIST = buddyarrive.wav \ + buddyleave.wav \ + receive.wav \ + redalert.wav \ + send.wav soundsdir = $(datadir)/sounds/gaim sounds_DATA = $(EXTRA_DIST) diff -r a870a2a0bc5b -r ab6c48a07fd6 sounds/Receive.au Binary file sounds/Receive.au has changed diff -r a870a2a0bc5b -r ab6c48a07fd6 sounds/Receive.wav Binary file sounds/Receive.wav has changed diff -r a870a2a0bc5b -r ab6c48a07fd6 sounds/RedAlert.au Binary file sounds/RedAlert.au has changed diff -r a870a2a0bc5b -r ab6c48a07fd6 sounds/RedAlert.wav Binary file sounds/RedAlert.wav has changed diff -r a870a2a0bc5b -r ab6c48a07fd6 sounds/Send.au Binary file sounds/Send.au has changed diff -r a870a2a0bc5b -r ab6c48a07fd6 sounds/Send.wav Binary file sounds/Send.wav has changed diff -r a870a2a0bc5b -r ab6c48a07fd6 sounds/arrive.wav Binary file sounds/arrive.wav has changed diff -r a870a2a0bc5b -r ab6c48a07fd6 sounds/au2h.c --- a/sounds/au2h.c Thu Nov 28 00:21:24 2002 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,60 +0,0 @@ -#include -#if !(__GLIBC__ < 2) -#include -#endif -#include -#include -#include -#include - -#define BUF_SIZE 10 - -int main(int argc, char *argv[]) -{ - int fd; - FILE *f; - int res,x; - char buf[BUF_SIZE]; - char file[256]; - int offset = 0, cnt; - - if (argc != 3) { - fprintf(stderr, "Too few arguments! Are you using gmake? If you're not, then you really should. :-) \n"); - exit(1); - } - - fd = open(argv[1], O_RDONLY); - if (fd < 0) { - perror("open"); - exit(1); - } - f = fopen(argv[2], "w+"); - if (!f) { - perror("fopen"); - exit(1); - } - argv[1][strlen(argv[1])-3]='\0'; - cnt = strlen(argv[1]); - while (offset != cnt) { - if (argv[1][cnt - offset] == '/') { - offset--; - break; - } - offset++; - } - sprintf(file, "%s", &argv[1][cnt - offset]); - fprintf(f, "static unsigned char %s[] = {\n", file); - read(fd, buf, 8); /* id & offset */ - read(fd, buf, 8); /* len & encoding */ - read(fd, buf, 8); /* rate & count */ - /* no more click :) */ - - while((res = read(fd, buf, BUF_SIZE)) > 0) { - for (x=0;x #endif +#ifdef ARTSC_SOUND +#include +#endif + +#ifdef NAS_SOUND +#include