diff options
| author | Graham.Dumpleton <devnull@localhost> | 2009-04-04 23:10:56 +0000 |
|---|---|---|
| committer | Graham.Dumpleton <devnull@localhost> | 2009-04-04 23:10:56 +0000 |
| commit | 35c00118f5ac885c83d3f44f90d4a1cb7c55e514 (patch) | |
| tree | bba7ca5034091404dce1c923a9be88843fef39a4 | |
| parent | 9650ace19e15cd141c38579d85468fe793baa02e (diff) | |
| download | mod_wsgi-2.4c2.tar.gz | |
Change version string to 2.4c2 (second release candidate). Revert change to2.4c2
add -Wl, in front of all linker flags. This means it may break with Apache
2.3 again. Need to work out why apxs has changed in Apache 2.3 rather than
working around it. May be a bug in Apache 2.3.
| -rwxr-xr-x | configure | 8 | ||||
| -rw-r--r-- | configure.ac | 10 | ||||
| -rw-r--r-- | mod_wsgi.c | 2 |
3 files changed, 10 insertions, 10 deletions
@@ -1835,10 +1835,10 @@ fi LDFLAGS="${LDFLAGS} ${LDFLAGS1} ${LDFLAGS2} ${LDFLAGS3}" LDLIBS="${LDLIBS} ${LDLIBS1} ${LDLIBS2} ${LDLIBS3}" -LDFLAGS=`echo ${LDFLAGS} | \ - sed -e "s/-Wl,\([^ ][^ ]*\)/\1/g" -e "s/\([^ ][^ ]*\)/-Wl,\1/g"` -LDLIBS=`echo ${LDLIBS} | \ - sed -e "s/-Wl,\([^ ][^ ]*\)/\1/g" -e "s/\([^ ][^ ]*\)/-Wl,\1/g"` +#LDFLAGS=`echo ${LDFLAGS} | \ +# sed -e "s/-Wl,\([[^ ]][[^ ]]*\)/\1/g" -e "s/\([[^ ]][[^ ]]*\)/-Wl,\1/g"` +#LDLIBS=`echo ${LDLIBS} | \ +# sed -e "s/-Wl,\([[^ ]][[^ ]]*\)/\1/g" -e "s/\([[^ ]][[^ ]]*\)/-Wl,\1/g"` diff --git a/configure.ac b/configure.ac index 2c46e2c..5dea0b9 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ dnl vim: set sw=4 expandtab : dnl -dnl Copyright 2007-2008 GRAHAM DUMPLETON +dnl Copyright 2007-2009 GRAHAM DUMPLETON dnl dnl Licensed under the Apache License, Version 2.0 (the "License"); dnl you may not use this file except in compliance with the License. @@ -129,10 +129,10 @@ fi LDFLAGS="${LDFLAGS} ${LDFLAGS1} ${LDFLAGS2} ${LDFLAGS3}" LDLIBS="${LDLIBS} ${LDLIBS1} ${LDLIBS2} ${LDLIBS3}" -LDFLAGS=`echo ${LDFLAGS} | \ - sed -e "s/-Wl,\([[^ ]][[^ ]]*\)/\1/g" -e "s/\([[^ ]][[^ ]]*\)/-Wl,\1/g"` -LDLIBS=`echo ${LDLIBS} | \ - sed -e "s/-Wl,\([[^ ]][[^ ]]*\)/\1/g" -e "s/\([[^ ]][[^ ]]*\)/-Wl,\1/g"` +#LDFLAGS=`echo ${LDFLAGS} | \ +# sed -e "s/-Wl,\([[^ ]][[^ ]]*\)/\1/g" -e "s/\([[^ ]][[^ ]]*\)/-Wl,\1/g"` +#LDLIBS=`echo ${LDLIBS} | \ +# sed -e "s/-Wl,\([[^ ]][[^ ]]*\)/\1/g" -e "s/\([[^ ]][[^ ]]*\)/-Wl,\1/g"` AC_SUBST(CFLAGS) AC_SUBST(LDFLAGS) @@ -246,7 +246,7 @@ static char *apr_off_t_toa(apr_pool_t *p, apr_off_t n) #define MOD_WSGI_MAJORVERSION_NUMBER 2 #define MOD_WSGI_MINORVERSION_NUMBER 4 -#define MOD_WSGI_VERSION_STRING "2.4c1" +#define MOD_WSGI_VERSION_STRING "2.4c2" #if AP_SERVER_MAJORVERSION_NUMBER < 2 module MODULE_VAR_EXPORT wsgi_module; |
