Share Pastebin
Guest
Public paste!

denis

By: a guest | Oct 2nd, 2008 | Syntax: None | Size: 2.91 KB | Hits: 708 | Expires: Never
Copy text to clipboard
  1. diff -uNr murrine-0.53.1.orig/win32/config.h murrine-0.53.1/win32/config.h
  2. --- murrine-0.53.1.orig/win32/config.h  Thu Jan  1 01:00:00 1970
  3. +++ murrine-0.53.1/win32/config.h       Tue Sep 30 22:33:43 2008
  4.  -0,0 +1,64 @@
  5. +/* win32/config.h.  Written by hand based on src/config.h.in :)  */
  6. +
  7. +/* Defines whether to compile with animation support */
  8. +#define HAVE_ANIMATION
  9. +
  10. +/* Defines whether to compile with progressbar animation from right to left */
  11. +#undef HAVE_ANIMATIONTOLEFT
  12. +
  13. +/* Define to 1 if you have the <dlfcn.h> header file. */
  14. +#undef HAVE_DLFCN_H
  15. +
  16. +/* Define to 1 if you have the <inttypes.h> header file. */
  17. +#undef HAVE_INTTYPES_H
  18. +
  19. +/* Defines whether to compile with mac menubar patches */
  20. +#undef HAVE_MACMENU
  21. +
  22. +/* Define to 1 if you have the <memory.h> header file. */
  23. +#undef HAVE_MEMORY_H
  24. +
  25. +/* Define to 1 if you have the <stdint.h> header file. */
  26. +#undef HAVE_STDINT_H
  27. +
  28. +/* Define to 1 if you have the <stdlib.h> header file. */
  29. +#define HAVE_STDLIB_H
  30. +
  31. +/* Define to 1 if you have the <strings.h> header file. */
  32. +#define HAVE_STRINGS_H
  33. +
  34. +/* Define to 1 if you have the <string.h> header file. */
  35. +#define HAVE_STRING_H
  36. +
  37. +/* Define to 1 if you have the <sys/stat.h> header file. */
  38. +#undef HAVE_SYS_STAT_H
  39. +
  40. +/* Define to 1 if you have the <sys/types.h> header file. */
  41. +#undef HAVE_SYS_TYPES_H
  42. +
  43. +/* Define to 1 if you have the <unistd.h> header file. */
  44. +#undef HAVE_UNISTD_H
  45. +
  46. +/* Name of package */
  47. +#define PACKAGE "murrine"
  48. +
  49. +/* Define to the address where bug reports for this package should be sent. */
  50. +#define PACKAGE_BUGREPORT ""
  51. +
  52. +/* Define to the full name of this package. */
  53. +#define PACKAGE_NAME "murrine"
  54. +
  55. +/* Define to the full name and version of this package. */
  56. +#define PACKAGE_STRING "murrine 0.53.1"
  57. +
  58. +/* Define to the one symbol short name of this package. */
  59. +#undef PACKAGE_TARNAME
  60. +
  61. +/* Define to the version of this package. */
  62. +#define PACKAGE_VERSION "0.53.1"
  63. +
  64. +/* Define to 1 if you have the ANSI C header files. */
  65. +#undef STDC_HEADERS
  66. +
  67. +/* Version number of package */
  68. +#define VERSION "0.53.1"
  69. diff -uNr murrine-0.53.1.orig/win32/libmurrine.pro murrine-0.53.1/win32/libmurrine.pro
  70. --- murrine-0.53.1.orig/win32/libmurrine.pro    Thu Jan  1 01:00:00 1970
  71. +++ murrine-0.53.1/win32/libmurrine.pro Tue Sep 30 22:34:30 2008
  72.  -0,0 +1,22 @@
  73. +TEMPLATE = lib
  74. +CONFIG -= qt
  75. +
  76. +QMAKE_CFLAGS += $$system(pkg-config --cflags gtk+-2.0)
  77. +LIBS += $$system(pkg-config --libs gtk+-2.0)
  78. +
  79. +SOURCES = \
  80. +        ../src/murrine_rc_style.c \
  81. +        ../src/murrine_style.c \
  82. +        ../src/murrine_theme_main.c \
  83. +        ../src/support.c \
  84. +        ../src/animation.c \
  85. +        ../src/murrine_draw.c
  86. +
  87. +HEADERS = \
  88. +        ../src/murrine_rc_style.h \
  89. +        ../src/murrine_style.h \
  90. +        ../src/animation.h \
  91. +        ../src/support.h \
  92. +        ../src/murrine_draw.h \
  93. +        ../src/murrine_types.h \
  94. +        ./config.h