|
From: <log...@li...> - 2026-02-21 21:08:07
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Log4cpp Git repository.".
The branch, master has been updated
via 0e36286665f3488c35cd03ac0904953446a22c3b (commit)
via e8f62f2746a7b0133c6681f4d378b6f6f80849fe (commit)
via 55c2289baca6dfbd0ed77e1b21c3c6ca1841b714 (commit)
via cf79f382dca07f4e2026306f32ce5f5502fa5889 (commit)
via a4740e02dca7f6edd62449354323a019c6c5a28f (commit)
via fb8d6dd0c74cbbfd6a2a1a38176e46ea709cbfef (commit)
from 516e8ba2ec87c697d0afb2aea42d51b80095930f (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://sourceforge.net/p/log4cpp/codegit/ci/
commit 0e36286665f3488c35cd03ac0904953446a22c3b
Author: Alexander Perepelkin <san...@us...>
Date: Sat Feb 21 22:05:41 2026 +0100
Keep project version-related macros for hardcoded config header files in single file <log4cpp/config-project-version.h>
diff --git a/include/log4cpp/Portability.hh b/include/log4cpp/Portability.hh
index 7033270..1b97729 100644
--- a/include/log4cpp/Portability.hh
+++ b/include/log4cpp/Portability.hh
@@ -10,6 +10,8 @@
#ifndef _LOG4CPP_PORTABILITY_HH
#define _LOG4CPP_PORTABILITY_HH
+// <log4cpp/config.h> is auto-generated by autotools or CMake during build.
+// All other <log4cpp/config-*.h> are legacy manually edited copies and are kept for backward compatibility.
#if defined(_MSC_VER) || defined(__BORLANDC__)
#if defined(LOG4CPP_STLPORT_AND_BOOST_BUILD)
#include <log4cpp/config-win32-stlport-boost.h>
diff --git a/include/log4cpp/config-MinGW32.h b/include/log4cpp/config-MinGW32.h
index 42a5350..27520b5 100644
--- a/include/log4cpp/config-MinGW32.h
+++ b/include/log4cpp/config-MinGW32.h
@@ -9,6 +9,7 @@
#define _INCLUDE_LOG4CPP_CONFIG_MINGW32_H 1
/* manually edited from include/log4cpp/config.h */
+#include <log4cpp/config-project-version.h>
/* Define if you have the syslog function. */
/* #undef LOG4CPP_HAVE_SYSLOG */
@@ -58,16 +59,6 @@ typedef u_long in_addr_t;
/* Define if you have the `strcasecmp' function. */
/* #undef LOG4CPP_HAVE_STRCASECMP */
-/* Name of package */
-#ifndef LOG4CPP_PACKAGE
-#define LOG4CPP_PACKAGE "log4cpp"
-#endif
-
-/* Version number of package */
-#ifndef LOG4CPP_VERSION
-#define LOG4CPP_VERSION "1.0"
-#endif
-
/* define if the compiler implements namespaces */
#ifndef LOG4CPP_HAVE_NAMESPACES
#define LOG4CPP_HAVE_NAMESPACES 1
diff --git a/include/log4cpp/config-openvms.h b/include/log4cpp/config-openvms.h
index f0c17cf..d41d78d 100644
--- a/include/log4cpp/config-openvms.h
+++ b/include/log4cpp/config-openvms.h
@@ -11,6 +11,7 @@
/* include/log4cpp/config.h. Generated automatically at end of configure. */
/* include/config.h. Generated automatically by configure. */
/* include/config.h.in. Generated automatically from configure.in by autoheader. */
+#include <log4cpp/config-project-version.h>
/* Define if you have the <dlfcn.h> header file. */
#ifndef LOG4CPP_HAVE_DLFCN_H
@@ -60,15 +61,5 @@
#define LOG4CPP_HAVE_UNISTD_H 1
#endif
-/* Name of package */
-#ifndef LOG4CPP_PACKAGE
-#define LOG4CPP_PACKAGE "log4cpp"
-#endif
-
-/* Version number of package */
-#ifndef LOG4CPP_VERSION
-#define LOG4CPP_VERSION "1.0"
-#endif
-
/* _INCLUDE_LOG4CPP_CONFIG_OPENVMS_H */
#endif
diff --git a/include/log4cpp/config-project-version.h b/include/log4cpp/config-project-version.h
new file mode 100644
index 0000000..c7b0d13
--- /dev/null
+++ b/include/log4cpp/config-project-version.h
@@ -0,0 +1,45 @@
+//
+// Common part for all hardcoded config-*.h files.
+// config.h is autogenerated by either autotools or CMake.
+// config-*.h files are legacy files, kept for backward compatibility.
+//
+
+#ifndef LOG4CPP_CONFIG_PROJECT_COMMON_H
+#define LOG4CPP_CONFIG_PROJECT_COMMON_H
+
+/* Name of package */
+#ifndef LOG4CPP_PACKAGE
+#define LOG4CPP_PACKAGE "log4cpp"
+#endif
+
+/* Define to the full name of this package. */
+#ifndef LOG4CPP_PACKAGE_NAME
+#define LOG4CPP_PACKAGE_NAME "log4cpp"
+#endif
+
+/* Define to the full name and version of this package. */
+#ifndef LOG4CPP_PACKAGE_STRING
+#define LOG4CPP_PACKAGE_STRING "log4cpp 1.1.6"
+#endif
+
+/* Define to the one symbol short name of this package. */
+#ifndef LOG4CPP_PACKAGE_TARNAME
+#define LOG4CPP_PACKAGE_TARNAME "log4cpp"
+#endif
+
+/* Define to the home page for this package. */
+#ifndef LOG4CPP_PACKAGE_URL
+#define LOG4CPP_PACKAGE_URL "https://log4cpp.sourceforge.net"
+#endif
+
+/* Define to the version of this package. */
+#ifndef LOG4CPP_PACKAGE_VERSION
+#define LOG4CPP_PACKAGE_VERSION "1.1.6"
+#endif
+
+/* Version number of package */
+#ifndef LOG4CPP_VERSION
+#define LOG4CPP_VERSION "1.1.6"
+#endif
+
+#endif // LOG4CPP_CONFIG_PROJECT_COMMON_H
diff --git a/include/log4cpp/config-win32-stlport-boost.h b/include/log4cpp/config-win32-stlport-boost.h
index 8905b93..729ef5e 100644
--- a/include/log4cpp/config-win32-stlport-boost.h
+++ b/include/log4cpp/config-win32-stlport-boost.h
@@ -9,6 +9,7 @@
#define _INCLUDE_LOG4CPP_CONFIG_WIN32_H 1
/* manually edited from include/log4cpp/config.h */
+#include <log4cpp/config-project-version.h>
/* Define if you have the syslog function. */
/* #undef LOG4CPP_HAVE_SYSLOG */
@@ -60,16 +61,6 @@ typedef u_long in_addr_t;
/* Define if you have the `strcasecmp' function. */
/* #undef LOG4CPP_HAVE_STRCASECMP */
-/* Name of package */
-#ifndef LOG4CPP_PACKAGE
-#define LOG4CPP_PACKAGE "log4cpp"
-#endif
-
-/* Version number of package */
-#ifndef LOG4CPP_VERSION
-#define LOG4CPP_VERSION "1.0"
-#endif
-
/* define if the compiler implements namespaces */
#ifndef LOG4CPP_HAVE_NAMESPACES
#define LOG4CPP_HAVE_NAMESPACES 1
diff --git a/include/log4cpp/config-win32.h b/include/log4cpp/config-win32.h
index 6611824..5281ae4 100644
--- a/include/log4cpp/config-win32.h
+++ b/include/log4cpp/config-win32.h
@@ -9,6 +9,7 @@
#define _INCLUDE_LOG4CPP_CONFIG_WIN32_H 1
/* manually edited from include/log4cpp/config.h */
+#include <log4cpp/config-project-version.h>
/* Define if you have the syslog function. */
/* #undef LOG4CPP_HAVE_SYSLOG */
@@ -62,16 +63,6 @@ typedef u_long in_addr_t;
/* Define if you have the `strcasecmp' function. */
/* #undef LOG4CPP_HAVE_STRCASECMP */
-/* Name of package */
-#ifndef LOG4CPP_PACKAGE
-#define LOG4CPP_PACKAGE "log4cpp"
-#endif
-
-/* Version number of package */
-#ifndef LOG4CPP_VERSION
-#define LOG4CPP_VERSION "1.0"
-#endif
-
/* define if the compiler implements namespaces */
#ifndef LOG4CPP_HAVE_NAMESPACES
#define LOG4CPP_HAVE_NAMESPACES 1
http://sourceforge.net/p/log4cpp/codegit/ci/
commit 0e36286665f3488c35cd03ac0904953446a22c3b
Author: Alexander Perepelkin <san...@us...>
Date: Sat Feb 21 22:05:41 2026 +0100
Keep project version-related macros for hardcoded config header files in single file <log4cpp/config-project-version.h>
diff --git a/include/log4cpp/Portability.hh b/include/log4cpp/Portability.hh
index 7033270..1b97729 100644
--- a/include/log4cpp/Portability.hh
+++ b/include/log4cpp/Portability.hh
@@ -10,6 +10,8 @@
#ifndef _LOG4CPP_PORTABILITY_HH
#define _LOG4CPP_PORTABILITY_HH
+// <log4cpp/config.h> is auto-generated by autotools or CMake during build.
+// All other <log4cpp/config-*.h> are legacy manually edited copies and are kept for backward compatibility.
#if defined(_MSC_VER) || defined(__BORLANDC__)
#if defined(LOG4CPP_STLPORT_AND_BOOST_BUILD)
#include <log4cpp/config-win32-stlport-boost.h>
diff --git a/include/log4cpp/config-MinGW32.h b/include/log4cpp/config-MinGW32.h
index 42a5350..27520b5 100644
--- a/include/log4cpp/config-MinGW32.h
+++ b/include/log4cpp/config-MinGW32.h
@@ -9,6 +9,7 @@
#define _INCLUDE_LOG4CPP_CONFIG_MINGW32_H 1
/* manually edited from include/log4cpp/config.h */
+#include <log4cpp/config-project-version.h>
/* Define if you have the syslog function. */
/* #undef LOG4CPP_HAVE_SYSLOG */
@@ -58,16 +59,6 @@ typedef u_long in_addr_t;
/* Define if you have the `strcasecmp' function. */
/* #undef LOG4CPP_HAVE_STRCASECMP */
-/* Name of package */
-#ifndef LOG4CPP_PACKAGE
-#define LOG4CPP_PACKAGE "log4cpp"
-#endif
-
-/* Version number of package */
-#ifndef LOG4CPP_VERSION
-#define LOG4CPP_VERSION "1.0"
-#endif
-
/* define if the compiler implements namespaces */
#ifndef LOG4CPP_HAVE_NAMESPACES
#define LOG4CPP_HAVE_NAMESPACES 1
diff --git a/include/log4cpp/config-openvms.h b/include/log4cpp/config-openvms.h
index f0c17cf..d41d78d 100644
--- a/include/log4cpp/config-openvms.h
+++ b/include/log4cpp/config-openvms.h
@@ -11,6 +11,7 @@
/* include/log4cpp/config.h. Generated automatically at end of configure. */
/* include/config.h. Generated automatically by configure. */
/* include/config.h.in. Generated automatically from configure.in by autoheader. */
+#include <log4cpp/config-project-version.h>
/* Define if you have the <dlfcn.h> header file. */
#ifndef LOG4CPP_HAVE_DLFCN_H
@@ -60,15 +61,5 @@
#define LOG4CPP_HAVE_UNISTD_H 1
#endif
-/* Name of package */
-#ifndef LOG4CPP_PACKAGE
-#define LOG4CPP_PACKAGE "log4cpp"
-#endif
-
-/* Version number of package */
-#ifndef LOG4CPP_VERSION
-#define LOG4CPP_VERSION "1.0"
-#endif
-
/* _INCLUDE_LOG4CPP_CONFIG_OPENVMS_H */
#endif
diff --git a/include/log4cpp/config-project-version.h b/include/log4cpp/config-project-version.h
new file mode 100644
index 0000000..c7b0d13
--- /dev/null
+++ b/include/log4cpp/config-project-version.h
@@ -0,0 +1,45 @@
+//
+// Common part for all hardcoded config-*.h files.
+// config.h is autogenerated by either autotools or CMake.
+// config-*.h files are legacy files, kept for backward compatibility.
+//
+
+#ifndef LOG4CPP_CONFIG_PROJECT_COMMON_H
+#define LOG4CPP_CONFIG_PROJECT_COMMON_H
+
+/* Name of package */
+#ifndef LOG4CPP_PACKAGE
+#define LOG4CPP_PACKAGE "log4cpp"
+#endif
+
+/* Define to the full name of this package. */
+#ifndef LOG4CPP_PACKAGE_NAME
+#define LOG4CPP_PACKAGE_NAME "log4cpp"
+#endif
+
+/* Define to the full name and version of this package. */
+#ifndef LOG4CPP_PACKAGE_STRING
+#define LOG4CPP_PACKAGE_STRING "log4cpp 1.1.6"
+#endif
+
+/* Define to the one symbol short name of this package. */
+#ifndef LOG4CPP_PACKAGE_TARNAME
+#define LOG4CPP_PACKAGE_TARNAME "log4cpp"
+#endif
+
+/* Define to the home page for this package. */
+#ifndef LOG4CPP_PACKAGE_URL
+#define LOG4CPP_PACKAGE_URL "https://log4cpp.sourceforge.net"
+#endif
+
+/* Define to the version of this package. */
+#ifndef LOG4CPP_PACKAGE_VERSION
+#define LOG4CPP_PACKAGE_VERSION "1.1.6"
+#endif
+
+/* Version number of package */
+#ifndef LOG4CPP_VERSION
+#define LOG4CPP_VERSION "1.1.6"
+#endif
+
+#endif // LOG4CPP_CONFIG_PROJECT_COMMON_H
diff --git a/include/log4cpp/config-win32-stlport-boost.h b/include/log4cpp/config-win32-stlport-boost.h
index 8905b93..729ef5e 100644
--- a/include/log4cpp/config-win32-stlport-boost.h
+++ b/include/log4cpp/config-win32-stlport-boost.h
@@ -9,6 +9,7 @@
#define _INCLUDE_LOG4CPP_CONFIG_WIN32_H 1
/* manually edited from include/log4cpp/config.h */
+#include <log4cpp/config-project-version.h>
/* Define if you have the syslog function. */
/* #undef LOG4CPP_HAVE_SYSLOG */
@@ -60,16 +61,6 @@ typedef u_long in_addr_t;
/* Define if you have the `strcasecmp' function. */
/* #undef LOG4CPP_HAVE_STRCASECMP */
-/* Name of package */
-#ifndef LOG4CPP_PACKAGE
-#define LOG4CPP_PACKAGE "log4cpp"
-#endif
-
-/* Version number of package */
-#ifndef LOG4CPP_VERSION
-#define LOG4CPP_VERSION "1.0"
-#endif
-
/* define if the compiler implements namespaces */
#ifndef LOG4CPP_HAVE_NAMESPACES
#define LOG4CPP_HAVE_NAMESPACES 1
diff --git a/include/log4cpp/config-win32.h b/include/log4cpp/config-win32.h
index 6611824..5281ae4 100644
--- a/include/log4cpp/config-win32.h
+++ b/include/log4cpp/config-win32.h
@@ -9,6 +9,7 @@
#define _INCLUDE_LOG4CPP_CONFIG_WIN32_H 1
/* manually edited from include/log4cpp/config.h */
+#include <log4cpp/config-project-version.h>
/* Define if you have the syslog function. */
/* #undef LOG4CPP_HAVE_SYSLOG */
@@ -62,16 +63,6 @@ typedef u_long in_addr_t;
/* Define if you have the `strcasecmp' function. */
/* #undef LOG4CPP_HAVE_STRCASECMP */
-/* Name of package */
-#ifndef LOG4CPP_PACKAGE
-#define LOG4CPP_PACKAGE "log4cpp"
-#endif
-
-/* Version number of package */
-#ifndef LOG4CPP_VERSION
-#define LOG4CPP_VERSION "1.0"
-#endif
-
/* define if the compiler implements namespaces */
#ifndef LOG4CPP_HAVE_NAMESPACES
#define LOG4CPP_HAVE_NAMESPACES 1
http://sourceforge.net/p/log4cpp/codegit/ci/
commit 0e36286665f3488c35cd03ac0904953446a22c3b
Author: Alexander Perepelkin <san...@us...>
Date: Sat Feb 21 22:05:41 2026 +0100
Keep project version-related macros for hardcoded config header files in single file <log4cpp/config-project-version.h>
diff --git a/include/log4cpp/Portability.hh b/include/log4cpp/Portability.hh
index 7033270..1b97729 100644
--- a/include/log4cpp/Portability.hh
+++ b/include/log4cpp/Portability.hh
@@ -10,6 +10,8 @@
#ifndef _LOG4CPP_PORTABILITY_HH
#define _LOG4CPP_PORTABILITY_HH
+// <log4cpp/config.h> is auto-generated by autotools or CMake during build.
+// All other <log4cpp/config-*.h> are legacy manually edited copies and are kept for backward compatibility.
#if defined(_MSC_VER) || defined(__BORLANDC__)
#if defined(LOG4CPP_STLPORT_AND_BOOST_BUILD)
#include <log4cpp/config-win32-stlport-boost.h>
diff --git a/include/log4cpp/config-MinGW32.h b/include/log4cpp/config-MinGW32.h
index 42a5350..27520b5 100644
--- a/include/log4cpp/config-MinGW32.h
+++ b/include/log4cpp/config-MinGW32.h
@@ -9,6 +9,7 @@
#define _INCLUDE_LOG4CPP_CONFIG_MINGW32_H 1
/* manually edited from include/log4cpp/config.h */
+#include <log4cpp/config-project-version.h>
/* Define if you have the syslog function. */
/* #undef LOG4CPP_HAVE_SYSLOG */
@@ -58,16 +59,6 @@ typedef u_long in_addr_t;
/* Define if you have the `strcasecmp' function. */
/* #undef LOG4CPP_HAVE_STRCASECMP */
-/* Name of package */
-#ifndef LOG4CPP_PACKAGE
-#define LOG4CPP_PACKAGE "log4cpp"
-#endif
-
-/* Version number of package */
-#ifndef LOG4CPP_VERSION
-#define LOG4CPP_VERSION "1.0"
-#endif
-
/* define if the compiler implements namespaces */
#ifndef LOG4CPP_HAVE_NAMESPACES
#define LOG4CPP_HAVE_NAMESPACES 1
diff --git a/include/log4cpp/config-openvms.h b/include/log4cpp/config-openvms.h
index f0c17cf..d41d78d 100644
--- a/include/log4cpp/config-openvms.h
+++ b/include/log4cpp/config-openvms.h
@@ -11,6 +11,7 @@
/* include/log4cpp/config.h. Generated automatically at end of configure. */
/* include/config.h. Generated automatically by configure. */
/* include/config.h.in. Generated automatically from configure.in by autoheader. */
+#include <log4cpp/config-project-version.h>
/* Define if you have the <dlfcn.h> header file. */
#ifndef LOG4CPP_HAVE_DLFCN_H
@@ -60,15 +61,5 @@
#define LOG4CPP_HAVE_UNISTD_H 1
#endif
-/* Name of package */
-#ifndef LOG4CPP_PACKAGE
-#define LOG4CPP_PACKAGE "log4cpp"
-#endif
-
-/* Version number of package */
-#ifndef LOG4CPP_VERSION
-#define LOG4CPP_VERSION "1.0"
-#endif
-
/* _INCLUDE_LOG4CPP_CONFIG_OPENVMS_H */
#endif
diff --git a/include/log4cpp/config-project-version.h b/include/log4cpp/config-project-version.h
new file mode 100644
index 0000000..c7b0d13
--- /dev/null
+++ b/include/log4cpp/config-project-version.h
@@ -0,0 +1,45 @@
+//
+// Common part for all hardcoded config-*.h files.
+// config.h is autogenerated by either autotools or CMake.
+// config-*.h files are legacy files, kept for backward compatibility.
+//
+
+#ifndef LOG4CPP_CONFIG_PROJECT_COMMON_H
+#define LOG4CPP_CONFIG_PROJECT_COMMON_H
+
+/* Name of package */
+#ifndef LOG4CPP_PACKAGE
+#define LOG4CPP_PACKAGE "log4cpp"
+#endif
+
+/* Define to the full name of this package. */
+#ifndef LOG4CPP_PACKAGE_NAME
+#define LOG4CPP_PACKAGE_NAME "log4cpp"
+#endif
+
+/* Define to the full name and version of this package. */
+#ifndef LOG4CPP_PACKAGE_STRING
+#define LOG4CPP_PACKAGE_STRING "log4cpp 1.1.6"
+#endif
+
+/* Define to the one symbol short name of this package. */
+#ifndef LOG4CPP_PACKAGE_TARNAME
+#define LOG4CPP_PACKAGE_TARNAME "log4cpp"
... 661 lines suppressed ...
hooks/post-receive
--
Log4cpp Git repository.
|