2004-03-01 14:00:04 -06:00
|
|
|
|
2004-09-29 11:00:49 -05:00
|
|
|
# Copyright (C) Igor Sysoev
|
2012-01-18 09:07:43 -06:00
|
|
|
# Copyright (C) Nginx, Inc.
|
2004-09-29 11:00:49 -05:00
|
|
|
|
|
|
|
|
2004-11-20 13:52:20 -06:00
|
|
|
case "$NGX_CC_NAME" in
|
2004-03-01 14:00:04 -06:00
|
|
|
|
2016-02-12 21:47:34 -06:00
|
|
|
msvc)
|
2004-11-20 13:52:20 -06:00
|
|
|
ngx_makefile=makefile.msvc
|
2005-03-22 10:02:46 -06:00
|
|
|
ngx_opt="CPU_OPT=\"$CPU_OPT\" LIBC=$LIBC"
|
2009-05-12 08:15:43 -05:00
|
|
|
ngx_pcre="PCRE=\"$PCRE\""
|
2004-03-09 13:47:07 -06:00
|
|
|
;;
|
|
|
|
|
2016-02-12 21:47:34 -06:00
|
|
|
owc)
|
2004-11-20 13:52:20 -06:00
|
|
|
ngx_makefile=makefile.owc
|
2005-03-22 10:02:46 -06:00
|
|
|
ngx_opt="CPU_OPT=\"$CPU_OPT\""
|
2009-05-12 08:15:43 -05:00
|
|
|
ngx_pcre=`echo PCRE=\"$PCRE\" | sed -e "s/\//$ngx_regex_dirsep/g"`
|
2004-03-29 11:43:58 -06:00
|
|
|
;;
|
|
|
|
|
2004-11-20 13:52:20 -06:00
|
|
|
bcc)
|
|
|
|
ngx_makefile=makefile.bcc
|
2005-03-22 10:02:46 -06:00
|
|
|
ngx_opt="-DCPU_OPT=\"$CPU_OPT\""
|
2009-05-12 08:15:43 -05:00
|
|
|
ngx_pcre=`echo \-DPCRE=\"$PCRE\" | sed -e "s/\//$ngx_regex_dirsep/g"`
|
2004-03-09 13:47:07 -06:00
|
|
|
;;
|
|
|
|
|
2013-09-04 11:48:28 -05:00
|
|
|
*)
|
|
|
|
ngx_makefile=
|
|
|
|
;;
|
2004-03-09 13:47:07 -06:00
|
|
|
|
2013-09-04 11:48:28 -05:00
|
|
|
esac
|
2004-03-09 13:47:07 -06:00
|
|
|
|
|
|
|
|
2013-09-04 11:48:28 -05:00
|
|
|
if [ -n "$ngx_makefile" ]; then
|
2004-03-29 11:43:58 -06:00
|
|
|
|
2013-09-04 11:48:28 -05:00
|
|
|
cat << END >> $NGX_MAKEFILE
|
2004-03-29 11:43:58 -06:00
|
|
|
|
2013-08-23 13:53:54 -05:00
|
|
|
`echo "$PCRE/pcre.lib: $PCRE/pcre.h $NGX_MAKEFILE" \
|
|
|
|
| sed -e "s/\//$ngx_regex_dirsep/g"`
|
2009-05-12 08:15:43 -05:00
|
|
|
\$(MAKE) -f auto/lib/pcre/$ngx_makefile $ngx_pcre $ngx_opt
|
2004-11-20 13:52:20 -06:00
|
|
|
|
2009-05-13 14:48:21 -05:00
|
|
|
`echo "$PCRE/pcre.h:" | sed -e "s/\//$ngx_regex_dirsep/g"`
|
|
|
|
\$(MAKE) -f auto/lib/pcre/$ngx_makefile $ngx_pcre pcre.h
|
|
|
|
|
2004-11-20 13:52:20 -06:00
|
|
|
END
|
2004-03-29 11:43:58 -06:00
|
|
|
|
2013-09-04 11:48:28 -05:00
|
|
|
else
|
2004-03-09 13:47:07 -06:00
|
|
|
|
2013-09-04 11:48:28 -05:00
|
|
|
cat << END >> $NGX_MAKEFILE
|
2004-11-20 13:52:20 -06:00
|
|
|
|
2007-04-18 06:09:38 -05:00
|
|
|
$PCRE/pcre.h: $PCRE/Makefile
|
|
|
|
|
|
|
|
$PCRE/Makefile: $NGX_MAKEFILE
|
2004-11-20 13:52:20 -06:00
|
|
|
cd $PCRE \\
|
2005-06-15 13:33:41 -05:00
|
|
|
&& if [ -f Makefile ]; then \$(MAKE) distclean; fi \\
|
2004-11-20 13:52:20 -06:00
|
|
|
&& CC="\$(CC)" CFLAGS="$PCRE_OPT" \\
|
2011-12-26 07:10:36 -06:00
|
|
|
./configure --disable-shared $PCRE_CONF_OPT
|
2004-11-20 13:52:20 -06:00
|
|
|
|
2007-04-18 06:09:38 -05:00
|
|
|
$PCRE/.libs/libpcre.a: $PCRE/Makefile
|
2004-11-20 13:52:20 -06:00
|
|
|
cd $PCRE \\
|
|
|
|
&& \$(MAKE) libpcre.la
|
|
|
|
|
|
|
|
END
|
|
|
|
|
2013-09-04 11:48:28 -05:00
|
|
|
fi
|