summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOssama Othman <ossama-othman@users.noreply.github.com>2000-04-17 23:37:53 +0000
committerOssama Othman <ossama-othman@users.noreply.github.com>2000-04-17 23:37:53 +0000
commit01da872edbc9ede480aa00bd26e5d4f1c858545b (patch)
tree3c5bea31e565096740b4dffb2d8b35e8733ab5dd
parentdcb4b0092e583cc2ffbf48a1be82bd059b081f1a (diff)
downloadATCD-01da872edbc9ede480aa00bd26e5d4f1c858545b.tar.gz
*** empty log message ***
-rw-r--r--ChangeLog70
-rw-r--r--ChangeLogs/ChangeLog-02a70
-rw-r--r--ChangeLogs/ChangeLog-03a70
3 files changed, 210 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index c86d9baee84..973ac62644a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,73 @@
+Mon Apr 17 16:33:17 2000 Ossama Othman <ossama@uci.edu>
+
+ * acconfig.h (ACE_LACKS_ACE_OTHER, ACE_LACKS_ACE_SVCCONF,
+ ACE_LACKS_ACE_TOKEN):
+
+ Added support for these macros. They are used when enabling
+ subsetting.
+
+ * configure.in:
+
+ lseek64() and llseek() test has been moved to
+ `m4/acinclude.m4'.
+
+ Include `sys/types.h' when running the TLI/XTI tests. Some
+ platforms use typedefs such as "ulong" but such typedefs may not
+ be defined in the TLI/XTI headers.
+
+ (ACE_HAS_BROKEN_T_ERROR):
+
+ Corrected test for broken t_error(). A variable, "errmsg" was
+ being passed to the t_error() call in the test, but the variable
+ was declared as "ace_errmsg." Thanks to Roland Gigler
+ <roland@mch.pn.siemens.de> for pointing this out.
+
+ (ACE_MAJOR, ACE_MINOR, ACE_BETA):
+
+ If any of these variables is evaluates to the empty string, then
+ set it to zero. This fixes a problem that was occuring when the
+ the ACE version contained no beta number (e.g. "5.1" instead
+ "5.1.0"). Libtool didn't like the fact that one of the numbers
+ was an empty string.
+
+ * ace/Makefile.am (libACE_IPC_la_SOURCES, libACE_Other_la_SOURCES,
+ HEADER_FILES, INLINE_FILES):
+
+ Synchronized the sources associated with these Makefile
+ variables with those in the classical ACE Makefile.
+
+ * m4/acinclude.m4 (ACE_CHECK_LSEEK64):
+
+ Moved checks for lseek64() and llseek() from configure.in to
+ this file. The beginnings of a test for a 64 bit offset type
+ have also been added, but that test is currently not in use.
+
+ * m4/ace.m4 (ACE_COMPILATION_OPTIONS):
+
+ Removed check for exception support in C compiler. It didn't
+ make too much sense to check for exception support in a C
+ compiler.
+
+ Since exception support is disabled by default, make sure
+ "-fno-exceptions" is set when using g++ with the default ACE
+ exception configuration value.
+
+ * m4/compiler.m4 (ACE_SET_COMPILER_FLAGS):
+
+ Fixed typos where "$GXX" was used instead of "$CXX." "$GXX" is
+ set to yes when GNU C++ is being used, and "$CXX" is set to the
+ compiler being used (e.g. "c++"). Thanks to Rich Seibel
+ <seibel_r@ociweb.com> for pointing this out.
+
+ This also fixes a problem where "-fcheck-new" wasn't being added
+ to the C++ flags ($CXXFLAGS).
+
+ * m4/subsets.m4 (ACE_LACKS_ACE_OTHER, ACE_LACKS_ACE_SVCCONF,
+ ACE_LACKS_ACE_TOKEN):
+
+ When disabling the "Other," "SvcConf" and/or the "Token" subset,
+ then define the corresponding preprocessor macro.
+
Sat Apr 15 21:49:04 2000 Darrell Brunsch <brunsch@uci.edu>
* ace/ACE.cpp:
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index c86d9baee84..973ac62644a 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,73 @@
+Mon Apr 17 16:33:17 2000 Ossama Othman <ossama@uci.edu>
+
+ * acconfig.h (ACE_LACKS_ACE_OTHER, ACE_LACKS_ACE_SVCCONF,
+ ACE_LACKS_ACE_TOKEN):
+
+ Added support for these macros. They are used when enabling
+ subsetting.
+
+ * configure.in:
+
+ lseek64() and llseek() test has been moved to
+ `m4/acinclude.m4'.
+
+ Include `sys/types.h' when running the TLI/XTI tests. Some
+ platforms use typedefs such as "ulong" but such typedefs may not
+ be defined in the TLI/XTI headers.
+
+ (ACE_HAS_BROKEN_T_ERROR):
+
+ Corrected test for broken t_error(). A variable, "errmsg" was
+ being passed to the t_error() call in the test, but the variable
+ was declared as "ace_errmsg." Thanks to Roland Gigler
+ <roland@mch.pn.siemens.de> for pointing this out.
+
+ (ACE_MAJOR, ACE_MINOR, ACE_BETA):
+
+ If any of these variables is evaluates to the empty string, then
+ set it to zero. This fixes a problem that was occuring when the
+ the ACE version contained no beta number (e.g. "5.1" instead
+ "5.1.0"). Libtool didn't like the fact that one of the numbers
+ was an empty string.
+
+ * ace/Makefile.am (libACE_IPC_la_SOURCES, libACE_Other_la_SOURCES,
+ HEADER_FILES, INLINE_FILES):
+
+ Synchronized the sources associated with these Makefile
+ variables with those in the classical ACE Makefile.
+
+ * m4/acinclude.m4 (ACE_CHECK_LSEEK64):
+
+ Moved checks for lseek64() and llseek() from configure.in to
+ this file. The beginnings of a test for a 64 bit offset type
+ have also been added, but that test is currently not in use.
+
+ * m4/ace.m4 (ACE_COMPILATION_OPTIONS):
+
+ Removed check for exception support in C compiler. It didn't
+ make too much sense to check for exception support in a C
+ compiler.
+
+ Since exception support is disabled by default, make sure
+ "-fno-exceptions" is set when using g++ with the default ACE
+ exception configuration value.
+
+ * m4/compiler.m4 (ACE_SET_COMPILER_FLAGS):
+
+ Fixed typos where "$GXX" was used instead of "$CXX." "$GXX" is
+ set to yes when GNU C++ is being used, and "$CXX" is set to the
+ compiler being used (e.g. "c++"). Thanks to Rich Seibel
+ <seibel_r@ociweb.com> for pointing this out.
+
+ This also fixes a problem where "-fcheck-new" wasn't being added
+ to the C++ flags ($CXXFLAGS).
+
+ * m4/subsets.m4 (ACE_LACKS_ACE_OTHER, ACE_LACKS_ACE_SVCCONF,
+ ACE_LACKS_ACE_TOKEN):
+
+ When disabling the "Other," "SvcConf" and/or the "Token" subset,
+ then define the corresponding preprocessor macro.
+
Sat Apr 15 21:49:04 2000 Darrell Brunsch <brunsch@uci.edu>
* ace/ACE.cpp:
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index c86d9baee84..973ac62644a 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,73 @@
+Mon Apr 17 16:33:17 2000 Ossama Othman <ossama@uci.edu>
+
+ * acconfig.h (ACE_LACKS_ACE_OTHER, ACE_LACKS_ACE_SVCCONF,
+ ACE_LACKS_ACE_TOKEN):
+
+ Added support for these macros. They are used when enabling
+ subsetting.
+
+ * configure.in:
+
+ lseek64() and llseek() test has been moved to
+ `m4/acinclude.m4'.
+
+ Include `sys/types.h' when running the TLI/XTI tests. Some
+ platforms use typedefs such as "ulong" but such typedefs may not
+ be defined in the TLI/XTI headers.
+
+ (ACE_HAS_BROKEN_T_ERROR):
+
+ Corrected test for broken t_error(). A variable, "errmsg" was
+ being passed to the t_error() call in the test, but the variable
+ was declared as "ace_errmsg." Thanks to Roland Gigler
+ <roland@mch.pn.siemens.de> for pointing this out.
+
+ (ACE_MAJOR, ACE_MINOR, ACE_BETA):
+
+ If any of these variables is evaluates to the empty string, then
+ set it to zero. This fixes a problem that was occuring when the
+ the ACE version contained no beta number (e.g. "5.1" instead
+ "5.1.0"). Libtool didn't like the fact that one of the numbers
+ was an empty string.
+
+ * ace/Makefile.am (libACE_IPC_la_SOURCES, libACE_Other_la_SOURCES,
+ HEADER_FILES, INLINE_FILES):
+
+ Synchronized the sources associated with these Makefile
+ variables with those in the classical ACE Makefile.
+
+ * m4/acinclude.m4 (ACE_CHECK_LSEEK64):
+
+ Moved checks for lseek64() and llseek() from configure.in to
+ this file. The beginnings of a test for a 64 bit offset type
+ have also been added, but that test is currently not in use.
+
+ * m4/ace.m4 (ACE_COMPILATION_OPTIONS):
+
+ Removed check for exception support in C compiler. It didn't
+ make too much sense to check for exception support in a C
+ compiler.
+
+ Since exception support is disabled by default, make sure
+ "-fno-exceptions" is set when using g++ with the default ACE
+ exception configuration value.
+
+ * m4/compiler.m4 (ACE_SET_COMPILER_FLAGS):
+
+ Fixed typos where "$GXX" was used instead of "$CXX." "$GXX" is
+ set to yes when GNU C++ is being used, and "$CXX" is set to the
+ compiler being used (e.g. "c++"). Thanks to Rich Seibel
+ <seibel_r@ociweb.com> for pointing this out.
+
+ This also fixes a problem where "-fcheck-new" wasn't being added
+ to the C++ flags ($CXXFLAGS).
+
+ * m4/subsets.m4 (ACE_LACKS_ACE_OTHER, ACE_LACKS_ACE_SVCCONF,
+ ACE_LACKS_ACE_TOKEN):
+
+ When disabling the "Other," "SvcConf" and/or the "Token" subset,
+ then define the corresponding preprocessor macro.
+
Sat Apr 15 21:49:04 2000 Darrell Brunsch <brunsch@uci.edu>
* ace/ACE.cpp: