[Xfce4-commits] r25689 - in libxfce4util/trunk: . libxfce4util
Benedikt Meurer
benny at xfce.org
Wed May 9 19:15:18 CEST 2007
Author: benny
Date: 2007-05-09 17:15:17 +0000 (Wed, 09 May 2007)
New Revision: 25689
Modified:
libxfce4util/trunk/ChangeLog
libxfce4util/trunk/libxfce4util/debug.h
Log:
2007-05-09 Benedikt Meurer <benny at xfce.org>
* libxfce4util/debug.h: Add support for function names in debug
messages on Solarils. Bug #3090.
Modified: libxfce4util/trunk/ChangeLog
===================================================================
--- libxfce4util/trunk/ChangeLog 2007-05-08 17:17:37 UTC (rev 25688)
+++ libxfce4util/trunk/ChangeLog 2007-05-09 17:15:17 UTC (rev 25689)
@@ -1,8 +1,13 @@
-2007-05-05 Brian Tarricone <bjt23 at cornell.edu>
+2007-05-09 Benedikt Meurer <benny at xfce.org>
- * configure.in.in: Bump version to 4.5.0, otherwise 4.4.1
- won't build against trunk!
+ * libxfce4util/debug.h: Add support for function names in debug
+ messages on Solarils. Bug #3090.
+2007-05-05 Brian Tarricone <bjt23 at cornell.edu>
+
+ * configure.in.in: Bump version to 4.5.0, otherwise 4.4.1
+ won't build against trunk!
+
2007-02-12 Benedikt Meurer <benny at xfce.org>
* libxfce4util/xfce-rc-config.c, libxfce4util/xfce-rc.c,
Modified: libxfce4util/trunk/libxfce4util/debug.h
===================================================================
--- libxfce4util/trunk/libxfce4util/debug.h 2007-05-08 17:17:37 UTC (rev 25688)
+++ libxfce4util/trunk/libxfce4util/debug.h 2007-05-09 17:15:17 UTC (rev 25689)
@@ -37,6 +37,8 @@
#define __DBG_FUNC__ __func__
#elif defined(__GNUC__) && __GNUC__ >= 3
#define __DBG_FUNC__ __FUNCTION__
+#elif defined(__SVR4) && defined(__sun)
+#define __DBG_FUNC__ __func__
#else
#define __DBG_FUNC__ "??"
#endif
More information about the Xfce4-commits
mailing list