rse 98/09/10 00:16:36
Modified: src CHANGES Configure
Log:
Remove `-msym' option from LDFLAGS_SHLIB for the OSF1 platform, because it's
only supported under OSF1 4.0 and higher. But because our GuessOS is still
unaware of OSF1 versions and the -msym is just to optimize the DSO statup time
a little bit it's safe and best when we leave it out now.
PR: 2969
Revision Changes Path
1.1050 +6 -0 apache-1.3/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/CHANGES,v
retrieving revision 1.1049
retrieving revision 1.1050
diff -u -r1.1049 -r1.1050
--- CHANGES 1998/09/10 06:58:17 1.1049
+++ CHANGES 1998/09/10 07:16:32 1.1050
@@ -1,4 +1,10 @@
Changes with Apache 1.3.2
+
+ *) Remove `-msym' option from LDFLAGS_SHLIB for the OSF1 platform, because
+ it's only supported under OSF1 4.0 and higher. But because our GuessOS
is
+ still unaware of OSF1 versions and the -msym is just to optimize the DSO
+ statup time a little bit it's safe and best when we leave it out now.
+ [Ralf S. Engelschall] PR#2969
*) Fix the ap_log_error_old(), ap_log_unixerr() and ap_log_printf()
functions: First all three functions no longer fail on strings
containing
1.286 +1 -1 apache-1.3/src/Configure
Index: Configure
===================================================================
RCS file: /export/home/cvs/apache-1.3/src/Configure,v
retrieving revision 1.285
retrieving revision 1.286
diff -u -r1.285 -r1.286
--- Configure 1998/09/01 17:21:12 1.285
+++ Configure 1998/09/10 07:16:33 1.286
@@ -919,7 +919,7 @@
*/gcc|gcc ) CFLAGS_SHLIB="-fpic" ;;
*/cc|cc ) CFLAGS_SHLIB="" ;;
esac
- LDFLAGS_SHLIB="-shared -expect_unresolved '*' -msym -s"
+ LDFLAGS_SHLIB="-shared -expect_unresolved '*' -s"
LDFLAGS_SHLIB_EXPORT=""
;;
*-unixware2)