~britco/nginx/nginx

« back to all changes in this revision

Viewing changes to auto/cc/name

  • Committer: Package Import Robot
  • Author(s): Cyril Lavier, Cyril Lavier, Kartik Mistry
  • Date: 2012-03-18 09:31:19 UTC
  • mfrom: (4.2.46 sid)
  • Revision ID: package-import@ubuntu.com-20120318093119-vebmqxwdkfk52yjr
Tags: 1.1.17-2
[Cyril Lavier]
* debian/control:
  + Added build dependency to dpkg-dev (>= 1.15.7). (Closes: #664212)
* debian/patches/perl-use-dpkg-buildflags.patch:
  + Added patch to harden flags for perl module (Thanks to Simon Ruderich
    for the patch). (Closes: #664090)

[Kartik Mistry]
* Set urgency due to fix for security and RC bugs with 1.17.1-1 upload.

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
    echo " + using Borland C++ compiler"
65
65
 
66
66
else
 
67
if `$CC -V 2>&1 | grep '^Intel(R) C' >/dev/null 2>&1`; then
 
68
    NGX_CC_NAME=icc
 
69
    echo " + using Intel C++ compiler"
 
70
 
 
71
else
67
72
if `$CC -v 2>&1 | grep 'gcc version' >/dev/null 2>&1`; then
68
73
    NGX_CC_NAME=gcc
69
74
    echo " + using GNU C compiler"
70
75
 
71
76
else
72
 
if `$CC -V 2>&1 | grep '^Intel(R) C' >/dev/null 2>&1`; then
73
 
    NGX_CC_NAME=icc
74
 
    echo " + using Intel C++ compiler"
75
 
 
76
 
else
77
77
if `$CC -V 2>&1 | grep 'Sun C' >/dev/null 2>&1`; then
78
78
    NGX_CC_NAME=sunc
79
79
    echo " + using Sun C compiler"