mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

90 lines
3.4 KiB

  1. # --- ROCK-COPYRIGHT-NOTE-BEGIN ---
  2. #
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. # Please add additional copyright information _after_ the line containing
  5. # the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
  6. # the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
  7. #
  8. # ROCK Linux: rock-src/package/rene/cpufreqd/pmu.patch
  9. # ROCK Linux is Copyright (C) 1998 - 2003 Clifford Wolf
  10. #
  11. # This program is free software; you can redistribute it and/or modify
  12. # it under the terms of the GNU General Public License as published by
  13. # the Free Software Foundation; either version 2 of the License, or
  14. # (at your option) any later version. A copy of the GNU General Public
  15. # License can be found at Documentation/COPYING.
  16. #
  17. # Many people helped and are helping developing ROCK Linux. Please
  18. # have a look at http://www.rocklinux.org/ and the Documentation/TEAM
  19. # file for details.
  20. #
  21. # --- ROCK-COPYRIGHT-NOTE-END ---
  22. Author:
  23. Copyright (C) 2003 Rene Rebe (rene@rocklinux.org)
  24. diff -urN cpufreqd-1.0/Makefile.in cpufreqd-1.0-pmu/Makefile.in
  25. --- cpufreqd-1.0/Makefile.in 2003-06-23 22:01:36.000000000 +0200
  26. +++ cpufreqd-1.0-pmu/Makefile.in 2003-07-24 18:47:17.000000000 +0200
  27. @@ -88,7 +88,7 @@
  28. cpufreqd_SOURCES = main.c config_parser.c string_list.c
  29. -lib_LTLIBRARIES = libsys_acpi.la libsys_apm.la
  30. +lib_LTLIBRARIES = libsys_acpi.la libsys_apm.la libsys_pmu.la
  31. libsys_acpi_la_SOURCES = libsys_acpi.c
  32. @@ -97,6 +97,9 @@
  33. libsys_apm_la_SOURCES = libsys_apm.c
  34. libsys_apm_la_LDFLAGS = -module -avoid-version
  35. +libsys_pmu_la_SOURCES = libsys_pmu.c
  36. +libsys_pmu_la_LDFLAGS = -module -avoid-version
  37. +
  38. noinst_HEADERS = config_parser.h cpufreqd.h main.h string_list.h
  39. @@ -117,6 +120,9 @@
  40. libsys_acpi_la_OBJECTS = libsys_acpi.lo
  41. libsys_apm_la_LIBADD =
  42. libsys_apm_la_OBJECTS = libsys_apm.lo
  43. +libsys_pmu_la_LIBADD =
  44. +libsys_pmu_la_OBJECTS = libsys_pmu.lo
  45. +
  46. bin_PROGRAMS = cpufreqd$(EXEEXT)
  47. PROGRAMS = $(bin_PROGRAMS)
  48. @@ -141,8 +147,8 @@
  49. TAR = tar
  50. GZIP_ENV = --best
  51. -SOURCES = $(libsys_acpi_la_SOURCES) $(libsys_apm_la_SOURCES) $(cpufreqd_SOURCES)
  52. -OBJECTS = $(libsys_acpi_la_OBJECTS) $(libsys_apm_la_OBJECTS) $(cpufreqd_OBJECTS)
  53. +SOURCES = $(libsys_acpi_la_SOURCES) $(libsys_apm_la_SOURCES) $(libsys_pmu_la_SOURCES) $(cpufreqd_SOURCES)
  54. +OBJECTS = $(libsys_acpi_la_OBJECTS) $(libsys_apm_la_OBJECTS) $(libsys_pmu_la_OBJECTS) $(cpufreqd_OBJECTS)
  55. all: all-redirect
  56. .SUFFIXES:
  57. @@ -265,6 +271,10 @@
  58. libsys_apm.la: $(libsys_apm_la_OBJECTS) $(libsys_apm_la_DEPENDENCIES)
  59. $(LINK) -rpath $(libdir) $(libsys_apm_la_LDFLAGS) $(libsys_apm_la_OBJECTS) $(libsys_apm_la_LIBADD) $(LIBS)
  60. +libsys_pmu.la: $(libsys_pmu_la_OBJECTS) $(libsys_pmu_la_DEPENDENCIES)
  61. + $(LINK) -rpath $(libdir) $(libsys_pmu_la_LDFLAGS) $(libsys_pmu_la_OBJECTS) $(libsys_pmu_la_LIBADD) $(LIBS)
  62. +
  63. +
  64. mostlyclean-binPROGRAMS:
  65. clean-binPROGRAMS:
  66. @@ -448,6 +458,9 @@
  67. config.h main.h config_parser.h
  68. libsys_apm.lo libsys_apm.o : libsys_apm.c cpufreqd.h string_list.h \
  69. config.h main.h config_parser.h
  70. +libsys_pmu.lo libsys_pmu.o : libsys_pmu.c cpufreqd.h string_list.h \
  71. + config.h main.h config_parser.h
  72. +
  73. main.o: main.c cpufreqd.h string_list.h config.h main.h config_parser.h
  74. string_list.o: string_list.c string_list.h