Makefile: Fix invocation of apxs.

New versions of apxs requires the use of -Wc and -Wl for passing flags
to the compiler and linker.

git-svn-id: https://modmellon.googlecode.com/svn/trunk/mod_mellon2@119 a716ebb1-153a-0410-b759-cfb97c6a1b53
This commit is contained in:
olavmrk 2011-03-30 07:40:23 +00:00
parent 576c273226
commit 900f46ce16
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ DISTFILES=$(SRC) \
all: mod_auth_mellon.la
mod_auth_mellon.la: $(SRC) auth_mellon.h
@APXS2@ @OPENSSL_CFLAGS@ @LASSO_CFLAGS@ @CURL_CFLAGS@ @OPENSSL_LIBS@ @LASSO_LIBS@ @CURL_LIBS@ -Wc,-Wall -Wc,-g -c $(SRC)
@APXS2@ -Wc,"@OPENSSL_CFLAGS@ @LASSO_CFLAGS@ @CURL_CFLAGS@" -Wl,"@OPENSSL_LIBS@ @LASSO_LIBS@ @CURL_LIBS@" -Wc,-Wall -Wc,-g -c $(SRC)
# Building configure (for distribution)