[arch-commits] Commit in rlog/repos (8 files)

Felix Yan fyan at nymeria.archlinux.org
Mon Jul 7 02:42:41 UTC 2014


    Date: Monday, July 7, 2014 @ 04:42:41
  Author: fyan
Revision: 115241

archrelease: copy trunk to community-i686, community-x86_64

Added:
  rlog/repos/community-i686/PKGBUILD
    (from rev 115240, rlog/trunk/PKGBUILD)
  rlog/repos/community-i686/rlog-section.patch
    (from rev 115240, rlog/trunk/rlog-section.patch)
  rlog/repos/community-x86_64/PKGBUILD
    (from rev 115240, rlog/trunk/PKGBUILD)
  rlog/repos/community-x86_64/rlog-section.patch
    (from rev 115240, rlog/trunk/rlog-section.patch)
Deleted:
  rlog/repos/community-i686/PKGBUILD
  rlog/repos/community-i686/rlog-section.patch
  rlog/repos/community-x86_64/PKGBUILD
  rlog/repos/community-x86_64/rlog-section.patch

-------------------------------------+
 /PKGBUILD                           |   58 +++++++++++++
 /rlog-section.patch                 |  148 ++++++++++++++++++++++++++++++++++
 community-i686/PKGBUILD             |   29 ------
 community-i686/rlog-section.patch   |   74 -----------------
 community-x86_64/PKGBUILD           |   29 ------
 community-x86_64/rlog-section.patch |   74 -----------------
 6 files changed, 206 insertions(+), 206 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2014-07-07 02:41:55 UTC (rev 115240)
+++ community-i686/PKGBUILD	2014-07-07 02:42:41 UTC (rev 115241)
@@ -1,29 +0,0 @@
-# $Id$
-# Contributor: Jaroslaw Swierczynski <swiergot at aur.archlinux.org>
-# Contributor: Sven Kauber <celeon at gmail.com>
-# Maintainer: Daniel J Griffiths <ghost1227 at archlinux.us>
-
-pkgname=rlog
-pkgver=1.4
-pkgrel=4
-pkgdesc="A flexible message logging facility for C++ programs and libraries"
-arch=('i686' 'x86_64')
-url="http://www.arg0.net/rlog"
-license=('LGPL')
-depends=('gcc-libs')
-source=(http://rlog.googlecode.com/files/${pkgname}-${pkgver}.tar.gz \
-	${pkgname}-section.patch)
-md5sums=('c29f74e0f50d66b20312d049b683ff82'
-         '69644989e07ceb5c265dfc0c6f770810')
-
-build() {
-	cd "${srcdir}/${pkgname}-${pkgver}"
-	patch -Np1 -i "${srcdir}/${pkgname}-section.patch"
-	./configure --prefix=/usr
-	make
-}
-
-package() {
-	cd "${srcdir}/${pkgname}-${pkgver}"
-	make DESTDIR="${pkgdir}/" install
-}

