diff options
author | 2006-12-18 06:24:31 +0000 | |
---|---|---|
committer | 2006-12-18 06:24:31 +0000 | |
commit | 5f26c28ab948b1ea4fc230b9604390f0f2e34642 (patch) | |
tree | 885c2e5d13d04192f75eefb9ecd06b8127752963 /app-laptop/pbbuttonsd/files | |
parent | Version bump to 2.6.20_rc1-r5 (diff) | |
download | gentoo-2-5f26c28ab948b1ea4fc230b9604390f0f2e34642.tar.gz gentoo-2-5f26c28ab948b1ea4fc230b9604390f0f2e34642.tar.bz2 gentoo-2-5f26c28ab948b1ea4fc230b9604390f0f2e34642.zip |
Added patch to enable -lm to fix compile error without alsa. Thanks to gothgirl for pointing it out.
(Portage version: 2.1.2_rc3-r5)
Diffstat (limited to 'app-laptop/pbbuttonsd/files')
-rw-r--r-- | app-laptop/pbbuttonsd/files/lm-fix.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/app-laptop/pbbuttonsd/files/lm-fix.patch b/app-laptop/pbbuttonsd/files/lm-fix.patch new file mode 100644 index 000000000000..1b767b8d47df --- /dev/null +++ b/app-laptop/pbbuttonsd/files/lm-fix.patch @@ -0,0 +1,11 @@ +--- src/Makefile.in.old 2006-12-18 01:17:22.000000000 -0500 ++++ src/Makefile.in 2006-12-18 01:17:33.000000000 -0500 +@@ -132,7 +132,7 @@ + DEFS = @DEFS@ -I. -I$(srcdir) -I.. + CPPFLAGS = @CPPFLAGS@ + LDFLAGS = @LDFLAGS@ +-LIBS = @LIBS@ ++LIBS = -lm @LIBS@ + pbbuttonsd_OBJECTS = pbbuttonsd.o init.o input_manager.o support.o \ + config_manager.o module_pmac.o module_system.o module_powersave.o \ + module_display.o module_cdrom.o module_mixer.o module_ossmixer.o \ |