DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18627>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18627
Patch for Configure 1.463 on AIX 5.1 and Apache 1.3.27
Summary: Patch for Configure 1.463 on AIX 5.1 and Apache 1.3.27
Product: Apache httpd-1.3
Version: 1.3.27
Platform: All
OS/Version: AIX
Status: NEW
Severity: Normal
Priority: Other
Component: Build
AssignedTo: bugs@httpd.apache.org
ReportedBy: raysumpay@hotmail.com
Environment:
AIX 5.1
Apache 1.3.27
gcc version 2.9-aix51-020209
Although using Configure 1.463 from CVS helped clear up the "_nostart" errors
(AIX 5.1 ld issue) when using apxs to create a dynamic module, AIX 5.1 ld threw
up another error due to not exporting global symbols, unreferenced symbols and
symbols beginning in an underscore.
# ld -H512 -T512 -bhalt:4 -bM:SRE -bnoentry -
bI:/sys_apps/apachetest/libexec/httpd.exp -lc -o mod_expires.so mod_expires.o
ld: 0711-244 ERROR: No csects or exported symbols have been saved.
#
Below is a diff I generated that adds the -bexpall flag to the AIX 5.1 linker
(ld), which does allow the exporting of such symbols.
--- Configure.aix51 Wed Apr 2 14:04:47 2003
+++ Configure.463 Wed Apr 2 14:13:36 2003
@@ -1394,7 +1394,7 @@
esac
case $PLAT in
*-ibm-aix[45678]*)
- LDFLAGS_SHLIB="-H512 -T512 -bhalt:4 -bM:SRE -bnoentry -
bexpall"
+ LDFLAGS_SHLIB="-H512 -T512 -bhalt:4 -bM:SRE -bnoentry"
;;
*-ibm-aix*)
LDFLAGS_SHLIB="-H512 -T512 -bhalt:4 -bM:SRE -e _nostart"
Best Regards,
Rainier G. Sumpay
---------------------------------------------------------------------
To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org
For additional commands, e-mail: bugs-help@httpd.apache.org
|