From 5379a0d3b2f665f541ef2d2130c72bbf77bb7a59 Mon Sep 17 00:00:00 2001 From: Charles Coldwell Date: Mon, 13 Aug 2007 19:42:55 +0000 Subject: [PATCH] glibc changed "open" to a macro --- glibc-open-macro.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 glibc-open-macro.patch diff --git a/glibc-open-macro.patch b/glibc-open-macro.patch new file mode 100644 index 0000000..a360c65 --- /dev/null +++ b/glibc-open-macro.patch @@ -0,0 +1,11 @@ +--- emacs-22.1/src/sound.c~ 2007-03-06 07:14:14.000000000 -0500 ++++ emacs-22.1/src/sound.c 2007-08-09 15:54:52.117018000 -0400 +@@ -1469,7 +1469,7 @@ Internal use only, use `play-sound' inst + error ("No usable sound device driver found"); + + /* Open the device. */ +- current_sound_device->open (current_sound_device); ++ (current_sound_device->open) (current_sound_device); + + /* Play the sound. */ + current_sound->play (current_sound, current_sound_device);