wmacpi: Bump to version 2.2rc5.
Source obtained from http://sourceforge.net/projects/wmacpi/files/. 2009 August 10 2.2rc5 Small Makefile fix to allow compiling on newer GCCs, supplied Michael Shigorin of ALT Linux.
This commit is contained in:
parent
aa177b7402
commit
413a212a2e
|
@ -1,2 +1,2 @@
|
||||||
repo: 9cde42e7fe71d3618c7c14b2f4fec73f079b283d
|
repo: 9cde42e7fe71d3618c7c14b2f4fec73f079b283d
|
||||||
node: f0f8df2eb33c81247679bd10585a3d380b03ca60
|
node: 81fd4b2a1617e82f9dae26b628e5c79ac7067045
|
||||||
|
|
|
@ -5,3 +5,5 @@ dc57f7d93d9c0c5dd8a283ca3d1d48420c12b536 v2.2rc3
|
||||||
4be24f89e71d83589056ccbc38376867a6a25ffa v2.2rc3-1
|
4be24f89e71d83589056ccbc38376867a6a25ffa v2.2rc3-1
|
||||||
bfff36bca604857508fe37552acbdcfe94fad31d v2.2rc4
|
bfff36bca604857508fe37552acbdcfe94fad31d v2.2rc4
|
||||||
8f72761f2fe3aeab65e04079e6253bb00fe957dc v2.2rc4-1
|
8f72761f2fe3aeab65e04079e6253bb00fe957dc v2.2rc4-1
|
||||||
|
5daab1058fa0d1402cc1845a933051dd8518003c v2.2rc5
|
||||||
|
3051f5447325d65089fa06312f5c13bbbdb8d3a9 v2.2rc5-1
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
2009 August 10 2.2rc5
|
||||||
|
Small Makefile fix to allow compiling on newer GCCs, supplied
|
||||||
|
Michael Shigorin of ALT Linux.
|
||||||
|
|
||||||
2008 November 14 2.2rc4
|
2008 November 14 2.2rc4
|
||||||
Change the way that we sleep/wait for activity, to use select
|
Change the way that we sleep/wait for activity, to use select
|
||||||
rather than a fixed-length sleep, supplied by Julien Blache of
|
rather than a fixed-length sleep, supplied by Julien Blache of
|
||||||
|
|
|
@ -37,7 +37,7 @@ WMOBJ := $(patsubst %.c,%.o,$(filter %.c,$(WMSRC)))
|
||||||
-include $(WMOBJ:.o=.d)
|
-include $(WMOBJ:.o=.d)
|
||||||
|
|
||||||
wmacpi: $(WMOBJ)
|
wmacpi: $(WMOBJ)
|
||||||
$(CC) $(LDFLAGS) -o $@ $^
|
$(CC) -o $@ $^ $(LDFLAGS)
|
||||||
|
|
||||||
# for the Debian package, we want to make building the command line tools
|
# for the Debian package, we want to make building the command line tools
|
||||||
# optional. So, we hide all the necessary stuff here . . .
|
# optional. So, we hide all the necessary stuff here . . .
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
|
|
||||||
#include "libacpi.h"
|
#include "libacpi.h"
|
||||||
|
|
||||||
#define ACPI_VER "2.2rc3"
|
#define ACPI_VER "2.2rc5"
|
||||||
|
|
||||||
global_t *globals;
|
global_t *globals;
|
||||||
|
|
||||||
|
|
|
@ -36,7 +36,7 @@
|
||||||
#include "libacpi.h"
|
#include "libacpi.h"
|
||||||
#include "wmacpi.h"
|
#include "wmacpi.h"
|
||||||
|
|
||||||
#define WMACPI_VER "2.2rc3"
|
#define WMACPI_VER "2.2rc5"
|
||||||
|
|
||||||
/* main pixmap */
|
/* main pixmap */
|
||||||
#ifdef LOW_COLOR
|
#ifdef LOW_COLOR
|
||||||
|
|
Loading…
Reference in a new issue