Saturday, December 19, 2015

BCBS HCBO confusion sends you to server login page!

Sunday, November 29, 2015

Twitter Error

Wednesday, November 18, 2015

Estimate size of tables in Oracle


dba_segments gives better estimate than user_segments but you may not have access to dba_segments view

SELECT segment_name, segment_type, bytes/1024/1024 MB
FROM user_segments
WHERE segment_name like 'PREFIX_%';


Following query provides number of rows and columns too

SELECT col.table_name,  col.col_cnt  AS column_count,  rc.row_cnt   AS row_count,  s.size_in_MB AS table_size_in_MB
FROM  (
  /* number of columns */  SELECT upper(table_name) table_name,    COUNT(*) col_cnt
  FROM user_tab_columns /* you can change it to dba_tab_columns */  --WHERE owner = 'OWNER' /* uncomment if you are using dba_tab_columns object*/  WHERE table_name like 'PREFIX_%'  GROUP BY upper(table_name)
  ) col
JOIN  (
  /* number of rows */  SELECT table_name,    to_number(extractvalue(xmltype(dbms_xmlgen.getxml('select count(*) c from '    ||table_name)),'/ROWSET/ROW/C')) AS row_cnt
  FROM user_tables  /* you can change it to dba_tables */  WHERE (iot_type != 'IOT_OVERFLOW'  OR iot_type     IS NULL)
 -- AND owner        = 'OWNER' /* uncomment if you are using dba_tables object */
  AND  table_name like 'PREFIX_%'
  ) rc
ON upper(col.table_name) = upper(rc.table_name)
JOIN  (
  /* table size in MB */  SELECT    --owner,    table_name,    (SUM(bytes)/1024/1024) size_in_MB
  FROM    (SELECT segment_name table_name,      bytes
    FROM user_segments  /* you can change it to dba_segments */    WHERE segment_type = 'TABLE'      --and owner = 'OWNER' /* uncomment if you are using dba_segments object */
    AND segment_name like 'PREFIX_%'
    )
  GROUP BY --owner,    table_name  ) s
ON upper(col.table_name) = upper(s.table_name);

Sunday, October 18, 2015

One Plus One (bacon) GPS fix

1. Backup /system/etc/gps.conf

2. Copy this file to /system/etc/gps.conf 
This enables AGPS and SGLTE


####################################
#  LTE Positioning Profile Settings
####################################
# 0: Enable RRLP on LTE(Default)
# 1: Enable LPP_User_Plane on LTE
# 2: Enable LPP_Control_Plane
# 3: Enable both LPP_User_Plane and LPP_Control_Plane
LPP_PROFILE = 3

################################
# EXTRA SETTINGS
################################
# NMEA provider (1=Modem Processor, 0=Application Processor)
NMEA_PROVIDER=0
# Mark if it is a SGLTE target (1=SGLTE, 0=nonSGLTE)
SGLTE_TARGET=1


3. Get the nearest NTP server from here : http://www.pool.ntp.org/en/ and update it in your gps.conf

4. change permissions of /system/etc/gps.conf to RW-R--R-- (644)

5. Use GPS Status Test & Fix app to reset & download AGPS data : https://play.google.com/store/apps/details?id=com.cochibo.gpsstatus&hl=en

6. I changed 'Tmobile US LTE' APN type from default,supl,mms to
default,supl,mms,agps. For your provider the settings may be different

7. Reboot and toggle Location to "High Accuracy"

PS: If you install Greenify, Amplify profile, custom kernel, disable service, wakelock fix, underclocking, build.prop flashable zip from here location services get disabled and the fix does not work 

Wednesday, September 30, 2015

One Plus One (bacon) increase volume MOD - Low Volume fix

1. To increase volume of One Plus One copy this file to /system/etc/mixer_paths.xml and override the existing file and change permissions to RW-R--R-- (644)



If you search the file value="93" is where the values were increased.

2. Fix for low mic on call
REF: http://forum.xda-developers.com/oneplus-one/development/fix-low-mic-call-t3055661

EDIT: /system/build.prop and update the following values:
BEFORE FIX
ro.qc.sdk.audio.fluencetype=fluence
persist.audio.fluence.voicecall=true

AFTER FIX
ro.qc.sdk.audio.fluencetype=fluence
persist.audio.fluence.voicecall=true
persist.audio.fluence.voicerec=false
persist.audio.fluence.speaker=false


LowMicFix.zip and LowMicFix.prop should be in the same directory when flashing 

Saturday, September 05, 2015

GApps default apps removal script

https://drive.google.com/file/d/0Bxcg1P5wULMhTFRFS284ZGU0UUE/view?usp=sharing

Saturday, August 08, 2015

CSV output with Spring

This is a simple way to respond with CSV output in Spring. I have used Spring REST here but this can be also done with Spring MVC etc

   

 Resource layer:

@RequestMapping(value="/{id}", method= RequestMethod.GET, produces = "text/csv")
    @ResponseBody
    public ResponseEntity<String> getCsvDownload(final HttpServletResponse response, @NotNull @PathVariable("id") int id){
        response.setHeader("Content-Disposition", "attachment; filename=filename.csv");
        response.setContentType("text/csv");
        String csvResponse = applicationService.getCsv(id);
        return new ResponseEntity<>(csvResponse, HttpStatus.OK);
    }


Service layer:

    @Override
    public String getCsv(inal int id) {
      return StringUtils.join(applicationDao.getDetails(id), ",");
    }

Wednesday, June 24, 2015

Misfit accepts strap quality problems

Iris
---- (Misfit Support)
Jun --, 2:50 PM
Dear Vyas,
Thank you for your feedback. We are fully aware that the first batch of Flash sport bands have some design flaws and we are in the process of re-designing for a stronger hold. I apologize for any inconveniences. However none of the Flash accessories is available for sales at the moment yet. So for now, we will send 2 replacement Flash band to you. You will receive email confirmation soon.
Here are our videos about using Sport Band and Clasp for your reference:
Thank you for your time and effort. Have a great day!

Best regards,
---- | Misfit Support Team

Wednesday, May 13, 2015

Oracle Java on Mac

Oracle Java is installed here : /Library/Java/JavaVirtualMachines/

Thursday, February 12, 2015

CM12/AOSP based ROM GPS fix

You don't need to go back to stock to get GPS and get a GPS lock to work. Follow this (no data is lost, no flashing to stock is required:

1. Boot into the bootloader as per usual and hook up to your PC so you have fastboot access (May need drivers etc)
2. Run "fastboot devices" in command prompt to ensure your moto X is visible to your PC, if not go back to step 1.
3. Run the following 2 commands to clear your Radio/Modem cache
Code:
fastboot erase modemst1
fastboot erase modemst2
4. Reboot, and you should have working GPS.

Walmart Error message

Looks like Walmart.com uses Tomcat 7.0.42. Latest version of Tomcat today is 7.0.59. Pretty good!


Sunday, February 08, 2015

Saturday, February 07, 2015

CM12/AOSP based ROM Bluetooth fix

Toogle Bluetooth once with 5 seconds in between before actually using Bluetooth. It would connect to the device on the second attempt and stream music/audio


Saturday, January 31, 2015

CM12/AOSP based ROM - Fix for contact numbers showing up instead of contact names

You must delete your Contact Storage Cache and Data. Go to Settings, Apps, Swipe to the All tab and find "Contact Storage". Delete cache & data and wait for your contacts to sync again.

That fixes the caller name not showing (only the number) too.

Thursday, January 22, 2015

How I rooted and unlocked my 2013 Moto X

Useful Commands

Volume Up+Vol Down + Power = Recovery

adb pull source dest     -->get files to laptop

adb push source dest     -->send files to phone

adb and fastboot commands : http://lifehacker.com/the-most-useful-things-you-can-do-with-adb-and-fastboot-1590337225

    
Unlocking bootloader

This Will Erase your Data/ Factory Reset your phone
In order to install TWRP/CWM and SuperSU you need to first unlocked your boot loader. below is a link to Motorola's guide to do just that.

Click on the link below and pick your Moto X by what carrier you are with
https://motorola-global-portal.custh...15/action/auth

download the SDK and install it.
locate ware it was installed normally (C:\Program Files\Android\android-sdk)
open Command Prompt and type

Code:
CD C:\Program Files\Android\android-sdk\platform-tools
put phone into bootloader
type below commands in CMD

type

Code:
fastboot oem get_unlock_data

it should come back with something like this

(bootloader) 0A40040192024205#4C4D3556313230
(bootloader) 30373731363031303332323239#BD00
(bootloader) 8A672BA4746C2CE02328A2AC0C39F95
(bootloader) 1A3E5#1F53280002000000000000000
(bootloader) 0000000
Now we need to remove all the (bootloader) and make the key into one line

we then need to paste this into the box on the bottom of the Moto unlock page and hit the button "Can my Device be Unlocked"
if your device can be unlocked you need to accept the license agreement and then click the button to request your key. It will then email you your unlock key.

Copy your unlock key then click the link Step 3

now if you left your device connected and everything ware it was then great if not we need to put are phone back into bootloader and open a CMD and CD it to the same directory as before. 

then type 

Code:
fastboot oem unlock UNIQUE_KEY
ware Unique_key being the code you copied from your email.

now your bootloader is unlocked.

Rooting


fastboot/adb
To push a file to phone
adb push <source> <destination on phone>   

To get a file from phone
adb pull <source on phone> <destination>

To get into the phone directory system
adb shell


Install recovery
Download TWRP from http://techerrata.com/browse/twrp2/ghost
fastboot flash recovery openrecovery-twrp-2.8.4.0-ghost.img

Super User
Download and flash super SU from http://forum.xda-developers.com/showthread.php?t=1538053

Install Custom ROM
Lollipop
I tried Resurrection ROM, AICP, crDroid but all these resulted in boot loops even after following the instructions

CM 12 is unstable but works great. Obtain GPS lock on Stock then Install CM 11 + gapps and then dirty flash CM 12 + gapps
http://forum.xda-developers.com/moto-x/development/rom-cyanogenmod-12-moto-x-t2995381

Kitkat
CarbonROM unofficial is very stable and has great features
http://forum.xda-developers.com/moto-x/development/rom-t2818695

Installing Themes

I would recommend the Kitkat theme  http://forum.xda-developers.com/google-nexus-5/themes-apps/theme-herathon-t2806570

It does make the phone sluggish

References

http://www.igadgetsworld.com/moto-x-how-to-root-moto-x-running-on-android-4-4-4-step-by-step-process/
http://www.igadgetsworld.com/moto-x-unlock-moto-x-bootloader-android-4-4-4/
http://www.droidviews.com/push-pull-files-android-using-adb-commands/
http://forum.xda-developers.com/google-nexus-5/themes-apps/theme-herathon-t2806570

https://www.androidfilehost.com/?w=files&flid=21006&sort_by=date&sort_dir=DESC

apache 2.2 for Yosemite

OS X Yosemite 10.10 comes with apache 2.4 installed. If you need apache 2.2 you need to compile it from scratch.

References:
1. Download Apache source : http://www.opensource.apple.com/source/apache/
2. Download and install XCode : https://itunes.apple.com/us/app/xcode/id497799835?mt=12

Commands:
  1. sudo ln -s /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain
  2. tar xzvf ~/Downloads/httpd-2.2.24.tar.bz2
  3. ./configure --prefix=/usr/local/apache2 OR ./configure --prefix=/usr/local/apache2 --enable-mods-shared='authz_host include deflate log_config mime_magic headers setenvif proxy ssl mime vhost_alias rewrite'
  4. make
  5. make install
  6. /usr/local/apache2/bin/apachectl start


Output:


vyas:Mac vsanzgir$ cd ~/Downloads/httpd-2.2.24
vyas:httpd-2.2.24 vsanzgir$ ls -ltr
total 2232
-rw-r--r--@  1 vsanzgir  600     403 Nov 21  2004 emacs-style
-rw-r--r--@  1 vsanzgir  600   14882 Nov 21  2004 ABOUT_APACHE
-rw-r--r--@  1 vsanzgir  600   10183 Mar 14  2005 ROADMAP
-rw-r--r--@  1 vsanzgir  600    8183 Oct 17  2005 VERSIONING
-rw-r--r--@  1 vsanzgir  600    5145 Nov 29  2005 LAYOUT
-rw-r--r--@  1 vsanzgir  600    2909 Dec  7  2006 InstallBin.dsp
-rw-r--r--@  1 vsanzgir  600    5954 Jan 10  2007 README
-rw-r--r--@  1 vsanzgir  600   17039 Jan 12  2007 libhttpd.dsp
-rw-r--r--@  1 vsanzgir  600    2644 Aug 24  2007 BuildAll.dsp
-rw-r--r--@  1 vsanzgir  600   28690 Jan 18  2008 LICENSE
-rw-r--r--@  1 vsanzgir  600    4124 Jun 11  2008 httpd.dsp
-rw-r--r--@  1 vsanzgir  600    8739 Nov 25  2008 Makefile.in
-rw-r--r--@  1 vsanzgir  600    2692 Jul 29  2009 BuildBin.dsp
-rw-r--r--@  1 vsanzgir  600    5332 Oct 13  2009 README.platforms
-rw-r--r--@  1 vsanzgir  600   34725 Oct  5  2010 Makefile.win
-rw-r--r--@  1 vsanzgir  600   56952 Oct  5  2010 Apache.dsw
-rw-r--r--@  1 vsanzgir  600    2553 Dec 20  2010 README-win32.txt
-rw-r--r--@  1 vsanzgir  600   28503 May  6  2011 libhttpd.mak
-rw-r--r--@  1 vsanzgir  600    8994 May  6  2011 httpd.mak
-rw-r--r--@  1 vsanzgir  600   30119 May  7  2011 libhttpd.dep
-rw-r--r--@  1 vsanzgir  600    1248 May  7  2011 httpd.dep
-rw-r--r--   1 vsanzgir  600    4372 Jan 17  2012 INSTALL
-rw-r--r--@  1 vsanzgir  600   11701 Feb 27  2012 config.layout
-rw-r--r--@  1 vsanzgir  600   12894 Mar 15  2012 NWGNUmakefile
-rw-r--r--@  1 vsanzgir  600   24587 May 29  2012 configure.in
-rw-r--r--@  1 vsanzgir  600   18613 Jul  6  2012 acinclude.m4
-rwxr-xr-x@  1 vsanzgir  600    5786 Sep 19  2012 buildconf
-rw-r--r--@  1 vsanzgir  600     828 Jan  5  2013 NOTICE
-rw-r--r--@  1 vsanzgir  600  127381 Feb 18  2013 CHANGES
drwxr-xr-x@ 12 vsanzgir  600     408 Feb 20  2013 os
drwxr-xr-x@ 38 vsanzgir  600    1292 Feb 20  2013 server
drwxr-xr-x@ 24 vsanzgir  600     816 Feb 20  2013 modules
drwxr-xr-x@ 15 vsanzgir  600     510 Feb 20  2013 test
drwxr-xr-x@ 65 vsanzgir  600    2210 Feb 20  2013 support
drwxr-xr-x@  6 vsanzgir  600     204 Feb 20  2013 srclib
drwxr-xr-x@ 10 vsanzgir  600     340 Feb 20  2013 docs
drwxr-xr-x@ 34 vsanzgir  600    1156 Feb 20  2013 include
-rw-r--r--@  1 vsanzgir  600   12053 Feb 20  2013 httpd.spec
-rwxr-xr-x@  1 vsanzgir  600  572901 Feb 20  2013 configure
drwxr-xr-x@ 46 vsanzgir  600    1564 Jan 21 23:38 build
vyas:httpd-2.2.24 vsanzgir$ ./configure --prefix=/usr/local/apache2
checking for chosen layout... Apache
checking for working mkdir -p... yes
checking build system type... x86_64-apple-darwin14.1.0
checking host system type... x86_64-apple-darwin14.1.0
checking target system type... x86_64-apple-darwin14.1.0

Configuring Apache Portable Runtime library ...

checking for APR... yes
  setting CC to "/Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc"
  setting CPP to "/Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc -E"
  setting CFLAGS to " "
  setting CPPFLAGS to " -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10"
  setting LDFLAGS to " "

Configuring Apache Portable Runtime Utility library...

checking for APR-util... yes
checking for gcc... /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc
checking whether the C compiler works... no
configure: error: in `/Users/vsanzgir/Downloads/httpd-2.2.24':
configure: error: C compiler cannot create executables
See `config.log' for more details

        
vyas:httpd-2.2.24 vsanzgir$ ls -ltr /Applications/Xcode.app/Contents/Developer/Toolchains/
total 0
drwxr-xr-x  4 root  wheel  136 Nov 17 13:03 XcodeDefault.xctoolchain
vyas:httpd-2.2.24 vsanzgir$ ls -ltr /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
lrwxr-xr-x  1 root  wheel  5 Jan 22 00:34 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc -> clang
 
vyas:httpd-2.2.24 vsanzgir$ sudo ln -s /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain
Password:
vyas:httpd-2.2.24 vsanzgir$ ./configure --prefix=/usr/local/apache2
checking for chosen layout... Apache
checking for working mkdir -p... yes
checking build system type... i386-apple-darwin14.1.0
checking host system type... i386-apple-darwin14.1.0
checking target system type... i386-apple-darwin14.1.0

Configuring Apache Portable Runtime library ...

checking for APR... yes
  setting CC to "/Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc"
  setting CPP to "/Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc -E"
  setting CFLAGS to " "
  setting CPPFLAGS to " -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10"
  setting LDFLAGS to " "

Configuring Apache Portable Runtime Utility library...

checking for APR-util... yes
checking for gcc... /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc accepts -g... yes
checking for /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc option to accept ISO C89... none needed
checking how to run the C preprocessor... /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc -E
configure: Configuring PCRE regular expression library
configuring package in srclib/pcre now
checking for gcc... /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc accepts -g... yes
checking for /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc option to accept ISO C89... none needed
checking how to run the C preprocessor... /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking for an ANSI C-conforming const... yes
checking for size_t... yes
checking for bcopy... yes
checking for memmove... yes
checking for strerror... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating pcre.h
config.status: creating pcre-config
config.status: creating config.h
config.status: executing default commands
srclib/pcre configured properly
  setting AP_LIBS to "/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre/libpcre.la"
  setting INCLUDES to "-I$(top_builddir)/srclib/pcre"

Configuring Apache httpd ...

  adding "-I." to INCLUDES
  adding "-I$(top_srcdir)/os/$(OS_DIR)" to INCLUDES
  adding "-I$(top_srcdir)/server/mpm/$(MPM_SUBDIR_NAME)" to INCLUDES
  adding "-I$(top_srcdir)/modules/http" to INCLUDES
  adding "-I$(top_srcdir)/modules/filters" to INCLUDES
  adding "-I$(top_srcdir)/modules/proxy" to INCLUDES
  adding "-I$(top_srcdir)/include" to INCLUDES
  adding "-I$(top_srcdir)/modules/generators" to INCLUDES
  adding "-I$(top_srcdir)/modules/mappers" to INCLUDES
  adding "-I$(top_srcdir)/modules/database" to INCLUDES
  adding "-I/usr/include/apr-1" to INCLUDES

Applying OS-specific hints for httpd ...

  forcing SINGLE_LISTEN_UNSERIALIZED_ACCEPT to "1"
  forcing AP_NONBLOCK_WHEN_MULTI_LISTEN to "1"
checking for rm... /bin/rm
checking for pkg-config... no
checking for rsync... /usr/bin/rsync
checking for gawk... no
checking for mawk... no
checking for nawk... no
checking for awk... awk
checking whether ln -s works... yes
checking for ranlib... ranlib
checking for lynx... no
checking for links... no
checking for elinks... no
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking for library containing strerror... none required
checking for APR version 1.2.0 or later... yes
checking for APR-util version 1.2.0 or later... yes
checking for ANSI C header files... (cached) yes
checking for string.h... (cached) yes
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking for unistd.h... (cached) yes
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking pwd.h usability... yes
checking pwd.h presence... yes
checking for pwd.h... yes
checking grp.h usability... yes
checking grp.h presence... yes
checking for grp.h... yes
checking for strings.h... (cached) yes
checking sys/prctl.h usability... no
checking sys/prctl.h presence... no
checking for sys/prctl.h... no
checking sys/processor.h usability... no
checking sys/processor.h presence... no
checking for sys/processor.h... no
checking sys/sem.h usability... yes
checking sys/sem.h presence... yes
checking for sys/sem.h... yes
checking for sys/wait.h that is POSIX.1 compatible... yes
checking for an ANSI C-conforming const... yes
checking for library containing sqrt... none required
checking for library containing crypt... none required
checking for getpwnam... yes
checking for getgrnam... yes
checking for initgroups... yes
checking for bindprocessor... no
checking for prctl... no
checking for timegm... yes
checking for getpgid... yes
checking for void pointer length... no
checking for tm_gmtoff in struct tm... yes
checking whether to enable mod_authn_file... yes (default)
checking whether to enable mod_authn_dbm... no
checking whether to enable mod_authn_anon... no
checking whether to enable mod_authn_dbd... no
checking whether to enable mod_authn_default... yes (default)
checking whether to enable mod_authn_alias... no
checking whether to enable mod_authz_host... yes (default)
checking whether to enable mod_authz_groupfile... yes (default)
checking whether to enable mod_authz_user... yes (default)
checking whether to enable mod_authz_dbm... no
checking whether to enable mod_authz_owner... no
checking whether to enable mod_authnz_ldap... no
checking whether to enable mod_authz_default... yes (default)
checking whether to enable mod_auth_basic... yes (default)
checking whether to enable mod_auth_digest... no
checking whether to enable mod_isapi... no
checking whether to enable mod_file_cache... no
checking whether to enable mod_cache... no
checking whether to enable mod_disk_cache... no
checking whether to enable mod_mem_cache... no
checking whether to enable mod_dbd... no
checking whether to enable mod_bucketeer... no
checking whether to enable mod_dumpio... no
checking whether to enable mod_echo... no
checking whether to enable mod_example... no
checking whether to enable mod_case_filter... no
checking whether to enable mod_case_filter_in... no
checking whether to enable mod_reqtimeout... no
checking whether to enable mod_ext_filter... no
checking whether to enable mod_include... yes (default)
checking whether to enable mod_filter... yes (default)
checking whether to enable mod_substitute... no
checking whether to enable mod_charset_lite... no
checking whether to enable mod_deflate... no
checking whether to enable mod_ldap... no
checking whether to enable mod_log_config... yes (default)
checking whether to enable mod_log_forensic... no
checking whether to enable mod_logio... no
checking whether to enable mod_env... yes (default)
checking whether to enable mod_mime_magic... no
checking whether to enable mod_cern_meta... no
checking whether to enable mod_expires... no
checking whether to enable mod_headers... no
checking whether to enable mod_ident... no
checking whether to enable mod_usertrack... no
checking whether to enable mod_unique_id... no
checking whether to enable mod_setenvif... yes (default)
checking whether to enable mod_version... yes (default)
checking whether to enable mod_proxy... no
checking whether to enable mod_proxy_connect... no
checking whether to enable mod_proxy_ftp... no
checking whether to enable mod_proxy_http... no
checking whether to enable mod_proxy_scgi... no
checking whether to enable mod_proxy_ajp... no
checking whether to enable mod_proxy_balancer... no
  adding "-I$(top_srcdir)/modules/proxy/../generators" to INCLUDES
checking whether to enable mod_ssl... no
  adding "-I$(top_srcdir)/modules/ssl" to INCLUDES
checking whether to enable mod_optional_hook_export... no
checking whether to enable mod_optional_hook_import... no
checking whether to enable mod_optional_fn_import... no
checking whether to enable mod_optional_fn_export... no
checking for target platform... unix
checking for rlim_t... yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking sys/resource.h usability... yes
checking sys/resource.h presence... yes
checking for sys/resource.h... yes
checking for sys/sem.h... (cached) yes
checking sys/ipc.h usability... yes
checking sys/ipc.h presence... yes
checking for sys/ipc.h... yes
checking for setsid... yes
checking for killpg... yes
checking bstring.h usability... no
checking bstring.h presence... no
checking for bstring.h... no
checking for unistd.h... (cached) yes
checking for syslog... yes
checking sys/times.h usability... yes
checking sys/times.h presence... yes
checking for sys/times.h... yes
checking for times... yes
checking which MPM to use... prefork
./configure: line 15643: ulimit: open files: cannot modify limit: Invalid argument
checking whether to enable mod_http... yes
checking whether to enable mod_mime... yes (default)
checking for extra modules... none
checking whether to enable mod_dav... no
  adding "-I$(top_srcdir)/modules/dav/main" to INCLUDES
checking whether to enable mod_status... yes (default)
checking whether to enable mod_autoindex... yes (default)
checking whether to enable mod_asis... yes (default)
checking whether to enable mod_info... no
checking whether to enable mod_suexec... no
checking whether to enable mod_cgi... yes (default)
checking whether to enable mod_cgid... no
checking whether to enable mod_dav_fs... no
checking whether to enable mod_dav_lock... no
checking whether to enable mod_vhost_alias... no
checking whether to enable mod_negotiation... yes (default)
checking whether to enable mod_dir... yes (default)
checking whether to enable mod_imagemap... no
checking whether to enable mod_actions... yes (default)
checking whether to enable mod_speling... no
checking whether to enable mod_userdir... yes (default)
checking whether to enable mod_alias... yes (default)
checking whether to enable mod_rewrite... no
  setting HTTPD_LDFLAGS to "-export-dynamic"
checking whether to enable mod_so... yes

Restore user-defined environment settings...

  restoring CPPFLAGS to ""
  setting EXTRA_CPPFLAGS to " -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10"
  restoring CFLAGS to ""
  setting EXTRA_CFLAGS to " "
  restoring CXXFLAGS to ""
  setting EXTRA_CXXFLAGS to ""
  restoring LDFLAGS to ""
  setting EXTRA_LDFLAGS to " "
  restoring LIBS to ""
  setting EXTRA_LIBS to ""
  restoring INCLUDES to ""
  setting EXTRA_INCLUDES to "-I$(top_builddir)/srclib/pcre -I. -I$(top_srcdir)/os/$(OS_DIR) -I$(top_srcdir)/server/mpm/$(MPM_SUBDIR_NAME) -I$(top_srcdir)/modules/http -I$(top_srcdir)/modules/filters -I$(top_srcdir)/modules/proxy -I$(top_srcdir)/include -I$(top_srcdir)/modules/generators -I$(top_srcdir)/modules/mappers -I$(top_srcdir)/modules/database -I/usr/include/apr-1 -I$(top_srcdir)/modules/proxy/../generators -I$(top_srcdir)/modules/ssl -I$(top_srcdir)/modules/dav/main"

Construct makefiles and header files...

creating config_vars.mk
configure: creating ./config.status
creating modules/aaa/Makefile
creating modules/arch/win32/Makefile
creating modules/cache/Makefile
creating modules/database/Makefile
creating modules/debug/Makefile
creating modules/echo/Makefile
creating modules/experimental/Makefile
creating modules/filters/Makefile
creating modules/ldap/Makefile
creating modules/loggers/Makefile
creating modules/metadata/Makefile
creating modules/proxy/Makefile
creating modules/ssl/Makefile
creating modules/test/Makefile
creating os/unix/Makefile
creating server/mpm/Makefile
creating server/mpm/prefork/Makefile
creating modules/http/Makefile
creating modules/dav/main/Makefile
creating modules/generators/Makefile
creating modules/dav/fs/Makefile
creating modules/dav/lock/Makefile
creating modules/mappers/Makefile
creating Makefile
creating modules/Makefile
creating srclib/Makefile
creating os/Makefile
creating server/Makefile
creating support/Makefile
creating srclib/pcre/Makefile
creating test/Makefile
config.status: creating docs/conf/httpd.conf
config.status: creating docs/conf/extra/httpd-autoindex.conf
config.status: creating docs/conf/extra/httpd-dav.conf
config.status: creating docs/conf/extra/httpd-default.conf
config.status: creating docs/conf/extra/httpd-info.conf
config.status: creating docs/conf/extra/httpd-languages.conf
config.status: creating docs/conf/extra/httpd-manual.conf
config.status: creating docs/conf/extra/httpd-mpm.conf
config.status: creating docs/conf/extra/httpd-multilang-errordoc.conf
config.status: creating docs/conf/extra/httpd-ssl.conf
config.status: creating docs/conf/extra/httpd-userdir.conf
config.status: creating docs/conf/extra/httpd-vhosts.conf
config.status: creating include/ap_config_layout.h
config.status: creating support/apxs
config.status: creating support/apachectl
config.status: creating support/dbmmanage
config.status: creating support/envvars-std
config.status: creating support/log_server_status
config.status: creating support/logresolve.pl
config.status: creating support/phf_abuse_log.cgi
config.status: creating support/split-logfile
config.status: creating build/rules.mk
config.status: creating build/pkg/pkginfo
config.status: creating build/config_vars.sh
config.status: creating include/ap_config_auto.h
config.status: executing default commands
vyas:httpd-2.2.24 vsanzgir$ make


Agreeing to the Xcode/iOS license requires admin privileges, please re-run as root via sudo.


vyas:httpd-2.2.24 vsanzgir$ sudo make


You have not agreed to the Xcode license agreements. You must agree to both license agreements below in order to use Xcode.

Hit the Enter key to view the license agreements at '/Applications/Xcode.app/Contents/Resources/English.lproj/License.rtf'

IMPORTANT: BY USING THIS SOFTWARE, YOU ARE AGREEING TO BE BOUND BY THE FOLLOWING APPLE TERMS:

A. MAC SDK AND XCODE AGREEMENT
B. iOS SDK AGREEMENT

APPLE INC.
MAC SDK AND XCODE AGREEMENT

PLEASE READ THIS MAC SDK AND XCODE AGREEMENT ("LICENSE") CAREFULLY BEFORE USING THE DEVELOPER SOFTWARE (DEFINED BELOW). BY USING THE DEVELOPER SOFTWARE, YOU ARE AGREEING TO BE BOUND BY THE TERMS OF THIS LICENSE.  IF YOU ARE ACCESSING THE DEVELOPER SOFTWARE ELECTRONICALLY, SIGNIFY YOUR AGREEMENT TO BE BOUND BY THE TERMS OF THIS LICENSE BY CLICKING THE "AGREE " BUTTON.  IF YOU DO NOT AGREE TO THE TERMS OF THIS LICENSE, DO NOT USE THE DEVELOPER SOFTWARE AND CLICK “DISAGREE”. 

IMPORTANT NOTE: To the extent that this software may be used to reproduce materials, it is licensed to you only for reproduction of non-copyrighted materials, materials in which you own the copyright, or materials you are authorized or legally permitted to reproduce. If you are uncertain about your right to copy any material, you should contact your legal advisor.

1. General. 
A. The Apple software, tools, utilities, sample or example code, documentation, interfaces, content, data, and other materials accompanying this License, whether on disk, print or electronic documentation, in read only memory, or any other media or in any other form, (collectively, the "Developer Software") are licensed, not sold, to you by Apple Inc. ("Apple") for use only under the terms of this License.  Apple and/or Apple’s licensors retain ownership of the Developer Software itself and reserve all rights not expressly granted to you. The terms of this License will govern any software upgrades provided by Apple that replace and/or supplement the original Developer Software, unless such upgrade is accompanied by a separate license in which case the terms of that license will govern. 

B. Title and intellectual property rights in and to any content displayed by or accessed through the Developer Software belongs to the respective content owner. Such content may be protected by copyright or other intellectual property laws and treaties, and may be subject to terms of use of the third party providing such content. This License does not grant you any rights to use such content nor does it guarantee that such content will continue to be available to you.

2. Permitted License Uses and Restrictions.
A. License. Subject to the terms and conditions of this License, you are granted a limited, non-exclusive license to use the Developer Software on Apple-branded computers to develop and test application and other software. You may make only as many internal use copies of the Developer Software as reasonably necessary to use the Developer Software as permitted under this License and distribute such copies only to your employees whose job duties require them to so use the Developer Software; provided that you reproduce on each copy of the Developer Software or portion thereof, all copyright or other proprietary notices contained on the original. 

B. Other Use Restrictions. The grants set forth in this License do not permit you to, and you agree not to, install, use or run the Developer Software on any non-Apple-branded computer, or to enable others to do so. Except as otherwise expressly permitted by the terms of this License or as otherwise licensed by Apple: (i) only one user may use the Developer Software at a time, and (ii) you may not make the Developer Software available over a network where it could be run or used by multiple computers at the same time. You may not rent, lease, lend, sell, sublicense or otherwise redistribute the Developer Software or exploit any services provided by or through the Developer Software in any unauthorized way. 

C. No Reverse Engineering; Limitations. You may not, and you agree not to or to enable others to, copy (except as expressly permitted by this License), decompile, reverse engineer, disassemble, attempt to derive the source code of, decrypt, modify, create derivative works of the Developer Software or any services provided by or through the Developer Software or any part thereof (except as and only to the extent any foregoing restriction is prohibited by applicable law or to the extent as may be permitted by licensing terms governing use of the  Open-Sourced Components or Sample Code). 

D. Sample Code. Certain portions of the Developer Software consist of sample or example code provided by Apple ("Sample Code"). You may use, reproduce, modify and redistribute such Sample Code only in accordance with the licensing terms accompanying such Sample Code or related project(s).

E. QuickTime Development Software. You may use the QuickTime development software only to develop application software that is compatible with, and runs only on supported OS X and/or Windows platforms with QuickTime installed. Your software application may not interfere with the functionality of QuickTime Player or the QuickTime Plug-in, including but not limited to file type or MIME type associations that are registered to QuickTime.

F. Use of System-Provided Images. The system-provided images owned by Apple and documented as such in Apple's Human Interface Guidelines for OS X and iOS ("System-Provided Images") are licensed to you solely for the purpose of developing OS X and iOS applications, respectively, using the Developer Software. Upon termination of this License, you may continue to distribute the System-Provided Images as used within software you developed using the Developer Software; however, you agree to provide to Apple, at Apple's request, a copy of any software you developed using the Developer Software that incorporates any of the System-Provided Images so Apple may determine, in its sole discretion, whether your use of the System-Provided Images complies with these terms.

G. Location Services; Consents. 
1. Apple may enable you to access certain location-based application programming interfaces (APIs) (e.g., Core Location) documented by Apple (“Location APIs”) through the Developer Software.  Subject to these terms and conditions, you may use such APIs and services only to enable software programs you develop for use on OS X (“Applications”) to access location data (e.g. the real-time geographic location of a user’s computer) from users who consent to such access. For Applications that use Location APIs or otherwise provide location-based services, you agree that such Applications may not be designed or marketed for automatic or autonomous control of vehicle behavior, or for emergency or life-saving purposes. In addition, Applications that offer location-based services or functionality must notify and obtain consent from an individual before his or her location data is collected, transmitted or otherwise used by the Application. For Applications that use Location APIs for real-time navigation (including, but not limited to, turn-by-turn route guidance and other routing that is enabled through the use of a sensor), you must have an end-user license agreement that includes the following notice: YOUR USE OF THIS REAL TIME ROUTE GUIDANCE APPLICATION IS AT YOUR SOLE RISK. LOCATION DATA MAY NOT BE ACCURATE.

2. You agree that neither you nor your Applications will disable, override or otherwise interfere with any Apple-implemented system alerts, warnings, display panels, consent panels and the like, including, but not limited to, those that are intended to notify the user that the user's location data is being collected, transmitted, maintained, processed or used, or intended to obtain consent for such use.  If consent is denied or withdrawn, neither you nor your Applications may collect, transmit, maintain, process or utilize the user's location information or data through the Location APIs. You understand and agree that you and your Applications must comply with all applicable criminal, civil and statutory laws and regulations (including privacy, data collection and location service laws and regulations) in any jurisdictions in which your Applications may be delivered.  You shall be solely responsible for, and Apple shall have no responsibility or liability whatsoever with respect to, any and all claims, suits, liabilities, losses, damages, costs and expenses arising from, related or attributable to, or otherwise involving your Application, including but not limited to your Application’s use of the Location APIs.

H. Xcode Server. If you access the Xcode Server feature of the Developer Software (e.g., via the command line tools), then you may use the Xcode Server feature for your own personal use or for internal use within your company or organization. You may not provide a service to third parties that integrates with or leverages services or information provided by Xcode Server or uses the Xcode Server feature in any way.  As a condition to using the Xcode Server feature of the Developer Software, you represent and warrant to Apple that you (and any user of a client-computer that you permit to access Xcode Server on your behalf) are appropriately licensed to use the applicable services, features or functionality of the Developer Software, the iOS SDK and/or the Apple Developer Program account accessed through the Xcode Server feature (e.g., you agree that anyone attempting to gain access to your Apple Developer certificates stored on Xcode Server must be a member of your Apple Developer Program team). You agree to monitor and will be responsible for all such use by any user of a client-computer that you permit to access Xcode Server and their compliance with the terms of this License and other applicable license agreements.

I. Compliance with Laws. You agree to use the Developer Software and the services in compliance with all applicable laws, including local laws of the country or region in which you reside or in which you download or use the Developer Software or services.

3. Transfer. You may make a one-time permanent transfer of all of your license rights to the Developer Software (in its original form as provided by Apple) to another party, provided that: (a) the transfer must include all of the Developer Software, including all its component parts and this License; (b) you do not retain any copies of the Developer Software, full or partial, including copies stored on a computer or other storage device; and (c) the party receiving the Developer Software accepts the terms and conditions of this License. You may not transfer any Developer Software that has been modified or replaced under Section 13 below. All components of the Developer Software are provided as part of a bundle and may not be separated from the bundle and distributed as standalone applications.

4. Consent to Use of Data.
A. Diagnostic and Usage Data. If you choose to allow diagnostic and usage collection, you agree that Apple and its subsidiaries and agents may collect, maintain, process and use diagnostic, technical, usage and related information, including but not limited to unique system or hardware identifiers, information about your computer, system and application software, and peripherals, that is gathered periodically to provide and improve Apple’s products and services, facilitate the provision of software updates, product support and other services to you (if any) related to the Developer Software, and to verify compliance with the terms of this License. You may change your preferences for Diagnostics & Usage collection at any time by going to the Diagnostics & Usage setting on your computer and deselecting the checkbox. The Diagnostics & Usage setting is found in the Security & Privacy pane within System Preferences. Apple may use this information, as long as it is collected in a form that does not personally identify you, for the purposes described above. To enable Apple’s partners and third party developers to improve their software, hardware and services designed for use with Apple products, Apple may also provide any such partner or third party developer with a subset of diagnostic information that is relevant to that partner’s or developer’s software, hardware and/or services, as long as the diagnostic information is in a form that does not personally identify you. 

B. Privacy Policy. At all times your information will be treated in accordance with Apple’s Privacy Policy, which is incorporated by reference into this License and can be viewed at: http://www.apple.com/legal/privacy/.

5. Services; Mac Developer Program.
A. Apple may provide access to services by or through the Developer Software for you to use.  Use of these services may require an Apple ID, may require you to accept additional terms and may be subject to additional fees. If you elect to use such services in conjunction with the Developer Software, your usage of such services will be subject to those additional terms and conditions (e.g., your use of Developer IDs obtained from your Apple Developer Program account will be subject to the applicable Apple Developer Program terms for Developer IDs), but this License will continue to apply to your use of the Developer Software licensed hereunder. If you would like to submit Applications you develop to the Mac App Store, then you must apply to join the Mac Developer Program. More information about Apple’s Developer Programs is available at http://developer.apple.com/. Apple reserves the right to refuse admission to any of its Developer Programs at any time in its sole discretion. 

B. You agree that the services contain proprietary content, information and material that is owned by Apple and its licensors, and is protected by applicable intellectual property and other laws, and that you will not use such proprietary content, information or materials in any way whatsoever except for permitted use of the services or in any manner that is inconsistent with the terms of this License or that infringes any intellectual property rights of a third party or Apple. Except to the extent expressly permitted in the applicable terms for the services, You agree not to reproduce, modify, rent, lease, lend, sell, distribute, or create derivative works based on the services, in any manner, and you shall not exploit the services in any unauthorized way whatsoever, including but not limited to, using the services to transmit any malware, or by trespass or burdening network capacity. 

C. In addition, services that may be accessed, linked to or displayed through the Developer Software may not be available in all languages or in all countries. Apple makes no representation that any such services would be appropriate or available for use in any particular location. Apple reserves the right to change, suspend, remove, or disable access to any services at any time. In no event will Apple be liable for the removal of or disabling of access to any such services or for any updates, maintenance, warranty, technical or other support for such services. Apple may also impose limits or other restrictions on the use of or access to the services, in any case without notice or liability.  You acknowledge and agree that Apple reserves the right to revoke or remove your access to any services provided by or through the Developer Software at any time in its sole discretion.

6. Termination. This License is effective until terminated. Your rights under this License will terminate automatically or cease to be effective without notice from Apple if you fail to comply with any term(s) of this License. In addition, Apple reserves the right to terminate this License if a new version of Apple's operating system software or the Developer Software is released which is incompatible with this version of the Developer Software. Upon the termination of this License, you shall cease all use of the Developer Software and destroy all copies, full or partial, of the Developer Software. Section 2B, 2C, 4, 5B, and 6 through 13 of this License shall survive any termination.

7. Disclaimer of Warranties. 
A.      YOU EXPRESSLY ACKNOWLEDGE AND AGREE THAT, TO THE EXTENT PERMITTED BY APPLICABLE LAW, USE OF THE DEVELOPER SOFTWARE AND ANY SERVICES PERFORMED BY OR ACCESSED THROUGH THE DEVELOPER SOFTWARE IS AT YOUR SOLE RISK AND THAT THE ENTIRE RISK AS TO SATISFACTORY QUALITY, PERFORMANCE, ACCURACY AND EFFORT IS WITH YOU. 

B.      TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THE DEVELOPER SOFTWARE AND SERVICES ARE PROVIDED “AS IS” AND “AS AVAILABLE”, WITH ALL FAULTS AND WITHOUT WARRANTY OF ANY KIND, AND APPLE AND APPLE'S LICENSORS (COLLECTIVELY REFERRED TO AS “APPLE” FOR THE PURPOSES OF SECTIONS 7 AND 8) HEREBY DISCLAIM ALL WARRANTIES AND CONDITIONS WITH RESPECT TO THE DEVELOPER SOFTWARE AND SERVICES, EITHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES AND/OR CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE, ACCURACY, QUIET ENJOYMENT, AND NON-INFRINGEMENT OF THIRD PARTY RIGHTS. 

C.      APPLE DOES NOT WARRANT AGAINST INTERFERENCE WITH YOUR ENJOYMENT OF THE DEVELOPER SOFTWARE AND SERVICES, THAT THE FUNCTIONS CONTAINED IN, OR SERVICES PERFORMED OR PROVIDED BY, THE DEVELOPER SOFTWARE WILL MEET YOUR REQUIREMENTS, THAT THE OPERATION OF THE DEVELOPER SOFTWARE OR SERVICES WILL BE UNINTERRUPTED OR ERROR-FREE, THAT ANY SERVICES WILL CONTINUE TO BE MADE AVAILABLE, THAT THE DEVELOPER SOFTWARE OR SERVICES WILL BE COMPATIBLE OR WORK WITH ANY THIRD PARTY SOFTWARE, APPLICATIONS OR THIRD PARTY SERVICES, OR THAT DEFECTS IN THE DEVELOPER SOFTWARE OR SERVICES WILL BE CORRECTED. INSTALLATION OF THIS DEVELOPER SOFTWARE MAY AFFECT THE USABILITY OF THIRD PARTY SOFTWARE, APPLICATIONS OR THIRD PARTY SERVICES AS WELL AS OTHER APPLE PRODUCTS OR SERVICES.

D.      YOU FURTHER ACKNOWLEDGE THAT THE DEVELOPER SOFTWARE AND SERVICES ARE NOT INTENDED OR SUITABLE FOR USE IN SITUATIONS OR ENVIRONMENTS WHERE THE FAILURE OR TIME DELAYS OF, OR ERRORS OR INACCURACIES IN THE CONTENT, DATA OR INFORMATION PROVIDED BY, THE DEVELOPER SOFTWARE OR SERVICES COULD LEAD TO DEATH, PERSONAL INJURY, OR SEVERE PHYSICAL OR ENVIRONMENTAL DAMAGE, INCLUDING WITHOUT LIMITATION THE OPERATION OF NUCLEAR FACILITIES, AIRCRAFT NAVIGATION OR COMMUNICATION SYSTEMS, AIR TRAFFIC CONTROL, LIFE SUPPORT OR WEAPONS SYSTEMS. 

E.      NO ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY APPLE OR AN APPLE AUTHORIZED REPRESENTATIVE SHALL CREATE A WARRANTY. SHOULD THE DEVELOPER SOFTWARE OR SERVICES PROVE DEFECTIVE, YOU ASSUME THE ENTIRE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF IMPLIED WARRANTIES OR LIMITATIONS ON APPLICABLE STATUTORY RIGHTS OF A CONSUMER, SO THE ABOVE EXCLUSION AND LIMITATIONS MAY NOT APPLY TO YOU. 

8. Limitation of Liability. TO THE EXTENT NOT PROHIBITED BY APPLICABLE LAW, IN NO EVENT SHALL APPLE BE LIABLE FOR PERSONAL INJURY, OR ANY INCIDENTAL, SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES WHATSOEVER, INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF PROFITS, CORRUPTION OR LOSS OF DATA, FAILURE TO TRANSMIT OR RECEIVE ANY DATA OR INFORMATION, BUSINESS INTERRUPTION OR ANY OTHER COMMERCIAL DAMAGES OR LOSSES, ARISING OUT OF OR RELATED TO YOUR USE OR INABILITY TO USE THE DEVELOPER SOFTWARE OR SERVICES OR ANY THIRD PARTY SOFTWARE, APPLICATIONS, OR SERVICES IN CONJUNCTION WITH THE DEVELOPER SOFTWARE OR SERVICES, HOWEVER CAUSED, REGARDLESS OF THE THEORY OF LIABILITY (CONTRACT, TORT OR OTHERWISE) AND EVEN IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR PERSONAL INJURY, OR OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS LIMITATION MAY NOT APPLY TO YOU. In no event shall Apple's total liability to you for all damages (other than as may be required by applicable law in cases involving personal injury) exceed the amount of fifty dollars ($50.00). The foregoing limitations will apply even if the above stated remedy fails of its essential purpose.

9. Export Control. You may not use or otherwise export or re-export the Developer Software except as authorized by United States law and the laws of the jurisdiction(s) in which the Developer Software was obtained. In particular, but without limitation, the Developer Software may not be exported or re-exported (a) into any U.S. embargoed countries or (b) to anyone on the U.S. Treasury Department's list of Specially Designated Nationals or the U.S. Department of Commerce Denied Person's List or Entity List. By using the Developer Software, you represent and warrant that you are not located in any such country or on any such list. You also agree that you will not use the Developer Software for any purposes prohibited by United States law, including, without limitation, the development, design, manufacture or production of missiles, nuclear, chemical or biological weapons.

10. Government End Users. The Developer Software and related documentation are "Commercial Items", as that term is defined at 48 C.F.R. §2.101, consisting of "Commercial Computer Software" and "Commercial Computer Software Documentation", as such terms are used in 48 C.F.R. §12.212 or 48 C.F.R. §227.7202, as applicable. Consistent with 48 C.F.R. §12.212 or 48 C.F.R. §227.7202-1 through 227.7202-4, as applicable, the Commercial Computer Software and Commercial Computer Software Documentation are being licensed to U.S. Government end users (a) only as Commercial Items and (b) with only those rights as are granted to all other end users pursuant to the terms and conditions herein. Unpublished-rights reserved under the copyright laws of the United States.

11. Controlling Law and Severability. This License will be governed by and construed in accordance with the laws of the State of California, excluding its conflict of law principles. This License shall not be governed by the United Nations Convention on Contracts for the International Sale of Goods, the application of which is expressly excluded. If for any reason a court of competent jurisdiction finds any provision, or portion thereof, to be unenforceable, the remainder of this License shall continue in full force and effect.  

12. Complete Agreement; Governing Language. This License constitutes the entire agreement between you and Apple relating to the use of the Developer Software licensed hereunder and supersedes all prior or contemporaneous understandings regarding such subject matter. No amendment to or modification of this License will be binding unless in writing and signed by Apple.  The parties hereto confirm that they have requested that this License and all related documents be drafted in English. Les parties ont exigé que le présent contrat et tous les documents connexes soient rédigés en anglais.

13. Third Party Acknowledgements. 
A. Certain components of the Developer Software, and third party open source programs included with the Developer Software, have been or may be made available by Apple on its Open Source web site (http://www.opensource.apple.com/) (collectively the "Open-Sourced Components"). You may modify or replace only these Open-Sourced Components; provided that: (i) the resultant modified Developer Software is used in accordance with the permitted uses set forth above; and (ii) you otherwise comply with the terms of this License and any applicable licensing terms governing use of the Open-Sourced Components. Apple is not obligated to provide any updates, maintenance, warranty, technical or other support, or services for the resultant modified Developer Software. You expressly acknowledge that if failure of or damage to Apple hardware results from modification of the Open-Sourced Components of the Developer Software, such failure or damage is excluded from the terms of the Apple hardware warranty.

B. Certain software libraries and other third party software included with the Developer Software are free software and licensed under the terms of the GNU General Public License (GPL) or the GNU Library/Lesser General Public License (LGPL), as the case may be. You may obtain a complete machine-readable copy of the source code for such free software under the terms of the GPL or LGPL, as the case may be, without charge except for the cost of media, shipping, and handling, upon written request to Apple. The GPL/LGPL software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY, without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. A copy of the GPL and LGPL is included with the Developer Software.

C. The Developer Software includes certain software licensed under the IBM Public License Version 1.0 (IPL) or the Common Public License Version 1.0 (CPL). A copy of the source code for the IPL and CPL licensed software may be found in Apple’s Open Source repository. See Apple's Open Source web site (<http://www.opensource.apple.com>/) for information on how to obtain the source code. THE IPL AND CPL SOFTWARE IS PROVIDED ON AN “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  NEITHER APPLE, IBM NOR ANY OTHER CONTRIBUTOR TO THE  IPL AND CPL SOFTWARE SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, WITHOUT LIMITATION, LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE IPL AND CPL SOFTWARE OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

------------------------------------------------------------------------------------------------
Apple Inc.

iOS SDK Agreement
Internal Use Only; No Redistribution

PLEASE SCROLL DOWN AND READ ALL OF THE FOLLOWING TERMS AND CONDITIONS CAREFULLY BEFORE USING THE SOFTWARE. THIS IS A LEGAL AGREEMENT BETWEEN YOU AND APPLE. IF YOU AGREE TO BE BOUND BY ALL OF THE TERMS AND CONDITIONS, CLICK THE “AGREE” BUTTON OR CHECK THE BOX DISPLAYED AT THE END OF THIS AGREEMENT IF YOU ARE READING THIS ON AN APPLE WEBSITE. BY CLICKING “AGREE”, CHECKING THE BOX OR BY DOWNLOADING, USING OR COPYING ANY PART OF THIS SDK, YOU ARE AGREEING ON YOUR OWN BEHALF AND/OR ON BEHALF OF YOUR COMPANY TO THE TERMS AND CONDITIONS STATED BELOW. IF YOU DO NOT OR CANNOT AGREE TO THE TERMS OF THIS AGREEMENT, YOU CANNOT USE THIS SDK.  DO NOT DOWNLOAD OR USE THIS SDK IN THAT CASE.

NOTE:  You understand and agree that this Agreement is only for development purposes, and that Applications You develop using these SDK materials cannot be distributed or installed on an iOS Product unless You enter into a separate license agreement with Apple.  If You would like to load such Applications onto iOS Products or submit such Applications to the App Store, then You must apply to join the applicable iOS Developer Program.  More information is available at http://developer.apple.com/.  Apple reserves the right to refuse admission to any of its iOS Developer Programs at any time in its sole discretion. 

1.      Definitions
Whenever capitalized in this Agreement:

“Agreement” means this iOS SDK Agreement.

“App Store” means an electronic store and its storefronts branded, and owned and/or controlled by Apple or an affiliate of Apple. 

“Apple” means Apple Inc., a California corporation with its principal place of business at One Infinite Loop, Cupertino, California 95014, U.S.A.

“Application” means one or more software programs developed by You in compliance with this Agreement, under Your own trademark or brand, and for specific use with an iOS Product, including bug fixes, updates, upgrades, modifications, enhancements, supplements to, revisions, new releases and new versions of such software programs.

“Authorized Users” means Your employees and contractors or, if You are an educational institution, Your faculty and staff who (a) each have an active and valid Registered Apple Developer account with Apple, (b) have a demonstrable need to know or use the SDK in order to develop and test Applications, and (c) to the extent such individuals will have access to Apple Confidential Information, each have written and binding agreements with You to protect the unauthorized use and disclosure of such Apple and third party confidential information.

“Documentation” means any technical or other specifications or documentation that Apple may provide to You for use in connection with the SDK.

“FOSS” (Free and Open Source Software) means any software that is subject to terms that, as a condition of use, copying, modification or redistribution, require such software and/or derivative works thereof to be disclosed or distributed in source code form, to be licensed for the purpose of making derivative works, or to be redistributed free of charge, including without limitation software distributed under the GNU General Public License or GNU Lesser/Library GPL.

"iOS Developer Program Agreement" means a separate agreement that may be entered into between You and Apple regarding the provisioning of test devices for Your Applications, loading of Your Applications onto iOS Products for enterprise or educational purposes, and/or submission of Your Application to the App Store for approval and digital signing by Apple, among other things.

“iOS Product” means an Apple-branded product that runs Apple’s iOS operating system software (or any successor thereto). 

“Program Requirements” mean the technical, human interface, design, product category, security, performance, and other criteria and requirements for Applications specified by Apple in the iOS Developer Program Agreement.  

“SDK” (Software Development Kit) means the Documentation, software (source code and object code), applications, sample code, simulator, tools, libraries, APIs, data, files, and materials provided by Apple for use by You in connection with Your Application development, and includes any Updates that may be provided by Apple to You pursuant to this Agreement.  

“Term” means the period described in Section 6.

“Updates” means bug fixes, updates, upgrades, modifications, enhancements, supplements, and new releases or versions of the SDK, or to any part of the SDK.

“You” or “Your” means the person(s) or entity using the SDK or otherwise exercising rights under this Agreement.  If You are entering into this Agreement on behalf of Your company, organization, educational institution, or an agency, instrumentality, or department of the federal government, “You” or “Your” refers to your company, organization, educational institution or agency, instrumentality, or department of the federal government as well.

2.      SDK Internal Use License and Restrictions
2.1     Confidential Nature of Pre-Release SDK
Pre-release versions of the SDK constitute Apple Confidential Information and are subject to the confidentiality obligations of this Agreement. Such pre-release versions of the SDK should not be relied upon to perform in the same manner as a final-release, commercial-grade product, nor should they be used with data that is not sufficiently and regularly backed up. Distribution of Applications created with the SDK is not permitted absent a separate agreement with Apple. 

2.2     Permitted Uses and Restrictions
Subject to the terms and conditions of this Agreement, Apple hereby grants You during the Term, a limited, non-exclusive, personal, revocable, non-sublicensable and non-transferable license to:
(a)  Install a reasonable number of copies of the SDK on Apple-branded computers owned or controlled by You, to be used internally by You or Your Authorized Users for the sole purpose of developing or testing Applications; and
(b)  Make and distribute a reasonable number of copies of the Documentation to Your Authorized Users for Your internal use only and for the sole purpose of developing or testing Applications.

You understand and agree that Applications developed using these SDK materials cannot be installed or used on an iOS Product or submitted to the App Store unless You enter into a separate iOS Developer Program Agreement with Apple and comply with the Program Requirements.  Information regarding the iOS Developer Program Agreement and the Program Requirements is available within the iOS Developer Program website at http://developer.apple.com/programs/ios/information/index.html.  Apple reserves the right to change the Program Requirements and/or the terms of the iOS Developer Program Agreement from time to time. You are fully responsible for any and all costs, expenses or other liabilities You may incur as a result of Your Application development or use of this SDK.

2.3     Copies
You agree to retain and reproduce in full the Apple copyright, disclaimers and other proprietary notices (as they appear in the SDK and Documentation provided) in all copies of the SDK and Documentation that You are permitted to make under this Agreement.

2.4      Ownership
Apple retains all rights, title, and interest in and to the SDK. You agree to cooperate with Apple to maintain Apple's ownership of the SDK, and, to the extent that You become aware of any claims relating to the SDK, You agree to use reasonable efforts to promptly provide notice of any such claims to Apple. The parties acknowledge that this Agreement does not give Apple any ownership interest in Your Applications.

2.5     No Other Permitted Uses
Unless otherwise expressly permitted by Apple in writing, You agree not to rent, lease, lend, upload to or host on any website or server, sell, redistribute, or sublicense the SDK, in whole or in part, or to enable others to do so. You may not use the SDK for any purpose not expressly permitted by this Agreement. You agree not to install, use or run the SDK on any non-Apple-branded computer, or to enable others to do so. You may not and You agree not to, or to enable others to, copy (except as expressly permitted under this Agreement), decompile, reverse engineer, disassemble, attempt to derive the source code of, modify, decrypt, or create derivative works of the SDK or any services provided by the SDK, or any part thereof (except as and only to the extent any foregoing restriction is prohibited by applicable law, or to the extent as may be permitted by licensing terms governing use of open-sourced components or sample code included with the SDK). You agree not to exploit any services provided by the SDK in any unauthorized way whatsoever, including but not limited to, by trespass or burdening network capacity. Any attempt to do so is a violation of the rights of Apple and its licensors of the SDK or services provided by the SDK. If You breach any of the foregoing restrictions, You may be subject to prosecution and damages. All licenses not expressly granted in this Agreement are reserved and no other licenses, immunity or rights, express or implied are granted by Apple, by implication, estoppel, or otherwise. This Agreement does not grant You any rights to use any trademarks, logos or service marks belonging to Apple, including but not limited to the iPhone or iPod word marks. If You make reference to any Apple products or technology or use Apple’s trademarks, You agree to comply with the published guidelines at http://www.apple.com/legal/trademark/guidelinesfor3rdparties.html, as modified by Apple from time to time.

2.6     Updates; No Support or Maintenance
Apple may extend, enhance, or otherwise modify the SDK at any time without notice, but Apple shall not be obligated to provide You with any Updates to the SDK. If Updates are made available by Apple, the terms of this Agreement will govern such Updates, unless the Update is accompanied by a separate license in which case the terms of that license will govern. Apple is not obligated to provide any maintenance, technical or other support for the SDK. You acknowledge that Apple has no express or implied obligation to announce or make available any Updates of the SDK to anyone in the future. Should an Update be made available, it may have APIs, features, services or functionality that are different from those found in the SDK licensed hereunder.

3.      Your Obligations
3.1     General
You certify to Apple and agree that:
(a) You are of the legal age of majority in the jurisdiction in which You reside (at least 18 years of age in many countries) and have the right and authority to enter into this Agreement on Your own behalf, or if You are entering into this Agreement on behalf of Your company, organization, educational institution, or agency, instrumentality, or department of the federal government, that You have the right and authority to legally bind such entity or organization to the terms and obligations of this Agreement;     
(b) All information provided to Apple by You will be current, true, accurate, supportable and complete;
(c) You will comply with the terms of and fulfill Your obligations under this Agreement and You agree to monitor and be responsible for Your Authorized Users’ use of the SDK and their compliance with the terms of this Agreement; and
(d) You will be solely responsible for all costs, expenses, losses and liabilities incurred, and activities undertaken by You and Authorized Users in connection with the SDK, Your Applications and Your related development efforts.

3.2     Use of the SDK
As a condition to using the SDK, You agree that:
(a) You will only use the SDK for the purposes and in the manner expressly permitted by this Agreement and in accordance with all applicable laws and regulations;
(b) You will not use the SDK for any unlawful or illegal activity, nor to develop any Application which would commit or facilitate the commission of a crime, or other tortious, unlawful, or illegal act;
(c) You will not install or use Applications developed hereunder on any iOS Products or on any other hardware or device, except on Apple-branded computers as expressly permitted in Section 2.2(a);
(d) You will not distribute Applications created with the SDK absent a separate agreement with Apple;
(e) To the best of Your knowledge and belief, Your Application does not and will not violate, misappropriate, or infringe any Apple or third party copyrights, trademarks, rights of privacy and publicity, trade secrets, patents, or other proprietary or legal rights (e.g. musical composition or performance rights, video rights, photography or image rights, logo rights, third party data rights, etc. for content and materials that may be included in Your Application); and
(f) You will not, through use of the SDK or otherwise, create any Application or other program that would disable, hack or otherwise interfere with any security, digital signing, digital rights management, content protection, verification or authentication mechanisms implemented in or by the iOS operating system software, this SDK, or other Apple software, services or technology, or enable others to do so.

4.      Confidentiality
4.1     Information Deemed Apple Confidential
You agree that all pre-release versions of the SDK (including pre-release Documentation) will be deemed “Apple Confidential Information”; provided however that upon the commercial release of the SDK the terms and conditions that disclose pre-release features of the SDK will no longer be confidential. Other non-public information disclosed by Apple to You in connection with this Agreement will be deemed Apple Confidential Information under this Agreement only if it is identified or marked as "Confidential" if disclosed in writing, or is designated as being confidential at the time of disclosure, if disclosed orally or visually. Notwithstanding the foregoing, Apple Confidential Information will not include: (i) information that is generally and legitimately available to the public through no fault or breach of Yours, (ii) information that is generally made available to the public by Apple, (iii) information that is independently developed by You without the use of any Apple Confidential Information, (iv) information that was rightfully obtained from a third party who had the right to transfer or disclose it to You without limitation, or (v) any FOSS included in the SDK and accompanied by licensing terms that do not impose confidentiality obligations on the use or disclosure of such FOSS.

4.2     Obligations Regarding Apple Confidential Information
You agree to protect Apple Confidential Information using at least the same degree of care that You use to protect Your own confidential information of similar importance, but no less than a reasonable degree of care. You agree to use Apple Confidential Information solely for the purpose of exercising Your rights and performing Your obligations under this Agreement and agree not to use Apple Confidential Information for any other purpose, for Your own or any third party’s benefit, without Apple's prior written consent. You further agree not to disclose or disseminate Apple Confidential Information to anyone other than: (i) those of Your employees and contractors, or those of Your faculty and staff if You are an educational institution, who have a need to know and who are bound by a written agreement that prohibits unauthorized use or disclosure of the Apple Confidential Information; or (ii) except as otherwise agreed or permitted in writing by Apple. You may disclose Apple Confidential Information to the extent required by law, provided that You take reasonable steps to notify Apple of such requirement before disclosing the Apple Confidential Information and to obtain protective treatment of the Apple Confidential Information. You acknowledge that damages for improper disclosure of Apple Confidential Information may be irreparable; therefore, Apple is entitled to seek equitable relief, including injunction and preliminary injunction, in addition to all other remedies.

4.3     Information Submitted to Apple Not Deemed Confidential
Apple works with many application and software developers and some of their products may be similar to or compete with Your Applications. Apple may also be developing its own similar or competing applications and products or may decide to do so in the future. To avoid potential misunderstandings, Apple cannot agree, and expressly disclaims, any confidentiality obligations or use restrictions, express or implied, with respect to any information that You may provide in connection with this Agreement, including information about Your Application (such disclosures will be referred to as “Licensee Disclosures”). You agree that any such Licensee Disclosures will be non-confidential. Apple will be free to use and disclose any Licensee Disclosures on an unrestricted basis without notifying or compensating You. You release Apple from all liability and obligations that may arise from the receipt, review, use, or disclosure of any portion of any Licensee Disclosures. Any physical materials You submit to Apple will become Apple property and Apple will have no obligation to return those materials to You or to certify their destruction.

4.4     Press Releases and Other Publicity
You may not issue any press releases or make any other public statements regarding this Agreement, its terms and conditions, or the relationship of the parties without Apple’s express prior written approval, which may be withheld at Apple's discretion.

5.      Indemnification 
To the extent permitted by applicable law, You agree to indemnify, defend and hold harmless Apple, its directors, officers, employees, independent contractors and agents (each an "Apple Indemnified Party") from any and all claims, losses, liabilities, damages, expenses and costs (including without limitation attorneys' fees and court costs) (collectively "Losses") incurred by an Apple Indemnified Party as a result of Your breach of this Agreement, a breach of any certification, covenant, representation or warranty made by You in this Agreement, any claims that Your Applications violate or infringe any third party intellectual property or proprietary rights, or otherwise related to or arising from Your use of the SDK, Your Application(s) or Your development of Applications.

You acknowledge that the SDK is not intended for use in the development of Applications in which errors or inaccuracies in the content, functionality, services, data or information provided by the Application or the failure of the Application could lead to death, personal injury, or severe physical or environmental damage, and, to the extent permitted by law, You hereby agree to indemnify, defend and hold harmless each Apple Indemnified Party from any Losses incurred by such Apple Indemnified Party by reason of any such use.  In no event may You enter into any settlement or like agreement with a third party that affects Apple's rights or binds Apple in any way, without the prior written consent of Apple.

6.      Term and Termination
6.1     Term  
The license to use this version of the SDK is effective until terminated in accordance with Section 6.2.

6.2     Termination
This Agreement and all rights under this Agreement will terminate automatically or cease to be effective without notice from Apple if You or any of Your Authorized Users fail to comply with any term(s) of this Agreement. In addition, Apple reserves the right to terminate this Agreement if a new version of Apple’s iOS operating system software or the SDK is released which is incompatible with this version of the SDK.  Either party may terminate this Agreement for its convenience, for any reason or no reason, effective 30 days after providing the other party with written notice of its intent to terminate.

6.3     Effect of Termination
Upon the termination of this Agreement for any reason, You agree to immediately cease all use of the SDK and erase and destroy all copies, full or partial, of the SDK and all copies of Apple Confidential Information in Your and Your Authorized Users' possession or control. At Apple’s request, You agree to provide written certification of such destruction to Apple. The provisions of Sections 1, 2.4, 2.5, 3.1(d), 3.2(c), 3.2(d), 3.2(e), 3.2(f), 4, 5, 6, 7, 8, and 9 will survive any termination of this Agreement. Apple will not be liable for compensation, indemnity, or damages of any sort as a result of terminating this Agreement in accordance with its terms, and termination of this Agreement will be without prejudice to any other right or remedy Apple may have, now or in the future.  

7.      NO WARRANTY
The SDK may contain inaccuracies or errors that could cause failures or loss of data and it may be incomplete. Apple may, through the SDK, provide or make available services (collectively the “Services”). Apple and its licensors reserve the right to change, suspend, remove, or disable access to any Services at any time without notice. In no event will Apple be liable for the removal of or disabling of access to any such Services. Apple may also impose limits on the use of or access to certain Services, in any case and without notice or liability. YOU EXPRESSLY ACKNOWLEDGE AND AGREE THAT USE OF THE SDK AND SERVICES IS AT YOUR SOLE RISK AND THAT THE ENTIRE RISK AS TO SATISFACTORY QUALITY, PERFORMANCE, ACCURACY AND EFFORT IS WITH YOU. THE SDK AND SERVICES ARE PROVIDED "AS IS" AND "AS AVAILABLE", WITH ALL FAULTS AND WITHOUT WARRANTY OF ANY KIND, AND APPLE AND APPLE'S LICENSORS (COLLECTIVELY REFERRED TO AS "APPLE" FOR THE PURPOSES OF SECTIONS 7 AND 8) HEREBY DISCLAIM ALL WARRANTIES AND CONDITIONS WITH RESPECT TO THE SDK AND SERVICES, EITHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE, ACCURACY, TIMELINESS, AND NON-INFRINGEMENT OF THIRD PARTY RIGHTS. APPLE DOES NOT WARRANT AGAINST INTERFERENCE WITH YOUR ENJOYMENT OF THE SDK, THAT THE SDK OR SERVICES WILL MEET YOUR REQUIREMENTS, THAT THE OPERATION OF THE SDK OR SERVICES WILL BE UNINTERRUPTED OR ERROR-FREE, THAT DEFECTS IN THE SDK OR SERVICES WILL BE CORRECTED, OR THAT THE SDK OR SERVICES WILL BE COMPATIBLE WITH FUTURE APPLE PRODUCTS OR SOFTWARE. NO ORAL OR WRITTEN INFORMATION OR ADVICE GIVEN BY APPLE OR AN APPLE AUTHORIZED REPRESENTATIVE WILL CREATE A WARRANTY. SHOULD THE SDK OR SERVICES PROVE DEFECTIVE, YOU ASSUME THE ENTIRE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. Location data provided by any Services is for basic navigational purposes only and is not intended to be relied upon in situations where precise location information is needed or where erroneous, inaccurate or incomplete location data may lead to death, personal injury, property or environmental damage. Neither Apple nor any of its licensors guarantees the availability, accuracy, completeness, reliability, or timeliness of location data or any other data displayed by any Services.

8.      LIMITATION OF LIABILITY 
TO THE EXTENT NOT PROHIBITED BY APPLICABLE LAW, IN NO EVENT WILL APPLE BE LIABLE FOR PERSONAL INJURY, OR ANY INCIDENTAL, SPECIAL, INDIRECT, CONSEQUENTIAL OR PUNITIVE DAMAGES WHATSOEVER, INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF PROFITS, LOSS OF DATA, BUSINESS INTERRUPTION OR ANY OTHER COMMERCIAL DAMAGES OR LOSSES, ARISING OUT OF OR RELATED TO THIS AGREEMENT, YOUR USE OR INABILITY TO USE THE SDK OR SERVICES, OR YOUR DEVELOPMENT EFFORTS, HOWEVER CAUSED, WHETHER UNDER A THEORY OF CONTRACT, WARRANTY, TORT (INCLUDING NEGLIGENCE), PRODUCTS LIABILITY, OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, AND NOTWITHSTANDING THE FAILURE OF ESSENTIAL PURPOSE OF ANY REMEDY. In no event shall Apple’s total liability to You under this Agreement for all damages (other than as may be required by applicable law in cases involving personal injury) exceed the amount of fifty dollars ($50.00).

9.      General Legal Terms
9.1     Third Party Notices 
Portions of the SDK utilize or include third party software and other copyrighted material. Acknowledgements, licensing terms and disclaimers for such material are contained in the electronic documentation for the SDK, and Your use of such material is governed by their respective terms.

9.2     Consent to Collection and Use of Non-Personal Data 
You agree that Apple and its subsidiaries may collect and use technical and related information, including but not limited to information about Your Applications, computer, system software, other software and peripherals, that is gathered periodically to facilitate the provision of software updates and other services to You (if any) related to the SDK, and to verify compliance with the terms of this Agreement. Apple may use this information, as long as it is in a form that does not personally identify You, to improve the SDK, our products or to provide services or technologies to You and our customers.  

9.3     Assignment
This Agreement may not be assigned, nor may any of Your obligations under this Agreement be delegated, in whole or in part, by You by operation of law, merger, or any other means without Apple’s express prior written consent and any attempted assignment without such consent will be null and void.

9.4     Relationship of Parties  
This Agreement will not be construed as creating an agency, partnership, joint venture, fiduciary duty, or any other form of legal association between You and Apple, and You will not represent to the contrary, whether expressly, by implication, appearance or otherwise. This Agreement is not for the benefit of any third parties.

9.5     Independent Development 
Nothing in this Agreement will impair Apple's right to develop, acquire, license, market, promote, or distribute products or technologies that perform the same or similar functions as, or otherwise compete with, Your Applications or any other products or technologies that You may develop, produce, market, or distribute.

9.6     Notices
Any notices relating to this Agreement shall be in writing. Notices will be deemed given by Apple when sent to You at the email address You provided as part of Your Registered Apple Developer sign-up process. Notices to Apple will be deemed given (a) when delivered personally, (b) three business days after having been sent by commercial overnight carrier with written proof of delivery, and (c) five business days after having been sent by first class or certified mail, postage prepaid, to this Apple address:  iOS SDK Licensing, Apple Inc., 12545 Riata Vista Circle, MS 198-3SWL, Austin, TX 78727, USA. You consent to receive notices by email and agree that any such notices that Apple sends You electronically will satisfy any legal communication requirements. A party may change its email or mailing address by giving the other written notice as described above. 

9.7     Severability 
If a court of competent jurisdiction finds any clause of this Agreement to be unenforceable for any reason, that clause of this Agreement shall be enforced to the maximum extent permissible so as to effect the intent of the parties, and the remainder of this Agreement shall continue in full force and effect. However, if applicable law prohibits or restricts You from fully and specifically complying with the Sections of this Agreement entitled "SDK Internal Use License and Restrictions" or "Your Obligations" or prevents the enforceability of either of those Sections, this Agreement will immediately terminate and You must immediately discontinue any use of the SDK as described in the Section entitled “Term and Termination.”

9.8     Waiver and Construction  
Failure by Apple to enforce any provision of this Agreement shall not be deemed a waiver of future enforcement of that or any other provision. Any laws or regulations that provide that the language of a contract will be construed against the drafter will not apply to this Agreement. Section headings are for convenience only and are not to be considered in construing or interpreting this Agreement.

9.9     Export Control 
You may not use, export, re-export, import, sell or transfer the SDK except as authorized by United States law, the laws of the jurisdiction in which You obtained the SDK, and any other applicable laws and regulations. In particular, but without limitation, the SDK may not be exported or re-exported (a) into any U.S. embargoed countries or (b) to anyone on the U.S. Treasury Department’s list of Specially Designated Nationals or the U.S. Department of Commerce Denied Person’s List or Entity List. By using the SDK, You represent and warrant that You are not located in any such country or on any such list. You also agree that You will not use the SDK for any purposes prohibited by United States law, including, without limitation, the development, design, manufacture or production of nuclear, chemical or biological weapons.  

9.10    Government End Users 
The SDK and Documentation are “Commercial Items”, as that term is defined at 48 C.F.R. §2.101, consisting of “Commercial Computer Software” and “Commercial Computer Software Documentation”, as such terms are used in 48 C.F.R. §12.212 or 48 C.F.R. §227.7202, as applicable. Consistent with 48 C.F.R. §12.212 or 48 C.F.R. §227.7202-1 through 227.7202-4, as applicable, the Commercial Computer Software and Commercial Computer Software Documentation are being licensed to U.S. Government end users (a) only as Commercial Items and (b) with only those rights as are granted to all other end users pursuant to the terms and conditions herein. Unpublished-rights reserved under the copyright laws of the United States.

9.11    Dispute Resolution; Governing Law 
Any litigation or other dispute resolution between You and Apple arising out of or relating to this Agreement, the SDK, or Your relationship with Apple will take place in the Northern District of California, and You and Apple hereby consent to the personal jurisdiction of and exclusive venue in the state and federal courts within that District with respect any such litigation or dispute resolution. This Agreement will be governed by and construed in accordance with the laws of the United States and the State of California, except that body of California law concerning conflicts of law. 

Notwithstanding the foregoing, if You are an agency, instrumentality or department of the federal government of the United States, then this Agreement shall be governed in accordance with the laws of the United States of America, and in the absence of applicable federal law, the laws of the State of California will apply. Further, and notwithstanding anything to the contrary in this Agreement (including but not limited to Section 5 (Indemnification)), all claims, demands, complaints and disputes will be subject to the Contract Disputes Act (41 U.S.C. §§601-613), the Tucker Act (28 U.S.C. § 1346(a) and § 1491), or the Federal Tort Claims Act (28 U.S.C. §§ 1346(b), 2401-2402, 2671-2672, 2674-2680), as applicable, or other applicable governing authority.  

If You (as an entity entering into this Agreement) are a U.S. public and accredited educational institution, then (a) this Agreement will be governed and construed in accordance with the laws of the state (within the U.S.) in which Your educational institution is domiciled, except that body of state law concerning conflicts of law; and (b) any litigation or other dispute resolution between You and Apple arising out of or relating to this Agreement, the SDK, or Your relationship with Apple will take place in federal court within the Northern District of California, and You and Apple hereby consent to the personal jurisdiction of and exclusive venue of such District unless such consent is expressly prohibited by the laws of the state in which Your educational institution is domiciled.  

This Agreement shall not be governed by the United Nations Convention on Contracts for the International Sale of Goods, the application of which is expressly excluded.

9.12    Entire Agreement; Governing Language
This Agreement constitutes the entire agreement between the parties with respect to the use of the SDK licensed hereunder and supersedes all prior understandings regarding such subject matter. This Agreement may be modified only: (a) by a written amendment signed by both parties, or (b) to the extent expressly permitted by this Agreement (for example, by Apple by written or email notice to You). Any translation of this Agreement is done for local requirements and in the event of a dispute between the English and any non-English version, the English version of this Agreement shall govern. If You are located in the province of Quebec, Canada, the following clause applies: The parties hereby confirm that they have requested that this Agreement and all related documents be drafted in English. Les parties ont exigé que le présent contrat et tous les documents connexes soient rédigés en anglais.

EA1187
8/14/2014


By typing 'agree' you are agreeing to the terms of the software license agreements. Type 'print' to print them or anything else to cancel, [agree, print, cancel] agree

You can view the license agreements in Xcode's About Box, or at /Applications/Xcode.app/Contents/Resources/English.lproj/License.rtf

Making all in srclib
Making all in pcre
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c maketables.c && touch maketables.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c get.c && touch get.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c study.c && touch study.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c dftables.c && touch dftables.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc         -o dftables  dftables.lo 
./dftables /Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre/chartables.c
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c pcre.c && touch pcre.lo
pcre.c:3366:35: warning: use of logical '&&' with constant operand [-Wconstant-logical-operand]
        else if ((digitab[ptr[1]] && ctype_digit) != 0)
                                  ^  ~~~~~~~~~~~
pcre.c:3366:35: note: use '&' for a bitwise operation
        else if ((digitab[ptr[1]] && ctype_digit) != 0)
                                  ^~
                                  &
pcre.c:3366:35: note: remove constant to silence this warning
        else if ((digitab[ptr[1]] && ctype_digit) != 0)
                                 ~^~~~~~~~~~~~~~
1 warning generated.
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc         -o libpcre.la -static  maketables.lo get.lo study.lo pcre.lo  
Making all in os
Making all in unix
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c unixd.c && touch unixd.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc         -o libos.la -static  unixd.lo  
Making all in server
Making all in mpm
Making all in prefork
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c prefork.c && touch prefork.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc         -o libprefork.la -static  prefork.lo  
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c gen_test_char.c && touch gen_test_char.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc         -o gen_test_char  gen_test_char.lo 
./gen_test_char > test_char.h
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c config.c && touch config.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c log.c && touch log.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c main.c && touch main.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c vhost.c && touch vhost.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c util.c && touch util.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c util_script.c && touch util_script.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c util_md5.c && touch util_md5.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c util_cfgtree.c && touch util_cfgtree.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c util_ebcdic.c && touch util_ebcdic.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c util_time.c && touch util_time.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c connection.c && touch connection.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c listen.c && touch listen.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c mpm_common.c && touch mpm_common.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c util_charset.c && touch util_charset.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c util_debug.c && touch util_debug.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c util_xml.c && touch util_xml.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c util_filter.c && touch util_filter.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c util_pcre.c && touch util_pcre.lo
tmp=export_files_unsorted.txt; \
rm -f $tmp && touch $tmp; \
for dir in /Users/vsanzgir/Downloads/httpd-2.2.24/include /Users/vsanzgir/Downloads/httpd-2.2.24/os/unix /Users/vsanzgir/Downloads/httpd-2.2.24/modules/http; do \
   ls $dir/*.h >> $tmp; \
done; \
for dir in /usr/include/apr-1 /usr/include/apr-1; do \
   (ls $dir/ap[ru].h $dir/ap[ru]_*.h >> $tmp 2>/dev/null); \
done; \
sort -u $tmp > export_files; \
rm -f $tmp
awk -f /Users/vsanzgir/Downloads/httpd-2.2.24/build/make_exports.awk `cat export_files` > exports.c
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c exports.c && touch exports.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c scoreboard.c && touch scoreboard.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c error_bucket.c && touch error_bucket.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c protocol.c && touch protocol.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c core.c && touch core.lo
core.c:119:23: warning: implicit truncation from 'int' to bitfield changes value from 2 to -2 [-Wbitfield-constant-conversion]
    conf->content_md5 = 2;
                      ^ ~
1 warning generated.
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c request.c && touch request.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c provider.c && touch provider.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c eoc_bucket.c && touch eoc_bucket.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c core_filters.c && touch core_filters.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc         -o libmain.la -static  test_char.h config.lo log.lo main.lo vhost.lo util.lo util_script.lo util_md5.lo util_cfgtree.lo util_ebcdic.lo util_time.lo connection.lo listen.lo mpm_common.lo util_charset.lo util_debug.lo util_xml.lo util_filter.lo util_pcre.lo exports.lo scoreboard.lo error_bucket.lo protocol.lo core.lo request.lo provider.lo eoc_bucket.lo core_filters.lo  
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libmain.a(util_ebcdic.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libmain.a(util_charset.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/ranlib: file: .libs/libmain.a(util_ebcdic.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/ranlib: file: .libs/libmain.a(util_charset.o) has no symbols
awk -f /Users/vsanzgir/Downloads/httpd-2.2.24/build/make_var_export.awk `cat export_files` > export_vars.h
/Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc -E  -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main exports.c | grep "ap_hack_" | grep -v apr_ | sed -e 's/^.*[)]\(.*\);$/\1/' >> httpd.exp
/Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc -E  -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main export_vars.h | grep -v apr_ | sed -e 's/^\#[^!]*//' | sed -e '/^$/d' >> httpd.exp
Making all in modules
Making all in aaa
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c mod_authn_file.c && touch mod_authn_file.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc    -static     -o libmod_authn_file.la mod_authn_file.lo 
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c mod_authn_default.c && touch mod_authn_default.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc    -static     -o libmod_authn_default.la mod_authn_default.lo 
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c mod_authz_host.c && touch mod_authz_host.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc    -static     -o libmod_authz_host.la mod_authz_host.lo 
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c mod_authz_groupfile.c && touch mod_authz_groupfile.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc    -static     -o libmod_authz_groupfile.la mod_authz_groupfile.lo 
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c mod_authz_user.c && touch mod_authz_user.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc    -static     -o libmod_authz_user.la mod_authz_user.lo 
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c mod_authz_default.c && touch mod_authz_default.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc    -static     -o libmod_authz_default.la mod_authz_default.lo 
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c mod_auth_basic.c && touch mod_auth_basic.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc    -static     -o libmod_auth_basic.la mod_auth_basic.lo 
Making all in filters
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c mod_include.c && touch mod_include.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc    -static     -o libmod_include.la mod_include.lo 
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c mod_filter.c && touch mod_filter.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc    -static     -o libmod_filter.la mod_filter.lo 
Making all in loggers
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c mod_log_config.c && touch mod_log_config.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc    -static     -o libmod_log_config.la mod_log_config.lo 
Making all in metadata
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c mod_env.c && touch mod_env.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc    -static     -o libmod_env.la mod_env.lo 
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c mod_setenvif.c && touch mod_setenvif.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc    -static     -o libmod_setenvif.la mod_setenvif.lo 
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c mod_version.c && touch mod_version.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc    -static     -o libmod_version.la mod_version.lo 
Making all in http
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c http_core.c && touch http_core.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c http_protocol.c && touch http_protocol.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c http_request.c && touch http_request.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c http_filters.c && touch http_filters.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c chunk_filter.c && touch chunk_filter.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c byterange_filter.c && touch byterange_filter.lo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c http_etag.c && touch http_etag.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc    -static     -o libmod_http.la http_core.lo http_protocol.lo http_request.lo http_filters.lo chunk_filter.lo byterange_filter.lo http_etag.lo 
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c mod_mime.c && touch mod_mime.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc    -static     -o libmod_mime.la mod_mime.lo 
Making all in generators
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c mod_status.c && touch mod_status.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc    -static     -o libmod_status.la mod_status.lo 
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c mod_autoindex.c && touch mod_autoindex.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc    -static     -o libmod_autoindex.la mod_autoindex.lo 
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c mod_asis.c && touch mod_asis.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc    -static     -o libmod_asis.la mod_asis.lo 
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c mod_cgi.c && touch mod_cgi.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc    -static     -o libmod_cgi.la mod_cgi.lo 
Making all in mappers
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c mod_negotiation.c && touch mod_negotiation.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc    -static     -o libmod_negotiation.la mod_negotiation.lo 
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c mod_dir.c && touch mod_dir.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc    -static     -o libmod_dir.la mod_dir.lo 
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c mod_actions.c && touch mod_actions.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc    -static     -o libmod_actions.la mod_actions.lo 
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c mod_userdir.c && touch mod_userdir.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc    -static     -o libmod_userdir.la mod_userdir.lo 
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c mod_alias.c && touch mod_alias.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc    -static     -o libmod_alias.la mod_alias.lo 
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c mod_so.c && touch mod_so.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc    -static     -o libmod_so.la mod_so.lo 
Making all in support
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c htpasswd.c && touch htpasswd.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc         -o htpasswd  htpasswd.lo    /Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre/libpcre.la -L/usr/lib -R/usr/lib -laprutil-1 -lexpat -liconv -lsqlite3 -lldap -llber -L/usr/lib -R/usr/lib -lapr-1 -lpthread 
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c htdigest.c && touch htdigest.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc         -o htdigest  htdigest.lo    /Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre/libpcre.la -L/usr/lib -R/usr/lib -laprutil-1 -lexpat -liconv -lsqlite3 -lldap -llber -L/usr/lib -R/usr/lib -lapr-1 -lpthread
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c rotatelogs.c && touch rotatelogs.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc         -o rotatelogs  rotatelogs.lo    /Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre/libpcre.la -L/usr/lib -R/usr/lib -laprutil-1 -lexpat -liconv -lsqlite3 -lldap -llber -L/usr/lib -R/usr/lib -lapr-1 -lpthread
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c logresolve.c && touch logresolve.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc         -o logresolve  logresolve.lo    /Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre/libpcre.la -L/usr/lib -R/usr/lib -laprutil-1 -lexpat -liconv -lsqlite3 -lldap -llber -L/usr/lib -R/usr/lib -lapr-1 -lpthread
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c ab.c && touch ab.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc         -o ab  ab.lo    /Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre/libpcre.la -L/usr/lib -R/usr/lib -laprutil-1 -lexpat -liconv -lsqlite3 -lldap -llber -L/usr/lib -R/usr/lib -lapr-1 -lpthread 
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c htdbm.c && touch htdbm.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc         -o htdbm  htdbm.lo    /Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre/libpcre.la -L/usr/lib -R/usr/lib -laprutil-1 -lexpat -liconv -lsqlite3 -lldap -llber -L/usr/lib -R/usr/lib -lapr-1 -lpthread 
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c htcacheclean.c && touch htcacheclean.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc         -o htcacheclean  htcacheclean.lo    /Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre/libpcre.la -L/usr/lib -R/usr/lib -laprutil-1 -lexpat -liconv -lsqlite3 -lldap -llber -L/usr/lib -R/usr/lib -lapr-1 -lpthread
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c httxt2dbm.c && touch httxt2dbm.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc         -o httxt2dbm  httxt2dbm.lo    /Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre/libpcre.la -L/usr/lib -R/usr/lib -laprutil-1 -lexpat -liconv -lsqlite3 -lldap -llber -L/usr/lib -R/usr/lib -lapr-1 -lpthread
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c checkgid.c && touch checkgid.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc         -o checkgid  checkgid.lo    /Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre/libpcre.la -L/usr/lib -R/usr/lib -laprutil-1 -lexpat -liconv -lsqlite3 -lldap -llber -L/usr/lib -R/usr/lib -lapr-1 -lpthread
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c modules.c && touch modules.lo
/Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -c /Users/vsanzgir/Downloads/httpd-2.2.24/server/buildmark.c
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc         -o httpd  modules.lo buildmark.o -export-dynamic server/libmain.la modules/aaa/libmod_authn_file.la modules/aaa/libmod_authn_default.la modules/aaa/libmod_authz_host.la modules/aaa/libmod_authz_groupfile.la modules/aaa/libmod_authz_user.la modules/aaa/libmod_authz_default.la modules/aaa/libmod_auth_basic.la modules/filters/libmod_include.la modules/filters/libmod_filter.la modules/loggers/libmod_log_config.la modules/metadata/libmod_env.la modules/metadata/libmod_setenvif.la modules/metadata/libmod_version.la modules/http/libmod_http.la modules/http/libmod_mime.la modules/generators/libmod_status.la modules/generators/libmod_autoindex.la modules/generators/libmod_asis.la modules/generators/libmod_cgi.la modules/mappers/libmod_negotiation.la modules/mappers/libmod_dir.la modules/mappers/libmod_actions.la modules/mappers/libmod_userdir.la modules/mappers/libmod_alias.la modules/mappers/libmod_so.la server/mpm/prefork/libprefork.la os/unix/libos.la  /Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre/libpcre.la -L/usr/lib -R/usr/lib -laprutil-1 -lexpat -liconv -lsqlite3 -lldap -llber -L/usr/lib -R/usr/lib -lapr-1 -lpthread 
vyas:httpd-2.2.24 vsanzgir$ sudo make install
Making install in srclib
Making install in pcre
Making install in os
Making install in unix
Making install in server
Making install in mpm
Making install in prefork
Making install in modules
Making install in aaa
mkdir /usr/local/apache2
mkdir /usr/local/apache2/modules
Making install in filters
Making install in loggers
Making install in metadata
Making install in http
Making install in generators
Making install in mappers
Making install in support
mkdir /usr/local/apache2/bin
Installing configuration files
mkdir /usr/local/apache2/conf
mkdir /usr/local/apache2/conf/extra
mkdir /usr/local/apache2/conf/original
mkdir /usr/local/apache2/conf/original/extra
Installing HTML documents
mkdir /usr/local/apache2/htdocs
Installing error documents
mkdir /usr/local/apache2/error
Installing icons
mkdir /usr/local/apache2/icons
mkdir /usr/local/apache2/logs
Installing CGIs
mkdir /usr/local/apache2/cgi-bin
Installing header files
mkdir /usr/local/apache2/include
Installing build system files
mkdir /usr/local/apache2/build
Installing man pages and online manual
mkdir /usr/local/apache2/man
mkdir /usr/local/apache2/man/man1
mkdir /usr/local/apache2/man/man8
mkdir /usr/local/apache2/manual
vyas:httpd-2.2.24 vsanzgir$ /usr/local/apache2/bin/httpd -v
Server version: Apache/2.2.24 (Unix)
Server built:   Jan 22 2015 00:40:38
vyas:httpd-2.2.24 vsanzgir$ sudo /usr/local/apache2/bin/apachectl start
httpd: Could not reliably determine the server's fully qualified domain name, using ::1 for ServerName

vyas:httpd-2.2.24 vsanzgir$ ./configure --prefix=/usr/local/apache2 --enable-mods-shared='authz_host include deflate log_config mime_magic headers setenvif proxy ssl mime vhost_alias rewrite'
checking for chosen layout... Apache
checking for working mkdir -p... yes
checking build system type... x86_64-apple-darwin14.1.0
checking host system type... x86_64-apple-darwin14.1.0
checking target system type... x86_64-apple-darwin14.1.0

Configuring Apache Portable Runtime library ...

checking for APR... yes
  setting CC to "/Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc"
  setting CPP to "/Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc -E"
  setting CFLAGS to " "
  setting CPPFLAGS to " -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10"
  setting LDFLAGS to " "

Configuring Apache Portable Runtime Utility library...

checking for APR-util... yes
checking for gcc... /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc accepts -g... yes
checking for /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc option to accept ISO C89... none needed
checking how to run the C preprocessor... /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc -E
configure: Configuring PCRE regular expression library
configuring package in srclib/pcre now
checking for gcc... /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc accepts -g... yes
checking for /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc option to accept ISO C89... none needed
checking how to run the C preprocessor... /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc -E
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking for an ANSI C-conforming const... yes
checking for size_t... yes
checking for bcopy... yes
checking for memmove... yes
checking for strerror... yes
configure: creating ./config.status
config.status: creating Makefile
config.status: creating pcre.h
config.status: creating pcre-config
config.status: creating config.h
config.status: config.h is unchanged
config.status: executing default commands
srclib/pcre configured properly
  setting AP_LIBS to "/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre/libpcre.la"
  setting INCLUDES to "-I$(top_builddir)/srclib/pcre"

Configuring Apache httpd ...

  adding "-I." to INCLUDES
  adding "-I$(top_srcdir)/os/$(OS_DIR)" to INCLUDES
  adding "-I$(top_srcdir)/server/mpm/$(MPM_SUBDIR_NAME)" to INCLUDES
  adding "-I$(top_srcdir)/modules/http" to INCLUDES
  adding "-I$(top_srcdir)/modules/filters" to INCLUDES
  adding "-I$(top_srcdir)/modules/proxy" to INCLUDES
  adding "-I$(top_srcdir)/include" to INCLUDES
  adding "-I$(top_srcdir)/modules/generators" to INCLUDES
  adding "-I$(top_srcdir)/modules/mappers" to INCLUDES
  adding "-I$(top_srcdir)/modules/database" to INCLUDES
  adding "-I/usr/include/apr-1" to INCLUDES

Applying OS-specific hints for httpd ...

  forcing SINGLE_LISTEN_UNSERIALIZED_ACCEPT to "1"
  forcing AP_NONBLOCK_WHEN_MULTI_LISTEN to "1"
checking for rm... /bin/rm
checking for pkg-config... no
checking for rsync... /usr/bin/rsync
checking for gawk... no
checking for mawk... no
checking for nawk... no
checking for awk... awk
checking whether ln -s works... yes
checking for ranlib... ranlib
checking for lynx... no
checking for links... no
checking for elinks... no
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking for library containing strerror... none required
checking for APR version 1.2.0 or later... yes
checking for APR-util version 1.2.0 or later... yes
checking for ANSI C header files... (cached) yes
checking for string.h... (cached) yes
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking for unistd.h... (cached) yes
checking sys/socket.h usability... yes
checking sys/socket.h presence... yes
checking for sys/socket.h... yes
checking pwd.h usability... yes
checking pwd.h presence... yes
checking for pwd.h... yes
checking grp.h usability... yes
checking grp.h presence... yes
checking for grp.h... yes
checking for strings.h... (cached) yes
checking sys/prctl.h usability... no
checking sys/prctl.h presence... no
checking for sys/prctl.h... no
checking sys/processor.h usability... no
checking sys/processor.h presence... no
checking for sys/processor.h... no
checking sys/sem.h usability... yes
checking sys/sem.h presence... yes
checking for sys/sem.h... yes
checking for sys/wait.h that is POSIX.1 compatible... yes
checking for an ANSI C-conforming const... yes
checking for library containing sqrt... none required
checking for library containing crypt... none required
checking for getpwnam... yes
checking for getgrnam... yes
checking for initgroups... yes
checking for bindprocessor... no
checking for prctl... no
checking for timegm... yes
checking for getpgid... yes
checking for void pointer length... no
checking for tm_gmtoff in struct tm... yes
checking whether to enable mod_authn_file... yes (default)
checking whether to enable mod_authn_dbm... no
checking whether to enable mod_authn_anon... no
checking whether to enable mod_authn_dbd... no
checking whether to enable mod_authn_default... yes (default)
checking whether to enable mod_authn_alias... no
checking whether to enable mod_authz_host... shared
checking whether to enable mod_authz_groupfile... yes (default)
checking whether to enable mod_authz_user... yes (default)
checking whether to enable mod_authz_dbm... no
checking whether to enable mod_authz_owner... no
checking whether to enable mod_authnz_ldap... no
checking whether to enable mod_authz_default... yes (default)
checking whether to enable mod_auth_basic... yes (default)
checking whether to enable mod_auth_digest... no
checking whether to enable mod_isapi... no
checking whether to enable mod_file_cache... no
checking whether to enable mod_cache... no
checking whether to enable mod_disk_cache... no
checking whether to enable mod_mem_cache... no
checking whether to enable mod_dbd... no
checking whether to enable mod_bucketeer... no
checking whether to enable mod_dumpio... no
checking whether to enable mod_echo... no
checking whether to enable mod_example... no
checking whether to enable mod_case_filter... no
checking whether to enable mod_case_filter_in... no
checking whether to enable mod_reqtimeout... no
checking whether to enable mod_ext_filter... no
checking whether to enable mod_include... shared
checking whether to enable mod_filter... yes (default)
checking whether to enable mod_substitute... no
checking whether to enable mod_charset_lite... no
checking whether to enable mod_deflate... checking dependencies
checking for zlib location... /usr
  setting LIBS to "-lz"
checking for zlib library... found
  forcing MOD_DEFLATE_LDADD to "-lz"
  nulling LIBS
checking whether to enable mod_deflate... shared
checking whether to enable mod_ldap... no
checking whether to enable mod_log_config... shared
checking whether to enable mod_log_forensic... no
checking whether to enable mod_logio... no
checking whether to enable mod_env... yes (default)
checking whether to enable mod_mime_magic... shared
checking whether to enable mod_cern_meta... no
checking whether to enable mod_expires... no
checking whether to enable mod_headers... shared
checking whether to enable mod_ident... no
checking whether to enable mod_usertrack... no
checking whether to enable mod_unique_id... no
checking whether to enable mod_setenvif... shared
checking whether to enable mod_version... yes (default)
checking whether to enable mod_proxy... shared
checking whether to enable mod_proxy_connect... shared
checking whether to enable mod_proxy_ftp... shared
checking whether to enable mod_proxy_http... shared
checking whether to enable mod_proxy_scgi... shared
checking whether to enable mod_proxy_ajp... shared
checking whether to enable mod_proxy_balancer... shared
  adding "-I$(top_srcdir)/modules/proxy/../generators" to INCLUDES
checking whether to enable mod_ssl... checking dependencies
checking for SSL/TLS toolkit base... none
checking for OpenSSL version... checking openssl/opensslv.h usability... yes
checking openssl/opensslv.h presence... yes
checking for openssl/opensslv.h... yes
checking openssl/ssl.h usability... yes
checking openssl/ssl.h presence... yes
checking for openssl/ssl.h... yes
OK
  forcing SSL_LIBS to "-lssl -lcrypto  -lpthread"
  setting LIBS to "-lssl -lcrypto  -lpthread"
checking openssl/engine.h usability... yes
checking openssl/engine.h presence... yes
checking for openssl/engine.h... yes
checking for SSLeay_version... yes
checking for SSL_CTX_new... yes
checking for ENGINE_init... yes
checking for ENGINE_load_builtin_engines... yes
checking for SSL_set_cert_store... no
  forcing MOD_SSL_LDADD to "$(SSL_LIBS)"
checking whether Distcache is required... no (default)
  adding "-export-symbols-regex" to MOD_SSL_LDADD
  adding "ssl_module" to MOD_SSL_LDADD
checking whether to enable mod_ssl... shared
  adding "-I$(top_srcdir)/modules/ssl" to INCLUDES
checking whether to enable mod_optional_hook_export... no
checking whether to enable mod_optional_hook_import... no
checking whether to enable mod_optional_fn_import... no
checking whether to enable mod_optional_fn_export... no
checking for target platform... unix
checking for rlim_t... yes
checking sys/time.h usability... yes
checking sys/time.h presence... yes
checking for sys/time.h... yes
checking sys/resource.h usability... yes
checking sys/resource.h presence... yes
checking for sys/resource.h... yes
checking for sys/sem.h... (cached) yes
checking sys/ipc.h usability... yes
checking sys/ipc.h presence... yes
checking for sys/ipc.h... yes
checking for setsid... yes
checking for killpg... yes
checking bstring.h usability... no
checking bstring.h presence... no
checking for bstring.h... no
checking for unistd.h... (cached) yes
checking for syslog... yes
checking sys/times.h usability... yes
checking sys/times.h presence... yes
checking for sys/times.h... yes
checking for times... yes
checking which MPM to use... prefork
./configure: line 15643: ulimit: open files: cannot modify limit: Invalid argument
checking whether to enable mod_http... yes
checking whether to enable mod_mime... shared
checking for extra modules... none
checking whether to enable mod_dav... no
  adding "-I$(top_srcdir)/modules/dav/main" to INCLUDES
checking whether to enable mod_status... yes (default)
checking whether to enable mod_autoindex... yes (default)
checking whether to enable mod_asis... yes (default)
checking whether to enable mod_info... no
checking whether to enable mod_suexec... no
checking whether to enable mod_cgi... yes (default)
checking whether to enable mod_cgid... no
checking whether to enable mod_dav_fs... no
checking whether to enable mod_dav_lock... no
checking whether to enable mod_vhost_alias... shared
checking whether to enable mod_negotiation... yes (default)
checking whether to enable mod_dir... yes (default)
checking whether to enable mod_imagemap... no
checking whether to enable mod_actions... yes (default)
checking whether to enable mod_speling... no
checking whether to enable mod_userdir... yes (default)
checking whether to enable mod_alias... yes (default)
checking whether to enable mod_rewrite... shared
  setting HTTPD_LDFLAGS to "-export-dynamic"
checking whether to enable mod_so... yes

Restore user-defined environment settings...

  restoring CPPFLAGS to ""
  setting EXTRA_CPPFLAGS to " -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10"
  restoring CFLAGS to ""
  setting EXTRA_CFLAGS to " "
  restoring CXXFLAGS to ""
  setting EXTRA_CXXFLAGS to ""
  restoring LDFLAGS to ""
  setting EXTRA_LDFLAGS to " "
  restoring LIBS to ""
  setting EXTRA_LIBS to ""
  restoring INCLUDES to ""
  setting EXTRA_INCLUDES to "-I$(top_builddir)/srclib/pcre -I. -I$(top_srcdir)/os/$(OS_DIR) -I$(top_srcdir)/server/mpm/$(MPM_SUBDIR_NAME) -I$(top_srcdir)/modules/http -I$(top_srcdir)/modules/filters -I$(top_srcdir)/modules/proxy -I$(top_srcdir)/include -I$(top_srcdir)/modules/generators -I$(top_srcdir)/modules/mappers -I$(top_srcdir)/modules/database -I/usr/include/apr-1 -I$(top_srcdir)/modules/proxy/../generators -I$(top_srcdir)/modules/ssl -I$(top_srcdir)/modules/dav/main"

Construct makefiles and header files...

creating config_vars.mk
configure: creating ./config.status
creating modules/aaa/Makefile
creating modules/arch/win32/Makefile
creating modules/cache/Makefile
creating modules/database/Makefile
creating modules/debug/Makefile
creating modules/echo/Makefile
creating modules/experimental/Makefile
creating modules/filters/Makefile
creating modules/ldap/Makefile
creating modules/loggers/Makefile
creating modules/metadata/Makefile
creating modules/proxy/Makefile
creating modules/ssl/Makefile
creating modules/test/Makefile
creating os/unix/Makefile
creating server/mpm/Makefile
creating server/mpm/prefork/Makefile
creating modules/http/Makefile
creating modules/dav/main/Makefile
creating modules/generators/Makefile
creating modules/dav/fs/Makefile
creating modules/dav/lock/Makefile
creating modules/mappers/Makefile
creating Makefile
creating modules/Makefile
creating srclib/Makefile
creating os/Makefile
creating server/Makefile
creating support/Makefile
creating srclib/pcre/Makefile
creating test/Makefile
config.status: creating docs/conf/httpd.conf
config.status: creating docs/conf/extra/httpd-autoindex.conf
config.status: creating docs/conf/extra/httpd-dav.conf
config.status: creating docs/conf/extra/httpd-default.conf
config.status: creating docs/conf/extra/httpd-info.conf
config.status: creating docs/conf/extra/httpd-languages.conf
config.status: creating docs/conf/extra/httpd-manual.conf
config.status: creating docs/conf/extra/httpd-mpm.conf
config.status: creating docs/conf/extra/httpd-multilang-errordoc.conf
config.status: creating docs/conf/extra/httpd-ssl.conf
config.status: creating docs/conf/extra/httpd-userdir.conf
config.status: creating docs/conf/extra/httpd-vhosts.conf
config.status: creating include/ap_config_layout.h
config.status: creating support/apxs
config.status: creating support/apachectl
config.status: creating support/dbmmanage
config.status: creating support/envvars-std
config.status: creating support/log_server_status
config.status: creating support/logresolve.pl
config.status: creating support/phf_abuse_log.cgi
config.status: creating support/split-logfile
config.status: creating build/rules.mk
config.status: creating build/pkg/pkginfo
config.status: creating build/config_vars.sh
config.status: creating include/ap_config_auto.h
config.status: executing default commands
vyas:httpd-2.2.24 vsanzgir$ make
Making all in srclib
Making all in pcre
make[3]: Nothing to be done for `local-all'.
Making all in os
Making all in unix
make[3]: Nothing to be done for `local-all'.
Making all in server
Making all in mpm
Making all in prefork
make[4]: Nothing to be done for `local-all'.
Found newer headers. Will rebuild exports.c.
rm -f exports.c export_files
tmp=export_files_unsorted.txt; \
rm -f $tmp && touch $tmp; \
for dir in /Users/vsanzgir/Downloads/httpd-2.2.24/include /Users/vsanzgir/Downloads/httpd-2.2.24/os/unix /Users/vsanzgir/Downloads/httpd-2.2.24/modules/http; do \
   ls $dir/*.h >> $tmp; \
done; \
for dir in /usr/include/apr-1 /usr/include/apr-1; do \
   (ls $dir/ap[ru].h $dir/ap[ru]_*.h >> $tmp 2>/dev/null); \
done; \
sort -u $tmp > export_files; \
rm -f $tmp
awk -f /Users/vsanzgir/Downloads/httpd-2.2.24/build/make_exports.awk `cat export_files` > exports.c
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c exports.c && touch exports.lo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc         -o libmain.la -static  test_char.h config.lo log.lo main.lo vhost.lo util.lo util_script.lo util_md5.lo util_cfgtree.lo util_ebcdic.lo util_time.lo connection.lo listen.lo mpm_common.lo util_charset.lo util_debug.lo util_xml.lo util_filter.lo util_pcre.lo exports.lo scoreboard.lo error_bucket.lo protocol.lo core.lo request.lo provider.lo eoc_bucket.lo core_filters.lo  
rm: .libs/libmain.a: Permission denied
rm: .libs/libmain.la: Permission denied
ar: .libs/libmain.a: Permission denied
make[2]: *** [libmain.la] Error 1
make[1]: *** [all-recursive] Error 1
make: *** [all-recursive] Error 1
vyas:httpd-2.2.24 vsanzgir$ sudo make
Making all in srclib
Making all in pcre
make[3]: Nothing to be done for `local-all'.
Making all in os
Making all in unix
make[3]: Nothing to be done for `local-all'.
Making all in server
Making all in mpm
Making all in prefork
make[4]: Nothing to be done for `local-all'.
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc         -o libmain.la -static  test_char.h config.lo log.lo main.lo vhost.lo util.lo util_script.lo util_md5.lo util_cfgtree.lo util_ebcdic.lo util_time.lo connection.lo listen.lo mpm_common.lo util_charset.lo util_debug.lo util_xml.lo util_filter.lo util_pcre.lo exports.lo scoreboard.lo error_bucket.lo protocol.lo core.lo request.lo provider.lo eoc_bucket.lo core_filters.lo  
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libmain.a(util_ebcdic.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/libmain.a(util_charset.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/ranlib: file: .libs/libmain.a(util_ebcdic.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/ranlib: file: .libs/libmain.a(util_charset.o) has no symbols
awk -f /Users/vsanzgir/Downloads/httpd-2.2.24/build/make_var_export.awk `cat export_files` > export_vars.h
/Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc -E  -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main exports.c | grep "ap_hack_" | grep -v apr_ | sed -e 's/^.*[)]\(.*\);$/\1/' >> httpd.exp
/Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc -E  -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main export_vars.h | grep -v apr_ | sed -e 's/^\#[^!]*//' | sed -e '/^$/d' >> httpd.exp
Making all in modules
Making all in aaa
make[3]: Nothing to be done for `local-all'.
Making all in filters
make[3]: Nothing to be done for `local-all'.
Making all in loggers
Making all in metadata
make[3]: Nothing to be done for `local-all'.
Making all in proxy
Making all in ssl
Making all in http
make[3]: Nothing to be done for `local-all'.
Making all in generators
make[3]: Nothing to be done for `local-all'.
Making all in mappers
make[3]: Nothing to be done for `local-all'.
Making all in support
make[2]: Nothing to be done for `local-all'.
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -prefer-non-pic -static -c modules.c && touch modules.lo
/Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main  -c /Users/vsanzgir/Downloads/httpd-2.2.24/server/buildmark.c
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc         -o httpd  modules.lo buildmark.o -export-dynamic server/libmain.la modules/aaa/libmod_authn_file.la modules/aaa/libmod_authn_default.la modules/aaa/libmod_authz_groupfile.la modules/aaa/libmod_authz_user.la modules/aaa/libmod_authz_default.la modules/aaa/libmod_auth_basic.la modules/filters/libmod_filter.la modules/metadata/libmod_env.la modules/metadata/libmod_version.la modules/http/libmod_http.la modules/generators/libmod_status.la modules/generators/libmod_autoindex.la modules/generators/libmod_asis.la modules/generators/libmod_cgi.la modules/mappers/libmod_negotiation.la modules/mappers/libmod_dir.la modules/mappers/libmod_actions.la modules/mappers/libmod_userdir.la modules/mappers/libmod_alias.la modules/mappers/libmod_so.la server/mpm/prefork/libprefork.la os/unix/libos.la  /Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre/libpcre.la -L/usr/lib -R/usr/lib -laprutil-1 -lexpat -liconv -lsqlite3 -lldap -llber -L/usr/lib -R/usr/lib -lapr-1 -lpthread 

Building shared: mod_authz_host.la
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c mod_authz_host.c && touch mod_authz_host.slo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc           -o mod_authz_host.la -rpath /usr/local/apache2/modules -module -avoid-version  mod_authz_host.lo 
Building shared: mod_include.la mod_deflate.la
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c mod_include.c && touch mod_include.slo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc           -o mod_include.la -rpath /usr/local/apache2/modules -module -avoid-version  mod_include.lo 
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c mod_deflate.c && touch mod_deflate.slo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc           -o mod_deflate.la -rpath /usr/local/apache2/modules -module -avoid-version  mod_deflate.lo -lz
Building shared: mod_log_config.la
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c mod_log_config.c && touch mod_log_config.slo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc           -o mod_log_config.la -rpath /usr/local/apache2/modules -module -avoid-version  mod_log_config.lo 
Building shared: mod_mime_magic.la mod_headers.la mod_setenvif.la
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c mod_mime_magic.c && touch mod_mime_magic.slo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc           -o mod_mime_magic.la -rpath /usr/local/apache2/modules -module -avoid-version  mod_mime_magic.lo 
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c mod_headers.c && touch mod_headers.slo
mod_headers.c:330:16: warning: expression which evaluates to zero treated as a null pointer constant of type 'char *' [-Wnon-literal-null-conversion]
    tag->arg = '\0';
               ^~~~
1 warning generated.
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc           -o mod_headers.la -rpath /usr/local/apache2/modules -module -avoid-version  mod_headers.lo 
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c mod_setenvif.c && touch mod_setenvif.slo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc           -o mod_setenvif.la -rpath /usr/local/apache2/modules -module -avoid-version  mod_setenvif.lo 
Building shared: mod_proxy.la mod_proxy_connect.la mod_proxy_ftp.la mod_proxy_http.la mod_proxy_scgi.la mod_proxy_ajp.la mod_proxy_balancer.la
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c mod_proxy.c && touch mod_proxy.slo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c proxy_util.c && touch proxy_util.slo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc           -o mod_proxy.la -rpath /usr/local/apache2/modules -module -avoid-version  mod_proxy.lo proxy_util.lo 
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c mod_proxy_connect.c && touch mod_proxy_connect.slo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc           -o mod_proxy_connect.la -rpath /usr/local/apache2/modules -module -avoid-version  mod_proxy_connect.lo 
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c mod_proxy_ftp.c && touch mod_proxy_ftp.slo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc           -o mod_proxy_ftp.la -rpath /usr/local/apache2/modules -module -avoid-version  mod_proxy_ftp.lo 
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c mod_proxy_http.c && touch mod_proxy_http.slo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc           -o mod_proxy_http.la -rpath /usr/local/apache2/modules -module -avoid-version  mod_proxy_http.lo 
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c mod_proxy_scgi.c && touch mod_proxy_scgi.slo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc           -o mod_proxy_scgi.la -rpath /usr/local/apache2/modules -module -avoid-version  mod_proxy_scgi.lo 
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c mod_proxy_ajp.c && touch mod_proxy_ajp.slo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c ajp_header.c && touch ajp_header.slo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c ajp_link.c && touch ajp_link.slo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c ajp_msg.c && touch ajp_msg.slo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c ajp_utils.c && touch ajp_utils.slo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc           -o mod_proxy_ajp.la -rpath /usr/local/apache2/modules -module -avoid-version  mod_proxy_ajp.lo ajp_header.lo ajp_link.lo ajp_msg.lo ajp_utils.lo 
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c mod_proxy_balancer.c && touch mod_proxy_balancer.slo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc           -o mod_proxy_balancer.la -rpath /usr/local/apache2/modules -module -avoid-version  mod_proxy_balancer.lo 
Building shared: mod_ssl.la
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c mod_ssl.c && touch mod_ssl.slo
mod_ssl.c:254:5: warning: 'CONF_modules_unload' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    CONF_modules_unload(1);
    ^
/usr/include/openssl/conf.h:182:6: note: 'CONF_modules_unload' has been explicitly marked deprecated here
void CONF_modules_unload(int all) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
mod_ssl.c:258:5: warning: 'EVP_cleanup' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    EVP_cleanup();
    ^
/usr/include/openssl/evp.h:843:6: note: 'EVP_cleanup' has been explicitly marked deprecated here
void EVP_cleanup(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
mod_ssl.c:260:5: warning: 'ENGINE_cleanup' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    ENGINE_cleanup();
    ^
/usr/include/openssl/engine.h:490:6: note: 'ENGINE_cleanup' has been explicitly marked deprecated here
void ENGINE_cleanup(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
mod_ssl.c:262:5: warning: 'ERR_remove_state' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    ERR_remove_state(0);
    ^
/usr/include/openssl/err.h:299:6: note: 'ERR_remove_state' has been explicitly marked deprecated here
void ERR_remove_state(unsigned long pid) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER; /* if zero we look it up */
     ^
mod_ssl.c:289:5: warning: 'CRYPTO_set_mem_functions' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    CRYPTO_malloc_init();
    ^
/usr/include/openssl/crypto.h:341:30: note: expanded from macro 'CRYPTO_malloc_init'
#define CRYPTO_malloc_init()    CRYPTO_set_mem_functions(\
                                ^
/usr/include/openssl/crypto.h:447:5: note: 'CRYPTO_set_mem_functions' has been explicitly marked deprecated here
int CRYPTO_set_mem_functions(void *(*m)(size_t),void *(*r)(void *,size_t), void (*f)(void *)) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
mod_ssl.c:291:5: warning: 'ERR_load_crypto_strings' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    ERR_load_crypto_strings();
    ^
/usr/include/openssl/err.h:296:6: note: 'ERR_load_crypto_strings' has been explicitly marked deprecated here
void ERR_load_crypto_strings(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
mod_ssl.c:293:5: warning: 'SSL_load_error_strings' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    SSL_load_error_strings();
    ^
/usr/include/openssl/ssl.h:1421:6: note: 'SSL_load_error_strings' has been explicitly marked deprecated here
void    SSL_load_error_strings(void ) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
mod_ssl.c:294:5: warning: 'SSL_library_init' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    SSL_library_init();
    ^
/usr/include/openssl/ssl.h:1558:5: note: 'SSL_library_init' has been explicitly marked deprecated here
int SSL_library_init(void ) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
mod_ssl.c:296:5: warning: 'ENGINE_load_builtin_engines' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    ENGINE_load_builtin_engines();
    ^
/usr/include/openssl/engine.h:348:6: note: 'ENGINE_load_builtin_engines' has been explicitly marked deprecated here
void ENGINE_load_builtin_engines(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
mod_ssl.c:299:5: warning: 'OPENSSL_add_all_algorithms_noconf' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    OpenSSL_add_all_algorithms();
    ^
/usr/include/openssl/evp.h:829:3: note: expanded from macro 'OpenSSL_add_all_algorithms'
                OPENSSL_add_all_algorithms_noconf()
                ^
/usr/include/openssl/evp.h:821:6: note: 'OPENSSL_add_all_algorithms_noconf' has been explicitly marked deprecated here
void OPENSSL_add_all_algorithms_noconf(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
mod_ssl.c:301:5: warning: 'OPENSSL_load_builtin_modules' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    OPENSSL_load_builtin_modules();
    ^
/usr/include/openssl/conf.h:203:6: note: 'OPENSSL_load_builtin_modules' has been explicitly marked deprecated here
void OPENSSL_load_builtin_modules(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
mod_ssl.c:408:17: warning: 'SSL_new' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if (!(ssl = SSL_new(mctx->ssl_ctx))) {
                ^
/usr/include/openssl/ssl.h:1486:7: note: 'SSL_new' has been explicitly marked deprecated here
SSL *   SSL_new(SSL_CTX *ctx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
mod_ssl.c:422:10: warning: 'SSL_set_session_id_context' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if (!SSL_set_session_id_context(ssl, (unsigned char *)vhost_md5,
         ^
/usr/include/openssl/ssl.h:1487:5: note: 'SSL_set_session_id_context' has been explicitly marked deprecated here
int     SSL_set_session_id_context(SSL *ssl,const unsigned char *sid_ctx,
        ^
mod_ssl.c:434:5: warning: 'SSL_set_ex_data' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    SSL_set_app_data(ssl, c);
    ^
/usr/include/openssl/ssl.h:1080:35: note: expanded from macro 'SSL_set_app_data'
#define SSL_set_app_data(s,arg)         (SSL_set_ex_data(s,0,(char *)arg))
                                         ^
/usr/include/openssl/ssl.h:1591:5: note: 'SSL_set_ex_data' has been explicitly marked deprecated here
int SSL_set_ex_data(SSL *ssl,int idx,void *data) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
mod_ssl.c:442:5: warning: 'SSL_set_tmp_rsa_callback' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    SSL_set_tmp_rsa_callback(ssl, ssl_callback_TmpRSA);
    ^
/usr/include/openssl/ssl.h:1638:6: note: 'SSL_set_tmp_rsa_callback' has been explicitly marked deprecated here
void SSL_set_tmp_rsa_callback(SSL *ssl,
     ^
mod_ssl.c:443:5: warning: 'SSL_set_tmp_dh_callback' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    SSL_set_tmp_dh_callback(ssl,  ssl_callback_TmpDH);
    ^
/usr/include/openssl/ssl.h:1646:6: note: 'SSL_set_tmp_dh_callback' has been explicitly marked deprecated here
void SSL_set_tmp_dh_callback(SSL *ssl,
     ^
mod_ssl.c:445:5: warning: 'SSL_set_verify_result' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    SSL_set_verify_result(ssl, X509_V_OK);
    ^
/usr/include/openssl/ssl.h:1588:6: note: 'SSL_set_verify_result' has been explicitly marked deprecated here
void SSL_set_verify_result(SSL *ssl,long v) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
17 warnings generated.
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c ssl_engine_config.c && touch ssl_engine_config.slo
ssl_engine_config.c:520:19: warning: 'ENGINE_by_id' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    else if ((e = ENGINE_by_id(arg))) {
                  ^
/usr/include/openssl/engine.h:324:9: note: 'ENGINE_by_id' has been explicitly marked deprecated here
ENGINE *ENGINE_by_id(const char *id) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_config.c:522:9: warning: 'ENGINE_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        ENGINE_free(e);
        ^
/usr/include/openssl/engine.h:457:5: note: 'ENGINE_free' has been explicitly marked deprecated here
int ENGINE_free(ENGINE *e) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_config.c:527:13: warning: 'ENGINE_get_first' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        e = ENGINE_get_first();
            ^
/usr/include/openssl/engine.h:314:9: note: 'ENGINE_get_first' has been explicitly marked deprecated here
ENGINE *ENGINE_get_first(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_config.c:530:54: warning: 'ENGINE_get_id' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            err = apr_pstrcat(cmd->pool, err, ", '", ENGINE_get_id(e),
                                                     ^
/usr/include/openssl/engine.h:496:13: note: 'ENGINE_get_id' has been explicitly marked deprecated here
const char *ENGINE_get_id(const ENGINE *e) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_engine_config.c:531:49: warning: 'ENGINE_get_name' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                                         "' (", ENGINE_get_name(e), ")", NULL);
                                                ^
/usr/include/openssl/engine.h:497:13: note: 'ENGINE_get_name' has been explicitly marked deprecated here
const char *ENGINE_get_name(const ENGINE *e) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_engine_config.c:532:18: warning: 'ENGINE_get_next' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            en = ENGINE_get_next(e);
                 ^
/usr/include/openssl/engine.h:317:9: note: 'ENGINE_get_next' has been explicitly marked deprecated here
ENGINE *ENGINE_get_next(ENGINE *e) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_config.c:533:13: warning: 'ENGINE_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            ENGINE_free(e);
            ^
/usr/include/openssl/engine.h:457:5: note: 'ENGINE_free' has been explicitly marked deprecated here
int ENGINE_free(ENGINE *e) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_config.c:1277:30: warning: comparison of unsigned expression < 0 is always false [-Wtautological-compare]
    if (dc->nRenegBufferSize < 0) {
        ~~~~~~~~~~~~~~~~~~~~ ^ ~
8 warnings generated.
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c ssl_engine_dh.c && touch ssl_engine_dh.slo
ssl_engine_dh.c:119:16: warning: 'BIO_new_file' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if ((bio = BIO_new_file(file, "r")) == NULL)
               ^
/usr/include/openssl/bio.h:584:6: note: 'BIO_new_file' has been explicitly marked deprecated here
BIO *BIO_new_file(const char *filename, const char *mode) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_dh.c:126:5: warning: 'BIO_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    BIO_free(bio);
    ^
/usr/include/openssl/bio.h:593:5: note: 'BIO_free' has been explicitly marked deprecated here
int     BIO_free(BIO *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
2 warnings generated.
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c ssl_engine_init.c && touch ssl_engine_init.slo
ssl_engine_init.c:73:5: warning: 'RSA_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    MODSSL_TMP_KEYS_FREE(mc, RSA);
    ^
ssl_engine_init.c:66:5: note: expanded from macro 'MODSSL_TMP_KEYS_FREE'
    MODSSL_TMP_KEY_FREE(mc, type, SSL_TMP_KEY_##type##_512); \
    ^
ssl_engine_init.c:61:9: note: expanded from macro 'MODSSL_TMP_KEY_FREE'
        type##_free((type *)mc->pTmpKeys[idx]); \
        ^
<scratch space>:79:1: note: expanded from here
RSA_free
^
/usr/include/openssl/rsa.h:282:6: note: 'RSA_free' has been explicitly marked deprecated here
void    RSA_free (RSA *r) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_init.c:73:5: warning: 'RSA_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    MODSSL_TMP_KEYS_FREE(mc, RSA);
    ^
ssl_engine_init.c:67:5: note: expanded from macro 'MODSSL_TMP_KEYS_FREE'
    MODSSL_TMP_KEY_FREE(mc, type, SSL_TMP_KEY_##type##_1024)
    ^
ssl_engine_init.c:61:9: note: expanded from macro 'MODSSL_TMP_KEY_FREE'
        type##_free((type *)mc->pTmpKeys[idx]); \
        ^
<scratch space>:79:1: note: expanded from here
RSA_free
^
/usr/include/openssl/rsa.h:282:6: note: 'RSA_free' has been explicitly marked deprecated here
void    RSA_free (RSA *r) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_init.c:74:5: warning: 'DH_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    MODSSL_TMP_KEYS_FREE(mc, DH);
    ^
ssl_engine_init.c:66:5: note: expanded from macro 'MODSSL_TMP_KEYS_FREE'
    MODSSL_TMP_KEY_FREE(mc, type, SSL_TMP_KEY_##type##_512); \
    ^
ssl_engine_init.c:61:9: note: expanded from macro 'MODSSL_TMP_KEY_FREE'
        type##_free((type *)mc->pTmpKeys[idx]); \
        ^
<scratch space>:79:1: note: expanded from here
DH_free
^
/usr/include/openssl/dh.h:185:6: note: 'DH_free' has been explicitly marked deprecated here
void    DH_free(DH *dh) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_init.c:74:5: warning: 'DH_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    MODSSL_TMP_KEYS_FREE(mc, DH);
    ^
ssl_engine_init.c:67:5: note: expanded from macro 'MODSSL_TMP_KEYS_FREE'
    MODSSL_TMP_KEY_FREE(mc, type, SSL_TMP_KEY_##type##_1024)
    ^
ssl_engine_init.c:61:9: note: expanded from macro 'MODSSL_TMP_KEY_FREE'
        type##_free((type *)mc->pTmpKeys[idx]); \
        ^
<scratch space>:79:1: note: expanded from here
DH_free
^
/usr/include/openssl/dh.h:185:6: note: 'DH_free' has been explicitly marked deprecated here
void    DH_free(DH *dh) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_init.c:95:11: warning: 'RSA_generate_key' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
          RSA_generate_key(bits, RSA_F4, NULL, NULL)))
          ^
/usr/include/openssl/rsa.h:260:7: note: 'RSA_generate_key' has been explicitly marked deprecated here
RSA *   RSA_generate_key(int bits, unsigned long e,void
        ^
ssl_engine_init.c:355:19: warning: 'ENGINE_by_id' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        if (!(e = ENGINE_by_id(mc->szCryptoDevice))) {
                  ^
/usr/include/openssl/engine.h:324:9: note: 'ENGINE_by_id' has been explicitly marked deprecated here
ENGINE *ENGINE_by_id(const char *id) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_init.c:364:13: warning: 'ENGINE_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            ENGINE_ctrl(e, ENGINE_CTRL_CHIL_SET_FORKCHECK, 1, 0, 0);
            ^
/usr/include/openssl/engine.h:413:5: note: 'ENGINE_ctrl' has been explicitly marked deprecated here
int ENGINE_ctrl(ENGINE *e, int cmd, long i, void *p, void (*f)(void)) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_init.c:367:14: warning: 'ENGINE_set_default' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        if (!ENGINE_set_default(e, ENGINE_METHOD_ALL)) {
             ^
/usr/include/openssl/engine.h:588:5: note: 'ENGINE_set_default' has been explicitly marked deprecated here
int ENGINE_set_default(ENGINE *e, unsigned int flags) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_init.c:378:9: warning: 'ENGINE_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        ENGINE_free(e);
        ^
/usr/include/openssl/engine.h:457:5: note: 'ENGINE_free' has been explicitly marked deprecated here
int ENGINE_free(ENGINE *e) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_init.c:426:10: warning: 'SSL_CTX_callback_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if (!SSL_CTX_set_tlsext_servername_callback(mctx->ssl_ctx,
         ^
/usr/include/openssl/tls1.h:179:57: note: expanded from macro 'SSL_CTX_set_tlsext_servername_callback'
#define SSL_CTX_set_tlsext_servername_callback(ctx, cb) \
                                                        ^
/usr/include/openssl/ssl.h:1504:6: note: 'SSL_CTX_callback_ctrl' has been explicitly marked deprecated here
long    SSL_CTX_callback_ctrl(SSL_CTX *, int, void (*)(void)) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_init.c:428:10: warning: 'SSL_CTX_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        !SSL_CTX_set_tlsext_servername_arg(mctx->ssl_ctx, mctx)) {
         ^
/usr/include/openssl/tls1.h:187:53: note: expanded from macro 'SSL_CTX_set_tlsext_servername_arg'
#define SSL_CTX_set_tlsext_servername_arg(ctx, arg) \
                                                    ^
/usr/include/openssl/ssl.h:1503:6: note: 'SSL_CTX_ctrl' has been explicitly marked deprecated here
long    SSL_CTX_ctrl(SSL_CTX *ctx,int cmd, long larg, void *parg) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_init.c:477:13: warning: 'SSLv2_client_method' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            SSLv2_client_method() : /* proxy */
            ^
/usr/include/openssl/ssl.h:1514:13: note: 'SSLv2_client_method' has been explicitly marked deprecated here
SSL_METHOD *SSLv2_client_method(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;    /* SSLv2 */
            ^
ssl_engine_init.c:478:13: warning: 'SSLv2_server_method' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            SSLv2_server_method();  /* server */
            ^
/usr/include/openssl/ssl.h:1513:13: note: 'SSLv2_server_method' has been explicitly marked deprecated here
SSL_METHOD *SSLv2_server_method(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;    /* SSLv2 */
            ^
ssl_engine_init.c:497:13: warning: 'SSLv23_client_method' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            SSLv23_client_method() : /* proxy */
            ^
/usr/include/openssl/ssl.h:1522:13: note: 'SSLv23_client_method' has been explicitly marked deprecated here
SSL_METHOD *SSLv23_client_method(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;   /* SSLv3 but can rollback to v2 */
            ^
ssl_engine_init.c:498:13: warning: 'SSLv23_server_method' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            SSLv23_server_method();  /* server */
            ^
/usr/include/openssl/ssl.h:1521:13: note: 'SSLv23_server_method' has been explicitly marked deprecated here
SSL_METHOD *SSLv23_server_method(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;   /* SSLv3 but can rollback to v2 */
            ^
ssl_engine_init.c:500:11: warning: 'SSL_CTX_new' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    ctx = SSL_CTX_new(method);
          ^
/usr/include/openssl/ssl.h:1351:10: note: 'SSL_CTX_new' has been explicitly marked deprecated here
SSL_CTX *SSL_CTX_new(SSL_METHOD *meth) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
         ^
ssl_engine_init.c:504:5: warning: 'SSL_CTX_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    SSL_CTX_set_options(ctx, SSL_OP_ALL);
    ^
/usr/include/openssl/ssl.h:574:2: note: expanded from macro 'SSL_CTX_set_options'
        SSL_CTX_ctrl((ctx),SSL_CTRL_OPTIONS,(op),NULL)
        ^
/usr/include/openssl/ssl.h:1503:6: note: 'SSL_CTX_ctrl' has been explicitly marked deprecated here
long    SSL_CTX_ctrl(SSL_CTX *ctx,int cmd, long larg, void *parg) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_init.c:508:9: warning: 'SSL_CTX_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        SSL_CTX_set_options(ctx, SSL_OP_NO_SSLv2);
        ^
/usr/include/openssl/ssl.h:574:2: note: expanded from macro 'SSL_CTX_set_options'
        SSL_CTX_ctrl((ctx),SSL_CTRL_OPTIONS,(op),NULL)
        ^
/usr/include/openssl/ssl.h:1503:6: note: 'SSL_CTX_ctrl' has been explicitly marked deprecated here
long    SSL_CTX_ctrl(SSL_CTX *ctx,int cmd, long larg, void *parg) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_init.c:513:9: warning: 'SSL_CTX_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        SSL_CTX_set_options(ctx, SSL_OP_NO_SSLv3);
        ^
/usr/include/openssl/ssl.h:574:2: note: expanded from macro 'SSL_CTX_set_options'
        SSL_CTX_ctrl((ctx),SSL_CTRL_OPTIONS,(op),NULL)
        ^
/usr/include/openssl/ssl.h:1503:6: note: 'SSL_CTX_ctrl' has been explicitly marked deprecated here
long    SSL_CTX_ctrl(SSL_CTX *ctx,int cmd, long larg, void *parg) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_init.c:517:9: warning: 'SSL_CTX_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        SSL_CTX_set_options(ctx, SSL_OP_NO_TLSv1);
        ^
/usr/include/openssl/ssl.h:574:2: note: expanded from macro 'SSL_CTX_set_options'
        SSL_CTX_ctrl((ctx),SSL_CTRL_OPTIONS,(op),NULL)
        ^
/usr/include/openssl/ssl.h:1503:6: note: 'SSL_CTX_ctrl' has been explicitly marked deprecated here
long    SSL_CTX_ctrl(SSL_CTX *ctx,int cmd, long larg, void *parg) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_init.c:532:9: warning: 'SSL_CTX_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        SSL_CTX_set_options(ctx, SSL_OP_CIPHER_SERVER_PREFERENCE);
        ^
/usr/include/openssl/ssl.h:574:2: note: expanded from macro 'SSL_CTX_set_options'
        SSL_CTX_ctrl((ctx),SSL_CTRL_OPTIONS,(op),NULL)
        ^
/usr/include/openssl/ssl.h:1503:6: note: 'SSL_CTX_ctrl' has been explicitly marked deprecated here
long    SSL_CTX_ctrl(SSL_CTX *ctx,int cmd, long larg, void *parg) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_init.c:543:9: warning: 'sk_zero' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        sk_SSL_COMP_zero(SSL_COMP_get_compression_methods());
        ^
/usr/include/openssl/safestack.h:1303:30: note: expanded from macro 'sk_SSL_COMP_zero'
#define sk_SSL_COMP_zero(st) SKM_sk_zero(SSL_COMP, (st))
                             ^
/usr/include/openssl/safestack.h:174:2: note: expanded from macro 'SKM_sk_zero'
        sk_zero(st)
        ^
/usr/include/openssl/stack.h:99:6: note: 'sk_zero' has been explicitly marked deprecated here
void sk_zero(STACK *st) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_init.c:543:26: warning: 'SSL_COMP_get_compression_methods' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        sk_SSL_COMP_zero(SSL_COMP_get_compression_methods());
                         ^
/usr/include/openssl/safestack.h:1303:53: note: expanded from macro 'sk_SSL_COMP_zero'
#define sk_SSL_COMP_zero(st) SKM_sk_zero(SSL_COMP, (st))
                                                    ^
/usr/include/openssl/safestack.h:174:10: note: expanded from macro 'SKM_sk_zero'
        sk_zero(st)
                ^
/usr/include/openssl/ssl.h:1663:21: note: 'SSL_COMP_get_compression_methods' has been explicitly marked deprecated here
STACK_OF(SSL_COMP) *SSL_COMP_get_compression_methods(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                    ^
ssl_engine_init.c:550:9: warning: 'SSL_CTX_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        SSL_CTX_set_options(ctx, SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION);
        ^
/usr/include/openssl/ssl.h:574:2: note: expanded from macro 'SSL_CTX_set_options'
        SSL_CTX_ctrl((ctx),SSL_CTRL_OPTIONS,(op),NULL)
        ^
/usr/include/openssl/ssl.h:1503:6: note: 'SSL_CTX_ctrl' has been explicitly marked deprecated here
long    SSL_CTX_ctrl(SSL_CTX *ctx,int cmd, long larg, void *parg) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_init.c:554:5: warning: 'SSL_CTX_set_ex_data' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    SSL_CTX_set_app_data(ctx, s);
    ^
/usr/include/openssl/ssl.h:1085:40: note: expanded from macro 'SSL_CTX_set_app_data'
#define SSL_CTX_set_app_data(ctx,arg)   (SSL_CTX_set_ex_data(ctx,0,(char *)arg))
                                         ^
/usr/include/openssl/ssl.h:1601:5: note: 'SSL_CTX_set_ex_data' has been explicitly marked deprecated here
int SSL_CTX_set_ex_data(SSL_CTX *ssl,int idx,void *data) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_init.c:559:5: warning: 'SSL_CTX_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    SSL_CTX_set_options(ctx, SSL_OP_SINGLE_DH_USE);
    ^
/usr/include/openssl/ssl.h:574:2: note: expanded from macro 'SSL_CTX_set_options'
        SSL_CTX_ctrl((ctx),SSL_CTRL_OPTIONS,(op),NULL)
        ^
/usr/include/openssl/ssl.h:1503:6: note: 'SSL_CTX_ctrl' has been explicitly marked deprecated here
long    SSL_CTX_ctrl(SSL_CTX *ctx,int cmd, long larg, void *parg) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_init.c:566:5: warning: 'SSL_CTX_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    SSL_CTX_set_options(ctx, SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION);
    ^
/usr/include/openssl/ssl.h:574:2: note: expanded from macro 'SSL_CTX_set_options'
        SSL_CTX_ctrl((ctx),SSL_CTRL_OPTIONS,(op),NULL)
        ^
/usr/include/openssl/ssl.h:1503:6: note: 'SSL_CTX_ctrl' has been explicitly marked deprecated here
long    SSL_CTX_ctrl(SSL_CTX *ctx,int cmd, long larg, void *parg) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_init.c:586:5: warning: 'SSL_CTX_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    SSL_CTX_set_session_cache_mode(ctx, cache_mode);
    ^
/usr/include/openssl/ssl.h:1613:2: note: expanded from macro 'SSL_CTX_set_session_cache_mode'
        SSL_CTX_ctrl(ctx,SSL_CTRL_SET_SESS_CACHE_MODE,m,NULL)
        ^
/usr/include/openssl/ssl.h:1503:6: note: 'SSL_CTX_ctrl' has been explicitly marked deprecated here
long    SSL_CTX_ctrl(SSL_CTX *ctx,int cmd, long larg, void *parg) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_init.c:588:5: warning: 'SSL_CTX_sess_set_new_cb' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    SSL_CTX_sess_set_new_cb(ctx,    ssl_callback_NewSessionCacheEntry);
    ^
/usr/include/openssl/ssl.h:847:6: note: 'SSL_CTX_sess_set_new_cb' has been explicitly marked deprecated here
void SSL_CTX_sess_set_new_cb(SSL_CTX *ctx, int (*new_session_cb)(struct ssl_st *ssl,SSL_SESSION *sess)) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_init.c:589:5: warning: 'SSL_CTX_sess_set_get_cb' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    SSL_CTX_sess_set_get_cb(ctx,    ssl_callback_GetSessionCacheEntry);
    ^
/usr/include/openssl/ssl.h:851:6: note: 'SSL_CTX_sess_set_get_cb' has been explicitly marked deprecated here
void SSL_CTX_sess_set_get_cb(SSL_CTX *ctx, SSL_SESSION *(*get_session_cb)(struct ssl_st *ssl, unsigned char *data,int len,int *copy)) DEPRECATED...
     ^
ssl_engine_init.c:590:5: warning: 'SSL_CTX_sess_set_remove_cb' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    SSL_CTX_sess_set_remove_cb(ctx, ssl_callback_DelSessionCacheEntry);
    ^
/usr/include/openssl/ssl.h:849:6: note: 'SSL_CTX_sess_set_remove_cb' has been explicitly marked deprecated here
void SSL_CTX_sess_set_remove_cb(SSL_CTX *ctx, void (*remove_session_cb)(struct ssl_ctx_st *ctx,SSL_SESSION *sess)) DEPRECATED_IN_MAC_OS_X_VERSIO...
     ^
ssl_engine_init.c:600:5: warning: 'SSL_CTX_set_tmp_rsa_callback' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    SSL_CTX_set_tmp_rsa_callback(ctx, ssl_callback_TmpRSA);
    ^
/usr/include/openssl/ssl.h:1634:6: note: 'SSL_CTX_set_tmp_rsa_callback' has been explicitly marked deprecated here
void SSL_CTX_set_tmp_rsa_callback(SSL_CTX *ctx,
     ^
ssl_engine_init.c:601:5: warning: 'SSL_CTX_set_tmp_dh_callback' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    SSL_CTX_set_tmp_dh_callback(ctx,  ssl_callback_TmpDH);
    ^
/usr/include/openssl/ssl.h:1643:6: note: 'SSL_CTX_set_tmp_dh_callback' has been explicitly marked deprecated here
void SSL_CTX_set_tmp_dh_callback(SSL_CTX *ctx,
     ^
ssl_engine_init.c:603:5: warning: 'SSL_CTX_set_info_callback' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    SSL_CTX_set_info_callback(ctx, ssl_callback_Info);
    ^
/usr/include/openssl/ssl.h:853:6: note: 'SSL_CTX_set_info_callback' has been explicitly marked deprecated here
void SSL_CTX_set_info_callback(SSL_CTX *ctx, void (*cb)(const SSL *ssl,int type,int val)) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_init.c:637:5: warning: 'SSL_CTX_set_verify' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    SSL_CTX_set_verify(ctx, verify, ssl_callback_SSLVerify);
    ^
/usr/include/openssl/ssl.h:1463:6: note: 'SSL_CTX_set_verify' has been explicitly marked deprecated here
void SSL_CTX_set_verify(SSL_CTX *ctx,int mode,
     ^
ssl_engine_init.c:646:14: warning: 'SSL_CTX_load_verify_locations' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        if (!SSL_CTX_load_verify_locations(ctx,
             ^
/usr/include/openssl/ssl.h:1576:5: note: 'SSL_CTX_load_verify_locations' has been explicitly marked deprecated here
int SSL_CTX_load_verify_locations(SSL_CTX *ctx, const char *CAfile,
    ^
ssl_engine_init.c:672:9: warning: 'SSL_CTX_set_client_CA_list' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        SSL_CTX_set_client_CA_list(ctx, ca_list);
        ^
/usr/include/openssl/ssl.h:1547:6: note: 'SSL_CTX_set_client_CA_list' has been explicitly marked deprecated here
void SSL_CTX_set_client_CA_list(SSL_CTX *ctx, STACK_OF(X509_NAME) *name_list) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_init.c:680:19: warning: 'SSL_CTX_get_client_CA_list' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        ca_list = SSL_CTX_get_client_CA_list(ctx);
                  ^
/usr/include/openssl/ssl.h:1549:22: note: 'SSL_CTX_get_client_CA_list' has been explicitly marked deprecated here
STACK_OF(X509_NAME) *SSL_CTX_get_client_CA_list(const SSL_CTX *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                     ^
ssl_engine_init.c:682:13: warning: 'sk_num' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        if (sk_X509_NAME_num(ca_list) == 0) {
            ^
/usr/include/openssl/safestack.h:1564:30: note: expanded from macro 'sk_X509_NAME_num'
#define sk_X509_NAME_num(st) SKM_sk_num(X509_NAME, (st))
                             ^
/usr/include/openssl/safestack.h:168:2: note: expanded from macro 'SKM_sk_num'
        sk_num(st)
        ^
/usr/include/openssl/stack.h:81:5: note: 'sk_num' has been explicitly marked deprecated here
int sk_num(const STACK *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_init.c:710:10: warning: 'SSL_CTX_set_cipher_list' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if (!SSL_CTX_set_cipher_list(ctx, MODSSL_PCHAR_CAST suite)) {
         ^
/usr/include/openssl/ssl.h:1350:5: note: 'SSL_CTX_set_cipher_list' has been explicitly marked deprecated here
int     SSL_CTX_set_cipher_list(SSL_CTX *,const char *str) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_init.c:848:9: warning: 'SSL_CTX_use_certificate' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if (SSL_CTX_use_certificate(mctx->ssl_ctx, cert) <= 0) {
        ^
/usr/include/openssl/ssl.h:1474:5: note: 'SSL_CTX_use_certificate' has been explicitly marked deprecated here
int SSL_CTX_use_certificate(SSL_CTX *ctx, X509 *x) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_init.c:880:18: warning: 'd2i_PrivateKey' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if (!(pkey = d2i_PrivateKey(pkey_type, NULL, &ptr, asn1->nData)))
                 ^
/usr/include/openssl/evp.h:884:12: note: 'd2i_PrivateKey' has been explicitly marked deprecated here
EVP_PKEY *      d2i_PrivateKey(int type,EVP_PKEY **a, const unsigned char **pp,
                ^
ssl_engine_init.c:888:9: warning: 'SSL_CTX_use_PrivateKey' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if (SSL_CTX_use_PrivateKey(mctx->ssl_ctx, pkey) <= 0) {
        ^
/usr/include/openssl/ssl.h:1471:5: note: 'SSL_CTX_use_PrivateKey' has been explicitly marked deprecated here
int SSL_CTX_use_PrivateKey(SSL_CTX *ctx, EVP_PKEY *pkey) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_init.c:900:28: warning: 'X509_get_pubkey' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        EVP_PKEY *pubkey = X509_get_pubkey(mctx->pks->certs[idx]);
                           ^
/usr/include/openssl/x509.h:1017:12: note: 'X509_get_pubkey' has been explicitly marked deprecated here
EVP_PKEY *      X509_get_pubkey(X509 *x) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_init.c:902:23: warning: 'EVP_PKEY_missing_parameters' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        if (pubkey && EVP_PKEY_missing_parameters(pubkey)) {
                      ^
/usr/include/openssl/evp.h:891:5: note: 'EVP_PKEY_missing_parameters' has been explicitly marked deprecated here
int EVP_PKEY_missing_parameters(const EVP_PKEY *pkey) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_init.c:903:13: warning: 'EVP_PKEY_copy_parameters' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            EVP_PKEY_copy_parameters(pubkey, pkey);
            ^
/usr/include/openssl/evp.h:890:5: note: 'EVP_PKEY_copy_parameters' has been explicitly marked deprecated here
int EVP_PKEY_copy_parameters(EVP_PKEY *to, const EVP_PKEY *from) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_init.c:907:13: warning: 'EVP_PKEY_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            EVP_PKEY_free(pubkey);
            ^
/usr/include/openssl/evp.h:878:7: note: 'EVP_PKEY_free' has been explicitly marked deprecated here
void            EVP_PKEY_free(EVP_PKEY *pkey) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_init.c:1022:25: warning: 'SSL_CTX_get_cert_store' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    X509_STORE *store = SSL_CTX_get_cert_store(mctx->ssl_ctx);
                        ^
/usr/include/openssl/ssl.h:1355:13: note: 'SSL_CTX_get_cert_store' has been explicitly marked deprecated here
X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_engine_init.c:1025:5: warning: 'SSL_CTX_set_client_cert_cb' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    SSL_CTX_set_client_cert_cb(mctx->ssl_ctx,
    ^
/usr/include/openssl/ssl.h:855:6: note: 'SSL_CTX_set_client_cert_cb' has been explicitly marked deprecated here
void SSL_CTX_set_client_cert_cb(SSL_CTX *ctx, int (*client_cert_cb)(SSL *ssl, X509 **x509, EVP_PKEY **pkey)) DEPRECATED_IN_MAC_OS_X_VERSION_10_7...
     ^
ssl_engine_init.c:1032:10: warning: 'sk_new_null' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    sk = sk_X509_INFO_new_null();
         ^
/usr/include/openssl/safestack.h:1518:33: note: expanded from macro 'sk_X509_INFO_new_null'
#define sk_X509_INFO_new_null() SKM_sk_new_null(X509_INFO)
                                ^
/usr/include/openssl/safestack.h:164:2: note: expanded from macro 'SKM_sk_new_null'
        sk_new_null()
        ^
/usr/include/openssl/stack.h:87:8: note: 'sk_new_null' has been explicitly marked deprecated here
STACK *sk_new_null(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
       ^
ssl_engine_init.c:1042:19: warning: 'sk_num' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if ((ncerts = sk_X509_INFO_num(sk)) <= 0) {
                  ^
/usr/include/openssl/safestack.h:1520:30: note: expanded from macro 'sk_X509_INFO_num'
#define sk_X509_INFO_num(st) SKM_sk_num(X509_INFO, (st))
                             ^
/usr/include/openssl/safestack.h:168:2: note: expanded from macro 'SKM_sk_num'
        sk_num(st)
        ^
/usr/include/openssl/stack.h:81:5: note: 'sk_num' has been explicitly marked deprecated here
int sk_num(const STACK *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_init.c:1043:9: warning: 'sk_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        sk_X509_INFO_free(sk);
        ^
/usr/include/openssl/safestack.h:1519:31: note: expanded from macro 'sk_X509_INFO_free'
#define sk_X509_INFO_free(st) SKM_sk_free(X509_INFO, (st))
                              ^
/usr/include/openssl/safestack.h:166:2: note: expanded from macro 'SKM_sk_free'
        sk_free(st)
        ^
/usr/include/openssl/stack.h:88:6: note: 'sk_free' has been explicitly marked deprecated here
void sk_free(STACK *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_init.c:1052:26: warning: 'sk_value' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        X509_INFO *inf = sk_X509_INFO_value(sk, n);
                         ^
/usr/include/openssl/safestack.h:1521:35: note: expanded from macro 'sk_X509_INFO_value'
#define sk_X509_INFO_value(st, i) SKM_sk_value(X509_INFO, (st), (i))
                                  ^
/usr/include/openssl/safestack.h:170:11: note: expanded from macro 'SKM_sk_value'
        ((type *)sk_value(st, i))
                 ^
/usr/include/openssl/stack.h:82:7: note: 'sk_value' has been explicitly marked deprecated here
char *sk_value(const STACK *, int) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_init.c:1055:13: warning: 'sk_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            sk_X509_INFO_free(sk);
            ^
/usr/include/openssl/safestack.h:1519:31: note: expanded from macro 'sk_X509_INFO_free'
#define sk_X509_INFO_free(st) SKM_sk_free(X509_INFO, (st))
                              ^
/usr/include/openssl/safestack.h:166:2: note: expanded from macro 'SKM_sk_free'
        sk_free(st)
        ^
/usr/include/openssl/stack.h:88:6: note: 'sk_free' has been explicitly marked deprecated here
void sk_free(STACK *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_init.c:1075:12: warning: 'X509_STORE_CTX_new' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    sctx = X509_STORE_CTX_new();
           ^
/usr/include/openssl/x509_vfy.h:397:17: note: 'X509_STORE_CTX_new' has been explicitly marked deprecated here
X509_STORE_CTX *X509_STORE_CTX_new(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_init.c:1084:5: warning: 'X509_STORE_load_locations' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    X509_STORE_load_locations(store, pkp->ca_cert_file, NULL);
    ^
/usr/include/openssl/x509_vfy.h:442:5: note: 'X509_STORE_load_locations' has been explicitly marked deprecated here
int     X509_STORE_load_locations (X509_STORE *ctx,
        ^
ssl_engine_init.c:1089:26: warning: 'sk_value' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        X509_INFO *inf = sk_X509_INFO_value(pkp->certs, n);
                         ^
/usr/include/openssl/safestack.h:1521:35: note: expanded from macro 'sk_X509_INFO_value'
#define sk_X509_INFO_value(st, i) SKM_sk_value(X509_INFO, (st), (i))
                                  ^
/usr/include/openssl/safestack.h:170:11: note: expanded from macro 'SKM_sk_value'
        ((type *)sk_value(st, i))
                 ^
/usr/include/openssl/stack.h:82:7: note: 'sk_value' has been explicitly marked deprecated here
char *sk_value(const STACK *, int) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_init.c:1090:27: warning: 'X509_get_subject_name' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        X509_NAME *name = X509_get_subject_name(inf->x509);
                          ^
/usr/include/openssl/x509.h:1013:13: note: 'X509_get_subject_name' has been explicitly marked deprecated here
X509_NAME *     X509_get_subject_name(X509 *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_init.c:1092:9: warning: 'X509_STORE_CTX_init' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        X509_STORE_CTX_init(sctx, store, inf->x509, NULL);
        ^
/usr/include/openssl/x509_vfy.h:402:5: note: 'X509_STORE_CTX_init' has been explicitly marked deprecated here
int X509_STORE_CTX_init(X509_STORE_CTX *ctx, X509_STORE *store,
    ^
ssl_engine_init.c:1095:13: warning: 'X509_verify_cert' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        if (X509_verify_cert(sctx) != 1) {
            ^
/usr/include/openssl/x509.h:1241:6: note: 'X509_verify_cert' has been explicitly marked deprecated here
int             X509_verify_cert(X509_STORE_CTX *ctx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_init.c:1096:23: warning: 'X509_STORE_CTX_get_error' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            int err = X509_STORE_CTX_get_error(sctx);
                      ^
/usr/include/openssl/x509_vfy.h:451:5: note: 'X509_STORE_CTX_get_error' has been explicitly marked deprecated here
int     X509_STORE_CTX_get_error(X509_STORE_CTX *ctx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_init.c:1099:35: warning: 'X509_verify_cert_error_string' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                         cert_dn, X509_verify_cert_error_string(err));
                                  ^
/usr/include/openssl/x509.h:752:13: note: 'X509_verify_cert_error_string' has been explicitly marked deprecated here
const char *X509_verify_cert_error_string(long n) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_engine_init.c:1103:9: warning: 'ERR_clear_error' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        ERR_clear_error();
        ^
/usr/include/openssl/err.h:278:6: note: 'ERR_clear_error' has been explicitly marked deprecated here
void ERR_clear_error(void ) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_init.c:1106:17: warning: 'X509_STORE_CTX_get1_chain' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        chain = X509_STORE_CTX_get1_chain(sctx);
                ^
/usr/include/openssl/x509_vfy.h:456:17: note: 'X509_STORE_CTX_get1_chain' has been explicitly marked deprecated here
STACK_OF(X509) *X509_STORE_CTX_get1_chain(X509_STORE_CTX *ctx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_init.c:1110:23: warning: 'sk_shift' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            X509_free(sk_X509_shift(chain));
                      ^
/usr/include/openssl/safestack.h:1402:27: note: expanded from macro 'sk_X509_shift'
#define sk_X509_shift(st) SKM_sk_shift(X509, (st))
                          ^
/usr/include/openssl/safestack.h:195:11: note: expanded from macro 'SKM_sk_shift'
        ((type *)sk_shift(st))
                 ^
/usr/include/openssl/stack.h:97:7: note: 'sk_shift' has been explicitly marked deprecated here
char *sk_shift(STACK *st) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_init.c:1112:22: warning: 'sk_num' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            if ((i = sk_X509_num(chain)) > 0) {
                     ^
/usr/include/openssl/safestack.h:1388:25: note: expanded from macro 'sk_X509_num'
#define sk_X509_num(st) SKM_sk_num(X509, (st))
                        ^
/usr/include/openssl/safestack.h:168:2: note: expanded from macro 'SKM_sk_num'
        sk_num(st)
        ^
/usr/include/openssl/stack.h:81:5: note: 'sk_num' has been explicitly marked deprecated here
int sk_num(const STACK *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_init.c:1118:17: warning: 'sk_pop_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                sk_X509_pop_free(chain, X509_free);
                ^
/usr/include/openssl/safestack.h:1401:41: note: expanded from macro 'sk_X509_pop_free'
#define sk_X509_pop_free(st, free_func) SKM_sk_pop_free(X509, (st), (free_func))
                                        ^
/usr/include/openssl/safestack.h:193:2: note: expanded from macro 'SKM_sk_pop_free'
        sk_pop_free(st, (void (*)(void *))free_func)
        ^
/usr/include/openssl/stack.h:89:6: note: 'sk_pop_free' has been explicitly marked deprecated here
void sk_pop_free(STACK *st, void (*func)(void *)) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_init.c:1128:42: warning: 'X509_get_subject_name' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                    X509_NAME *ca_name = X509_get_subject_name(sk_X509_value(chain, j));
                                         ^
/usr/include/openssl/x509.h:1013:13: note: 'X509_get_subject_name' has been explicitly marked deprecated here
X509_NAME *     X509_get_subject_name(X509 *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_init.c:1128:64: warning: 'sk_value' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                    X509_NAME *ca_name = X509_get_subject_name(sk_X509_value(chain, j));
                                                               ^
/usr/include/openssl/safestack.h:1389:30: note: expanded from macro 'sk_X509_value'
#define sk_X509_value(st, i) SKM_sk_value(X509, (st), (i))
                             ^
/usr/include/openssl/safestack.h:170:11: note: expanded from macro 'SKM_sk_value'
        ((type *)sk_value(st, i))
                 ^
/usr/include/openssl/stack.h:82:7: note: 'sk_value' has been explicitly marked deprecated here
char *sk_value(const STACK *, int) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_init.c:1136:9: warning: 'X509_STORE_CTX_cleanup' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        X509_STORE_CTX_cleanup(sctx);
        ^
/usr/include/openssl/x509_vfy.h:405:6: note: 'X509_STORE_CTX_cleanup' has been explicitly marked deprecated here
void X509_STORE_CTX_cleanup(X509_STORE_CTX *ctx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_init.c:1139:5: warning: 'X509_STORE_CTX_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    X509_STORE_CTX_free(sctx);
    ^
/usr/include/openssl/x509_vfy.h:401:6: note: 'X509_STORE_CTX_free' has been explicitly marked deprecated here
void X509_STORE_CTX_free(X509_STORE_CTX *ctx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_init.c:1288:12: warning: 'X509_NAME_cmp' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    return(X509_NAME_cmp(*a, *b));
           ^
/usr/include/openssl/x509.h:1073:6: note: 'X509_NAME_cmp' has been explicitly marked deprecated here
int             X509_NAME_cmp(const X509_NAME *a, const X509_NAME *b) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_init.c:1299:14: warning: 'SSL_load_client_CA_file' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
             SSL_load_client_CA_file(MODSSL_PCHAR_CAST file);
             ^
/usr/include/openssl/ssl.h:1409:22: note: 'SSL_load_client_CA_file' has been explicitly marked deprecated here
STACK_OF(X509_NAME) *SSL_load_client_CA_file(const char *file) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                     ^
ssl_engine_init.c:1305:21: warning: 'sk_num' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    for (n = 0; n < sk_X509_NAME_num(sk); n++) {
                    ^
/usr/include/openssl/safestack.h:1564:30: note: expanded from macro 'sk_X509_NAME_num'
#define sk_X509_NAME_num(st) SKM_sk_num(X509_NAME, (st))
                             ^
/usr/include/openssl/safestack.h:168:2: note: expanded from macro 'SKM_sk_num'
        sk_num(st)
        ^
/usr/include/openssl/stack.h:81:5: note: 'sk_num' has been explicitly marked deprecated here
int sk_num(const STACK *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_init.c:1307:27: warning: 'sk_value' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        X509_NAME *name = sk_X509_NAME_value(sk, n);
                          ^
/usr/include/openssl/safestack.h:1565:35: note: expanded from macro 'sk_X509_NAME_value'
#define sk_X509_NAME_value(st, i) SKM_sk_value(X509_NAME, (st), (i))
                                  ^
/usr/include/openssl/safestack.h:170:11: note: expanded from macro 'SKM_sk_value'
        ((type *)sk_value(st, i))
                 ^
/usr/include/openssl/stack.h:82:7: note: 'sk_value' has been explicitly marked deprecated here
char *sk_value(const STACK *, int) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_init.c:1311:22: warning: 'X509_NAME_oneline' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                     X509_NAME_oneline(name, name_buf, sizeof(name_buf)));
                     ^
/usr/include/openssl/x509.h:984:9: note: 'X509_NAME_oneline' has been explicitly marked deprecated here
char *          X509_NAME_oneline(X509_NAME *a,char *buf,int size) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_init.c:1319:13: warning: 'sk_find' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        if (sk_X509_NAME_find(ca_list, name) < 0) {
            ^
/usr/include/openssl/safestack.h:1570:36: note: expanded from macro 'sk_X509_NAME_find'
#define sk_X509_NAME_find(st, val) SKM_sk_find(X509_NAME, (st), (val))
                                   ^
/usr/include/openssl/safestack.h:180:2: note: expanded from macro 'SKM_sk_find'
        sk_find(st, (char *)val)
        ^
/usr/include/openssl/stack.h:93:5: note: 'sk_find' has been explicitly marked deprecated here
int sk_find(STACK *st,char *data) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_init.c:1321:13: warning: 'sk_push' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            sk_X509_NAME_push(ca_list, name);
            ^
/usr/include/openssl/safestack.h:1568:36: note: expanded from macro 'sk_X509_NAME_push'
#define sk_X509_NAME_push(st, val) SKM_sk_push(X509_NAME, (st), (val))
                                   ^
/usr/include/openssl/safestack.h:176:2: note: expanded from macro 'SKM_sk_push'
        sk_push(st, (char *)val)
        ^
/usr/include/openssl/stack.h:95:5: note: 'sk_push' has been explicitly marked deprecated here
int sk_push(STACK *st,char *data) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_init.c:1329:5: warning: 'sk_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    sk_X509_NAME_free(sk);
    ^
/usr/include/openssl/safestack.h:1563:31: note: expanded from macro 'sk_X509_NAME_free'
#define sk_X509_NAME_free(st) SKM_sk_free(X509_NAME, (st))
                              ^
/usr/include/openssl/safestack.h:166:2: note: expanded from macro 'SKM_sk_free'
        sk_free(st)
        ^
/usr/include/openssl/stack.h:88:6: note: 'sk_free' has been explicitly marked deprecated here
void sk_free(STACK *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_init.c:1343:15: warning: 'sk_new' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    ca_list = sk_X509_NAME_new(ssl_init_FindCAList_X509NameCmp);
              ^
/usr/include/openssl/safestack.h:1561:30: note: expanded from macro 'sk_X509_NAME_new'
#define sk_X509_NAME_new(st) SKM_sk_new(X509_NAME, (st))
                             ^
/usr/include/openssl/safestack.h:162:2: note: expanded from macro 'SKM_sk_new'
        sk_new((int (*)(const char * const *, const char * const *))(cmp))
        ^
/usr/include/openssl/stack.h:86:8: note: 'sk_new' has been explicitly marked deprecated here
STACK *sk_new(int (*cmp)(const char * const *, const char * const *)) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
       ^
ssl_engine_init.c:1383:12: warning: 'sk_set_cmp_func' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    (void) sk_X509_NAME_set_cmp_func(ca_list, NULL);
           ^
/usr/include/openssl/safestack.h:1575:44: note: expanded from macro 'sk_X509_NAME_set_cmp_func'
#define sk_X509_NAME_set_cmp_func(st, cmp) SKM_sk_set_cmp_func(X509_NAME, (st), (cmp))
                                           ^
/usr/include/openssl/safestack.h:189:2: note: expanded from macro 'SKM_sk_set_cmp_func'
        sk_set_cmp_func(st, (int (*)(const char * const *, const char * const *))(cmp)))
        ^
/usr/include/openssl/stack.h:100:7: note: 'sk_set_cmp_func' has been explicitly marked deprecated here
int (*sk_set_cmp_func(STACK *sk, int (*c)(const char * const *,
      ^
ssl_engine_init.c:1408:26: warning: 'X509_STORE_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    MODSSL_CFG_ITEM_FREE(X509_STORE_free, mctx->crl);
                         ^
ssl_engine_init.c:1402:9: note: expanded from macro 'MODSSL_CFG_ITEM_FREE'
        func(item); \
        ^
/usr/include/openssl/x509_vfy.h:390:6: note: 'X509_STORE_free' has been explicitly marked deprecated here
void X509_STORE_free(X509_STORE *v) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_init.c:1410:26: warning: 'SSL_CTX_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    MODSSL_CFG_ITEM_FREE(SSL_CTX_free, mctx->ssl_ctx);
                         ^
ssl_engine_init.c:1402:9: note: expanded from macro 'MODSSL_CFG_ITEM_FREE'
        func(item); \
        ^
/usr/include/openssl/ssl.h:1352:6: note: 'SSL_CTX_free' has been explicitly marked deprecated here
void    SSL_CTX_free(SSL_CTX *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_init.c:1419:22: warning: 'sk_num' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        int ncerts = sk_X509_INFO_num(mctx->pkp->certs);
                     ^
/usr/include/openssl/safestack.h:1520:30: note: expanded from macro 'sk_X509_INFO_num'
#define sk_X509_INFO_num(st) SKM_sk_num(X509_INFO, (st))
                             ^
/usr/include/openssl/safestack.h:168:2: note: expanded from macro 'SKM_sk_num'
        sk_num(st)
        ^
/usr/include/openssl/stack.h:81:5: note: 'sk_num' has been explicitly marked deprecated here
int sk_num(const STACK *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_init.c:1424:21: warning: 'sk_pop_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                    sk_X509_pop_free(mctx->pkp->ca_certs[i], X509_free);
                    ^
/usr/include/openssl/safestack.h:1401:41: note: expanded from macro 'sk_X509_pop_free'
#define sk_X509_pop_free(st, free_func) SKM_sk_pop_free(X509, (st), (free_func))
                                        ^
/usr/include/openssl/safestack.h:193:2: note: expanded from macro 'SKM_sk_pop_free'
        sk_pop_free(st, (void (*)(void *))free_func)
        ^
/usr/include/openssl/stack.h:89:6: note: 'sk_pop_free' has been explicitly marked deprecated here
void sk_pop_free(STACK *st, void (*func)(void *)) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_init.c:1429:9: warning: 'sk_pop_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        sk_X509_INFO_pop_free(mctx->pkp->certs, X509_INFO_free);
        ^
/usr/include/openssl/safestack.h:1533:46: note: expanded from macro 'sk_X509_INFO_pop_free'
#define sk_X509_INFO_pop_free(st, free_func) SKM_sk_pop_free(X509_INFO, (st), (free_func))
                                             ^
/usr/include/openssl/safestack.h:193:2: note: expanded from macro 'SKM_sk_pop_free'
        sk_pop_free(st, (void (*)(void *))free_func)
        ^
/usr/include/openssl/stack.h:89:6: note: 'sk_pop_free' has been explicitly marked deprecated here
void sk_pop_free(STACK *st, void (*func)(void *)) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_init.c:1429:49: warning: 'X509_INFO_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        sk_X509_INFO_pop_free(mctx->pkp->certs, X509_INFO_free);
                                                ^
/usr/include/openssl/safestack.h:1533:80: note: expanded from macro 'sk_X509_INFO_pop_free'
#define sk_X509_INFO_pop_free(st, free_func) SKM_sk_pop_free(X509_INFO, (st), (free_func))
                                                                               ^
/usr/include/openssl/safestack.h:193:36: note: expanded from macro 'SKM_sk_pop_free'
        sk_pop_free(st, (void (*)(void *))free_func)
                                          ^
/usr/include/openssl/x509.h:983:7: note: 'X509_INFO_free' has been explicitly marked deprecated here
void            X509_INFO_free(X509_INFO *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_init.c:1444:30: warning: 'EVP_PKEY_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        MODSSL_CFG_ITEM_FREE(EVP_PKEY_free,
                             ^
ssl_engine_init.c:1402:9: note: expanded from macro 'MODSSL_CFG_ITEM_FREE'
        func(item); \
        ^
/usr/include/openssl/evp.h:878:7: note: 'EVP_PKEY_free' has been explicitly marked deprecated here
void            EVP_PKEY_free(EVP_PKEY *pkey) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
88 warnings generated.
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c ssl_engine_io.c && touch ssl_engine_io.slo
ssl_engine_io.c:208:5: warning: 'BIO_clear_flags' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    BIO_clear_retry_flags(bio);
    ^
/usr/include/openssl/bio.h:222:3: note: expanded from macro 'BIO_clear_retry_flags'
                BIO_clear_flags(b, (BIO_FLAGS_RWS|BIO_FLAGS_SHOULD_RETRY))
                ^
/usr/include/openssl/bio.h:210:6: note: 'BIO_clear_flags' has been explicitly marked deprecated here
void BIO_clear_flags(BIO *b, int flags) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_io.c:312:5: warning: 'bwrite' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    bio_filter_out_write,
    ^
/usr/include/openssl/bio.h:276:8: note: 'bwrite' has been explicitly marked deprecated here
        int (*bwrite)(BIO *, const char *, int) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
              ^
ssl_engine_io.c:313:5: warning: 'bread' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    bio_filter_out_read,     /* read is never called */
    ^
/usr/include/openssl/bio.h:277:8: note: 'bread' has been explicitly marked deprecated here
        int (*bread)(BIO *, char *, int) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
              ^
ssl_engine_io.c:314:5: warning: 'bputs' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    bio_filter_out_puts,     /* puts is never called */
    ^
/usr/include/openssl/bio.h:278:8: note: 'bputs' has been explicitly marked deprecated here
        int (*bputs)(BIO *, const char *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
              ^
ssl_engine_io.c:315:5: warning: 'bgets' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    bio_filter_out_gets,     /* gets is never called */
    ^
/usr/include/openssl/bio.h:279:8: note: 'bgets' has been explicitly marked deprecated here
        int (*bgets)(BIO *, char *, int) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
              ^
ssl_engine_io.c:316:5: warning: 'ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    bio_filter_out_ctrl,
    ^
/usr/include/openssl/bio.h:280:9: note: 'ctrl' has been explicitly marked deprecated here
        long (*ctrl)(BIO *, int, long, void *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
               ^
ssl_engine_io.c:317:5: warning: 'create' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    bio_filter_create,
    ^
/usr/include/openssl/bio.h:281:8: note: 'create' has been explicitly marked deprecated here
        int (*create)(BIO *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
              ^
ssl_engine_io.c:318:5: warning: 'destroy' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    bio_filter_destroy,
    ^
/usr/include/openssl/bio.h:282:8: note: 'destroy' has been explicitly marked deprecated here
        int (*destroy)(BIO *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
              ^
ssl_engine_io.c:320:5: warning: 'callback_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    NULL /* sslc does not have the callback_ctrl field */
    ^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/6.0/include/stddef.h:77:16: note: expanded from
      macro 'NULL'
#  define NULL ((void*)0)
               ^
/usr/include/openssl/bio.h:283:16: note: 'callback_ctrl' has been explicitly marked deprecated here
        long (*callback_ctrl)(BIO *, int, bio_info_cb *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
               ^
ssl_engine_io.c:503:5: warning: 'BIO_clear_flags' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    BIO_clear_retry_flags(bio);
    ^
/usr/include/openssl/bio.h:222:3: note: expanded from macro 'BIO_clear_retry_flags'
                BIO_clear_flags(b, (BIO_FLAGS_RWS|BIO_FLAGS_SHOULD_RETRY))
                ^
/usr/include/openssl/bio.h:210:6: note: 'BIO_clear_flags' has been explicitly marked deprecated here
void BIO_clear_flags(BIO *b, int flags) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_io.c:522:13: warning: 'BIO_set_flags' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            BIO_set_retry_read(bio);
            ^
/usr/include/openssl/bio.h:216:3: note: expanded from macro 'BIO_set_retry_read'
                BIO_set_flags(b, (BIO_FLAGS_READ|BIO_FLAGS_SHOULD_RETRY))
                ^
/usr/include/openssl/bio.h:208:6: note: 'BIO_set_flags' has been explicitly marked deprecated here
void BIO_set_flags(BIO *b, int flags) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_io.c:542:9: warning: 'BIO_set_flags' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        BIO_set_retry_read(bio);
        ^
/usr/include/openssl/bio.h:216:3: note: expanded from macro 'BIO_set_retry_read'
                BIO_set_flags(b, (BIO_FLAGS_READ|BIO_FLAGS_SHOULD_RETRY))
                ^
/usr/include/openssl/bio.h:208:6: note: 'BIO_set_flags' has been explicitly marked deprecated here
void BIO_set_flags(BIO *b, int flags) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_io.c:566:5: warning: 'bwrite' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    NULL,                       /* write is never called */
    ^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/6.0/include/stddef.h:77:16: note: expanded from
      macro 'NULL'
#  define NULL ((void*)0)
               ^
/usr/include/openssl/bio.h:276:8: note: 'bwrite' has been explicitly marked deprecated here
        int (*bwrite)(BIO *, const char *, int) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
              ^
ssl_engine_io.c:567:5: warning: 'bread' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    bio_filter_in_read,
    ^
/usr/include/openssl/bio.h:277:8: note: 'bread' has been explicitly marked deprecated here
        int (*bread)(BIO *, char *, int) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
              ^
ssl_engine_io.c:568:5: warning: 'bputs' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    NULL,                       /* puts is never called */
    ^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/6.0/include/stddef.h:77:16: note: expanded from
      macro 'NULL'
#  define NULL ((void*)0)
               ^
/usr/include/openssl/bio.h:278:8: note: 'bputs' has been explicitly marked deprecated here
        int (*bputs)(BIO *, const char *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
              ^
ssl_engine_io.c:569:5: warning: 'bgets' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    NULL,                       /* gets is never called */
    ^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/6.0/include/stddef.h:77:16: note: expanded from
      macro 'NULL'
#  define NULL ((void*)0)
               ^
/usr/include/openssl/bio.h:279:8: note: 'bgets' has been explicitly marked deprecated here
        int (*bgets)(BIO *, char *, int) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
              ^
ssl_engine_io.c:570:5: warning: 'ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    NULL,                       /* ctrl is never called */
    ^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/6.0/include/stddef.h:77:16: note: expanded from
      macro 'NULL'
#  define NULL ((void*)0)
               ^
/usr/include/openssl/bio.h:280:9: note: 'ctrl' has been explicitly marked deprecated here
        long (*ctrl)(BIO *, int, long, void *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
               ^
ssl_engine_io.c:571:5: warning: 'create' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    bio_filter_create,
    ^
/usr/include/openssl/bio.h:281:8: note: 'create' has been explicitly marked deprecated here
        int (*create)(BIO *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
              ^
ssl_engine_io.c:572:5: warning: 'destroy' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    bio_filter_destroy,
    ^
/usr/include/openssl/bio.h:282:8: note: 'destroy' has been explicitly marked deprecated here
        int (*destroy)(BIO *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
              ^
ssl_engine_io.c:574:5: warning: 'callback_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    NULL /* sslc does not have the callback_ctrl field */
    ^
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../lib/clang/6.0/include/stddef.h:77:16: note: expanded from
      macro 'NULL'
#  define NULL ((void*)0)
               ^
/usr/include/openssl/bio.h:283:16: note: 'callback_ctrl' has been explicitly marked deprecated here
        long (*callback_ctrl)(BIO *, int, bio_info_cb *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
               ^
ssl_engine_io.c:634:14: warning: 'SSL_read' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        rc = SSL_read(inctx->filter_ctx->pssl, buf + bytes, wanted - bytes);
             ^
/usr/include/openssl/ssl.h:1498:6: note: 'SSL_read' has been explicitly marked deprecated here
int     SSL_read(SSL *ssl,void *buf,int num) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_io.c:673:27: warning: 'SSL_get_error' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            int ssl_err = SSL_get_error(inctx->filter_ctx->pssl, rc);
                          ^
/usr/include/openssl/ssl.h:1506:5: note: 'SSL_get_error' has been explicitly marked deprecated here
int     SSL_get_error(const SSL *s,int ret_code) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_io.c:674:38: warning: 'SSL_get_ex_data' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            conn_rec *c = (conn_rec*)SSL_get_app_data(inctx->filter_ctx->pssl);
                                     ^
/usr/include/openssl/ssl.h:1081:31: note: expanded from macro 'SSL_get_app_data'
#define SSL_get_app_data(s)             (SSL_get_ex_data(s,0))
                                         ^
/usr/include/openssl/ssl.h:1592:7: note: 'SSL_get_ex_data' has been explicitly marked deprecated here
void *SSL_get_ex_data(const SSL *ssl,int idx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_io.c:801:11: warning: 'SSL_write' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    res = SSL_write(filter_ctx->pssl, (unsigned char *)data, len);
          ^
/usr/include/openssl/ssl.h:1500:6: note: 'SSL_write' has been explicitly marked deprecated here
int     SSL_write(SSL *ssl,const void *buf,int num) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_io.c:804:23: warning: 'SSL_get_error' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        int ssl_err = SSL_get_error(filter_ctx->pssl, res);
                      ^
/usr/include/openssl/ssl.h:1506:5: note: 'SSL_get_error' has been explicitly marked deprecated here
int     SSL_get_error(const SSL *s,int ret_code) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_io.c:805:34: warning: 'SSL_get_ex_data' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        conn_rec *c = (conn_rec*)SSL_get_app_data(outctx->filter_ctx->pssl);
                                 ^
/usr/include/openssl/ssl.h:1081:31: note: expanded from macro 'SSL_get_app_data'
#define SSL_get_app_data(s)             (SSL_get_ex_data(s,0))
                                         ^
/usr/include/openssl/ssl.h:1592:7: note: 'SSL_get_ex_data' has been explicitly marked deprecated here
void *SSL_get_ex_data(const SSL *ssl,int idx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_io.c:839:13: warning: 'SSL_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        if (SSL_total_renegotiations(filter_ctx->pssl)) {
            ^
/usr/include/openssl/ssl.h:1317:2: note: expanded from macro 'SSL_total_renegotiations'
        SSL_ctrl((ssl),SSL_CTRL_GET_TOTAL_RENEGOTIATIONS,0,NULL)
        ^
/usr/include/openssl/ssl.h:1501:6: note: 'SSL_ctrl' has been explicitly marked deprecated here
long    SSL_ctrl(SSL *ssl,int cmd, long larg, void *parg) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_io.c:871:5: warning: 'SSL_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    SSL_free(inctx->ssl);
    ^
/usr/include/openssl/ssl.h:1495:6: note: 'SSL_free' has been explicitly marked deprecated here
void    SSL_free(SSL *ssl) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_io.c:999:5: warning: 'SSL_set_shutdown' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    SSL_set_shutdown(ssl, shutdown_type);
    ^
/usr/include/openssl/ssl.h:1572:6: note: 'SSL_set_shutdown' has been explicitly marked deprecated here
void SSL_set_shutdown(SSL *ssl,int mode) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_io.c:1015:5: warning: 'SSL_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    SSL_free(ssl);
    ^
/usr/include/openssl/ssl.h:1495:6: note: 'SSL_free' has been explicitly marked deprecated here
void    SSL_free(SSL *ssl) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_io.c:1032:35: warning: 'SSL_get_ex_data' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        conn_rec *c = (conn_rec *)SSL_get_app_data(filter_ctx->pssl);
                                  ^
/usr/include/openssl/ssl.h:1081:31: note: expanded from macro 'SSL_get_app_data'
#define SSL_get_app_data(s)             (SSL_get_ex_data(s,0))
                                         ^
/usr/include/openssl/ssl.h:1592:7: note: 'SSL_get_ex_data' has been explicitly marked deprecated here
void *SSL_get_ex_data(const SSL *ssl,int idx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_io.c:1035:9: warning: 'SSL_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        SSL_free(filter_ctx->pssl);
        ^
/usr/include/openssl/ssl.h:1495:6: note: 'SSL_free' has been explicitly marked deprecated here
void    SSL_free(SSL *ssl) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_io.c:1051:39: warning: 'SSL_get_ex_data' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    conn_rec *c         = (conn_rec *)SSL_get_app_data(filter_ctx->pssl);
                                      ^
/usr/include/openssl/ssl.h:1081:31: note: expanded from macro 'SSL_get_app_data'
#define SSL_get_app_data(s)             (SSL_get_ex_data(s,0))
                                         ^
/usr/include/openssl/ssl.h:1592:7: note: 'SSL_get_ex_data' has been explicitly marked deprecated here
void *SSL_get_ex_data(const SSL *ssl,int idx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_io.c:1060:9: warning: 'SSL_state' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if (SSL_is_init_finished(filter_ctx->pssl)) {
        ^
/usr/include/openssl/ssl.h:1118:35: note: expanded from macro 'SSL_is_init_finished'
#define SSL_is_init_finished(a)         (SSL_state(a) == SSL_ST_OK)
                                         ^
/usr/include/openssl/ssl.h:1586:5: note: 'SSL_state' has been explicitly marked deprecated here
int SSL_state(const SSL *ssl) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_io.c:1069:18: warning: 'SSL_connect' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        if ((n = SSL_connect(filter_ctx->pssl)) <= 0) {
                 ^
/usr/include/openssl/ssl.h:1497:6: note: 'SSL_connect' has been explicitly marked deprecated here
int     SSL_connect(SSL *ssl) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_io.c:1080:20: warning: 'SSL_get_peer_certificate' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            cert = SSL_get_peer_certificate(filter_ctx->pssl);
                   ^
/usr/include/openssl/ssl.h:1455:8: note: 'SSL_get_peer_certificate' has been explicitly marked deprecated here
X509 *  SSL_get_peer_certificate(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_io.c:1082:21: warning: 'X509_cmp_current_time' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                || (X509_cmp_current_time(
                    ^
/usr/include/openssl/x509.h:882:6: note: 'X509_cmp_current_time' has been explicitly marked deprecated here
int             X509_cmp_current_time(ASN1_TIME *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_io.c:1084:21: warning: 'X509_cmp_current_time' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                || (X509_cmp_current_time(
                    ^
/usr/include/openssl/x509.h:882:6: note: 'X509_cmp_current_time' has been explicitly marked deprecated here
int             X509_cmp_current_time(ASN1_TIME *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_io.c:1122:14: warning: 'SSL_accept' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if ((n = SSL_accept(filter_ctx->pssl)) <= 0) {
             ^
/usr/include/openssl/ssl.h:1496:6: note: 'SSL_accept' has been explicitly marked deprecated here
int     SSL_accept(SSL *ssl) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_io.c:1128:19: warning: 'SSL_get_error' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        ssl_err = SSL_get_error(filter_ctx->pssl, n);
                  ^
/usr/include/openssl/ssl.h:1506:5: note: 'SSL_get_error' has been explicitly marked deprecated here
int     SSL_get_error(const SSL *s,int ret_code) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_io.c:1148:30: warning: 'ERR_peek_error' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        else if (ERR_GET_LIB(ERR_peek_error()) == ERR_LIB_SSL &&
                             ^
/usr/include/openssl/err.h:188:48: note: expanded from macro 'ERR_GET_LIB'
#define ERR_GET_LIB(l)          (int)((((unsigned long)l)>>24L)&0xffL)
                                                       ^
/usr/include/openssl/err.h:270:15: note: 'ERR_peek_error' has been explicitly marked deprecated here
unsigned long ERR_peek_error(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
              ^
ssl_engine_io.c:1149:33: warning: 'ERR_peek_error' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                 ERR_GET_REASON(ERR_peek_error()) == SSL_R_HTTP_REQUEST) {
                                ^
/usr/include/openssl/err.h:190:34: note: expanded from macro 'ERR_GET_REASON'
#define ERR_GET_REASON(l)       (int)((l)&0xfffL)
                                       ^
/usr/include/openssl/err.h:270:15: note: 'ERR_peek_error' has been explicitly marked deprecated here
unsigned long ERR_peek_error(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
              ^
ssl_engine_io.c:1185:21: warning: 'SSL_get_verify_result' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    verify_result = SSL_get_verify_result(filter_ctx->pssl);
                    ^
/usr/include/openssl/ssl.h:1589:6: note: 'SSL_get_verify_result' has been explicitly marked deprecated here
long SSL_get_verify_result(const SSL *ssl) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_io.c:1211:17: warning: 'X509_verify_cert_error_string' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                X509_verify_cert_error_string(verify_result);
                ^
/usr/include/openssl/x509.h:752:13: note: 'X509_verify_cert_error_string' has been explicitly marked deprecated here
const char *X509_verify_cert_error_string(long n) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_engine_io.c:1225:17: warning: 'SSL_get_peer_certificate' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if ((cert = SSL_get_peer_certificate(filter_ctx->pssl))) {
                ^
/usr/include/openssl/ssl.h:1455:8: note: 'SSL_get_peer_certificate' has been explicitly marked deprecated here
X509 *  SSL_get_peer_certificate(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_io.c:1310:5: warning: 'SSL_set_accept_state' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    SSL_set_accept_state(ssl);
    ^
/usr/include/openssl/ssl.h:1554:6: note: 'SSL_set_accept_state' has been explicitly marked deprecated here
void SSL_set_accept_state(SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_io.c:1311:5: warning: 'SSL_do_handshake' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    SSL_do_handshake(ssl);
    ^
/usr/include/openssl/ssl.h:1534:5: note: 'SSL_do_handshake' has been explicitly marked deprecated here
int SSL_do_handshake(SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_io.c:1313:9: warning: 'SSL_state' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if (SSL_get_state(ssl) != SSL_ST_OK) {
        ^
/usr/include/openssl/ssl.h:1117:27: note: expanded from macro 'SSL_get_state'
#define SSL_get_state(a)                SSL_state(a)
                                        ^
/usr/include/openssl/ssl.h:1586:5: note: 'SSL_state' has been explicitly marked deprecated here
int SSL_state(const SSL *ssl) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_io.c:1753:28: warning: 'BIO_new' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    filter_ctx->pbioRead = BIO_new(&bio_filter_in_method);
                           ^
/usr/include/openssl/bio.h:591:7: note: 'BIO_new' has been explicitly marked deprecated here
BIO *   BIO_new(BIO_METHOD *type) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_io.c:1780:35: warning: 'BIO_new' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    filter_ctx->pbioWrite       = BIO_new(&bio_filter_out_method);
                                  ^
/usr/include/openssl/bio.h:591:7: note: 'BIO_new' has been explicitly marked deprecated here
BIO *   BIO_new(BIO_METHOD *type) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_io.c:1788:5: warning: 'SSL_set_bio' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    SSL_set_bio(ssl, filter_ctx->pbioRead, filter_ctx->pbioWrite);
    ^
/usr/include/openssl/ssl.h:1380:6: note: 'SSL_set_bio' has been explicitly marked deprecated here
void    SSL_set_bio(SSL *s, BIO *rbio,BIO *wbio) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_io.c:1795:9: warning: 'BIO_set_callback' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        BIO_set_callback(SSL_get_rbio(ssl), ssl_io_data_cb);
        ^
/usr/include/openssl/bio.h:261:6: note: 'BIO_set_callback' has been explicitly marked deprecated here
void BIO_set_callback(BIO *b, 
     ^
ssl_engine_io.c:1795:26: warning: 'SSL_get_rbio' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        BIO_set_callback(SSL_get_rbio(ssl), ssl_io_data_cb);
                         ^
/usr/include/openssl/ssl.h:1381:7: note: 'SSL_get_rbio' has been explicitly marked deprecated here
BIO *   SSL_get_rbio(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_io.c:1796:9: warning: 'BIO_set_callback_arg' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        BIO_set_callback_arg(SSL_get_rbio(ssl), (void *)ssl);
        ^
/usr/include/openssl/bio.h:264:6: note: 'BIO_set_callback_arg' has been explicitly marked deprecated here
void BIO_set_callback_arg(BIO *b, char *arg) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_io.c:1796:30: warning: 'SSL_get_rbio' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        BIO_set_callback_arg(SSL_get_rbio(ssl), (void *)ssl);
                             ^
/usr/include/openssl/ssl.h:1381:7: note: 'SSL_get_rbio' has been explicitly marked deprecated here
BIO *   SSL_get_rbio(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_io.c:1898:23: warning: 'BIO_get_callback_arg' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if ((ssl = (SSL *)BIO_get_callback_arg(bio)) == NULL)
                      ^
/usr/include/openssl/bio.h:263:7: note: 'BIO_get_callback_arg' has been explicitly marked deprecated here
char *BIO_get_callback_arg(const BIO *b) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_io.c:1900:26: warning: 'SSL_get_ex_data' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if ((c = (conn_rec *)SSL_get_app_data(ssl)) == NULL)
                         ^
/usr/include/openssl/ssl.h:1081:31: note: expanded from macro 'SSL_get_app_data'
#define SSL_get_app_data(s)             (SSL_get_ex_data(s,0))
                                         ^
/usr/include/openssl/ssl.h:1592:7: note: 'SSL_get_ex_data' has been explicitly marked deprecated here
void *SSL_get_ex_data(const SSL *ssl,int idx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
57 warnings generated.
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c ssl_engine_kernel.c && touch ssl_engine_kernel.slo
ssl_engine_kernel.c:99:23: warning: 'SSL_get_servername' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if ((servername = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name))) {
                      ^
/usr/include/openssl/tls1.h:146:13: note: 'SSL_get_servername' has been explicitly marked deprecated here
const char *SSL_get_servername(const SSL *s, const int type) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_engine_kernel.c:231:15: warning: 'SSL_get_SSL_CTX' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        ctx = SSL_get_SSL_CTX(ssl);
              ^
/usr/include/openssl/ssl.h:1581:10: note: 'SSL_get_SSL_CTX' has been explicitly marked deprecated here
SSL_CTX *SSL_get_SSL_CTX(const SSL *ssl) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
         ^
ssl_engine_kernel.c:313:22: warning: 'SSL_get_current_cipher' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            cipher = SSL_get_current_cipher(ssl);
                     ^
/usr/include/openssl/ssl.h:1362:13: note: 'SSL_get_current_cipher' has been explicitly marked deprecated here
SSL_CIPHER *SSL_get_current_cipher(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_engine_kernel.c:316:55: warning: 'SSL_get_ciphers' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            cipher_list_old = (STACK_OF(SSL_CIPHER) *)SSL_get_ciphers(ssl);
                                                      ^
/usr/include/openssl/ssl.h:1532:23: note: 'SSL_get_ciphers' has been explicitly marked deprecated here
STACK_OF(SSL_CIPHER) *SSL_get_ciphers(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                      ^
ssl_engine_kernel.c:319:35: warning: 'sk_dup' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                cipher_list_old = sk_SSL_CIPHER_dup(cipher_list_old);
                                  ^
/usr/include/openssl/safestack.h:1290:31: note: expanded from macro 'sk_SSL_CIPHER_dup'
#define sk_SSL_CIPHER_dup(st) SKM_sk_dup(SSL_CIPHER, st)
                              ^
/usr/include/openssl/safestack.h:191:2: note: expanded from macro 'SKM_sk_dup'
        sk_dup(st)
        ^
/usr/include/openssl/stack.h:103:8: note: 'sk_dup' has been explicitly marked deprecated here
STACK *sk_dup(STACK *st) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
       ^
ssl_engine_kernel.c:325:14: warning: 'SSL_set_cipher_list' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            !modssl_set_cipher_list(ssl, dc->szCipherSuite ?
             ^
./ssl_toolkit_compat.h:130:32: note: expanded from macro 'modssl_set_cipher_list'
#define modssl_set_cipher_list SSL_set_cipher_list
                               ^
/usr/include/openssl/ssl.h:1384:5: note: 'SSL_set_cipher_list' has been explicitly marked deprecated here
int     SSL_set_cipher_list(SSL *s, const char *str) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_kernel.c:334:17: warning: 'sk_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                sk_SSL_CIPHER_free(cipher_list_old);
                ^
/usr/include/openssl/safestack.h:1277:32: note: expanded from macro 'sk_SSL_CIPHER_free'
#define sk_SSL_CIPHER_free(st) SKM_sk_free(SSL_CIPHER, (st))
                               ^
/usr/include/openssl/safestack.h:166:2: note: expanded from macro 'SKM_sk_free'
        sk_free(st)
        ^
/usr/include/openssl/stack.h:88:6: note: 'sk_free' has been explicitly marked deprecated here
void sk_free(STACK *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_kernel.c:341:47: warning: 'SSL_get_ciphers' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        cipher_list = (STACK_OF(SSL_CIPHER) *)SSL_get_ciphers(ssl);
                                              ^
/usr/include/openssl/ssl.h:1532:23: note: 'SSL_get_ciphers' has been explicitly marked deprecated here
STACK_OF(SSL_CIPHER) *SSL_get_ciphers(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                      ^
ssl_engine_kernel.c:351:23: warning: 'sk_find' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                     (sk_SSL_CIPHER_find(cipher_list, cipher) < 0))
                      ^
/usr/include/openssl/safestack.h:1284:37: note: expanded from macro 'sk_SSL_CIPHER_find'
#define sk_SSL_CIPHER_find(st, val) SKM_sk_find(SSL_CIPHER, (st), (val))
                                    ^
/usr/include/openssl/safestack.h:180:2: note: expanded from macro 'SKM_sk_find'
        sk_find(st, (char *)val)
        ^
/usr/include/openssl/stack.h:93:5: note: 'sk_find' has been explicitly marked deprecated here
int sk_find(STACK *st,char *data) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_kernel.c:365:43: warning: 'sk_num' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                     !renegotiate && (n < sk_SSL_CIPHER_num(cipher_list));
                                          ^
/usr/include/openssl/safestack.h:1278:31: note: expanded from macro 'sk_SSL_CIPHER_num'
#define sk_SSL_CIPHER_num(st) SKM_sk_num(SSL_CIPHER, (st))
                              ^
/usr/include/openssl/safestack.h:168:2: note: expanded from macro 'SKM_sk_num'
        sk_num(st)
        ^
/usr/include/openssl/stack.h:81:5: note: 'sk_num' has been explicitly marked deprecated here
int sk_num(const STACK *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_kernel.c:368:41: warning: 'sk_value' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                    SSL_CIPHER *value = sk_SSL_CIPHER_value(cipher_list, n);
                                        ^
/usr/include/openssl/safestack.h:1279:36: note: expanded from macro 'sk_SSL_CIPHER_value'
#define sk_SSL_CIPHER_value(st, i) SKM_sk_value(SSL_CIPHER, (st), (i))
                                   ^
/usr/include/openssl/safestack.h:170:11: note: expanded from macro 'SKM_sk_value'
        ((type *)sk_value(st, i))
                 ^
/usr/include/openssl/stack.h:82:7: note: 'sk_value' has been explicitly marked deprecated here
char *sk_value(const STACK *, int) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_kernel.c:370:25: warning: 'sk_find' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                    if (sk_SSL_CIPHER_find(cipher_list_old, value) < 0) {
                        ^
/usr/include/openssl/safestack.h:1284:37: note: expanded from macro 'sk_SSL_CIPHER_find'
#define sk_SSL_CIPHER_find(st, val) SKM_sk_find(SSL_CIPHER, (st), (val))
                                    ^
/usr/include/openssl/safestack.h:180:2: note: expanded from macro 'SKM_sk_find'
        sk_find(st, (char *)val)
        ^
/usr/include/openssl/stack.h:93:5: note: 'sk_find' has been explicitly marked deprecated here
int sk_find(STACK *st,char *data) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_kernel.c:376:43: warning: 'sk_num' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                     !renegotiate && (n < sk_SSL_CIPHER_num(cipher_list_old));
                                          ^
/usr/include/openssl/safestack.h:1278:31: note: expanded from macro 'sk_SSL_CIPHER_num'
#define sk_SSL_CIPHER_num(st) SKM_sk_num(SSL_CIPHER, (st))
                              ^
/usr/include/openssl/safestack.h:168:2: note: expanded from macro 'SKM_sk_num'
        sk_num(st)
        ^
/usr/include/openssl/stack.h:81:5: note: 'sk_num' has been explicitly marked deprecated here
int sk_num(const STACK *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_kernel.c:379:41: warning: 'sk_value' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                    SSL_CIPHER *value = sk_SSL_CIPHER_value(cipher_list_old, n);
                                        ^
/usr/include/openssl/safestack.h:1279:36: note: expanded from macro 'sk_SSL_CIPHER_value'
#define sk_SSL_CIPHER_value(st, i) SKM_sk_value(SSL_CIPHER, (st), (i))
                                   ^
/usr/include/openssl/safestack.h:170:11: note: expanded from macro 'SKM_sk_value'
        ((type *)sk_value(st, i))
                 ^
/usr/include/openssl/stack.h:82:7: note: 'sk_value' has been explicitly marked deprecated here
char *sk_value(const STACK *, int) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_kernel.c:381:25: warning: 'sk_find' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                    if (sk_SSL_CIPHER_find(cipher_list, value) < 0) {
                        ^
/usr/include/openssl/safestack.h:1284:37: note: expanded from macro 'sk_SSL_CIPHER_find'
#define sk_SSL_CIPHER_find(st, val) SKM_sk_find(SSL_CIPHER, (st), (val))
                                    ^
/usr/include/openssl/safestack.h:180:2: note: expanded from macro 'SKM_sk_find'
        sk_find(st, (char *)val)
        ^
/usr/include/openssl/stack.h:93:5: note: 'sk_find' has been explicitly marked deprecated here
int sk_find(STACK *st,char *data) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_kernel.c:390:13: warning: 'sk_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            sk_SSL_CIPHER_free(cipher_list_old);
            ^
/usr/include/openssl/safestack.h:1277:32: note: expanded from macro 'sk_SSL_CIPHER_free'
#define sk_SSL_CIPHER_free(st) SKM_sk_free(SSL_CIPHER, (st))
                               ^
/usr/include/openssl/safestack.h:166:2: note: expanded from macro 'SKM_sk_free'
        sk_free(st)
        ^
/usr/include/openssl/stack.h:88:6: note: 'sk_free' has been explicitly marked deprecated here
void sk_free(STACK *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_kernel.c:396:17: warning: 'SSL_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                SSL_set_options(ssl, SSL_OP_CIPHER_SERVER_PREFERENCE);
                ^
/usr/include/openssl/ssl.h:580:2: note: expanded from macro 'SSL_set_options'
        SSL_ctrl((ssl),SSL_CTRL_OPTIONS,(op),NULL)
        ^
/usr/include/openssl/ssl.h:1501:6: note: 'SSL_ctrl' has been explicitly marked deprecated here
long    SSL_ctrl(SSL *ssl,int cmd, long larg, void *parg) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_kernel.c:447:22: warning: 'SSL_get_verify_mode' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        verify_old = SSL_get_verify_mode(ssl);
                     ^
/usr/include/openssl/ssl.h:1386:5: note: 'SSL_get_verify_mode' has been explicitly marked deprecated here
int     SSL_get_verify_mode(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_kernel.c:464:9: warning: 'SSL_set_verify' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        modssl_set_verify(ssl, verify, ssl_callback_SSLVerify);
        ^
./ssl_toolkit_compat.h:267:5: note: expanded from macro 'modssl_set_verify'
    SSL_set_verify(ssl, verify, cb)
    ^
/usr/include/openssl/ssl.h:1389:6: note: 'SSL_set_verify' has been explicitly marked deprecated here
void    SSL_set_verify(SSL *s, int mode,
        ^
ssl_engine_kernel.c:465:9: warning: 'SSL_set_verify_result' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        SSL_set_verify_result(ssl, X509_V_OK);
        ^
/usr/include/openssl/ssl.h:1588:6: note: 'SSL_set_verify_result' has been explicitly marked deprecated here
void SSL_set_verify_result(SSL *ssl,long v) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_kernel.c:483:34: warning: 'SSL_get_peer_certificate' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                    ((peercert = SSL_get_peer_certificate(ssl)) != NULL))
                                 ^
/usr/include/openssl/ssl.h:1455:8: note: 'SSL_get_peer_certificate' has been explicitly marked deprecated here
X509 *  SSL_get_peer_certificate(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_kernel.c:524:21: warning: 'SSL_set_verify' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                    modssl_set_verify(ssl, verify_old, NULL);
                    ^
./ssl_toolkit_compat.h:267:5: note: expanded from macro 'modssl_set_verify'
    SSL_set_verify(ssl, verify, cb)
    ^
/usr/include/openssl/ssl.h:1389:6: note: 'SSL_set_verify' has been explicitly marked deprecated here
void    SSL_set_verify(SSL *s, int mode,
        ^
ssl_engine_kernel.c:663:44: warning: 'SSL_get_peer_cert_chain' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            cert_stack = (STACK_OF(X509) *)SSL_get_peer_cert_chain(ssl);
                                           ^
/usr/include/openssl/ssl.h:1458:17: note: 'SSL_get_peer_cert_chain' has been explicitly marked deprecated here
STACK_OF(X509) *SSL_get_peer_cert_chain(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_kernel.c:665:20: warning: 'SSL_get_peer_certificate' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            cert = SSL_get_peer_certificate(ssl);
                   ^
/usr/include/openssl/ssl.h:1455:8: note: 'SSL_get_peer_certificate' has been explicitly marked deprecated here
X509 *  SSL_get_peer_certificate(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_kernel.c:673:30: warning: 'sk_new_null' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                cert_stack = sk_X509_new_null();
                             ^
/usr/include/openssl/safestack.h:1386:28: note: expanded from macro 'sk_X509_new_null'
#define sk_X509_new_null() SKM_sk_new_null(X509)
                           ^
/usr/include/openssl/safestack.h:164:2: note: expanded from macro 'SKM_sk_new_null'
        sk_new_null()
        ^
/usr/include/openssl/stack.h:87:8: note: 'sk_new_null' has been explicitly marked deprecated here
STACK *sk_new_null(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
       ^
ssl_engine_kernel.c:674:17: warning: 'sk_push' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                sk_X509_push(cert_stack, MODSSL_PCHAR_CAST cert);
                ^
/usr/include/openssl/safestack.h:1392:31: note: expanded from macro 'sk_X509_push'
#define sk_X509_push(st, val) SKM_sk_push(X509, (st), (val))
                              ^
/usr/include/openssl/safestack.h:176:2: note: expanded from macro 'SKM_sk_push'
        sk_push(st, (char *)val)
        ^
/usr/include/openssl/stack.h:95:5: note: 'sk_push' has been explicitly marked deprecated here
int sk_push(STACK *st,char *data) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_kernel.c:677:33: warning: 'sk_num' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            if (!cert_stack || (sk_X509_num(cert_stack) == 0)) {
                                ^
/usr/include/openssl/safestack.h:1388:25: note: expanded from macro 'sk_X509_num'
#define sk_X509_num(st) SKM_sk_num(X509, (st))
                        ^
/usr/include/openssl/safestack.h:168:2: note: expanded from macro 'SKM_sk_num'
        sk_num(st)
        ^
/usr/include/openssl/stack.h:81:5: note: 'sk_num' has been explicitly marked deprecated here
int sk_num(const STACK *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_kernel.c:685:33: warning: 'SSL_CTX_get_cert_store' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                  (cert_store = SSL_CTX_get_cert_store(ctx))))
                                ^
/usr/include/openssl/ssl.h:1355:13: note: 'SSL_CTX_get_cert_store' has been explicitly marked deprecated here
X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_engine_kernel.c:694:24: warning: 'sk_value' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                cert = sk_X509_value(cert_stack, 0);
                       ^
/usr/include/openssl/safestack.h:1389:30: note: expanded from macro 'sk_X509_value'
#define sk_X509_value(st, i) SKM_sk_value(X509, (st), (i))
                             ^
/usr/include/openssl/safestack.h:170:11: note: expanded from macro 'SKM_sk_value'
        ((type *)sk_value(st, i))
                 ^
/usr/include/openssl/stack.h:82:7: note: 'sk_value' has been explicitly marked deprecated here
char *sk_value(const STACK *, int) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_kernel.c:697:13: warning: 'X509_STORE_CTX_init' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            X509_STORE_CTX_init(&cert_store_ctx, cert_store, cert, cert_stack);
            ^
/usr/include/openssl/x509_vfy.h:402:5: note: 'X509_STORE_CTX_init' has been explicitly marked deprecated here
int X509_STORE_CTX_init(X509_STORE_CTX *ctx, X509_STORE *store,
    ^
ssl_engine_kernel.c:698:21: warning: 'SSL_get_verify_depth' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            depth = SSL_get_verify_depth(ssl);
                    ^
/usr/include/openssl/ssl.h:1387:5: note: 'SSL_get_verify_depth' has been explicitly marked deprecated here
int     SSL_get_verify_depth(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_kernel.c:701:17: warning: 'X509_STORE_CTX_set_depth' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                X509_STORE_CTX_set_depth(&cert_store_ctx, depth);
                ^
/usr/include/openssl/x509_vfy.h:271:6: note: 'X509_STORE_CTX_set_depth' has been explicitly marked deprecated here
void X509_STORE_CTX_set_depth(X509_STORE_CTX *ctx, int depth) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_kernel.c:704:13: warning: 'X509_STORE_CTX_set_ex_data' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            X509_STORE_CTX_set_ex_data(&cert_store_ctx,
            ^
/usr/include/openssl/x509_vfy.h:449:5: note: 'X509_STORE_CTX_set_ex_data' has been explicitly marked deprecated here
int     X509_STORE_CTX_set_ex_data(X509_STORE_CTX *ctx,int idx,void *data) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_kernel.c:705:40: warning: 'SSL_get_ex_data_X509_STORE_CTX_idx' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                                       SSL_get_ex_data_X509_STORE_CTX_idx(),
                                       ^
/usr/include/openssl/ssl.h:1606:5: note: 'SSL_get_ex_data_X509_STORE_CTX_idx' has been explicitly marked deprecated here
int SSL_get_ex_data_X509_STORE_CTX_idx(void ) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_kernel.c:708:18: warning: 'X509_verify_cert' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            if (!modssl_X509_verify_cert(&cert_store_ctx)) {
                 ^
./ssl_toolkit_compat.h:116:33: note: expanded from macro 'modssl_X509_verify_cert'
#define modssl_X509_verify_cert X509_verify_cert
                                ^
/usr/include/openssl/x509.h:1241:6: note: 'X509_verify_cert' has been explicitly marked deprecated here
int             X509_verify_cert(X509_STORE_CTX *ctx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_kernel.c:714:13: warning: 'SSL_set_verify_result' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            SSL_set_verify_result(ssl, cert_store_ctx.error);
            ^
/usr/include/openssl/ssl.h:1588:6: note: 'SSL_set_verify_result' has been explicitly marked deprecated here
void SSL_set_verify_result(SSL *ssl,long v) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_kernel.c:715:13: warning: 'X509_STORE_CTX_cleanup' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            X509_STORE_CTX_cleanup(&cert_store_ctx);
            ^
/usr/include/openssl/x509_vfy.h:405:6: note: 'X509_STORE_CTX_cleanup' has been explicitly marked deprecated here
void X509_STORE_CTX_cleanup(X509_STORE_CTX *ctx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_kernel.c:717:31: warning: 'SSL_get_peer_cert_chain' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            if (cert_stack != SSL_get_peer_cert_chain(ssl)) {
                              ^
/usr/include/openssl/ssl.h:1458:17: note: 'SSL_get_peer_cert_chain' has been explicitly marked deprecated here
STACK_OF(X509) *SSL_get_peer_cert_chain(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_kernel.c:719:17: warning: 'sk_pop_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                sk_X509_pop_free(cert_stack, X509_free);
                ^
/usr/include/openssl/safestack.h:1401:41: note: expanded from macro 'sk_X509_pop_free'
#define sk_X509_pop_free(st, free_func) SKM_sk_pop_free(X509, (st), (free_func))
                                        ^
/usr/include/openssl/safestack.h:193:2: note: expanded from macro 'SKM_sk_pop_free'
        sk_pop_free(st, (void (*)(void *))free_func)
        ^
/usr/include/openssl/stack.h:89:6: note: 'sk_pop_free' has been explicitly marked deprecated here
void sk_pop_free(STACK *st, void (*func)(void *)) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_kernel.c:744:29: warning: 'SSL_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            reneg_support = SSL_get_secure_renegotiation_support(ssl) ?
                            ^
/usr/include/openssl/ssl.h:602:2: note: expanded from macro 'SSL_get_secure_renegotiation_support'
        SSL_ctrl((ssl), SSL_CTRL_GET_RI_SUPPORT, 0, NULL)
        ^
/usr/include/openssl/ssl.h:1501:6: note: 'SSL_ctrl' has been explicitly marked deprecated here
long    SSL_ctrl(SSL *ssl,int cmd, long larg, void *parg) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_kernel.c:755:13: warning: 'SSL_set_session_id_context' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            SSL_set_session_id_context(ssl,
            ^
/usr/include/openssl/ssl.h:1487:5: note: 'SSL_set_session_id_context' has been explicitly marked deprecated here
int     SSL_set_session_id_context(SSL *ssl,const unsigned char *sid_ctx,
        ^
ssl_engine_kernel.c:763:13: warning: 'SSL_renegotiate' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            SSL_renegotiate(ssl);
            ^
/usr/include/openssl/ssl.h:1535:5: note: 'SSL_renegotiate' has been explicitly marked deprecated here
int SSL_renegotiate(SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_kernel.c:764:13: warning: 'SSL_do_handshake' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            SSL_do_handshake(ssl);
            ^
/usr/include/openssl/ssl.h:1534:5: note: 'SSL_do_handshake' has been explicitly marked deprecated here
int SSL_do_handshake(SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_kernel.c:766:17: warning: 'SSL_state' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            if (SSL_get_state(ssl) != SSL_ST_OK) {
                ^
/usr/include/openssl/ssl.h:1117:27: note: expanded from macro 'SSL_get_state'
#define SSL_get_state(a)                SSL_state(a)
                                        ^
/usr/include/openssl/ssl.h:1586:5: note: 'SSL_state' has been explicitly marked deprecated here
int SSL_state(const SSL *ssl) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_kernel.c:783:13: warning: 'SSL_do_handshake' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            SSL_do_handshake(ssl);
            ^
/usr/include/openssl/ssl.h:1534:5: note: 'SSL_do_handshake' has been explicitly marked deprecated here
int SSL_do_handshake(SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_kernel.c:787:17: warning: 'SSL_state' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            if (SSL_get_state(ssl) != SSL_ST_OK) {
                ^
/usr/include/openssl/ssl.h:1117:27: note: expanded from macro 'SSL_get_state'
#define SSL_get_state(a)                SSL_state(a)
                                        ^
/usr/include/openssl/ssl.h:1586:5: note: 'SSL_state' has been explicitly marked deprecated here
int SSL_state(const SSL *ssl) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_kernel.c:800:21: warning: 'SSL_get_peer_certificate' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        if ((cert = SSL_get_peer_certificate(ssl))) {
                    ^
/usr/include/openssl/ssl.h:1455:8: note: 'SSL_get_peer_certificate' has been explicitly marked deprecated here
X509 *  SSL_get_peer_certificate(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_kernel.c:816:31: warning: 'SSL_get_verify_result' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            if (do_verify && (SSL_get_verify_result(ssl) != X509_V_OK)) {
                              ^
/usr/include/openssl/ssl.h:1589:6: note: 'SSL_get_verify_result' has been explicitly marked deprecated here
long SSL_get_verify_result(const SSL *ssl) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_kernel.c:825:33: warning: 'SSL_get_peer_certificate' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                if ((peercert = SSL_get_peer_certificate(ssl)) == NULL) {
                                ^
/usr/include/openssl/ssl.h:1455:8: note: 'SSL_get_peer_certificate' has been explicitly marked deprecated here
X509 *  SSL_get_peer_certificate(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_kernel.c:841:22: warning: 'SSL_get_current_cipher' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            cipher = SSL_get_current_cipher(ssl);
                     ^
/usr/include/openssl/ssl.h:1362:13: note: 'SSL_get_current_cipher' has been explicitly marked deprecated here
SSL_CIPHER *SSL_get_current_cipher(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_engine_kernel.c:842:17: warning: 'sk_find' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            if (sk_SSL_CIPHER_find(cipher_list, cipher) < 0) {
                ^
/usr/include/openssl/safestack.h:1284:37: note: expanded from macro 'sk_SSL_CIPHER_find'
#define sk_SSL_CIPHER_find(st, val) SKM_sk_find(SSL_CIPHER, (st), (val))
                                    ^
/usr/include/openssl/safestack.h:180:2: note: expanded from macro 'SKM_sk_find'
        sk_find(st, (char *)val)
        ^
/usr/include/openssl/stack.h:93:5: note: 'sk_find' has been explicitly marked deprecated here
int sk_find(STACK *st,char *data) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_kernel.c:999:27: warning: 'X509_get_subject_name' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        X509_NAME *name = X509_get_subject_name(sslconn->client_cert);
                          ^
/usr/include/openssl/x509.h:1013:13: note: 'X509_get_subject_name' has been explicitly marked deprecated here
X509_NAME *     X509_get_subject_name(X509 *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_kernel.c:1000:20: warning: 'X509_NAME_oneline' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        char *cp = X509_NAME_oneline(name, NULL, 0);
                   ^
/usr/include/openssl/x509.h:984:9: note: 'X509_NAME_oneline' has been explicitly marked deprecated here
char *          X509_NAME_oneline(X509_NAME *a,char *buf,int size) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_kernel.c:1002:9: warning: 'CRYPTO_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        modssl_free(cp);
        ^
./ssl_toolkit_compat.h:132:21: note: expanded from macro 'modssl_free'
#define modssl_free OPENSSL_free
                    ^
/usr/include/openssl/crypto.h:375:28: note: expanded from macro 'OPENSSL_free'
#define OPENSSL_free(addr)      CRYPTO_free(addr)
                                ^
/usr/include/openssl/crypto.h:480:6: note: 'CRYPTO_free' has been explicitly marked deprecated here
void CRYPTO_free(void *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_kernel.c:1119:23: warning: 'SSL_get_servername' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if ((servername = SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name))) {
                      ^
/usr/include/openssl/tls1.h:146:13: note: 'SSL_get_servername' has been explicitly marked deprecated here
const char *SSL_get_servername(const SSL *s, const int type) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_engine_kernel.c:1151:45: warning: 'SSL_get_peer_cert_chain' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        if ((peer_certs = (STACK_OF(X509) *)SSL_get_peer_cert_chain(ssl))) {
                                            ^
/usr/include/openssl/ssl.h:1458:17: note: 'SSL_get_peer_cert_chain' has been explicitly marked deprecated here
STACK_OF(X509) *SSL_get_peer_cert_chain(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_kernel.c:1152:29: warning: 'sk_num' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            for (i = 0; i < sk_X509_num(peer_certs); i++) {
                            ^
/usr/include/openssl/safestack.h:1388:25: note: expanded from macro 'sk_X509_num'
#define sk_X509_num(st) SKM_sk_num(X509, (st))
                        ^
/usr/include/openssl/safestack.h:168:2: note: expanded from macro 'SKM_sk_num'
        sk_num(st)
        ^
/usr/include/openssl/stack.h:81:5: note: 'sk_num' has been explicitly marked deprecated here
int sk_num(const STACK *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_kernel.c:1166:20: warning: 'SSL_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                   SSL_get_secure_renegotiation_support(ssl) ? "1" : "0");
                   ^
/usr/include/openssl/ssl.h:602:2: note: expanded from macro 'SSL_get_secure_renegotiation_support'
        SSL_ctrl((ssl), SSL_CTRL_GET_RI_SUPPORT, 0, NULL)
        ^
/usr/include/openssl/ssl.h:1501:6: note: 'SSL_ctrl' has been explicitly marked deprecated here
long    SSL_ctrl(SSL *ssl,int cmd, long larg, void *parg) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_kernel.c:1218:31: warning: 'SSL_get_ex_data' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    conn_rec *c = (conn_rec *)SSL_get_app_data(ssl);
                              ^
/usr/include/openssl/ssl.h:1081:31: note: expanded from macro 'SSL_get_app_data'
#define SSL_get_app_data(s)             (SSL_get_ex_data(s,0))
                                         ^
/usr/include/openssl/ssl.h:1592:7: note: 'SSL_get_ex_data' has been explicitly marked deprecated here
void *SSL_get_ex_data(const SSL *ssl,int idx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_kernel.c:1250:31: warning: 'SSL_get_ex_data' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    conn_rec *c = (conn_rec *)SSL_get_app_data(ssl);
                              ^
/usr/include/openssl/ssl.h:1081:31: note: expanded from macro 'SSL_get_app_data'
#define SSL_get_app_data(s)             (SSL_get_ex_data(s,0))
                                         ^
/usr/include/openssl/ssl.h:1592:7: note: 'SSL_get_ex_data' has been explicitly marked deprecated here
void *SSL_get_ex_data(const SSL *ssl,int idx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_kernel.c:1277:16: warning: 'X509_STORE_CTX_get_ex_data' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    SSL *ssl = X509_STORE_CTX_get_ex_data(ctx,
               ^
/usr/include/openssl/x509_vfy.h:450:8: note: 'X509_STORE_CTX_get_ex_data' has been explicitly marked deprecated here
void *  X509_STORE_CTX_get_ex_data(X509_STORE_CTX *ctx,int idx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_kernel.c:1278:43: warning: 'SSL_get_ex_data_X509_STORE_CTX_idx' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                                          SSL_get_ex_data_X509_STORE_CTX_idx());
                                          ^
/usr/include/openssl/ssl.h:1606:5: note: 'SSL_get_ex_data_X509_STORE_CTX_idx' has been explicitly marked deprecated here
int SSL_get_ex_data_X509_STORE_CTX_idx(void ) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_kernel.c:1279:39: warning: 'SSL_get_ex_data' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    conn_rec *conn      = (conn_rec *)SSL_get_app_data(ssl);
                                      ^
/usr/include/openssl/ssl.h:1081:31: note: expanded from macro 'SSL_get_app_data'
#define SSL_get_app_data(s)             (SSL_get_ex_data(s,0))
                                         ^
/usr/include/openssl/ssl.h:1592:7: note: 'SSL_get_ex_data' has been explicitly marked deprecated here
void *SSL_get_ex_data(const SSL *ssl,int idx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_kernel.c:1289:20: warning: 'X509_STORE_CTX_get_error' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    int errnum   = X509_STORE_CTX_get_error(ctx);
                   ^
/usr/include/openssl/x509_vfy.h:451:5: note: 'X509_STORE_CTX_get_error' has been explicitly marked deprecated here
int     X509_STORE_CTX_get_error(X509_STORE_CTX *ctx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_kernel.c:1290:20: warning: 'X509_STORE_CTX_get_error_depth' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    int errdepth = X509_STORE_CTX_get_error_depth(ctx);
                   ^
/usr/include/openssl/x509_vfy.h:453:5: note: 'X509_STORE_CTX_get_error_depth' has been explicitly marked deprecated here
int     X509_STORE_CTX_get_error_depth(X509_STORE_CTX *ctx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_kernel.c:1297:23: warning: 'X509_STORE_CTX_get_current_cert' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        X509 *cert  = X509_STORE_CTX_get_current_cert(ctx);
                      ^
/usr/include/openssl/x509_vfy.h:454:8: note: 'X509_STORE_CTX_get_current_cert' has been explicitly marked deprecated here
X509 *  X509_STORE_CTX_get_current_cert(X509_STORE_CTX *ctx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_kernel.c:1298:23: warning: 'X509_NAME_oneline' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        char *sname = X509_NAME_oneline(X509_get_subject_name(cert), NULL, 0);
                      ^
/usr/include/openssl/x509.h:984:9: note: 'X509_NAME_oneline' has been explicitly marked deprecated here
char *          X509_NAME_oneline(X509_NAME *a,char *buf,int size) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_kernel.c:1298:41: warning: 'X509_get_subject_name' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        char *sname = X509_NAME_oneline(X509_get_subject_name(cert), NULL, 0);
                                        ^
/usr/include/openssl/x509.h:1013:13: note: 'X509_get_subject_name' has been explicitly marked deprecated here
X509_NAME *     X509_get_subject_name(X509 *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_kernel.c:1299:23: warning: 'X509_NAME_oneline' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        char *iname = X509_NAME_oneline(X509_get_issuer_name(cert),  NULL, 0);
                      ^
/usr/include/openssl/x509.h:984:9: note: 'X509_NAME_oneline' has been explicitly marked deprecated here
char *          X509_NAME_oneline(X509_NAME *a,char *buf,int size) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_kernel.c:1299:41: warning: 'X509_get_issuer_name' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        char *iname = X509_NAME_oneline(X509_get_issuer_name(cert),  NULL, 0);
                                        ^
/usr/include/openssl/x509.h:1011:13: note: 'X509_get_issuer_name' has been explicitly marked deprecated here
X509_NAME *     X509_get_issuer_name(X509 *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_kernel.c:1309:13: warning: 'CRYPTO_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            modssl_free(sname);
            ^
./ssl_toolkit_compat.h:132:21: note: expanded from macro 'modssl_free'
#define modssl_free OPENSSL_free
                    ^
/usr/include/openssl/crypto.h:375:28: note: expanded from macro 'OPENSSL_free'
#define OPENSSL_free(addr)      CRYPTO_free(addr)
                                ^
/usr/include/openssl/crypto.h:480:6: note: 'CRYPTO_free' has been explicitly marked deprecated here
void CRYPTO_free(void *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_kernel.c:1313:13: warning: 'CRYPTO_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            modssl_free(iname);
            ^
./ssl_toolkit_compat.h:132:21: note: expanded from macro 'modssl_free'
#define modssl_free OPENSSL_free
                    ^
/usr/include/openssl/crypto.h:375:28: note: expanded from macro 'OPENSSL_free'
#define OPENSSL_free(addr)      CRYPTO_free(addr)
                                ^
/usr/include/openssl/crypto.h:480:6: note: 'CRYPTO_free' has been explicitly marked deprecated here
void CRYPTO_free(void *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_kernel.c:1353:22: warning: 'X509_STORE_CTX_get_error' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            errnum = X509_STORE_CTX_get_error(ctx);
                     ^
/usr/include/openssl/x509_vfy.h:451:5: note: 'X509_STORE_CTX_get_error' has been explicitly marked deprecated here
int     X509_STORE_CTX_get_error(X509_STORE_CTX *ctx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_kernel.c:1363:31: warning: 'X509_verify_cert_error_string' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                      errnum, X509_verify_cert_error_string(errnum));
                              ^
/usr/include/openssl/x509.h:752:13: note: 'X509_verify_cert_error_string' has been explicitly marked deprecated here
const char *X509_verify_cert_error_string(long n) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_engine_kernel.c:1370:33: warning: 'X509_verify_cert_error_string' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        sslconn->verify_error = X509_verify_cert_error_string(errnum);
                                ^
/usr/include/openssl/x509.h:752:13: note: 'X509_verify_cert_error_string' has been explicitly marked deprecated here
const char *X509_verify_cert_error_string(long n) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_engine_kernel.c:1391:33: warning: 'X509_verify_cert_error_string' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        sslconn->verify_error = X509_verify_cert_error_string(errnum);
                                ^
/usr/include/openssl/x509.h:752:13: note: 'X509_verify_cert_error_string' has been explicitly marked deprecated here
const char *X509_verify_cert_error_string(long n) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_engine_kernel.c:1404:16: warning: 'X509_STORE_CTX_get_ex_data' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    SSL *ssl = X509_STORE_CTX_get_ex_data(ctx,
               ^
/usr/include/openssl/x509_vfy.h:450:8: note: 'X509_STORE_CTX_get_ex_data' has been explicitly marked deprecated here
void *  X509_STORE_CTX_get_ex_data(X509_STORE_CTX *ctx,int idx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_kernel.c:1405:43: warning: 'SSL_get_ex_data_X509_STORE_CTX_idx' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                                          SSL_get_ex_data_X509_STORE_CTX_idx());
                                          ^
/usr/include/openssl/ssl.h:1606:5: note: 'SSL_get_ex_data_X509_STORE_CTX_idx' has been explicitly marked deprecated here
int SSL_get_ex_data_X509_STORE_CTX_idx(void ) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_kernel.c:1429:15: warning: 'X509_STORE_CTX_get_current_cert' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    cert    = X509_STORE_CTX_get_current_cert(ctx);
              ^
/usr/include/openssl/x509_vfy.h:454:8: note: 'X509_STORE_CTX_get_current_cert' has been explicitly marked deprecated here
X509 *  X509_STORE_CTX_get_current_cert(X509_STORE_CTX *ctx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_kernel.c:1430:15: warning: 'X509_get_subject_name' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    subject = X509_get_subject_name(cert);
              ^
/usr/include/openssl/x509.h:1013:13: note: 'X509_get_subject_name' has been explicitly marked deprecated here
X509_NAME *     X509_get_subject_name(X509 *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_kernel.c:1431:15: warning: 'X509_get_issuer_name' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    issuer  = X509_get_issuer_name(cert);
              ^
/usr/include/openssl/x509.h:1011:13: note: 'X509_get_issuer_name' has been explicitly marked deprecated here
X509_NAME *     X509_get_issuer_name(X509 *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_kernel.c:1480:24: warning: 'BIO_new' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            BIO *bio = BIO_new(BIO_s_mem());
                       ^
/usr/include/openssl/bio.h:591:7: note: 'BIO_new' has been explicitly marked deprecated here
BIO *   BIO_new(BIO_METHOD *type) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_kernel.c:1480:32: warning: 'BIO_s_mem' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            BIO *bio = BIO_new(BIO_s_mem());
                               ^
/usr/include/openssl/bio.h:626:13: note: 'BIO_s_mem' has been explicitly marked deprecated here
BIO_METHOD *BIO_s_mem(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_engine_kernel.c:1482:13: warning: 'BIO_printf' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            BIO_printf(bio, "CA CRL: Issuer: ");
            ^
/usr/include/openssl/bio.h:707:5: note: 'BIO_printf' has been explicitly marked deprecated here
int BIO_printf(BIO *bio, const char *format, ...)
    ^
ssl_engine_kernel.c:1483:13: warning: 'X509_NAME_print' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            X509_NAME_print(bio, issuer, 0);
            ^
/usr/include/openssl/x509.h:1086:6: note: 'X509_NAME_print' has been explicitly marked deprecated here
int             X509_NAME_print(BIO *bp, X509_NAME *name, int obase) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_kernel.c:1485:13: warning: 'BIO_printf' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            BIO_printf(bio, ", lastUpdate: ");
            ^
/usr/include/openssl/bio.h:707:5: note: 'BIO_printf' has been explicitly marked deprecated here
int BIO_printf(BIO *bio, const char *format, ...)
    ^
ssl_engine_kernel.c:1486:13: warning: 'ASN1_UTCTIME_print' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            ASN1_UTCTIME_print(bio, X509_CRL_get_lastUpdate(crl));
            ^
/usr/include/openssl/asn1.h:1006:5: note: 'ASN1_UTCTIME_print' has been explicitly marked deprecated here
int ASN1_UTCTIME_print(BIO *fp,ASN1_UTCTIME *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_kernel.c:1488:13: warning: 'BIO_printf' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            BIO_printf(bio, ", nextUpdate: ");
            ^
/usr/include/openssl/bio.h:707:5: note: 'BIO_printf' has been explicitly marked deprecated here
int BIO_printf(BIO *bio, const char *format, ...)
    ^
ssl_engine_kernel.c:1489:13: warning: 'ASN1_UTCTIME_print' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            ASN1_UTCTIME_print(bio, X509_CRL_get_nextUpdate(crl));
            ^
/usr/include/openssl/asn1.h:1006:5: note: 'ASN1_UTCTIME_print' has been explicitly marked deprecated here
int ASN1_UTCTIME_print(BIO *fp,ASN1_UTCTIME *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_kernel.c:1491:17: warning: 'BIO_read' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            n = BIO_read(bio, buff, sizeof(buff) - 1);
                ^
/usr/include/openssl/bio.h:595:5: note: 'BIO_read' has been explicitly marked deprecated here
int     BIO_read(BIO *b, void *data, int len) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_kernel.c:1494:13: warning: 'BIO_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            BIO_free(bio);
            ^
/usr/include/openssl/bio.h:593:5: note: 'BIO_free' has been explicitly marked deprecated here
int     BIO_free(BIO *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_kernel.c:1502:18: warning: 'X509_get_pubkey' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        pubkey = X509_get_pubkey(cert);
                 ^
/usr/include/openssl/x509.h:1017:12: note: 'X509_get_pubkey' has been explicitly marked deprecated here
EVP_PKEY *      X509_get_pubkey(X509 *x) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_kernel.c:1503:14: warning: 'X509_CRL_verify' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        rc = X509_CRL_verify(crl, pubkey);
             ^
/usr/include/openssl/x509.h:759:5: note: 'X509_CRL_verify' has been explicitly marked deprecated here
int X509_CRL_verify(X509_CRL *a, EVP_PKEY *r) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_kernel.c:1507:13: warning: 'EVP_PKEY_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            EVP_PKEY_free(pubkey);
            ^
/usr/include/openssl/evp.h:878:7: note: 'EVP_PKEY_free' has been explicitly marked deprecated here
void            EVP_PKEY_free(EVP_PKEY *pkey) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_kernel.c:1513:13: warning: 'X509_STORE_CTX_set_error' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            X509_STORE_CTX_set_error(ctx, X509_V_ERR_CRL_SIGNATURE_FAILURE);
            ^
/usr/include/openssl/x509_vfy.h:452:6: note: 'X509_STORE_CTX_set_error' has been explicitly marked deprecated here
void    X509_STORE_CTX_set_error(X509_STORE_CTX *ctx,int s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_kernel.c:1514:13: warning: 'X509_OBJECT_free_contents' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            X509_OBJECT_free_contents(&obj);
            ^
/usr/include/openssl/x509_vfy.h:388:6: note: 'X509_OBJECT_free_contents' has been explicitly marked deprecated here
void X509_OBJECT_free_contents(X509_OBJECT *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_kernel.c:1521:13: warning: 'X509_cmp_current_time' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        i = X509_cmp_current_time(X509_CRL_get_nextUpdate(crl));
            ^
/usr/include/openssl/x509.h:882:6: note: 'X509_cmp_current_time' has been explicitly marked deprecated here
int             X509_cmp_current_time(ASN1_TIME *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_kernel.c:1527:13: warning: 'X509_STORE_CTX_set_error' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            X509_STORE_CTX_set_error(ctx,
            ^
/usr/include/openssl/x509_vfy.h:452:6: note: 'X509_STORE_CTX_set_error' has been explicitly marked deprecated here
void    X509_STORE_CTX_set_error(X509_STORE_CTX *ctx,int s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_kernel.c:1529:13: warning: 'X509_OBJECT_free_contents' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            X509_OBJECT_free_contents(&obj);
            ^
/usr/include/openssl/x509_vfy.h:388:6: note: 'X509_OBJECT_free_contents' has been explicitly marked deprecated here
void X509_OBJECT_free_contents(X509_OBJECT *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_kernel.c:1539:13: warning: 'X509_STORE_CTX_set_error' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            X509_STORE_CTX_set_error(ctx, X509_V_ERR_CRL_HAS_EXPIRED);
            ^
/usr/include/openssl/x509_vfy.h:452:6: note: 'X509_STORE_CTX_set_error' has been explicitly marked deprecated here
void    X509_STORE_CTX_set_error(X509_STORE_CTX *ctx,int s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_kernel.c:1540:13: warning: 'X509_OBJECT_free_contents' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            X509_OBJECT_free_contents(&obj);
            ^
/usr/include/openssl/x509_vfy.h:388:6: note: 'X509_OBJECT_free_contents' has been explicitly marked deprecated here
void X509_OBJECT_free_contents(X509_OBJECT *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_kernel.c:1545:9: warning: 'X509_OBJECT_free_contents' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        X509_OBJECT_free_contents(&obj);
        ^
/usr/include/openssl/x509_vfy.h:388:6: note: 'X509_OBJECT_free_contents' has been explicitly marked deprecated here
void X509_OBJECT_free_contents(X509_OBJECT *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_kernel.c:1561:13: warning: 'sk_num' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        n = sk_X509_REVOKED_num(X509_CRL_get_REVOKED(crl));
            ^
/usr/include/openssl/safestack.h:1718:33: note: expanded from macro 'sk_X509_REVOKED_num'
#define sk_X509_REVOKED_num(st) SKM_sk_num(X509_REVOKED, (st))
                                ^
/usr/include/openssl/safestack.h:168:2: note: expanded from macro 'SKM_sk_num'
        sk_num(st)
        ^
/usr/include/openssl/stack.h:81:5: note: 'sk_num' has been explicitly marked deprecated here
int sk_num(const STACK *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_kernel.c:1565:17: warning: 'sk_value' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                sk_X509_REVOKED_value(X509_CRL_get_REVOKED(crl), i);
                ^
/usr/include/openssl/safestack.h:1719:38: note: expanded from macro 'sk_X509_REVOKED_value'
#define sk_X509_REVOKED_value(st, i) SKM_sk_value(X509_REVOKED, (st), (i))
                                     ^
/usr/include/openssl/safestack.h:170:11: note: expanded from macro 'SKM_sk_value'
        ((type *)sk_value(st, i))
                 ^
/usr/include/openssl/stack.h:82:7: note: 'sk_value' has been explicitly marked deprecated here
char *sk_value(const STACK *, int) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_kernel.c:1569:18: warning: 'ASN1_INTEGER_cmp' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            if (!ASN1_INTEGER_cmp(sn, X509_get_serialNumber(cert))) {
                 ^
/usr/include/openssl/asn1.h:829:5: note: 'ASN1_INTEGER_cmp' has been explicitly marked deprecated here
int ASN1_INTEGER_cmp(ASN1_INTEGER *x, ASN1_INTEGER *y) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_kernel.c:1569:39: warning: 'X509_get_serialNumber' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            if (!ASN1_INTEGER_cmp(sn, X509_get_serialNumber(cert))) {
                                      ^
/usr/include/openssl/x509.h:1009:16: note: 'X509_get_serialNumber' has been explicitly marked deprecated here
ASN1_INTEGER *  X509_get_serialNumber(X509 *x) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_kernel.c:1571:32: warning: 'X509_NAME_oneline' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                    char *cp = X509_NAME_oneline(issuer, NULL, 0);
                               ^
/usr/include/openssl/x509.h:984:9: note: 'X509_NAME_oneline' has been explicitly marked deprecated here
char *          X509_NAME_oneline(X509_NAME *a,char *buf,int size) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_kernel.c:1572:35: warning: 'ASN1_INTEGER_get' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                    long serial = ASN1_INTEGER_get(sn);
                                  ^
/usr/include/openssl/asn1.h:899:6: note: 'ASN1_INTEGER_get' has been explicitly marked deprecated here
long ASN1_INTEGER_get(ASN1_INTEGER *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_kernel.c:1578:21: warning: 'CRYPTO_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                    modssl_free(cp);
                    ^
./ssl_toolkit_compat.h:132:21: note: expanded from macro 'modssl_free'
#define modssl_free OPENSSL_free
                    ^
/usr/include/openssl/crypto.h:375:28: note: expanded from macro 'OPENSSL_free'
#define OPENSSL_free(addr)      CRYPTO_free(addr)
                                ^
/usr/include/openssl/crypto.h:480:6: note: 'CRYPTO_free' has been explicitly marked deprecated here
void CRYPTO_free(void *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_kernel.c:1581:17: warning: 'X509_STORE_CTX_set_error' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                X509_STORE_CTX_set_error(ctx, X509_V_ERR_CERT_REVOKED);
                ^
/usr/include/openssl/x509_vfy.h:452:6: note: 'X509_STORE_CTX_set_error' has been explicitly marked deprecated here
void    X509_STORE_CTX_set_error(X509_STORE_CTX *ctx,int s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_kernel.c:1582:17: warning: 'X509_OBJECT_free_contents' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                X509_OBJECT_free_contents(&obj);
                ^
/usr/include/openssl/x509_vfy.h:388:6: note: 'X509_OBJECT_free_contents' has been explicitly marked deprecated here
void X509_OBJECT_free_contents(X509_OBJECT *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_kernel.c:1588:9: warning: 'X509_OBJECT_free_contents' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        X509_OBJECT_free_contents(&obj);
        ^
/usr/include/openssl/x509_vfy.h:388:6: note: 'X509_OBJECT_free_contents' has been explicitly marked deprecated here
void X509_OBJECT_free_contents(X509_OBJECT *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_kernel.c:1610:12: warning: 'X509_get_subject_name' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    name = X509_get_subject_name(info->x509);
           ^
/usr/include/openssl/x509.h:1013:13: note: 'X509_get_subject_name' has been explicitly marked deprecated here
X509_NAME *     X509_get_subject_name(X509 *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_kernel.c:1611:10: warning: 'X509_NAME_oneline' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    dn = X509_NAME_oneline(name, name_buf, sizeof(name_buf));
         ^
/usr/include/openssl/x509.h:984:9: note: 'X509_NAME_oneline' has been explicitly marked deprecated here
char *          X509_NAME_oneline(X509_NAME *a,char *buf,int size) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_kernel.c:1631:31: warning: 'SSL_get_ex_data' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    conn_rec *c = (conn_rec *)SSL_get_app_data(ssl);
                              ^
/usr/include/openssl/ssl.h:1081:31: note: expanded from macro 'SSL_get_app_data'
#define SSL_get_app_data(s)             (SSL_get_ex_data(s,0))
                                         ^
/usr/include/openssl/ssl.h:1592:7: note: 'SSL_get_ex_data' has been explicitly marked deprecated here
void *SSL_get_ex_data(const SSL *ssl,int idx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_kernel.c:1647:20: warning: 'sk_num' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if (!certs || (sk_X509_INFO_num(certs) <= 0)) {
                   ^
/usr/include/openssl/safestack.h:1520:30: note: expanded from macro 'sk_X509_INFO_num'
#define sk_X509_INFO_num(st) SKM_sk_num(X509_INFO, (st))
                             ^
/usr/include/openssl/safestack.h:168:2: note: expanded from macro 'SKM_sk_num'
        sk_num(st)
        ^
/usr/include/openssl/stack.h:81:5: note: 'sk_num' has been explicitly marked deprecated here
int sk_num(const STACK *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_kernel.c:1655:15: warning: 'SSL_get_client_CA_list' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    ca_list = SSL_get_client_CA_list(ssl);
              ^
/usr/include/openssl/ssl.h:1548:22: note: 'SSL_get_client_CA_list' has been explicitly marked deprecated here
STACK_OF(X509_NAME) *SSL_get_client_CA_list(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                     ^
ssl_engine_kernel.c:1657:22: warning: 'sk_num' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if (!ca_list || (sk_X509_NAME_num(ca_list) <= 0)) {
                     ^
/usr/include/openssl/safestack.h:1564:30: note: expanded from macro 'sk_X509_NAME_num'
#define sk_X509_NAME_num(st) SKM_sk_num(X509_NAME, (st))
                             ^
/usr/include/openssl/safestack.h:168:2: note: expanded from macro 'SKM_sk_num'
        sk_num(st)
        ^
/usr/include/openssl/stack.h:81:5: note: 'sk_num' has been explicitly marked deprecated here
int sk_num(const STACK *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_kernel.c:1662:16: warning: 'sk_value' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        info = sk_X509_INFO_value(certs, 0);
               ^
/usr/include/openssl/safestack.h:1521:35: note: expanded from macro 'sk_X509_INFO_value'
#define sk_X509_INFO_value(st, i) SKM_sk_value(X509_INFO, (st), (i))
                                  ^
/usr/include/openssl/safestack.h:170:11: note: expanded from macro 'SKM_sk_value'
        ((type *)sk_value(st, i))
                 ^
/usr/include/openssl/stack.h:82:7: note: 'sk_value' has been explicitly marked deprecated here
char *sk_value(const STACK *, int) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_kernel.c:1666:9: warning: 'CRYPTO_add_lock' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        modssl_set_cert_info(info, x509, pkey);
        ^
ssl_engine_kernel.c:1625:5: note: expanded from macro 'modssl_set_cert_info'
    X509_reference_inc(*cert); \
    ^
./ssl_toolkit_compat.h:138:4: note: expanded from macro 'X509_reference_inc'
   CRYPTO_add(&((cert)->references), +1, CRYPTO_LOCK_X509)
   ^
/usr/include/openssl/crypto.h:248:2: note: expanded from macro 'CRYPTO_add'
        CRYPTO_add_lock(addr,amount,type,__FILE__,__LINE__)
        ^
/usr/include/openssl/crypto.h:429:5: note: 'CRYPTO_add_lock' has been explicitly marked deprecated here
int CRYPTO_add_lock(int *pointer,int amount,int type, const char *file,
    ^
ssl_engine_kernel.c:1666:9: warning: 'CRYPTO_add_lock' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        modssl_set_cert_info(info, x509, pkey);
        ^
ssl_engine_kernel.c:1627:5: note: expanded from macro 'modssl_set_cert_info'
    EVP_PKEY_reference_inc(*pkey)
    ^
./ssl_toolkit_compat.h:135:4: note: expanded from macro 'EVP_PKEY_reference_inc'
   CRYPTO_add(&((pkey)->references), +1, CRYPTO_LOCK_X509_PKEY)
   ^
/usr/include/openssl/crypto.h:248:2: note: expanded from macro 'CRYPTO_add'
        CRYPTO_add_lock(addr,amount,type,__FILE__,__LINE__)
        ^
/usr/include/openssl/crypto.h:429:5: note: 'CRYPTO_add_lock' has been explicitly marked deprecated here
int CRYPTO_add_lock(int *pointer,int amount,int type, const char *file,
    ^
ssl_engine_kernel.c:1672:21: warning: 'sk_num' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    for (i = 0; i < sk_X509_NAME_num(ca_list); i++) {
                    ^
/usr/include/openssl/safestack.h:1564:30: note: expanded from macro 'sk_X509_NAME_num'
#define sk_X509_NAME_num(st) SKM_sk_num(X509_NAME, (st))
                             ^
/usr/include/openssl/safestack.h:168:2: note: expanded from macro 'SKM_sk_num'
        sk_num(st)
        ^
/usr/include/openssl/stack.h:81:5: note: 'sk_num' has been explicitly marked deprecated here
int sk_num(const STACK *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_kernel.c:1673:19: warning: 'sk_value' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        ca_name = sk_X509_NAME_value(ca_list, i);
                  ^
/usr/include/openssl/safestack.h:1565:35: note: expanded from macro 'sk_X509_NAME_value'
#define sk_X509_NAME_value(st, i) SKM_sk_value(X509_NAME, (st), (i))
                                  ^
/usr/include/openssl/safestack.h:170:11: note: expanded from macro 'SKM_sk_value'
        ((type *)sk_value(st, i))
                 ^
/usr/include/openssl/stack.h:82:7: note: 'sk_value' has been explicitly marked deprecated here
char *sk_value(const STACK *, int) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_kernel.c:1675:25: warning: 'sk_num' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        for (j = 0; j < sk_X509_INFO_num(certs); j++) {
                        ^
/usr/include/openssl/safestack.h:1520:30: note: expanded from macro 'sk_X509_INFO_num'
#define sk_X509_INFO_num(st) SKM_sk_num(X509_INFO, (st))
                             ^
/usr/include/openssl/safestack.h:168:2: note: expanded from macro 'SKM_sk_num'
        sk_num(st)
        ^
/usr/include/openssl/stack.h:81:5: note: 'sk_num' has been explicitly marked deprecated here
int sk_num(const STACK *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_kernel.c:1676:20: warning: 'sk_value' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            info = sk_X509_INFO_value(certs, j);
                   ^
/usr/include/openssl/safestack.h:1521:35: note: expanded from macro 'sk_X509_INFO_value'
#define sk_X509_INFO_value(st, i) SKM_sk_value(X509_INFO, (st), (i))
                                  ^
/usr/include/openssl/safestack.h:170:11: note: expanded from macro 'SKM_sk_value'
        ((type *)sk_value(st, i))
                 ^
/usr/include/openssl/stack.h:82:7: note: 'sk_value' has been explicitly marked deprecated here
char *sk_value(const STACK *, int) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_kernel.c:1677:22: warning: 'X509_get_issuer_name' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            issuer = X509_get_issuer_name(info->x509);
                     ^
/usr/include/openssl/x509.h:1011:13: note: 'X509_get_issuer_name' has been explicitly marked deprecated here
X509_NAME *     X509_get_issuer_name(X509 *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_kernel.c:1680:17: warning: 'X509_NAME_cmp' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            if (X509_NAME_cmp(issuer, ca_name) == 0) {
                ^
/usr/include/openssl/x509.h:1073:6: note: 'X509_NAME_cmp' has been explicitly marked deprecated here
int             X509_NAME_cmp(const X509_NAME *a, const X509_NAME *b) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_kernel.c:1683:17: warning: 'CRYPTO_add_lock' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                modssl_set_cert_info(info, x509, pkey);
                ^
ssl_engine_kernel.c:1625:5: note: expanded from macro 'modssl_set_cert_info'
    X509_reference_inc(*cert); \
    ^
./ssl_toolkit_compat.h:138:4: note: expanded from macro 'X509_reference_inc'
   CRYPTO_add(&((cert)->references), +1, CRYPTO_LOCK_X509)
   ^
/usr/include/openssl/crypto.h:248:2: note: expanded from macro 'CRYPTO_add'
        CRYPTO_add_lock(addr,amount,type,__FILE__,__LINE__)
        ^
/usr/include/openssl/crypto.h:429:5: note: 'CRYPTO_add_lock' has been explicitly marked deprecated here
int CRYPTO_add_lock(int *pointer,int amount,int type, const char *file,
    ^
ssl_engine_kernel.c:1683:17: warning: 'CRYPTO_add_lock' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                modssl_set_cert_info(info, x509, pkey);
                ^
ssl_engine_kernel.c:1627:5: note: expanded from macro 'modssl_set_cert_info'
    EVP_PKEY_reference_inc(*pkey)
    ^
./ssl_toolkit_compat.h:135:4: note: expanded from macro 'EVP_PKEY_reference_inc'
   CRYPTO_add(&((pkey)->references), +1, CRYPTO_LOCK_X509_PKEY)
   ^
/usr/include/openssl/crypto.h:248:2: note: expanded from macro 'CRYPTO_add'
        CRYPTO_add_lock(addr,amount,type,__FILE__,__LINE__)
        ^
/usr/include/openssl/crypto.h:429:5: note: 'CRYPTO_add_lock' has been explicitly marked deprecated here
int CRYPTO_add_lock(int *pointer,int amount,int type, const char *file,
    ^
ssl_engine_kernel.c:1694:33: warning: 'sk_num' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                for (k = 0; k < sk_X509_num(ca_certs); k++) {
                                ^
/usr/include/openssl/safestack.h:1388:25: note: expanded from macro 'sk_X509_num'
#define sk_X509_num(st) SKM_sk_num(X509, (st))
                        ^
/usr/include/openssl/safestack.h:168:2: note: expanded from macro 'SKM_sk_num'
        sk_num(st)
        ^
/usr/include/openssl/stack.h:81:5: note: 'sk_num' has been explicitly marked deprecated here
int sk_num(const STACK *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_kernel.c:1695:31: warning: 'sk_value' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                    ca_cert = sk_X509_value(ca_certs, k);
                              ^
/usr/include/openssl/safestack.h:1389:30: note: expanded from macro 'sk_X509_value'
#define sk_X509_value(st, i) SKM_sk_value(X509, (st), (i))
                             ^
/usr/include/openssl/safestack.h:170:11: note: expanded from macro 'SKM_sk_value'
        ((type *)sk_value(st, i))
                 ^
/usr/include/openssl/stack.h:82:7: note: 'sk_value' has been explicitly marked deprecated here
char *sk_value(const STACK *, int) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_kernel.c:1696:33: warning: 'X509_get_issuer_name' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                    ca_issuer = X509_get_issuer_name(ca_cert);
                                ^
/usr/include/openssl/x509.h:1011:13: note: 'X509_get_issuer_name' has been explicitly marked deprecated here
X509_NAME *     X509_get_issuer_name(X509 *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_kernel.c:1698:24: warning: 'X509_NAME_cmp' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                    if(X509_NAME_cmp(ca_issuer, ca_name) == 0 ) {
                       ^
/usr/include/openssl/x509.h:1073:6: note: 'X509_NAME_cmp' has been explicitly marked deprecated here
int             X509_NAME_cmp(const X509_NAME *a, const X509_NAME *b) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_kernel.c:1701:25: warning: 'CRYPTO_add_lock' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                        modssl_set_cert_info(info, x509, pkey);
                        ^
ssl_engine_kernel.c:1625:5: note: expanded from macro 'modssl_set_cert_info'
    X509_reference_inc(*cert); \
    ^
./ssl_toolkit_compat.h:138:4: note: expanded from macro 'X509_reference_inc'
   CRYPTO_add(&((cert)->references), +1, CRYPTO_LOCK_X509)
   ^
/usr/include/openssl/crypto.h:248:2: note: expanded from macro 'CRYPTO_add'
        CRYPTO_add_lock(addr,amount,type,__FILE__,__LINE__)
        ^
/usr/include/openssl/crypto.h:429:5: note: 'CRYPTO_add_lock' has been explicitly marked deprecated here
int CRYPTO_add_lock(int *pointer,int amount,int type, const char *file,
    ^
ssl_engine_kernel.c:1701:25: warning: 'CRYPTO_add_lock' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                        modssl_set_cert_info(info, x509, pkey);
                        ^
ssl_engine_kernel.c:1627:5: note: expanded from macro 'modssl_set_cert_info'
    EVP_PKEY_reference_inc(*pkey)
    ^
./ssl_toolkit_compat.h:135:4: note: expanded from macro 'EVP_PKEY_reference_inc'
   CRYPTO_add(&((pkey)->references), +1, CRYPTO_LOCK_X509_PKEY)
   ^
/usr/include/openssl/crypto.h:248:2: note: expanded from macro 'CRYPTO_add'
        CRYPTO_add_lock(addr,amount,type,__FILE__,__LINE__)
        ^
/usr/include/openssl/crypto.h:429:5: note: 'CRYPTO_add_lock' has been explicitly marked deprecated here
int CRYPTO_add_lock(int *pointer,int amount,int type, const char *file,
    ^
ssl_engine_kernel.c:1754:39: warning: 'SSL_get_ex_data' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    conn_rec *conn      = (conn_rec *)SSL_get_app_data(ssl);
                                      ^
/usr/include/openssl/ssl.h:1081:31: note: expanded from macro 'SSL_get_app_data'
#define SSL_get_app_data(s)             (SSL_get_ex_data(s,0))
                                         ^
/usr/include/openssl/ssl.h:1592:7: note: 'SSL_get_ex_data' has been explicitly marked deprecated here
void *SSL_get_ex_data(const SSL *ssl,int idx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_kernel.c:1766:5: warning: 'SSL_SESSION_set_timeout' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    SSL_set_timeout(session, timeout);
    ^
/usr/include/openssl/ssl.h:1167:30: note: expanded from macro 'SSL_set_timeout'
#define SSL_set_timeout(a,b)    SSL_SESSION_set_timeout((a),(b))
                                ^
/usr/include/openssl/ssl.h:1429:6: note: 'SSL_SESSION_set_timeout' has been explicitly marked deprecated here
long    SSL_SESSION_set_timeout(SSL_SESSION *s, long t) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_kernel.c:1802:34: warning: 'SSL_get_ex_data' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    conn_rec *conn = (conn_rec *)SSL_get_app_data(ssl);
                                 ^
/usr/include/openssl/ssl.h:1081:31: note: expanded from macro 'SSL_get_app_data'
#define SSL_get_app_data(s)             (SSL_get_ex_data(s,0))
                                         ^
/usr/include/openssl/ssl.h:1592:7: note: 'SSL_get_ex_data' has been explicitly marked deprecated here
void *SSL_get_ex_data(const SSL *ssl,int idx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_kernel.c:1843:29: warning: 'SSL_CTX_get_ex_data' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if (!(s = (server_rec *)SSL_CTX_get_app_data(ctx))) {
                            ^
/usr/include/openssl/ssl.h:1084:36: note: expanded from macro 'SSL_CTX_get_app_data'
#define SSL_CTX_get_app_data(ctx)       (SSL_CTX_get_ex_data(ctx,0))
                                         ^
/usr/include/openssl/ssl.h:1602:7: note: 'SSL_CTX_get_ex_data' has been explicitly marked deprecated here
void *SSL_CTX_get_ex_data(const SSL_CTX *ssl,int idx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_kernel.c:1881:40: warning: 'SSL_state_string_long' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                     SSL_LIBRARY_NAME, SSL_state_string_long(ssl));
                                       ^
/usr/include/openssl/ssl.h:1424:13: note: 'SSL_state_string_long' has been explicitly marked deprecated here
const char *SSL_state_string_long(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_engine_kernel.c:1886:40: warning: 'SSL_state_string_long' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                     SSL_LIBRARY_NAME, SSL_state_string_long(ssl));
                                       ^
/usr/include/openssl/ssl.h:1424:13: note: 'SSL_state_string_long' has been explicitly marked deprecated here
const char *SSL_state_string_long(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_engine_kernel.c:1891:40: warning: 'SSL_state_string_long' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                     SSL_LIBRARY_NAME, SSL_state_string_long(ssl));
                                       ^
/usr/include/openssl/ssl.h:1424:13: note: 'SSL_state_string_long' has been explicitly marked deprecated here
const char *SSL_state_string_long(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_engine_kernel.c:1898:22: warning: 'SSL_alert_type_string_long' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                     SSL_alert_type_string_long(rc),
                     ^
/usr/include/openssl/ssl.h:1541:13: note: 'SSL_alert_type_string_long' has been explicitly marked deprecated here
const char *SSL_alert_type_string_long(int value) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_engine_kernel.c:1899:22: warning: 'SSL_alert_desc_string_long' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                     SSL_alert_desc_string_long(rc));
                     ^
/usr/include/openssl/ssl.h:1543:13: note: 'SSL_alert_desc_string_long' has been explicitly marked deprecated here
const char *SSL_alert_desc_string_long(int value) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_engine_kernel.c:1905:44: warning: 'SSL_state_string_long' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                         SSL_LIBRARY_NAME, SSL_state_string_long(ssl));
                                           ^
/usr/include/openssl/ssl.h:1424:13: note: 'SSL_state_string_long' has been explicitly marked deprecated here
const char *SSL_state_string_long(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_engine_kernel.c:1910:44: warning: 'SSL_state_string_long' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                         SSL_LIBRARY_NAME, SSL_state_string_long(ssl));
                                           ^
/usr/include/openssl/ssl.h:1424:13: note: 'SSL_state_string_long' has been explicitly marked deprecated here
const char *SSL_state_string_long(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_engine_kernel.c:1944:26: warning: 'SSL_get_ex_data' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if ((c = (conn_rec *)SSL_get_app_data((SSL *)ssl)) == NULL) {
                         ^
/usr/include/openssl/ssl.h:1081:31: note: expanded from macro 'SSL_get_app_data'
#define SSL_get_app_data(s)             (SSL_get_ex_data(s,0))
                                         ^
/usr/include/openssl/ssl.h:1592:7: note: 'SSL_get_ex_data' has been explicitly marked deprecated here
void *SSL_get_ex_data(const SSL *ssl,int idx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_kernel.c:1956:21: warning: 'SSL_state' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        int state = SSL_get_state(ssl);
                    ^
/usr/include/openssl/ssl.h:1117:27: note: expanded from macro 'SSL_get_state'
#define SSL_get_state(a)                SSL_state(a)
                                        ^
/usr/include/openssl/ssl.h:1586:5: note: 'SSL_state' has been explicitly marked deprecated here
int SSL_state(const SSL *ssl) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_kernel.c:1985:17: warning: 'SSL_get_servername' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                SSL_get_servername(ssl, TLSEXT_NAMETYPE_host_name);
                ^
/usr/include/openssl/tls1.h:146:13: note: 'SSL_get_servername' has been explicitly marked deprecated here
const char *SSL_get_servername(const SSL *s, const int type) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_engine_kernel.c:1988:35: warning: 'SSL_get_ex_data' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        conn_rec *c = (conn_rec *)SSL_get_app_data(ssl);
                                  ^
/usr/include/openssl/ssl.h:1081:31: note: expanded from macro 'SSL_get_app_data'
#define SSL_get_app_data(s)             (SSL_get_ex_data(s,0))
                                         ^
/usr/include/openssl/ssl.h:1592:7: note: 'SSL_get_ex_data' has been explicitly marked deprecated here
void *SSL_get_ex_data(const SSL *ssl,int idx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_kernel.c:2068:9: warning: 'SSL_set_SSL_CTX' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        SSL_set_SSL_CTX(ssl, sc->server->ssl_ctx);
        ^
/usr/include/openssl/ssl.h:1582:10: note: 'SSL_set_SSL_CTX' has been explicitly marked deprecated here
SSL_CTX *SSL_set_SSL_CTX(SSL *ssl, SSL_CTX* ctx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
         ^
ssl_engine_kernel.c:2074:9: warning: 'SSL_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        SSL_set_options(ssl, SSL_CTX_get_options(ssl->ctx));
        ^
/usr/include/openssl/ssl.h:580:2: note: expanded from macro 'SSL_set_options'
        SSL_ctrl((ssl),SSL_CTRL_OPTIONS,(op),NULL)
        ^
/usr/include/openssl/ssl.h:1501:6: note: 'SSL_ctrl' has been explicitly marked deprecated here
long    SSL_ctrl(SSL *ssl,int cmd, long larg, void *parg) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_kernel.c:2074:30: warning: 'SSL_CTX_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        SSL_set_options(ssl, SSL_CTX_get_options(ssl->ctx));
                             ^
/usr/include/openssl/ssl.h:578:2: note: expanded from macro 'SSL_CTX_get_options'
        SSL_CTX_ctrl((ctx),SSL_CTRL_OPTIONS,0,NULL)
        ^
/usr/include/openssl/ssl.h:580:35: note: expanded from macro 'SSL_set_options'
        SSL_ctrl((ssl),SSL_CTRL_OPTIONS,(op),NULL)
                                         ^
/usr/include/openssl/ssl.h:1503:6: note: 'SSL_CTX_ctrl' has been explicitly marked deprecated here
long    SSL_CTX_ctrl(SSL_CTX *ctx,int cmd, long larg, void *parg) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_kernel.c:2075:14: warning: 'SSL_get_verify_mode' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        if ((SSL_get_verify_mode(ssl) == SSL_VERIFY_NONE) ||
             ^
/usr/include/openssl/ssl.h:1386:5: note: 'SSL_get_verify_mode' has been explicitly marked deprecated here
int     SSL_get_verify_mode(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_kernel.c:2076:14: warning: 'SSL_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            (SSL_num_renegotiations(ssl) == 0)) {
             ^
/usr/include/openssl/ssl.h:1313:2: note: expanded from macro 'SSL_num_renegotiations'
        SSL_ctrl((ssl),SSL_CTRL_GET_NUM_RENEGOTIATIONS,0,NULL)
        ^
/usr/include/openssl/ssl.h:1501:6: note: 'SSL_ctrl' has been explicitly marked deprecated here
long    SSL_ctrl(SSL *ssl,int cmd, long larg, void *parg) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_kernel.c:2084:13: warning: 'SSL_set_verify' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            SSL_set_verify(ssl, SSL_CTX_get_verify_mode(ssl->ctx),
            ^
/usr/include/openssl/ssl.h:1389:6: note: 'SSL_set_verify' has been explicitly marked deprecated here
void    SSL_set_verify(SSL *s, int mode,
        ^
ssl_engine_kernel.c:2084:33: warning: 'SSL_CTX_get_verify_mode' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            SSL_set_verify(ssl, SSL_CTX_get_verify_mode(ssl->ctx),
                                ^
/usr/include/openssl/ssl.h:1460:5: note: 'SSL_CTX_get_verify_mode' has been explicitly marked deprecated here
int SSL_CTX_get_verify_mode(const SSL_CTX *ctx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_kernel.c:2085:28: warning: 'SSL_CTX_get_verify_callback' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                           SSL_CTX_get_verify_callback(ssl->ctx));
                           ^
/usr/include/openssl/ssl.h:1462:7: note: 'SSL_CTX_get_verify_callback' has been explicitly marked deprecated here
int (*SSL_CTX_get_verify_callback(const SSL_CTX *ctx))(int,X509_STORE_CTX *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_kernel.c:2102:13: warning: 'BIO_set_callback' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            BIO_set_callback(SSL_get_rbio(ssl), ssl_io_data_cb);
            ^
/usr/include/openssl/bio.h:261:6: note: 'BIO_set_callback' has been explicitly marked deprecated here
void BIO_set_callback(BIO *b, 
     ^
ssl_engine_kernel.c:2102:30: warning: 'SSL_get_rbio' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            BIO_set_callback(SSL_get_rbio(ssl), ssl_io_data_cb);
                             ^
/usr/include/openssl/ssl.h:1381:7: note: 'SSL_get_rbio' has been explicitly marked deprecated here
BIO *   SSL_get_rbio(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_kernel.c:2103:13: warning: 'BIO_set_callback_arg' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            BIO_set_callback_arg(SSL_get_rbio(ssl), (void *)ssl);
            ^
/usr/include/openssl/bio.h:264:6: note: 'BIO_set_callback_arg' has been explicitly marked deprecated here
void BIO_set_callback_arg(BIO *b, char *arg) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_kernel.c:2103:34: warning: 'SSL_get_rbio' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            BIO_set_callback_arg(SSL_get_rbio(ssl), (void *)ssl);
                                 ^
/usr/include/openssl/ssl.h:1381:7: note: 'SSL_get_rbio' has been explicitly marked deprecated here
BIO *   SSL_get_rbio(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
162 warnings generated.
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c ssl_engine_log.c && touch ssl_engine_log.slo
ssl_engine_log.c:83:17: warning: 'ERR_get_error' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    while ((e = ERR_get_error())) {
                ^
/usr/include/openssl/err.h:266:15: note: 'ERR_get_error' has been explicitly marked deprecated here
unsigned long ERR_get_error(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
              ^
ssl_engine_log.c:87:9: warning: 'ERR_error_string_n' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        ERR_error_string_n(e, err, sizeof err);
        ^
/usr/include/openssl/err.h:280:6: note: 'ERR_error_string_n' has been explicitly marked deprecated here
void ERR_error_string_n(unsigned long e, char *buf, size_t len) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
2 warnings generated.
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c ssl_engine_mutex.c && touch ssl_engine_mutex.slo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c ssl_engine_pphrase.c && touch ssl_engine_pphrase.slo
ssl_engine_pphrase.c:348:17: warning: 'ERR_clear_error' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                ERR_clear_error();
                ^
/usr/include/openssl/err.h:278:6: note: 'ERR_clear_error' has been explicitly marked deprecated here
void ERR_clear_error(void ) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_pphrase.c:505:22: warning: 'i2d_PrivateKey' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            length = i2d_PrivateKey(pPrivateKey, NULL);
                     ^
/usr/include/openssl/evp.h:888:6: note: 'i2d_PrivateKey' has been explicitly marked deprecated here
int             i2d_PrivateKey(EVP_PKEY *a, unsigned char **pp) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_pphrase.c:507:19: warning: 'i2d_PrivateKey' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            (void)i2d_PrivateKey(pPrivateKey, &ucp); /* 2nd arg increments */
                  ^
/usr/include/openssl/evp.h:888:6: note: 'i2d_PrivateKey' has been explicitly marked deprecated here
int             i2d_PrivateKey(EVP_PKEY *a, unsigned char **pp) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_pphrase.c:518:13: warning: 'EVP_PKEY_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            EVP_PKEY_free(pPrivateKey);
            ^
/usr/include/openssl/evp.h:878:7: note: 'EVP_PKEY_free' has been explicitly marked deprecated here
void            EVP_PKEY_free(EVP_PKEY *pkey) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_pphrase.c:685:21: warning: 'ERR_put_error' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                    PEMerr(PEM_F_DEF_CALLBACK,PEM_R_PROBLEMS_GETTING_PASSWORD);
                    ^
/usr/include/openssl/err.h:158:22: note: expanded from macro 'PEMerr'
#define PEMerr(f,r)  ERR_PUT_error(ERR_LIB_PEM,(f),(r),__FILE__,__LINE__)
                     ^
/usr/include/openssl/err.h:84:34: note: expanded from macro 'ERR_PUT_error'
#define ERR_PUT_error(a,b,c,d,e)        ERR_put_error(a,b,c,d,e)
                                        ^
/usr/include/openssl/err.h:263:6: note: 'ERR_put_error' has been explicitly marked deprecated here
void ERR_put_error(int lib, int func,int reason,const char *file,int line) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_pphrase.c:743:21: warning: 'EVP_read_pw_string' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                i = EVP_read_pw_string(buf, bufsize, "", FALSE);
                    ^
/usr/include/openssl/evp.h:566:5: note: 'EVP_read_pw_string' has been explicitly marked deprecated here
int     EVP_read_pw_string(char *buf,int length,const char *prompt,int verify) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_pphrase.c:746:17: warning: 'ERR_put_error' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                PEMerr(PEM_F_DEF_CALLBACK,PEM_R_PROBLEMS_GETTING_PASSWORD);
                ^
/usr/include/openssl/err.h:158:22: note: expanded from macro 'PEMerr'
#define PEMerr(f,r)  ERR_PUT_error(ERR_LIB_PEM,(f),(r),__FILE__,__LINE__)
                     ^
/usr/include/openssl/err.h:84:34: note: expanded from macro 'ERR_PUT_error'
#define ERR_PUT_error(a,b,c,d,e)        ERR_put_error(a,b,c,d,e)
                                        ^
/usr/include/openssl/err.h:263:6: note: 'ERR_put_error' has been explicitly marked deprecated here
void ERR_put_error(int lib, int func,int reason,const char *file,int line) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
7 warnings generated.
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c ssl_engine_rand.c && touch ssl_engine_rand.slo
ssl_engine_rand.c:92:26: warning: 'RAND_egd' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                if ((n = RAND_egd(pRandSeed->cpPath)) == -1)
                         ^
/usr/include/openssl/rand.h:113:5: note: 'RAND_egd' has been explicitly marked deprecated here
int RAND_egd(const char *path) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_rand.c:114:17: warning: 'RAND_seed' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                RAND_seed((unsigned char *)&my_seed, l);
                ^
/usr/include/openssl/rand.h:106:6: note: 'RAND_seed' has been explicitly marked deprecated here
void RAND_seed(const void *buf,int num) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_rand.c:121:17: warning: 'RAND_seed' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                RAND_seed(stackdata+n, 128);
                ^
/usr/include/openssl/rand.h:106:6: note: 'RAND_seed' has been explicitly marked deprecated here
void RAND_seed(const void *buf,int num) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_rand.c:130:9: warning: 'RAND_status' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if (RAND_status() == 0)
        ^
/usr/include/openssl/rand.h:111:5: note: 'RAND_status' has been explicitly marked deprecated here
int RAND_status(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_rand.c:156:9: warning: 'RAND_seed' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        RAND_seed(caBuf, nBuf);
        ^
/usr/include/openssl/rand.h:106:6: note: 'RAND_seed' has been explicitly marked deprecated here
void RAND_seed(const void *buf,int num) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
5 warnings generated.
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c ssl_engine_vars.c && touch ssl_engine_vars.slo
ssl_engine_vars.c:74:34: warning: 'SSLeay_version' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    var_library = apr_pstrdup(p, SSL_LIBRARY_DYNTEXT);
                                 ^
./ssl_util_ssl.h:46:29: note: expanded from macro 'SSL_LIBRARY_DYNTEXT'
#define SSL_LIBRARY_DYNTEXT SSLeay_version(SSLEAY_VERSION)
                            ^
/usr/include/openssl/crypto.h:382:13: note: 'SSLeay_version' has been explicitly marked deprecated here
const char *SSLeay_version(int type) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_engine_vars.c:288:26: warning: 'SSL_get_version' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        result = (char *)SSL_get_version(ssl);
                         ^
/usr/include/openssl/ssl.h:1507:13: note: 'SSL_get_version' has been explicitly marked deprecated here
const char *SSL_get_version(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_engine_vars.c:292:33: warning: 'SSL_get_session' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        SSL_SESSION *pSession = SSL_get_session(ssl);
                                ^
/usr/include/openssl/ssl.h:1579:14: note: 'SSL_get_session' has been explicitly marked deprecated here
SSL_SESSION *SSL_get_session(const SSL *ssl) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
             ^
ssl_engine_vars.c:304:14: warning: 'SSL_get_peer_cert_chain' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        sk = SSL_get_peer_cert_chain(ssl);
             ^
/usr/include/openssl/ssl.h:1458:17: note: 'SSL_get_peer_cert_chain' has been explicitly marked deprecated here
STACK_OF(X509) *SSL_get_peer_cert_chain(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_vars.c:311:19: warning: 'SSL_get_peer_certificate' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        if ((xs = SSL_get_peer_certificate(ssl)) != NULL) {
                  ^
/usr/include/openssl/ssl.h:1455:8: note: 'SSL_get_peer_certificate' has been explicitly marked deprecated here
X509 *  SSL_get_peer_certificate(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_vars.c:317:19: warning: 'SSL_get_certificate' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        if ((xs = SSL_get_certificate(ssl)) != NULL)
                  ^
/usr/include/openssl/ssl.h:1565:7: note: 'SSL_get_certificate' has been explicitly marked deprecated here
X509 *SSL_get_certificate(const SSL *ssl) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_vars.c:325:33: warning: 'SSL_get_servername' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        result = apr_pstrdup(p, SSL_get_servername(ssl,
                                ^
/usr/include/openssl/tls1.h:146:13: note: 'SSL_get_servername' has been explicitly marked deprecated here
const char *SSL_get_servername(const SSL *s, const int type) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_engine_vars.c:332:16: warning: 'SSL_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        flag = SSL_get_secure_renegotiation_support(ssl);
               ^
/usr/include/openssl/ssl.h:602:2: note: expanded from macro 'SSL_get_secure_renegotiation_support'
        SSL_ctrl((ssl), SSL_CTRL_GET_RI_SUPPORT, 0, NULL)
        ^
/usr/include/openssl/ssl.h:1501:6: note: 'SSL_ctrl' has been explicitly marked deprecated here
long    SSL_ctrl(SSL *ssl,int cmd, long larg, void *parg) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_vars.c:352:41: warning: 'ASN1_INTEGER_get' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        result = apr_psprintf(p, "%lu", X509_get_version(xs)+1);
                                        ^
/usr/include/openssl/x509.h:730:30: note: expanded from macro 'X509_get_version'
#define         X509_get_version(x) ASN1_INTEGER_get((x)->cert_info->version)
                                    ^
/usr/include/openssl/asn1.h:899:6: note: 'ASN1_INTEGER_get' has been explicitly marked deprecated here
long ASN1_INTEGER_get(ASN1_INTEGER *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_vars.c:369:18: warning: 'X509_get_subject_name' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        xsname = X509_get_subject_name(xs);
                 ^
/usr/include/openssl/x509.h:1013:13: note: 'X509_get_subject_name' has been explicitly marked deprecated here
X509_NAME *     X509_get_subject_name(X509 *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_vars.c:370:14: warning: 'X509_NAME_oneline' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        cp = X509_NAME_oneline(xsname, NULL, 0);
             ^
/usr/include/openssl/x509.h:984:9: note: 'X509_NAME_oneline' has been explicitly marked deprecated here
char *          X509_NAME_oneline(X509_NAME *a,char *buf,int size) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_vars.c:372:9: warning: 'CRYPTO_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        modssl_free(cp);
        ^
./ssl_toolkit_compat.h:132:21: note: expanded from macro 'modssl_free'
#define modssl_free OPENSSL_free
                    ^
/usr/include/openssl/crypto.h:375:28: note: expanded from macro 'OPENSSL_free'
#define OPENSSL_free(addr)      CRYPTO_free(addr)
                                ^
/usr/include/openssl/crypto.h:480:6: note: 'CRYPTO_free' has been explicitly marked deprecated here
void CRYPTO_free(void *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_vars.c:376:18: warning: 'X509_get_subject_name' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        xsname = X509_get_subject_name(xs);
                 ^
/usr/include/openssl/x509.h:1013:13: note: 'X509_get_subject_name' has been explicitly marked deprecated here
X509_NAME *     X509_get_subject_name(X509 *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_vars.c:381:18: warning: 'X509_get_issuer_name' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        xsname = X509_get_issuer_name(xs);
                 ^
/usr/include/openssl/x509.h:1011:13: note: 'X509_get_issuer_name' has been explicitly marked deprecated here
X509_NAME *     X509_get_issuer_name(X509 *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_vars.c:382:14: warning: 'X509_NAME_oneline' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        cp = X509_NAME_oneline(xsname, NULL, 0);
             ^
/usr/include/openssl/x509.h:984:9: note: 'X509_NAME_oneline' has been explicitly marked deprecated here
char *          X509_NAME_oneline(X509_NAME *a,char *buf,int size) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_vars.c:384:9: warning: 'CRYPTO_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        modssl_free(cp);
        ^
./ssl_toolkit_compat.h:132:21: note: expanded from macro 'modssl_free'
#define modssl_free OPENSSL_free
                    ^
/usr/include/openssl/crypto.h:375:28: note: expanded from macro 'OPENSSL_free'
#define OPENSSL_free(addr)      CRYPTO_free(addr)
                                ^
/usr/include/openssl/crypto.h:480:6: note: 'CRYPTO_free' has been explicitly marked deprecated here
void CRYPTO_free(void *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_vars.c:388:18: warning: 'X509_get_issuer_name' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        xsname = X509_get_issuer_name(xs);
                 ^
/usr/include/openssl/x509.h:1011:13: note: 'X509_get_issuer_name' has been explicitly marked deprecated here
X509_NAME *     X509_get_issuer_name(X509 *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_vars.c:393:15: warning: 'OBJ_obj2nid' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        nid = OBJ_obj2nid((ASN1_OBJECT *)X509_get_signature_algorithm(xs));
              ^
/usr/include/openssl/objects.h:1009:6: note: 'OBJ_obj2nid' has been explicitly marked deprecated here
int             OBJ_obj2nid(const ASN1_OBJECT *o) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_vars.c:395:63: warning: 'OBJ_nid2ln' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                             (nid == NID_undef) ? "UNKNOWN" : OBJ_nid2ln(nid));
                                                              ^
/usr/include/openssl/objects.h:1007:14: note: 'OBJ_nid2ln' has been explicitly marked deprecated here
const char *    OBJ_nid2ln(int n) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_vars.c:399:15: warning: 'OBJ_obj2nid' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        nid = OBJ_obj2nid((ASN1_OBJECT *)X509_get_key_algorithm(xs));
              ^
/usr/include/openssl/objects.h:1009:6: note: 'OBJ_obj2nid' has been explicitly marked deprecated here
int             OBJ_obj2nid(const ASN1_OBJECT *o) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_vars.c:401:63: warning: 'OBJ_nid2ln' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                             (nid == NID_undef) ? "UNKNOWN" : OBJ_nid2ln(nid));
                                                              ^
/usr/include/openssl/objects.h:1007:14: note: 'OBJ_nid2ln' has been explicitly marked deprecated here
const char *    OBJ_nid2ln(int n) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_vars.c:461:29: warning: 'sk_num' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            for (j = 0; j < sk_X509_NAME_ENTRY_num((STACK_OF(X509_NAME_ENTRY) *)
                            ^
/usr/include/openssl/safestack.h:1586:36: note: expanded from macro 'sk_X509_NAME_ENTRY_num'
#define sk_X509_NAME_ENTRY_num(st) SKM_sk_num(X509_NAME_ENTRY, (st))
                                   ^
/usr/include/openssl/safestack.h:168:2: note: expanded from macro 'SKM_sk_num'
        sk_num(st)
        ^
/usr/include/openssl/stack.h:81:5: note: 'sk_num' has been explicitly marked deprecated here
int sk_num(const STACK *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_vars.c:464:24: warning: 'sk_value' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                xsne = sk_X509_NAME_ENTRY_value((STACK_OF(X509_NAME_ENTRY) *)
                       ^
/usr/include/openssl/safestack.h:1587:41: note: expanded from macro 'sk_X509_NAME_ENTRY_value'
#define sk_X509_NAME_ENTRY_value(st, i) SKM_sk_value(X509_NAME_ENTRY, (st), (i))
                                        ^
/usr/include/openssl/safestack.h:170:11: note: expanded from macro 'SKM_sk_value'
        ((type *)sk_value(st, i))
                 ^
/usr/include/openssl/stack.h:82:7: note: 'sk_value' has been explicitly marked deprecated here
char *sk_value(const STACK *, int) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_vars.c:467:20: warning: 'OBJ_obj2nid' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                n =OBJ_obj2nid((ASN1_OBJECT *)X509_NAME_ENTRY_get_object(xsne));
                   ^
/usr/include/openssl/objects.h:1009:6: note: 'OBJ_obj2nid' has been explicitly marked deprecated here
int             OBJ_obj2nid(const ASN1_OBJECT *o) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_vars.c:467:47: warning: 'X509_NAME_ENTRY_get_object' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                n =OBJ_obj2nid((ASN1_OBJECT *)X509_NAME_ENTRY_get_object(xsne));
                                              ^
/usr/include/openssl/x509.h:1129:15: note: 'X509_NAME_ENTRY_get_object' has been explicitly marked deprecated here
ASN1_OBJECT *   X509_NAME_ENTRY_get_object(X509_NAME_ENTRY *ne) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_vars.c:492:16: warning: 'BIO_new' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if ((bio = BIO_new(BIO_s_mem())) == NULL)
               ^
/usr/include/openssl/bio.h:591:7: note: 'BIO_new' has been explicitly marked deprecated here
BIO *   BIO_new(BIO_METHOD *type) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_vars.c:492:24: warning: 'BIO_s_mem' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if ((bio = BIO_new(BIO_s_mem())) == NULL)
                       ^
/usr/include/openssl/bio.h:626:13: note: 'BIO_s_mem' has been explicitly marked deprecated here
BIO_METHOD *BIO_s_mem(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_engine_vars.c:494:5: warning: 'ASN1_UTCTIME_print' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    ASN1_UTCTIME_print(bio, tm);
    ^
/usr/include/openssl/asn1.h:1006:5: note: 'ASN1_UTCTIME_print' has been explicitly marked deprecated here
int ASN1_UTCTIME_print(BIO *fp,ASN1_UTCTIME *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_vars.c:495:9: warning: 'BIO_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    n = BIO_pending(bio);
        ^
/usr/include/openssl/bio.h:524:30: note: expanded from macro 'BIO_pending'
#define BIO_pending(b)          (int)BIO_ctrl(b,BIO_CTRL_PENDING,0,NULL)
                                     ^
/usr/include/openssl/bio.h:600:6: note: 'BIO_ctrl' has been explicitly marked deprecated here
long    BIO_ctrl(BIO *bp,int cmd,long larg,void *parg) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_vars.c:497:9: warning: 'BIO_read' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    n = BIO_read(bio, result, n);
        ^
/usr/include/openssl/bio.h:595:5: note: 'BIO_read' has been explicitly marked deprecated here
int     BIO_read(BIO *b, void *data, int len) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_vars.c:499:5: warning: 'BIO_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    BIO_free(bio);
    ^
/usr/include/openssl/bio.h:593:5: note: 'BIO_free' has been explicitly marked deprecated here
int     BIO_free(BIO *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_vars.c:516:29: warning: 'ASN1_UTCTIME_check' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if (tm->length < 11 || !ASN1_UTCTIME_check(tm)) {
                            ^
/usr/include/openssl/asn1.h:833:5: note: 'ASN1_UTCTIME_check' has been explicitly marked deprecated here
int ASN1_UTCTIME_check(ASN1_UTCTIME *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_vars.c:544:16: warning: 'BIO_new' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if ((bio = BIO_new(BIO_s_mem())) == NULL)
               ^
/usr/include/openssl/bio.h:591:7: note: 'BIO_new' has been explicitly marked deprecated here
BIO *   BIO_new(BIO_METHOD *type) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_vars.c:544:24: warning: 'BIO_s_mem' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if ((bio = BIO_new(BIO_s_mem())) == NULL)
                       ^
/usr/include/openssl/bio.h:626:13: note: 'BIO_s_mem' has been explicitly marked deprecated here
BIO_METHOD *BIO_s_mem(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_engine_vars.c:546:5: warning: 'i2a_ASN1_INTEGER' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    i2a_ASN1_INTEGER(bio, X509_get_serialNumber(xs));
    ^
/usr/include/openssl/asn1.h:884:5: note: 'i2a_ASN1_INTEGER' has been explicitly marked deprecated here
int i2a_ASN1_INTEGER(BIO *bp, ASN1_INTEGER *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_vars.c:546:27: warning: 'X509_get_serialNumber' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    i2a_ASN1_INTEGER(bio, X509_get_serialNumber(xs));
                          ^
/usr/include/openssl/x509.h:1009:16: note: 'X509_get_serialNumber' has been explicitly marked deprecated here
ASN1_INTEGER *  X509_get_serialNumber(X509 *x) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_vars.c:547:9: warning: 'BIO_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    n = BIO_pending(bio);
        ^
/usr/include/openssl/bio.h:524:30: note: expanded from macro 'BIO_pending'
#define BIO_pending(b)          (int)BIO_ctrl(b,BIO_CTRL_PENDING,0,NULL)
                                     ^
/usr/include/openssl/bio.h:600:6: note: 'BIO_ctrl' has been explicitly marked deprecated here
long    BIO_ctrl(BIO *bp,int cmd,long larg,void *parg) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_vars.c:549:9: warning: 'BIO_read' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    n = BIO_read(bio, result, n);
        ^
/usr/include/openssl/bio.h:595:5: note: 'BIO_read' has been explicitly marked deprecated here
int     BIO_read(BIO *b, void *data, int len) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_vars.c:551:5: warning: 'BIO_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    BIO_free(bio);
    ^
/usr/include/openssl/bio.h:593:5: note: 'BIO_free' has been explicitly marked deprecated here
int     BIO_free(BIO *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_vars.c:565:17: warning: 'sk_num' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        if (n < sk_X509_num(sk)) {
                ^
/usr/include/openssl/safestack.h:1388:25: note: expanded from macro 'sk_X509_num'
#define sk_X509_num(st) SKM_sk_num(X509, (st))
                        ^
/usr/include/openssl/safestack.h:168:2: note: expanded from macro 'SKM_sk_num'
        sk_num(st)
        ^
/usr/include/openssl/stack.h:81:5: note: 'sk_num' has been explicitly marked deprecated here
int sk_num(const STACK *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_vars.c:566:18: warning: 'sk_value' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            xs = sk_X509_value(sk, n);
                 ^
/usr/include/openssl/safestack.h:1389:30: note: expanded from macro 'sk_X509_value'
#define sk_X509_value(st, i) SKM_sk_value(X509, (st), (i))
                             ^
/usr/include/openssl/safestack.h:170:11: note: expanded from macro 'SKM_sk_value'
        ((type *)sk_value(st, i))
                 ^
/usr/include/openssl/stack.h:82:7: note: 'sk_value' has been explicitly marked deprecated here
char *sk_value(const STACK *, int) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_vars.c:580:16: warning: 'BIO_new' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if ((bio = BIO_new(BIO_s_mem())) == NULL)
               ^
/usr/include/openssl/bio.h:591:7: note: 'BIO_new' has been explicitly marked deprecated here
BIO *   BIO_new(BIO_METHOD *type) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_vars.c:580:24: warning: 'BIO_s_mem' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if ((bio = BIO_new(BIO_s_mem())) == NULL)
                       ^
/usr/include/openssl/bio.h:626:13: note: 'BIO_s_mem' has been explicitly marked deprecated here
BIO_METHOD *BIO_s_mem(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_engine_vars.c:583:9: warning: 'BIO_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    n = BIO_pending(bio);
        ^
/usr/include/openssl/bio.h:524:30: note: expanded from macro 'BIO_pending'
#define BIO_pending(b)          (int)BIO_ctrl(b,BIO_CTRL_PENDING,0,NULL)
                                     ^
/usr/include/openssl/bio.h:600:6: note: 'BIO_ctrl' has been explicitly marked deprecated here
long    BIO_ctrl(BIO *bp,int cmd,long larg,void *parg) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_vars.c:585:9: warning: 'BIO_read' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    n = BIO_read(bio, result, n);
        ^
/usr/include/openssl/bio.h:595:5: note: 'BIO_read' has been explicitly marked deprecated here
int     BIO_read(BIO *b, void *data, int len) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_vars.c:587:5: warning: 'BIO_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    BIO_free(bio);
    ^
/usr/include/openssl/bio.h:593:5: note: 'BIO_free' has been explicitly marked deprecated here
int     BIO_free(BIO *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_vars.c:605:13: warning: 'SSL_get_verify_result' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    vrc   = SSL_get_verify_result(ssl);
            ^
/usr/include/openssl/ssl.h:1589:6: note: 'SSL_get_verify_result' has been explicitly marked deprecated here
long SSL_get_verify_result(const SSL *ssl) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_vars.c:606:13: warning: 'SSL_get_peer_certificate' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    xs    = SSL_get_peer_certificate(ssl);
            ^
/usr/include/openssl/ssl.h:1455:8: note: 'SSL_get_peer_certificate' has been explicitly marked deprecated here
X509 *  SSL_get_peer_certificate(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_vars.c:641:54: warning: 'SSL_get_current_cipher' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        MODSSL_SSL_CIPHER_CONST SSL_CIPHER *cipher = SSL_get_current_cipher(ssl);
                                                     ^
/usr/include/openssl/ssl.h:1362:13: note: 'SSL_get_current_cipher' has been explicitly marked deprecated here
SSL_CIPHER *SSL_get_current_cipher(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_engine_vars.c:667:23: warning: 'SSL_get_current_cipher' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        if ((cipher = SSL_get_current_cipher(ssl)) != NULL)
                      ^
/usr/include/openssl/ssl.h:1362:13: note: 'SSL_get_current_cipher' has been explicitly marked deprecated here
SSL_CIPHER *SSL_get_current_cipher(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_engine_vars.c:668:27: warning: 'SSL_CIPHER_get_bits' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            *usekeysize = SSL_CIPHER_get_bits(cipher, algkeysize);
                          ^
/usr/include/openssl/ssl.h:1363:5: note: 'SSL_CIPHER_get_bits' has been explicitly marked deprecated here
int     SSL_CIPHER_get_bits(const SSL_CIPHER *c,int *alg_bits) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_vars.c:701:21: warning: 'sk_num' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    for (i = 0; i < sk_X509_NAME_ENTRY_num(ents); i++) {
                    ^
/usr/include/openssl/safestack.h:1586:36: note: expanded from macro 'sk_X509_NAME_ENTRY_num'
#define sk_X509_NAME_ENTRY_num(st) SKM_sk_num(X509_NAME_ENTRY, (st))
                                   ^
/usr/include/openssl/safestack.h:168:2: note: expanded from macro 'SKM_sk_num'
        sk_num(st)
        ^
/usr/include/openssl/stack.h:81:5: note: 'sk_num' has been explicitly marked deprecated here
int sk_num(const STACK *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_vars.c:704:17: warning: 'sk_value' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
         xsne = sk_X509_NAME_ENTRY_value(ents, i);
                ^
/usr/include/openssl/safestack.h:1587:41: note: expanded from macro 'sk_X509_NAME_ENTRY_value'
#define sk_X509_NAME_ENTRY_value(st, i) SKM_sk_value(X509_NAME_ENTRY, (st), (i))
                                        ^
/usr/include/openssl/safestack.h:170:11: note: expanded from macro 'SKM_sk_value'
        ((type *)sk_value(st, i))
                 ^
/usr/include/openssl/stack.h:82:7: note: 'sk_value' has been explicitly marked deprecated here
char *sk_value(const STACK *, int) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_vars.c:708:16: warning: 'OBJ_obj2nid' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
         nid = OBJ_obj2nid((ASN1_OBJECT *)X509_NAME_ENTRY_get_object(xsne));
               ^
/usr/include/openssl/objects.h:1009:6: note: 'OBJ_obj2nid' has been explicitly marked deprecated here
int             OBJ_obj2nid(const ASN1_OBJECT *o) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_vars.c:708:43: warning: 'X509_NAME_ENTRY_get_object' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
         nid = OBJ_obj2nid((ASN1_OBJECT *)X509_NAME_ENTRY_get_object(xsne));
                                          ^
/usr/include/openssl/x509.h:1129:15: note: 'X509_NAME_ENTRY_get_object' has been explicitly marked deprecated here
ASN1_OBJECT *   X509_NAME_ENTRY_get_object(X509_NAME_ENTRY *ne) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_vars.c:760:10: warning: 'SSL_get_certificate' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    xs = SSL_get_certificate(ssl);
         ^
/usr/include/openssl/ssl.h:1565:7: note: 'SSL_get_certificate' has been explicitly marked deprecated here
X509 *SSL_get_certificate(const SSL *ssl) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_vars.c:762:49: warning: 'X509_get_subject_name' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        extract_dn(t, nids, "SSL_SERVER_S_DN_", X509_get_subject_name(xs), p);
                                                ^
/usr/include/openssl/x509.h:1013:13: note: 'X509_get_subject_name' has been explicitly marked deprecated here
X509_NAME *     X509_get_subject_name(X509 *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_vars.c:763:49: warning: 'X509_get_issuer_name' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        extract_dn(t, nids, "SSL_SERVER_I_DN_", X509_get_issuer_name(xs), p);
                                                ^
/usr/include/openssl/x509.h:1011:13: note: 'X509_get_issuer_name' has been explicitly marked deprecated here
X509_NAME *     X509_get_issuer_name(X509 *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_vars.c:768:10: warning: 'SSL_get_peer_certificate' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    xs = SSL_get_peer_certificate(ssl);
         ^
/usr/include/openssl/ssl.h:1455:8: note: 'SSL_get_peer_certificate' has been explicitly marked deprecated here
X509 *  SSL_get_peer_certificate(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_vars.c:770:49: warning: 'X509_get_subject_name' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        extract_dn(t, nids, "SSL_CLIENT_S_DN_", X509_get_subject_name(xs), p);
                                                ^
/usr/include/openssl/x509.h:1013:13: note: 'X509_get_subject_name' has been explicitly marked deprecated here
X509_NAME *     X509_get_subject_name(X509 *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_vars.c:771:49: warning: 'X509_get_issuer_name' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        extract_dn(t, nids, "SSL_CLIENT_I_DN_", X509_get_issuer_name(xs), p);
                                                ^
/usr/include/openssl/x509.h:1011:13: note: 'X509_get_issuer_name' has been explicitly marked deprecated here
X509_NAME *     X509_get_issuer_name(X509 *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_vars.c:791:11: warning: 'OBJ_txt2obj' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    oid = OBJ_txt2obj(oidnum, 1);
          ^
/usr/include/openssl/objects.h:1010:15: note: 'OBJ_txt2obj' has been explicitly marked deprecated here
ASN1_OBJECT *   OBJ_txt2obj(const char *s, int no_name) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_vars.c:793:9: warning: 'ERR_clear_error' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        ERR_clear_error();
        ^
/usr/include/openssl/err.h:278:6: note: 'ERR_clear_error' has been explicitly marked deprecated here
void ERR_clear_error(void ) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_vars.c:797:17: warning: 'SSL_get_peer_certificate' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    xs = peer ? SSL_get_peer_certificate(ssl) : SSL_get_certificate(ssl);
                ^
/usr/include/openssl/ssl.h:1455:8: note: 'SSL_get_peer_certificate' has been explicitly marked deprecated here
X509 *  SSL_get_peer_certificate(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_vars.c:797:49: warning: 'SSL_get_certificate' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    xs = peer ? SSL_get_peer_certificate(ssl) : SSL_get_certificate(ssl);
                                                ^
/usr/include/openssl/ssl.h:1565:7: note: 'SSL_get_certificate' has been explicitly marked deprecated here
X509 *SSL_get_certificate(const SSL *ssl) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_engine_vars.c:802:13: warning: 'X509_get_ext_count' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    count = X509_get_ext_count(xs);
            ^
/usr/include/openssl/x509.h:1144:6: note: 'X509_get_ext_count' has been explicitly marked deprecated here
int             X509_get_ext_count(X509 *x) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_vars.c:805:31: warning: 'X509_get_ext' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        X509_EXTENSION *ext = X509_get_ext(xs, j);
                              ^
/usr/include/openssl/x509.h:1148:17: note: 'X509_get_ext' has been explicitly marked deprecated here
X509_EXTENSION *X509_get_ext(X509 *x, int loc) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_vars.c:807:13: warning: 'OBJ_cmp' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        if (OBJ_cmp(ext->object, oid) == 0) {
            ^
/usr/include/openssl/objects.h:1015:6: note: 'OBJ_cmp' has been explicitly marked deprecated here
int             OBJ_cmp(const ASN1_OBJECT *a,const ASN1_OBJECT *b) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_engine_vars.c:808:24: warning: 'BIO_new' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            BIO *bio = BIO_new(BIO_s_mem());
                       ^
/usr/include/openssl/bio.h:591:7: note: 'BIO_new' has been explicitly marked deprecated here
BIO *   BIO_new(BIO_METHOD *type) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_vars.c:808:32: warning: 'BIO_s_mem' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            BIO *bio = BIO_new(BIO_s_mem());
                               ^
/usr/include/openssl/bio.h:626:13: note: 'BIO_s_mem' has been explicitly marked deprecated here
BIO_METHOD *BIO_s_mem(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_engine_vars.c:810:17: warning: 'X509V3_EXT_print' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            if (X509V3_EXT_print(bio, ext, 0, 0) == 1) {
                ^
/usr/include/openssl/x509v3.h:598:5: note: 'X509V3_EXT_print' has been explicitly marked deprecated here
int X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_engine_vars.c:813:17: warning: 'BIO_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                BIO_get_mem_ptr(bio, &buf);
                ^
/usr/include/openssl/bio.h:506:31: note: expanded from macro 'BIO_get_mem_ptr'
#define BIO_get_mem_ptr(b,pp)   BIO_ctrl(b,BIO_C_GET_BUF_MEM_PTR,0,(char *)pp)
                                ^
/usr/include/openssl/bio.h:600:6: note: 'BIO_ctrl' has been explicitly marked deprecated here
long    BIO_ctrl(BIO *bp,int cmd,long larg,void *parg) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_vars.c:817:13: warning: 'BIO_vfree' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            BIO_vfree(bio);
            ^
/usr/include/openssl/bio.h:594:6: note: 'BIO_vfree' has been explicitly marked deprecated here
void    BIO_vfree(BIO *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_engine_vars.c:827:5: warning: 'ERR_clear_error' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    ERR_clear_error();
    ^
/usr/include/openssl/err.h:278:6: note: 'ERR_clear_error' has been explicitly marked deprecated here
void ERR_clear_error(void ) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_engine_vars.c:836:29: warning: 'SSL_get_session' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    SSL_SESSION *pSession = SSL_get_session(ssl);
                            ^
/usr/include/openssl/ssl.h:1579:14: note: 'SSL_get_session' has been explicitly marked deprecated here
SSL_SESSION *SSL_get_session(const SSL *ssl) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
             ^
75 warnings generated.
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c ssl_expr.c && touch ssl_expr.slo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c ssl_expr_eval.c && touch ssl_expr_eval.slo
ssl_expr_eval.c:216:16: warning: 'OBJ_txt2obj' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if ((oid = OBJ_txt2obj(oidstr, 1)) == NULL) {
               ^
/usr/include/openssl/objects.h:1010:15: note: 'OBJ_txt2obj' has been explicitly marked deprecated here
ASN1_OBJECT *   OBJ_txt2obj(const char *s, int no_name) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_expr_eval.c:217:9: warning: 'ERR_clear_error' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        ERR_clear_error();
        ^
/usr/include/openssl/err.h:278:6: note: 'ERR_clear_error' has been explicitly marked deprecated here
void ERR_clear_error(void ) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_expr_eval.c:222:15: warning: 'SSL_get_peer_certificate' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if ((xs = SSL_get_peer_certificate(sslconn->ssl)) == NULL ||
              ^
/usr/include/openssl/ssl.h:1455:8: note: 'SSL_get_peer_certificate' has been explicitly marked deprecated here
X509 *  SSL_get_peer_certificate(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_expr_eval.c:223:18: warning: 'X509_get_ext_count' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        (count = X509_get_ext_count(xs)) == 0) {
                 ^
/usr/include/openssl/x509.h:1144:6: note: 'X509_get_ext_count' has been explicitly marked deprecated here
int             X509_get_ext_count(X509 *x) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_expr_eval.c:231:31: warning: 'X509_get_ext' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        X509_EXTENSION *ext = X509_get_ext(xs, j);
                              ^
/usr/include/openssl/x509.h:1148:17: note: 'X509_get_ext' has been explicitly marked deprecated here
X509_EXTENSION *X509_get_ext(X509 *x, int loc) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_expr_eval.c:233:13: warning: 'OBJ_cmp' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        if (OBJ_cmp(ext->object, oid) == 0) {
            ^
/usr/include/openssl/objects.h:1015:6: note: 'OBJ_cmp' has been explicitly marked deprecated here
int             OBJ_cmp(const ASN1_OBJECT *a,const ASN1_OBJECT *b) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_expr_eval.c:234:24: warning: 'BIO_new' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            BIO *bio = BIO_new(BIO_s_mem());
                       ^
/usr/include/openssl/bio.h:591:7: note: 'BIO_new' has been explicitly marked deprecated here
BIO *   BIO_new(BIO_METHOD *type) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_expr_eval.c:234:32: warning: 'BIO_s_mem' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            BIO *bio = BIO_new(BIO_s_mem());
                               ^
/usr/include/openssl/bio.h:626:13: note: 'BIO_s_mem' has been explicitly marked deprecated here
BIO_METHOD *BIO_s_mem(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_expr_eval.c:236:17: warning: 'X509V3_EXT_print' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            if (X509V3_EXT_print(bio, ext, 0, 0) == 1) {
                ^
/usr/include/openssl/x509v3.h:598:5: note: 'X509V3_EXT_print' has been explicitly marked deprecated here
int X509V3_EXT_print(BIO *out, X509_EXTENSION *ext, unsigned long flag, int indent) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_expr_eval.c:240:17: warning: 'BIO_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                BIO_get_mem_ptr(bio, &buf);
                ^
/usr/include/openssl/bio.h:506:31: note: expanded from macro 'BIO_get_mem_ptr'
#define BIO_get_mem_ptr(b,pp)   BIO_ctrl(b,BIO_C_GET_BUF_MEM_PTR,0,(char *)pp)
                                ^
/usr/include/openssl/bio.h:600:6: note: 'BIO_ctrl' has been explicitly marked deprecated here
long    BIO_ctrl(BIO *bp,int cmd,long larg,void *parg) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_expr_eval.c:245:13: warning: 'BIO_vfree' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            BIO_vfree(bio);
            ^
/usr/include/openssl/bio.h:594:6: note: 'BIO_vfree' has been explicitly marked deprecated here
void    BIO_vfree(BIO *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_expr_eval.c:250:5: warning: 'ERR_clear_error' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    ERR_clear_error();
    ^
/usr/include/openssl/err.h:278:6: note: 'ERR_clear_error' has been explicitly marked deprecated here
void ERR_clear_error(void ) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
12 warnings generated.
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c ssl_expr_parse.c && touch ssl_expr_parse.slo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c ssl_expr_scan.c && touch ssl_expr_scan.slo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c ssl_scache.c && touch ssl_scache.slo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c ssl_scache_dbm.c && touch ssl_scache_dbm.slo
ssl_scache_dbm.c:117:18: warning: 'i2d_SSL_SESSION' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if ((nData = i2d_SSL_SESSION(sess, NULL)) > sizeof(ucaData)) {
                 ^
/usr/include/openssl/ssl.h:1443:5: note: 'i2d_SSL_SESSION' has been explicitly marked deprecated hereint     i2d_SSL_SESSION(SSL_SESSION *in,unsigned char **pp) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_scache_dbm.c:125:5: warning: 'i2d_SSL_SESSION' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    i2d_SSL_SESSION(sess, &ucp);
    ^
/usr/include/openssl/ssl.h:1443:5: note: 'i2d_SSL_SESSION' has been explicitly marked deprecated here
int     i2d_SSL_SESSION(SSL_SESSION *in,unsigned char **pp) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_scache_dbm.c:262:12: warning: 'd2i_SSL_SESSION' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    sess = d2i_SSL_SESSION(NULL, &ucpData, nData);
           ^
/usr/include/openssl/ssl.h:1451:14: note: 'd2i_SSL_SESSION' has been explicitly marked deprecated here
SSL_SESSION *d2i_SSL_SESSION(SSL_SESSION **a,const unsigned char **pp,
             ^
3 warnings generated.
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c ssl_scache_shmcb.c && touch ssl_scache_shmcb.slo
ssl_scache_shmcb.c:362:19: warning: 'i2d_SSL_SESSION' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    len_encoded = i2d_SSL_SESSION(pSession, NULL);
                  ^
/usr/include/openssl/ssl.h:1443:5: note: 'i2d_SSL_SESSION' has been explicitly marked deprecated here
int     i2d_SSL_SESSION(SSL_SESSION *in,unsigned char **pp) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_scache_shmcb.c:369:19: warning: 'i2d_SSL_SESSION' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    len_encoded = i2d_SSL_SESSION(pSession, &ptr_encoded);
                  ^
/usr/include/openssl/ssl.h:1443:5: note: 'i2d_SSL_SESSION' has been explicitly marked deprecated here
int     i2d_SSL_SESSION(SSL_SESSION *in,unsigned char **pp) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_scache_shmcb.c:687:24: warning: 'd2i_SSL_SESSION' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            pSession = d2i_SSL_SESSION(NULL, &ptr, idx->data_used);
                       ^
/usr/include/openssl/ssl.h:1451:14: note: 'd2i_SSL_SESSION' has been explicitly marked deprecated here
SSL_SESSION *d2i_SSL_SESSION(SSL_SESSION **a,const unsigned char **pp,
             ^
ssl_scache_shmcb.c:701:13: warning: 'SSL_SESSION_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            SSL_SESSION_free(pSession);
            ^
/usr/include/openssl/ssl.h:1442:6: note: 'SSL_SESSION_free' has been explicitly marked deprecated here
void    SSL_SESSION_free(SSL_SESSION *ses) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_scache_shmcb.c:746:24: warning: 'd2i_SSL_SESSION' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            pSession = d2i_SSL_SESSION(NULL, &ptr, idx->data_used);
                       ^
/usr/include/openssl/ssl.h:1451:14: note: 'd2i_SSL_SESSION' has been explicitly marked deprecated here
SSL_SESSION *d2i_SSL_SESSION(SSL_SESSION **a,const unsigned char **pp,
             ^
ssl_scache_shmcb.c:761:13: warning: 'SSL_SESSION_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            SSL_SESSION_free(pSession);
            ^
/usr/include/openssl/ssl.h:1442:6: note: 'SSL_SESSION_free' has been explicitly marked deprecated here
void    SSL_SESSION_free(SSL_SESSION *ses) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
6 warnings generated.
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c ssl_scache_dc.c && touch ssl_scache_dc.slo
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c ssl_util.c && touch ssl_util.slo
ssl_util.c:144:27: warning: 'X509_get_pubkey' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        pFreeKey = pKey = X509_get_pubkey(pCert);
                          ^
/usr/include/openssl/x509.h:1017:12: note: 'X509_get_pubkey' has been explicitly marked deprecated here
EVP_PKEY *      X509_get_pubkey(X509 *x) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_util.c:146:17: warning: 'EVP_PKEY_type' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        switch (EVP_PKEY_key_type(pKey)) {
                ^
./ssl_toolkit_compat.h:54:44: note: expanded from macro 'EVP_PKEY_key_type'
#define EVP_PKEY_key_type(k)              (EVP_PKEY_type(k->type))
                                           ^
/usr/include/openssl/evp.h:851:6: note: 'EVP_PKEY_type' has been explicitly marked deprecated here
int             EVP_PKEY_type(int type) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_util.c:160:9: warning: 'EVP_PKEY_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        EVP_PKEY_free(pFreeKey);
        ^
/usr/include/openssl/evp.h:878:7: note: 'EVP_PKEY_free' has been explicitly marked deprecated here
void            EVP_PKEY_free(EVP_PKEY *pkey) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_util.c:436:5: warning: 'CRYPTO_set_locking_callback' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    CRYPTO_set_locking_callback(NULL);
    ^
/usr/include/openssl/crypto.h:417:6: note: 'CRYPTO_set_locking_callback' has been explicitly marked deprecated here
void CRYPTO_set_locking_callback(void (*func)(int mode,int type,
     ^
ssl_util.c:437:5: warning: 'CRYPTO_set_id_callback' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    CRYPTO_set_id_callback(NULL);
    ^
/usr/include/openssl/crypto.h:425:6: note: 'CRYPTO_set_id_callback' has been explicitly marked deprecated here
void CRYPTO_set_id_callback(unsigned long (*func)(void)) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_util.c:439:5: warning: 'CRYPTO_set_dynlock_create_callback' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    CRYPTO_set_dynlock_create_callback(NULL);
    ^
/usr/include/openssl/crypto.h:438:6: note: 'CRYPTO_set_dynlock_create_callback' has been explicitly marked deprecated here
void CRYPTO_set_dynlock_create_callback(struct CRYPTO_dynlock_value *(*dyn_create_function)(const char *file, int line)) DEPRECATED_IN_MAC_OS_X_...
     ^
ssl_util.c:440:5: warning: 'CRYPTO_set_dynlock_lock_callback' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    CRYPTO_set_dynlock_lock_callback(NULL);
    ^
/usr/include/openssl/crypto.h:439:6: note: 'CRYPTO_set_dynlock_lock_callback' has been explicitly marked deprecated here
void CRYPTO_set_dynlock_lock_callback(void (*dyn_lock_function)(int mode, struct CRYPTO_dynlock_value *l, const char *file, int line)) DEPRECATE...
     ^
ssl_util.c:441:5: warning: 'CRYPTO_set_dynlock_destroy_callback' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    CRYPTO_set_dynlock_destroy_callback(NULL);
    ^
/usr/include/openssl/crypto.h:440:6: note: 'CRYPTO_set_dynlock_destroy_callback' has been explicitly marked deprecated here
void CRYPTO_set_dynlock_destroy_callback(void (*dyn_destroy_function)(struct CRYPTO_dynlock_value *l, const char *file, int line)) DEPRECATED_IN...
     ^
ssl_util.c:454:22: warning: 'CRYPTO_num_locks' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    lock_num_locks = CRYPTO_num_locks();
                     ^
/usr/include/openssl/crypto.h:415:5: note: 'CRYPTO_num_locks' has been explicitly marked deprecated here
int CRYPTO_num_locks(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER; /* return CRYPTO_NUM_LOCKS (shared libs!) */
    ^
ssl_util.c:461:5: warning: 'CRYPTO_set_id_callback' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    CRYPTO_set_id_callback(ssl_util_thr_id);
    ^
/usr/include/openssl/crypto.h:425:6: note: 'CRYPTO_set_id_callback' has been explicitly marked deprecated here
void CRYPTO_set_id_callback(unsigned long (*func)(void)) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_util.c:463:5: warning: 'CRYPTO_set_locking_callback' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    CRYPTO_set_locking_callback(ssl_util_thr_lock);
    ^
/usr/include/openssl/crypto.h:417:6: note: 'CRYPTO_set_locking_callback' has been explicitly marked deprecated here
void CRYPTO_set_locking_callback(void (*func)(int mode,int type,
     ^
ssl_util.c:469:5: warning: 'CRYPTO_set_dynlock_create_callback' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    CRYPTO_set_dynlock_create_callback(ssl_dyn_create_function);
    ^
/usr/include/openssl/crypto.h:438:6: note: 'CRYPTO_set_dynlock_create_callback' has been explicitly marked deprecated here
void CRYPTO_set_dynlock_create_callback(struct CRYPTO_dynlock_value *(*dyn_create_function)(const char *file, int line)) DEPRECATED_IN_MAC_OS_X_...
     ^
ssl_util.c:470:5: warning: 'CRYPTO_set_dynlock_lock_callback' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    CRYPTO_set_dynlock_lock_callback(ssl_dyn_lock_function);
    ^
/usr/include/openssl/crypto.h:439:6: note: 'CRYPTO_set_dynlock_lock_callback' has been explicitly marked deprecated here
void CRYPTO_set_dynlock_lock_callback(void (*dyn_lock_function)(int mode, struct CRYPTO_dynlock_value *l, const char *file, int line)) DEPRECATE...
     ^
ssl_util.c:471:5: warning: 'CRYPTO_set_dynlock_destroy_callback' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    CRYPTO_set_dynlock_destroy_callback(ssl_dyn_destroy_function);
    ^
/usr/include/openssl/crypto.h:440:6: note: 'CRYPTO_set_dynlock_destroy_callback' has been explicitly marked deprecated here
void CRYPTO_set_dynlock_destroy_callback(void (*dyn_destroy_function)(struct CRYPTO_dynlock_value *l, const char *file, int line)) DEPRECATED_IN...
     ^
14 warnings generated.
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c ssl_util_ssl.c && touch ssl_util_ssl.slo
ssl_util_ssl.c:54:13: warning: 'SSL_get_ex_new_index' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            SSL_get_ex_new_index(0,
            ^
/usr/include/openssl/ssl.h:1593:5: note: 'SSL_get_ex_new_index' has been explicitly marked deprecated here
int SSL_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
    ^
ssl_util_ssl.c:62:20: warning: 'SSL_get_ex_data' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    return (void *)SSL_get_ex_data(ssl, SSL_app_data2_idx);
                   ^
/usr/include/openssl/ssl.h:1592:7: note: 'SSL_get_ex_data' has been explicitly marked deprecated here
void *SSL_get_ex_data(const SSL *ssl,int idx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_util_ssl.c:67:5: warning: 'SSL_set_ex_data' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    SSL_set_ex_data(ssl, SSL_app_data2_idx, (char *)arg);
    ^
/usr/include/openssl/ssl.h:1591:5: note: 'SSL_set_ex_data' has been explicitly marked deprecated here
int SSL_set_ex_data(SSL *ssl,int idx,void *data) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_util_ssl.c:84:15: warning: 'BIO_new_file' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if ((bioS=BIO_new_file(filename, "r")) == NULL)
              ^
/usr/include/openssl/bio.h:584:6: note: 'BIO_new_file' has been explicitly marked deprecated here
BIO *BIO_new_file(const char *filename, const char *mode) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_util_ssl.c:87:5: warning: 'BIO_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    BIO_free(bioS);
    ^
/usr/include/openssl/bio.h:593:5: note: 'BIO_free' has been explicitly marked deprecated here
int     BIO_free(BIO *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:91:19: warning: 'BIO_new_file' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        if ((bioS=BIO_new_file(filename, "r")) == NULL)
                  ^
/usr/include/openssl/bio.h:584:6: note: 'BIO_new_file' has been explicitly marked deprecated here
BIO *BIO_new_file(const char *filename, const char *mode) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_util_ssl.c:94:21: warning: 'BIO_new' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        if ((bioF = BIO_new(BIO_f_base64())) == NULL) {
                    ^
/usr/include/openssl/bio.h:591:7: note: 'BIO_new' has been explicitly marked deprecated here
BIO *   BIO_new(BIO_METHOD *type) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:94:29: warning: 'BIO_f_base64' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        if ((bioF = BIO_new(BIO_f_base64())) == NULL) {
                            ^
/usr/include/openssl/evp.h:647:13: note: 'BIO_f_base64' has been explicitly marked deprecated here
BIO_METHOD *BIO_f_base64(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_util_ssl.c:95:13: warning: 'BIO_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            BIO_free(bioS);
            ^
/usr/include/openssl/bio.h:593:5: note: 'BIO_free' has been explicitly marked deprecated here
int     BIO_free(BIO *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:98:16: warning: 'BIO_push' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        bioS = BIO_push(bioF, bioS);
               ^
/usr/include/openssl/bio.h:604:7: note: 'BIO_push' has been explicitly marked deprecated here
BIO *   BIO_push(BIO *b,BIO *append) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:99:14: warning: 'd2i_X509_bio' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        rc = d2i_X509_bio(bioS, NULL);
             ^
/usr/include/openssl/x509.h:828:7: note: 'd2i_X509_bio' has been explicitly marked deprecated here
X509 *d2i_X509_bio(BIO *bp,X509 **x509) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_util_ssl.c:100:9: warning: 'BIO_free_all' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        BIO_free_all(bioS);
        ^
/usr/include/openssl/bio.h:606:6: note: 'BIO_free_all' has been explicitly marked deprecated here
void    BIO_free_all(BIO *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:104:23: warning: 'BIO_new_file' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            if ((bioS=BIO_new_file(filename, "r")) == NULL)
                      ^
/usr/include/openssl/bio.h:584:6: note: 'BIO_new_file' has been explicitly marked deprecated here
BIO *BIO_new_file(const char *filename, const char *mode) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_util_ssl.c:106:18: warning: 'd2i_X509_bio' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            rc = d2i_X509_bio(bioS, NULL);
                 ^
/usr/include/openssl/x509.h:828:7: note: 'd2i_X509_bio' has been explicitly marked deprecated here
X509 *d2i_X509_bio(BIO *bp,X509 **x509) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_util_ssl.c:107:13: warning: 'BIO_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            BIO_free(bioS);
            ^
/usr/include/openssl/bio.h:593:5: note: 'BIO_free' has been explicitly marked deprecated here
int     BIO_free(BIO *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:135:15: warning: 'BIO_new_file' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if ((bioS=BIO_new_file(filename, "r")) == NULL)
              ^
/usr/include/openssl/bio.h:584:6: note: 'BIO_new_file' has been explicitly marked deprecated here
BIO *BIO_new_file(const char *filename, const char *mode) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_util_ssl.c:138:5: warning: 'BIO_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    BIO_free(bioS);
    ^
/usr/include/openssl/bio.h:593:5: note: 'BIO_free' has been explicitly marked deprecated here
int     BIO_free(BIO *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:142:21: warning: 'BIO_new_file' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        if ((bioS = BIO_new_file(filename, "r")) == NULL)
                    ^
/usr/include/openssl/bio.h:584:6: note: 'BIO_new_file' has been explicitly marked deprecated here
BIO *BIO_new_file(const char *filename, const char *mode) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_util_ssl.c:145:21: warning: 'BIO_new' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        if ((bioF = BIO_new(BIO_f_base64())) == NULL) {
                    ^
/usr/include/openssl/bio.h:591:7: note: 'BIO_new' has been explicitly marked deprecated here
BIO *   BIO_new(BIO_METHOD *type) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:145:29: warning: 'BIO_f_base64' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        if ((bioF = BIO_new(BIO_f_base64())) == NULL) {
                            ^
/usr/include/openssl/evp.h:647:13: note: 'BIO_f_base64' has been explicitly marked deprecated here
BIO_METHOD *BIO_f_base64(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_util_ssl.c:146:13: warning: 'BIO_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            BIO_free(bioS);
            ^
/usr/include/openssl/bio.h:593:5: note: 'BIO_free' has been explicitly marked deprecated here
int     BIO_free(BIO *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:149:16: warning: 'BIO_push' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        bioS = BIO_push(bioF, bioS);
               ^
/usr/include/openssl/bio.h:604:7: note: 'BIO_push' has been explicitly marked deprecated here
BIO *   BIO_push(BIO *b,BIO *append) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:150:14: warning: 'd2i_PrivateKey_bio' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        rc = d2i_PrivateKey_bio(bioS, NULL);
             ^
/usr/include/openssl/x509.h:861:11: note: 'd2i_PrivateKey_bio' has been explicitly marked deprecated here
EVP_PKEY *d2i_PrivateKey_bio(BIO *bp, EVP_PKEY **a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
          ^
ssl_util_ssl.c:151:9: warning: 'BIO_free_all' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        BIO_free_all(bioS);
        ^
/usr/include/openssl/bio.h:606:6: note: 'BIO_free_all' has been explicitly marked deprecated here
void    BIO_free_all(BIO *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:155:25: warning: 'BIO_new_file' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            if ((bioS = BIO_new_file(filename, "r")) == NULL)
                        ^
/usr/include/openssl/bio.h:584:6: note: 'BIO_new_file' has been explicitly marked deprecated here
BIO *BIO_new_file(const char *filename, const char *mode) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_util_ssl.c:157:18: warning: 'd2i_PrivateKey_bio' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            rc = d2i_PrivateKey_bio(bioS, NULL);
                 ^
/usr/include/openssl/x509.h:861:11: note: 'd2i_PrivateKey_bio' has been explicitly marked deprecated here
EVP_PKEY *d2i_PrivateKey_bio(BIO *bp, EVP_PKEY **a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
          ^
ssl_util_ssl.c:158:13: warning: 'BIO_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            BIO_free(bioS);
            ^
/usr/include/openssl/bio.h:593:5: note: 'BIO_free' has been explicitly marked deprecated here
int     BIO_free(BIO *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:163:13: warning: 'EVP_PKEY_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            EVP_PKEY_free(*key);
            ^
/usr/include/openssl/evp.h:878:7: note: 'EVP_PKEY_free' has been explicitly marked deprecated here
void            EVP_PKEY_free(EVP_PKEY *pkey) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_util_ssl.c:189:19: warning: 'SSL_shutdown' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        if ((rc = SSL_shutdown(ssl)))
                  ^
/usr/include/openssl/ssl.h:1537:5: note: 'SSL_shutdown' has been explicitly marked deprecated here
int SSL_shutdown(SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_util_ssl.c:207:5: warning: 'ERR_clear_error' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    ERR_clear_error();
    ^
/usr/include/openssl/err.h:278:6: note: 'ERR_clear_error' has been explicitly marked deprecated here
void ERR_clear_error(void ) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_util_ssl.c:211:19: warning: 'X509_STORE_new' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if ((pStore = X509_STORE_new()) == NULL)
                  ^
/usr/include/openssl/x509_vfy.h:389:13: note: 'X509_STORE_new' has been explicitly marked deprecated here
X509_STORE *X509_STORE_new(void ) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_util_ssl.c:214:19: warning: 'X509_STORE_add_lookup' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        pLookup = X509_STORE_add_lookup(pStore, X509_LOOKUP_file());
                  ^
/usr/include/openssl/x509_vfy.h:407:14: note: 'X509_STORE_add_lookup' has been explicitly marked deprecated here
X509_LOOKUP *X509_STORE_add_lookup(X509_STORE *v, X509_LOOKUP_METHOD *m) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
             ^
ssl_util_ssl.c:214:49: warning: 'X509_LOOKUP_file' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        pLookup = X509_STORE_add_lookup(pStore, X509_LOOKUP_file());
                                                ^
/usr/include/openssl/x509_vfy.h:410:21: note: 'X509_LOOKUP_file' has been explicitly marked deprecated here
X509_LOOKUP_METHOD *X509_LOOKUP_file(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                    ^
ssl_util_ssl.c:216:13: warning: 'X509_STORE_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            X509_STORE_free(pStore);
            ^
/usr/include/openssl/x509_vfy.h:390:6: note: 'X509_STORE_free' has been explicitly marked deprecated here
void X509_STORE_free(X509_STORE *v) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_util_ssl.c:219:14: warning: 'X509_LOOKUP_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        rv = X509_LOOKUP_load_file(pLookup, cpFile, X509_FILETYPE_PEM);
             ^
/usr/include/openssl/x509_vfy.h:282:3: note: expanded from macro 'X509_LOOKUP_load_file'
                X509_LOOKUP_ctrl((x),X509_L_FILE_LOAD,(name),(long)(type),NULL)
                ^
/usr/include/openssl/x509_vfy.h:418:5: note: 'X509_LOOKUP_ctrl' has been explicitly marked deprecated here
int X509_LOOKUP_ctrl(X509_LOOKUP *ctx, int cmd, const char *argc,
    ^
ssl_util_ssl.c:222:19: warning: 'X509_STORE_add_lookup' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        pLookup = X509_STORE_add_lookup(pStore, X509_LOOKUP_hash_dir());
                  ^
/usr/include/openssl/x509_vfy.h:407:14: note: 'X509_STORE_add_lookup' has been explicitly marked deprecated here
X509_LOOKUP *X509_STORE_add_lookup(X509_STORE *v, X509_LOOKUP_METHOD *m) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
             ^
ssl_util_ssl.c:222:49: warning: 'X509_LOOKUP_hash_dir' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        pLookup = X509_STORE_add_lookup(pStore, X509_LOOKUP_hash_dir());
                                                ^
/usr/include/openssl/x509_vfy.h:409:21: note: 'X509_LOOKUP_hash_dir' has been explicitly marked deprecated here
X509_LOOKUP_METHOD *X509_LOOKUP_hash_dir(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                    ^
ssl_util_ssl.c:224:13: warning: 'X509_STORE_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            X509_STORE_free(pStore);
            ^
/usr/include/openssl/x509_vfy.h:390:6: note: 'X509_STORE_free' has been explicitly marked deprecated here
void X509_STORE_free(X509_STORE *v) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_util_ssl.c:227:14: warning: 'X509_LOOKUP_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        rv = X509_LOOKUP_add_dir(pLookup, cpPath, X509_FILETYPE_PEM);
             ^
/usr/include/openssl/x509_vfy.h:285:3: note: expanded from macro 'X509_LOOKUP_add_dir'
                X509_LOOKUP_ctrl((x),X509_L_ADD_DIR,(name),(long)(type),NULL)
                ^
/usr/include/openssl/x509_vfy.h:418:5: note: 'X509_LOOKUP_ctrl' has been explicitly marked deprecated here
int X509_LOOKUP_ctrl(X509_LOOKUP *ctx, int cmd, const char *argc,
    ^
ssl_util_ssl.c:238:5: warning: 'X509_STORE_CTX_init' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    X509_STORE_CTX_init(&pStoreCtx, pStore, NULL, NULL);
    ^
/usr/include/openssl/x509_vfy.h:402:5: note: 'X509_STORE_CTX_init' has been explicitly marked deprecated here
int X509_STORE_CTX_init(X509_STORE_CTX *ctx, X509_STORE *store,
    ^
ssl_util_ssl.c:239:10: warning: 'X509_STORE_get_by_subject' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    rc = X509_STORE_get_by_subject(&pStoreCtx, nType, pName, pObj);
         ^
/usr/include/openssl/x509_vfy.h:415:5: note: 'X509_STORE_get_by_subject' has been explicitly marked deprecated here
int X509_STORE_get_by_subject(X509_STORE_CTX *vs,int type,X509_NAME *name,
    ^
ssl_util_ssl.c:240:5: warning: 'X509_STORE_CTX_cleanup' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    X509_STORE_CTX_cleanup(&pStoreCtx);
    ^
/usr/include/openssl/x509_vfy.h:405:6: note: 'X509_STORE_CTX_cleanup' has been explicitly marked deprecated here
void X509_STORE_CTX_cleanup(X509_STORE_CTX *ctx) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_util_ssl.c:261:39: warning: 'SSL_get_ciphers' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if ((sk = (STACK_OF(SSL_CIPHER) *)SSL_get_ciphers(ssl)) == NULL)
                                      ^
/usr/include/openssl/ssl.h:1532:23: note: 'SSL_get_ciphers' has been explicitly marked deprecated here
STACK_OF(SSL_CIPHER) *SSL_get_ciphers(const SSL *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                      ^
ssl_util_ssl.c:264:21: warning: 'sk_num' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    for (i = 0; i < sk_SSL_CIPHER_num(sk); i++) {
                    ^
/usr/include/openssl/safestack.h:1278:31: note: expanded from macro 'sk_SSL_CIPHER_num'
#define sk_SSL_CIPHER_num(st) SKM_sk_num(SSL_CIPHER, (st))
                              ^
/usr/include/openssl/safestack.h:168:2: note: expanded from macro 'SKM_sk_num'
        sk_num(st)
        ^
/usr/include/openssl/stack.h:81:5: note: 'sk_num' has been explicitly marked deprecated here
int sk_num(const STACK *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_util_ssl.c:265:13: warning: 'sk_value' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        c = sk_SSL_CIPHER_value(sk, i);
            ^
/usr/include/openssl/safestack.h:1279:36: note: expanded from macro 'sk_SSL_CIPHER_value'
#define sk_SSL_CIPHER_value(st, i) SKM_sk_value(SSL_CIPHER, (st), (i))
                                   ^
/usr/include/openssl/safestack.h:170:11: note: expanded from macro 'SKM_sk_value'
        ((type *)sk_value(st, i))
                 ^
/usr/include/openssl/stack.h:82:7: note: 'sk_value' has been explicitly marked deprecated here
char *sk_value(const STACK *, int) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_util_ssl.c:272:21: warning: 'sk_num' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    for (i = 0; i < sk_SSL_CIPHER_num(sk); i++) {
                    ^
/usr/include/openssl/safestack.h:1278:31: note: expanded from macro 'sk_SSL_CIPHER_num'
#define sk_SSL_CIPHER_num(st) SKM_sk_num(SSL_CIPHER, (st))
                              ^
/usr/include/openssl/safestack.h:168:2: note: expanded from macro 'SKM_sk_num'
        sk_num(st)
        ^
/usr/include/openssl/stack.h:81:5: note: 'sk_num' has been explicitly marked deprecated here
int sk_num(const STACK *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_util_ssl.c:273:13: warning: 'sk_value' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        c = sk_SSL_CIPHER_value(sk, i);
            ^
/usr/include/openssl/safestack.h:1279:36: note: expanded from macro 'sk_SSL_CIPHER_value'
#define sk_SSL_CIPHER_value(st, i) SKM_sk_value(SSL_CIPHER, (st), (i))
                                   ^
/usr/include/openssl/safestack.h:170:11: note: expanded from macro 'SKM_sk_value'
        ((type *)sk_value(st, i))
                 ^
/usr/include/openssl/stack.h:82:7: note: 'sk_value' has been explicitly marked deprecated here
char *sk_value(const STACK *, int) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_util_ssl.c:303:11: warning: 'X509_get_ext_by_NID' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    idx = X509_get_ext_by_NID(cert, NID_ext_key_usage, -1);
          ^
/usr/include/openssl/x509.h:1145:6: note: 'X509_get_ext_by_NID' has been explicitly marked deprecated here
int             X509_get_ext_by_NID(X509 *x, int nid, int lastpos) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_util_ssl.c:305:15: warning: 'X509_get_ext' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        ext = X509_get_ext(cert, idx);
              ^
/usr/include/openssl/x509.h:1148:17: note: 'X509_get_ext' has been explicitly marked deprecated here
X509_EXTENSION *X509_get_ext(X509 *x, int loc) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_util_ssl.c:306:41: warning: 'X509V3_EXT_d2i' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        if ((sk = (EXTENDED_KEY_USAGE *)X509V3_EXT_d2i(ext)) != NULL) {
                                        ^
/usr/include/openssl/x509v3.h:585:7: note: 'X509V3_EXT_d2i' has been explicitly marked deprecated here
void *X509V3_EXT_d2i(X509_EXTENSION *ext) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_util_ssl.c:307:29: warning: 'sk_num' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            for (i = 0; i < sk_ASN1_OBJECT_num(sk); i++) {
                            ^
/usr/include/openssl/safestack.h:310:32: note: expanded from macro 'sk_ASN1_OBJECT_num'
#define sk_ASN1_OBJECT_num(st) SKM_sk_num(ASN1_OBJECT, (st))
                               ^
/usr/include/openssl/safestack.h:168:2: note: expanded from macro 'SKM_sk_num'
        sk_num(st)
        ^
/usr/include/openssl/stack.h:81:5: note: 'sk_num' has been explicitly marked deprecated here
int sk_num(const STACK *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_util_ssl.c:308:27: warning: 'OBJ_obj2nid' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                ext_nid = OBJ_obj2nid((ASN1_OBJECT *)sk_ASN1_OBJECT_value(sk, i));
                          ^
/usr/include/openssl/objects.h:1009:6: note: 'OBJ_obj2nid' has been explicitly marked deprecated here
int             OBJ_obj2nid(const ASN1_OBJECT *o) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_util_ssl.c:308:54: warning: 'sk_value' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
                ext_nid = OBJ_obj2nid((ASN1_OBJECT *)sk_ASN1_OBJECT_value(sk, i));
                                                     ^
/usr/include/openssl/safestack.h:311:37: note: expanded from macro 'sk_ASN1_OBJECT_value'
#define sk_ASN1_OBJECT_value(st, i) SKM_sk_value(ASN1_OBJECT, (st), (i))
                                    ^
/usr/include/openssl/safestack.h:170:11: note: expanded from macro 'SKM_sk_value'
        ((type *)sk_value(st, i))
                 ^
/usr/include/openssl/stack.h:82:7: note: 'sk_value' has been explicitly marked deprecated here
char *sk_value(const STACK *, int) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_util_ssl.c:332:16: warning: 'X509_get_ext_by_NID' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if ((idx = X509_get_ext_by_NID(cert, NID_basic_constraints, -1)) < 0)
               ^
/usr/include/openssl/x509.h:1145:6: note: 'X509_get_ext_by_NID' has been explicitly marked deprecated here
int             X509_get_ext_by_NID(X509 *x, int nid, int lastpos) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_util_ssl.c:334:11: warning: 'X509_get_ext' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    ext = X509_get_ext(cert, idx);
          ^
/usr/include/openssl/x509.h:1148:17: note: 'X509_get_ext' has been explicitly marked deprecated here
X509_EXTENSION *X509_get_ext(X509 *x, int loc) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_util_ssl.c:337:36: warning: 'X509V3_EXT_d2i' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if ((bc = (BASIC_CONSTRAINTS *)X509V3_EXT_d2i(ext)) == NULL)
                                   ^
/usr/include/openssl/x509v3.h:585:7: note: 'X509V3_EXT_d2i' has been explicitly marked deprecated here
void *X509V3_EXT_d2i(X509_EXTENSION *ext) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_util_ssl.c:342:19: warning: 'ASN1_INTEGER_to_BN' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        if ((bn = ASN1_INTEGER_to_BN(bc->pathlen, NULL)) == NULL)
                  ^
/usr/include/openssl/asn1.h:901:9: note: 'ASN1_INTEGER_to_BN' has been explicitly marked deprecated here
BIGNUM *ASN1_INTEGER_to_BN(ASN1_INTEGER *ai,BIGNUM *bn) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:344:19: warning: 'BN_bn2dec' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        if ((cp = BN_bn2dec(bn)) == NULL)
                  ^
/usr/include/openssl/bn.h:506:8: note: 'BN_bn2dec' has been explicitly marked deprecated here
char *  BN_bn2dec(const BIGNUM *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:348:9: warning: 'BN_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        BN_free(bn);
        ^
/usr/include/openssl/bn.h:468:6: note: 'BN_free' has been explicitly marked deprecated here
void    BN_free(BIGNUM *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:366:11: warning: 'X509_get_subject_name' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    xsn = X509_get_subject_name(xs);
          ^
/usr/include/openssl/x509.h:1013:13: note: 'X509_get_subject_name' has been explicitly marked deprecated here
X509_NAME *     X509_get_subject_name(X509 *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_util_ssl.c:367:21: warning: 'sk_num' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    for (i = 0; i < sk_X509_NAME_ENTRY_num((STACK_OF(X509_NAME_ENTRY) *)
                    ^
/usr/include/openssl/safestack.h:1586:36: note: expanded from macro 'sk_X509_NAME_ENTRY_num'
#define sk_X509_NAME_ENTRY_num(st) SKM_sk_num(X509_NAME_ENTRY, (st))
                                   ^
/usr/include/openssl/safestack.h:168:2: note: expanded from macro 'SKM_sk_num'
        sk_num(st)
        ^
/usr/include/openssl/stack.h:81:5: note: 'sk_num' has been explicitly marked deprecated here
int sk_num(const STACK *) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_util_ssl.c:369:16: warning: 'sk_value' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        xsne = sk_X509_NAME_ENTRY_value((STACK_OF(X509_NAME_ENTRY) *)
               ^
/usr/include/openssl/safestack.h:1587:41: note: expanded from macro 'sk_X509_NAME_ENTRY_value'
#define sk_X509_NAME_ENTRY_value(st, i) SKM_sk_value(X509_NAME_ENTRY, (st), (i))
                                        ^
/usr/include/openssl/safestack.h:170:11: note: expanded from macro 'SKM_sk_value'
        ((type *)sk_value(st, i))
                 ^
/usr/include/openssl/stack.h:82:7: note: 'sk_value' has been explicitly marked deprecated here
char *sk_value(const STACK *, int) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
      ^
ssl_util_ssl.c:371:15: warning: 'OBJ_obj2nid' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        nid = OBJ_obj2nid((ASN1_OBJECT *)X509_NAME_ENTRY_get_object(xsne));
              ^
/usr/include/openssl/objects.h:1009:6: note: 'OBJ_obj2nid' has been explicitly marked deprecated here
int             OBJ_obj2nid(const ASN1_OBJECT *o) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_util_ssl.c:371:42: warning: 'X509_NAME_ENTRY_get_object' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        nid = OBJ_obj2nid((ASN1_OBJECT *)X509_NAME_ENTRY_get_object(xsne));
                                         ^
/usr/include/openssl/x509.h:1129:15: note: 'X509_NAME_ENTRY_get_object' has been explicitly marked deprecated here
ASN1_OBJECT *   X509_NAME_ENTRY_get_object(X509_NAME_ENTRY *ne) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
                ^
ssl_util_ssl.c:395:16: warning: 'BIO_new' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if ((bio = BIO_new(BIO_s_mem())) == NULL)
               ^
/usr/include/openssl/bio.h:591:7: note: 'BIO_new' has been explicitly marked deprecated here
BIO *   BIO_new(BIO_METHOD *type) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:395:24: warning: 'BIO_s_mem' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if ((bio = BIO_new(BIO_s_mem())) == NULL)
                       ^
/usr/include/openssl/bio.h:626:13: note: 'BIO_s_mem' has been explicitly marked deprecated here
BIO_METHOD *BIO_s_mem(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_util_ssl.c:397:5: warning: 'X509_NAME_print_ex' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    X509_NAME_print_ex(bio, dn, 0, XN_FLAG_RFC2253);
    ^
/usr/include/openssl/x509.h:1087:5: note: 'X509_NAME_print_ex' has been explicitly marked deprecated here
int X509_NAME_print_ex(BIO *out, X509_NAME *nm, int indent, unsigned long flags) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
    ^
ssl_util_ssl.c:398:11: warning: 'BIO_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    len = BIO_pending(bio);
          ^
/usr/include/openssl/bio.h:524:30: note: expanded from macro 'BIO_pending'
#define BIO_pending(b)          (int)BIO_ctrl(b,BIO_CTRL_PENDING,0,NULL)
                                     ^
/usr/include/openssl/bio.h:600:6: note: 'BIO_ctrl' has been explicitly marked deprecated here
long    BIO_ctrl(BIO *bp,int cmd,long larg,void *parg) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:402:19: warning: 'BIO_read' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            len = BIO_read(bio, result, maxlen);
                  ^
/usr/include/openssl/bio.h:595:5: note: 'BIO_read' has been explicitly marked deprecated here
int     BIO_read(BIO *b, void *data, int len) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:408:19: warning: 'BIO_read' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            len = BIO_read(bio, result, len);
                  ^
/usr/include/openssl/bio.h:595:5: note: 'BIO_read' has been explicitly marked deprecated here
int     BIO_read(BIO *b, void *data, int len) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:412:5: warning: 'BIO_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    BIO_free(bio);
    ^
/usr/include/openssl/bio.h:593:5: note: 'BIO_free' has been explicitly marked deprecated here
int     BIO_free(BIO *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:429:16: warning: 'BIO_new' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if (!(in = BIO_new(BIO_s_file()))) {
               ^
/usr/include/openssl/bio.h:591:7: note: 'BIO_new' has been explicitly marked deprecated here
BIO *   BIO_new(BIO_METHOD *type) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:429:24: warning: 'BIO_s_file' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if (!(in = BIO_new(BIO_s_file()))) {
                       ^
/usr/include/openssl/bio.h:583:13: note: 'BIO_s_file' has been explicitly marked deprecated here
BIO_METHOD *BIO_s_file(void ) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_util_ssl.c:433:9: warning: 'BIO_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if (BIO_read_filename(in, MODSSL_PCHAR_CAST filename) <= 0) {
        ^
/usr/include/openssl/bio.h:477:35: note: expanded from macro 'BIO_read_filename'
#define BIO_read_filename(b,name) BIO_ctrl(b,BIO_C_SET_FILENAME, \
                                  ^
/usr/include/openssl/bio.h:600:6: note: 'BIO_ctrl' has been explicitly marked deprecated here
long    BIO_ctrl(BIO *bp,int cmd,long larg,void *parg) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:434:9: warning: 'BIO_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        BIO_free(in);
        ^
/usr/include/openssl/bio.h:593:5: note: 'BIO_free' has been explicitly marked deprecated here
int     BIO_free(BIO *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:438:5: warning: 'ERR_clear_error' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    ERR_clear_error();
    ^
/usr/include/openssl/err.h:278:6: note: 'ERR_clear_error' has been explicitly marked deprecated here
void ERR_clear_error(void ) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_util_ssl.c:440:5: warning: 'PEM_X509_INFO_read_bio' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    modssl_PEM_X509_INFO_read_bio(in, sk, NULL, NULL);
    ^
./ssl_toolkit_compat.h:126:39: note: expanded from macro 'modssl_PEM_X509_INFO_read_bio'
#define modssl_PEM_X509_INFO_read_bio PEM_X509_INFO_read_bio 
                                      ^
/usr/include/openssl/pem.h:603:23: note: 'PEM_X509_INFO_read_bio' has been explicitly marked deprecated here
STACK_OF(X509_INFO) *   PEM_X509_INFO_read_bio(BIO *bp, STACK_OF(X509_INFO) *sk, pem_password_cb *cb, void *u) DEPRECATED_IN_MAC_OS_X_VERSION_10...
                        ^
ssl_util_ssl.c:442:5: warning: 'BIO_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    BIO_free(in);
    ^
/usr/include/openssl/bio.h:593:5: note: 'BIO_free' has been explicitly marked deprecated here
int     BIO_free(BIO *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:504:16: warning: 'BIO_new' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if ((bio = BIO_new(BIO_s_file_internal())) == NULL)
               ^
/usr/include/openssl/bio.h:591:7: note: 'BIO_new' has been explicitly marked deprecated here
BIO *   BIO_new(BIO_METHOD *type) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:504:24: warning: 'BIO_s_file' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if ((bio = BIO_new(BIO_s_file_internal())) == NULL)
                       ^
/usr/include/openssl/bio.h:586:34: note: expanded from macro 'BIO_s_file_internal'
#    define BIO_s_file_internal         BIO_s_file
                                        ^
/usr/include/openssl/bio.h:583:13: note: 'BIO_s_file' has been explicitly marked deprecated here
BIO_METHOD *BIO_s_file(void ) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
            ^
ssl_util_ssl.c:506:9: warning: 'BIO_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if (BIO_read_filename(bio, file) <= 0) {
        ^
/usr/include/openssl/bio.h:477:35: note: expanded from macro 'BIO_read_filename'
#define BIO_read_filename(b,name) BIO_ctrl(b,BIO_C_SET_FILENAME, \
                                  ^
/usr/include/openssl/bio.h:600:6: note: 'BIO_ctrl' has been explicitly marked deprecated here
long    BIO_ctrl(BIO *bp,int cmd,long larg,void *parg) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:507:9: warning: 'BIO_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        BIO_free(bio);
        ^
/usr/include/openssl/bio.h:593:5: note: 'BIO_free' has been explicitly marked deprecated here
int     BIO_free(BIO *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:513:13: warning: 'BIO_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            BIO_free(bio);
            ^
/usr/include/openssl/bio.h:593:5: note: 'BIO_free' has been explicitly marked deprecated here
int     BIO_free(BIO *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:521:9: warning: 'sk_pop_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        sk_X509_pop_free((STACK_OF(X509) *)extra_certs, X509_free);
        ^
/usr/include/openssl/safestack.h:1401:41: note: expanded from macro 'sk_X509_pop_free'
#define sk_X509_pop_free(st, free_func) SKM_sk_pop_free(X509, (st), (free_func))
                                        ^
/usr/include/openssl/safestack.h:193:2: note: expanded from macro 'SKM_sk_pop_free'
        sk_pop_free(st, (void (*)(void *))free_func)
        ^
/usr/include/openssl/stack.h:89:6: note: 'sk_pop_free' has been explicitly marked deprecated here
void sk_pop_free(STACK *st, void (*func)(void *)) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
     ^
ssl_util_ssl.c:527:14: warning: 'SSL_CTX_ctrl' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        if (!SSL_CTX_add_extra_chain_cert(ctx, x509)) {
             ^
/usr/include/openssl/ssl.h:1338:2: note: expanded from macro 'SSL_CTX_add_extra_chain_cert'
        SSL_CTX_ctrl(ctx,SSL_CTRL_EXTRA_CHAIN_CERT,0,(char *)x509)
        ^
/usr/include/openssl/ssl.h:1503:6: note: 'SSL_CTX_ctrl' has been explicitly marked deprecated here
long    SSL_CTX_ctrl(SSL_CTX *ctx,int cmd, long larg, void *parg) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:529:13: warning: 'BIO_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            BIO_free(bio);
            ^
/usr/include/openssl/bio.h:593:5: note: 'BIO_free' has been explicitly marked deprecated here
int     BIO_free(BIO *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:535:16: warning: 'ERR_peek_error' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if ((err = ERR_peek_error()) > 0) {
               ^
/usr/include/openssl/err.h:270:15: note: 'ERR_peek_error' has been explicitly marked deprecated here
unsigned long ERR_peek_error(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
              ^
ssl_util_ssl.c:538:13: warning: 'BIO_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
            BIO_free(bio);
            ^
/usr/include/openssl/bio.h:593:5: note: 'BIO_free' has been explicitly marked deprecated here
int     BIO_free(BIO *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:541:16: warning: 'ERR_get_error' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        while (ERR_get_error() > 0) ;
               ^
/usr/include/openssl/err.h:266:15: note: 'ERR_get_error' has been explicitly marked deprecated here
unsigned long ERR_get_error(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
              ^
ssl_util_ssl.c:543:5: warning: 'BIO_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    BIO_free(bio);
    ^
/usr/include/openssl/bio.h:593:5: note: 'BIO_free' has been explicitly marked deprecated here
int     BIO_free(BIO *a) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:573:12: warning: 'SSL_SESSION_get_time' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    return SSL_SESSION_get_time(session);
           ^
/usr/include/openssl/ssl.h:1426:6: note: 'SSL_SESSION_get_time' has been explicitly marked deprecated here
long    SSL_SESSION_get_time(const SSL_SESSION *s) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:590:16: warning: 'DH_new' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    if (!(dh = DH_new())) {
               ^
/usr/include/openssl/dh.h:184:6: note: 'DH_new' has been explicitly marked deprecated here
DH *    DH_new(void) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:595:13: warning: 'BN_bin2bn' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    dh->p = BN_bin2bn(p, plen, NULL);
            ^
/usr/include/openssl/bn.h:422:9: note: 'BN_bin2bn' has been explicitly marked deprecated here
BIGNUM *BN_bin2bn(const unsigned char *s,int len,BIGNUM *ret) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:596:13: warning: 'BN_bin2bn' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
    dh->g = BN_bin2bn(g, glen, NULL);
            ^
/usr/include/openssl/bn.h:422:9: note: 'BN_bin2bn' has been explicitly marked deprecated here
BIGNUM *BN_bin2bn(const unsigned char *s,int len,BIGNUM *ret) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
ssl_util_ssl.c:598:9: warning: 'DH_free' is deprecated: first deprecated in OS X 10.7 [-Wdeprecated-declarations]
        DH_free(dh);
        ^
/usr/include/openssl/dh.h:185:6: note: 'DH_free' has been explicitly marked deprecated here
void    DH_free(DH *dh) DEPRECATED_IN_MAC_OS_X_VERSION_10_7_AND_LATER;
        ^
95 warnings generated.
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc           -o mod_ssl.la -rpath /usr/local/apache2/modules -module -avoid-version  mod_ssl.lo ssl_engine_config.lo ssl_engine_dh.lo ssl_engine_init.lo ssl_engine_io.lo ssl_engine_kernel.lo ssl_engine_log.lo ssl_engine_mutex.lo ssl_engine_pphrase.lo ssl_engine_rand.lo ssl_engine_vars.lo ssl_expr.lo ssl_expr_eval.lo ssl_expr_parse.lo ssl_expr_scan.lo ssl_scache.lo ssl_scache_dbm.lo ssl_scache_shmcb.lo ssl_scache_dc.lo ssl_util.lo ssl_util_ssl.lo  -lssl -lcrypto -lpthread -export-symbols-regex ssl_module
warning: /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/nm: no name list
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: file: .libs/mod_ssl.a(ssl_scache_dc.o) has no symbols
/Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/ranlib: file: .libs/mod_ssl.a(ssl_scache_dc.o) has no symbols
Building shared: mod_mime.la
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c mod_mime.c && touch mod_mime.slo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc           -o mod_mime.la -rpath /usr/local/apache2/modules -module -avoid-version  mod_mime.lo 
Building shared: mod_vhost_alias.la mod_rewrite.la
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c mod_vhost_alias.c && touch mod_vhost_alias.slo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc           -o mod_vhost_alias.la -rpath /usr/local/apache2/modules -module -avoid-version  mod_vhost_alias.lo 
/usr/share/apr-1/build-1/libtool --silent --mode=compile /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc     -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK -DDARWIN_10    -I/Users/vsanzgir/Downloads/httpd-2.2.24/srclib/pcre -I. -I/Users/vsanzgir/Downloads/httpd-2.2.24/os/unix -I/Users/vsanzgir/Downloads/httpd-2.2.24/server/mpm/prefork -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/http -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/filters -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy -I/Users/vsanzgir/Downloads/httpd-2.2.24/include -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/mappers -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/database -I/usr/include/apr-1 -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/proxy/../generators -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/ssl -I/Users/vsanzgir/Downloads/httpd-2.2.24/modules/dav/main -prefer-pic -c mod_rewrite.c && touch mod_rewrite.slo
/usr/share/apr-1/build-1/libtool --silent --mode=link /Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/cc           -o mod_rewrite.la -rpath /usr/local/apache2/modules -module -avoid-version  mod_rewrite.lo 

vyas:httpd-2.2.24 vsanzgir$ sudo make install
Making install in srclib
Making install in pcre
Making install in os
Making install in unix
Making install in server
Making install in mpm
Making install in prefork
Making install in modules
Making install in aaa
/usr/share/apr-1/build-1/libtool --silent --mode=install cp mod_authz_host.la /usr/local/apache2/modules/
Making install in filters
/usr/share/apr-1/build-1/libtool --silent --mode=install cp mod_include.la /usr/local/apache2/modules/
/usr/share/apr-1/build-1/libtool --silent --mode=install cp mod_deflate.la /usr/local/apache2/modules/
Making install in loggers
/usr/share/apr-1/build-1/libtool --silent --mode=install cp mod_log_config.la /usr/local/apache2/modules/
Making install in metadata
/usr/share/apr-1/build-1/libtool --silent --mode=install cp mod_mime_magic.la /usr/local/apache2/modules/
/usr/share/apr-1/build-1/libtool --silent --mode=install cp mod_headers.la /usr/local/apache2/modules/
/usr/share/apr-1/build-1/libtool --silent --mode=install cp mod_setenvif.la /usr/local/apache2/modules/
Making install in proxy
/usr/share/apr-1/build-1/libtool --silent --mode=install cp mod_proxy.la /usr/local/apache2/modules/
/usr/share/apr-1/build-1/libtool --silent --mode=install cp mod_proxy_connect.la /usr/local/apache2/modules/
/usr/share/apr-1/build-1/libtool --silent --mode=install cp mod_proxy_ftp.la /usr/local/apache2/modules/
/usr/share/apr-1/build-1/libtool --silent --mode=install cp mod_proxy_http.la /usr/local/apache2/modules/
/usr/share/apr-1/build-1/libtool --silent --mode=install cp mod_proxy_scgi.la /usr/local/apache2/modules/
/usr/share/apr-1/build-1/libtool --silent --mode=install cp mod_proxy_ajp.la /usr/local/apache2/modules/
/usr/share/apr-1/build-1/libtool --silent --mode=install cp mod_proxy_balancer.la /usr/local/apache2/modules/
Making install in ssl
/usr/share/apr-1/build-1/libtool --silent --mode=install cp mod_ssl.la /usr/local/apache2/modules/
/Applications/Xcode.app/Contents/Developer/Toolchains/OSX10.10.xctoolchain/usr/bin/ranlib: file: /usr/local/apache2/modules/mod_ssl.a(ssl_scache_dc.o) has no symbols
Making install in http
/usr/share/apr-1/build-1/libtool --silent --mode=install cp mod_mime.la /usr/local/apache2/modules/
Making install in generators
Making install in mappers
/usr/share/apr-1/build-1/libtool --silent --mode=install cp mod_vhost_alias.la /usr/local/apache2/modules/
/usr/share/apr-1/build-1/libtool --silent --mode=install cp mod_rewrite.la /usr/local/apache2/modules/
Making install in support

Building shared: mod_authz_host.la
make[4]: Nothing to be done for `local-shared-build'.
Building shared: mod_include.la mod_deflate.la
make[4]: Nothing to be done for `local-shared-build'.
Building shared: mod_log_config.la
make[4]: Nothing to be done for `local-shared-build'.
Building shared: mod_mime_magic.la mod_headers.la mod_setenvif.la
make[4]: Nothing to be done for `local-shared-build'.
Building shared: mod_proxy.la mod_proxy_connect.la mod_proxy_ftp.la mod_proxy_http.la mod_proxy_scgi.la mod_proxy_ajp.la mod_proxy_balancer.la
make[4]: Nothing to be done for `local-shared-build'.
Building shared: mod_ssl.la
make[4]: Nothing to be done for `local-shared-build'.
Building shared: mod_mime.la
make[4]: Nothing to be done for `local-shared-build'.
Building shared: mod_vhost_alias.la mod_rewrite.la
make[4]: Nothing to be done for `local-shared-build'.

Installing configuration files
[PRESERVING EXISTING HTDOCS SUBDIR: /usr/local/apache2/htdocs]
[PRESERVING EXISTING ERROR SUBDIR: /usr/local/apache2/error]
[PRESERVING EXISTING ICONS SUBDIR: /usr/local/apache2/icons]
[PRESERVING EXISTING CGI SUBDIR: /usr/local/apache2/cgi-bin]
Installing header files
Installing build system files
Installing man pages and online manual
vyas:httpd-2.2.24 vsanzgir$ sudo /usr/local/apache2/bin/apachectl restart