Copied: rlog/repos/community-i686/PKGBUILD (from rev 115240, rlog/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2014-07-07 02:42:41 UTC (rev 115241)
@@ -0,0 +1,29 @@
+# $Id$
+# Contributor: Jaroslaw Swierczynski <swiergot at aur.archlinux.org>
+# Contributor: Sven Kauber <celeon at gmail.com>
+# Maintainer: Daniel J Griffiths <ghost1227 at archlinux.us>
+
+pkgname=rlog
+pkgver=1.4
+pkgrel=5
+pkgdesc="A flexible message logging facility for C++ programs and libraries"
+arch=('i686' 'x86_64')
+url="http://www.arg0.net/rlog"
+license=('LGPL')
+depends=('gcc-libs')
+source=(http://rlog.googlecode.com/files/${pkgname}-${pkgver}.tar.gz \
+	${pkgname}-section.patch)
+md5sums=('c29f74e0f50d66b20312d049b683ff82'
+         '69644989e07ceb5c265dfc0c6f770810')
+
+build() {
+	cd "${srcdir}/${pkgname}-${pkgver}"
+	patch -Np1 -i "${srcdir}/${pkgname}-section.patch"
+	./configure --prefix=/usr
+	make
+}
+
+package() {
+	cd "${srcdir}/${pkgname}-${pkgver}"
+	make DESTDIR="${pkgdir}/" install
+}

Deleted: community-i686/rlog-section.patch
===================================================================
--- community-i686/rlog-section.patch	2014-07-07 02:41:55 UTC (rev 115240)
+++ community-i686/rlog-section.patch	2014-07-07 02:42:41 UTC (rev 115241)
@@ -1,74 +0,0 @@
-diff -ruN rlog-1.4.orig/rlog/common.h rlog-1.4/rlog/common.h
---- rlog-1.4.orig/rlog/common.h	2008-06-15 07:49:52.000000000 +0200
-+++ rlog-1.4/rlog/common.h	2008-06-23 19:29:16.000000000 +0200
-@@ -52,7 +52,6 @@
- 
- # define PRINTF(FMT,X) __attribute__ (( __format__ ( __printf__, FMT, X)))
- # define HAVE_PRINTF_ATTR 1
--# define RLOG_SECTION __attribute__ (( section("RLOG_DATA") ))
- 
- #if __GNUC__ >= 3
- # define expect(foo, bar) __builtin_expect((foo),bar)
-@@ -77,7 +76,6 @@
- */
- # define PRINTF(FMT,X)
- # define HAVE_PRINTF_ATTR 0
--# define RLOG_SECTION 
- 
- /*!
- */
-diff -ruN rlog-1.4.orig/rlog/common.h.in rlog-1.4/rlog/common.h.in
---- rlog-1.4.orig/rlog/common.h.in	2008-06-15 05:10:13.000000000 +0200
-+++ rlog-1.4/rlog/common.h.in	2008-06-23 19:28:28.000000000 +0200
-@@ -52,7 +52,6 @@
- 
- # define PRINTF(FMT,X) __attribute__ (( __format__ ( __printf__, FMT, X)))
- # define HAVE_PRINTF_ATTR 1
--# define RLOG_SECTION __attribute__ (( section("RLOG_DATA") ))
- 
- #if __GNUC__ >= 3
- # define expect(foo, bar) __builtin_expect((foo),bar)
-@@ -77,7 +76,6 @@
- */
- # define PRINTF(FMT,X)
- # define HAVE_PRINTF_ATTR 0
--# define RLOG_SECTION 
- 
- /*!
- */
-diff -ruN rlog-1.4.orig/rlog/rlog-c99.h rlog-1.4/rlog/rlog-c99.h
---- rlog-1.4.orig/rlog/rlog-c99.h	2008-06-15 05:56:57.000000000 +0200
-+++ rlog-1.4/rlog/rlog-c99.h	2008-06-23 19:28:37.000000000 +0200
-@@ -22,7 +22,7 @@
-   @internal
- */
- #define _rMessageDef(ID, COMPONENT) \
--  static rlog::PublishLoc ID RLOG_SECTION = {& ID ## _enabled, \
-+  static rlog::PublishLoc ID = {& ID ## _enabled, \
-       &rlog::RLog_Register, 0, STR(COMPONENT), __FILE__, \
-       __FUNCTION__, __LINE__, 0};
- 
-diff -ruN rlog-1.4.orig/rlog/rlog-novariadic.h rlog-1.4/rlog/rlog-novariadic.h
---- rlog-1.4.orig/rlog/rlog-novariadic.h	2008-06-15 05:10:13.000000000 +0200
-+++ rlog-1.4/rlog/rlog-novariadic.h	2008-06-23 19:28:45.000000000 +0200
-@@ -35,7 +35,7 @@
- 
- #define _rMessageDef(ID, COMPONENT) \
-   static bool ID ## _enabled = true; \
--  static rlog::PublishLoc ID RLOG_SECTION = {& ID ## _enabled, \
-+  static rlog::PublishLoc ID = {& ID ## _enabled, \
-       &rlog::RLog_Register, 0, STR(COMPONENT), __FILE__, \
-       __FUNCTION__, __LINE__, 0}
- 
-diff -ruN rlog-1.4.orig/rlog/rlog-prec99.h rlog-1.4/rlog/rlog-prec99.h
---- rlog-1.4.orig/rlog/rlog-prec99.h	2008-06-15 05:59:05.000000000 +0200
-+++ rlog-1.4/rlog/rlog-prec99.h	2008-06-23 19:28:06.000000000 +0200
-@@ -18,7 +18,7 @@
- 
- #define _rMessageDef(ID, COMPONENT) \
-   static bool ID ## _enabled = true; \
--  static rlog::PublishLoc ID RLOG_SECTION = {& ID ## _enabled, \
-+  static rlog::PublishLoc ID = {& ID ## _enabled, \
-       &rlog::RLog_Register, 0, STR(COMPONENT), __FILE__, \
-       __FUNCTION__, __LINE__, 0};
- 

Copied: rlog/repos/community-i686/rlog-section.patch (from rev 115240, rlog/trunk/rlog-section.patch)
===================================================================
--- community-i686/rlog-section.patch	                        (rev 0)
+++ community-i686/rlog-section.patch	2014-07-07 02:42:41 UTC (rev 115241)
@@ -0,0 +1,74 @@
+diff -ruN rlog-1.4.orig/rlog/common.h rlog-1.4/rlog/common.h
+--- rlog-1.4.orig/rlog/common.h	2008-06-15 07:49:52.000000000 +0200
++++ rlog-1.4/rlog/common.h	2008-06-23 19:29:16.000000000 +0200
+@@ -52,7 +52,6 @@
+ 
+ # define PRINTF(FMT,X) __attribute__ (( __format__ ( __printf__, FMT, X)))
+ # define HAVE_PRINTF_ATTR 1
+-# define RLOG_SECTION __attribute__ (( section("RLOG_DATA") ))
+ 
+ #if __GNUC__ >= 3
+ # define expect(foo, bar) __builtin_expect((foo),bar)
+@@ -77,7 +76,6 @@
+ */
+ # define PRINTF(FMT,X)
+ # define HAVE_PRINTF_ATTR 0
+-# define RLOG_SECTION 
+ 
+ /*!
+ */
+diff -ruN rlog-1.4.orig/rlog/common.h.in rlog-1.4/rlog/common.h.in
+--- rlog-1.4.orig/rlog/common.h.in	2008-06-15 05:10:13.000000000 +0200
++++ rlog-1.4/rlog/common.h.in	2008-06-23 19:28:28.000000000 +0200
+@@ -52,7 +52,6 @@
+ 
+ # define PRINTF(FMT,X) __attribute__ (( __format__ ( __printf__, FMT, X)))
+ # define HAVE_PRINTF_ATTR 1
+-# define RLOG_SECTION __attribute__ (( section("RLOG_DATA") ))
+ 
+ #if __GNUC__ >= 3
+ # define expect(foo, bar) __builtin_expect((foo),bar)
+@@ -77,7 +76,6 @@
+ */
+ # define PRINTF(FMT,X)
+ # define HAVE_PRINTF_ATTR 0
+-# define RLOG_SECTION 
+ 
+ /*!
+ */
+diff -ruN rlog-1.4.orig/rlog/rlog-c99.h rlog-1.4/rlog/rlog-c99.h
+--- rlog-1.4.orig/rlog/rlog-c99.h	2008-06-15 05:56:57.000000000 +0200
++++ rlog-1.4/rlog/rlog-c99.h	2008-06-23 19:28:37.000000000 +0200
+@@ -22,7 +22,7 @@
+   @internal
+ */
+ #define _rMessageDef(ID, COMPONENT) \
+-  static rlog::PublishLoc ID RLOG_SECTION = {& ID ## _enabled, \
++  static rlog::PublishLoc ID = {& ID ## _enabled, \
+       &rlog::RLog_Register, 0, STR(COMPONENT), __FILE__, \
+       __FUNCTION__, __LINE__, 0};
+ 
+diff -ruN rlog-1.4.orig/rlog/rlog-novariadic.h rlog-1.4/rlog/rlog-novariadic.h
+--- rlog-1.4.orig/rlog/rlog-novariadic.h	2008-06-15 05:10:13.000000000 +0200
++++ rlog-1.4/rlog/rlog-novariadic.h	2008-06-23 19:28:45.000000000 +0200
+@@ -35,7 +35,7 @@
+ 
+ #define _rMessageDef(ID, COMPONENT) \
+   static bool ID ## _enabled = true; \
+-  static rlog::PublishLoc ID RLOG_SECTION = {& ID ## _enabled, \
++  static rlog::PublishLoc ID = {& ID ## _enabled, \
+       &rlog::RLog_Register, 0, STR(COMPONENT), __FILE__, \
+       __FUNCTION__, __LINE__, 0}
+ 
+diff -ruN rlog-1.4.orig/rlog/rlog-prec99.h rlog-1.4/rlog/rlog-prec99.h
+--- rlog-1.4.orig/rlog/rlog-prec99.h	2008-06-15 05:59:05.000000000 +0200
++++ rlog-1.4/rlog/rlog-prec99.h	2008-06-23 19:28:06.000000000 +0200
+@@ -18,7 +18,7 @@
+ 
+ #define _rMessageDef(ID, COMPONENT) \
+   static bool ID ## _enabled = true; \
+-  static rlog::PublishLoc ID RLOG_SECTION = {& ID ## _enabled, \
++  static rlog::PublishLoc ID = {& ID ## _enabled, \
+       &rlog::RLog_Register, 0, STR(COMPONENT), __FILE__, \
+       __FUNCTION__, __LINE__, 0};
+ 

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2014-07-07 02:41:55 UTC (rev 115240)
+++ community-x86_64/PKGBUILD	2014-07-07 02:42:41 UTC (rev 115241)
@@ -1,29 +0,0 @@
-# $Id$
-# Contributor: Jaroslaw Swierczynski <swiergot at aur.archlinux.org>
-# Contributor: Sven Kauber <celeon at gmail.com>
-# Maintainer: Daniel J Griffiths <ghost1227 at archlinux.us>
-
-pkgname=rlog
-pkgver=1.4
-pkgrel=4
-pkgdesc="A flexible message logging facility for C++ programs and libraries"
-arch=('i686' 'x86_64')
-url="http://www.arg0.net/rlog"
-license=('LGPL')
-depends=('gcc-libs')
-source=(http://rlog.googlecode.com/files/${pkgname}-${pkgver}.tar.gz \
-	${pkgname}-section.patch)
-md5sums=('c29f74e0f50d66b20312d049b683ff82'
-         '69644989e07ceb5c265dfc0c6f770810')
-
-build() {
-	cd "${srcdir}/${pkgname}-${pkgver}"
-	patch -Np1 -i "${srcdir}/${pkgname}-section.patch"
-	./configure --prefix=/usr
-	make
-}
-
-package() {
-	cd "${srcdir}/${pkgname}-${pkgver}"
-	make DESTDIR="${pkgdir}/" install
-}

Copied: rlog/repos/community-x86_64/PKGBUILD (from rev 115240, rlog/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2014-07-07 02:42:41 UTC (rev 115241)
@@ -0,0 +1,29 @@
+# $Id$
+# Contributor: Jaroslaw Swierczynski <swiergot at aur.archlinux.org>
+# Contributor: Sven Kauber <celeon at gmail.com>
+# Maintainer: Daniel J Griffiths <ghost1227 at archlinux.us>
+
+pkgname=rlog
+pkgver=1.4
+pkgrel=5
+pkgdesc="A flexible message logging facility for C++ programs and libraries"
+arch=('i686' 'x86_64')
+url="http://www.arg0.net/rlog"
+license=('LGPL')
+depends=('gcc-libs')
+source=(http://rlog.googlecode.com/files/${pkgname}-${pkgver}.tar.gz \
+	${pkgname}-section.patch)
+md5sums=('c29f74e0f50d66b20312d049b683ff82'
+         '69644989e07ceb5c265dfc0c6f770810')
+
+build() {
+	cd "${srcdir}/${pkgname}-${pkgver}"
+	patch -Np1 -i "${srcdir}/${pkgname}-section.patch"
+	./configure --prefix=/usr
+	make
+}
+
+package() {
+	cd "${srcdir}/${pkgname}-${pkgver}"
+	make DESTDIR="${pkgdir}/" install
+}

Deleted: community-x86_64/rlog-section.patch
===================================================================
--- community-x86_64/rlog-section.patch	2014-07-07 02:41:55 UTC (rev 115240)
+++ community-x86_64/rlog-section.patch	2014-07-07 02:42:41 UTC (rev 115241)
@@ -1,74 +0,0 @@
-diff -ruN rlog-1.4.orig/rlog/common.h rlog-1.4/rlog/common.h
---- rlog-1.4.orig/rlog/common.h	2008-06-15 07:49:52.000000000 +0200
-+++ rlog-1.4/rlog/common.h	2008-06-23 19:29:16.000000000 +0200
-@@ -52,7 +52,6 @@
- 
- # define PRINTF(FMT,X) __attribute__ (( __format__ ( __printf__, FMT, X)))
- # define HAVE_PRINTF_ATTR 1
--# define RLOG_SECTION __attribute__ (( section("RLOG_DATA") ))
- 
- #if __GNUC__ >= 3
- # define expect(foo, bar) __builtin_expect((foo),bar)
-@@ -77,7 +76,6 @@
- */
- # define PRINTF(FMT,X)
- # define HAVE_PRINTF_ATTR 0
--# define RLOG_SECTION 
- 
- /*!
- */
-diff -ruN rlog-1.4.orig/rlog/common.h.in rlog-1.4/rlog/common.h.in
---- rlog-1.4.orig/rlog/common.h.in	2008-06-15 05:10:13.000000000 +0200
-+++ rlog-1.4/rlog/common.h.in	2008-06-23 19:28:28.000000000 +0200
-@@ -52,7 +52,6 @@
- 
- # define PRINTF(FMT,X) __attribute__ (( __format__ ( __printf__, FMT, X)))
- # define HAVE_PRINTF_ATTR 1
--# define RLOG_SECTION __attribute__ (( section("RLOG_DATA") ))
- 
- #if __GNUC__ >= 3
- # define expect(foo, bar) __builtin_expect((foo),bar)
-@@ -77,7 +76,6 @@
- */
- # define PRINTF(FMT,X)
- # define HAVE_PRINTF_ATTR 0
--# define RLOG_SECTION 
- 
- /*!
- */
-diff -ruN rlog-1.4.orig/rlog/rlog-c99.h rlog-1.4/rlog/rlog-c99.h
---- rlog-1.4.orig/rlog/rlog-c99.h	2008-06-15 05:56:57.000000000 +0200
-+++ rlog-1.4/rlog/rlog-c99.h	2008-06-23 19:28:37.000000000 +0200
-@@ -22,7 +22,7 @@
-   @internal
- */
- #define _rMessageDef(ID, COMPONENT) \
--  static rlog::PublishLoc ID RLOG_SECTION = {& ID ## _enabled, \
-+  static rlog::PublishLoc ID = {& ID ## _enabled, \
-       &rlog::RLog_Register, 0, STR(COMPONENT), __FILE__, \
-       __FUNCTION__, __LINE__, 0};
- 
-diff -ruN rlog-1.4.orig/rlog/rlog-novariadic.h rlog-1.4/rlog/rlog-novariadic.h
---- rlog-1.4.orig/rlog/rlog-novariadic.h	2008-06-15 05:10:13.000000000 +0200
-+++ rlog-1.4/rlog/rlog-novariadic.h	2008-06-23 19:28:45.000000000 +0200
-@@ -35,7 +35,7 @@
- 
- #define _rMessageDef(ID, COMPONENT) \
-   static bool ID ## _enabled = true; \
--  static rlog::PublishLoc ID RLOG_SECTION = {& ID ## _enabled, \
-+  static rlog::PublishLoc ID = {& ID ## _enabled, \
-       &rlog::RLog_Register, 0, STR(COMPONENT), __FILE__, \
-       __FUNCTION__, __LINE__, 0}
- 
-diff -ruN rlog-1.4.orig/rlog/rlog-prec99.h rlog-1.4/rlog/rlog-prec99.h
---- rlog-1.4.orig/rlog/rlog-prec99.h	2008-06-15 05:59:05.000000000 +0200
-+++ rlog-1.4/rlog/rlog-prec99.h	2008-06-23 19:28:06.000000000 +0200
-@@ -18,7 +18,7 @@
- 
- #define _rMessageDef(ID, COMPONENT) \
-   static bool ID ## _enabled = true; \
--  static rlog::PublishLoc ID RLOG_SECTION = {& ID ## _enabled, \
-+  static rlog::PublishLoc ID = {& ID ## _enabled, \
-       &rlog::RLog_Register, 0, STR(COMPONENT), __FILE__, \
-       __FUNCTION__, __LINE__, 0};
- 

Copied: rlog/repos/community-x86_64/rlog-section.patch (from rev 115240, rlog/trunk/rlog-section.patch)
===================================================================
--- community-x86_64/rlog-section.patch	                        (rev 0)
+++ community-x86_64/rlog-section.patch	2014-07-07 02:42:41 UTC (rev 115241)
@@ -0,0 +1,74 @@
+diff -ruN rlog-1.4.orig/rlog/common.h rlog-1.4/rlog/common.h
+--- rlog-1.4.orig/rlog/common.h	2008-06-15 07:49:52.000000000 +0200
++++ rlog-1.4/rlog/common.h	2008-06-23 19:29:16.000000000 +0200
+@@ -52,7 +52,6 @@
+ 
+ # define PRINTF(FMT,X) __attribute__ (( __format__ ( __printf__, FMT, X)))
+ # define HAVE_PRINTF_ATTR 1
+-# define RLOG_SECTION __attribute__ (( section("RLOG_DATA") ))
+ 
+ #if __GNUC__ >= 3
+ # define expect(foo, bar) __builtin_expect((foo),bar)
+@@ -77,7 +76,6 @@
+ */
+ # define PRINTF(FMT,X)
+ # define HAVE_PRINTF_ATTR 0
+-# define RLOG_SECTION 
+ 
+ /*!
+ */
+diff -ruN rlog-1.4.orig/rlog/common.h.in rlog-1.4/rlog/common.h.in
+--- rlog-1.4.orig/rlog/common.h.in	2008-06-15 05:10:13.000000000 +0200
++++ rlog-1.4/rlog/common.h.in	2008-06-23 19:28:28.000000000 +0200
+@@ -52,7 +52,6 @@
+ 
+ # define PRINTF(FMT,X) __attribute__ (( __format__ ( __printf__, FMT, X)))
+ # define HAVE_PRINTF_ATTR 1
+-# define RLOG_SECTION __attribute__ (( section("RLOG_DATA") ))
+ 
+ #if __GNUC__ >= 3
+ # define expect(foo, bar) __builtin_expect((foo),bar)
+@@ -77,7 +76,6 @@
+ */
+ # define PRINTF(FMT,X)
+ # define HAVE_PRINTF_ATTR 0
+-# define RLOG_SECTION 
+ 
+ /*!
+ */
+diff -ruN rlog-1.4.orig/rlog/rlog-c99.h rlog-1.4/rlog/rlog-c99.h
+--- rlog-1.4.orig/rlog/rlog-c99.h	2008-06-15 05:56:57.000000000 +0200
++++ rlog-1.4/rlog/rlog-c99.h	2008-06-23 19:28:37.000000000 +0200
+@@ -22,7 +22,7 @@
+   @internal
+ */
+ #define _rMessageDef(ID, COMPONENT) \
+-  static rlog::PublishLoc ID RLOG_SECTION = {& ID ## _enabled, \
++  static rlog::PublishLoc ID = {& ID ## _enabled, \
+       &rlog::RLog_Register, 0, STR(COMPONENT), __FILE__, \
+       __FUNCTION__, __LINE__, 0};
+ 
+diff -ruN rlog-1.4.orig/rlog/rlog-novariadic.h rlog-1.4/rlog/rlog-novariadic.h
+--- rlog-1.4.orig/rlog/rlog-novariadic.h	2008-06-15 05:10:13.000000000 +0200
++++ rlog-1.4/rlog/rlog-novariadic.h	2008-06-23 19:28:45.000000000 +0200
+@@ -35,7 +35,7 @@
+ 
+ #define _rMessageDef(ID, COMPONENT) \
+   static bool ID ## _enabled = true; \
+-  static rlog::PublishLoc ID RLOG_SECTION = {& ID ## _enabled, \
++  static rlog::PublishLoc ID = {& ID ## _enabled, \
+       &rlog::RLog_Register, 0, STR(COMPONENT), __FILE__, \
+       __FUNCTION__, __LINE__, 0}
+ 
+diff -ruN rlog-1.4.orig/rlog/rlog-prec99.h rlog-1.4/rlog/rlog-prec99.h
+--- rlog-1.4.orig/rlog/rlog-prec99.h	2008-06-15 05:59:05.000000000 +0200
++++ rlog-1.4/rlog/rlog-prec99.h	2008-06-23 19:28:06.000000000 +0200
+@@ -18,7 +18,7 @@
+ 
+ #define _rMessageDef(ID, COMPONENT) \
+   static bool ID ## _enabled = true; \
+-  static rlog::PublishLoc ID RLOG_SECTION = {& ID ## _enabled, \
++  static rlog::PublishLoc ID = {& ID ## _enabled, \
+       &rlog::RLog_Register, 0, STR(COMPONENT), __FILE__, \
+       __FUNCTION__, __LINE__, 0};
+ 




More information about the arch-commits mailing list