This is an automated email from the ASF dual-hosted git repository.
rmiddleton pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4cxx.git
The following commit(s) were added to refs/heads/master by this push:
new cb23499c Remove old .hw files
cb23499c is described below
commit cb23499cea0c29a4a108e6bf4fb0f3cb27f92b5f
Author: Robert Middleton <[email protected]>
AuthorDate: Wed Apr 6 18:31:19 2022 -0400
Remove old .hw files
---
src/main/include/log4cxx/log4cxx.hw | 105 ---------------------
.../include/log4cxx/private/log4cxx_private.hw | 84 -----------------
2 files changed, 189 deletions(-)
diff --git a/src/main/include/log4cxx/log4cxx.hw
b/src/main/include/log4cxx/log4cxx.hw
deleted file mode 100644
index 3bde1648..00000000
--- a/src/main/include/log4cxx/log4cxx.hw
+++ /dev/null
@@ -1,105 +0,0 @@
-/* Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#ifndef LOG4CXX_LOG4CXX_H
-#define LOG4CXX_LOG4CXX_H
-
-/* GENERATED FILE WARNING! DO NOT EDIT log4cxx.h
- *
- * Edit log4cxx.hw instead
- *
- */
-
-#define LOG4CXX_LOGCHAR_IS_UTF8 0
-#if LOG4CXX_LOGCHAR_IS_UTF8
-#define LOG4CXX_LOGCHAR_IS_WCHAR 0
-#else
-#define LOG4CXX_LOGCHAR_IS_WCHAR 1
-#endif
-#define LOG4CXX_LOGCHAR_IS_UNICHAR 0
-
-#define LOG4CXX_CHAR_API 1
-#define LOG4CXX_WCHAR_T_API 1
-#define LOG4CXX_UNICHAR_API 0
-#define LOG4CXX_CFSTRING_API 0
-
-#if defined(_MSC_VER)
-typedef __int64 log4cxx_int64_t;
-#if _MSC_VER < 1300
-#define LOG4CXX_USE_GLOBAL_SCOPE_TEMPLATE 1
-#define LOG4CXX_LOGSTREAM_ADD_NOP 1
-#endif
-#elif defined(__BORLANDC__)
-typedef __int64 log4cxx_int64_t;
-#else
-typedef long long log4cxx_int64_t;
-#endif
-
-typedef log4cxx_int64_t log4cxx_time_t;
-typedef int log4cxx_status_t;
-typedef unsigned int log4cxx_uint32_t;
-
-// definitions used when using static library
-#if defined(LOG4CXX_STATIC)
-#define LOG4CXX_EXPORT
-// definitions used when building DLL
-#elif defined(LOG4CXX)
-#define LOG4CXX_EXPORT __declspec(dllexport)
-#else
-// definitions used when using DLL
-#define LOG4CXX_EXPORT __declspec(dllimport)
-#endif
-
-
-//
-// pointer and list definition macros when building DLL using VC
-//
-#if defined(_MSC_VER) && !defined(LOG4CXX_STATIC) && defined(LOG4CXX)
-#define LOG4CXX_PTR_DEF(T) \
-template class LOG4CXX_EXPORT log4cxx::helpers::ObjectPtrT<T>; \
-typedef log4cxx::helpers::ObjectPtrT<T> T##Ptr
-#define LOG4CXX_LIST_DEF(N, T) \
-template class LOG4CXX_EXPORT std::allocator<T>; \
-template class LOG4CXX_EXPORT std::vector<T>; \
-typedef std::vector<T> N
-//
-// pointer and list definition macros when linking with DLL using VC
-//
-#elif defined(_MSC_VER) && !defined(LOG4CXX_STATIC)
- #define LOG4CXX_PTR_DEF(T)
\
- __pragma(warning(push))
\
- __pragma(warning(disable: 4231))
\
- extern template class LOG4CXX_EXPORT
log4cxx::helpers::ObjectPtrT<T>; \
- typedef log4cxx::helpers::ObjectPtrT<T> T##Ptr
\
- __pragma(warning(pop))
- #define LOG4CXX_LIST_DEF(N, T)
\
- __pragma(warning(push))
\
- __pragma(warning(disable: 4231))
\
- extern template class LOG4CXX_EXPORT std::allocator<T>; \
- extern template class LOG4CXX_EXPORT std::vector<T>; \
- typedef std::vector<T> N
\
- __pragma(warning(pop))
-//
-// pointer and list definition macros for all other cases
-//
-#else
-#define LOG4CXX_PTR_DEF(T) typedef log4cxx::helpers::ObjectPtrT<T> T##Ptr
-#define LOG4CXX_LIST_DEF(N, T) typedef std::vector<T> N
-#endif
-
-
-#endif
-
diff --git a/src/main/include/log4cxx/private/log4cxx_private.hw
b/src/main/include/log4cxx/private/log4cxx_private.hw
deleted file mode 100644
index e7c84174..00000000
--- a/src/main/include/log4cxx/private/log4cxx_private.hw
+++ /dev/null
@@ -1,84 +0,0 @@
-/* Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-
-#ifndef LOG4CXX_PRIVATE_LOG4CXX_H
-#define LOG4CXX_PRIVATE_LOG4CXX_H
-
-
-/* GENERATED FILE WARNING! DO NOT EDIT log4cxx.h
- *
- * You must modify log4cxx.hw instead.
- *
- *
- * This is the Win32 specific version of log4cxx.h.
- */
-
-#include <log4cxx/log4cxx.h>
-
-#if !defined(LOG4CXX) && !defined(LOG4CXX_TEST)
-#error "log4cxx/private/log4cxx.h should only be used within log4cxx and tests
implementation"
-#endif
-
-
-#if !defined(__BORLANDC__)
-#define LOG4CXX_RETURN_AFTER_THROW 1
-#else
-#define LOG4CXX_RETURN_AFTER_THROW 0
-#endif
-
-#if defined(_WIN32_WCE)
-#define LOG4CXX_HAS_STD_LOCALE 0
-#else
-#define LOG4CXX_HAS_STD_LOCALE 1
-#endif
-
-#define LOG4CXX_FORCE_WIDE_CONSOLE 1
-#define LOG4CXX_FORCE_BYTE_CONSOLE 0
-
-
-#if defined(_MSC_VER)
-#define LOG4CXX_MEMSET_IOS_BASE 1
-#endif
-
-#if !defined(_WIN32_WCE)
-#define LOG4CXX_HAVE_ODBC 1
-#if defined(__BORLANDC__)
-#define LOG4CXX_HAS_MBSRTOWCS 0
-#else
-#define LOG4CXX_HAS_MBSRTOWCS 1
-#endif
-#else
-#define LOG4CXX_HAVE_ODBC 0
-#define LOG4CXX_HAS_MBSRTOWCS 0
-#endif
-
-#define LOG4CXX_HAS_FWIDE 1
-#define LOG4CXX_HAS_WCSTOMBS 1
-
-#define LOG4CXX_CHARSET_UTF8 0
-#define LOG4CXX_CHARSET_ISO88591 0
-#define LOG4CXX_CHARSET_USASCII 0
-#define LOG4CXX_CHARSET_EBCDIC 0
-
-
-#define LOG4CXX_HAVE_LIBESMTP 0
-#define LOG4CXX_HAVE_SYSLOG 0
-
-#define LOG4CXX_WIN32_THREAD_FMTSPEC "0x%.8x"
-#define LOG4CXX_APR_THREAD_FMTSPEC "0x%pt"
-
-#endif