Rahul Kohli wrote:
Hi ,

Where can i find httpd.exp for Apache 2.0.43 (AIX 4.3).

Install Apache then look in modules/httpd.exp in the install path; there will also be apr.exp and aprutil.exp in the lib directory.


Note that the usual way to build modules on AIX with Apache 2.0 is to use run-time linking instead of using something like httpd.exp. See what apxs does. But the exp files used to export symbols from httpd, libapr, and libaprutil are provided. Unfortunately, you'll run into a binary compatibility problem if you don't use run-time linking since libapr and libaprutil changed names with 2.0.45. Modules using the recommended build procedure weren't affected.

From 2.0.43:

$ cat lib/apr.exp
#! libapr.so
...

From 2.0.45:

$ cat lib/apr.exp
#! libapr-0.so
...



Reply via email to